]> git.saurik.com Git - wxWidgets.git/blob - src/gtk/textctrl.cpp
implemented, tested and documented wxTextCtrl::SetMaxLength()
[wxWidgets.git] / src / gtk / textctrl.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: textctrl.cpp
3 // Purpose:
4 // Author: Robert Roebling
5 // Id: $Id$
6 // Copyright: (c) 1998 Robert Roebling, Vadim Zeitlin
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
9
10 #ifdef __GNUG__
11 #pragma implementation "textctrl.h"
12 #endif
13
14 #include "wx/textctrl.h"
15 #include "wx/utils.h"
16 #include "wx/intl.h"
17 #include "wx/log.h"
18 #include "wx/settings.h"
19 #include "wx/panel.h"
20
21 #include <sys/types.h>
22 #include <sys/stat.h>
23 #include <ctype.h>
24 #include <math.h> // for fabs
25
26 #include "gdk/gdk.h"
27 #include "gtk/gtk.h"
28 #include "gdk/gdkkeysyms.h"
29
30 //-----------------------------------------------------------------------------
31 // idle system
32 //-----------------------------------------------------------------------------
33
34 extern void wxapp_install_idle_handler();
35 extern bool g_isIdle;
36
37 //-----------------------------------------------------------------------------
38 // data
39 //-----------------------------------------------------------------------------
40
41 extern bool g_blockEventsOnDrag;
42 extern wxCursor g_globalCursor;
43
44 //-----------------------------------------------------------------------------
45 // "changed"
46 //-----------------------------------------------------------------------------
47
48 static void
49 gtk_text_changed_callback( GtkWidget *WXUNUSED(widget), wxTextCtrl *win )
50 {
51 if (!win->m_hasVMT) return;
52
53 if (g_isIdle)
54 wxapp_install_idle_handler();
55
56 win->SetModified();
57 win->UpdateFontIfNeeded();
58
59 wxCommandEvent event( wxEVT_COMMAND_TEXT_UPDATED, win->GetId() );
60 event.SetString( win->GetValue() );
61 event.SetEventObject( win );
62 win->GetEventHandler()->ProcessEvent( event );
63 }
64
65 //-----------------------------------------------------------------------------
66 // "changed" from vertical scrollbar
67 //-----------------------------------------------------------------------------
68
69 static void
70 gtk_scrollbar_changed_callback( GtkWidget *WXUNUSED(widget), wxTextCtrl *win )
71 {
72 if (!win->m_hasVMT) return;
73
74 if (g_isIdle)
75 wxapp_install_idle_handler();
76
77 win->CalculateScrollbar();
78 }
79
80 //-----------------------------------------------------------------------------
81 // "focus_in_event"
82 //-----------------------------------------------------------------------------
83
84 extern wxWindow *g_focusWindow;
85 extern bool g_blockEventsOnDrag;
86 // extern bool g_isIdle;
87
88 static gint gtk_text_focus_in_callback( GtkWidget *widget, GdkEvent *WXUNUSED(event), wxWindow *win )
89 {
90 // Necessary?
91 #if 0
92 if (g_isIdle)
93 wxapp_install_idle_handler();
94 #endif
95 if (!win->m_hasVMT) return FALSE;
96 if (g_blockEventsOnDrag) return FALSE;
97
98 g_focusWindow = win;
99
100 // notify the parent that we got the focus
101 wxChildFocusEvent eventFocus(win);
102 (void)win->GetEventHandler()->ProcessEvent(eventFocus);
103
104 #ifdef HAVE_XIM
105 if (win->m_ic)
106 gdk_im_begin(win->m_ic, win->m_wxwindow->window);
107 #endif
108
109 #if 0
110 #ifdef wxUSE_CARET
111 // caret needs to be informed about focus change
112 wxCaret *caret = win->GetCaret();
113 if ( caret )
114 {
115 caret->OnSetFocus();
116 }
117 #endif // wxUSE_CARET
118 #endif
119
120 wxFocusEvent event( wxEVT_SET_FOCUS, win->GetId() );
121 event.SetEventObject( win );
122
123 if (win->GetEventHandler()->ProcessEvent( event ))
124 {
125 return TRUE;
126 }
127
128 return FALSE;
129 }
130
131 //-----------------------------------------------------------------------------
132 // "focus_out_event"
133 //-----------------------------------------------------------------------------
134
135 static gint gtk_text_focus_out_callback( GtkWidget *widget, GdkEvent *WXUNUSED(event), wxWindow *win )
136 {
137 #if 0
138 if (g_isIdle)
139 wxapp_install_idle_handler();
140 #endif
141
142 if (!win->m_hasVMT) return FALSE;
143 if (g_blockEventsOnDrag) return FALSE;
144
145 #if 0
146 // if the focus goes out of our app alltogether, OnIdle() will send
147 // wxActivateEvent, otherwise gtk_window_focus_in_callback() will reset
148 // g_sendActivateEvent to -1
149 g_sendActivateEvent = 0;
150 #endif
151
152 wxWindow *winFocus = wxFindFocusedChild(win);
153 if ( winFocus )
154 win = winFocus;
155
156 g_focusWindow = (wxWindow *)NULL;
157
158 #ifdef HAVE_XIM
159 if (win->m_ic)
160 gdk_im_end();
161 #endif
162
163 #if 0
164 #ifdef wxUSE_CARET
165 // caret needs to be informed about focus change
166 wxCaret *caret = win->GetCaret();
167 if ( caret )
168 {
169 caret->OnKillFocus();
170 }
171 #endif // wxUSE_CARET
172 #endif
173
174 wxFocusEvent event( wxEVT_KILL_FOCUS, win->GetId() );
175 event.SetEventObject( win );
176
177 if (win->GetEventHandler()->ProcessEvent( event ))
178 {
179 return TRUE;
180 }
181
182 return FALSE;
183 }
184
185 //-----------------------------------------------------------------------------
186 // wxTextCtrl
187 //-----------------------------------------------------------------------------
188
189 IMPLEMENT_DYNAMIC_CLASS(wxTextCtrl,wxControl)
190
191 BEGIN_EVENT_TABLE(wxTextCtrl, wxControl)
192 EVT_CHAR(wxTextCtrl::OnChar)
193
194 EVT_MENU(wxID_CUT, wxTextCtrl::OnCut)
195 EVT_MENU(wxID_COPY, wxTextCtrl::OnCopy)
196 EVT_MENU(wxID_PASTE, wxTextCtrl::OnPaste)
197 EVT_MENU(wxID_UNDO, wxTextCtrl::OnUndo)
198 EVT_MENU(wxID_REDO, wxTextCtrl::OnRedo)
199
200 EVT_UPDATE_UI(wxID_CUT, wxTextCtrl::OnUpdateCut)
201 EVT_UPDATE_UI(wxID_COPY, wxTextCtrl::OnUpdateCopy)
202 EVT_UPDATE_UI(wxID_PASTE, wxTextCtrl::OnUpdatePaste)
203 EVT_UPDATE_UI(wxID_UNDO, wxTextCtrl::OnUpdateUndo)
204 EVT_UPDATE_UI(wxID_REDO, wxTextCtrl::OnUpdateRedo)
205 END_EVENT_TABLE()
206
207 void wxTextCtrl::Init()
208 {
209 m_modified = FALSE;
210 m_updateFont = FALSE;
211 m_text =
212 m_vScrollbar = (GtkWidget *)NULL;
213 }
214
215 wxTextCtrl::wxTextCtrl( wxWindow *parent,
216 wxWindowID id,
217 const wxString &value,
218 const wxPoint &pos,
219 const wxSize &size,
220 long style,
221 const wxValidator& validator,
222 const wxString &name )
223 {
224 Init();
225
226 Create( parent, id, value, pos, size, style, validator, name );
227 }
228
229 bool wxTextCtrl::Create( wxWindow *parent,
230 wxWindowID id,
231 const wxString &value,
232 const wxPoint &pos,
233 const wxSize &size,
234 long style,
235 const wxValidator& validator,
236 const wxString &name )
237 {
238 m_needParent = TRUE;
239 m_acceptsFocus = TRUE;
240
241 if (!PreCreation( parent, pos, size ) ||
242 !CreateBase( parent, id, pos, size, style, validator, name ))
243 {
244 wxFAIL_MSG( wxT("wxTextCtrl creation failed") );
245 return FALSE;
246 }
247
248
249 m_vScrollbarVisible = FALSE;
250
251 bool multi_line = (style & wxTE_MULTILINE) != 0;
252 if (multi_line)
253 {
254 #if (GTK_MINOR_VERSION > 2)
255 /* a multi-line edit control: create a vertical scrollbar by default and
256 horizontal if requested */
257 bool bHasHScrollbar = (style & wxHSCROLL) != 0;
258 #else
259 bool bHasHScrollbar = FALSE;
260 #endif
261
262 /* create our control ... */
263 m_text = gtk_text_new( (GtkAdjustment *) NULL, (GtkAdjustment *) NULL );
264
265 /* ... and put into the upper left hand corner of the table */
266 m_widget = gtk_table_new(bHasHScrollbar ? 2 : 1, 2, FALSE);
267 GTK_WIDGET_UNSET_FLAGS( m_widget, GTK_CAN_FOCUS );
268 gtk_table_attach( GTK_TABLE(m_widget), m_text, 0, 1, 0, 1,
269 (GtkAttachOptions)(GTK_FILL | GTK_EXPAND | GTK_SHRINK),
270 (GtkAttachOptions)(GTK_FILL | GTK_EXPAND | GTK_SHRINK),
271 0, 0);
272
273 /* always wrap words */
274 gtk_text_set_word_wrap( GTK_TEXT(m_text), TRUE );
275
276 #if (GTK_MINOR_VERSION > 2)
277 /* put the horizontal scrollbar in the lower left hand corner */
278 if (bHasHScrollbar)
279 {
280 GtkWidget *hscrollbar = gtk_hscrollbar_new(GTK_TEXT(m_text)->hadj);
281 GTK_WIDGET_UNSET_FLAGS( hscrollbar, GTK_CAN_FOCUS );
282 gtk_table_attach(GTK_TABLE(m_widget), hscrollbar, 0, 1, 1, 2,
283 (GtkAttachOptions)(GTK_EXPAND | GTK_FILL | GTK_SHRINK),
284 GTK_FILL,
285 0, 0);
286 gtk_widget_show(hscrollbar);
287
288 /* don't wrap lines, otherwise we wouldn't need the scrollbar */
289 gtk_text_set_line_wrap( GTK_TEXT(m_text), FALSE );
290 }
291 #endif
292
293 /* finally, put the vertical scrollbar in the upper right corner */
294 m_vScrollbar = gtk_vscrollbar_new( GTK_TEXT(m_text)->vadj );
295 GTK_WIDGET_UNSET_FLAGS( m_vScrollbar, GTK_CAN_FOCUS );
296 gtk_table_attach(GTK_TABLE(m_widget), m_vScrollbar, 1, 2, 0, 1,
297 GTK_FILL,
298 (GtkAttachOptions)(GTK_EXPAND | GTK_FILL | GTK_SHRINK),
299 0, 0);
300 }
301 else
302 {
303 /* a single-line text control: no need for scrollbars */
304 m_widget =
305 m_text = gtk_entry_new();
306 }
307
308 m_parent->DoAddChild( this );
309
310 PostCreation();
311
312 SetFont( parent->GetFont() );
313
314 wxSize size_best( DoGetBestSize() );
315 wxSize new_size( size );
316 if (new_size.x == -1)
317 new_size.x = size_best.x;
318 if (new_size.y == -1)
319 new_size.y = size_best.y;
320 if ((new_size.x != size.x) || (new_size.y != size.y))
321 SetSize( new_size.x, new_size.y );
322
323 if (multi_line)
324 gtk_widget_show(m_text);
325
326 if (multi_line)
327 {
328 gtk_signal_connect(GTK_OBJECT(GTK_TEXT(m_text)->vadj), "changed",
329 (GtkSignalFunc) gtk_scrollbar_changed_callback, (gpointer) this );
330
331 gtk_signal_connect( GTK_OBJECT(GTK_TEXT(m_text)), "focus_in_event",
332 GTK_SIGNAL_FUNC(gtk_text_focus_in_callback), (gpointer)this );
333
334 gtk_signal_connect( GTK_OBJECT(GTK_TEXT(m_text)), "focus_out_event",
335 GTK_SIGNAL_FUNC(gtk_text_focus_out_callback), (gpointer)this );
336 }
337 else
338 {
339 gtk_signal_connect( GTK_OBJECT(m_text), "focus_in_event",
340 GTK_SIGNAL_FUNC(gtk_text_focus_in_callback), (gpointer)this );
341
342 gtk_signal_connect( GTK_OBJECT(m_text), "focus_out_event",
343 GTK_SIGNAL_FUNC(gtk_text_focus_out_callback), (gpointer)this );
344 }
345
346 if (!value.IsEmpty())
347 {
348 gint tmp = 0;
349
350 #if GTK_MINOR_VERSION == 0
351 // if we don't realize it, GTK 1.0.6 dies with a SIGSEGV in
352 // gtk_editable_insert_text()
353 gtk_widget_realize(m_text);
354 #endif // GTK 1.0
355
356 #if wxUSE_UNICODE
357 wxWX2MBbuf val = value.mbc_str();
358 gtk_editable_insert_text( GTK_EDITABLE(m_text), val, strlen(val), &tmp );
359 #else // !Unicode
360 gtk_editable_insert_text( GTK_EDITABLE(m_text), value, value.Length(), &tmp );
361 #endif // Unicode/!Unicode
362
363 if (multi_line)
364 {
365 /* bring editable's cursor uptodate. bug in GTK. */
366
367 GTK_EDITABLE(m_text)->current_pos = gtk_text_get_point( GTK_TEXT(m_text) );
368 }
369 }
370
371 if (style & wxTE_PASSWORD)
372 {
373 if (!multi_line)
374 gtk_entry_set_visibility( GTK_ENTRY(m_text), FALSE );
375 }
376
377 if (style & wxTE_READONLY)
378 {
379 if (!multi_line)
380 gtk_entry_set_editable( GTK_ENTRY(m_text), FALSE );
381 }
382 else
383 {
384 if (multi_line)
385 gtk_text_set_editable( GTK_TEXT(m_text), 1 );
386 }
387
388 /* we want to be notified about text changes */
389 gtk_signal_connect( GTK_OBJECT(m_text), "changed",
390 GTK_SIGNAL_FUNC(gtk_text_changed_callback), (gpointer)this);
391
392 /* we don't set a valid background colour, because the window
393 manager should use a default one */
394 m_backgroundColour = wxColour();
395
396 wxColour colFg = parent->GetForegroundColour();
397 SetForegroundColour( colFg );
398
399 m_cursor = wxCursor( wxCURSOR_IBEAM );
400
401 // FIXME: is the bg colour correct here?
402 wxTextAttr attrDef( colFg,
403 wxSystemSettings::GetSystemColour(wxSYS_COLOUR_WINDOW),
404 parent->GetFont() );
405 SetDefaultStyle( attrDef );
406
407 Show( TRUE );
408
409 return TRUE;
410 }
411
412 void wxTextCtrl::CalculateScrollbar()
413 {
414 if ((m_windowStyle & wxTE_MULTILINE) == 0) return;
415
416 GtkAdjustment *adj = GTK_TEXT(m_text)->vadj;
417
418 if (adj->upper - adj->page_size < 0.8)
419 {
420 if (m_vScrollbarVisible)
421 {
422 gtk_widget_hide( m_vScrollbar );
423 m_vScrollbarVisible = FALSE;
424 }
425 }
426 else
427 {
428 if (!m_vScrollbarVisible)
429 {
430 gtk_widget_show( m_vScrollbar );
431 m_vScrollbarVisible = TRUE;
432 }
433 }
434 }
435
436 wxString wxTextCtrl::GetValue() const
437 {
438 wxCHECK_MSG( m_text != NULL, wxT(""), wxT("invalid text ctrl") );
439
440 wxString tmp;
441 if (m_windowStyle & wxTE_MULTILINE)
442 {
443 gint len = gtk_text_get_length( GTK_TEXT(m_text) );
444 char *text = gtk_editable_get_chars( GTK_EDITABLE(m_text), 0, len );
445 tmp = wxString(text,*wxConvCurrent);
446 g_free( text );
447 }
448 else
449 {
450 tmp = wxString(gtk_entry_get_text( GTK_ENTRY(m_text) ),*wxConvCurrent);
451 }
452 return tmp;
453 }
454
455 void wxTextCtrl::SetValue( const wxString &value )
456 {
457 wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") );
458
459 if (m_windowStyle & wxTE_MULTILINE)
460 {
461 gint len = gtk_text_get_length( GTK_TEXT(m_text) );
462 gtk_editable_delete_text( GTK_EDITABLE(m_text), 0, len );
463 len = 0;
464 #if wxUSE_UNICODE
465 wxWX2MBbuf tmpbuf = value.mbc_str();
466 gtk_editable_insert_text( GTK_EDITABLE(m_text), tmpbuf, strlen(tmpbuf), &len );
467 #else
468 gtk_editable_insert_text( GTK_EDITABLE(m_text), value.mbc_str(), value.Length(), &len );
469 #endif
470 }
471 else
472 {
473 gtk_entry_set_text( GTK_ENTRY(m_text), value.mbc_str() );
474 }
475
476 // GRG, Jun/2000: Changed this after a lot of discussion in
477 // the lists. wxWindows 2.2 will have a set of flags to
478 // customize this behaviour.
479 SetInsertionPoint(0);
480
481 m_modified = FALSE;
482 }
483
484 void wxTextCtrl::WriteText( const wxString &text )
485 {
486 wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") );
487
488 if ( text.empty() )
489 return;
490
491 #if wxUSE_UNICODE
492 wxWX2MBbuf buf = text.mbc_str();
493 const char *txt = buf;
494 size_t txtlen = strlen(buf);
495 #else
496 const char *txt = text;
497 size_t txtlen = text.length();
498 #endif
499
500 if ( m_windowStyle & wxTE_MULTILINE )
501 {
502 /* this moves the cursor pos to behind the inserted text */
503 gint len = GTK_EDITABLE(m_text)->current_pos;
504
505 // if we have any special style, use it
506 if ( !m_defaultStyle.IsDefault() )
507 {
508 GdkFont *font = m_defaultStyle.HasFont()
509 ? m_defaultStyle.GetFont().GetInternalFont()
510 : NULL;
511
512 GdkColor *colFg = m_defaultStyle.HasTextColour()
513 ? m_defaultStyle.GetTextColour().GetColor()
514 : NULL;
515
516 GdkColor *colBg = m_defaultStyle.HasBackgroundColour()
517 ? m_defaultStyle.GetBackgroundColour().GetColor()
518 : NULL;
519
520 gtk_text_insert( GTK_TEXT(m_text), font, colFg, colBg, txt, txtlen );
521 }
522 else // no style
523 {
524 gtk_editable_insert_text( GTK_EDITABLE(m_text), txt, txtlen, &len );
525 }
526
527 /* bring editable's cursor uptodate. bug in GTK. */
528 GTK_EDITABLE(m_text)->current_pos = gtk_text_get_point( GTK_TEXT(m_text) );
529 }
530 else // single line
531 {
532 /* this moves the cursor pos to behind the inserted text */
533 gint len = GTK_EDITABLE(m_text)->current_pos;
534 gtk_editable_insert_text( GTK_EDITABLE(m_text), txt, txtlen, &len );
535
536 /* bring editable's cursor uptodate. bug in GTK. */
537 GTK_EDITABLE(m_text)->current_pos += text.Len();
538
539 /* bring entry's cursor uptodate. bug in GTK. */
540 gtk_entry_set_position( GTK_ENTRY(m_text), GTK_EDITABLE(m_text)->current_pos );
541 }
542 }
543
544 void wxTextCtrl::AppendText( const wxString &text )
545 {
546 wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") );
547
548 if ( text.empty() )
549 return;
550
551 #if wxUSE_UNICODE
552 wxWX2MBbuf buf = text.mbc_str();
553 const char *txt = buf;
554 size_t txtlen = strlen(buf);
555 #else
556 const char *txt = text;
557 size_t txtlen = text.length();
558 #endif
559
560 if (m_windowStyle & wxTE_MULTILINE)
561 {
562 if ( !m_defaultStyle.IsDefault() )
563 {
564 wxFont font = m_defaultStyle.HasFont() ? m_defaultStyle.GetFont()
565 : m_font;
566 GdkFont *fnt = font.Ok() ? font.GetInternalFont() : NULL;
567
568 wxColour col = m_defaultStyle.HasTextColour()
569 ? m_defaultStyle.GetTextColour()
570 : m_foregroundColour;
571 GdkColor *colFg = col.Ok() ? col.GetColor() : NULL;
572
573 col = m_defaultStyle.HasBackgroundColour()
574 ? m_defaultStyle.GetBackgroundColour()
575 : m_backgroundColour;
576 GdkColor *colBg = col.Ok() ? col.GetColor() : NULL;
577
578 gtk_text_insert( GTK_TEXT(m_text), fnt, colFg, colBg, txt, txtlen );
579 }
580 else // no style
581 {
582 /* we'll insert at the last position */
583 gint len = gtk_text_get_length( GTK_TEXT(m_text) );
584 gtk_editable_insert_text( GTK_EDITABLE(m_text), txt, txtlen, &len );
585 }
586
587 /* bring editable's cursor uptodate. bug in GTK. */
588 GTK_EDITABLE(m_text)->current_pos = gtk_text_get_point( GTK_TEXT(m_text) );
589 }
590 else // single line
591 {
592 gtk_entry_append_text( GTK_ENTRY(m_text), txt );
593 }
594 }
595
596 wxString wxTextCtrl::GetLineText( long lineNo ) const
597 {
598 if (m_windowStyle & wxTE_MULTILINE)
599 {
600 gint len = gtk_text_get_length( GTK_TEXT(m_text) );
601 char *text = gtk_editable_get_chars( GTK_EDITABLE(m_text), 0, len );
602
603 if (text)
604 {
605 wxString buf(wxT(""));
606 long i;
607 int currentLine = 0;
608 for (i = 0; currentLine != lineNo && text[i]; i++ )
609 if (text[i] == '\n')
610 currentLine++;
611 // Now get the text
612 int j;
613 for (j = 0; text[i] && text[i] != '\n'; i++, j++ )
614 buf += text[i];
615
616 g_free( text );
617 return buf;
618 }
619 else
620 return wxEmptyString;
621 }
622 else
623 {
624 if (lineNo == 0) return GetValue();
625 return wxEmptyString;
626 }
627 }
628
629 void wxTextCtrl::OnDropFiles( wxDropFilesEvent &WXUNUSED(event) )
630 {
631 /* If you implement this, don't forget to update the documentation!
632 * (file docs/latex/wx/text.tex) */
633 wxFAIL_MSG( wxT("wxTextCtrl::OnDropFiles not implemented") );
634 }
635
636 bool wxTextCtrl::PositionToXY(long pos, long *x, long *y ) const
637 {
638 if ( m_windowStyle & wxTE_MULTILINE )
639 {
640 wxString text = GetValue();
641
642 // cast to prevent warning. But pos really should've been unsigned.
643 if( (unsigned long)pos > text.Len() )
644 return FALSE;
645
646 *x=0; // First Col
647 *y=0; // First Line
648
649 const wxChar* stop = text.c_str() + pos;
650 for ( const wxChar *p = text.c_str(); p < stop; p++ )
651 {
652 if (*p == wxT('\n'))
653 {
654 (*y)++;
655 *x=0;
656 }
657 else
658 (*x)++;
659 }
660 }
661 else // single line control
662 {
663 if ( pos <= GTK_ENTRY(m_text)->text_length )
664 {
665 *y = 0;
666 *x = pos;
667 }
668 else
669 {
670 // index out of bounds
671 return FALSE;
672 }
673 }
674
675 return TRUE;
676 }
677
678 long wxTextCtrl::XYToPosition(long x, long y ) const
679 {
680 if (!(m_windowStyle & wxTE_MULTILINE)) return 0;
681
682 long pos=0;
683 for( int i=0; i<y; i++ ) pos += GetLineLength(i) + 1; // one for '\n'
684
685 pos += x;
686 return pos;
687 }
688
689 int wxTextCtrl::GetLineLength(long lineNo) const
690 {
691 wxString str = GetLineText (lineNo);
692 return (int) str.Length();
693 }
694
695 int wxTextCtrl::GetNumberOfLines() const
696 {
697 if (m_windowStyle & wxTE_MULTILINE)
698 {
699 gint len = gtk_text_get_length( GTK_TEXT(m_text) );
700 char *text = gtk_editable_get_chars( GTK_EDITABLE(m_text), 0, len );
701
702 if (text)
703 {
704 int currentLine = 0;
705 for (int i = 0; i < len; i++ )
706 {
707 if (text[i] == '\n')
708 currentLine++;
709 }
710 g_free( text );
711
712 // currentLine is 0 based, add 1 to get number of lines
713 return currentLine + 1;
714 }
715 else
716 {
717 return 0;
718 }
719 }
720 else
721 {
722 return 1;
723 }
724 }
725
726 void wxTextCtrl::SetInsertionPoint( long pos )
727 {
728 wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") );
729
730 if (m_windowStyle & wxTE_MULTILINE)
731 {
732 /* seems to be broken in GTK 1.0.X:
733 gtk_text_set_point( GTK_TEXT(m_text), (int)pos ); */
734
735 gtk_signal_disconnect_by_func( GTK_OBJECT(m_text),
736 GTK_SIGNAL_FUNC(gtk_text_changed_callback), (gpointer)this);
737
738 /* we fake a set_point by inserting and deleting. as the user
739 isn't supposed to get to know about thos non-sense, we
740 disconnect so that no events are sent to the user program. */
741
742 gint tmp = (gint)pos;
743 gtk_editable_insert_text( GTK_EDITABLE(m_text), " ", 1, &tmp );
744 gtk_editable_delete_text( GTK_EDITABLE(m_text), tmp-1, tmp );
745
746 gtk_signal_connect( GTK_OBJECT(m_text), "changed",
747 GTK_SIGNAL_FUNC(gtk_text_changed_callback), (gpointer)this);
748
749 /* bring editable's cursor uptodate. another bug in GTK. */
750
751 GTK_EDITABLE(m_text)->current_pos = gtk_text_get_point( GTK_TEXT(m_text) );
752 }
753 else
754 {
755 gtk_entry_set_position( GTK_ENTRY(m_text), (int)pos );
756
757 /* bring editable's cursor uptodate. bug in GTK. */
758
759 GTK_EDITABLE(m_text)->current_pos = (guint32)pos;
760 }
761 }
762
763 void wxTextCtrl::SetInsertionPointEnd()
764 {
765 wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") );
766
767 if (m_windowStyle & wxTE_MULTILINE)
768 SetInsertionPoint(gtk_text_get_length(GTK_TEXT(m_text)));
769 else
770 gtk_entry_set_position( GTK_ENTRY(m_text), -1 );
771 }
772
773 void wxTextCtrl::SetEditable( bool editable )
774 {
775 wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") );
776
777 if (m_windowStyle & wxTE_MULTILINE)
778 gtk_text_set_editable( GTK_TEXT(m_text), editable );
779 else
780 gtk_entry_set_editable( GTK_ENTRY(m_text), editable );
781 }
782
783 bool wxTextCtrl::Enable( bool enable )
784 {
785 if (!wxWindowBase::Enable(enable))
786 {
787 // nothing to do
788 return FALSE;
789 }
790
791 if (m_windowStyle & wxTE_MULTILINE)
792 {
793 gtk_text_set_editable( GTK_TEXT(m_text), enable );
794 OnParentEnable(enable);
795 }
796 else
797 {
798 gtk_widget_set_sensitive( m_text, enable );
799 }
800
801 return TRUE;
802 }
803
804 // wxGTK-specific: called recursively by Enable,
805 // to give widgets an oppprtunity to correct their colours after they
806 // have been changed by Enable
807 void wxTextCtrl::OnParentEnable( bool enable )
808 {
809 // If we have a custom background colour, we use this colour in both
810 // disabled and enabled mode, or we end up with a different colour under the
811 // text.
812 wxColour oldColour = GetBackgroundColour();
813 if (oldColour.Ok())
814 {
815 // Need to set twice or it'll optimize the useful stuff out
816 if (oldColour == * wxWHITE)
817 SetBackgroundColour(*wxBLACK);
818 else
819 SetBackgroundColour(*wxWHITE);
820 SetBackgroundColour(oldColour);
821 }
822 }
823
824 void wxTextCtrl::DiscardEdits()
825 {
826 m_modified = FALSE;
827 }
828
829 void wxTextCtrl::SetMaxLength(unsigned long len)
830 {
831 if ( !HasFlag(wxTE_MULTILINE) )
832 {
833 gtk_entry_set_max_length(GTK_ENTRY(m_text), len);
834 }
835 }
836
837 void wxTextCtrl::SetSelection( long from, long to )
838 {
839 wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") );
840
841 if ( (m_windowStyle & wxTE_MULTILINE) &&
842 !GTK_TEXT(m_text)->line_start_cache )
843 {
844 // tell the programmer that it didn't work
845 wxLogDebug(_T("Can't call SetSelection() before realizing the control"));
846 return;
847 }
848
849 gtk_editable_select_region( GTK_EDITABLE(m_text), (gint)from, (gint)to );
850 }
851
852 void wxTextCtrl::ShowPosition( long WXUNUSED(pos) )
853 {
854 // SetInsertionPoint( pos );
855 }
856
857 long wxTextCtrl::GetInsertionPoint() const
858 {
859 wxCHECK_MSG( m_text != NULL, 0, wxT("invalid text ctrl") );
860
861 return (long) GTK_EDITABLE(m_text)->current_pos;
862 }
863
864 long wxTextCtrl::GetLastPosition() const
865 {
866 wxCHECK_MSG( m_text != NULL, 0, wxT("invalid text ctrl") );
867
868 int pos = 0;
869 if (m_windowStyle & wxTE_MULTILINE)
870 pos = gtk_text_get_length( GTK_TEXT(m_text) );
871 else
872 pos = GTK_ENTRY(m_text)->text_length;
873
874 return (long)pos;
875 }
876
877 void wxTextCtrl::Remove( long from, long to )
878 {
879 wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") );
880
881 gtk_editable_delete_text( GTK_EDITABLE(m_text), (gint)from, (gint)to );
882 }
883
884 void wxTextCtrl::Replace( long from, long to, const wxString &value )
885 {
886 wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") );
887
888 gtk_editable_delete_text( GTK_EDITABLE(m_text), (gint)from, (gint)to );
889
890 if (!value.IsEmpty())
891 {
892 gint pos = (gint)from;
893 #if wxUSE_UNICODE
894 wxWX2MBbuf buf = value.mbc_str();
895 gtk_editable_insert_text( GTK_EDITABLE(m_text), buf, strlen(buf), &pos );
896 #else
897 gtk_editable_insert_text( GTK_EDITABLE(m_text), value, value.Length(), &pos );
898 #endif
899 }
900 }
901
902 void wxTextCtrl::Cut()
903 {
904 wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") );
905
906 #if (GTK_MINOR_VERSION > 0)
907 gtk_editable_cut_clipboard( GTK_EDITABLE(m_text) );
908 #else
909 gtk_editable_cut_clipboard( GTK_EDITABLE(m_text), 0 );
910 #endif
911 }
912
913 void wxTextCtrl::Copy()
914 {
915 wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") );
916
917 #if (GTK_MINOR_VERSION > 0)
918 gtk_editable_copy_clipboard( GTK_EDITABLE(m_text) );
919 #else
920 gtk_editable_copy_clipboard( GTK_EDITABLE(m_text), 0 );
921 #endif
922 }
923
924 void wxTextCtrl::Paste()
925 {
926 wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") );
927
928 #if (GTK_MINOR_VERSION > 0)
929 gtk_editable_paste_clipboard( GTK_EDITABLE(m_text) );
930 #else
931 gtk_editable_paste_clipboard( GTK_EDITABLE(m_text), 0 );
932 #endif
933 }
934
935 // Undo/redo
936 void wxTextCtrl::Undo()
937 {
938 // TODO
939 wxFAIL_MSG( wxT("wxTextCtrl::Undo not implemented") );
940 }
941
942 void wxTextCtrl::Redo()
943 {
944 // TODO
945 wxFAIL_MSG( wxT("wxTextCtrl::Redo not implemented") );
946 }
947
948 bool wxTextCtrl::CanUndo() const
949 {
950 // TODO
951 wxFAIL_MSG( wxT("wxTextCtrl::CanUndo not implemented") );
952 return FALSE;
953 }
954
955 bool wxTextCtrl::CanRedo() const
956 {
957 // TODO
958 wxFAIL_MSG( wxT("wxTextCtrl::CanRedo not implemented") );
959 return FALSE;
960 }
961
962 // If the return values from and to are the same, there is no
963 // selection.
964 void wxTextCtrl::GetSelection(long* fromOut, long* toOut) const
965 {
966 wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") );
967
968 long from, to;
969 if ( !(GTK_EDITABLE(m_text)->has_selection) )
970 {
971 from =
972 to = GetInsertionPoint();
973 }
974 else // got selection
975 {
976 from = (long) GTK_EDITABLE(m_text)->selection_start_pos;
977 to = (long) GTK_EDITABLE(m_text)->selection_end_pos;
978
979 if ( from > to )
980 {
981 // exchange them to be compatible with wxMSW
982 long tmp = from;
983 from = to;
984 to = tmp;
985 }
986 }
987
988 if ( fromOut )
989 *fromOut = from;
990 if ( toOut )
991 *toOut = to;
992 }
993
994 bool wxTextCtrl::IsEditable() const
995 {
996 wxCHECK_MSG( m_text != NULL, FALSE, wxT("invalid text ctrl") );
997
998 return GTK_EDITABLE(m_text)->editable;
999 }
1000
1001 bool wxTextCtrl::IsModified() const
1002 {
1003 return m_modified;
1004 }
1005
1006 void wxTextCtrl::Clear()
1007 {
1008 SetValue( wxT("") );
1009 }
1010
1011 void wxTextCtrl::OnChar( wxKeyEvent &key_event )
1012 {
1013 wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") );
1014
1015 if ((key_event.KeyCode() == WXK_RETURN) && (m_windowStyle & wxPROCESS_ENTER))
1016 {
1017 wxCommandEvent event(wxEVT_COMMAND_TEXT_ENTER, m_windowId);
1018 event.SetEventObject(this);
1019 event.SetString(GetValue());
1020 if (GetEventHandler()->ProcessEvent(event)) return;
1021 }
1022
1023 if ((key_event.KeyCode() == WXK_RETURN) && !(m_windowStyle & wxTE_MULTILINE))
1024 {
1025 wxWindow *top_frame = m_parent;
1026 while (top_frame->GetParent() && !(top_frame->IsTopLevel()))
1027 top_frame = top_frame->GetParent();
1028 GtkWindow *window = GTK_WINDOW(top_frame->m_widget);
1029
1030 if (window->default_widget)
1031 {
1032 gtk_widget_activate (window->default_widget);
1033 return;
1034 }
1035 }
1036
1037 key_event.Skip();
1038 }
1039
1040 GtkWidget* wxTextCtrl::GetConnectWidget()
1041 {
1042 return GTK_WIDGET(m_text);
1043 }
1044
1045 bool wxTextCtrl::IsOwnGtkWindow( GdkWindow *window )
1046 {
1047 if (m_windowStyle & wxTE_MULTILINE)
1048 return (window == GTK_TEXT(m_text)->text_area);
1049 else
1050 return (window == GTK_ENTRY(m_text)->text_area);
1051 }
1052
1053 // the font will change for subsequent text insertiongs
1054 bool wxTextCtrl::SetFont( const wxFont &font )
1055 {
1056 wxCHECK_MSG( m_text != NULL, FALSE, wxT("invalid text ctrl") );
1057
1058 if ( !wxWindowBase::SetFont(font) )
1059 {
1060 // font didn't change, nothing to do
1061 return FALSE;
1062 }
1063
1064 if ( m_windowStyle & wxTE_MULTILINE )
1065 {
1066 m_updateFont = TRUE;
1067
1068 m_defaultStyle.SetFont(font);
1069
1070 ChangeFontGlobally();
1071 }
1072
1073 return TRUE;
1074 }
1075
1076 void wxTextCtrl::ChangeFontGlobally()
1077 {
1078 // this method is very inefficient and hence should be called as rarely as
1079 // possible!
1080 wxASSERT_MSG( (m_windowStyle & wxTE_MULTILINE) && m_updateFont,
1081 _T("shouldn't be called for single line controls") );
1082
1083 wxString value = GetValue();
1084 if ( !value.IsEmpty() )
1085 {
1086 m_updateFont = FALSE;
1087
1088 Clear();
1089 AppendText(value);
1090 }
1091 }
1092
1093 void wxTextCtrl::UpdateFontIfNeeded()
1094 {
1095 if ( m_updateFont )
1096 ChangeFontGlobally();
1097 }
1098
1099 bool wxTextCtrl::SetForegroundColour(const wxColour& colour)
1100 {
1101 if ( !wxControl::SetForegroundColour(colour) )
1102 return FALSE;
1103
1104 // update default fg colour too
1105 m_defaultStyle.SetTextColour(colour);
1106
1107 return TRUE;
1108 }
1109
1110 bool wxTextCtrl::SetBackgroundColour( const wxColour &colour )
1111 {
1112 wxCHECK_MSG( m_text != NULL, FALSE, wxT("invalid text ctrl") );
1113
1114 if ( !wxControl::SetBackgroundColour( colour ) )
1115 return FALSE;
1116
1117 if (!m_widget->window)
1118 return FALSE;
1119
1120 wxColour sysbg = wxSystemSettings::GetSystemColour( wxSYS_COLOUR_BTNFACE );
1121 if (sysbg.Red() == colour.Red() &&
1122 sysbg.Green() == colour.Green() &&
1123 sysbg.Blue() == colour.Blue())
1124 {
1125 return FALSE; // FIXME or TRUE?
1126 }
1127
1128 if (!m_backgroundColour.Ok())
1129 return FALSE;
1130
1131 if (m_windowStyle & wxTE_MULTILINE)
1132 {
1133 GdkWindow *window = GTK_TEXT(m_text)->text_area;
1134 if (!window)
1135 return FALSE;
1136 m_backgroundColour.CalcPixel( gdk_window_get_colormap( window ) );
1137 gdk_window_set_background( window, m_backgroundColour.GetColor() );
1138 gdk_window_clear( window );
1139 }
1140
1141 // change active background color too
1142 m_defaultStyle.SetBackgroundColour( colour );
1143
1144 return TRUE;
1145 }
1146
1147 bool wxTextCtrl::SetStyle( long start, long end, const wxTextAttr &style )
1148 {
1149 /* VERY dirty way to do that - removes the required text and re-adds it
1150 with styling (FIXME) */
1151 if ( m_windowStyle & wxTE_MULTILINE )
1152 {
1153 if ( style.IsDefault() )
1154 {
1155 // nothing to do
1156 return TRUE;
1157 }
1158
1159 gint l = gtk_text_get_length( GTK_TEXT(m_text) );
1160
1161 wxCHECK_MSG( start >= 0 && end <= l, FALSE,
1162 _T("invalid range in wxTextCtrl::SetStyle") );
1163
1164 gint old_pos = gtk_editable_get_position( GTK_EDITABLE(m_text) );
1165 char *text = gtk_editable_get_chars( GTK_EDITABLE(m_text), start, end );
1166 wxString tmp(text,*wxConvCurrent);
1167 g_free( text );
1168
1169 gtk_editable_delete_text( GTK_EDITABLE(m_text), start, end );
1170 gtk_editable_set_position( GTK_EDITABLE(m_text), start );
1171
1172 #if wxUSE_UNICODE
1173 wxWX2MBbuf buf = tmp.mbc_str();
1174 const char *txt = buf;
1175 size_t txtlen = strlen(buf);
1176 #else
1177 const char *txt = tmp;
1178 size_t txtlen = tmp.length();
1179 #endif
1180
1181 GdkFont *font = style.HasFont()
1182 ? style.GetFont().GetInternalFont()
1183 : NULL;
1184
1185 GdkColor *colFg = style.HasTextColour()
1186 ? style.GetTextColour().GetColor()
1187 : NULL;
1188
1189 GdkColor *colBg = style.HasBackgroundColour()
1190 ? style.GetBackgroundColour().GetColor()
1191 : NULL;
1192
1193 gtk_text_insert( GTK_TEXT(m_text), font, colFg, colBg, txt, txtlen );
1194
1195 /* does not seem to help under GTK+ 1.2 !!!
1196 gtk_editable_set_position( GTK_EDITABLE(m_text), old_pos ); */
1197 SetInsertionPoint( old_pos );
1198 return TRUE;
1199 }
1200 else // singe line
1201 {
1202 // cannot do this for GTK+'s Entry widget
1203 return FALSE;
1204 }
1205 }
1206
1207 void wxTextCtrl::ApplyWidgetStyle()
1208 {
1209 if (m_windowStyle & wxTE_MULTILINE)
1210 {
1211 // how ?
1212 }
1213 else
1214 {
1215 SetWidgetStyle();
1216 gtk_widget_set_style( m_text, m_widgetStyle );
1217 }
1218 }
1219
1220 void wxTextCtrl::OnCut(wxCommandEvent& WXUNUSED(event))
1221 {
1222 Cut();
1223 }
1224
1225 void wxTextCtrl::OnCopy(wxCommandEvent& WXUNUSED(event))
1226 {
1227 Copy();
1228 }
1229
1230 void wxTextCtrl::OnPaste(wxCommandEvent& WXUNUSED(event))
1231 {
1232 Paste();
1233 }
1234
1235 void wxTextCtrl::OnUndo(wxCommandEvent& WXUNUSED(event))
1236 {
1237 Undo();
1238 }
1239
1240 void wxTextCtrl::OnRedo(wxCommandEvent& WXUNUSED(event))
1241 {
1242 Redo();
1243 }
1244
1245 void wxTextCtrl::OnUpdateCut(wxUpdateUIEvent& event)
1246 {
1247 event.Enable( CanCut() );
1248 }
1249
1250 void wxTextCtrl::OnUpdateCopy(wxUpdateUIEvent& event)
1251 {
1252 event.Enable( CanCopy() );
1253 }
1254
1255 void wxTextCtrl::OnUpdatePaste(wxUpdateUIEvent& event)
1256 {
1257 event.Enable( CanPaste() );
1258 }
1259
1260 void wxTextCtrl::OnUpdateUndo(wxUpdateUIEvent& event)
1261 {
1262 event.Enable( CanUndo() );
1263 }
1264
1265 void wxTextCtrl::OnUpdateRedo(wxUpdateUIEvent& event)
1266 {
1267 event.Enable( CanRedo() );
1268 }
1269
1270 void wxTextCtrl::OnInternalIdle()
1271 {
1272 wxCursor cursor = m_cursor;
1273 if (g_globalCursor.Ok()) cursor = g_globalCursor;
1274
1275 if (cursor.Ok())
1276 {
1277 GdkWindow *window = (GdkWindow*) NULL;
1278 if (HasFlag(wxTE_MULTILINE))
1279 window = GTK_TEXT(m_text)->text_area;
1280 else
1281 window = GTK_ENTRY(m_text)->text_area;
1282
1283 if (window)
1284 gdk_window_set_cursor( window, cursor.GetCursor() );
1285
1286 if (!g_globalCursor.Ok())
1287 cursor = *wxSTANDARD_CURSOR;
1288
1289 window = m_widget->window;
1290 if ((window) && !(GTK_WIDGET_NO_WINDOW(m_widget)))
1291 gdk_window_set_cursor( window, cursor.GetCursor() );
1292 }
1293
1294 UpdateWindowUI();
1295 }
1296
1297 wxSize wxTextCtrl::DoGetBestSize() const
1298 {
1299 // FIXME should be different for multi-line controls...
1300 wxSize ret( wxControl::DoGetBestSize() );
1301 return wxSize(80, ret.y);
1302 }
1303
1304 // ----------------------------------------------------------------------------
1305 // freeze/thaw
1306 // ----------------------------------------------------------------------------
1307
1308 void wxTextCtrl::Freeze()
1309 {
1310 if ( HasFlag(wxTE_MULTILINE) )
1311 {
1312 gtk_text_freeze(GTK_TEXT(m_text));
1313 }
1314 }
1315
1316 void wxTextCtrl::Thaw()
1317 {
1318 if ( HasFlag(wxTE_MULTILINE) )
1319 {
1320 GTK_TEXT(m_text)->vadj->value = 0.0;
1321
1322 gtk_text_thaw(GTK_TEXT(m_text));
1323 }
1324 }
1325
1326 // ----------------------------------------------------------------------------
1327 // scrolling
1328 // ----------------------------------------------------------------------------
1329
1330 GtkAdjustment *wxTextCtrl::GetVAdj() const
1331 {
1332 return HasFlag(wxTE_MULTILINE) ? GTK_TEXT(m_text)->vadj : NULL;
1333 }
1334
1335 bool wxTextCtrl::DoScroll(GtkAdjustment *adj, int diff)
1336 {
1337 float value = adj->value + diff;
1338
1339 if ( value < 0 )
1340 value = 0;
1341
1342 float upper = adj->upper - adj->page_size;
1343 if ( value > upper )
1344 value = upper;
1345
1346 // did we noticeably change the scroll position?
1347 if ( fabs(adj->value - value) < 0.2 )
1348 {
1349 // well, this is what Robert does in wxScrollBar, so it must be good...
1350 return FALSE;
1351 }
1352
1353 adj->value = value;
1354
1355 gtk_signal_emit_by_name(GTK_OBJECT(adj), "value_changed");
1356
1357 return TRUE;
1358 }
1359
1360 bool wxTextCtrl::ScrollLines(int lines)
1361 {
1362 GtkAdjustment *adj = GetVAdj();
1363 if ( !adj )
1364 return FALSE;
1365
1366 // this is hardcoded to 10 in GTK+ 1.2 (great idea)
1367 static const int KEY_SCROLL_PIXELS = 10;
1368
1369 return DoScroll(adj, lines*KEY_SCROLL_PIXELS);
1370 }
1371
1372 bool wxTextCtrl::ScrollPages(int pages)
1373 {
1374 GtkAdjustment *adj = GetVAdj();
1375 if ( !adj )
1376 return FALSE;
1377
1378 return DoScroll(adj, (int)ceil(pages*adj->page_increment));
1379 }
1380