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