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"
17 #include "wx/settings.h"
19 #include <sys/types.h>
25 #include "gdk/gdkkeysyms.h"
27 //-----------------------------------------------------------------------------
29 //-----------------------------------------------------------------------------
31 extern void wxapp_install_idle_handler();
34 //-----------------------------------------------------------------------------
36 //-----------------------------------------------------------------------------
38 extern bool g_blockEventsOnDrag
;
40 //-----------------------------------------------------------------------------
42 //-----------------------------------------------------------------------------
45 gtk_text_changed_callback( GtkWidget
*WXUNUSED(widget
), wxTextCtrl
*win
)
47 if (!win
->m_hasVMT
) return;
50 wxapp_install_idle_handler();
54 wxCommandEvent
event( wxEVT_COMMAND_TEXT_UPDATED
, win
->GetId() );
55 event
.SetString( win
->GetValue() );
56 event
.SetEventObject( win
);
57 win
->GetEventHandler()->ProcessEvent( event
);
60 //-----------------------------------------------------------------------------
61 // "changed" from vertical scrollbar
62 //-----------------------------------------------------------------------------
65 gtk_scrollbar_changed_callback( GtkWidget
*WXUNUSED(widget
), wxTextCtrl
*win
)
67 if (!win
->m_hasVMT
) return;
70 wxapp_install_idle_handler();
72 win
->CalculateScrollbar();
75 //-----------------------------------------------------------------------------
77 //-----------------------------------------------------------------------------
79 IMPLEMENT_DYNAMIC_CLASS(wxTextCtrl
,wxControl
)
81 BEGIN_EVENT_TABLE(wxTextCtrl
, wxControl
)
82 EVT_CHAR(wxTextCtrl::OnChar
)
84 EVT_MENU(wxID_CUT
, wxTextCtrl::OnCut
)
85 EVT_MENU(wxID_COPY
, wxTextCtrl::OnCopy
)
86 EVT_MENU(wxID_PASTE
, wxTextCtrl::OnPaste
)
87 EVT_MENU(wxID_UNDO
, wxTextCtrl::OnUndo
)
88 EVT_MENU(wxID_REDO
, wxTextCtrl::OnRedo
)
90 EVT_UPDATE_UI(wxID_CUT
, wxTextCtrl::OnUpdateCut
)
91 EVT_UPDATE_UI(wxID_COPY
, wxTextCtrl::OnUpdateCopy
)
92 EVT_UPDATE_UI(wxID_PASTE
, wxTextCtrl::OnUpdatePaste
)
93 EVT_UPDATE_UI(wxID_UNDO
, wxTextCtrl::OnUpdateUndo
)
94 EVT_UPDATE_UI(wxID_REDO
, wxTextCtrl::OnUpdateRedo
)
97 #ifndef NO_TEXT_WINDOW_STREAM
98 wxTextCtrl::wxTextCtrl() : streambuf()
100 if (allocate()) setp(base(),ebuf());
105 wxTextCtrl::wxTextCtrl()
111 #ifndef NO_TEXT_WINDOW_STREAM
112 wxTextCtrl::wxTextCtrl( wxWindow
*parent
, wxWindowID id
, const wxString
&value
,
113 const wxPoint
&pos
, const wxSize
&size
,
114 int style
, const wxValidator
& validator
, const wxString
&name
) : streambuf()
116 if (allocate()) setp(base(),ebuf());
119 Create( parent
, id
, value
, pos
, size
, style
, validator
, name
);
122 wxTextCtrl::wxTextCtrl( wxWindow
*parent
, wxWindowID id
, const wxString
&value
,
123 const wxPoint
&pos
, const wxSize
&size
,
124 int style
, const wxValidator
& validator
, const wxString
&name
)
127 Create( parent
, id
, value
, pos
, size
, style
, validator
, name
);
131 bool wxTextCtrl::Create( wxWindow
*parent
, wxWindowID id
, const wxString
&value
,
132 const wxPoint
&pos
, const wxSize
&size
,
133 int style
, const wxValidator
& validator
, const wxString
&name
)
136 m_acceptsFocus
= TRUE
;
138 PreCreation( parent
, id
, pos
, size
, style
, name
);
141 SetValidator( validator
);
142 #endif // wxUSE_VALIDATORS
144 m_vScrollbarVisible
= FALSE
;
146 bool multi_line
= (style
& wxTE_MULTILINE
) != 0;
149 /* a multi-line edit control: create a vertical scrollbar by default and
150 horizontal if requested */
151 bool bHasHScrollbar
= (style
& wxHSCROLL
) != 0;
153 /* create our control ... */
154 m_text
= gtk_text_new( (GtkAdjustment
*) NULL
, (GtkAdjustment
*) NULL
);
156 /* ... and put into the upper left hand corner of the table */
157 m_widget
= gtk_table_new(bHasHScrollbar
? 2 : 1, 2, FALSE
);
158 GTK_WIDGET_UNSET_FLAGS( m_widget
, GTK_CAN_FOCUS
);
159 gtk_table_attach( GTK_TABLE(m_widget
), m_text
, 0, 1, 0, 1,
160 (GtkAttachOptions
)(GTK_FILL
| GTK_EXPAND
| GTK_SHRINK
),
161 (GtkAttachOptions
)(GTK_FILL
| GTK_EXPAND
| GTK_SHRINK
),
164 /* always wrap words */
165 gtk_text_set_word_wrap( GTK_TEXT(m_text
), TRUE
);
167 /* put the horizontal scrollbar in the lower left hand corner */
170 GtkWidget
*hscrollbar
= gtk_hscrollbar_new(GTK_TEXT(m_text
)->hadj
);
171 GTK_WIDGET_UNSET_FLAGS( hscrollbar
, GTK_CAN_FOCUS
);
172 gtk_table_attach(GTK_TABLE(m_widget
), hscrollbar
, 0, 1, 1, 2,
173 (GtkAttachOptions
)(GTK_EXPAND
| GTK_FILL
| GTK_SHRINK
),
176 gtk_widget_show(hscrollbar
);
178 #if (GTK_MINOR_VERSION > 0)
179 /* don't wrap lines, otherwise we wouldn't need the scrollbar */
180 gtk_text_set_line_wrap( GTK_TEXT(m_text
), FALSE
);
184 /* finally, put the vertical scrollbar in the upper right corner */
185 m_vScrollbar
= gtk_vscrollbar_new( GTK_TEXT(m_text
)->vadj
);
186 GTK_WIDGET_UNSET_FLAGS( m_vScrollbar
, GTK_CAN_FOCUS
);
187 gtk_table_attach(GTK_TABLE(m_widget
), m_vScrollbar
, 1, 2, 0, 1,
189 (GtkAttachOptions
)(GTK_EXPAND
| GTK_FILL
| GTK_SHRINK
),
194 /* a single-line text control: no need for scrollbars */
196 m_text
= gtk_entry_new();
199 wxSize newSize
= size
;
200 if (newSize
.x
== -1) newSize
.x
= 80;
201 if (newSize
.y
== -1) newSize
.y
= 26;
202 SetSize( newSize
.x
, newSize
.y
);
204 m_parent
->DoAddChild( this );
209 gtk_widget_show(m_text
);
211 /* we want to be notified about text changes */
212 gtk_signal_connect( GTK_OBJECT(m_text
), "changed",
213 GTK_SIGNAL_FUNC(gtk_text_changed_callback
), (gpointer
)this);
217 gtk_signal_connect(GTK_OBJECT(GTK_TEXT(m_text
)->vadj
), "changed",
218 (GtkSignalFunc
) gtk_scrollbar_changed_callback
, (gpointer
) this );
221 if (!value
.IsEmpty())
225 #if GTK_MINOR_VERSION == 0
226 // if we don't realize it, GTK 1.0.6 dies with a SIGSEGV in
227 // gtk_editable_insert_text()
228 gtk_widget_realize(m_text
);
232 wxWX2MBbuf val
= value
.mbc_str();
233 gtk_editable_insert_text( GTK_EDITABLE(m_text
), val
, strlen(val
), &tmp
);
235 gtk_editable_insert_text( GTK_EDITABLE(m_text
), value
, value
.Length(), &tmp
);
236 #endif // Unicode/!Unicode
240 /* bring editable's cursor uptodate. bug in GTK. */
242 GTK_EDITABLE(m_text
)->current_pos
= gtk_text_get_point( GTK_TEXT(m_text
) );
246 if (style
& wxTE_PASSWORD
)
249 gtk_entry_set_visibility( GTK_ENTRY(m_text
), FALSE
);
252 if (style
& wxTE_READONLY
)
255 gtk_entry_set_editable( GTK_ENTRY(m_text
), FALSE
);
260 gtk_text_set_editable( GTK_TEXT(m_text
), 1 );
263 SetBackgroundColour( wxSystemSettings::GetSystemColour(wxSYS_COLOUR_WINDOW
) );
264 SetForegroundColour( parent
->GetForegroundColour() );
271 void wxTextCtrl::CalculateScrollbar()
273 if ((m_windowStyle
& wxTE_MULTILINE
) == 0) return;
275 GtkAdjustment
*adj
= GTK_TEXT(m_text
)->vadj
;
277 if (adj
->upper
- adj
->page_size
< 0.8)
279 if (m_vScrollbarVisible
)
281 gtk_widget_hide( m_vScrollbar
);
282 m_vScrollbarVisible
= FALSE
;
287 if (!m_vScrollbarVisible
)
289 gtk_widget_show( m_vScrollbar
);
290 m_vScrollbarVisible
= TRUE
;
295 wxString
wxTextCtrl::GetValue() const
297 wxCHECK_MSG( m_text
!= NULL
, _T(""), _T("invalid text ctrl") );
300 if (m_windowStyle
& wxTE_MULTILINE
)
302 gint len
= gtk_text_get_length( GTK_TEXT(m_text
) );
303 char *text
= gtk_editable_get_chars( GTK_EDITABLE(m_text
), 0, len
);
304 tmp
= wxString(text
,*wxConv_current
);
309 tmp
= wxString(gtk_entry_get_text( GTK_ENTRY(m_text
) ),*wxConv_current
);
314 void wxTextCtrl::SetValue( const wxString
&value
)
316 wxCHECK_RET( m_text
!= NULL
, _T("invalid text ctrl") );
318 gtk_signal_disconnect_by_func( GTK_OBJECT(m_text
),
319 GTK_SIGNAL_FUNC(gtk_text_changed_callback
), (gpointer
)this);
321 wxString tmp
= _T("");
322 if (!value
.IsNull()) tmp
= value
;
323 if (m_windowStyle
& wxTE_MULTILINE
)
325 gint len
= gtk_text_get_length( GTK_TEXT(m_text
) );
326 gtk_editable_delete_text( GTK_EDITABLE(m_text
), 0, len
);
329 wxWX2MBbuf tmpbuf
= tmp
.mbc_str();
330 gtk_editable_insert_text( GTK_EDITABLE(m_text
), tmpbuf
, strlen(tmpbuf
), &len
);
332 gtk_editable_insert_text( GTK_EDITABLE(m_text
), tmp
.mbc_str(), tmp
.Length(), &len
);
337 gtk_entry_set_text( GTK_ENTRY(m_text
), tmp
.mbc_str() );
340 gtk_signal_connect( GTK_OBJECT(m_text
), "changed",
341 GTK_SIGNAL_FUNC(gtk_text_changed_callback
), (gpointer
)this);
344 void wxTextCtrl::WriteText( const wxString
&text
)
346 wxCHECK_RET( m_text
!= NULL
, _T("invalid text ctrl") );
348 if (text
.IsNull()) return;
350 if (m_windowStyle
& wxTE_MULTILINE
)
352 /* this moves the cursor pos to behind the inserted text */
353 gint len
= GTK_EDITABLE(m_text
)->current_pos
;
356 wxWX2MBbuf buf
= text
.mbc_str();
357 gtk_editable_insert_text( GTK_EDITABLE(m_text
), buf
, strlen(buf
), &len
);
359 gtk_editable_insert_text( GTK_EDITABLE(m_text
), text
, text
.Length(), &len
);
362 /* bring editable's cursor uptodate. bug in GTK. */
363 GTK_EDITABLE(m_text
)->current_pos
= gtk_text_get_point( GTK_TEXT(m_text
) );
367 /* this moves the cursor pos to behind the inserted text */
368 gint len
= GTK_EDITABLE(m_text
)->current_pos
;
370 wxWX2MBbuf buf
= text
.mbc_str();
371 gtk_editable_insert_text( GTK_EDITABLE(m_text
), buf
, strlen(buf
), &len
);
373 gtk_editable_insert_text( GTK_EDITABLE(m_text
), text
, text
.Length(), &len
);
376 /* bring editable's cursor uptodate. bug in GTK. */
377 GTK_EDITABLE(m_text
)->current_pos
+= text
.Len();
379 /* bring entry's cursor uptodate. bug in GTK. */
380 gtk_entry_set_position( GTK_ENTRY(m_text
), GTK_EDITABLE(m_text
)->current_pos
);
384 void wxTextCtrl::AppendText( const wxString
&text
)
386 wxCHECK_RET( m_text
!= NULL
, _T("invalid text ctrl") );
388 if (m_windowStyle
& wxTE_MULTILINE
)
390 /* we'll insert at the last position */
391 gint len
= gtk_text_get_length( GTK_TEXT(m_text
) );
393 wxWX2MBbuf buf
= text
.mbc_str();
394 gtk_editable_insert_text( GTK_EDITABLE(m_text
), buf
, strlen(buf
), &len
);
396 gtk_editable_insert_text( GTK_EDITABLE(m_text
), text
, text
.Length(), &len
);
399 /* bring editable's cursor uptodate. bug in GTK. */
400 GTK_EDITABLE(m_text
)->current_pos
= gtk_text_get_point( GTK_TEXT(m_text
) );
404 gtk_entry_append_text( GTK_ENTRY(m_text
), text
.mbc_str() );
408 bool wxTextCtrl::LoadFile( const wxString
&file
)
410 wxCHECK_MSG( m_text
!= NULL
, FALSE
, _T("invalid text ctrl") );
412 if (!wxFileExists(file
)) return FALSE
;
416 FILE *fp
= (FILE*) NULL
;
419 if ((stat (FNSTRINGCAST file
.fn_str(), &statb
) == -1) || (statb
.st_mode
& S_IFMT
) != S_IFREG
||
420 !(fp
= fopen (FNSTRINGCAST file
.fn_str(), "r")))
426 gint len
= statb
.st_size
;
428 if (!(text
= (char*)malloc ((unsigned) (len
+ 1))))
433 if (fread (text
, sizeof (char), len
, fp
) != (size_t) len
)
440 if (m_windowStyle
& wxTE_MULTILINE
)
443 gtk_editable_insert_text( GTK_EDITABLE(m_text
), text
, len
, &pos
);
447 gtk_entry_set_text( GTK_ENTRY(m_text
), text
);
457 bool wxTextCtrl::SaveFile( const wxString
&file
)
459 wxCHECK_MSG( m_text
!= NULL
, FALSE
, _T("invalid text ctrl") );
461 if (file
== _T("")) return FALSE
;
465 if (!(fp
= fopen (FNSTRINGCAST file
.fn_str(), "w")))
471 char *text
= (char*) NULL
;
474 if (m_windowStyle
& wxTE_MULTILINE
)
476 len
= gtk_text_get_length( GTK_TEXT(m_text
) );
477 text
= gtk_editable_get_chars( GTK_EDITABLE(m_text
), 0, len
);
481 text
= gtk_entry_get_text( GTK_ENTRY(m_text
) );
484 if (fwrite (text
, sizeof (char), len
, fp
) != (size_t) len
)
486 // Did not write whole file
489 // Make sure newline terminates the file
490 if (text
[len
- 1] != '\n')
495 if (m_windowStyle
& wxTE_MULTILINE
) g_free( text
);
504 wxString
wxTextCtrl::GetLineText( long lineNo
) const
506 if (m_windowStyle
& wxTE_MULTILINE
)
508 gint len
= gtk_text_get_length( GTK_TEXT(m_text
) );
509 char *text
= gtk_editable_get_chars( GTK_EDITABLE(m_text
), 0, len
);
513 wxString
buf(_T(""));
516 for (i
= 0; currentLine
!= lineNo
&& text
[i
]; i
++ )
521 for (j
= 0; text
[i
] && text
[i
] != '\n'; i
++, j
++ )
528 return wxEmptyString
;
532 if (lineNo
== 0) return GetValue();
533 return wxEmptyString
;
537 void wxTextCtrl::OnDropFiles( wxDropFilesEvent
&WXUNUSED(event
) )
539 /* If you implement this, don't forget to update the documentation!
540 * (file docs/latex/wx/text.tex) */
541 wxFAIL_MSG( _T("wxTextCtrl::OnDropFiles not implemented") );
544 long wxTextCtrl::PositionToXY(long pos
, long *x
, long *y
) const
546 if ( m_windowStyle
& wxTE_MULTILINE
)
548 wxString text
= GetValue();
550 // cast to prevent warning. But pos really should've been unsigned.
551 if( (unsigned long)pos
> text
.Len() )
557 const wxChar
* stop
= text
.c_str() + pos
;
558 for ( const wxChar
*p
= text
.c_str(); p
< stop
; p
++ )
569 else // single line control
571 if ( pos
<= GTK_ENTRY(m_text
)->text_length
)
578 // index out of bounds
586 long wxTextCtrl::XYToPosition(long x
, long y
) const
588 if (!(m_windowStyle
& wxTE_MULTILINE
)) return 0;
591 for( int i
=0; i
<y
; i
++ ) pos
+= GetLineLength(i
) + 1; // one for '\n'
597 int wxTextCtrl::GetLineLength(long lineNo
) const
599 wxString str
= GetLineText (lineNo
);
600 return (int) str
.Length();
603 int wxTextCtrl::GetNumberOfLines() const
605 if (m_windowStyle
& wxTE_MULTILINE
)
607 gint len
= gtk_text_get_length( GTK_TEXT(m_text
) );
608 char *text
= gtk_editable_get_chars( GTK_EDITABLE(m_text
), 0, len
);
613 for (int i
= 0; i
< len
; i
++ )
620 // currentLine is 0 based, add 1 to get number of lines
621 return currentLine
+ 1;
634 void wxTextCtrl::SetInsertionPoint( long pos
)
636 wxCHECK_RET( m_text
!= NULL
, _T("invalid text ctrl") );
638 if (m_windowStyle
& wxTE_MULTILINE
)
640 /* seems to be broken in GTK 1.0.X:
641 gtk_text_set_point( GTK_TEXT(m_text), (int)pos ); */
643 gtk_signal_disconnect_by_func( GTK_OBJECT(m_text
),
644 GTK_SIGNAL_FUNC(gtk_text_changed_callback
), (gpointer
)this);
646 /* we fake a set_point by inserting and deleting. as the user
647 isn't supposed to get to know about thos non-sense, we
648 disconnect so that no events are sent to the user program. */
650 gint tmp
= (gint
)pos
;
651 gtk_editable_insert_text( GTK_EDITABLE(m_text
), " ", 1, &tmp
);
652 gtk_editable_delete_text( GTK_EDITABLE(m_text
), tmp
-1, tmp
);
654 gtk_signal_connect( GTK_OBJECT(m_text
), "changed",
655 GTK_SIGNAL_FUNC(gtk_text_changed_callback
), (gpointer
)this);
657 /* bring editable's cursor uptodate. another bug in GTK. */
659 GTK_EDITABLE(m_text
)->current_pos
= gtk_text_get_point( GTK_TEXT(m_text
) );
663 gtk_entry_set_position( GTK_ENTRY(m_text
), (int)pos
);
665 /* bring editable's cursor uptodate. bug in GTK. */
667 GTK_EDITABLE(m_text
)->current_pos
= pos
;
671 void wxTextCtrl::SetInsertionPointEnd()
673 wxCHECK_RET( m_text
!= NULL
, _T("invalid text ctrl") );
675 if (m_windowStyle
& wxTE_MULTILINE
)
676 SetInsertionPoint(gtk_text_get_length(GTK_TEXT(m_text
)));
678 gtk_entry_set_position( GTK_ENTRY(m_text
), -1 );
681 void wxTextCtrl::SetEditable( bool editable
)
683 wxCHECK_RET( m_text
!= NULL
, _T("invalid text ctrl") );
685 if (m_windowStyle
& wxTE_MULTILINE
)
686 gtk_text_set_editable( GTK_TEXT(m_text
), editable
);
688 gtk_entry_set_editable( GTK_ENTRY(m_text
), editable
);
691 void wxTextCtrl::SetSelection( long from
, long to
)
693 wxCHECK_RET( m_text
!= NULL
, _T("invalid text ctrl") );
695 gtk_editable_select_region( GTK_EDITABLE(m_text
), (gint
)from
, (gint
)to
);
698 void wxTextCtrl::ShowPosition( long WXUNUSED(pos
) )
700 // SetInsertionPoint( pos );
703 long wxTextCtrl::GetInsertionPoint() const
705 wxCHECK_MSG( m_text
!= NULL
, 0, _T("invalid text ctrl") );
707 return (long) GTK_EDITABLE(m_text
)->current_pos
;
710 long wxTextCtrl::GetLastPosition() const
712 wxCHECK_MSG( m_text
!= NULL
, 0, _T("invalid text ctrl") );
715 if (m_windowStyle
& wxTE_MULTILINE
)
716 pos
= gtk_text_get_length( GTK_TEXT(m_text
) );
718 pos
= GTK_ENTRY(m_text
)->text_length
;
723 void wxTextCtrl::Remove( long from
, long to
)
725 wxCHECK_RET( m_text
!= NULL
, _T("invalid text ctrl") );
727 gtk_editable_delete_text( GTK_EDITABLE(m_text
), (gint
)from
, (gint
)to
);
730 void wxTextCtrl::Replace( long from
, long to
, const wxString
&value
)
732 wxCHECK_RET( m_text
!= NULL
, _T("invalid text ctrl") );
734 gtk_editable_delete_text( GTK_EDITABLE(m_text
), (gint
)from
, (gint
)to
);
735 if (value
.IsNull()) return;
736 gint pos
= (gint
)from
;
738 wxWX2MBbuf buf
= value
.mbc_str();
739 gtk_editable_insert_text( GTK_EDITABLE(m_text
), buf
, strlen(buf
), &pos
);
741 gtk_editable_insert_text( GTK_EDITABLE(m_text
), value
, value
.Length(), &pos
);
745 void wxTextCtrl::Cut()
747 wxCHECK_RET( m_text
!= NULL
, _T("invalid text ctrl") );
749 #if (GTK_MINOR_VERSION > 0)
750 gtk_editable_cut_clipboard( GTK_EDITABLE(m_text
) );
752 gtk_editable_cut_clipboard( GTK_EDITABLE(m_text
), 0 );
756 void wxTextCtrl::Copy()
758 wxCHECK_RET( m_text
!= NULL
, _T("invalid text ctrl") );
760 #if (GTK_MINOR_VERSION > 0)
761 gtk_editable_copy_clipboard( GTK_EDITABLE(m_text
) );
763 gtk_editable_copy_clipboard( GTK_EDITABLE(m_text
), 0 );
767 void wxTextCtrl::Paste()
769 wxCHECK_RET( m_text
!= NULL
, _T("invalid text ctrl") );
771 #if (GTK_MINOR_VERSION > 0)
772 gtk_editable_paste_clipboard( GTK_EDITABLE(m_text
) );
774 gtk_editable_paste_clipboard( GTK_EDITABLE(m_text
), 0 );
778 bool wxTextCtrl::CanCopy() const
780 // Can copy if there's a selection
782 GetSelection(& from
, & to
);
783 return (from
!= to
) ;
786 bool wxTextCtrl::CanCut() const
788 // Can cut if there's a selection
790 GetSelection(& from
, & to
);
791 return (from
!= to
) ;
794 bool wxTextCtrl::CanPaste() const
796 return IsEditable() ;
800 void wxTextCtrl::Undo()
803 wxFAIL_MSG( _T("wxTextCtrl::Undo not implemented") );
806 void wxTextCtrl::Redo()
809 wxFAIL_MSG( _T("wxTextCtrl::Redo not implemented") );
812 bool wxTextCtrl::CanUndo() const
815 wxFAIL_MSG( _T("wxTextCtrl::CanUndo not implemented") );
819 bool wxTextCtrl::CanRedo() const
822 wxFAIL_MSG( _T("wxTextCtrl::CanRedo not implemented") );
826 // If the return values from and to are the same, there is no
828 void wxTextCtrl::GetSelection(long* from
, long* to
) const
830 wxCHECK_RET( m_text
!= NULL
, _T("invalid text ctrl") );
832 if (!(GTK_EDITABLE(m_text
)->has_selection
))
839 if (from
) *from
= (long) GTK_EDITABLE(m_text
)->selection_start_pos
;
840 if (to
) *to
= (long) GTK_EDITABLE(m_text
)->selection_end_pos
;
843 bool wxTextCtrl::IsEditable() const
845 wxCHECK_MSG( m_text
!= NULL
, FALSE
, _T("invalid text ctrl") );
847 return GTK_EDITABLE(m_text
)->editable
;
850 void wxTextCtrl::Clear()
855 void wxTextCtrl::OnChar( wxKeyEvent
&key_event
)
857 wxCHECK_RET( m_text
!= NULL
, _T("invalid text ctrl") );
859 if ((key_event
.KeyCode() == WXK_RETURN
) && (m_windowStyle
& wxPROCESS_ENTER
))
861 wxCommandEvent
event(wxEVT_COMMAND_TEXT_ENTER
, m_windowId
);
862 event
.SetEventObject(this);
863 if (GetEventHandler()->ProcessEvent(event
)) return;
869 #ifndef NO_TEXT_WINDOW_STREAM
870 int wxTextCtrl::overflow( int WXUNUSED(c
) )
872 int len
= pptr() - pbase();
873 char *txt
= new char[len
+1];
874 strncpy(txt
, pbase(), len
);
877 setp(pbase(), epptr());
882 int wxTextCtrl::sync()
884 int len
= pptr() - pbase();
885 char *txt
= new char[len
+1];
886 strncpy(txt
, pbase(), len
);
889 setp(pbase(), epptr());
894 int wxTextCtrl::underflow()
899 wxTextCtrl
& wxTextCtrl::operator<<(const wxString
& s
)
905 wxTextCtrl
& wxTextCtrl::operator<<(float f
)
907 static char buf
[100];
908 sprintf(buf
, "%.2f", f
);
913 wxTextCtrl
& wxTextCtrl::operator<<(double d
)
915 static char buf
[100];
916 sprintf(buf
, "%.2f", d
);
921 wxTextCtrl
& wxTextCtrl::operator<<(int i
)
923 static char buf
[100];
924 sprintf(buf
, "%i", i
);
929 wxTextCtrl
& wxTextCtrl::operator<<(long i
)
931 static char buf
[100];
932 sprintf(buf
, "%ld", i
);
937 wxTextCtrl
& wxTextCtrl::operator<<(const char c
)
948 GtkWidget
* wxTextCtrl::GetConnectWidget()
950 return GTK_WIDGET(m_text
);
953 bool wxTextCtrl::IsOwnGtkWindow( GdkWindow
*window
)
955 if (m_windowStyle
& wxTE_MULTILINE
)
956 return (window
== GTK_TEXT(m_text
)->text_area
);
958 return (window
== GTK_ENTRY(m_text
)->text_area
);
961 bool wxTextCtrl::SetFont( const wxFont
&WXUNUSED(font
) )
963 wxCHECK_MSG( m_text
!= NULL
, FALSE
, _T("invalid text ctrl") );
969 bool wxTextCtrl::SetForegroundColour( const wxColour
&WXUNUSED(colour
) )
971 wxCHECK_MSG( m_text
!= NULL
, FALSE
, _T("invalid text ctrl") );
977 bool wxTextCtrl::SetBackgroundColour( const wxColour
&colour
)
979 wxCHECK_MSG( m_text
!= NULL
, FALSE
, _T("invalid text ctrl") );
981 wxControl::SetBackgroundColour( colour
);
983 if (!m_widget
->window
)
986 wxColour sysbg
= wxSystemSettings::GetSystemColour( wxSYS_COLOUR_BTNFACE
);
987 if (sysbg
.Red() == colour
.Red() &&
988 sysbg
.Green() == colour
.Green() &&
989 sysbg
.Blue() == colour
.Blue())
991 return FALSE
; // FIXME or TRUE?
994 if (!m_backgroundColour
.Ok())
997 if (m_windowStyle
& wxTE_MULTILINE
)
999 GdkWindow
*window
= GTK_TEXT(m_text
)->text_area
;
1002 m_backgroundColour
.CalcPixel( gdk_window_get_colormap( window
) );
1003 gdk_window_set_background( window
, m_backgroundColour
.GetColor() );
1004 gdk_window_clear( window
);
1010 void wxTextCtrl::ApplyWidgetStyle()
1012 if (m_windowStyle
& wxTE_MULTILINE
)
1019 gtk_widget_set_style( m_text
, m_widgetStyle
);
1023 void wxTextCtrl::OnCut(wxCommandEvent
& WXUNUSED(event
))
1028 void wxTextCtrl::OnCopy(wxCommandEvent
& WXUNUSED(event
))
1033 void wxTextCtrl::OnPaste(wxCommandEvent
& WXUNUSED(event
))
1038 void wxTextCtrl::OnUndo(wxCommandEvent
& WXUNUSED(event
))
1043 void wxTextCtrl::OnRedo(wxCommandEvent
& WXUNUSED(event
))
1048 void wxTextCtrl::OnUpdateCut(wxUpdateUIEvent
& event
)
1050 event
.Enable( CanCut() );
1053 void wxTextCtrl::OnUpdateCopy(wxUpdateUIEvent
& event
)
1055 event
.Enable( CanCopy() );
1058 void wxTextCtrl::OnUpdatePaste(wxUpdateUIEvent
& event
)
1060 event
.Enable( CanPaste() );
1063 void wxTextCtrl::OnUpdateUndo(wxUpdateUIEvent
& event
)
1065 event
.Enable( CanUndo() );
1068 void wxTextCtrl::OnUpdateRedo(wxUpdateUIEvent
& event
)
1070 event
.Enable( CanRedo() );