1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
21 #pragma implementation "textctrl.h"
24 #include <sys/types.h>
29 #include "wx/textctrl.h"
30 #include "wx/settings.h"
31 #include "wx/filefn.h"
36 #include "wx/motif/private.h"
38 // ----------------------------------------------------------------------------
40 // ----------------------------------------------------------------------------
42 // helper: inserts the new text in the value of the text ctrl and returns the
44 static void MergeChangesIntoString(wxString
& value
,
45 XmTextVerifyCallbackStruct
*textStruct
);
48 static void wxTextWindowChangedProc(Widget w
, XtPointer clientData
, XtPointer ptr
);
49 static void wxTextWindowModifyProc(Widget w
, XtPointer clientData
, XmTextVerifyCallbackStruct
*cbs
);
50 static void wxTextWindowGainFocusProc(Widget w
, XtPointer clientData
, XmAnyCallbackStruct
*cbs
);
51 static void wxTextWindowLoseFocusProc(Widget w
, XtPointer clientData
, XmAnyCallbackStruct
*cbs
);
52 static void wxTextWindowActivateProc(Widget w
, XtPointer clientData
, XmAnyCallbackStruct
*ptr
);
54 #if !USE_SHARED_LIBRARY
55 IMPLEMENT_DYNAMIC_CLASS(wxTextCtrl
, wxControl
)
57 BEGIN_EVENT_TABLE(wxTextCtrl
, wxControl
)
58 EVT_DROP_FILES(wxTextCtrl::OnDropFiles
)
59 EVT_CHAR(wxTextCtrl::OnChar
)
63 // ============================================================================
65 // ============================================================================
67 // ----------------------------------------------------------------------------
69 // ----------------------------------------------------------------------------
72 wxTextCtrl::wxTextCtrl()
73 #ifndef NO_TEXT_WINDOW_STREAM
77 m_tempCallbackStruct
= (void*) NULL
;
79 m_processedDefault
= FALSE
;
82 bool wxTextCtrl::Create(wxWindow
*parent
,
84 const wxString
& value
,
88 const wxValidator
& validator
,
91 m_tempCallbackStruct
= (void*) NULL
;
93 m_processedDefault
= FALSE
;
94 // m_backgroundColour = parent->GetBackgroundColour();
95 m_backgroundColour
= * wxWHITE
;
96 m_foregroundColour
= parent
->GetForegroundColour();
99 SetValidator(validator
);
101 parent
->AddChild(this);
103 m_windowStyle
= style
;
106 m_windowId
= (int)NewControlId();
110 Widget parentWidget
= (Widget
) parent
->GetClientWidget();
112 bool wantHorizScrolling
= ((m_windowStyle
& wxHSCROLL
) != 0);
114 // If we don't have horizontal scrollbars, we want word wrap.
115 bool wantWordWrap
= !wantHorizScrolling
;
117 if (m_windowStyle
& wxTE_MULTILINE
)
120 XtSetArg (args
[0], XmNscrollHorizontal
, wantHorizScrolling
? True
: False
);
121 XtSetArg (args
[1], XmNwordWrap
, wantWordWrap
? True
: False
);
123 m_mainWidget
= (WXWidget
) XmCreateScrolledText(parentWidget
,
127 XtVaSetValues ((Widget
) m_mainWidget
,
128 XmNeditable
, ((style
& wxTE_READONLY
) ? False
: True
),
129 XmNeditMode
, XmMULTI_LINE_EDIT
,
131 XtManageChild ((Widget
) m_mainWidget
);
135 m_mainWidget
= (WXWidget
)XtVaCreateManagedWidget
143 // TODO: Is this relevant? What does it do?
145 if (!value
.IsNull() && (value
.Length() > (unsigned int) noCols
))
146 noCols
= value
.Length();
147 XtVaSetValues((Widget
) m_mainWidget
,
152 // remove border if asked for
153 if ( style
& wxNO_BORDER
)
155 XtVaSetValues((Widget
)m_mainWidget
,
156 XmNshadowThickness
, 0,
161 XmTextSetString ((Widget
) m_mainWidget
, (char*)value
.c_str());
164 XtAddCallback((Widget
) m_mainWidget
, XmNvalueChangedCallback
, (XtCallbackProc
)wxTextWindowChangedProc
, (XtPointer
)this);
166 XtAddCallback((Widget
) m_mainWidget
, XmNmodifyVerifyCallback
, (XtCallbackProc
)wxTextWindowModifyProc
, (XtPointer
)this);
168 XtAddCallback((Widget
) m_mainWidget
, XmNactivateCallback
, (XtCallbackProc
)wxTextWindowActivateProc
, (XtPointer
)this);
170 XtAddCallback((Widget
) m_mainWidget
, XmNfocusCallback
, (XtCallbackProc
)wxTextWindowGainFocusProc
, (XtPointer
)this);
172 XtAddCallback((Widget
) m_mainWidget
, XmNlosingFocusCallback
, (XtCallbackProc
)wxTextWindowLoseFocusProc
, (XtPointer
)this);
175 m_windowFont
= parent
->GetFont();
178 SetCanAddEventHandler(TRUE
);
179 AttachWidget (parent
, m_mainWidget
, (WXWidget
) NULL
, pos
.x
, pos
.y
, size
.x
, size
.y
);
181 ChangeBackgroundColour();
186 WXWidget
wxTextCtrl::GetTopWidget() const
188 return ((m_windowStyle
& wxTE_MULTILINE
) ? (WXWidget
) XtParent((Widget
) m_mainWidget
) : m_mainWidget
);
191 wxString
wxTextCtrl::GetValue() const
193 wxString str
; // result
195 if (m_windowStyle
& wxTE_PASSWORD
)
197 // the value is stored always in m_value because it can't be retrieved
198 // from the text control
203 // just get the string from Motif
204 char *s
= XmTextGetString ((Widget
) m_mainWidget
);
210 //else: return empty string
212 if ( m_tempCallbackStruct
)
214 // the string in the control isn't yet updated, can't use it as is
215 MergeChangesIntoString(str
, (XmTextVerifyCallbackStruct
*)
216 m_tempCallbackStruct
);
223 void wxTextCtrl::SetValue(const wxString
& value
)
227 XmTextSetString ((Widget
) m_mainWidget
, (char*)value
.c_str());
229 m_inSetValue
= FALSE
;
232 // Clipboard operations
233 void wxTextCtrl::Copy()
235 XmTextCopy((Widget
) m_mainWidget
, CurrentTime
);
238 void wxTextCtrl::Cut()
240 XmTextCut((Widget
) m_mainWidget
, CurrentTime
);
243 void wxTextCtrl::Paste()
245 XmTextPaste((Widget
) m_mainWidget
);
248 bool wxTextCtrl::CanCopy() const
250 // Can copy if there's a selection
252 GetSelection(& from
, & to
);
253 return (from
!= to
) ;
256 bool wxTextCtrl::CanCut() const
258 // Can cut if there's a selection
260 GetSelection(& from
, & to
);
261 return (from
!= to
) ;
264 bool wxTextCtrl::CanPaste() const
266 return IsEditable() ;
270 void wxTextCtrl::Undo()
272 // Not possible in Motif
275 void wxTextCtrl::Redo()
277 // Not possible in Motif
280 bool wxTextCtrl::CanUndo() const
286 bool wxTextCtrl::CanRedo() const
292 // If the return values from and to are the same, there is no
294 void wxTextCtrl::GetSelection(long* from
, long* to
) const
296 XmTextPosition left
, right
;
298 XmTextGetSelectionPosition((Widget
) m_mainWidget
, & left
, & right
);
304 bool wxTextCtrl::IsEditable() const
306 return (XmTextGetEditable((Widget
) m_mainWidget
) != 0);
309 void wxTextCtrl::SetEditable(bool editable
)
311 XmTextSetEditable((Widget
) m_mainWidget
, (Boolean
) editable
);
314 void wxTextCtrl::SetInsertionPoint(long pos
)
316 XmTextSetInsertionPosition ((Widget
) m_mainWidget
, (XmTextPosition
) pos
);
319 void wxTextCtrl::SetInsertionPointEnd()
321 long pos
= GetLastPosition();
322 SetInsertionPoint(pos
);
325 long wxTextCtrl::GetInsertionPoint() const
327 return (long) XmTextGetInsertionPosition ((Widget
) m_mainWidget
);
330 long wxTextCtrl::GetLastPosition() const
332 return (long) XmTextGetLastPosition ((Widget
) m_mainWidget
);
335 void wxTextCtrl::Replace(long from
, long to
, const wxString
& value
)
337 XmTextReplace ((Widget
) m_mainWidget
, (XmTextPosition
) from
, (XmTextPosition
) to
,
338 (char*) (const char*) value
);
341 void wxTextCtrl::Remove(long from
, long to
)
343 XmTextSetSelection ((Widget
) m_mainWidget
, (XmTextPosition
) from
, (XmTextPosition
) to
,
345 XmTextRemove ((Widget
) m_mainWidget
);
348 void wxTextCtrl::SetSelection(long from
, long to
)
350 XmTextSetSelection ((Widget
) m_mainWidget
, (XmTextPosition
) from
, (XmTextPosition
) to
,
354 bool wxTextCtrl::LoadFile(const wxString
& file
)
356 if (!wxFileExists(file
))
363 Widget textWidget
= (Widget
) m_mainWidget
;
367 if ((stat ((char*) (const char*) file
, &statb
) == -1) || (statb
.st_mode
& S_IFMT
) != S_IFREG
||
368 !(fp
= fopen ((char*) (const char*) file
, "r")))
374 long len
= statb
.st_size
;
376 if (!(text
= XtMalloc ((unsigned) (len
+ 1))))
381 if (fread (text
, sizeof (char), len
, fp
) != (size_t) len
)
387 XmTextSetString (textWidget
, text
);
388 // m_textPosition = len;
395 // If file is null, try saved file name first
396 // Returns TRUE if succeeds.
397 bool wxTextCtrl::SaveFile(const wxString
& file
)
399 wxString
theFile(file
);
401 theFile
= m_fileName
;
404 m_fileName
= theFile
;
406 Widget textWidget
= (Widget
) m_mainWidget
;
409 if (!(fp
= fopen ((char*) (const char*) theFile
, "w")))
415 char *text
= XmTextGetString (textWidget
);
416 long len
= XmTextGetLastPosition (textWidget
);
418 if (fwrite (text
, sizeof (char), len
, fp
) != (size_t) len
)
420 // Did not write whole file
422 // Make sure newline terminates the file
423 if (text
[len
- 1] != '\n')
433 void wxTextCtrl::WriteText(const wxString
& text
)
435 long textPosition
= GetInsertionPoint() + strlen (text
);
436 XmTextInsert ((Widget
) m_mainWidget
, GetInsertionPoint(), (char*) (const char*) text
);
437 XtVaSetValues ((Widget
) m_mainWidget
, XmNcursorPosition
, textPosition
, NULL
);
438 SetInsertionPoint(textPosition
);
439 XmTextShowPosition ((Widget
) m_mainWidget
, textPosition
);
443 void wxTextCtrl::AppendText(const wxString
& text
)
445 long textPosition
= GetLastPosition() + strlen(text
);
446 XmTextInsert ((Widget
) m_mainWidget
, GetLastPosition(), (char*) (const char*) text
);
447 XtVaSetValues ((Widget
) m_mainWidget
, XmNcursorPosition
, textPosition
, NULL
);
448 SetInsertionPoint(textPosition
);
449 XmTextShowPosition ((Widget
) m_mainWidget
, textPosition
);
453 void wxTextCtrl::Clear()
455 XmTextSetString ((Widget
) m_mainWidget
, "");
459 bool wxTextCtrl::IsModified() const
464 // Makes 'unmodified'
465 void wxTextCtrl::DiscardEdits()
467 XmTextSetString ((Widget
) m_mainWidget
, "");
471 int wxTextCtrl::GetNumberOfLines() const
473 // HIDEOUSLY inefficient, but we have no choice.
474 char *s
= XmTextGetString ((Widget
) m_mainWidget
);
479 bool finished
= FALSE
;
502 long wxTextCtrl::XYToPosition(long x
, long y
) const
504 /* It seems, that there is a bug in some versions of the Motif library,
505 so the original wxWin-Code doesn't work. */
507 Widget textWidget = (Widget) handle;
508 return (long) XmTextXYToPos (textWidget, (Position) x, (Position) y);
510 /* Now a little workaround: */
512 for (int i
=0; i
<y
; i
++) r
+=(GetLineLength(i
)+1);
516 void wxTextCtrl::PositionToXY(long pos
, long *x
, long *y
) const
519 XmTextPosToXY((Widget
) m_mainWidget
, pos
, &xx
, &yy
);
523 void wxTextCtrl::ShowPosition(long pos
)
525 XmTextShowPosition ((Widget
) m_mainWidget
, (XmTextPosition
) pos
);
528 int wxTextCtrl::GetLineLength(long lineNo
) const
530 wxString str
= GetLineText (lineNo
);
531 return (int) str
.Length();
534 wxString
wxTextCtrl::GetLineText(long lineNo
) const
536 // HIDEOUSLY inefficient, but we have no choice.
537 char *s
= XmTextGetString ((Widget
) m_mainWidget
);
544 for (i
= 0; currentLine
!= lineNo
&& s
[i
]; i
++ )
549 for (j
= 0; s
[i
] && s
[i
] != '\n'; i
++, j
++ )
556 return wxEmptyString
;
563 void wxTextCtrl::Command(wxCommandEvent
& event
)
565 SetValue (event
.GetString());
566 ProcessCommand (event
);
569 void wxTextCtrl::OnDropFiles(wxDropFilesEvent
& event
)
571 // By default, load the first file into the text window.
572 if (event
.GetNumberOfFiles() > 0)
574 LoadFile(event
.GetFiles()[0]);
578 // The streambuf code was partly taken from chapter 3 by Jerry Schwarz of
579 // AT&T's "C++ Lanuage System Release 3.0 Library Manual" - Stein Somers
581 //=========================================================================
582 // Called then the buffer is full (gcc 2.6.3)
583 // or when "endl" is output (Borland 4.5)
584 //=========================================================================
585 // Class declaration using multiple inheritance doesn't work properly for
586 // Borland. See note in wb_text.h.
587 #ifndef NO_TEXT_WINDOW_STREAM
588 int wxTextCtrl::overflow(int c
)
590 // Make sure there is a holding area
591 if ( allocate()==EOF
)
593 wxError("Streambuf allocation failed","Internal error");
597 // Verify that there are no characters in get area
598 if ( gptr() && gptr() < egptr() )
600 wxError("wxTextCtrl::overflow: Who's trespassing my get area?","Internal error");
607 // Make sure there is a put area
610 /* This doesn't seem to be fatal so comment out error message */
611 // wxError("Put area not opened","Internal error");
612 setp( base(), base() );
615 // Determine how many characters have been inserted but no consumed
616 int plen
= pptr() - pbase();
618 // Now Jerry relies on the fact that the buffer is at least 2 chars
619 // long, but the holding area "may be as small as 1" ???
620 // And we need an additional \0, so let's keep this inefficient but
623 // If c!=EOF, it is a character that must also be comsumed
624 int xtra
= c
==EOF
? 0 : 1;
626 // Write temporary C-string to wxTextWindow
628 char *txt
= new char[plen
+xtra
+1];
629 memcpy(txt
, pbase(), plen
);
630 txt
[plen
] = (char)c
; // append c
631 txt
[plen
+xtra
] = '\0'; // append '\0' or overwrite c
632 // If the put area already contained \0, output will be truncated there
638 setp(pbase(), epptr());
640 #if defined(__WATCOMC__)
642 #elif defined(zapeof) // HP-UX (all cfront based?)
645 return c
!=EOF
? c
: 0; // this should make everybody happy
649 //=========================================================================
650 // called then "endl" is output (gcc) or then explicit sync is done (Borland)
651 //=========================================================================
652 int wxTextCtrl::sync()
654 // Verify that there are no characters in get area
655 if ( gptr() && gptr() < egptr() )
657 wxError("Who's trespassing my get area?","Internal error");
661 if ( pptr() && pptr() > pbase() ) return overflow(EOF
);
665 int len = pptr() - pbase();
666 char *txt = new char[len+1];
667 strncpy(txt, pbase(), len);
670 setp(pbase(), epptr());
676 //=========================================================================
677 // Should not be called by a "ostream". Used by a "istream"
678 //=========================================================================
679 int wxTextCtrl::underflow()
685 wxTextCtrl
& wxTextCtrl::operator<<(const wxString
& s
)
691 wxTextCtrl
& wxTextCtrl::operator<<(float f
)
694 str
.Printf("%.2f", f
);
699 wxTextCtrl
& wxTextCtrl::operator<<(double d
)
702 str
.Printf("%.2f", d
);
707 wxTextCtrl
& wxTextCtrl::operator<<(int i
)
715 wxTextCtrl
& wxTextCtrl::operator<<(long i
)
718 str
.Printf("%ld", i
);
723 wxTextCtrl
& wxTextCtrl::operator<<(const char c
)
733 void wxTextCtrl::OnChar(wxKeyEvent
& event
)
735 // Indicates that we should generate a normal command, because
736 // we're letting default behaviour happen (otherwise it's vetoed
737 // by virtue of overriding OnChar)
738 m_processedDefault
= TRUE
;
740 if (m_tempCallbackStruct
)
742 XmTextVerifyCallbackStruct
*textStruct
=
743 (XmTextVerifyCallbackStruct
*) m_tempCallbackStruct
;
744 textStruct
->doit
= True
;
745 if (isascii(event
.m_keyCode
) && (textStruct
->text
->length
== 1))
747 textStruct
->text
->ptr
[0] = ((event
.m_keyCode
== WXK_RETURN
) ? 10 : event
.m_keyCode
);
752 void wxTextCtrl::ChangeFont(bool keepOriginalSize
)
754 wxWindow::ChangeFont(keepOriginalSize
);
757 void wxTextCtrl::ChangeBackgroundColour()
759 wxWindow::ChangeBackgroundColour();
761 /* TODO: should scrollbars be affected? Should probably have separate
762 * function to change them (by default, taken from wxSystemSettings)
764 if (m_windowStyle
& wxTE_MULTILINE
)
766 Widget parent
= XtParent ((Widget
) m_mainWidget
);
769 XtVaGetValues (parent
,
770 XmNhorizontalScrollBar
, &hsb
,
771 XmNverticalScrollBar
, &vsb
,
773 wxColour backgroundColour
= wxSystemSettings::GetSystemColour(wxSYS_COLOUR_3DFACE
);
775 DoChangeBackgroundColour((WXWidget
) hsb
, backgroundColour
, TRUE
);
777 DoChangeBackgroundColour((WXWidget
) vsb
, backgroundColour
, TRUE
);
779 DoChangeBackgroundColour((WXWidget
) parent
, m_backgroundColour
, TRUE
);
783 void wxTextCtrl::ChangeForegroundColour()
785 wxWindow::ChangeForegroundColour();
787 if (m_windowStyle
& wxTE_MULTILINE
)
789 Widget parent
= XtParent ((Widget
) m_mainWidget
);
792 XtVaGetValues (parent
,
793 XmNhorizontalScrollBar
, &hsb
,
794 XmNverticalScrollBar
, &vsb
,
797 /* TODO: should scrollbars be affected? Should probably have separate
798 * function to change them (by default, taken from wxSystemSettings)
800 DoChangeForegroundColour((WXWidget) hsb, m_foregroundColour);
802 DoChangeForegroundColour((WXWidget) vsb, m_foregroundColour);
804 DoChangeForegroundColour((WXWidget
) parent
, m_foregroundColour
);
808 void wxTextCtrl::DoSendEvents(void *wxcbs
, long keycode
)
810 // we're in process of updating the text control
811 m_tempCallbackStruct
= wxcbs
;
813 XmTextVerifyCallbackStruct
*cbs
= (XmTextVerifyCallbackStruct
*)wxcbs
;
815 wxKeyEvent
event (wxEVT_CHAR
);
816 event
.SetId(GetId());
817 event
.m_keyCode
= keycode
;
818 event
.SetEventObject(this);
820 // Only if wxTextCtrl::OnChar is called will this be set to True (and
821 // the character passed through)
824 GetEventHandler()->ProcessEvent(event
);
826 if ( !InSetValue() && m_processedDefault
)
828 // Can generate a command
829 wxCommandEvent
commandEvent(wxEVT_COMMAND_TEXT_UPDATED
, GetId());
830 commandEvent
.SetEventObject(this);
831 ProcessCommand(commandEvent
);
834 // do it after the (user) event handlers processed the events because
835 // otherwise GetValue() would return incorrect (not yet updated value)
836 m_tempCallbackStruct
= NULL
;
839 // ----------------------------------------------------------------------------
840 // helpers and Motif callbacks
841 // ----------------------------------------------------------------------------
843 static void MergeChangesIntoString(wxString
& value
,
844 XmTextVerifyCallbackStruct
*cbs
)
847 * At least on my system (SunOS 4.1.3 + Motif 1.2), you need to think of
848 * every event as a replace event. cbs->text->ptr gives the replacement
849 * text, cbs->startPos gives the index of the first char affected by the
850 * replace, and cbs->endPos gives the index one more than the last char
851 * affected by the replace (startPos == endPos implies an empty range).
852 * Hence, a deletion is represented by replacing all input text with a
853 * blank string ("", *not* NULL!). A simple insertion that does not
854 * overwrite any text has startPos == endPos.
859 // easy case: the ol value was empty
860 value
= cbs
->text
->ptr
;
864 // merge the changes into the value
865 const char * const passwd
= value
;
866 int len
= value
.length();
868 len
+= strlen(cbs
->text
->ptr
) + 1; // + new text (if any) + NUL
869 len
-= cbs
->endPos
- cbs
->startPos
; // - text from affected region.
871 char * newS
= new char [len
];
873 * insert
= cbs
->text
->ptr
;
875 // Copy (old) text from passwd, up to the start posn of the change.
877 const char * p
= passwd
;
878 for (i
= 0; i
< cbs
->startPos
; ++i
)
881 // Copy the text to be inserted).
885 // Finally, copy into newS any remaining text from passwd[endPos] on.
886 for (p
= passwd
+ cbs
->endPos
; *p
; )
897 wxTextWindowChangedProc (Widget w
, XtPointer clientData
, XtPointer ptr
)
899 if (!wxGetWindowFromTable(w
))
900 // Widget has been deleted!
903 wxTextCtrl
*tw
= (wxTextCtrl
*) clientData
;
904 tw
->SetModified(TRUE
);
908 wxTextWindowModifyProc (Widget w
, XtPointer clientData
, XmTextVerifyCallbackStruct
*cbs
)
910 wxTextCtrl
*tw
= (wxTextCtrl
*) clientData
;
911 tw
->m_processedDefault
= FALSE
;
913 // First, do some stuff if it's a password control: in this case, we need
914 // to store the string inside the class because GetValue() can't retrieve
915 // it from the text ctrl. We do *not* do it in other circumstances because
916 // it would double the amount of memory needed.
918 if ( tw
->GetWindowStyleFlag() & wxTE_PASSWORD
)
920 MergeChangesIntoString(tw
->m_value
, cbs
);
922 if ( cbs
->text
->length
> 0 )
925 for (i
= 0; i
< cbs
->text
->length
; ++i
)
926 cbs
->text
->ptr
[i
] = '*';
927 cbs
->text
->ptr
[i
] = '\0';
931 // If we're already within an OnChar, return: probably a programmatic
933 if (tw
->m_tempCallbackStruct
)
936 // Check for a backspace
937 if (cbs
->startPos
== (cbs
->currInsert
- 1))
939 tw
->DoSendEvents((void *)cbs
, WXK_DELETE
);
944 // Pasting operation: let it through without calling OnChar
945 if (cbs
->text
->length
> 1)
948 // Something other than text
949 if (cbs
->text
->ptr
== NULL
)
953 char ch
= cbs
->text
->ptr
[0];
954 tw
->DoSendEvents((void *)cbs
, ch
== '\n' ? '\r' : ch
);
958 wxTextWindowGainFocusProc (Widget w
, XtPointer clientData
, XmAnyCallbackStruct
*cbs
)
960 if (!wxGetWindowFromTable(w
))
963 wxTextCtrl
*tw
= (wxTextCtrl
*) clientData
;
964 wxFocusEvent
event(wxEVT_SET_FOCUS
, tw
->GetId());
965 event
.SetEventObject(tw
);
966 tw
->GetEventHandler()->ProcessEvent(event
);
970 wxTextWindowLoseFocusProc (Widget w
, XtPointer clientData
, XmAnyCallbackStruct
*cbs
)
972 if (!wxGetWindowFromTable(w
))
975 wxTextCtrl
*tw
= (wxTextCtrl
*) clientData
;
976 wxFocusEvent
event(wxEVT_KILL_FOCUS
, tw
->GetId());
977 event
.SetEventObject(tw
);
978 tw
->GetEventHandler()->ProcessEvent(event
);
981 static void wxTextWindowActivateProc(Widget w
, XtPointer clientData
,
982 XmAnyCallbackStruct
*ptr
)
984 if (!wxGetWindowFromTable(w
))
987 wxTextCtrl
*tw
= (wxTextCtrl
*) clientData
;
989 if (tw
->InSetValue())
992 wxCommandEvent
event(wxEVT_COMMAND_TEXT_ENTER
);
993 event
.SetId(tw
->GetId());
994 event
.SetEventObject(tw
);
995 tw
->ProcessCommand(event
);