1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Robert Roebling
6 // Copyright: (c) 1998 Robert Roebling, Vadim Zeitlin
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
11 #pragma implementation "textctrl.h"
14 #include "wx/textctrl.h"
18 #include "wx/settings.h"
21 #include <sys/types.h>
27 #include "gdk/gdkkeysyms.h"
29 //-----------------------------------------------------------------------------
31 //-----------------------------------------------------------------------------
33 extern void wxapp_install_idle_handler();
36 //-----------------------------------------------------------------------------
38 //-----------------------------------------------------------------------------
40 extern bool g_blockEventsOnDrag
;
41 extern wxCursor g_globalCursor
;
43 //-----------------------------------------------------------------------------
45 //-----------------------------------------------------------------------------
48 gtk_text_changed_callback( GtkWidget
*WXUNUSED(widget
), wxTextCtrl
*win
)
50 if (!win
->m_hasVMT
) return;
53 wxapp_install_idle_handler();
56 win
->UpdateFontIfNeeded();
58 wxCommandEvent
event( wxEVT_COMMAND_TEXT_UPDATED
, win
->GetId() );
59 event
.SetString( win
->GetValue() );
60 event
.SetEventObject( win
);
61 win
->GetEventHandler()->ProcessEvent( event
);
64 //-----------------------------------------------------------------------------
65 // "changed" from vertical scrollbar
66 //-----------------------------------------------------------------------------
69 gtk_scrollbar_changed_callback( GtkWidget
*WXUNUSED(widget
), wxTextCtrl
*win
)
71 if (!win
->m_hasVMT
) return;
74 wxapp_install_idle_handler();
76 win
->CalculateScrollbar();
79 //-----------------------------------------------------------------------------
81 //-----------------------------------------------------------------------------
83 wxWindow
*FindFocusedChild(wxWindow
*win
);
84 extern wxWindow
*g_focusWindow
;
85 extern bool g_blockEventsOnDrag
;
86 // extern bool g_isIdle;
88 static gint
gtk_text_focus_in_callback( GtkWidget
*widget
, GdkEvent
*WXUNUSED(event
), wxWindow
*win
)
93 wxapp_install_idle_handler();
95 if (!win
->m_hasVMT
) return FALSE
;
96 if (g_blockEventsOnDrag
) return FALSE
;
100 wxPanel
*panel
= wxDynamicCast(win
->GetParent(), wxPanel
);
103 panel
->SetLastFocus(win
);
108 gdk_im_begin(win
->m_ic
, win
->m_wxwindow
->window
);
113 // caret needs to be informed about focus change
114 wxCaret
*caret
= win
->GetCaret();
119 #endif // wxUSE_CARET
122 wxFocusEvent
event( wxEVT_SET_FOCUS
, win
->GetId() );
123 event
.SetEventObject( win
);
125 if (win
->GetEventHandler()->ProcessEvent( event
))
127 gtk_signal_emit_stop_by_name( GTK_OBJECT(widget
), "focus_in_event" );
134 //-----------------------------------------------------------------------------
136 //-----------------------------------------------------------------------------
138 static gint
gtk_text_focus_out_callback( GtkWidget
*widget
, GdkEvent
*WXUNUSED(event
), wxWindow
*win
)
142 wxapp_install_idle_handler();
145 if (!win
->m_hasVMT
) return FALSE
;
146 if (g_blockEventsOnDrag
) return FALSE
;
149 // if the focus goes out of our app alltogether, OnIdle() will send
150 // wxActivateEvent, otherwise gtk_window_focus_in_callback() will reset
151 // g_sendActivateEvent to -1
152 g_sendActivateEvent
= 0;
155 wxWindow
*winFocus
= FindFocusedChild(win
);
159 g_focusWindow
= (wxWindow
*)NULL
;
168 // caret needs to be informed about focus change
169 wxCaret
*caret
= win
->GetCaret();
172 caret
->OnKillFocus();
174 #endif // wxUSE_CARET
177 wxFocusEvent
event( wxEVT_KILL_FOCUS
, win
->GetId() );
178 event
.SetEventObject( win
);
180 if (win
->GetEventHandler()->ProcessEvent( event
))
182 gtk_signal_emit_stop_by_name( GTK_OBJECT(widget
), "focus_out_event" );
189 //-----------------------------------------------------------------------------
191 //-----------------------------------------------------------------------------
193 IMPLEMENT_DYNAMIC_CLASS(wxTextCtrl
,wxControl
)
195 BEGIN_EVENT_TABLE(wxTextCtrl
, wxControl
)
196 EVT_CHAR(wxTextCtrl::OnChar
)
198 EVT_MENU(wxID_CUT
, wxTextCtrl::OnCut
)
199 EVT_MENU(wxID_COPY
, wxTextCtrl::OnCopy
)
200 EVT_MENU(wxID_PASTE
, wxTextCtrl::OnPaste
)
201 EVT_MENU(wxID_UNDO
, wxTextCtrl::OnUndo
)
202 EVT_MENU(wxID_REDO
, wxTextCtrl::OnRedo
)
204 EVT_UPDATE_UI(wxID_CUT
, wxTextCtrl::OnUpdateCut
)
205 EVT_UPDATE_UI(wxID_COPY
, wxTextCtrl::OnUpdateCopy
)
206 EVT_UPDATE_UI(wxID_PASTE
, wxTextCtrl::OnUpdatePaste
)
207 EVT_UPDATE_UI(wxID_UNDO
, wxTextCtrl::OnUpdateUndo
)
208 EVT_UPDATE_UI(wxID_REDO
, wxTextCtrl::OnUpdateRedo
)
211 void wxTextCtrl::Init()
214 m_updateFont
= FALSE
;
216 m_vScrollbar
= (GtkWidget
*)NULL
;
219 wxTextCtrl::wxTextCtrl( wxWindow
*parent
,
221 const wxString
&value
,
225 const wxValidator
& validator
,
226 const wxString
&name
)
230 Create( parent
, id
, value
, pos
, size
, style
, validator
, name
);
233 bool wxTextCtrl::Create( wxWindow
*parent
,
235 const wxString
&value
,
239 const wxValidator
& validator
,
240 const wxString
&name
)
243 m_acceptsFocus
= TRUE
;
245 if (!PreCreation( parent
, pos
, size
) ||
246 !CreateBase( parent
, id
, pos
, size
, style
, validator
, name
))
248 wxFAIL_MSG( wxT("wxTextCtrl creation failed") );
253 m_vScrollbarVisible
= FALSE
;
255 bool multi_line
= (style
& wxTE_MULTILINE
) != 0;
258 #if (GTK_MINOR_VERSION > 2)
259 /* a multi-line edit control: create a vertical scrollbar by default and
260 horizontal if requested */
261 bool bHasHScrollbar
= (style
& wxHSCROLL
) != 0;
263 bool bHasHScrollbar
= FALSE
;
266 /* create our control ... */
267 m_text
= gtk_text_new( (GtkAdjustment
*) NULL
, (GtkAdjustment
*) NULL
);
269 /* ... and put into the upper left hand corner of the table */
270 m_widget
= gtk_table_new(bHasHScrollbar
? 2 : 1, 2, FALSE
);
271 GTK_WIDGET_UNSET_FLAGS( m_widget
, GTK_CAN_FOCUS
);
272 gtk_table_attach( GTK_TABLE(m_widget
), m_text
, 0, 1, 0, 1,
273 (GtkAttachOptions
)(GTK_FILL
| GTK_EXPAND
| GTK_SHRINK
),
274 (GtkAttachOptions
)(GTK_FILL
| GTK_EXPAND
| GTK_SHRINK
),
277 /* always wrap words */
278 gtk_text_set_word_wrap( GTK_TEXT(m_text
), TRUE
);
280 #if (GTK_MINOR_VERSION > 2)
281 /* put the horizontal scrollbar in the lower left hand corner */
284 GtkWidget
*hscrollbar
= gtk_hscrollbar_new(GTK_TEXT(m_text
)->hadj
);
285 GTK_WIDGET_UNSET_FLAGS( hscrollbar
, GTK_CAN_FOCUS
);
286 gtk_table_attach(GTK_TABLE(m_widget
), hscrollbar
, 0, 1, 1, 2,
287 (GtkAttachOptions
)(GTK_EXPAND
| GTK_FILL
| GTK_SHRINK
),
290 gtk_widget_show(hscrollbar
);
292 /* don't wrap lines, otherwise we wouldn't need the scrollbar */
293 gtk_text_set_line_wrap( GTK_TEXT(m_text
), FALSE
);
297 /* finally, put the vertical scrollbar in the upper right corner */
298 m_vScrollbar
= gtk_vscrollbar_new( GTK_TEXT(m_text
)->vadj
);
299 GTK_WIDGET_UNSET_FLAGS( m_vScrollbar
, GTK_CAN_FOCUS
);
300 gtk_table_attach(GTK_TABLE(m_widget
), m_vScrollbar
, 1, 2, 0, 1,
302 (GtkAttachOptions
)(GTK_EXPAND
| GTK_FILL
| GTK_SHRINK
),
307 /* a single-line text control: no need for scrollbars */
309 m_text
= gtk_entry_new();
312 m_parent
->DoAddChild( this );
316 SetFont( parent
->GetFont() );
318 wxSize
size_best( DoGetBestSize() );
319 wxSize
new_size( size
);
320 if (new_size
.x
== -1)
321 new_size
.x
= size_best
.x
;
322 if (new_size
.y
== -1)
323 new_size
.y
= size_best
.y
;
324 if ((new_size
.x
!= size
.x
) || (new_size
.y
!= size
.y
))
325 SetSize( new_size
.x
, new_size
.y
);
328 gtk_widget_show(m_text
);
332 gtk_signal_connect(GTK_OBJECT(GTK_TEXT(m_text
)->vadj
), "changed",
333 (GtkSignalFunc
) gtk_scrollbar_changed_callback
, (gpointer
) this );
335 gtk_signal_connect( GTK_OBJECT(GTK_TEXT(m_text
)), "focus_in_event",
336 GTK_SIGNAL_FUNC(gtk_text_focus_in_callback
), (gpointer
)this );
338 gtk_signal_connect( GTK_OBJECT(GTK_TEXT(m_text
)), "focus_out_event",
339 GTK_SIGNAL_FUNC(gtk_text_focus_out_callback
), (gpointer
)this );
343 gtk_signal_connect( GTK_OBJECT(m_text
), "focus_in_event",
344 GTK_SIGNAL_FUNC(gtk_text_focus_in_callback
), (gpointer
)this );
346 gtk_signal_connect( GTK_OBJECT(m_text
), "focus_out_event",
347 GTK_SIGNAL_FUNC(gtk_text_focus_out_callback
), (gpointer
)this );
350 if (!value
.IsEmpty())
354 #if GTK_MINOR_VERSION == 0
355 // if we don't realize it, GTK 1.0.6 dies with a SIGSEGV in
356 // gtk_editable_insert_text()
357 gtk_widget_realize(m_text
);
361 wxWX2MBbuf val
= value
.mbc_str();
362 gtk_editable_insert_text( GTK_EDITABLE(m_text
), val
, strlen(val
), &tmp
);
364 gtk_editable_insert_text( GTK_EDITABLE(m_text
), value
, value
.Length(), &tmp
);
365 #endif // Unicode/!Unicode
369 /* bring editable's cursor uptodate. bug in GTK. */
371 GTK_EDITABLE(m_text
)->current_pos
= gtk_text_get_point( GTK_TEXT(m_text
) );
375 if (style
& wxTE_PASSWORD
)
378 gtk_entry_set_visibility( GTK_ENTRY(m_text
), FALSE
);
381 if (style
& wxTE_READONLY
)
384 gtk_entry_set_editable( GTK_ENTRY(m_text
), FALSE
);
389 gtk_text_set_editable( GTK_TEXT(m_text
), 1 );
392 /* we want to be notified about text changes */
393 gtk_signal_connect( GTK_OBJECT(m_text
), "changed",
394 GTK_SIGNAL_FUNC(gtk_text_changed_callback
), (gpointer
)this);
396 /* we don't set a valid background colour, because the window
397 manager should use a default one */
398 m_backgroundColour
= wxColour();
399 SetForegroundColour( parent
->GetForegroundColour() );
401 m_cursor
= wxCursor( wxCURSOR_IBEAM
);
408 void wxTextCtrl::CalculateScrollbar()
410 if ((m_windowStyle
& wxTE_MULTILINE
) == 0) return;
412 GtkAdjustment
*adj
= GTK_TEXT(m_text
)->vadj
;
414 if (adj
->upper
- adj
->page_size
< 0.8)
416 if (m_vScrollbarVisible
)
418 gtk_widget_hide( m_vScrollbar
);
419 m_vScrollbarVisible
= FALSE
;
424 if (!m_vScrollbarVisible
)
426 gtk_widget_show( m_vScrollbar
);
427 m_vScrollbarVisible
= TRUE
;
432 wxString
wxTextCtrl::GetValue() const
434 wxCHECK_MSG( m_text
!= NULL
, wxT(""), wxT("invalid text ctrl") );
437 if (m_windowStyle
& wxTE_MULTILINE
)
439 gint len
= gtk_text_get_length( GTK_TEXT(m_text
) );
440 char *text
= gtk_editable_get_chars( GTK_EDITABLE(m_text
), 0, len
);
441 tmp
= wxString(text
,*wxConvCurrent
);
446 tmp
= wxString(gtk_entry_get_text( GTK_ENTRY(m_text
) ),*wxConvCurrent
);
451 void wxTextCtrl::SetValue( const wxString
&value
)
453 wxCHECK_RET( m_text
!= NULL
, wxT("invalid text ctrl") );
455 if (m_windowStyle
& wxTE_MULTILINE
)
457 gint len
= gtk_text_get_length( GTK_TEXT(m_text
) );
458 gtk_editable_delete_text( GTK_EDITABLE(m_text
), 0, len
);
461 wxWX2MBbuf tmpbuf
= value
.mbc_str();
462 gtk_editable_insert_text( GTK_EDITABLE(m_text
), tmpbuf
, strlen(tmpbuf
), &len
);
464 gtk_editable_insert_text( GTK_EDITABLE(m_text
), value
.mbc_str(), value
.Length(), &len
);
469 gtk_entry_set_text( GTK_ENTRY(m_text
), value
.mbc_str() );
472 // GRG, Jun/2000: Changed this after a lot of discussion in
473 // the lists. wxWindows 2.2 will have a set of flags to
474 // customize this behaviour.
475 SetInsertionPoint(0);
480 void wxTextCtrl::WriteText( const wxString
&text
)
482 wxCHECK_RET( m_text
!= NULL
, wxT("invalid text ctrl") );
484 if (text
.IsEmpty()) return;
486 if (m_windowStyle
& wxTE_MULTILINE
)
488 /* this moves the cursor pos to behind the inserted text */
489 gint len
= GTK_EDITABLE(m_text
)->current_pos
;
492 wxWX2MBbuf buf
= text
.mbc_str();
493 gtk_editable_insert_text( GTK_EDITABLE(m_text
), buf
, strlen(buf
), &len
);
495 gtk_editable_insert_text( GTK_EDITABLE(m_text
), text
, text
.Length(), &len
);
498 /* bring editable's cursor uptodate. bug in GTK. */
499 GTK_EDITABLE(m_text
)->current_pos
= gtk_text_get_point( GTK_TEXT(m_text
) );
503 /* this moves the cursor pos to behind the inserted text */
504 gint len
= GTK_EDITABLE(m_text
)->current_pos
;
506 wxWX2MBbuf buf
= text
.mbc_str();
507 gtk_editable_insert_text( GTK_EDITABLE(m_text
), buf
, strlen(buf
), &len
);
509 gtk_editable_insert_text( GTK_EDITABLE(m_text
), text
, text
.Length(), &len
);
512 /* bring editable's cursor uptodate. bug in GTK. */
513 GTK_EDITABLE(m_text
)->current_pos
+= text
.Len();
515 /* bring entry's cursor uptodate. bug in GTK. */
516 gtk_entry_set_position( GTK_ENTRY(m_text
), GTK_EDITABLE(m_text
)->current_pos
);
520 void wxTextCtrl::AppendText( const wxString
&text
)
522 wxCHECK_RET( m_text
!= NULL
, wxT("invalid text ctrl") );
524 if (text
.IsEmpty()) return;
526 if (m_windowStyle
& wxTE_MULTILINE
)
528 bool hasSpecialAttributes
= m_font
.Ok() ||
529 m_foregroundColour
.Ok();
530 if ( hasSpecialAttributes
)
532 gtk_text_insert( GTK_TEXT(m_text
),
533 m_font
.GetInternalFont(),
534 m_foregroundColour
.GetColor(),
535 m_backgroundColour
.Ok() ?
536 m_backgroundColour
.GetColor(): NULL
,
537 text
.mbc_str(), text
.length());
542 /* we'll insert at the last position */
543 gint len
= gtk_text_get_length( GTK_TEXT(m_text
) );
545 wxWX2MBbuf buf
= text
.mbc_str();
546 gtk_editable_insert_text( GTK_EDITABLE(m_text
), buf
, strlen(buf
), &len
);
548 gtk_editable_insert_text( GTK_EDITABLE(m_text
), text
, text
.Length(), &len
);
552 /* bring editable's cursor uptodate. bug in GTK. */
553 GTK_EDITABLE(m_text
)->current_pos
= gtk_text_get_point( GTK_TEXT(m_text
) );
557 gtk_entry_append_text( GTK_ENTRY(m_text
), text
.mbc_str() );
561 wxString
wxTextCtrl::GetLineText( long lineNo
) const
563 if (m_windowStyle
& wxTE_MULTILINE
)
565 gint len
= gtk_text_get_length( GTK_TEXT(m_text
) );
566 char *text
= gtk_editable_get_chars( GTK_EDITABLE(m_text
), 0, len
);
570 wxString
buf(wxT(""));
573 for (i
= 0; currentLine
!= lineNo
&& text
[i
]; i
++ )
578 for (j
= 0; text
[i
] && text
[i
] != '\n'; i
++, j
++ )
585 return wxEmptyString
;
589 if (lineNo
== 0) return GetValue();
590 return wxEmptyString
;
594 void wxTextCtrl::OnDropFiles( wxDropFilesEvent
&WXUNUSED(event
) )
596 /* If you implement this, don't forget to update the documentation!
597 * (file docs/latex/wx/text.tex) */
598 wxFAIL_MSG( wxT("wxTextCtrl::OnDropFiles not implemented") );
601 bool wxTextCtrl::PositionToXY(long pos
, long *x
, long *y
) const
603 if ( m_windowStyle
& wxTE_MULTILINE
)
605 wxString text
= GetValue();
607 // cast to prevent warning. But pos really should've been unsigned.
608 if( (unsigned long)pos
> text
.Len() )
614 const wxChar
* stop
= text
.c_str() + pos
;
615 for ( const wxChar
*p
= text
.c_str(); p
< stop
; p
++ )
626 else // single line control
628 if ( pos
<= GTK_ENTRY(m_text
)->text_length
)
635 // index out of bounds
643 long wxTextCtrl::XYToPosition(long x
, long y
) const
645 if (!(m_windowStyle
& wxTE_MULTILINE
)) return 0;
648 for( int i
=0; i
<y
; i
++ ) pos
+= GetLineLength(i
) + 1; // one for '\n'
654 int wxTextCtrl::GetLineLength(long lineNo
) const
656 wxString str
= GetLineText (lineNo
);
657 return (int) str
.Length();
660 int wxTextCtrl::GetNumberOfLines() const
662 if (m_windowStyle
& wxTE_MULTILINE
)
664 gint len
= gtk_text_get_length( GTK_TEXT(m_text
) );
665 char *text
= gtk_editable_get_chars( GTK_EDITABLE(m_text
), 0, len
);
670 for (int i
= 0; i
< len
; i
++ )
677 // currentLine is 0 based, add 1 to get number of lines
678 return currentLine
+ 1;
691 void wxTextCtrl::SetInsertionPoint( long pos
)
693 wxCHECK_RET( m_text
!= NULL
, wxT("invalid text ctrl") );
695 if (m_windowStyle
& wxTE_MULTILINE
)
697 /* seems to be broken in GTK 1.0.X:
698 gtk_text_set_point( GTK_TEXT(m_text), (int)pos ); */
700 gtk_signal_disconnect_by_func( GTK_OBJECT(m_text
),
701 GTK_SIGNAL_FUNC(gtk_text_changed_callback
), (gpointer
)this);
703 /* we fake a set_point by inserting and deleting. as the user
704 isn't supposed to get to know about thos non-sense, we
705 disconnect so that no events are sent to the user program. */
707 gint tmp
= (gint
)pos
;
708 gtk_editable_insert_text( GTK_EDITABLE(m_text
), " ", 1, &tmp
);
709 gtk_editable_delete_text( GTK_EDITABLE(m_text
), tmp
-1, tmp
);
711 gtk_signal_connect( GTK_OBJECT(m_text
), "changed",
712 GTK_SIGNAL_FUNC(gtk_text_changed_callback
), (gpointer
)this);
714 /* bring editable's cursor uptodate. another bug in GTK. */
716 GTK_EDITABLE(m_text
)->current_pos
= gtk_text_get_point( GTK_TEXT(m_text
) );
720 gtk_entry_set_position( GTK_ENTRY(m_text
), (int)pos
);
722 /* bring editable's cursor uptodate. bug in GTK. */
724 GTK_EDITABLE(m_text
)->current_pos
= (guint32
)pos
;
728 void wxTextCtrl::SetInsertionPointEnd()
730 wxCHECK_RET( m_text
!= NULL
, wxT("invalid text ctrl") );
732 if (m_windowStyle
& wxTE_MULTILINE
)
733 SetInsertionPoint(gtk_text_get_length(GTK_TEXT(m_text
)));
735 gtk_entry_set_position( GTK_ENTRY(m_text
), -1 );
738 void wxTextCtrl::SetEditable( bool editable
)
740 wxCHECK_RET( m_text
!= NULL
, wxT("invalid text ctrl") );
742 if (m_windowStyle
& wxTE_MULTILINE
)
743 gtk_text_set_editable( GTK_TEXT(m_text
), editable
);
745 gtk_entry_set_editable( GTK_ENTRY(m_text
), editable
);
748 bool wxTextCtrl::Enable( bool enable
)
750 if (!wxWindowBase::Enable(enable
))
756 if (m_windowStyle
& wxTE_MULTILINE
)
758 gtk_text_set_editable( GTK_TEXT(m_text
), enable
);
759 OnParentEnable(enable
);
763 gtk_widget_set_sensitive( m_text
, enable
);
769 // wxGTK-specific: called recursively by Enable,
770 // to give widgets an oppprtunity to correct their colours after they
771 // have been changed by Enable
772 void wxTextCtrl::OnParentEnable( bool enable
)
774 // If we have a custom background colour, we use this colour in both
775 // disabled and enabled mode, or we end up with a different colour under the
777 wxColour oldColour
= GetBackgroundColour();
780 // Need to set twice or it'll optimize the useful stuff out
781 if (oldColour
== * wxWHITE
)
782 SetBackgroundColour(*wxBLACK
);
784 SetBackgroundColour(*wxWHITE
);
785 SetBackgroundColour(oldColour
);
789 void wxTextCtrl::DiscardEdits()
794 void wxTextCtrl::SetSelection( long from
, long to
)
796 wxCHECK_RET( m_text
!= NULL
, wxT("invalid text ctrl") );
798 if ( (m_windowStyle
& wxTE_MULTILINE
) &&
799 !GTK_TEXT(m_text
)->line_start_cache
)
801 // tell the programmer that it didn't work
802 wxLogDebug(_T("Can't call SetSelection() before realizing the control"));
806 gtk_editable_select_region( GTK_EDITABLE(m_text
), (gint
)from
, (gint
)to
);
809 void wxTextCtrl::ShowPosition( long WXUNUSED(pos
) )
811 // SetInsertionPoint( pos );
814 long wxTextCtrl::GetInsertionPoint() const
816 wxCHECK_MSG( m_text
!= NULL
, 0, wxT("invalid text ctrl") );
818 return (long) GTK_EDITABLE(m_text
)->current_pos
;
821 long wxTextCtrl::GetLastPosition() const
823 wxCHECK_MSG( m_text
!= NULL
, 0, wxT("invalid text ctrl") );
826 if (m_windowStyle
& wxTE_MULTILINE
)
827 pos
= gtk_text_get_length( GTK_TEXT(m_text
) );
829 pos
= GTK_ENTRY(m_text
)->text_length
;
834 void wxTextCtrl::Remove( long from
, long to
)
836 wxCHECK_RET( m_text
!= NULL
, wxT("invalid text ctrl") );
838 gtk_editable_delete_text( GTK_EDITABLE(m_text
), (gint
)from
, (gint
)to
);
841 void wxTextCtrl::Replace( long from
, long to
, const wxString
&value
)
843 wxCHECK_RET( m_text
!= NULL
, wxT("invalid text ctrl") );
845 gtk_editable_delete_text( GTK_EDITABLE(m_text
), (gint
)from
, (gint
)to
);
847 if (!value
.IsEmpty())
849 gint pos
= (gint
)from
;
851 wxWX2MBbuf buf
= value
.mbc_str();
852 gtk_editable_insert_text( GTK_EDITABLE(m_text
), buf
, strlen(buf
), &pos
);
854 gtk_editable_insert_text( GTK_EDITABLE(m_text
), value
, value
.Length(), &pos
);
859 void wxTextCtrl::Cut()
861 wxCHECK_RET( m_text
!= NULL
, wxT("invalid text ctrl") );
863 #if (GTK_MINOR_VERSION > 0)
864 gtk_editable_cut_clipboard( GTK_EDITABLE(m_text
) );
866 gtk_editable_cut_clipboard( GTK_EDITABLE(m_text
), 0 );
870 void wxTextCtrl::Copy()
872 wxCHECK_RET( m_text
!= NULL
, wxT("invalid text ctrl") );
874 #if (GTK_MINOR_VERSION > 0)
875 gtk_editable_copy_clipboard( GTK_EDITABLE(m_text
) );
877 gtk_editable_copy_clipboard( GTK_EDITABLE(m_text
), 0 );
881 void wxTextCtrl::Paste()
883 wxCHECK_RET( m_text
!= NULL
, wxT("invalid text ctrl") );
885 #if (GTK_MINOR_VERSION > 0)
886 gtk_editable_paste_clipboard( GTK_EDITABLE(m_text
) );
888 gtk_editable_paste_clipboard( GTK_EDITABLE(m_text
), 0 );
892 bool wxTextCtrl::CanCopy() const
894 // Can copy if there's a selection
896 GetSelection(& from
, & to
);
897 return (from
!= to
) ;
900 bool wxTextCtrl::CanCut() const
902 // Can cut if there's a selection
904 GetSelection(& from
, & to
);
905 return (from
!= to
) && (IsEditable());
908 bool wxTextCtrl::CanPaste() const
910 return IsEditable() ;
914 void wxTextCtrl::Undo()
917 wxFAIL_MSG( wxT("wxTextCtrl::Undo not implemented") );
920 void wxTextCtrl::Redo()
923 wxFAIL_MSG( wxT("wxTextCtrl::Redo not implemented") );
926 bool wxTextCtrl::CanUndo() const
929 wxFAIL_MSG( wxT("wxTextCtrl::CanUndo not implemented") );
933 bool wxTextCtrl::CanRedo() const
936 wxFAIL_MSG( wxT("wxTextCtrl::CanRedo not implemented") );
940 // If the return values from and to are the same, there is no
942 void wxTextCtrl::GetSelection(long* fromOut
, long* toOut
) const
944 wxCHECK_RET( m_text
!= NULL
, wxT("invalid text ctrl") );
947 if ( !(GTK_EDITABLE(m_text
)->has_selection
) )
950 to
= GetInsertionPoint();
952 else // got selection
954 from
= (long) GTK_EDITABLE(m_text
)->selection_start_pos
;
955 to
= (long) GTK_EDITABLE(m_text
)->selection_end_pos
;
959 // exchange them to be compatible with wxMSW
972 bool wxTextCtrl::IsEditable() const
974 wxCHECK_MSG( m_text
!= NULL
, FALSE
, wxT("invalid text ctrl") );
976 return GTK_EDITABLE(m_text
)->editable
;
979 bool wxTextCtrl::IsModified() const
984 void wxTextCtrl::Clear()
989 void wxTextCtrl::OnChar( wxKeyEvent
&key_event
)
991 wxCHECK_RET( m_text
!= NULL
, wxT("invalid text ctrl") );
993 if ((key_event
.KeyCode() == WXK_RETURN
) && (m_windowStyle
& wxPROCESS_ENTER
))
995 wxCommandEvent
event(wxEVT_COMMAND_TEXT_ENTER
, m_windowId
);
996 event
.SetEventObject(this);
997 event
.SetString(GetValue());
998 if (GetEventHandler()->ProcessEvent(event
)) return;
1001 if ((key_event
.KeyCode() == WXK_RETURN
) && !(m_windowStyle
& wxTE_MULTILINE
))
1003 wxWindow
*top_frame
= m_parent
;
1004 while (top_frame
->GetParent() && !(top_frame
->IsTopLevel()))
1005 top_frame
= top_frame
->GetParent();
1006 GtkWindow
*window
= GTK_WINDOW(top_frame
->m_widget
);
1008 if (window
->default_widget
)
1010 gtk_widget_activate (window
->default_widget
);
1018 GtkWidget
* wxTextCtrl::GetConnectWidget()
1020 return GTK_WIDGET(m_text
);
1023 bool wxTextCtrl::IsOwnGtkWindow( GdkWindow
*window
)
1025 if (m_windowStyle
& wxTE_MULTILINE
)
1026 return (window
== GTK_TEXT(m_text
)->text_area
);
1028 return (window
== GTK_ENTRY(m_text
)->text_area
);
1031 // the font will change for subsequent text insertiongs
1032 bool wxTextCtrl::SetFont( const wxFont
&font
)
1034 wxCHECK_MSG( m_text
!= NULL
, FALSE
, wxT("invalid text ctrl") );
1036 if ( !wxWindowBase::SetFont(font
) )
1038 // font didn't change, nothing to do
1042 if ( m_windowStyle
& wxTE_MULTILINE
)
1044 m_updateFont
= TRUE
;
1046 ChangeFontGlobally();
1052 void wxTextCtrl::ChangeFontGlobally()
1054 // this method is very inefficient and hence should be called as rarely as
1056 wxASSERT_MSG( (m_windowStyle
& wxTE_MULTILINE
) && m_updateFont
,
1057 _T("shouldn't be called for single line controls") );
1059 wxString value
= GetValue();
1060 if ( !value
.IsEmpty() )
1065 m_updateFont
= FALSE
;
1069 void wxTextCtrl::UpdateFontIfNeeded()
1072 ChangeFontGlobally();
1075 bool wxTextCtrl::SetForegroundColour( const wxColour
&WXUNUSED(colour
) )
1077 wxCHECK_MSG( m_text
!= NULL
, FALSE
, wxT("invalid text ctrl") );
1083 bool wxTextCtrl::SetBackgroundColour( const wxColour
&colour
)
1085 wxCHECK_MSG( m_text
!= NULL
, FALSE
, wxT("invalid text ctrl") );
1087 wxControl::SetBackgroundColour( colour
);
1089 if (!m_widget
->window
)
1092 wxColour sysbg
= wxSystemSettings::GetSystemColour( wxSYS_COLOUR_BTNFACE
);
1093 if (sysbg
.Red() == colour
.Red() &&
1094 sysbg
.Green() == colour
.Green() &&
1095 sysbg
.Blue() == colour
.Blue())
1097 return FALSE
; // FIXME or TRUE?
1100 if (!m_backgroundColour
.Ok())
1103 if (m_windowStyle
& wxTE_MULTILINE
)
1105 GdkWindow
*window
= GTK_TEXT(m_text
)->text_area
;
1108 m_backgroundColour
.CalcPixel( gdk_window_get_colormap( window
) );
1109 gdk_window_set_background( window
, m_backgroundColour
.GetColor() );
1110 gdk_window_clear( window
);
1116 void wxTextCtrl::ApplyWidgetStyle()
1118 if (m_windowStyle
& wxTE_MULTILINE
)
1125 gtk_widget_set_style( m_text
, m_widgetStyle
);
1129 void wxTextCtrl::OnCut(wxCommandEvent
& WXUNUSED(event
))
1134 void wxTextCtrl::OnCopy(wxCommandEvent
& WXUNUSED(event
))
1139 void wxTextCtrl::OnPaste(wxCommandEvent
& WXUNUSED(event
))
1144 void wxTextCtrl::OnUndo(wxCommandEvent
& WXUNUSED(event
))
1149 void wxTextCtrl::OnRedo(wxCommandEvent
& WXUNUSED(event
))
1154 void wxTextCtrl::OnUpdateCut(wxUpdateUIEvent
& event
)
1156 event
.Enable( CanCut() );
1159 void wxTextCtrl::OnUpdateCopy(wxUpdateUIEvent
& event
)
1161 event
.Enable( CanCopy() );
1164 void wxTextCtrl::OnUpdatePaste(wxUpdateUIEvent
& event
)
1166 event
.Enable( CanPaste() );
1169 void wxTextCtrl::OnUpdateUndo(wxUpdateUIEvent
& event
)
1171 event
.Enable( CanUndo() );
1174 void wxTextCtrl::OnUpdateRedo(wxUpdateUIEvent
& event
)
1176 event
.Enable( CanRedo() );
1179 void wxTextCtrl::OnInternalIdle()
1181 wxCursor cursor
= m_cursor
;
1182 if (g_globalCursor
.Ok()) cursor
= g_globalCursor
;
1186 GdkWindow
*window
= (GdkWindow
*) NULL
;
1187 if (HasFlag(wxTE_MULTILINE
))
1188 window
= GTK_TEXT(m_text
)->text_area
;
1190 window
= GTK_ENTRY(m_text
)->text_area
;
1193 gdk_window_set_cursor( window
, cursor
.GetCursor() );
1195 if (!g_globalCursor
.Ok())
1196 cursor
= *wxSTANDARD_CURSOR
;
1198 window
= m_widget
->window
;
1199 if ((window
) && !(GTK_WIDGET_NO_WINDOW(m_widget
)))
1200 gdk_window_set_cursor( window
, cursor
.GetCursor() );
1206 wxSize
wxTextCtrl::DoGetBestSize() const
1208 // FIXME should be different for multi-line controls...
1209 wxSize
ret( wxControl::DoGetBestSize() );
1210 return wxSize(80, ret
.y
);