Rework wxMotif font/color inheritance so it works
[wxWidgets.git] / src / motif / textctrl.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/motif/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 // ============================================================================
13 // declarations
14 // ============================================================================
15
16 // ----------------------------------------------------------------------------
17 // headers
18 // ----------------------------------------------------------------------------
19
20 // For compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
22
23 #ifdef __VMS
24 #define XtParent XTPARENT
25 #endif
26
27 #include <sys/types.h>
28 #include <sys/stat.h>
29 #include <ctype.h>
30
31 #include "wx/textctrl.h"
32
33 #ifndef WX_PRECOMP
34 #include "wx/utils.h"
35 #include "wx/settings.h"
36 #endif
37
38 #include "wx/filefn.h"
39
40 #ifdef __VMS__
41 #pragma message disable nosimpint
42 #endif
43 #include <Xm/Text.h>
44 #ifdef __VMS__
45 #pragma message enable nosimpint
46 #endif
47
48 #include "wx/motif/private.h"
49
50 // ----------------------------------------------------------------------------
51 // private functions
52 // ----------------------------------------------------------------------------
53
54 // helper: inserts the new text in the value of the text ctrl and returns the
55 // result in place
56 static void MergeChangesIntoString(wxString& value,
57 XmTextVerifyCallbackStruct *textStruct);
58
59 // callbacks
60 static void wxTextWindowChangedProc(Widget w, XtPointer clientData, XtPointer ptr);
61 static void wxTextWindowModifyProc(Widget w, XtPointer clientData, XmTextVerifyCallbackStruct *cbs);
62 static void wxTextWindowGainFocusProc(Widget w, XtPointer clientData, XmAnyCallbackStruct *cbs);
63 static void wxTextWindowLoseFocusProc(Widget w, XtPointer clientData, XmAnyCallbackStruct *cbs);
64 static void wxTextWindowActivateProc(Widget w, XtPointer clientData, XmAnyCallbackStruct *ptr);
65
66 IMPLEMENT_DYNAMIC_CLASS(wxTextCtrl, wxTextCtrlBase)
67
68 BEGIN_EVENT_TABLE(wxTextCtrl, wxTextCtrlBase)
69 EVT_DROP_FILES(wxTextCtrl::OnDropFiles)
70 EVT_CHAR(wxTextCtrl::OnChar)
71
72 EVT_MENU(wxID_CUT, wxTextCtrl::OnCut)
73 EVT_MENU(wxID_COPY, wxTextCtrl::OnCopy)
74 EVT_MENU(wxID_PASTE, wxTextCtrl::OnPaste)
75 EVT_MENU(wxID_UNDO, wxTextCtrl::OnUndo)
76 EVT_MENU(wxID_REDO, wxTextCtrl::OnRedo)
77
78 EVT_UPDATE_UI(wxID_CUT, wxTextCtrl::OnUpdateCut)
79 EVT_UPDATE_UI(wxID_COPY, wxTextCtrl::OnUpdateCopy)
80 EVT_UPDATE_UI(wxID_PASTE, wxTextCtrl::OnUpdatePaste)
81 EVT_UPDATE_UI(wxID_UNDO, wxTextCtrl::OnUpdateUndo)
82 EVT_UPDATE_UI(wxID_REDO, wxTextCtrl::OnUpdateRedo)
83
84 END_EVENT_TABLE()
85
86 // ============================================================================
87 // implementation
88 // ============================================================================
89
90 // ----------------------------------------------------------------------------
91 // wxTextCtrl
92 // ----------------------------------------------------------------------------
93
94 // Text item
95 wxTextCtrl::wxTextCtrl()
96 {
97 m_tempCallbackStruct = (void*) NULL;
98 m_modified = false;
99 m_processedDefault = false;
100 }
101
102 bool wxTextCtrl::Create(wxWindow *parent,
103 wxWindowID id,
104 const wxString& value,
105 const wxPoint& pos,
106 const wxSize& size,
107 long style,
108 const wxValidator& validator,
109 const wxString& name)
110 {
111 if( !CreateControl( parent, id, pos, size, style, validator, name ) )
112 return false;
113 PreCreation();
114
115 m_tempCallbackStruct = (void*) NULL;
116 m_modified = false;
117 m_processedDefault = false;
118
119 Widget parentWidget = (Widget) parent->GetClientWidget();
120
121 Bool wantHorizScroll = (m_windowStyle & wxHSCROLL) != 0 ? True : False;
122 // If we don't have horizontal scrollbars, we want word wrap.
123 // OpenMotif 2.1 crashes if wantWordWrap is True in Japanese
124 // locale (and probably other multibyte locales). The check might be
125 // more precise
126 #if wxCHECK_LESSTIF() || wxCHECK_MOTIF_VERSION( 2, 2 )
127 Bool wantWordWrap = wantHorizScroll == True ? False : True;
128 #else
129 Bool wantWordWrap = False;
130 #endif
131
132 if (m_windowStyle & wxTE_MULTILINE)
133 {
134 Arg args[8];
135 int count = 0;
136 XtSetArg (args[count], XmNscrollHorizontal, wantHorizScroll); ++count;
137 if( m_font.IsOk() )
138 XtSetArg (args[count], (String) wxFont::GetFontTag(),
139 m_font.GetFontType( XtDisplay(parentWidget) ) ); ++count;
140 XtSetArg (args[count], XmNwordWrap, wantWordWrap); ++count;
141 XtSetArg (args[count], XmNvalue, value.mb_str()); ++count;
142 XtSetArg (args[count], XmNeditable,
143 style & wxTE_READONLY ? False : True); ++count;
144 XtSetArg (args[count], XmNeditMode, XmMULTI_LINE_EDIT ); ++count;
145
146 m_mainWidget =
147 (WXWidget) XmCreateScrolledText(parentWidget,
148 wxConstCast(name.mb_str(), char),
149 args, count);
150
151 XtManageChild ((Widget) m_mainWidget);
152 }
153 else
154 {
155 m_mainWidget = (WXWidget)XtVaCreateManagedWidget
156 (
157 wxConstCast(name.mb_str(), char),
158 xmTextWidgetClass,
159 parentWidget,
160 wxFont::GetFontTag(), m_font.GetFontType( XtDisplay(parentWidget) ),
161 XmNvalue, value.mb_str(),
162 XmNeditable, (style & wxTE_READONLY) ?
163 False : True,
164 NULL
165 );
166
167 #if 0
168 // TODO: Is this relevant? What does it do?
169 int noCols = 2;
170 if (!value.IsNull() && (value.length() > (unsigned int) noCols))
171 noCols = value.length();
172 XtVaSetValues((Widget) m_mainWidget,
173 XmNcolumns, noCols,
174 NULL);
175 #endif
176 }
177
178 // remove border if asked for
179 if ( style & wxNO_BORDER )
180 {
181 XtVaSetValues((Widget)m_mainWidget,
182 XmNshadowThickness, 0,
183 NULL);
184 }
185
186 // install callbacks
187 XtAddCallback((Widget) m_mainWidget, XmNvalueChangedCallback, (XtCallbackProc)wxTextWindowChangedProc, (XtPointer)this);
188
189 XtAddCallback((Widget) m_mainWidget, XmNmodifyVerifyCallback, (XtCallbackProc)wxTextWindowModifyProc, (XtPointer)this);
190
191 XtAddCallback((Widget) m_mainWidget, XmNactivateCallback, (XtCallbackProc)wxTextWindowActivateProc, (XtPointer)this);
192
193 XtAddCallback((Widget) m_mainWidget, XmNfocusCallback, (XtCallbackProc)wxTextWindowGainFocusProc, (XtPointer)this);
194
195 XtAddCallback((Widget) m_mainWidget, XmNlosingFocusCallback, (XtCallbackProc)wxTextWindowLoseFocusProc, (XtPointer)this);
196
197 PostCreation();
198 AttachWidget (parent, m_mainWidget, (WXWidget) NULL,
199 pos.x, pos.y, size.x, size.y);
200
201 return true;
202 }
203
204 WXWidget wxTextCtrl::GetTopWidget() const
205 {
206 return IsMultiLine() ? (WXWidget)XtParent((Widget)m_mainWidget)
207 : m_mainWidget;
208 }
209
210 wxString wxTextCtrl::GetValue() const
211 {
212 wxString str; // result
213
214 if (m_windowStyle & wxTE_PASSWORD)
215 {
216 // the value is stored always in m_value because it can't be retrieved
217 // from the text control
218 str = m_value;
219 }
220 else
221 {
222 // just get the string from Motif
223 char *s = XmTextGetString ((Widget) m_mainWidget);
224 if ( s )
225 {
226 str = s;
227 XtFree (s);
228 }
229 //else: return empty string
230
231 if ( m_tempCallbackStruct )
232 {
233 // the string in the control isn't yet updated, can't use it as is
234 MergeChangesIntoString(str, (XmTextVerifyCallbackStruct *)
235 m_tempCallbackStruct);
236 }
237 }
238
239 return str;
240 }
241
242 void wxTextCtrl::DoSetValue(const wxString& text, int flags)
243 {
244 m_inSetValue = true;
245
246 XmTextSetString ((Widget) m_mainWidget, wxConstCast(text.mb_str(), char));
247 XtVaSetValues ((Widget) m_mainWidget,
248 XmNcursorPosition, text.length(),
249 NULL);
250
251 SetInsertionPoint(text.length());
252 XmTextShowPosition ((Widget) m_mainWidget, text.length());
253 m_modified = true;
254
255 m_inSetValue = false;
256
257 if ( flags & SetValue_SendEvent )
258 SendTextUpdatedEvent();
259 }
260
261 // Clipboard operations
262 void wxTextCtrl::Copy()
263 {
264 XmTextCopy((Widget) m_mainWidget, CurrentTime);
265 }
266
267 void wxTextCtrl::Cut()
268 {
269 XmTextCut((Widget) m_mainWidget, CurrentTime);
270 }
271
272 void wxTextCtrl::Paste()
273 {
274 XmTextPaste((Widget) m_mainWidget);
275 }
276
277 bool wxTextCtrl::CanCopy() const
278 {
279 // Can copy if there's a selection
280 long from, to;
281 GetSelection(& from, & to);
282 return (from != to) ;
283 }
284
285 bool wxTextCtrl::CanCut() const
286 {
287 // Can cut if there's a selection
288 long from, to;
289 GetSelection(& from, & to);
290 return (from != to) && (IsEditable());
291 }
292
293 bool wxTextCtrl::CanPaste() const
294 {
295 return IsEditable() ;
296 }
297
298 // Undo/redo
299 void wxTextCtrl::Undo()
300 {
301 // Not possible in Motif
302 }
303
304 void wxTextCtrl::Redo()
305 {
306 // Not possible in Motif
307 }
308
309 bool wxTextCtrl::CanUndo() const
310 {
311 // No Undo in Motif
312 return false;
313 }
314
315 bool wxTextCtrl::CanRedo() const
316 {
317 // No Redo in Motif
318 return false;
319 }
320
321 // If the return values from and to are the same, there is no
322 // selection.
323 void wxTextCtrl::GetSelection(long* from, long* to) const
324 {
325 XmTextPosition left, right;
326
327 XmTextGetSelectionPosition((Widget) m_mainWidget, & left, & right);
328
329 *from = (long) left;
330 *to = (long) right;
331 }
332
333 bool wxTextCtrl::IsEditable() const
334 {
335 return (XmTextGetEditable((Widget) m_mainWidget) != 0);
336 }
337
338 void wxTextCtrl::SetEditable(bool editable)
339 {
340 XmTextSetEditable((Widget) m_mainWidget, (Boolean) editable);
341 }
342
343 void wxTextCtrl::SetInsertionPoint(long pos)
344 {
345 XmTextSetInsertionPosition ((Widget) m_mainWidget, (XmTextPosition) pos);
346 }
347
348 void wxTextCtrl::SetInsertionPointEnd()
349 {
350 wxTextPos pos = GetLastPosition();
351 SetInsertionPoint(pos);
352 }
353
354 long wxTextCtrl::GetInsertionPoint() const
355 {
356 return (long) XmTextGetInsertionPosition ((Widget) m_mainWidget);
357 }
358
359 wxTextPos wxTextCtrl::GetLastPosition() const
360 {
361 return (long) XmTextGetLastPosition ((Widget) m_mainWidget);
362 }
363
364 void wxTextCtrl::Replace(long from, long to, const wxString& value)
365 {
366 XmTextReplace ((Widget) m_mainWidget, (XmTextPosition) from, (XmTextPosition) to,
367 wxConstCast(value.mb_str(), char));
368 }
369
370 void wxTextCtrl::Remove(long from, long to)
371 {
372 XmTextSetSelection ((Widget) m_mainWidget, (XmTextPosition) from, (XmTextPosition) to,
373 (Time) 0);
374 XmTextRemove ((Widget) m_mainWidget);
375 }
376
377 void wxTextCtrl::SetSelection(long from, long to)
378 {
379 if( to == -1 )
380 to = GetLastPosition();
381
382 XmTextSetSelection ((Widget) m_mainWidget, (XmTextPosition) from, (XmTextPosition) to,
383 (Time) 0);
384 }
385
386 void wxTextCtrl::WriteText(const wxString& text)
387 {
388 long textPosition = GetInsertionPoint() + text.length();
389 XmTextInsert ((Widget) m_mainWidget, GetInsertionPoint(),
390 wxConstCast(text.mb_str(), char));
391 XtVaSetValues ((Widget) m_mainWidget, XmNcursorPosition, textPosition, NULL);
392 SetInsertionPoint(textPosition);
393 XmTextShowPosition ((Widget) m_mainWidget, textPosition);
394 m_modified = true;
395 }
396
397 void wxTextCtrl::AppendText(const wxString& text)
398 {
399 wxTextPos textPosition = GetLastPosition() + text.length();
400 XmTextInsert ((Widget) m_mainWidget, GetLastPosition(),
401 wxConstCast(text.mb_str(), char));
402 XtVaSetValues ((Widget) m_mainWidget, XmNcursorPosition, textPosition, NULL);
403 SetInsertionPoint(textPosition);
404 XmTextShowPosition ((Widget) m_mainWidget, textPosition);
405 m_modified = true;
406 }
407
408 void wxTextCtrl::Clear()
409 {
410 XmTextSetString ((Widget) m_mainWidget, wxMOTIF_STR(""));
411 m_modified = false;
412 }
413
414 bool wxTextCtrl::IsModified() const
415 {
416 return m_modified;
417 }
418
419 // Makes modified or unmodified
420 void wxTextCtrl::MarkDirty()
421 {
422 m_modified = true;
423 }
424
425 void wxTextCtrl::DiscardEdits()
426 {
427 m_modified = false;
428 }
429
430 int wxTextCtrl::GetNumberOfLines() const
431 {
432 // HIDEOUSLY inefficient, but we have no choice.
433 char *s = XmTextGetString ((Widget) m_mainWidget);
434 if (s)
435 {
436 long i = 0;
437 int currentLine = 0;
438 bool finished = false;
439 while (!finished)
440 {
441 int ch = s[i];
442 if (ch == '\n')
443 {
444 currentLine++;
445 i++;
446 }
447 else if (ch == 0)
448 {
449 finished = true;
450 }
451 else
452 i++;
453 }
454
455 XtFree (s);
456 return currentLine;
457 }
458 return 0;
459 }
460
461 long wxTextCtrl::XYToPosition(long x, long y) const
462 {
463 /* It seems, that there is a bug in some versions of the Motif library,
464 so the original wxWin-Code doesn't work. */
465 /*
466 Widget textWidget = (Widget) handle;
467 return (long) XmTextXYToPos (textWidget, (Position) x, (Position) y);
468 */
469 /* Now a little workaround: */
470 long r=0;
471 for (int i=0; i<y; i++) r+=(GetLineLength(i)+1);
472 return r+x;
473 }
474
475 bool wxTextCtrl::PositionToXY(long pos, long *x, long *y) const
476 {
477 Position xx, yy;
478 XmTextPosToXY((Widget) m_mainWidget, pos, &xx, &yy);
479 if ( x )
480 *x = xx;
481 if ( y )
482 *y = yy;
483
484 return true;
485 }
486
487 void wxTextCtrl::ShowPosition(long pos)
488 {
489 XmTextShowPosition ((Widget) m_mainWidget, (XmTextPosition) pos);
490 }
491
492 int wxTextCtrl::GetLineLength(long lineNo) const
493 {
494 wxString str = GetLineText (lineNo);
495 return (int) str.length();
496 }
497
498 wxString wxTextCtrl::GetLineText(long lineNo) const
499 {
500 // HIDEOUSLY inefficient, but we have no choice.
501 char *s = XmTextGetString ((Widget) m_mainWidget);
502
503 if (s)
504 {
505 wxString buf;
506 long i;
507 int currentLine = 0;
508 for (i = 0; currentLine != lineNo && s[i]; i++ )
509 if (s[i] == '\n')
510 currentLine++;
511 // Now get the text
512 int j;
513 for (j = 0; s[i] && s[i] != '\n'; i++, j++ )
514 buf += s[i];
515
516 XtFree(s);
517 return buf;
518 }
519 else
520 return wxEmptyString;
521 }
522
523 /*
524 * Text item
525 */
526
527 void wxTextCtrl::Command(wxCommandEvent & event)
528 {
529 SetValue (event.GetString());
530 ProcessCommand (event);
531 }
532
533 void wxTextCtrl::OnDropFiles(wxDropFilesEvent& event)
534 {
535 // By default, load the first file into the text window.
536 if (event.GetNumberOfFiles() > 0)
537 {
538 LoadFile(event.GetFiles()[0]);
539 }
540 }
541
542 void wxTextCtrl::OnChar(wxKeyEvent& event)
543 {
544 // Indicates that we should generate a normal command, because
545 // we're letting default behaviour happen (otherwise it's vetoed
546 // by virtue of overriding OnChar)
547 m_processedDefault = true;
548
549 if (m_tempCallbackStruct)
550 {
551 XmTextVerifyCallbackStruct *textStruct =
552 (XmTextVerifyCallbackStruct *) m_tempCallbackStruct;
553 textStruct->doit = True;
554 if (isascii(event.m_keyCode) && (textStruct->text->length == 1))
555 {
556 textStruct->text->ptr[0] = (char)((event.m_keyCode == WXK_RETURN) ? 10 : event.m_keyCode);
557 }
558 }
559 }
560
561 void wxTextCtrl::ChangeFont(bool keepOriginalSize)
562 {
563 wxWindow::ChangeFont(keepOriginalSize);
564 }
565
566 void wxTextCtrl::ChangeBackgroundColour()
567 {
568 wxWindow::ChangeBackgroundColour();
569
570 /* TODO: should scrollbars be affected? Should probably have separate
571 * function to change them (by default, taken from wxSystemSettings)
572 */
573 if (m_windowStyle & wxTE_MULTILINE)
574 {
575 Widget parent = XtParent ((Widget) m_mainWidget);
576 Widget hsb, vsb;
577
578 XtVaGetValues (parent,
579 XmNhorizontalScrollBar, &hsb,
580 XmNverticalScrollBar, &vsb,
581 NULL);
582 wxColour backgroundColour = wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE);
583 if (hsb)
584 wxDoChangeBackgroundColour((WXWidget) hsb, backgroundColour, true);
585 if (vsb)
586 wxDoChangeBackgroundColour((WXWidget) vsb, backgroundColour, true);
587
588 // MBN: why change parent background?
589 // DoChangeBackgroundColour((WXWidget) parent, m_backgroundColour, true);
590 }
591 }
592
593 void wxTextCtrl::ChangeForegroundColour()
594 {
595 wxWindow::ChangeForegroundColour();
596
597 if (m_windowStyle & wxTE_MULTILINE)
598 {
599 Widget parent = XtParent ((Widget) m_mainWidget);
600 Widget hsb, vsb;
601
602 XtVaGetValues (parent,
603 XmNhorizontalScrollBar, &hsb,
604 XmNverticalScrollBar, &vsb,
605 NULL);
606
607 /* TODO: should scrollbars be affected? Should probably have separate
608 * function to change them (by default, taken from wxSystemSettings)
609 if (hsb)
610 DoChangeForegroundColour((WXWidget) hsb, m_foregroundColour);
611 if (vsb)
612 DoChangeForegroundColour((WXWidget) vsb, m_foregroundColour);
613 */
614 wxDoChangeForegroundColour((WXWidget) parent, m_foregroundColour);
615 }
616 }
617
618 void wxTextCtrl::DoSendEvents(void *wxcbs, long keycode)
619 {
620 // we're in process of updating the text control
621 m_tempCallbackStruct = wxcbs;
622
623 XmTextVerifyCallbackStruct *cbs = (XmTextVerifyCallbackStruct *)wxcbs;
624
625 wxKeyEvent event (wxEVT_CHAR);
626 event.SetId(GetId());
627 event.m_keyCode = keycode;
628 event.SetEventObject(this);
629
630 // Only if wxTextCtrl::OnChar is called will this be set to True (and
631 // the character passed through)
632 cbs->doit = False;
633
634 GetEventHandler()->ProcessEvent(event);
635
636 if ( !InSetValue() && m_processedDefault )
637 {
638 // Can generate a command
639 wxCommandEvent commandEvent(wxEVT_COMMAND_TEXT_UPDATED, GetId());
640 commandEvent.SetEventObject(this);
641 ProcessCommand(commandEvent);
642 }
643
644 // do it after the (user) event handlers processed the events because
645 // otherwise GetValue() would return incorrect (not yet updated value)
646 m_tempCallbackStruct = NULL;
647 }
648
649 wxSize wxDoGetSingleTextCtrlBestSize( Widget textWidget,
650 const wxWindow* window )
651 {
652 Dimension xmargin, ymargin, highlight, shadow;
653 char* value;
654
655 XtVaGetValues( textWidget,
656 XmNmarginWidth, &xmargin,
657 XmNmarginHeight, &ymargin,
658 XmNvalue, &value,
659 XmNhighlightThickness, &highlight,
660 XmNshadowThickness, &shadow,
661 NULL );
662
663 if( !value )
664 value = wxMOTIF_STR("|");
665
666 int x, y;
667 window->GetTextExtent( value, &x, &y );
668
669 if( x < 90 )
670 x = 90;
671
672 return wxSize( x + 2 * xmargin + 2 * highlight + 2 * shadow,
673 // MBN: +2 necessary: Lesstif bug or mine?
674 y + 2 * ymargin + 2 * highlight + 2 * shadow + 2 );
675 }
676
677 wxSize wxTextCtrl::DoGetBestSize() const
678 {
679 if( IsSingleLine() )
680 {
681 wxSize best = wxControl::DoGetBestSize();
682 #if wxCHECK_MOTIF_VERSION( 2, 3 )
683 // OpenMotif 2.3 gives way too big X sizes
684 wxSize other_best = wxDoGetSingleTextCtrlBestSize
685 ( (Widget) GetTopWidget(), this );
686 return wxSize( other_best.x, best.y );
687 #else
688 if( best.x < 90 ) best.x = 90;
689
690 return best;
691 #endif
692 }
693 else
694 return wxWindow::DoGetBestSize();
695 }
696
697 // ----------------------------------------------------------------------------
698 // helpers and Motif callbacks
699 // ----------------------------------------------------------------------------
700
701 static void MergeChangesIntoString(wxString& value,
702 XmTextVerifyCallbackStruct *cbs)
703 {
704 /* _sm_
705 * At least on my system (SunOS 4.1.3 + Motif 1.2), you need to think of
706 * every event as a replace event. cbs->text->ptr gives the replacement
707 * text, cbs->startPos gives the index of the first char affected by the
708 * replace, and cbs->endPos gives the index one more than the last char
709 * affected by the replace (startPos == endPos implies an empty range).
710 * Hence, a deletion is represented by replacing all input text with a
711 * blank string ("", *not* NULL!). A simple insertion that does not
712 * overwrite any text has startPos == endPos.
713 */
714
715 if ( !value )
716 {
717 // easy case: the ol value was empty
718 value = cbs->text->ptr;
719 }
720 else
721 {
722 // merge the changes into the value
723 const char * const passwd = value;
724 int len = value.length();
725
726 len += ( cbs->text->ptr ?
727 strlen(cbs->text->ptr) :
728 0 ) + 1; // + new text (if any) + NUL
729 len -= cbs->endPos - cbs->startPos; // - text from affected region.
730
731 char * newS = new char [len];
732 char * dest = newS,
733 * insert = cbs->text->ptr;
734
735 // Copy (old) text from passwd, up to the start posn of the change.
736 int i;
737 const char * p = passwd;
738 for (i = 0; i < cbs->startPos; ++i)
739 *dest++ = *p++;
740
741 // Copy the text to be inserted).
742 if (insert)
743 while (*insert)
744 *dest++ = *insert++;
745
746 // Finally, copy into newS any remaining text from passwd[endPos] on.
747 for (p = passwd + cbs->endPos; *p; )
748 *dest++ = *p++;
749 *dest = 0;
750
751 value = newS;
752
753 delete[] newS;
754 }
755 }
756
757 static void
758 wxTextWindowChangedProc (Widget w, XtPointer clientData, XtPointer WXUNUSED(ptr))
759 {
760 if (!wxGetWindowFromTable(w))
761 // Widget has been deleted!
762 return;
763
764 wxTextCtrl *tw = (wxTextCtrl *) clientData;
765 tw->SetModified(true);
766 }
767
768 static void
769 wxTextWindowModifyProc (Widget WXUNUSED(w), XtPointer clientData, XmTextVerifyCallbackStruct *cbs)
770 {
771 wxTextCtrl *tw = (wxTextCtrl *) clientData;
772 tw->m_processedDefault = false;
773
774 // First, do some stuff if it's a password control: in this case, we need
775 // to store the string inside the class because GetValue() can't retrieve
776 // it from the text ctrl. We do *not* do it in other circumstances because
777 // it would double the amount of memory needed.
778
779 if ( tw->GetWindowStyleFlag() & wxTE_PASSWORD )
780 {
781 MergeChangesIntoString(tw->m_value, cbs);
782
783 if ( cbs->text->length > 0 )
784 {
785 int i;
786 for (i = 0; i < cbs->text->length; ++i)
787 cbs->text->ptr[i] = '*';
788 cbs->text->ptr[i] = '\0';
789 }
790 }
791
792 if(tw->InSetValue())
793 return;
794
795 // If we're already within an OnChar, return: probably a programmatic
796 // insertion.
797 if (tw->m_tempCallbackStruct)
798 return;
799
800 // Check for a backspace
801 if (cbs->startPos == (cbs->currInsert - 1))
802 {
803 tw->DoSendEvents((void *)cbs, WXK_DELETE);
804
805 return;
806 }
807
808 // Pasting operation: let it through without calling OnChar
809 if (cbs->text->length > 1)
810 return;
811
812 // Something other than text
813 if (cbs->text->ptr == NULL)
814 return;
815
816 // normal key press
817 char ch = cbs->text->ptr[0];
818 tw->DoSendEvents((void *)cbs, ch == '\n' ? '\r' : ch);
819 }
820
821 static void
822 wxTextWindowGainFocusProc (Widget w, XtPointer clientData, XmAnyCallbackStruct *WXUNUSED(cbs))
823 {
824 if (!wxGetWindowFromTable(w))
825 return;
826
827 wxTextCtrl *tw = (wxTextCtrl *) clientData;
828 wxFocusEvent event(wxEVT_SET_FOCUS, tw->GetId());
829 event.SetEventObject(tw);
830 tw->GetEventHandler()->ProcessEvent(event);
831 }
832
833 static void
834 wxTextWindowLoseFocusProc (Widget w, XtPointer clientData, XmAnyCallbackStruct *WXUNUSED(cbs))
835 {
836 if (!wxGetWindowFromTable(w))
837 return;
838
839 wxTextCtrl *tw = (wxTextCtrl *) clientData;
840 wxFocusEvent event(wxEVT_KILL_FOCUS, tw->GetId());
841 event.SetEventObject(tw);
842 tw->GetEventHandler()->ProcessEvent(event);
843 }
844
845 static void wxTextWindowActivateProc(Widget w, XtPointer clientData,
846 XmAnyCallbackStruct *WXUNUSED(ptr))
847 {
848 if (!wxGetWindowFromTable(w))
849 return;
850
851 wxTextCtrl *tw = (wxTextCtrl *) clientData;
852
853 if (tw->InSetValue())
854 return;
855
856 wxCommandEvent event(wxEVT_COMMAND_TEXT_ENTER);
857 event.SetId(tw->GetId());
858 event.SetEventObject(tw);
859 tw->ProcessCommand(event);
860 }
861
862 void wxTextCtrl::OnCut(wxCommandEvent& WXUNUSED(event))
863 {
864 Cut();
865 }
866
867 void wxTextCtrl::OnCopy(wxCommandEvent& WXUNUSED(event))
868 {
869 Copy();
870 }
871
872 void wxTextCtrl::OnPaste(wxCommandEvent& WXUNUSED(event))
873 {
874 Paste();
875 }
876
877 void wxTextCtrl::OnUndo(wxCommandEvent& WXUNUSED(event))
878 {
879 Undo();
880 }
881
882 void wxTextCtrl::OnRedo(wxCommandEvent& WXUNUSED(event))
883 {
884 Redo();
885 }
886
887 void wxTextCtrl::OnUpdateCut(wxUpdateUIEvent& event)
888 {
889 event.Enable( CanCut() );
890 }
891
892 void wxTextCtrl::OnUpdateCopy(wxUpdateUIEvent& event)
893 {
894 event.Enable( CanCopy() );
895 }
896
897 void wxTextCtrl::OnUpdatePaste(wxUpdateUIEvent& event)
898 {
899 event.Enable( CanPaste() );
900 }
901
902 void wxTextCtrl::OnUpdateUndo(wxUpdateUIEvent& event)
903 {
904 event.Enable( CanUndo() );
905 }
906
907 void wxTextCtrl::OnUpdateRedo(wxUpdateUIEvent& event)
908 {
909 event.Enable( CanRedo() );
910 }