1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "textctrl.h"
16 #include <sys/types.h>
20 #include "wx/textctrl.h"
21 #include "wx/settings.h"
22 #include "wx/filefn.h"
25 #if defined(__BORLANDC__) && !defined(__WIN32__)
34 #include <sys/types.h>
38 #include "wx/motif/private.h"
41 wxTextWindowChangedProc (Widget w
, XtPointer clientData
, XtPointer ptr
);
43 wxTextWindowModifyProc (Widget w
, XtPointer clientData
, XmTextVerifyCallbackStruct
*cbs
);
45 wxTextWindowGainFocusProc (Widget w
, XtPointer clientData
, XmAnyCallbackStruct
*cbs
);
47 wxTextWindowLoseFocusProc (Widget w
, XtPointer clientData
, XmAnyCallbackStruct
*cbs
);
48 static void wxTextWindowActivateProc(Widget w
, XtPointer clientData
,
49 XmAnyCallbackStruct
*ptr
);
51 #if !USE_SHARED_LIBRARY
52 IMPLEMENT_DYNAMIC_CLASS(wxTextCtrl
, wxControl
)
54 BEGIN_EVENT_TABLE(wxTextCtrl
, wxControl
)
55 EVT_DROP_FILES(wxTextCtrl::OnDropFiles
)
56 EVT_CHAR(wxTextCtrl::OnChar
)
61 wxTextCtrl::wxTextCtrl()
62 #ifndef NO_TEXT_WINDOW_STREAM
67 m_tempCallbackStruct
= (void*) NULL
;
69 m_processedDefault
= FALSE
;
72 bool wxTextCtrl::Create(wxWindow
*parent
, wxWindowID id
,
73 const wxString
& value
,
75 const wxSize
& size
, long style
,
76 const wxValidator
& validator
,
79 m_tempCallbackStruct
= (void*) NULL
;
81 m_processedDefault
= FALSE
;
83 m_backgroundColour
= parent
->GetBackgroundColour();
84 m_foregroundColour
= parent
->GetForegroundColour();
87 SetValidator(validator
);
88 if (parent
) parent
->AddChild(this);
90 m_windowStyle
= style
;
93 m_windowId
= (int)NewControlId();
97 Widget parentWidget
= (Widget
) parent
->GetClientWidget();
99 bool wantHorizScrolling
= ((m_windowStyle
& wxHSCROLL
) != 0);
101 // If we don't have horizontal scrollbars, we want word wrap.
102 bool wantWordWrap
= !wantHorizScrolling
;
104 if (m_windowStyle
& wxTE_MULTILINE
)
107 XtSetArg (args
[0], XmNscrollHorizontal
, wantHorizScrolling
? True
: False
);
108 XtSetArg (args
[1], XmNwordWrap
, wantWordWrap
? True
: False
);
110 m_mainWidget
= (WXWidget
) XmCreateScrolledText (parentWidget
, (char*) (const char*) name
, args
, 2);
112 XtVaSetValues ((Widget
) m_mainWidget
,
113 XmNeditable
, ((style
& wxTE_READONLY
) ? False
: True
),
114 XmNeditMode
, XmMULTI_LINE_EDIT
,
116 XtManageChild ((Widget
) m_mainWidget
);
120 m_mainWidget
= (WXWidget
) XtVaCreateManagedWidget ((char*) (const char*) name
,
121 xmTextWidgetClass
, parentWidget
,
124 // TODO: Is this relevant? What does it do?
126 if (!value
.IsNull() && (value
.Length() > (unsigned int) noCols
))
127 noCols
= value
.Length();
128 XtVaSetValues ((Widget
) m_mainWidget
,
134 XmTextSetString ((Widget
) m_mainWidget
, (char*) (const char*) value
);
136 XtAddCallback((Widget
) m_mainWidget
, XmNvalueChangedCallback
, (XtCallbackProc
)wxTextWindowChangedProc
, (XtPointer
)this);
138 XtAddCallback((Widget
) m_mainWidget
, XmNmodifyVerifyCallback
, (XtCallbackProc
)wxTextWindowModifyProc
, (XtPointer
)this);
140 XtAddCallback((Widget
) m_mainWidget
, XmNactivateCallback
, (XtCallbackProc
)wxTextWindowActivateProc
, (XtPointer
)this);
142 XtAddCallback((Widget
) m_mainWidget
, XmNfocusCallback
, (XtCallbackProc
)wxTextWindowGainFocusProc
, (XtPointer
)this);
144 XtAddCallback((Widget
) m_mainWidget
, XmNlosingFocusCallback
, (XtCallbackProc
)wxTextWindowLoseFocusProc
, (XtPointer
)this);
146 m_windowFont
= parent
->GetFont();
149 SetCanAddEventHandler(TRUE
);
150 AttachWidget (parent
, m_mainWidget
, (WXWidget
) NULL
, pos
.x
, pos
.y
, size
.x
, size
.y
);
152 ChangeBackgroundColour();
157 WXWidget
wxTextCtrl::GetTopWidget() const
159 return ((m_windowStyle
& wxTE_MULTILINE
) ? (WXWidget
) XtParent((Widget
) m_mainWidget
) : m_mainWidget
);
162 wxString
wxTextCtrl::GetValue() const
164 if (m_windowStyle
& wxTE_PASSWORD
)
168 char *s
= XmTextGetString ((Widget
) m_mainWidget
);
177 return wxEmptyString
;
182 void wxTextCtrl::SetValue(const wxString
& value
)
184 // This assert is wrong -- means that you can't set an empty
185 // string (IsNull == IsEmpty).
186 // wxASSERT_MSG( (!value.IsNull()), "Must not pass a null string to wxTextCtrl::SetValue." ) ;
189 XmTextSetString ((Widget
) m_mainWidget
, (char*) (const char*) value
);
191 m_inSetValue
= FALSE
;
194 // Clipboard operations
195 void wxTextCtrl::Copy()
197 XmTextCopy((Widget
) m_mainWidget
, CurrentTime
);
200 void wxTextCtrl::Cut()
202 XmTextCut((Widget
) m_mainWidget
, CurrentTime
);
205 void wxTextCtrl::Paste()
207 XmTextPaste((Widget
) m_mainWidget
);
210 void wxTextCtrl::SetEditable(bool editable
)
212 XmTextSetEditable((Widget
) m_mainWidget
, (Boolean
) editable
);
215 void wxTextCtrl::SetInsertionPoint(long pos
)
217 XmTextSetInsertionPosition ((Widget
) m_mainWidget
, (XmTextPosition
) pos
);
220 void wxTextCtrl::SetInsertionPointEnd()
222 long pos
= GetLastPosition();
223 SetInsertionPoint(pos
);
226 long wxTextCtrl::GetInsertionPoint() const
228 return (long) XmTextGetInsertionPosition ((Widget
) m_mainWidget
);
231 long wxTextCtrl::GetLastPosition() const
233 return (long) XmTextGetLastPosition ((Widget
) m_mainWidget
);
236 void wxTextCtrl::Replace(long from
, long to
, const wxString
& value
)
238 XmTextReplace ((Widget
) m_mainWidget
, (XmTextPosition
) from
, (XmTextPosition
) to
,
239 (char*) (const char*) value
);
242 void wxTextCtrl::Remove(long from
, long to
)
244 XmTextSetSelection ((Widget
) m_mainWidget
, (XmTextPosition
) from
, (XmTextPosition
) to
,
246 XmTextRemove ((Widget
) m_mainWidget
);
249 void wxTextCtrl::SetSelection(long from
, long to
)
251 XmTextSetSelection ((Widget
) m_mainWidget
, (XmTextPosition
) from
, (XmTextPosition
) to
,
255 bool wxTextCtrl::LoadFile(const wxString
& file
)
257 if (!wxFileExists(file
))
264 Widget textWidget
= (Widget
) m_mainWidget
;
268 if ((stat ((char*) (const char*) file
, &statb
) == -1) || (statb
.st_mode
& S_IFMT
) != S_IFREG
||
269 !(fp
= fopen ((char*) (const char*) file
, "r")))
275 long len
= statb
.st_size
;
277 if (!(text
= XtMalloc ((unsigned) (len
+ 1))))
282 if (fread (text
, sizeof (char), len
, fp
) != (size_t) len
)
288 XmTextSetString (textWidget
, text
);
289 // m_textPosition = len;
296 // If file is null, try saved file name first
297 // Returns TRUE if succeeds.
298 bool wxTextCtrl::SaveFile(const wxString
& file
)
300 wxString
theFile(file
);
302 theFile
= m_fileName
;
305 m_fileName
= theFile
;
307 Widget textWidget
= (Widget
) m_mainWidget
;
310 if (!(fp
= fopen ((char*) (const char*) theFile
, "w")))
316 char *text
= XmTextGetString (textWidget
);
317 long len
= XmTextGetLastPosition (textWidget
);
319 if (fwrite (text
, sizeof (char), len
, fp
) != (size_t) len
)
321 // Did not write whole file
323 // Make sure newline terminates the file
324 if (text
[len
- 1] != '\n')
334 void wxTextCtrl::WriteText(const wxString
& text
)
336 long textPosition
= GetInsertionPoint() + strlen (text
);
337 XmTextInsert ((Widget
) m_mainWidget
, GetInsertionPoint(), (char*) (const char*) text
);
338 XtVaSetValues ((Widget
) m_mainWidget
, XmNcursorPosition
, textPosition
, NULL
);
339 SetInsertionPoint(textPosition
);
340 XmTextShowPosition ((Widget
) m_mainWidget
, textPosition
);
344 void wxTextCtrl::Clear()
346 XmTextSetString ((Widget
) m_mainWidget
, "");
350 bool wxTextCtrl::IsModified() const
355 // Makes 'unmodified'
356 void wxTextCtrl::DiscardEdits()
358 XmTextSetString ((Widget
) m_mainWidget
, "");
362 int wxTextCtrl::GetNumberOfLines() const
364 // HIDEOUSLY inefficient, but we have no choice.
365 char *s
= XmTextGetString ((Widget
) m_mainWidget
);
370 bool finished
= FALSE
;
393 long wxTextCtrl::XYToPosition(long x
, long y
) const
395 /* It seems, that there is a bug in some versions of the Motif library,
396 so the original wxWin-Code doesn't work. */
398 Widget textWidget = (Widget) handle;
399 return (long) XmTextXYToPos (textWidget, (Position) x, (Position) y);
401 /* Now a little workaround: */
403 for (int i
=0; i
<y
; i
++) r
+=(GetLineLength(i
)+1);
407 void wxTextCtrl::PositionToXY(long pos
, long *x
, long *y
) const
410 XmTextPosToXY((Widget
) m_mainWidget
, pos
, &xx
, &yy
);
414 void wxTextCtrl::ShowPosition(long pos
)
416 XmTextShowPosition ((Widget
) m_mainWidget
, (XmTextPosition
) pos
);
419 int wxTextCtrl::GetLineLength(long lineNo
) const
421 wxString str
= GetLineText (lineNo
);
422 return (int) str
.Length();
425 wxString
wxTextCtrl::GetLineText(long lineNo
) const
427 // HIDEOUSLY inefficient, but we have no choice.
428 char *s
= XmTextGetString ((Widget
) m_mainWidget
);
435 for (i
= 0; currentLine
!= lineNo
&& s
[i
]; i
++ )
440 for (j
= 0; s
[i
] && s
[i
] != '\n'; i
++, j
++ )
447 return wxEmptyString
;
454 void wxTextCtrl::Command(wxCommandEvent
& event
)
456 SetValue (event
.GetString());
457 ProcessCommand (event
);
460 void wxTextCtrl::OnDropFiles(wxDropFilesEvent
& event
)
462 // By default, load the first file into the text window.
463 if (event
.GetNumberOfFiles() > 0)
465 LoadFile(event
.GetFiles()[0]);
469 // The streambuf code was partly taken from chapter 3 by Jerry Schwarz of
470 // AT&T's "C++ Lanuage System Release 3.0 Library Manual" - Stein Somers
472 //=========================================================================
473 // Called then the buffer is full (gcc 2.6.3)
474 // or when "endl" is output (Borland 4.5)
475 //=========================================================================
476 // Class declaration using multiple inheritance doesn't work properly for
477 // Borland. See note in wb_text.h.
478 #ifndef NO_TEXT_WINDOW_STREAM
479 int wxTextCtrl::overflow(int c
)
481 // Make sure there is a holding area
482 if ( allocate()==EOF
)
484 wxError("Streambuf allocation failed","Internal error");
488 // Verify that there are no characters in get area
489 if ( gptr() && gptr() < egptr() )
491 wxError("wxTextCtrl::overflow: Who's trespassing my get area?","Internal error");
498 // Make sure there is a put area
501 /* This doesn't seem to be fatal so comment out error message */
502 // wxError("Put area not opened","Internal error");
503 setp( base(), base() );
506 // Determine how many characters have been inserted but no consumed
507 int plen
= pptr() - pbase();
509 // Now Jerry relies on the fact that the buffer is at least 2 chars
510 // long, but the holding area "may be as small as 1" ???
511 // And we need an additional \0, so let's keep this inefficient but
514 // If c!=EOF, it is a character that must also be comsumed
515 int xtra
= c
==EOF
? 0 : 1;
517 // Write temporary C-string to wxTextWindow
519 char *txt
= new char[plen
+xtra
+1];
520 memcpy(txt
, pbase(), plen
);
521 txt
[plen
] = (char)c
; // append c
522 txt
[plen
+xtra
] = '\0'; // append '\0' or overwrite c
523 // If the put area already contained \0, output will be truncated there
529 setp(pbase(), epptr());
531 #if defined(__WATCOMC__)
533 #elif defined(zapeof) // HP-UX (all cfront based?)
536 return c
!=EOF
? c
: 0; // this should make everybody happy
540 //=========================================================================
541 // called then "endl" is output (gcc) or then explicit sync is done (Borland)
542 //=========================================================================
543 int wxTextCtrl::sync()
545 // Verify that there are no characters in get area
546 if ( gptr() && gptr() < egptr() )
548 wxError("Who's trespassing my get area?","Internal error");
552 if ( pptr() && pptr() > pbase() ) return overflow(EOF
);
556 int len = pptr() - pbase();
557 char *txt = new char[len+1];
558 strncpy(txt, pbase(), len);
561 setp(pbase(), epptr());
567 //=========================================================================
568 // Should not be called by a "ostream". Used by a "istream"
569 //=========================================================================
570 int wxTextCtrl::underflow()
576 wxTextCtrl
& wxTextCtrl::operator<<(const wxString
& s
)
582 wxTextCtrl
& wxTextCtrl::operator<<(float f
)
585 str
.Printf("%.2f", f
);
590 wxTextCtrl
& wxTextCtrl::operator<<(double d
)
593 str
.Printf("%.2f", d
);
598 wxTextCtrl
& wxTextCtrl::operator<<(int i
)
606 wxTextCtrl
& wxTextCtrl::operator<<(long i
)
609 str
.Printf("%ld", i
);
614 wxTextCtrl
& wxTextCtrl::operator<<(const char c
)
624 void wxTextCtrl::OnChar(wxKeyEvent
& event
)
626 // Indicates that we should generate a normal command, because
627 // we're letting default behaviour happen (otherwise it's vetoed
628 // by virtue of overriding OnChar)
629 m_processedDefault
= TRUE
;
631 if (m_tempCallbackStruct
)
633 XmTextVerifyCallbackStruct
*textStruct
=
634 (XmTextVerifyCallbackStruct
*) m_tempCallbackStruct
;
635 textStruct
->doit
= True
;
636 if (isascii(event
.m_keyCode
) && (textStruct
->text
->length
== 1))
638 textStruct
->text
->ptr
[0] = ((event
.m_keyCode
== WXK_RETURN
) ? 10 : event
.m_keyCode
);
643 void wxTextCtrl::ChangeFont(bool keepOriginalSize
)
645 wxWindow::ChangeFont(keepOriginalSize
);
648 void wxTextCtrl::ChangeBackgroundColour()
650 wxWindow::ChangeBackgroundColour();
652 Widget parent
= XtParent ((Widget
) m_mainWidget
);
655 XtVaGetValues (parent
,
656 XmNhorizontalScrollBar
, &hsb
,
657 XmNverticalScrollBar
, &vsb
,
660 /* TODO: should scrollbars be affected? Should probably have separate
661 * function to change them (by default, taken from wxSystemSettings)
663 DoChangeBackgroundColour((WXWidget) hsb, m_backgroundColour, TRUE);
665 DoChangeBackgroundColour((WXWidget) vsb, m_backgroundColour, TRUE);
668 DoChangeBackgroundColour((WXWidget
) parent
, m_backgroundColour
, TRUE
);
671 void wxTextCtrl::ChangeForegroundColour()
673 wxWindow::ChangeForegroundColour();
676 Widget parent
= XtParent ((Widget
) m_mainWidget
);
679 XtVaGetValues (parent
,
680 XmNhorizontalScrollBar
, &hsb
,
681 XmNverticalScrollBar
, &vsb
,
684 /* TODO: should scrollbars be affected? Should probably have separate
685 * function to change them (by default, taken from wxSystemSettings)
687 DoChangeForegroundColour((WXWidget) hsb, m_foregroundColour);
689 DoChangeForegroundColour((WXWidget) vsb, m_foregroundColour);
691 DoChangeForegroundColour((WXWidget
) parent
, m_foregroundColour
);
694 static void wxTextWindowChangedProc (Widget w
, XtPointer clientData
, XtPointer ptr
)
696 if (!wxGetWindowFromTable(w
))
697 // Widget has been deleted!
700 wxTextCtrl
*tw
= (wxTextCtrl
*) clientData
;
701 tw
->SetModified(TRUE
);
705 wxTextWindowModifyProc (Widget w
, XtPointer clientData
, XmTextVerifyCallbackStruct
*cbs
)
707 wxTextCtrl
*tw
= (wxTextCtrl
*) clientData
;
708 tw
->m_processedDefault
= FALSE
;
710 // First, do some stuff if it's a password control.
711 // (What does this do exactly?)
713 if (tw
->GetWindowStyleFlag() & wxTE_PASSWORD
)
716 * At least on my system (SunOS 4.1.3 + Motif 1.2), you need to think of
717 * every event as a replace event. cbs->text->ptr gives the replacement
718 * text, cbs->startPos gives the index of the first char affected by the
719 * replace, and cbs->endPos gives the index one more than the last char
720 * affected by the replace (startPos == endPos implies an empty range).
721 * Hence, a deletion is represented by replacing all input text with a
722 * blank string ("", *not* NULL!). A simple insertion that does not
723 * overwrite any text has startPos == endPos.
726 if (tw
->m_value
.IsNull())
728 tw
->m_value
= cbs
->text
->ptr
;
732 char * passwd
= (char*) (const char*) tw
->m_value
; // Set up a more convenient alias.
734 int len
= passwd
? strlen(passwd
) : 0; // Enough room for old text
735 len
+= strlen(cbs
->text
->ptr
) + 1; // + new text (if any) + NUL
736 len
-= cbs
->endPos
- cbs
->startPos
; // - text from affected region.
738 char * newS
= new char [len
];
739 char * p
= passwd
, * dest
= newS
, * insert
= cbs
->text
->ptr
;
741 // Copy (old) text from passwd, up to the start posn of the change.
743 for (i
= 0; i
< cbs
->startPos
; ++i
)
746 // Copy the text to be inserted).
750 // Finally, copy into newS any remaining text from passwd[endPos] on.
751 for (p
= passwd
+ cbs
->endPos
; *p
; )
760 if (cbs
->text
->length
>0)
763 for (i
= 0; i
< cbs
->text
->length
; ++i
)
764 cbs
->text
->ptr
[i
] = '*';
765 cbs
->text
->ptr
[i
] = 0;
769 // If we're already within an OnChar, return: probably
770 // a programmatic insertion.
771 if (tw
->m_tempCallbackStruct
)
774 // Check for a backspace
775 if (cbs
->startPos
== (cbs
->currInsert
- 1))
777 tw
->m_tempCallbackStruct
= (void*) cbs
;
779 wxKeyEvent
event (wxEVT_CHAR
);
780 event
.SetId(tw
->GetId());
781 event
.m_keyCode
= WXK_DELETE
;
782 event
.SetEventObject(tw
);
784 // Only if wxTextCtrl::OnChar is called
785 // will this be set to True (and the character
789 tw
->GetEventHandler()->ProcessEvent(event
);
791 tw
->m_tempCallbackStruct
= NULL
;
793 if (tw
->InSetValue())
796 if (tw
->m_processedDefault
)
798 // Can generate a command
799 wxCommandEvent
commandEvent(wxEVT_COMMAND_TEXT_UPDATED
, tw
->GetId());
800 commandEvent
.SetEventObject(tw
);
801 tw
->ProcessCommand(commandEvent
);
807 // Pasting operation: let it through without
809 if (cbs
->text
->length
> 1)
812 // Something other than text
813 if (cbs
->text
->ptr
== NULL
)
816 tw
->m_tempCallbackStruct
= (void*) cbs
;
818 wxKeyEvent
event (wxEVT_CHAR
);
819 event
.SetId(tw
->GetId());
820 event
.SetEventObject(tw
);
821 event
.m_keyCode
= (cbs
->text
->ptr
[0] == 10 ? 13 : cbs
->text
->ptr
[0]);
823 // Only if wxTextCtrl::OnChar is called
824 // will this be set to True (and the character
828 tw
->GetEventHandler()->ProcessEvent(event
);
830 tw
->m_tempCallbackStruct
= NULL
;
832 if (tw
->InSetValue())
835 if (tw
->m_processedDefault
)
837 // Can generate a command
838 wxCommandEvent
commandEvent(wxEVT_COMMAND_TEXT_UPDATED
, tw
->GetId());
839 commandEvent
.SetEventObject(tw
);
840 tw
->ProcessCommand(commandEvent
);
845 wxTextWindowGainFocusProc (Widget w
, XtPointer clientData
, XmAnyCallbackStruct
*cbs
)
847 if (!wxGetWindowFromTable(w
))
850 wxTextCtrl
*tw
= (wxTextCtrl
*) clientData
;
851 wxFocusEvent
event(wxEVT_SET_FOCUS
, tw
->GetId());
852 event
.SetEventObject(tw
);
853 tw
->GetEventHandler()->ProcessEvent(event
);
857 wxTextWindowLoseFocusProc (Widget w
, XtPointer clientData
, XmAnyCallbackStruct
*cbs
)
859 if (!wxGetWindowFromTable(w
))
862 wxTextCtrl
*tw
= (wxTextCtrl
*) clientData
;
863 wxFocusEvent
event(wxEVT_KILL_FOCUS
, tw
->GetId());
864 event
.SetEventObject(tw
);
865 tw
->GetEventHandler()->ProcessEvent(event
);
868 static void wxTextWindowActivateProc(Widget w
, XtPointer clientData
,
869 XmAnyCallbackStruct
*ptr
)
871 if (!wxGetWindowFromTable(w
))
874 wxTextCtrl
*tw
= (wxTextCtrl
*) clientData
;
877 type_event = wxEVENT_TYPE_TEXT_ENTER_COMMAND ;
880 type_event = wxEVENT_TYPE_TEXT_COMMAND ;
885 if (tw
->InSetValue())
888 wxCommandEvent
event(wxEVT_COMMAND_TEXT_ENTER
);
889 event
.SetId(tw
->GetId());
890 event
.SetEventObject(tw
);
891 tw
->ProcessCommand(event
);