]> git.saurik.com Git - wxWidgets.git/blame - src/motif/textctrl.cpp
OnExit() is called for modules which were initialized even if the init of
[wxWidgets.git] / src / motif / textctrl.cpp
CommitLineData
4bb6408c
JS
1/////////////////////////////////////////////////////////////////////////////
2// Name: textctrl.cpp
3// Purpose: wxTextCtrl
4// Author: Julian Smart
5// Modified by:
6// Created: 17/09/98
7// RCS-ID: $Id$
8// Copyright: (c) Julian Smart
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
12#ifdef __GNUG__
13#pragma implementation "textctrl.h"
14#endif
15
16#include <sys/types.h>
17#include <sys/stat.h>
18#include <fstream.h>
19
20#include "wx/textctrl.h"
21#include "wx/settings.h"
22#include "wx/filefn.h"
23#include "wx/utils.h"
24
25#if defined(__BORLANDC__) && !defined(__WIN32__)
26#include <alloc.h>
27#else
28#ifndef __GNUWIN32__
29#include <malloc.h>
30#endif
31#endif
32
02e8b2f9
JS
33#include <Xm/Text.h>
34#include <sys/types.h>
35#include <sys/stat.h>
36#include <ctype.h>
37
38#include "wx/motif/private.h"
39
40static void
41wxTextWindowChangedProc (Widget w, XtPointer clientData, XtPointer ptr);
42static void
43wxTextWindowModifyProc (Widget w, XtPointer clientData, XmTextVerifyCallbackStruct *cbs);
44static void
45wxTextWindowGainFocusProc (Widget w, XtPointer clientData, XmAnyCallbackStruct *cbs);
46static void
47wxTextWindowLoseFocusProc (Widget w, XtPointer clientData, XmAnyCallbackStruct *cbs);
dfc54541 48static void wxTextWindowActivateProc(Widget w, XtPointer clientData,
2d120f83 49 XmAnyCallbackStruct *ptr);
02e8b2f9 50
4bb6408c
JS
51#if !USE_SHARED_LIBRARY
52IMPLEMENT_DYNAMIC_CLASS(wxTextCtrl, wxControl)
53
54BEGIN_EVENT_TABLE(wxTextCtrl, wxControl)
2d120f83
JS
55EVT_DROP_FILES(wxTextCtrl::OnDropFiles)
56EVT_CHAR(wxTextCtrl::OnChar)
4bb6408c
JS
57END_EVENT_TABLE()
58#endif
59
60// Text item
61wxTextCtrl::wxTextCtrl()
62#ifndef NO_TEXT_WINDOW_STREAM
2d120f83 63:streambuf()
4bb6408c
JS
64#endif
65{
66 m_fileName = "";
02e8b2f9
JS
67 m_tempCallbackStruct = (void*) NULL;
68 m_modified = FALSE;
dfc54541 69 m_processedDefault = FALSE;
4bb6408c
JS
70}
71
72bool wxTextCtrl::Create(wxWindow *parent, wxWindowID id,
2d120f83
JS
73 const wxString& value,
74 const wxPoint& pos,
75 const wxSize& size, long style,
76 const wxValidator& validator,
77 const wxString& name)
4bb6408c 78{
02e8b2f9
JS
79 m_tempCallbackStruct = (void*) NULL;
80 m_modified = FALSE;
dfc54541 81 m_processedDefault = FALSE;
4bb6408c 82 m_fileName = "";
94b49b93
JS
83 // m_backgroundColour = parent->GetBackgroundColour();
84 m_backgroundColour = * wxWHITE;
0d57be45 85 m_foregroundColour = parent->GetForegroundColour();
2d120f83 86
4bb6408c
JS
87 SetName(name);
88 SetValidator(validator);
89 if (parent) parent->AddChild(this);
2d120f83 90
4bb6408c 91 m_windowStyle = style;
2d120f83 92
4bb6408c 93 if ( id == -1 )
2d120f83 94 m_windowId = (int)NewControlId();
4bb6408c 95 else
2d120f83
JS
96 m_windowId = id;
97
02e8b2f9 98 Widget parentWidget = (Widget) parent->GetClientWidget();
2d120f83 99
02e8b2f9 100 bool wantHorizScrolling = ((m_windowStyle & wxHSCROLL) != 0);
2d120f83 101
02e8b2f9
JS
102 // If we don't have horizontal scrollbars, we want word wrap.
103 bool wantWordWrap = !wantHorizScrolling;
2d120f83 104
02e8b2f9
JS
105 if (m_windowStyle & wxTE_MULTILINE)
106 {
107 Arg args[2];
108 XtSetArg (args[0], XmNscrollHorizontal, wantHorizScrolling ? True : False);
109 XtSetArg (args[1], XmNwordWrap, wantWordWrap ? True : False);
2d120f83 110
02e8b2f9 111 m_mainWidget = (WXWidget) XmCreateScrolledText (parentWidget, (char*) (const char*) name, args, 2);
2d120f83 112
02e8b2f9 113 XtVaSetValues ((Widget) m_mainWidget,
2d120f83
JS
114 XmNeditable, ((style & wxTE_READONLY) ? False : True),
115 XmNeditMode, XmMULTI_LINE_EDIT,
116 NULL);
02e8b2f9
JS
117 XtManageChild ((Widget) m_mainWidget);
118 }
119 else
120 {
121 m_mainWidget = (WXWidget) XtVaCreateManagedWidget ((char*) (const char*) name,
2d120f83
JS
122 xmTextWidgetClass, parentWidget,
123 NULL);
124
02e8b2f9
JS
125 // TODO: Is this relevant? What does it do?
126 int noCols = 2;
127 if (!value.IsNull() && (value.Length() > (unsigned int) noCols))
128 noCols = value.Length();
129 XtVaSetValues ((Widget) m_mainWidget,
2d120f83
JS
130 XmNcolumns, noCols,
131 NULL);
02e8b2f9 132 }
2d120f83 133
02e8b2f9
JS
134 if (!value.IsNull())
135 XmTextSetString ((Widget) m_mainWidget, (char*) (const char*) value);
2d120f83 136
02e8b2f9 137 XtAddCallback((Widget) m_mainWidget, XmNvalueChangedCallback, (XtCallbackProc)wxTextWindowChangedProc, (XtPointer)this);
2d120f83 138
02e8b2f9 139 XtAddCallback((Widget) m_mainWidget, XmNmodifyVerifyCallback, (XtCallbackProc)wxTextWindowModifyProc, (XtPointer)this);
2d120f83 140
dfc54541 141 XtAddCallback((Widget) m_mainWidget, XmNactivateCallback, (XtCallbackProc)wxTextWindowActivateProc, (XtPointer)this);
2d120f83 142
02e8b2f9 143 XtAddCallback((Widget) m_mainWidget, XmNfocusCallback, (XtCallbackProc)wxTextWindowGainFocusProc, (XtPointer)this);
2d120f83 144
02e8b2f9 145 XtAddCallback((Widget) m_mainWidget, XmNlosingFocusCallback, (XtCallbackProc)wxTextWindowLoseFocusProc, (XtPointer)this);
2d120f83 146
4b5f3fe6
JS
147 m_windowFont = parent->GetFont();
148 ChangeFont(FALSE);
2d120f83 149
02e8b2f9
JS
150 SetCanAddEventHandler(TRUE);
151 AttachWidget (parent, m_mainWidget, (WXWidget) NULL, pos.x, pos.y, size.x, size.y);
2d120f83 152
0d57be45 153 ChangeBackgroundColour();
2d120f83 154
4bb6408c
JS
155 return TRUE;
156}
157
02e8b2f9 158WXWidget wxTextCtrl::GetTopWidget() const
4bb6408c 159{
dfc54541 160 return ((m_windowStyle & wxTE_MULTILINE) ? (WXWidget) XtParent((Widget) m_mainWidget) : m_mainWidget);
4bb6408c
JS
161}
162
02e8b2f9 163wxString wxTextCtrl::GetValue() const
4bb6408c 164{
dfc54541
JS
165 if (m_windowStyle & wxTE_PASSWORD)
166 return m_value;
167 else
168 {
169 char *s = XmTextGetString ((Widget) m_mainWidget);
170 if (s)
171 {
2d120f83 172 wxString str(s);
dfc54541 173 XtFree (s);
2d120f83
JS
174 return str;
175 }
176 else
dfc54541
JS
177 {
178 return wxEmptyString;
179 }
180 }
4bb6408c
JS
181}
182
02e8b2f9 183void wxTextCtrl::SetValue(const wxString& value)
4bb6408c 184{
2d120f83
JS
185 // This assert is wrong -- means that you can't set an empty
186 // string (IsNull == IsEmpty).
187 // wxASSERT_MSG( (!value.IsNull()), "Must not pass a null string to wxTextCtrl::SetValue." ) ;
dfc54541 188 m_inSetValue = TRUE;
2d120f83 189
dfc54541 190 XmTextSetString ((Widget) m_mainWidget, (char*) (const char*) value);
2d120f83 191
dfc54541 192 m_inSetValue = FALSE;
4bb6408c
JS
193}
194
195// Clipboard operations
196void wxTextCtrl::Copy()
197{
dfc54541 198 XmTextCopy((Widget) m_mainWidget, CurrentTime);
4bb6408c
JS
199}
200
201void wxTextCtrl::Cut()
202{
dfc54541 203 XmTextCut((Widget) m_mainWidget, CurrentTime);
4bb6408c
JS
204}
205
206void wxTextCtrl::Paste()
207{
dfc54541 208 XmTextPaste((Widget) m_mainWidget);
4bb6408c
JS
209}
210
211void wxTextCtrl::SetEditable(bool editable)
212{
dfc54541 213 XmTextSetEditable((Widget) m_mainWidget, (Boolean) editable);
4bb6408c
JS
214}
215
216void wxTextCtrl::SetInsertionPoint(long pos)
217{
dfc54541 218 XmTextSetInsertionPosition ((Widget) m_mainWidget, (XmTextPosition) pos);
4bb6408c
JS
219}
220
221void wxTextCtrl::SetInsertionPointEnd()
222{
223 long pos = GetLastPosition();
224 SetInsertionPoint(pos);
225}
226
227long wxTextCtrl::GetInsertionPoint() const
228{
dfc54541 229 return (long) XmTextGetInsertionPosition ((Widget) m_mainWidget);
4bb6408c
JS
230}
231
232long wxTextCtrl::GetLastPosition() const
233{
dfc54541 234 return (long) XmTextGetLastPosition ((Widget) m_mainWidget);
4bb6408c
JS
235}
236
237void wxTextCtrl::Replace(long from, long to, const wxString& value)
238{
dfc54541 239 XmTextReplace ((Widget) m_mainWidget, (XmTextPosition) from, (XmTextPosition) to,
2d120f83 240 (char*) (const char*) value);
4bb6408c
JS
241}
242
243void wxTextCtrl::Remove(long from, long to)
244{
dfc54541
JS
245 XmTextSetSelection ((Widget) m_mainWidget, (XmTextPosition) from, (XmTextPosition) to,
246 (Time) 0);
247 XmTextRemove ((Widget) m_mainWidget);
4bb6408c
JS
248}
249
250void wxTextCtrl::SetSelection(long from, long to)
251{
dfc54541
JS
252 XmTextSetSelection ((Widget) m_mainWidget, (XmTextPosition) from, (XmTextPosition) to,
253 (Time) 0);
4bb6408c
JS
254}
255
256bool wxTextCtrl::LoadFile(const wxString& file)
257{
258 if (!wxFileExists(file))
259 return FALSE;
2d120f83 260
4bb6408c 261 m_fileName = file;
2d120f83 262
4bb6408c 263 Clear();
2d120f83 264
1a3ac83f
JS
265 Widget textWidget = (Widget) m_mainWidget;
266 FILE *fp;
2d120f83 267
1a3ac83f
JS
268 struct stat statb;
269 if ((stat ((char*) (const char*) file, &statb) == -1) || (statb.st_mode & S_IFMT) != S_IFREG ||
2d120f83 270 !(fp = fopen ((char*) (const char*) file, "r")))
4bb6408c 271 {
2d120f83 272 return FALSE;
1a3ac83f
JS
273 }
274 else
275 {
2d120f83
JS
276 long len = statb.st_size;
277 char *text;
278 if (!(text = XtMalloc ((unsigned) (len + 1))))
279 {
280 fclose (fp);
281 return FALSE;
282 }
283 if (fread (text, sizeof (char), len, fp) != (size_t) len)
284 {
285 }
286 fclose (fp);
287
288 text[len] = 0;
289 XmTextSetString (textWidget, text);
290 // m_textPosition = len;
291 XtFree (text);
292 m_modified = FALSE;
293 return TRUE;
4bb6408c 294 }
4bb6408c
JS
295}
296
297// If file is null, try saved file name first
298// Returns TRUE if succeeds.
299bool wxTextCtrl::SaveFile(const wxString& file)
300{
301 wxString theFile(file);
302 if (theFile == "")
303 theFile = m_fileName;
304 if (theFile == "")
305 return FALSE;
306 m_fileName = theFile;
2d120f83
JS
307
308 Widget textWidget = (Widget) m_mainWidget;
309 FILE *fp;
310
311 if (!(fp = fopen ((char*) (const char*) theFile, "w")))
1a3ac83f 312 {
2d120f83 313 return FALSE;
1a3ac83f 314 }
2d120f83 315 else
1a3ac83f 316 {
2d120f83
JS
317 char *text = XmTextGetString (textWidget);
318 long len = XmTextGetLastPosition (textWidget);
319
320 if (fwrite (text, sizeof (char), len, fp) != (size_t) len)
321 {
322 // Did not write whole file
323 }
324 // Make sure newline terminates the file
325 if (text[len - 1] != '\n')
326 fputc ('\n', fp);
327
328 fclose (fp);
329 XtFree (text);
330 m_modified = FALSE;
331 return TRUE;
1a3ac83f 332 }
4bb6408c
JS
333}
334
335void wxTextCtrl::WriteText(const wxString& text)
336{
dfc54541
JS
337 long textPosition = GetInsertionPoint() + strlen (text);
338 XmTextInsert ((Widget) m_mainWidget, GetInsertionPoint(), (char*) (const char*) text);
339 XtVaSetValues ((Widget) m_mainWidget, XmNcursorPosition, textPosition, NULL);
340 SetInsertionPoint(textPosition);
341 XmTextShowPosition ((Widget) m_mainWidget, textPosition);
342 m_modified = TRUE;
4bb6408c
JS
343}
344
345void wxTextCtrl::Clear()
346{
02e8b2f9 347 XmTextSetString ((Widget) m_mainWidget, "");
02e8b2f9 348 m_modified = FALSE;
4bb6408c
JS
349}
350
351bool wxTextCtrl::IsModified() const
352{
02e8b2f9 353 return m_modified;
4bb6408c
JS
354}
355
356// Makes 'unmodified'
357void wxTextCtrl::DiscardEdits()
358{
dfc54541
JS
359 XmTextSetString ((Widget) m_mainWidget, "");
360 m_modified = FALSE;
4bb6408c
JS
361}
362
363int wxTextCtrl::GetNumberOfLines() const
364{
dfc54541
JS
365 // HIDEOUSLY inefficient, but we have no choice.
366 char *s = XmTextGetString ((Widget) m_mainWidget);
367 if (s)
368 {
2d120f83
JS
369 long i = 0;
370 int currentLine = 0;
371 bool finished = FALSE;
372 while (!finished)
373 {
374 int ch = s[i];
375 if (ch == '\n')
376 {
377 currentLine++;
378 i++;
379 }
380 else if (ch == 0)
381 {
382 finished = TRUE;
383 }
384 else
385 i++;
386 }
387
388 XtFree (s);
389 return currentLine;
dfc54541 390 }
4bb6408c
JS
391 return 0;
392}
393
394long wxTextCtrl::XYToPosition(long x, long y) const
395{
dfc54541 396/* It seems, that there is a bug in some versions of the Motif library,
2d120f83
JS
397 so the original wxWin-Code doesn't work. */
398 /*
399 Widget textWidget = (Widget) handle;
400 return (long) XmTextXYToPos (textWidget, (Position) x, (Position) y);
401 */
dfc54541
JS
402 /* Now a little workaround: */
403 long r=0;
404 for (int i=0; i<y; i++) r+=(GetLineLength(i)+1);
405 return r+x;
4bb6408c
JS
406}
407
408void wxTextCtrl::PositionToXY(long pos, long *x, long *y) const
409{
dfc54541
JS
410 Position xx, yy;
411 XmTextPosToXY((Widget) m_mainWidget, pos, &xx, &yy);
412 *x = xx; *y = yy;
4bb6408c
JS
413}
414
415void wxTextCtrl::ShowPosition(long pos)
416{
dfc54541 417 XmTextShowPosition ((Widget) m_mainWidget, (XmTextPosition) pos);
4bb6408c
JS
418}
419
420int wxTextCtrl::GetLineLength(long lineNo) const
421{
dfc54541
JS
422 wxString str = GetLineText (lineNo);
423 return (int) str.Length();
4bb6408c
JS
424}
425
426wxString wxTextCtrl::GetLineText(long lineNo) const
427{
dfc54541
JS
428 // HIDEOUSLY inefficient, but we have no choice.
429 char *s = XmTextGetString ((Widget) m_mainWidget);
2d120f83 430
dfc54541
JS
431 if (s)
432 {
433 wxString buf("");
434 long i;
435 int currentLine = 0;
436 for (i = 0; currentLine != lineNo && s[i]; i++ )
2d120f83
JS
437 if (s[i] == '\n')
438 currentLine++;
439 // Now get the text
440 int j;
441 for (j = 0; s[i] && s[i] != '\n'; i++, j++ )
442 buf += s[i];
443
444 XtFree(s);
445 return buf;
446 }
447 else
448 return wxEmptyString;
4bb6408c
JS
449}
450
451/*
2d120f83
JS
452* Text item
453*/
454
4bb6408c
JS
455void wxTextCtrl::Command(wxCommandEvent & event)
456{
457 SetValue (event.GetString());
458 ProcessCommand (event);
459}
460
461void wxTextCtrl::OnDropFiles(wxDropFilesEvent& event)
462{
463 // By default, load the first file into the text window.
464 if (event.GetNumberOfFiles() > 0)
465 {
466 LoadFile(event.GetFiles()[0]);
467 }
468}
469
470// The streambuf code was partly taken from chapter 3 by Jerry Schwarz of
471// AT&T's "C++ Lanuage System Release 3.0 Library Manual" - Stein Somers
472
473//=========================================================================
474// Called then the buffer is full (gcc 2.6.3)
475// or when "endl" is output (Borland 4.5)
476//=========================================================================
477// Class declaration using multiple inheritance doesn't work properly for
478// Borland. See note in wb_text.h.
479#ifndef NO_TEXT_WINDOW_STREAM
480int wxTextCtrl::overflow(int c)
481{
2d120f83
JS
482 // Make sure there is a holding area
483 if ( allocate()==EOF )
484 {
485 wxError("Streambuf allocation failed","Internal error");
486 return EOF;
487 }
488
489 // Verify that there are no characters in get area
490 if ( gptr() && gptr() < egptr() )
491 {
492 wxError("wxTextCtrl::overflow: Who's trespassing my get area?","Internal error");
493 return EOF;
494 }
495
496 // Reset get area
497 setg(0,0,0);
498
499 // Make sure there is a put area
500 if ( ! pptr() )
501 {
502 /* This doesn't seem to be fatal so comment out error message */
503 // wxError("Put area not opened","Internal error");
504 setp( base(), base() );
505 }
506
507 // Determine how many characters have been inserted but no consumed
508 int plen = pptr() - pbase();
509
510 // Now Jerry relies on the fact that the buffer is at least 2 chars
511 // long, but the holding area "may be as small as 1" ???
512 // And we need an additional \0, so let's keep this inefficient but
513 // safe copy.
514
515 // If c!=EOF, it is a character that must also be comsumed
516 int xtra = c==EOF? 0 : 1;
517
518 // Write temporary C-string to wxTextWindow
519 {
520 char *txt = new char[plen+xtra+1];
521 memcpy(txt, pbase(), plen);
522 txt[plen] = (char)c; // append c
523 txt[plen+xtra] = '\0'; // append '\0' or overwrite c
524 // If the put area already contained \0, output will be truncated there
525 WriteText(txt);
526 delete[] txt;
527 }
528
529 // Reset put area
530 setp(pbase(), epptr());
531
4bb6408c 532#if defined(__WATCOMC__)
2d120f83 533 return __NOT_EOF;
4bb6408c 534#elif defined(zapeof) // HP-UX (all cfront based?)
2d120f83 535 return zapeof(c);
4bb6408c 536#else
2d120f83 537 return c!=EOF ? c : 0; // this should make everybody happy
4bb6408c
JS
538#endif
539}
540
541//=========================================================================
542// called then "endl" is output (gcc) or then explicit sync is done (Borland)
543//=========================================================================
544int wxTextCtrl::sync()
545{
2d120f83
JS
546 // Verify that there are no characters in get area
547 if ( gptr() && gptr() < egptr() )
548 {
549 wxError("Who's trespassing my get area?","Internal error");
550 return EOF;
551 }
552
553 if ( pptr() && pptr() > pbase() ) return overflow(EOF);
554
555 return 0;
556 /* OLD CODE
557 int len = pptr() - pbase();
558 char *txt = new char[len+1];
559 strncpy(txt, pbase(), len);
560 txt[len] = '\0';
561 (*this) << txt;
562 setp(pbase(), epptr());
563 delete[] txt;
564 return 0;
565 */
4bb6408c
JS
566}
567
568//=========================================================================
569// Should not be called by a "ostream". Used by a "istream"
570//=========================================================================
571int wxTextCtrl::underflow()
572{
2d120f83 573 return EOF;
4bb6408c
JS
574}
575#endif
576
577wxTextCtrl& wxTextCtrl::operator<<(const wxString& s)
578{
579 WriteText(s);
580 return *this;
581}
582
583wxTextCtrl& wxTextCtrl::operator<<(float f)
584{
585 wxString str;
586 str.Printf("%.2f", f);
587 WriteText(str);
588 return *this;
589}
590
591wxTextCtrl& wxTextCtrl::operator<<(double d)
592{
593 wxString str;
594 str.Printf("%.2f", d);
595 WriteText(str);
596 return *this;
597}
598
599wxTextCtrl& wxTextCtrl::operator<<(int i)
600{
601 wxString str;
602 str.Printf("%d", i);
603 WriteText(str);
604 return *this;
605}
606
607wxTextCtrl& wxTextCtrl::operator<<(long i)
608{
609 wxString str;
610 str.Printf("%ld", i);
611 WriteText(str);
612 return *this;
613}
614
615wxTextCtrl& wxTextCtrl::operator<<(const char c)
616{
617 char buf[2];
2d120f83 618
4bb6408c
JS
619 buf[0] = c;
620 buf[1] = 0;
621 WriteText(buf);
622 return *this;
623}
624
02e8b2f9
JS
625void wxTextCtrl::OnChar(wxKeyEvent& event)
626{
2d120f83
JS
627 // Indicates that we should generate a normal command, because
628 // we're letting default behaviour happen (otherwise it's vetoed
629 // by virtue of overriding OnChar)
630 m_processedDefault = TRUE;
631
632 if (m_tempCallbackStruct)
02e8b2f9 633 {
2d120f83
JS
634 XmTextVerifyCallbackStruct *textStruct =
635 (XmTextVerifyCallbackStruct *) m_tempCallbackStruct;
636 textStruct->doit = True;
637 if (isascii(event.m_keyCode) && (textStruct->text->length == 1))
638 {
639 textStruct->text->ptr[0] = ((event.m_keyCode == WXK_RETURN) ? 10 : event.m_keyCode);
640 }
02e8b2f9 641 }
02e8b2f9
JS
642}
643
4b5f3fe6 644void wxTextCtrl::ChangeFont(bool keepOriginalSize)
0d57be45 645{
4b5f3fe6 646 wxWindow::ChangeFont(keepOriginalSize);
0d57be45
JS
647}
648
649void wxTextCtrl::ChangeBackgroundColour()
650{
321db4b6 651 wxWindow::ChangeBackgroundColour();
2d120f83 652
94b49b93 653 /* TODO: should scrollbars be affected? Should probably have separate
2d120f83
JS
654 * function to change them (by default, taken from wxSystemSettings)
655 */
94b49b93
JS
656 if (m_windowStyle & wxTE_MULTILINE)
657 {
658 Widget parent = XtParent ((Widget) m_mainWidget);
659 Widget hsb, vsb;
2d120f83 660
94b49b93 661 XtVaGetValues (parent,
2d120f83
JS
662 XmNhorizontalScrollBar, &hsb,
663 XmNverticalScrollBar, &vsb,
664 NULL);
94b49b93
JS
665 wxColour backgroundColour = wxSystemSettings::GetSystemColour(wxSYS_COLOUR_3DFACE);
666 if (hsb)
667 DoChangeBackgroundColour((WXWidget) hsb, backgroundColour, TRUE);
668 if (vsb)
669 DoChangeBackgroundColour((WXWidget) vsb, backgroundColour, TRUE);
2d120f83 670
94b49b93
JS
671 DoChangeBackgroundColour((WXWidget) parent, m_backgroundColour, TRUE);
672 }
0d57be45
JS
673}
674
675void wxTextCtrl::ChangeForegroundColour()
676{
321db4b6 677 wxWindow::ChangeForegroundColour();
2d120f83 678
94b49b93
JS
679 if (m_windowStyle & wxTE_MULTILINE)
680 {
681 Widget parent = XtParent ((Widget) m_mainWidget);
682 Widget hsb, vsb;
2d120f83 683
94b49b93 684 XtVaGetValues (parent,
2d120f83
JS
685 XmNhorizontalScrollBar, &hsb,
686 XmNverticalScrollBar, &vsb,
687 NULL);
688
689 /* TODO: should scrollbars be affected? Should probably have separate
690 * function to change them (by default, taken from wxSystemSettings)
691 if (hsb)
94b49b93 692 DoChangeForegroundColour((WXWidget) hsb, m_foregroundColour);
2d120f83 693 if (vsb)
94b49b93 694 DoChangeForegroundColour((WXWidget) vsb, m_foregroundColour);
2d120f83 695 */
94b49b93
JS
696 DoChangeForegroundColour((WXWidget) parent, m_foregroundColour);
697 }
0d57be45
JS
698}
699
dfc54541 700static void wxTextWindowChangedProc (Widget w, XtPointer clientData, XtPointer ptr)
02e8b2f9 701{
2d120f83
JS
702 if (!wxGetWindowFromTable(w))
703 // Widget has been deleted!
704 return;
705
706 wxTextCtrl *tw = (wxTextCtrl *) clientData;
707 tw->SetModified(TRUE);
02e8b2f9
JS
708}
709
710static void
711wxTextWindowModifyProc (Widget w, XtPointer clientData, XmTextVerifyCallbackStruct *cbs)
712{
dfc54541
JS
713 wxTextCtrl *tw = (wxTextCtrl *) clientData;
714 tw->m_processedDefault = FALSE;
2d120f83 715
dfc54541
JS
716 // First, do some stuff if it's a password control.
717 // (What does this do exactly?)
2d120f83 718
dfc54541
JS
719 if (tw->GetWindowStyleFlag() & wxTE_PASSWORD)
720 {
2d120f83
JS
721 /* _sm_
722 * At least on my system (SunOS 4.1.3 + Motif 1.2), you need to think of
723 * every event as a replace event. cbs->text->ptr gives the replacement
724 * text, cbs->startPos gives the index of the first char affected by the
725 * replace, and cbs->endPos gives the index one more than the last char
726 * affected by the replace (startPos == endPos implies an empty range).
727 * Hence, a deletion is represented by replacing all input text with a
728 * blank string ("", *not* NULL!). A simple insertion that does not
729 * overwrite any text has startPos == endPos.
730 */
731
dfc54541
JS
732 if (tw->m_value.IsNull())
733 {
734 tw->m_value = cbs->text->ptr;
735 }
736 else
737 {
738 char * passwd = (char*) (const char*) tw->m_value; // Set up a more convenient alias.
2d120f83 739
dfc54541
JS
740 int len = passwd ? strlen(passwd) : 0; // Enough room for old text
741 len += strlen(cbs->text->ptr) + 1; // + new text (if any) + NUL
742 len -= cbs->endPos - cbs->startPos; // - text from affected region.
2d120f83 743
dfc54541
JS
744 char * newS = new char [len];
745 char * p = passwd, * dest = newS, * insert = cbs->text->ptr;
2d120f83 746
dfc54541
JS
747 // Copy (old) text from passwd, up to the start posn of the change.
748 int i;
749 for (i = 0; i < cbs->startPos; ++i)
750 *dest++ = *p++;
2d120f83 751
dfc54541
JS
752 // Copy the text to be inserted).
753 while (*insert)
2d120f83
JS
754 *dest++ = *insert++;
755
dfc54541
JS
756 // Finally, copy into newS any remaining text from passwd[endPos] on.
757 for (p = passwd + cbs->endPos; *p; )
758 *dest++ = *p++;
759 *dest = 0;
2d120f83 760
dfc54541 761 tw->m_value = newS;
2d120f83 762
dfc54541
JS
763 delete[] newS;
764 }
2d120f83 765
dfc54541
JS
766 if (cbs->text->length>0)
767 {
768 int i;
769 for (i = 0; i < cbs->text->length; ++i)
770 cbs->text->ptr[i] = '*';
771 cbs->text->ptr[i] = 0;
772 }
773 }
2d120f83 774
dfc54541
JS
775 // If we're already within an OnChar, return: probably
776 // a programmatic insertion.
777 if (tw->m_tempCallbackStruct)
778 return;
2d120f83 779
dfc54541
JS
780 // Check for a backspace
781 if (cbs->startPos == (cbs->currInsert - 1))
782 {
783 tw->m_tempCallbackStruct = (void*) cbs;
2d120f83 784
dfc54541
JS
785 wxKeyEvent event (wxEVT_CHAR);
786 event.SetId(tw->GetId());
787 event.m_keyCode = WXK_DELETE;
788 event.SetEventObject(tw);
2d120f83 789
dfc54541
JS
790 // Only if wxTextCtrl::OnChar is called
791 // will this be set to True (and the character
792 // passed through)
793 cbs->doit = False;
2d120f83 794
dfc54541 795 tw->GetEventHandler()->ProcessEvent(event);
2d120f83 796
dfc54541 797 tw->m_tempCallbackStruct = NULL;
2d120f83 798
a4294b78 799 if (tw->InSetValue())
dfc54541 800 return;
2d120f83 801
dfc54541
JS
802 if (tw->m_processedDefault)
803 {
804 // Can generate a command
805 wxCommandEvent commandEvent(wxEVT_COMMAND_TEXT_UPDATED, tw->GetId());
2d120f83 806 commandEvent.SetEventObject(tw);
dfc54541 807 tw->ProcessCommand(commandEvent);
2d120f83
JS
808 }
809
dfc54541
JS
810 return;
811 }
2d120f83 812
dfc54541
JS
813 // Pasting operation: let it through without
814 // calling OnChar
815 if (cbs->text->length > 1)
816 return;
2d120f83 817
dfc54541
JS
818 // Something other than text
819 if (cbs->text->ptr == NULL)
820 return;
2d120f83 821
02e8b2f9 822 tw->m_tempCallbackStruct = (void*) cbs;
2d120f83 823
02e8b2f9
JS
824 wxKeyEvent event (wxEVT_CHAR);
825 event.SetId(tw->GetId());
02e8b2f9 826 event.SetEventObject(tw);
dfc54541 827 event.m_keyCode = (cbs->text->ptr[0] == 10 ? 13 : cbs->text->ptr[0]);
2d120f83 828
02e8b2f9
JS
829 // Only if wxTextCtrl::OnChar is called
830 // will this be set to True (and the character
831 // passed through)
832 cbs->doit = False;
2d120f83 833
02e8b2f9 834 tw->GetEventHandler()->ProcessEvent(event);
2d120f83 835
02e8b2f9 836 tw->m_tempCallbackStruct = NULL;
2d120f83 837
a4294b78 838 if (tw->InSetValue())
dfc54541
JS
839 return;
840
841 if (tw->m_processedDefault)
842 {
843 // Can generate a command
844 wxCommandEvent commandEvent(wxEVT_COMMAND_TEXT_UPDATED, tw->GetId());
845 commandEvent.SetEventObject(tw);
846 tw->ProcessCommand(commandEvent);
847 }
02e8b2f9
JS
848}
849
850static void
851wxTextWindowGainFocusProc (Widget w, XtPointer clientData, XmAnyCallbackStruct *cbs)
852{
2d120f83
JS
853 if (!wxGetWindowFromTable(w))
854 return;
855
856 wxTextCtrl *tw = (wxTextCtrl *) clientData;
857 wxFocusEvent event(wxEVT_SET_FOCUS, tw->GetId());
858 event.SetEventObject(tw);
859 tw->GetEventHandler()->ProcessEvent(event);
02e8b2f9
JS
860}
861
862static void
863wxTextWindowLoseFocusProc (Widget w, XtPointer clientData, XmAnyCallbackStruct *cbs)
864{
2d120f83
JS
865 if (!wxGetWindowFromTable(w))
866 return;
867
868 wxTextCtrl *tw = (wxTextCtrl *) clientData;
869 wxFocusEvent event(wxEVT_KILL_FOCUS, tw->GetId());
870 event.SetEventObject(tw);
871 tw->GetEventHandler()->ProcessEvent(event);
02e8b2f9 872}
dfc54541
JS
873
874static void wxTextWindowActivateProc(Widget w, XtPointer clientData,
2d120f83 875 XmAnyCallbackStruct *ptr)
dfc54541 876{
2d120f83
JS
877 if (!wxGetWindowFromTable(w))
878 return;
879
880 wxTextCtrl *tw = (wxTextCtrl *) clientData;
881 /*
882 case XmCR_ACTIVATE:
dfc54541
JS
883 type_event = wxEVENT_TYPE_TEXT_ENTER_COMMAND ;
884 break;
2d120f83 885 default:
dfc54541
JS
886 type_event = wxEVENT_TYPE_TEXT_COMMAND ;
887 break;
2d120f83
JS
888 }
889 */
dfc54541 890
2d120f83
JS
891 if (tw->InSetValue())
892 return;
893
894 wxCommandEvent event(wxEVT_COMMAND_TEXT_ENTER);
895 event.SetId(tw->GetId());
896 event.SetEventObject(tw);
897 tw->ProcessCommand(event);
dfc54541 898}