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 #if wxUSE_STD_IOSTREAM
98 wxTextCtrl::wxTextCtrl() : streambuf()
100 if (allocate()) setp(base(),ebuf());
105 wxTextCtrl::wxTextCtrl()
111 #if wxUSE_STD_IOSTREAM
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
,*wxConvCurrent
);
309 tmp
= wxString(gtk_entry_get_text( GTK_ENTRY(m_text
) ),*wxConvCurrent
);
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
.IsEmpty()) return;
350 gtk_signal_disconnect_by_func( GTK_OBJECT(m_text
),
351 GTK_SIGNAL_FUNC(gtk_text_changed_callback
), (gpointer
)this);
353 if (m_windowStyle
& wxTE_MULTILINE
)
355 /* this moves the cursor pos to behind the inserted text */
356 gint len
= GTK_EDITABLE(m_text
)->current_pos
;
359 wxWX2MBbuf buf
= text
.mbc_str();
360 gtk_editable_insert_text( GTK_EDITABLE(m_text
), buf
, strlen(buf
), &len
);
362 gtk_editable_insert_text( GTK_EDITABLE(m_text
), text
, text
.Length(), &len
);
365 /* bring editable's cursor uptodate. bug in GTK. */
366 GTK_EDITABLE(m_text
)->current_pos
= gtk_text_get_point( GTK_TEXT(m_text
) );
370 /* this moves the cursor pos to behind the inserted text */
371 gint len
= GTK_EDITABLE(m_text
)->current_pos
;
373 wxWX2MBbuf buf
= text
.mbc_str();
374 gtk_editable_insert_text( GTK_EDITABLE(m_text
), buf
, strlen(buf
), &len
);
376 gtk_editable_insert_text( GTK_EDITABLE(m_text
), text
, text
.Length(), &len
);
379 /* bring editable's cursor uptodate. bug in GTK. */
380 GTK_EDITABLE(m_text
)->current_pos
+= text
.Len();
382 /* bring entry's cursor uptodate. bug in GTK. */
383 gtk_entry_set_position( GTK_ENTRY(m_text
), GTK_EDITABLE(m_text
)->current_pos
);
386 gtk_signal_connect( GTK_OBJECT(m_text
), "changed",
387 GTK_SIGNAL_FUNC(gtk_text_changed_callback
), (gpointer
)this);
390 void wxTextCtrl::AppendText( const wxString
&text
)
392 wxCHECK_RET( m_text
!= NULL
, _T("invalid text ctrl") );
394 if (text
.IsEmpty()) return;
396 gtk_signal_disconnect_by_func( GTK_OBJECT(m_text
),
397 GTK_SIGNAL_FUNC(gtk_text_changed_callback
), (gpointer
)this);
399 if (m_windowStyle
& wxTE_MULTILINE
)
401 bool hasSpecialAttributes
= m_font
.Ok() ||
402 m_foregroundColour
.Ok() ||
403 m_backgroundColour
.Ok();
404 if ( hasSpecialAttributes
)
406 gtk_text_insert( GTK_TEXT(m_text
),
407 m_font
.GetInternalFont(),
408 m_foregroundColour
.GetColor(),
409 m_backgroundColour
.GetColor(),
410 text
, text
.length());
415 /* we'll insert at the last position */
416 gint len
= gtk_text_get_length( GTK_TEXT(m_text
) );
418 wxWX2MBbuf buf
= text
.mbc_str();
419 gtk_editable_insert_text( GTK_EDITABLE(m_text
), buf
, strlen(buf
), &len
);
421 gtk_editable_insert_text( GTK_EDITABLE(m_text
), text
, text
.Length(), &len
);
425 /* bring editable's cursor uptodate. bug in GTK. */
426 GTK_EDITABLE(m_text
)->current_pos
= gtk_text_get_point( GTK_TEXT(m_text
) );
430 gtk_entry_append_text( GTK_ENTRY(m_text
), text
.mbc_str() );
433 gtk_signal_connect( GTK_OBJECT(m_text
), "changed",
434 GTK_SIGNAL_FUNC(gtk_text_changed_callback
), (gpointer
)this);
437 bool wxTextCtrl::LoadFile( const wxString
&file
)
439 wxCHECK_MSG( m_text
!= NULL
, FALSE
, _T("invalid text ctrl") );
441 if (!wxFileExists(file
)) return FALSE
;
445 FILE *fp
= (FILE*) NULL
;
448 if ((stat (FNSTRINGCAST file
.fn_str(), &statb
) == -1) || (statb
.st_mode
& S_IFMT
) != S_IFREG
||
449 !(fp
= fopen (FNSTRINGCAST file
.fn_str(), "r")))
455 gint len
= statb
.st_size
;
457 if (!(text
= (char*)malloc ((unsigned) (len
+ 1))))
462 if (fread (text
, sizeof (char), len
, fp
) != (size_t) len
)
469 gtk_signal_disconnect_by_func( GTK_OBJECT(m_text
),
470 GTK_SIGNAL_FUNC(gtk_text_changed_callback
), (gpointer
)this);
472 if (m_windowStyle
& wxTE_MULTILINE
)
475 gtk_editable_insert_text( GTK_EDITABLE(m_text
), text
, len
, &pos
);
479 gtk_entry_set_text( GTK_ENTRY(m_text
), text
);
482 gtk_signal_connect( GTK_OBJECT(m_text
), "changed",
483 GTK_SIGNAL_FUNC(gtk_text_changed_callback
), (gpointer
)this);
492 bool wxTextCtrl::SaveFile( const wxString
&file
)
494 wxCHECK_MSG( m_text
!= NULL
, FALSE
, _T("invalid text ctrl") );
496 if (file
== _T("")) return FALSE
;
500 if (!(fp
= fopen (FNSTRINGCAST file
.fn_str(), "w")))
506 char *text
= (char*) NULL
;
509 if (m_windowStyle
& wxTE_MULTILINE
)
511 len
= gtk_text_get_length( GTK_TEXT(m_text
) );
512 text
= gtk_editable_get_chars( GTK_EDITABLE(m_text
), 0, len
);
516 text
= gtk_entry_get_text( GTK_ENTRY(m_text
) );
519 if (fwrite (text
, sizeof (char), len
, fp
) != (size_t) len
)
521 // Did not write whole file
524 // Make sure newline terminates the file
525 if (text
[len
- 1] != '\n')
530 if (m_windowStyle
& wxTE_MULTILINE
) g_free( text
);
539 wxString
wxTextCtrl::GetLineText( long lineNo
) const
541 if (m_windowStyle
& wxTE_MULTILINE
)
543 gint len
= gtk_text_get_length( GTK_TEXT(m_text
) );
544 char *text
= gtk_editable_get_chars( GTK_EDITABLE(m_text
), 0, len
);
548 wxString
buf(_T(""));
551 for (i
= 0; currentLine
!= lineNo
&& text
[i
]; i
++ )
556 for (j
= 0; text
[i
] && text
[i
] != '\n'; i
++, j
++ )
563 return wxEmptyString
;
567 if (lineNo
== 0) return GetValue();
568 return wxEmptyString
;
572 void wxTextCtrl::OnDropFiles( wxDropFilesEvent
&WXUNUSED(event
) )
574 /* If you implement this, don't forget to update the documentation!
575 * (file docs/latex/wx/text.tex) */
576 wxFAIL_MSG( _T("wxTextCtrl::OnDropFiles not implemented") );
579 long wxTextCtrl::PositionToXY(long pos
, long *x
, long *y
) const
581 if ( m_windowStyle
& wxTE_MULTILINE
)
583 wxString text
= GetValue();
585 // cast to prevent warning. But pos really should've been unsigned.
586 if( (unsigned long)pos
> text
.Len() )
592 const wxChar
* stop
= text
.c_str() + pos
;
593 for ( const wxChar
*p
= text
.c_str(); p
< stop
; p
++ )
604 else // single line control
606 if ( pos
<= GTK_ENTRY(m_text
)->text_length
)
613 // index out of bounds
621 long wxTextCtrl::XYToPosition(long x
, long y
) const
623 if (!(m_windowStyle
& wxTE_MULTILINE
)) return 0;
626 for( int i
=0; i
<y
; i
++ ) pos
+= GetLineLength(i
) + 1; // one for '\n'
632 int wxTextCtrl::GetLineLength(long lineNo
) const
634 wxString str
= GetLineText (lineNo
);
635 return (int) str
.Length();
638 int wxTextCtrl::GetNumberOfLines() const
640 if (m_windowStyle
& wxTE_MULTILINE
)
642 gint len
= gtk_text_get_length( GTK_TEXT(m_text
) );
643 char *text
= gtk_editable_get_chars( GTK_EDITABLE(m_text
), 0, len
);
648 for (int i
= 0; i
< len
; i
++ )
655 // currentLine is 0 based, add 1 to get number of lines
656 return currentLine
+ 1;
669 void wxTextCtrl::SetInsertionPoint( long pos
)
671 wxCHECK_RET( m_text
!= NULL
, _T("invalid text ctrl") );
673 if (m_windowStyle
& wxTE_MULTILINE
)
675 /* seems to be broken in GTK 1.0.X:
676 gtk_text_set_point( GTK_TEXT(m_text), (int)pos ); */
678 gtk_signal_disconnect_by_func( GTK_OBJECT(m_text
),
679 GTK_SIGNAL_FUNC(gtk_text_changed_callback
), (gpointer
)this);
681 /* we fake a set_point by inserting and deleting. as the user
682 isn't supposed to get to know about thos non-sense, we
683 disconnect so that no events are sent to the user program. */
685 gint tmp
= (gint
)pos
;
686 gtk_editable_insert_text( GTK_EDITABLE(m_text
), " ", 1, &tmp
);
687 gtk_editable_delete_text( GTK_EDITABLE(m_text
), tmp
-1, tmp
);
689 gtk_signal_connect( GTK_OBJECT(m_text
), "changed",
690 GTK_SIGNAL_FUNC(gtk_text_changed_callback
), (gpointer
)this);
692 /* bring editable's cursor uptodate. another bug in GTK. */
694 GTK_EDITABLE(m_text
)->current_pos
= gtk_text_get_point( GTK_TEXT(m_text
) );
698 gtk_entry_set_position( GTK_ENTRY(m_text
), (int)pos
);
700 /* bring editable's cursor uptodate. bug in GTK. */
702 GTK_EDITABLE(m_text
)->current_pos
= pos
;
706 void wxTextCtrl::SetInsertionPointEnd()
708 wxCHECK_RET( m_text
!= NULL
, _T("invalid text ctrl") );
710 if (m_windowStyle
& wxTE_MULTILINE
)
711 SetInsertionPoint(gtk_text_get_length(GTK_TEXT(m_text
)));
713 gtk_entry_set_position( GTK_ENTRY(m_text
), -1 );
716 void wxTextCtrl::SetEditable( bool editable
)
718 wxCHECK_RET( m_text
!= NULL
, _T("invalid text ctrl") );
720 if (m_windowStyle
& wxTE_MULTILINE
)
721 gtk_text_set_editable( GTK_TEXT(m_text
), editable
);
723 gtk_entry_set_editable( GTK_ENTRY(m_text
), editable
);
726 void wxTextCtrl::SetSelection( long from
, long to
)
728 wxCHECK_RET( m_text
!= NULL
, _T("invalid text ctrl") );
730 gtk_editable_select_region( GTK_EDITABLE(m_text
), (gint
)from
, (gint
)to
);
733 void wxTextCtrl::ShowPosition( long WXUNUSED(pos
) )
735 // SetInsertionPoint( pos );
738 long wxTextCtrl::GetInsertionPoint() const
740 wxCHECK_MSG( m_text
!= NULL
, 0, _T("invalid text ctrl") );
742 return (long) GTK_EDITABLE(m_text
)->current_pos
;
745 long wxTextCtrl::GetLastPosition() const
747 wxCHECK_MSG( m_text
!= NULL
, 0, _T("invalid text ctrl") );
750 if (m_windowStyle
& wxTE_MULTILINE
)
751 pos
= gtk_text_get_length( GTK_TEXT(m_text
) );
753 pos
= GTK_ENTRY(m_text
)->text_length
;
758 void wxTextCtrl::Remove( long from
, long to
)
760 wxCHECK_RET( m_text
!= NULL
, _T("invalid text ctrl") );
762 gtk_signal_disconnect_by_func( GTK_OBJECT(m_text
),
763 GTK_SIGNAL_FUNC(gtk_text_changed_callback
), (gpointer
)this);
765 gtk_editable_delete_text( GTK_EDITABLE(m_text
), (gint
)from
, (gint
)to
);
767 gtk_signal_connect( GTK_OBJECT(m_text
), "changed",
768 GTK_SIGNAL_FUNC(gtk_text_changed_callback
), (gpointer
)this);
771 void wxTextCtrl::Replace( long from
, long to
, const wxString
&value
)
773 wxCHECK_RET( m_text
!= NULL
, _T("invalid text ctrl") );
775 gtk_signal_disconnect_by_func( GTK_OBJECT(m_text
),
776 GTK_SIGNAL_FUNC(gtk_text_changed_callback
), (gpointer
)this);
778 gtk_editable_delete_text( GTK_EDITABLE(m_text
), (gint
)from
, (gint
)to
);
780 if (!value
.IsEmpty())
782 gint pos
= (gint
)from
;
784 wxWX2MBbuf buf
= value
.mbc_str();
785 gtk_editable_insert_text( GTK_EDITABLE(m_text
), buf
, strlen(buf
), &pos
);
787 gtk_editable_insert_text( GTK_EDITABLE(m_text
), value
, value
.Length(), &pos
);
791 gtk_signal_connect( GTK_OBJECT(m_text
), "changed",
792 GTK_SIGNAL_FUNC(gtk_text_changed_callback
), (gpointer
)this);
795 void wxTextCtrl::Cut()
797 wxCHECK_RET( m_text
!= NULL
, _T("invalid text ctrl") );
799 gtk_signal_disconnect_by_func( GTK_OBJECT(m_text
),
800 GTK_SIGNAL_FUNC(gtk_text_changed_callback
), (gpointer
)this);
802 #if (GTK_MINOR_VERSION > 0)
803 gtk_editable_cut_clipboard( GTK_EDITABLE(m_text
) );
805 gtk_editable_cut_clipboard( GTK_EDITABLE(m_text
), 0 );
808 gtk_signal_connect( GTK_OBJECT(m_text
), "changed",
809 GTK_SIGNAL_FUNC(gtk_text_changed_callback
), (gpointer
)this);
812 void wxTextCtrl::Copy()
814 wxCHECK_RET( m_text
!= NULL
, _T("invalid text ctrl") );
816 #if (GTK_MINOR_VERSION > 0)
817 gtk_editable_copy_clipboard( GTK_EDITABLE(m_text
) );
819 gtk_editable_copy_clipboard( GTK_EDITABLE(m_text
), 0 );
823 void wxTextCtrl::Paste()
825 wxCHECK_RET( m_text
!= NULL
, _T("invalid text ctrl") );
827 gtk_signal_disconnect_by_func( GTK_OBJECT(m_text
),
828 GTK_SIGNAL_FUNC(gtk_text_changed_callback
), (gpointer
)this);
830 #if (GTK_MINOR_VERSION > 0)
831 gtk_editable_paste_clipboard( GTK_EDITABLE(m_text
) );
833 gtk_editable_paste_clipboard( GTK_EDITABLE(m_text
), 0 );
836 gtk_signal_connect( GTK_OBJECT(m_text
), "changed",
837 GTK_SIGNAL_FUNC(gtk_text_changed_callback
), (gpointer
)this);
840 bool wxTextCtrl::CanCopy() const
842 // Can copy if there's a selection
844 GetSelection(& from
, & to
);
845 return (from
!= to
) ;
848 bool wxTextCtrl::CanCut() const
850 // Can cut if there's a selection
852 GetSelection(& from
, & to
);
853 return (from
!= to
) ;
856 bool wxTextCtrl::CanPaste() const
858 return IsEditable() ;
862 void wxTextCtrl::Undo()
865 wxFAIL_MSG( _T("wxTextCtrl::Undo not implemented") );
868 void wxTextCtrl::Redo()
871 wxFAIL_MSG( _T("wxTextCtrl::Redo not implemented") );
874 bool wxTextCtrl::CanUndo() const
877 wxFAIL_MSG( _T("wxTextCtrl::CanUndo not implemented") );
881 bool wxTextCtrl::CanRedo() const
884 wxFAIL_MSG( _T("wxTextCtrl::CanRedo not implemented") );
888 // If the return values from and to are the same, there is no
890 void wxTextCtrl::GetSelection(long* from
, long* to
) const
892 wxCHECK_RET( m_text
!= NULL
, _T("invalid text ctrl") );
894 if (!(GTK_EDITABLE(m_text
)->has_selection
))
901 if (from
) *from
= (long) GTK_EDITABLE(m_text
)->selection_start_pos
;
902 if (to
) *to
= (long) GTK_EDITABLE(m_text
)->selection_end_pos
;
905 bool wxTextCtrl::IsEditable() const
907 wxCHECK_MSG( m_text
!= NULL
, FALSE
, _T("invalid text ctrl") );
909 return GTK_EDITABLE(m_text
)->editable
;
912 void wxTextCtrl::Clear()
917 void wxTextCtrl::OnChar( wxKeyEvent
&key_event
)
919 wxCHECK_RET( m_text
!= NULL
, _T("invalid text ctrl") );
921 if ((key_event
.KeyCode() == WXK_RETURN
) && (m_windowStyle
& wxPROCESS_ENTER
))
923 wxCommandEvent
event(wxEVT_COMMAND_TEXT_ENTER
, m_windowId
);
924 event
.SetEventObject(this);
925 if (GetEventHandler()->ProcessEvent(event
)) return;
931 #if wxUSE_STD_IOSTREAM
932 int wxTextCtrl::overflow( int WXUNUSED(c
) )
934 int len
= pptr() - pbase();
935 char *txt
= new char[len
+1];
936 strncpy(txt
, pbase(), len
);
939 setp(pbase(), epptr());
944 int wxTextCtrl::sync()
946 int len
= pptr() - pbase();
947 char *txt
= new char[len
+1];
948 strncpy(txt
, pbase(), len
);
951 setp(pbase(), epptr());
956 int wxTextCtrl::underflow()
962 wxTextCtrl
& wxTextCtrl::operator<<(const wxString
& s
)
968 wxTextCtrl
& wxTextCtrl::operator<<(float f
)
970 static char buf
[100];
971 sprintf(buf
, "%.2f", f
);
976 wxTextCtrl
& wxTextCtrl::operator<<(double d
)
978 static char buf
[100];
979 sprintf(buf
, "%.2f", d
);
984 wxTextCtrl
& wxTextCtrl::operator<<(int i
)
986 static char buf
[100];
987 sprintf(buf
, "%i", i
);
992 wxTextCtrl
& wxTextCtrl::operator<<(long i
)
994 static char buf
[100];
995 sprintf(buf
, "%ld", i
);
1000 wxTextCtrl
& wxTextCtrl::operator<<(const char c
)
1010 GtkWidget
* wxTextCtrl::GetConnectWidget()
1012 return GTK_WIDGET(m_text
);
1015 bool wxTextCtrl::IsOwnGtkWindow( GdkWindow
*window
)
1017 if (m_windowStyle
& wxTE_MULTILINE
)
1018 return (window
== GTK_TEXT(m_text
)->text_area
);
1020 return (window
== GTK_ENTRY(m_text
)->text_area
);
1023 // the font will change for subsequent text insertiongs
1024 bool wxTextCtrl::SetFont( const wxFont
&font
)
1026 wxCHECK_MSG( m_text
!= NULL
, FALSE
, _T("invalid text ctrl") );
1028 if ( !wxWindowBase::SetFont(font
) )
1030 // font didn't change, nothing to do
1034 if ( m_windowStyle
& wxTE_MULTILINE
)
1036 // for compatibility with other ports: the font is a global controls
1037 // characteristic, so change the font globally
1038 wxString value
= GetValue();
1039 if ( !value
.IsEmpty() )
1050 bool wxTextCtrl::SetForegroundColour( const wxColour
&WXUNUSED(colour
) )
1052 wxCHECK_MSG( m_text
!= NULL
, FALSE
, _T("invalid text ctrl") );
1058 bool wxTextCtrl::SetBackgroundColour( const wxColour
&colour
)
1060 wxCHECK_MSG( m_text
!= NULL
, FALSE
, _T("invalid text ctrl") );
1062 wxControl::SetBackgroundColour( colour
);
1064 if (!m_widget
->window
)
1067 wxColour sysbg
= wxSystemSettings::GetSystemColour( wxSYS_COLOUR_BTNFACE
);
1068 if (sysbg
.Red() == colour
.Red() &&
1069 sysbg
.Green() == colour
.Green() &&
1070 sysbg
.Blue() == colour
.Blue())
1072 return FALSE
; // FIXME or TRUE?
1075 if (!m_backgroundColour
.Ok())
1078 if (m_windowStyle
& wxTE_MULTILINE
)
1080 GdkWindow
*window
= GTK_TEXT(m_text
)->text_area
;
1083 m_backgroundColour
.CalcPixel( gdk_window_get_colormap( window
) );
1084 gdk_window_set_background( window
, m_backgroundColour
.GetColor() );
1085 gdk_window_clear( window
);
1091 void wxTextCtrl::ApplyWidgetStyle()
1093 if (m_windowStyle
& wxTE_MULTILINE
)
1100 gtk_widget_set_style( m_text
, m_widgetStyle
);
1104 void wxTextCtrl::OnCut(wxCommandEvent
& WXUNUSED(event
))
1109 void wxTextCtrl::OnCopy(wxCommandEvent
& WXUNUSED(event
))
1114 void wxTextCtrl::OnPaste(wxCommandEvent
& WXUNUSED(event
))
1119 void wxTextCtrl::OnUndo(wxCommandEvent
& WXUNUSED(event
))
1124 void wxTextCtrl::OnRedo(wxCommandEvent
& WXUNUSED(event
))
1129 void wxTextCtrl::OnUpdateCut(wxUpdateUIEvent
& event
)
1131 event
.Enable( CanCut() );
1134 void wxTextCtrl::OnUpdateCopy(wxUpdateUIEvent
& event
)
1136 event
.Enable( CanCopy() );
1139 void wxTextCtrl::OnUpdatePaste(wxUpdateUIEvent
& event
)
1141 event
.Enable( CanPaste() );
1144 void wxTextCtrl::OnUpdateUndo(wxUpdateUIEvent
& event
)
1146 event
.Enable( CanUndo() );
1149 void wxTextCtrl::OnUpdateRedo(wxUpdateUIEvent
& event
)
1151 event
.Enable( CanRedo() );