1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Robert Roebling
6 // Copyright: (c) 1998 Robert Roebling, Vadim Zeitlin
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
10 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
11 #pragma implementation "textctrl.h"
14 // For compilers that support precompilation, includes "wx.h".
15 #include "wx/wxprec.h"
17 #include "wx/textctrl.h"
21 #include "wx/settings.h"
23 #include "wx/strconv.h"
24 #include "wx/fontutil.h" // for wxNativeFontInfo (GetNativeFontInfo())
26 #include <sys/types.h>
29 #include <math.h> // for fabs
31 #include "wx/gtk/private.h"
32 #include <gdk/gdkkeysyms.h>
34 //-----------------------------------------------------------------------------
36 //-----------------------------------------------------------------------------
38 extern void wxapp_install_idle_handler();
41 //-----------------------------------------------------------------------------
43 //-----------------------------------------------------------------------------
45 extern bool g_blockEventsOnDrag
;
46 extern wxCursor g_globalCursor
;
47 extern wxWindowGTK
*g_delayedFocus
;
49 // ----------------------------------------------------------------------------
51 // ----------------------------------------------------------------------------
54 static void wxGtkTextInsert(GtkWidget
*text
,
55 GtkTextBuffer
*text_buffer
,
56 const wxTextAttr
& attr
,
60 PangoFontDescription
*font_description
= attr
.HasFont()
61 ? attr
.GetFont().GetNativeFontInfo()->description
64 GdkColor
*colFg
= attr
.HasTextColour() ? attr
.GetTextColour().GetColor()
67 GdkColor
*colBg
= attr
.HasBackgroundColour()
68 ? attr
.GetBackgroundColour().GetColor()
72 tag
= gtk_text_buffer_create_tag( text_buffer
, NULL
, "font-desc", font_description
,
73 "foreground-gdk", colFg
,
74 "background-gdk", colBg
, NULL
);
77 gtk_text_buffer_get_iter_at_mark( text_buffer
, &iter
,
78 gtk_text_buffer_get_insert (text_buffer
) );
80 gtk_text_buffer_insert_with_tags( text_buffer
, &iter
, buffer
, strlen(buffer
), tag
, NULL
);
83 static void wxGtkTextInsert(GtkWidget
*text
,
84 const wxTextAttr
& attr
,
88 GdkFont
*font
= attr
.HasFont() ? attr
.GetFont().GetInternalFont()
91 GdkColor
*colFg
= attr
.HasTextColour() ? attr
.GetTextColour().GetColor()
94 GdkColor
*colBg
= attr
.HasBackgroundColour()
95 ? attr
.GetBackgroundColour().GetColor()
98 gtk_text_insert( GTK_TEXT(text
), font
, colFg
, colBg
, txt
, len
);
102 // ----------------------------------------------------------------------------
103 // "insert_text" for GtkEntry
104 // ----------------------------------------------------------------------------
107 gtk_insert_text_callback(GtkEditable
*editable
,
108 const gchar
*new_text
,
109 gint new_text_length
,
114 wxapp_install_idle_handler();
116 // we should only be called if we have a max len limit at all
117 GtkEntry
*entry
= GTK_ENTRY (editable
);
119 wxCHECK_RET( entry
->text_max_length
, _T("shouldn't be called") );
121 // check that we don't overflow the max length limit
123 // FIXME: this doesn't work when we paste a string which is going to be
125 if ( entry
->text_length
== entry
->text_max_length
)
127 // we don't need to run the base class version at all
128 gtk_signal_emit_stop_by_name(GTK_OBJECT(editable
), "insert_text");
130 // remember that the next changed signal is to be ignored to avoid
131 // generating a dummy wxEVT_COMMAND_TEXT_UPDATED event
132 win
->IgnoreNextTextUpdate();
134 // and generate the correct one ourselves
135 wxCommandEvent
event(wxEVT_COMMAND_TEXT_MAXLEN
, win
->GetId());
136 event
.SetEventObject(win
);
137 event
.SetString(win
->GetValue());
138 win
->GetEventHandler()->ProcessEvent( event
);
142 //-----------------------------------------------------------------------------
144 //-----------------------------------------------------------------------------
147 gtk_text_changed_callback( GtkWidget
*widget
, wxTextCtrl
*win
)
149 if ( win
->IgnoreTextUpdate() )
152 if (!win
->m_hasVMT
) return;
155 wxapp_install_idle_handler();
158 win
->UpdateFontIfNeeded();
160 wxCommandEvent
event( wxEVT_COMMAND_TEXT_UPDATED
, win
->GetId() );
161 event
.SetEventObject( win
);
162 event
.SetString( win
->GetValue() );
163 win
->GetEventHandler()->ProcessEvent( event
);
166 //-----------------------------------------------------------------------------
167 // "changed" from vertical scrollbar
168 //-----------------------------------------------------------------------------
172 gtk_scrollbar_changed_callback( GtkWidget
*WXUNUSED(widget
), wxTextCtrl
*win
)
174 if (!win
->m_hasVMT
) return;
177 wxapp_install_idle_handler();
179 win
->CalculateScrollbar();
183 // ----------------------------------------------------------------------------
184 // redraw callback for multiline text
185 // ----------------------------------------------------------------------------
189 // redrawing a GtkText from inside a wxYield() call results in crashes (the
190 // text sample shows it in its "Add lines" command which shows wxProgressDialog
191 // which implicitly calls wxYield()) so we override GtkText::draw() and simply
192 // don't do anything if we're inside wxYield()
194 extern bool wxIsInsideYield
;
197 typedef void (*GtkDrawCallback
)(GtkWidget
*widget
, GdkRectangle
*rect
);
200 static GtkDrawCallback gs_gtk_text_draw
= NULL
;
203 void wxgtk_text_draw( GtkWidget
*widget
, GdkRectangle
*rect
)
205 if ( !wxIsInsideYield
)
207 wxCHECK_RET( gs_gtk_text_draw
!= wxgtk_text_draw
,
208 _T("infinite recursion in wxgtk_text_draw aborted") );
210 gs_gtk_text_draw(widget
, rect
);
214 #endif // __WXGTK20__
216 //-----------------------------------------------------------------------------
218 //-----------------------------------------------------------------------------
220 IMPLEMENT_DYNAMIC_CLASS(wxTextCtrl
,wxControl
)
222 BEGIN_EVENT_TABLE(wxTextCtrl
, wxControl
)
223 EVT_CHAR(wxTextCtrl::OnChar
)
225 EVT_MENU(wxID_CUT
, wxTextCtrl::OnCut
)
226 EVT_MENU(wxID_COPY
, wxTextCtrl::OnCopy
)
227 EVT_MENU(wxID_PASTE
, wxTextCtrl::OnPaste
)
228 EVT_MENU(wxID_UNDO
, wxTextCtrl::OnUndo
)
229 EVT_MENU(wxID_REDO
, wxTextCtrl::OnRedo
)
231 EVT_UPDATE_UI(wxID_CUT
, wxTextCtrl::OnUpdateCut
)
232 EVT_UPDATE_UI(wxID_COPY
, wxTextCtrl::OnUpdateCopy
)
233 EVT_UPDATE_UI(wxID_PASTE
, wxTextCtrl::OnUpdatePaste
)
234 EVT_UPDATE_UI(wxID_UNDO
, wxTextCtrl::OnUpdateUndo
)
235 EVT_UPDATE_UI(wxID_REDO
, wxTextCtrl::OnUpdateRedo
)
238 void wxTextCtrl::Init()
242 m_updateFont
= FALSE
;
244 m_vScrollbar
= (GtkWidget
*)NULL
;
247 wxTextCtrl::wxTextCtrl( wxWindow
*parent
,
249 const wxString
&value
,
253 const wxValidator
& validator
,
254 const wxString
&name
)
258 Create( parent
, id
, value
, pos
, size
, style
, validator
, name
);
261 bool wxTextCtrl::Create( wxWindow
*parent
,
263 const wxString
&value
,
267 const wxValidator
& validator
,
268 const wxString
&name
)
271 m_acceptsFocus
= TRUE
;
273 if (!PreCreation( parent
, pos
, size
) ||
274 !CreateBase( parent
, id
, pos
, size
, style
, validator
, name
))
276 wxFAIL_MSG( wxT("wxTextCtrl creation failed") );
281 m_vScrollbarVisible
= FALSE
;
283 bool multi_line
= (style
& wxTE_MULTILINE
) != 0;
286 GtkTextBuffer
*buffer
= NULL
;
293 m_text
= gtk_text_view_new();
295 buffer
= gtk_text_view_get_buffer( GTK_TEXT_VIEW(m_text
) );
297 // create scrolled window
298 m_widget
= gtk_scrolled_window_new( NULL
, NULL
);
299 gtk_scrolled_window_set_policy( GTK_SCROLLED_WINDOW( m_widget
),
300 GTK_POLICY_AUTOMATIC
, GTK_POLICY_AUTOMATIC
);
302 // Insert view into scrolled window
303 gtk_container_add( GTK_CONTAINER(m_widget
), m_text
);
305 // Global settings which can be overridden by tags, I guess.
306 if (HasFlag( wxHSCROLL
) || HasFlag( wxTE_DONTWRAP
))
307 gtk_text_view_set_wrap_mode( GTK_TEXT_VIEW( m_text
), GTK_WRAP_NONE
);
309 gtk_text_view_set_wrap_mode( GTK_TEXT_VIEW( m_text
), GTK_WRAP_WORD
);
311 if (!HasFlag(wxNO_BORDER
))
312 gtk_scrolled_window_set_shadow_type( GTK_SCROLLED_WINDOW(m_widget
), GTK_SHADOW_IN
);
314 GTK_WIDGET_UNSET_FLAGS( m_widget
, GTK_CAN_FOCUS
);
316 // create our control ...
317 m_text
= gtk_text_new( (GtkAdjustment
*) NULL
, (GtkAdjustment
*) NULL
);
319 // ... and put into the upper left hand corner of the table
320 bool bHasHScrollbar
= FALSE
;
321 m_widget
= gtk_table_new(bHasHScrollbar
? 2 : 1, 2, FALSE
);
322 GTK_WIDGET_UNSET_FLAGS( m_widget
, GTK_CAN_FOCUS
);
323 gtk_table_attach( GTK_TABLE(m_widget
), m_text
, 0, 1, 0, 1,
324 (GtkAttachOptions
)(GTK_FILL
| GTK_EXPAND
| GTK_SHRINK
),
325 (GtkAttachOptions
)(GTK_FILL
| GTK_EXPAND
| GTK_SHRINK
),
329 gtk_text_set_word_wrap( GTK_TEXT(m_text
), TRUE
);
331 // finally, put the vertical scrollbar in the upper right corner
332 m_vScrollbar
= gtk_vscrollbar_new( GTK_TEXT(m_text
)->vadj
);
333 GTK_WIDGET_UNSET_FLAGS( m_vScrollbar
, GTK_CAN_FOCUS
);
334 gtk_table_attach(GTK_TABLE(m_widget
), m_vScrollbar
, 1, 2, 0, 1,
336 (GtkAttachOptions
)(GTK_EXPAND
| GTK_FILL
| GTK_SHRINK
),
342 // a single-line text control: no need for scrollbars
344 m_text
= gtk_entry_new();
347 m_parent
->DoAddChild( this );
349 m_focusWidget
= m_text
;
354 gtk_widget_show(m_text
);
359 gtk_signal_connect(GTK_OBJECT(GTK_TEXT(m_text
)->vadj
), "changed",
360 (GtkSignalFunc
) gtk_scrollbar_changed_callback
, (gpointer
) this );
362 // only initialize gs_gtk_text_draw once, starting from the next the
363 // klass::draw will already be wxgtk_text_draw
364 if ( !gs_gtk_text_draw
)
367 draw
= GTK_WIDGET_CLASS(GTK_OBJECT(m_text
)->klass
)->draw
;
369 gs_gtk_text_draw
= draw
;
371 draw
= wxgtk_text_draw
;
376 if (!value
.IsEmpty())
382 #if !GTK_CHECK_VERSION(1, 2, 0)
383 // if we don't realize it, GTK 1.0.6 dies with a SIGSEGV in
384 // gtk_editable_insert_text()
385 gtk_widget_realize(m_text
);
390 wxWX2MBbuf val
= value
.mbc_str();
391 gtk_editable_insert_text( GTK_EDITABLE(m_text
), val
, strlen(val
), &tmp
);
393 gtk_editable_insert_text( GTK_EDITABLE(m_text
), value
, value
.Length(), &tmp
);
398 // Bring editable's cursor uptodate. Bug in GTK.
399 SET_EDITABLE_POS(m_text
, gtk_text_get_point( GTK_TEXT(m_text
) ));
405 if (style
& wxTE_PASSWORD
)
408 gtk_entry_set_visibility( GTK_ENTRY(m_text
), FALSE
);
411 if (style
& wxTE_READONLY
)
414 gtk_entry_set_editable( GTK_ENTRY(m_text
), FALSE
);
417 gtk_text_view_set_editable( GTK_TEXT_VIEW( m_text
), FALSE
);
423 gtk_text_set_editable( GTK_TEXT(m_text
), 1 );
430 if (style
& wxTE_RIGHT
)
431 gtk_text_view_set_justification( GTK_TEXT_VIEW(m_text
), GTK_JUSTIFY_RIGHT
);
432 else if (style
& wxTE_CENTRE
)
433 gtk_text_view_set_justification( GTK_TEXT_VIEW(m_text
), GTK_JUSTIFY_CENTER
);
434 // Left justify (alignment) is the default and we don't need to apply GTK_JUSTIFY_LEFT
436 // gtk_entry_set_alignment was introduced in gtk+-2.3.5
437 #if GTK_CHECK_VERSION(2, 3, 5)
440 if (style
& wxTE_RIGHT
)
441 gtk_entry_set_alignment( GTK_ENTRY(m_text
), 1.0 );
442 else if (style
& wxTE_CENTRE
)
443 gtk_entry_set_alignment( GTK_ENTRY(m_text
), 0.5 );
446 #endif // __WXGTK20__
448 // We want to be notified about text changes.
452 g_signal_connect( G_OBJECT(buffer
), "changed",
453 GTK_SIGNAL_FUNC(gtk_text_changed_callback
), (gpointer
)this);
459 gtk_signal_connect( GTK_OBJECT(m_text
), "changed",
460 GTK_SIGNAL_FUNC(gtk_text_changed_callback
), (gpointer
)this);
463 m_cursor
= wxCursor( wxCURSOR_IBEAM
);
465 wxTextAttr
attrDef(GetForegroundColour(), GetBackgroundColour(), GetFont());
466 SetDefaultStyle( attrDef
);
472 void wxTextCtrl::CalculateScrollbar()
475 if ((m_windowStyle
& wxTE_MULTILINE
) == 0) return;
477 GtkAdjustment
*adj
= GTK_TEXT(m_text
)->vadj
;
479 if (adj
->upper
- adj
->page_size
< 0.8)
481 if (m_vScrollbarVisible
)
483 gtk_widget_hide( m_vScrollbar
);
484 m_vScrollbarVisible
= FALSE
;
489 if (!m_vScrollbarVisible
)
491 gtk_widget_show( m_vScrollbar
);
492 m_vScrollbarVisible
= TRUE
;
498 wxString
wxTextCtrl::GetValue() const
500 wxCHECK_MSG( m_text
!= NULL
, wxT(""), wxT("invalid text ctrl") );
503 if (m_windowStyle
& wxTE_MULTILINE
)
506 GtkTextBuffer
*text_buffer
= gtk_text_view_get_buffer( GTK_TEXT_VIEW(m_text
) );
509 gtk_text_buffer_get_start_iter( text_buffer
, &start
);
511 gtk_text_buffer_get_end_iter( text_buffer
, &end
);
512 gchar
*text
= gtk_text_buffer_get_text( text_buffer
, &start
, &end
, TRUE
);
515 wxWCharBuffer
buffer( wxConvUTF8
.cMB2WX( text
) );
517 wxCharBuffer
buffer( wxConvLocal
.cWC2WX( wxConvUTF8
.cMB2WC( text
) ) );
523 gint len
= gtk_text_get_length( GTK_TEXT(m_text
) );
524 char *text
= gtk_editable_get_chars( GTK_EDITABLE(m_text
), 0, len
);
531 tmp
= wxGTK_CONV_BACK( gtk_entry_get_text( GTK_ENTRY(m_text
) ) );
537 void wxTextCtrl::SetValue( const wxString
&value
)
539 wxCHECK_RET( m_text
!= NULL
, wxT("invalid text ctrl") );
541 if (m_windowStyle
& wxTE_MULTILINE
)
546 wxCharBuffer
buffer( wxConvUTF8
.cWX2MB( value
) );
548 wxCharBuffer
buffer( wxConvUTF8
.cWC2MB( wxConvLocal
.cWX2WC( value
) ) );
550 GtkTextBuffer
*text_buffer
= gtk_text_view_get_buffer( GTK_TEXT_VIEW(m_text
) );
551 gtk_text_buffer_set_text( text_buffer
, buffer
, strlen(buffer
) );
554 gint len
= gtk_text_get_length( GTK_TEXT(m_text
) );
555 gtk_editable_delete_text( GTK_EDITABLE(m_text
), 0, len
);
557 gtk_editable_insert_text( GTK_EDITABLE(m_text
), value
.mbc_str(), value
.Length(), &len
);
562 gtk_entry_set_text( GTK_ENTRY(m_text
), wxGTK_CONV( value
) );
565 // GRG, Jun/2000: Changed this after a lot of discussion in
566 // the lists. wxWidgets 2.2 will have a set of flags to
567 // customize this behaviour.
568 SetInsertionPoint(0);
573 void wxTextCtrl::WriteText( const wxString
&text
)
575 wxCHECK_RET( m_text
!= NULL
, wxT("invalid text ctrl") );
580 if ( m_windowStyle
& wxTE_MULTILINE
)
585 wxCharBuffer
buffer( wxConvUTF8
.cWX2MB( text
) );
587 wxCharBuffer
buffer( wxConvUTF8
.cWC2MB( wxConvLocal
.cWX2WC( text
) ) );
589 GtkTextBuffer
*text_buffer
= gtk_text_view_get_buffer( GTK_TEXT_VIEW(m_text
) );
591 // TODO: Call whatever is needed to delete the selection.
592 wxGtkTextInsert( m_text
, text_buffer
, m_defaultStyle
, buffer
);
594 GtkAdjustment
*adj
= gtk_scrolled_window_get_vadjustment( GTK_SCROLLED_WINDOW(m_widget
) );
595 // Scroll to cursor, but only if scrollbar thumb is at the very bottom
596 if ( adj
->value
== adj
->upper
- adj
->page_size
)
598 gtk_text_view_scroll_to_mark( GTK_TEXT_VIEW(m_text
),
599 gtk_text_buffer_get_insert( text_buffer
), 0.0, FALSE
, 0.0, 1.0 );
602 // After cursor movements, gtk_text_get_point() is wrong by one.
603 gtk_text_set_point( GTK_TEXT(m_text
), GET_EDITABLE_POS(m_text
) );
605 // always use m_defaultStyle, even if it is empty as otherwise
606 // resetting the style and appending some more text wouldn't work: if
607 // we don't specify the style explicitly, the old style would be used
608 gtk_editable_delete_selection( GTK_EDITABLE(m_text
) );
609 wxGtkTextInsert(m_text
, m_defaultStyle
, text
.c_str(), text
.Len());
611 // we called wxGtkTextInsert with correct font, no need to do anything
612 // in UpdateFontIfNeeded() any longer
615 m_updateFont
= FALSE
;
618 // Bring editable's cursor back uptodate.
619 SET_EDITABLE_POS(m_text
, gtk_text_get_point( GTK_TEXT(m_text
) ));
620 #endif // GTK 1.x/2.0
624 // First remove the selection if there is one
625 gtk_editable_delete_selection( GTK_EDITABLE(m_text
) );
627 // This moves the cursor pos to behind the inserted text.
628 gint len
= GET_EDITABLE_POS(m_text
);
633 wxCharBuffer
buffer( wxConvUTF8
.cWX2MB( text
) );
635 wxCharBuffer
buffer( wxConvUTF8
.cWC2MB( wxConvLocal
.cWX2WC( text
) ) );
637 gtk_editable_insert_text( GTK_EDITABLE(m_text
), buffer
, strlen(buffer
), &len
);
640 gtk_editable_insert_text( GTK_EDITABLE(m_text
), text
.c_str(), text
.Len(), &len
);
643 // Bring entry's cursor uptodate.
644 gtk_entry_set_position( GTK_ENTRY(m_text
), len
);
650 void wxTextCtrl::AppendText( const wxString
&text
)
652 SetInsertionPointEnd();
656 wxString
wxTextCtrl::GetLineText( long lineNo
) const
658 if (m_windowStyle
& wxTE_MULTILINE
)
661 gint len
= gtk_text_get_length( GTK_TEXT(m_text
) );
662 char *text
= gtk_editable_get_chars( GTK_EDITABLE(m_text
), 0, len
);
666 wxString
buf(wxT(""));
669 for (i
= 0; currentLine
!= lineNo
&& text
[i
]; i
++ )
674 for (j
= 0; text
[i
] && text
[i
] != '\n'; i
++, j
++ )
682 return wxEmptyString
;
685 GtkTextBuffer
*text_buffer
;
686 text_buffer
= gtk_text_view_get_buffer(GTK_TEXT_VIEW(m_text
));
688 gtk_text_buffer_get_iter_at_line(text_buffer
,&line
,lineNo
);
690 gtk_text_buffer_get_end_iter(text_buffer
,&end
);
691 gchar
*text
= gtk_text_buffer_get_text(text_buffer
,&line
,&end
,TRUE
);
692 wxString
result(wxGTK_CONV_BACK(text
));
694 return result
.BeforeFirst(wxT('\n'));
699 if (lineNo
== 0) return GetValue();
700 return wxEmptyString
;
704 void wxTextCtrl::OnDropFiles( wxDropFilesEvent
&WXUNUSED(event
) )
706 /* If you implement this, don't forget to update the documentation!
707 * (file docs/latex/wx/text.tex) */
708 wxFAIL_MSG( wxT("wxTextCtrl::OnDropFiles not implemented") );
711 bool wxTextCtrl::PositionToXY(long pos
, long *x
, long *y
) const
713 if ( m_windowStyle
& wxTE_MULTILINE
)
715 wxString text
= GetValue();
717 // cast to prevent warning. But pos really should've been unsigned.
718 if( (unsigned long)pos
> text
.Len() )
724 const wxChar
* stop
= text
.c_str() + pos
;
725 for ( const wxChar
*p
= text
.c_str(); p
< stop
; p
++ )
736 else // single line control
738 if ( pos
<= GTK_ENTRY(m_text
)->text_length
)
745 // index out of bounds
753 long wxTextCtrl::XYToPosition(long x
, long y
) const
755 if (!(m_windowStyle
& wxTE_MULTILINE
)) return 0;
758 for( int i
=0; i
<y
; i
++ ) pos
+= GetLineLength(i
) + 1; // one for '\n'
764 int wxTextCtrl::GetLineLength(long lineNo
) const
766 wxString str
= GetLineText (lineNo
);
767 return (int) str
.Length();
770 int wxTextCtrl::GetNumberOfLines() const
772 if (m_windowStyle
& wxTE_MULTILINE
)
775 GtkTextBuffer
*buffer
= gtk_text_view_get_buffer( GTK_TEXT_VIEW(m_text
) );
777 return gtk_text_buffer_get_line_count( buffer
);
779 gint len
= gtk_text_get_length( GTK_TEXT(m_text
) );
780 char *text
= gtk_editable_get_chars( GTK_EDITABLE(m_text
), 0, len
);
785 for (int i
= 0; i
< len
; i
++ )
792 // currentLine is 0 based, add 1 to get number of lines
793 return currentLine
+ 1;
807 void wxTextCtrl::SetInsertionPoint( long pos
)
809 wxCHECK_RET( m_text
!= NULL
, wxT("invalid text ctrl") );
811 if (m_windowStyle
& wxTE_MULTILINE
)
814 GtkTextBuffer
*text_buffer
= gtk_text_view_get_buffer( GTK_TEXT_VIEW(m_text
) );
816 gtk_text_buffer_get_iter_at_offset( text_buffer
, &iter
, pos
);
817 gtk_text_buffer_place_cursor( text_buffer
, &iter
);
819 gtk_signal_disconnect_by_func( GTK_OBJECT(m_text
),
820 GTK_SIGNAL_FUNC(gtk_text_changed_callback
), (gpointer
)this);
822 /* we fake a set_point by inserting and deleting. as the user
823 isn't supposed to get to know about this non-sense, we
824 disconnect so that no events are sent to the user program. */
826 gint tmp
= (gint
)pos
;
827 gtk_editable_insert_text( GTK_EDITABLE(m_text
), " ", 1, &tmp
);
828 gtk_editable_delete_text( GTK_EDITABLE(m_text
), tmp
-1, tmp
);
830 gtk_signal_connect( GTK_OBJECT(m_text
), "changed",
831 GTK_SIGNAL_FUNC(gtk_text_changed_callback
), (gpointer
)this);
833 // bring editable's cursor uptodate. Bug in GTK.
834 SET_EDITABLE_POS(m_text
, gtk_text_get_point( GTK_TEXT(m_text
) ));
839 gtk_entry_set_position( GTK_ENTRY(m_text
), (int)pos
);
841 // Bring editable's cursor uptodate. Bug in GTK.
842 SET_EDITABLE_POS(m_text
, (guint32
)pos
);
846 void wxTextCtrl::SetInsertionPointEnd()
848 wxCHECK_RET( m_text
!= NULL
, wxT("invalid text ctrl") );
850 if (m_windowStyle
& wxTE_MULTILINE
)
853 GtkTextBuffer
*text_buffer
= gtk_text_view_get_buffer( GTK_TEXT_VIEW(m_text
) );
855 gtk_text_buffer_get_end_iter( text_buffer
, &end
);
856 gtk_text_buffer_place_cursor( text_buffer
, &end
);
858 SetInsertionPoint(gtk_text_get_length(GTK_TEXT(m_text
)));
863 gtk_entry_set_position( GTK_ENTRY(m_text
), -1 );
867 void wxTextCtrl::SetEditable( bool editable
)
869 wxCHECK_RET( m_text
!= NULL
, wxT("invalid text ctrl") );
871 if (m_windowStyle
& wxTE_MULTILINE
)
874 gtk_text_view_set_editable( GTK_TEXT_VIEW(m_text
), editable
);
876 gtk_text_set_editable( GTK_TEXT(m_text
), editable
);
881 gtk_entry_set_editable( GTK_ENTRY(m_text
), editable
);
885 bool wxTextCtrl::Enable( bool enable
)
887 if (!wxWindowBase::Enable(enable
))
893 if (m_windowStyle
& wxTE_MULTILINE
)
896 SetEditable( enable
);
898 gtk_text_set_editable( GTK_TEXT(m_text
), enable
);
899 OnParentEnable(enable
);
904 gtk_widget_set_sensitive( m_text
, enable
);
910 // wxGTK-specific: called recursively by Enable,
911 // to give widgets an oppprtunity to correct their colours after they
912 // have been changed by Enable
913 void wxTextCtrl::OnParentEnable( bool enable
)
915 // If we have a custom background colour, we use this colour in both
916 // disabled and enabled mode, or we end up with a different colour under the
918 wxColour oldColour
= GetBackgroundColour();
921 // Need to set twice or it'll optimize the useful stuff out
922 if (oldColour
== * wxWHITE
)
923 SetBackgroundColour(*wxBLACK
);
925 SetBackgroundColour(*wxWHITE
);
926 SetBackgroundColour(oldColour
);
930 void wxTextCtrl::MarkDirty()
935 void wxTextCtrl::DiscardEdits()
940 // ----------------------------------------------------------------------------
941 // max text length support
942 // ----------------------------------------------------------------------------
944 void wxTextCtrl::IgnoreNextTextUpdate()
946 m_ignoreNextUpdate
= TRUE
;
949 bool wxTextCtrl::IgnoreTextUpdate()
951 if ( m_ignoreNextUpdate
)
953 m_ignoreNextUpdate
= FALSE
;
961 void wxTextCtrl::SetMaxLength(unsigned long len
)
963 if ( !HasFlag(wxTE_MULTILINE
) )
965 gtk_entry_set_max_length(GTK_ENTRY(m_text
), len
);
967 // there is a bug in GTK+ 1.2.x: "changed" signal is emitted even if
968 // we had tried to enter more text than allowed by max text length and
969 // the text wasn't really changed
971 // to detect this and generate TEXT_MAXLEN event instead of
972 // TEXT_CHANGED one in this case we also catch "insert_text" signal
974 // when max len is set to 0 we disconnect our handler as it means that
975 // we shouldn't check anything any more
978 gtk_signal_connect( GTK_OBJECT(m_text
),
980 GTK_SIGNAL_FUNC(gtk_insert_text_callback
),
985 gtk_signal_disconnect_by_func
988 GTK_SIGNAL_FUNC(gtk_insert_text_callback
),
995 void wxTextCtrl::SetSelection( long from
, long to
)
997 wxCHECK_RET( m_text
!= NULL
, wxT("invalid text ctrl") );
999 if (from
== -1 && to
== -1)
1002 to
= GetValue().Length();
1006 if ( (m_windowStyle
& wxTE_MULTILINE
) &&
1007 !GTK_TEXT(m_text
)->line_start_cache
)
1009 // tell the programmer that it didn't work
1010 wxLogDebug(_T("Can't call SetSelection() before realizing the control"));
1015 if (m_windowStyle
& wxTE_MULTILINE
)
1018 GtkTextBuffer
*buf
= gtk_text_view_get_buffer( GTK_TEXT_VIEW(m_text
) );
1020 GtkTextIter fromi
, toi
;
1021 gtk_text_buffer_get_iter_at_offset( buf
, &fromi
, from
);
1022 gtk_text_buffer_get_iter_at_offset( buf
, &toi
, to
);
1024 gtk_text_buffer_place_cursor( buf
, &toi
);
1025 gtk_text_buffer_move_mark_by_name( buf
, "selection_bound", &fromi
);
1027 gtk_editable_select_region( GTK_EDITABLE(m_text
), (gint
)from
, (gint
)to
);
1032 gtk_editable_select_region( GTK_EDITABLE(m_text
), (gint
)from
, (gint
)to
);
1036 void wxTextCtrl::ShowPosition( long pos
)
1038 if (m_windowStyle
& wxTE_MULTILINE
)
1041 GtkTextBuffer
*buf
= gtk_text_view_get_buffer( GTK_TEXT_VIEW(m_text
) );
1043 gtk_text_buffer_get_start_iter( buf
, &iter
);
1044 gtk_text_iter_set_offset( &iter
, pos
);
1045 GtkTextMark
*mark
= gtk_text_buffer_create_mark( buf
, NULL
, &iter
, TRUE
);
1046 gtk_text_view_scroll_to_mark( GTK_TEXT_VIEW(m_text
), mark
, 0.0, FALSE
, 0.0, 0.0 );
1048 GtkAdjustment
*vp
= GTK_TEXT(m_text
)->vadj
;
1049 float totalLines
= (float) GetNumberOfLines();
1052 PositionToXY(pos
, &posX
, &posY
);
1053 float posLine
= (float) posY
;
1054 float p
= (posLine
/totalLines
)*(vp
->upper
- vp
->lower
) + vp
->lower
;
1055 gtk_adjustment_set_value(GTK_TEXT(m_text
)->vadj
, p
);
1056 #endif // GTK 1.x/2.x
1060 long wxTextCtrl::GetInsertionPoint() const
1062 wxCHECK_MSG( m_text
!= NULL
, 0, wxT("invalid text ctrl") );
1065 if (m_windowStyle
& wxTE_MULTILINE
)
1067 GtkTextBuffer
*text_buffer
= gtk_text_view_get_buffer( GTK_TEXT_VIEW(m_text
) );
1069 // There is no direct accessor for the cursor, but
1070 // internally, the cursor is the "mark" called
1071 // "insert" in the text view's btree structure.
1073 GtkTextMark
*mark
= gtk_text_buffer_get_insert( text_buffer
);
1075 gtk_text_buffer_get_iter_at_mark( text_buffer
, &cursor
, mark
);
1077 return gtk_text_iter_get_offset( &cursor
);
1082 return (long) GET_EDITABLE_POS(m_text
);
1086 long wxTextCtrl::GetLastPosition() const
1088 wxCHECK_MSG( m_text
!= NULL
, 0, wxT("invalid text ctrl") );
1092 if (m_windowStyle
& wxTE_MULTILINE
)
1095 GtkTextBuffer
*text_buffer
= gtk_text_view_get_buffer( GTK_TEXT_VIEW(m_text
) );
1097 gtk_text_buffer_get_end_iter( text_buffer
, &end
);
1099 pos
= gtk_text_iter_get_offset( &end
);
1101 pos
= gtk_text_get_length( GTK_TEXT(m_text
) );
1106 pos
= GTK_ENTRY(m_text
)->text_length
;
1112 void wxTextCtrl::Remove( long from
, long to
)
1114 wxCHECK_RET( m_text
!= NULL
, wxT("invalid text ctrl") );
1117 if (m_windowStyle
& wxTE_MULTILINE
)
1120 text_buffer
= gtk_text_view_get_buffer( GTK_TEXT_VIEW(m_text
) );
1122 GtkTextIter fromi
, toi
;
1123 gtk_text_buffer_get_iter_at_offset( text_buffer
, &fromi
, from
);
1124 gtk_text_buffer_get_iter_at_offset( text_buffer
, &toi
, to
);
1126 gtk_text_buffer_delete( text_buffer
, &fromi
, &toi
);
1130 gtk_editable_delete_text( GTK_EDITABLE(m_text
), (gint
)from
, (gint
)to
);
1133 void wxTextCtrl::Replace( long from
, long to
, const wxString
&value
)
1135 wxCHECK_RET( m_text
!= NULL
, wxT("invalid text ctrl") );
1139 if (!value
.IsEmpty())
1142 SetInsertionPoint( from
);
1145 gint pos
= (gint
)from
;
1147 wxWX2MBbuf buf
= value
.mbc_str();
1148 gtk_editable_insert_text( GTK_EDITABLE(m_text
), buf
, strlen(buf
), &pos
);
1150 gtk_editable_insert_text( GTK_EDITABLE(m_text
), value
, value
.Length(), &pos
);
1151 #endif // wxUSE_UNICODE
1152 #endif // GTK 1.x/2.x
1156 void wxTextCtrl::Cut()
1158 wxCHECK_RET( m_text
!= NULL
, wxT("invalid text ctrl") );
1161 gtk_editable_cut_clipboard( GTK_EDITABLE(m_text
) DUMMY_CLIPBOARD_ARG
);
1165 void wxTextCtrl::Copy()
1167 wxCHECK_RET( m_text
!= NULL
, wxT("invalid text ctrl") );
1170 gtk_editable_copy_clipboard( GTK_EDITABLE(m_text
) DUMMY_CLIPBOARD_ARG
);
1174 void wxTextCtrl::Paste()
1176 wxCHECK_RET( m_text
!= NULL
, wxT("invalid text ctrl") );
1179 gtk_editable_paste_clipboard( GTK_EDITABLE(m_text
) DUMMY_CLIPBOARD_ARG
);
1184 void wxTextCtrl::Undo()
1187 wxFAIL_MSG( wxT("wxTextCtrl::Undo not implemented") );
1190 void wxTextCtrl::Redo()
1193 wxFAIL_MSG( wxT("wxTextCtrl::Redo not implemented") );
1196 bool wxTextCtrl::CanUndo() const
1199 //wxFAIL_MSG( wxT("wxTextCtrl::CanUndo not implemented") );
1203 bool wxTextCtrl::CanRedo() const
1206 //wxFAIL_MSG( wxT("wxTextCtrl::CanRedo not implemented") );
1210 // If the return values from and to are the same, there is no
1212 void wxTextCtrl::GetSelection(long* fromOut
, long* toOut
) const
1214 wxCHECK_RET( m_text
!= NULL
, wxT("invalid text ctrl") );
1218 bool haveSelection
= FALSE
;
1221 if (m_windowStyle
& wxTE_MULTILINE
)
1223 GtkTextBuffer
*buffer
= gtk_text_view_get_buffer (GTK_TEXT_VIEW (m_text
));
1224 GtkTextIter ifrom
, ito
;
1225 if ( gtk_text_buffer_get_selection_bounds(buffer
, &ifrom
, &ito
) )
1227 haveSelection
= TRUE
;
1228 from
= gtk_text_iter_get_offset(&ifrom
);
1229 to
= gtk_text_iter_get_offset(&ito
);
1232 else // not multi-line
1234 if ( gtk_editable_get_selection_bounds( GTK_EDITABLE(m_text
),
1237 haveSelection
= TRUE
;
1241 if ( (GTK_EDITABLE(m_text
)->has_selection
) )
1243 haveSelection
= TRUE
;
1244 from
= (long) GTK_EDITABLE(m_text
)->selection_start_pos
;
1245 to
= (long) GTK_EDITABLE(m_text
)->selection_end_pos
;
1249 if (! haveSelection
)
1250 from
= to
= GetInsertionPoint();
1254 // exchange them to be compatible with wxMSW
1267 bool wxTextCtrl::IsEditable() const
1269 wxCHECK_MSG( m_text
!= NULL
, FALSE
, wxT("invalid text ctrl") );
1272 if (m_windowStyle
& wxTE_MULTILINE
)
1274 return gtk_text_view_get_editable(GTK_TEXT_VIEW(m_text
));
1278 return gtk_editable_get_editable(GTK_EDITABLE(m_text
));
1281 return GTK_EDITABLE(m_text
)->editable
;
1285 bool wxTextCtrl::IsModified() const
1290 void wxTextCtrl::Clear()
1292 SetValue( wxT("") );
1295 void wxTextCtrl::OnChar( wxKeyEvent
&key_event
)
1297 wxCHECK_RET( m_text
!= NULL
, wxT("invalid text ctrl") );
1299 if ((key_event
.GetKeyCode() == WXK_RETURN
) && (m_windowStyle
& wxPROCESS_ENTER
))
1301 wxCommandEvent
event(wxEVT_COMMAND_TEXT_ENTER
, m_windowId
);
1302 event
.SetEventObject(this);
1303 event
.SetString(GetValue());
1304 if (GetEventHandler()->ProcessEvent(event
)) return;
1307 if ((key_event
.GetKeyCode() == WXK_RETURN
) && !(m_windowStyle
& wxTE_MULTILINE
))
1309 // This will invoke the dialog default action, such
1310 // as the clicking the default button.
1312 wxWindow
*top_frame
= m_parent
;
1313 while (top_frame
->GetParent() && !(top_frame
->IsTopLevel()))
1314 top_frame
= top_frame
->GetParent();
1316 if (top_frame
&& GTK_IS_WINDOW(top_frame
->m_widget
))
1318 GtkWindow
*window
= GTK_WINDOW(top_frame
->m_widget
);
1320 if (window
->default_widget
)
1322 gtk_widget_activate (window
->default_widget
);
1331 GtkWidget
* wxTextCtrl::GetConnectWidget()
1333 return GTK_WIDGET(m_text
);
1336 bool wxTextCtrl::IsOwnGtkWindow( GdkWindow
*window
)
1338 if (m_windowStyle
& wxTE_MULTILINE
)
1341 return window
== gtk_text_view_get_window( GTK_TEXT_VIEW( m_text
), GTK_TEXT_WINDOW_TEXT
); // pure guesswork
1343 return (window
== GTK_TEXT(m_text
)->text_area
);
1348 return (window
== GTK_ENTRY(m_text
)->text_area
);
1352 // the font will change for subsequent text insertiongs
1353 bool wxTextCtrl::SetFont( const wxFont
&font
)
1355 wxCHECK_MSG( m_text
!= NULL
, FALSE
, wxT("invalid text ctrl") );
1357 if ( !wxTextCtrlBase::SetFont(font
) )
1359 // font didn't change, nothing to do
1363 if ( m_windowStyle
& wxTE_MULTILINE
)
1365 m_updateFont
= TRUE
;
1367 m_defaultStyle
.SetFont(font
);
1369 ChangeFontGlobally();
1375 void wxTextCtrl::ChangeFontGlobally()
1377 // this method is very inefficient and hence should be called as rarely as
1379 wxASSERT_MSG( (m_windowStyle
& wxTE_MULTILINE
) && m_updateFont
,
1380 _T("shouldn't be called for single line controls") );
1382 wxString value
= GetValue();
1383 if ( !value
.IsEmpty() )
1385 m_updateFont
= FALSE
;
1392 void wxTextCtrl::UpdateFontIfNeeded()
1395 ChangeFontGlobally();
1398 bool wxTextCtrl::SetForegroundColour(const wxColour
& colour
)
1400 if ( !wxControl::SetForegroundColour(colour
) )
1403 // update default fg colour too
1404 m_defaultStyle
.SetTextColour(colour
);
1409 bool wxTextCtrl::SetBackgroundColour( const wxColour
&colour
)
1411 wxCHECK_MSG( m_text
!= NULL
, FALSE
, wxT("invalid text ctrl") );
1413 if ( !wxControl::SetBackgroundColour( colour
) )
1416 if (!m_widget
->window
)
1419 wxColour sysbg
= wxSystemSettings::GetColour( wxSYS_COLOUR_BTNFACE
);
1420 if (sysbg
.Red() == colour
.Red() &&
1421 sysbg
.Green() == colour
.Green() &&
1422 sysbg
.Blue() == colour
.Blue())
1424 return FALSE
; // FIXME or TRUE?
1427 if (!m_backgroundColour
.Ok())
1430 if (m_windowStyle
& wxTE_MULTILINE
)
1433 GdkWindow
*window
= GTK_TEXT(m_text
)->text_area
;
1436 m_backgroundColour
.CalcPixel( gdk_window_get_colormap( window
) );
1437 gdk_window_set_background( window
, m_backgroundColour
.GetColor() );
1438 gdk_window_clear( window
);
1442 // change active background color too
1443 m_defaultStyle
.SetBackgroundColour( colour
);
1448 bool wxTextCtrl::SetStyle( long start
, long end
, const wxTextAttr
& style
)
1450 if ( m_windowStyle
& wxTE_MULTILINE
)
1452 if ( style
.IsDefault() )
1458 GtkTextBuffer
*text_buffer
= gtk_text_view_get_buffer( GTK_TEXT_VIEW(m_text
) );
1459 gint l
= gtk_text_buffer_get_char_count( text_buffer
);
1461 wxCHECK_MSG( start
>= 0 && end
<= l
, FALSE
,
1462 _T("invalid range in wxTextCtrl::SetStyle") );
1464 GtkTextIter starti
, endi
;
1465 gtk_text_buffer_get_iter_at_offset( text_buffer
, &starti
, start
);
1466 gtk_text_buffer_get_iter_at_offset( text_buffer
, &endi
, end
);
1468 // use the attributes from style which are set in it and fall back
1469 // first to the default style and then to the text control default
1470 // colours for the others
1471 wxTextAttr attr
= wxTextAttr::Combine(style
, m_defaultStyle
, this);
1473 PangoFontDescription
*font_description
= attr
.HasFont()
1474 ? attr
.GetFont().GetNativeFontInfo()->description
1477 GdkColor
*colFg
= attr
.HasTextColour() ? attr
.GetTextColour().GetColor()
1480 GdkColor
*colBg
= attr
.HasBackgroundColour()
1481 ? attr
.GetBackgroundColour().GetColor()
1485 tag
= gtk_text_buffer_create_tag( text_buffer
, NULL
, "font-desc", font_description
,
1486 "foreground-gdk", colFg
,
1487 "background-gdk", colBg
, NULL
);
1488 gtk_text_buffer_apply_tag( text_buffer
, tag
, &starti
, &endi
);
1492 // VERY dirty way to do that - removes the required text and re-adds it
1493 // with styling (FIXME)
1495 gint l
= gtk_text_get_length( GTK_TEXT(m_text
) );
1497 wxCHECK_MSG( start
>= 0 && end
<= l
, FALSE
,
1498 _T("invalid range in wxTextCtrl::SetStyle") );
1500 gint old_pos
= gtk_editable_get_position( GTK_EDITABLE(m_text
) );
1501 char *text
= gtk_editable_get_chars( GTK_EDITABLE(m_text
), start
, end
);
1502 wxString
tmp(text
,*wxConvCurrent
);
1505 gtk_editable_delete_text( GTK_EDITABLE(m_text
), start
, end
);
1506 gtk_editable_set_position( GTK_EDITABLE(m_text
), start
);
1509 wxWX2MBbuf buf
= tmp
.mbc_str();
1510 const char *txt
= buf
;
1511 size_t txtlen
= strlen(buf
);
1513 const char *txt
= tmp
;
1514 size_t txtlen
= tmp
.length();
1517 // use the attributes from style which are set in it and fall back
1518 // first to the default style and then to the text control default
1519 // colours for the others
1520 wxGtkTextInsert(m_text
,
1521 wxTextAttr::Combine(style
, m_defaultStyle
, this),
1525 /* does not seem to help under GTK+ 1.2 !!!
1526 gtk_editable_set_position( GTK_EDITABLE(m_text), old_pos ); */
1527 SetInsertionPoint( old_pos
);
1533 // cannot do this for GTK+'s Entry widget
1538 void wxTextCtrl::ApplyWidgetStyle()
1541 gtk_widget_set_style( m_text
, m_widgetStyle
);
1544 void wxTextCtrl::OnCut(wxCommandEvent
& WXUNUSED(event
))
1549 void wxTextCtrl::OnCopy(wxCommandEvent
& WXUNUSED(event
))
1554 void wxTextCtrl::OnPaste(wxCommandEvent
& WXUNUSED(event
))
1559 void wxTextCtrl::OnUndo(wxCommandEvent
& WXUNUSED(event
))
1564 void wxTextCtrl::OnRedo(wxCommandEvent
& WXUNUSED(event
))
1569 void wxTextCtrl::OnUpdateCut(wxUpdateUIEvent
& event
)
1571 event
.Enable( CanCut() );
1574 void wxTextCtrl::OnUpdateCopy(wxUpdateUIEvent
& event
)
1576 event
.Enable( CanCopy() );
1579 void wxTextCtrl::OnUpdatePaste(wxUpdateUIEvent
& event
)
1581 event
.Enable( CanPaste() );
1584 void wxTextCtrl::OnUpdateUndo(wxUpdateUIEvent
& event
)
1586 event
.Enable( CanUndo() );
1589 void wxTextCtrl::OnUpdateRedo(wxUpdateUIEvent
& event
)
1591 event
.Enable( CanRedo() );
1594 void wxTextCtrl::OnInternalIdle()
1596 wxCursor cursor
= m_cursor
;
1597 if (g_globalCursor
.Ok()) cursor
= g_globalCursor
;
1602 GdkWindow
*window
= (GdkWindow
*) NULL
;
1603 if (HasFlag(wxTE_MULTILINE
))
1604 window
= GTK_TEXT(m_text
)->text_area
;
1606 window
= GTK_ENTRY(m_text
)->text_area
;
1609 gdk_window_set_cursor( window
, cursor
.GetCursor() );
1611 if (!g_globalCursor
.Ok())
1612 cursor
= *wxSTANDARD_CURSOR
;
1614 window
= m_widget
->window
;
1615 if ((window
) && !(GTK_WIDGET_NO_WINDOW(m_widget
)))
1616 gdk_window_set_cursor( window
, cursor
.GetCursor() );
1620 if (g_delayedFocus
== this)
1622 if (GTK_WIDGET_REALIZED(m_widget
))
1624 gtk_widget_grab_focus( m_widget
);
1625 g_delayedFocus
= NULL
;
1629 if (wxUpdateUIEvent::CanUpdate(this))
1630 UpdateWindowUI(wxUPDATE_UI_FROMIDLE
);
1633 wxSize
wxTextCtrl::DoGetBestSize() const
1635 // FIXME should be different for multi-line controls...
1636 wxSize
ret( wxControl::DoGetBestSize() );
1637 return wxSize(80, ret
.y
);
1640 // ----------------------------------------------------------------------------
1642 // ----------------------------------------------------------------------------
1644 void wxTextCtrl::Freeze()
1647 if ( HasFlag(wxTE_MULTILINE
) )
1649 gtk_text_freeze(GTK_TEXT(m_text
));
1654 void wxTextCtrl::Thaw()
1657 if ( HasFlag(wxTE_MULTILINE
) )
1659 GTK_TEXT(m_text
)->vadj
->value
= 0.0;
1661 gtk_text_thaw(GTK_TEXT(m_text
));
1666 // ----------------------------------------------------------------------------
1668 // ----------------------------------------------------------------------------
1670 GtkAdjustment
*wxTextCtrl::GetVAdj() const
1675 return HasFlag(wxTE_MULTILINE
) ? GTK_TEXT(m_text
)->vadj
: NULL
;
1679 bool wxTextCtrl::DoScroll(GtkAdjustment
*adj
, int diff
)
1682 float value
= adj
->value
+ diff
;
1687 float upper
= adj
->upper
- adj
->page_size
;
1688 if ( value
> upper
)
1691 // did we noticeably change the scroll position?
1692 if ( fabs(adj
->value
- value
) < 0.2 )
1694 // well, this is what Robert does in wxScrollBar, so it must be good...
1700 gtk_signal_emit_by_name(GTK_OBJECT(adj
), "value_changed");
1706 bool wxTextCtrl::ScrollLines(int lines
)
1711 GtkAdjustment
*adj
= GetVAdj();
1715 // this is hardcoded to 10 in GTK+ 1.2 (great idea)
1716 static const int KEY_SCROLL_PIXELS
= 10;
1718 return DoScroll(adj
, lines
*KEY_SCROLL_PIXELS
);
1722 bool wxTextCtrl::ScrollPages(int pages
)
1727 GtkAdjustment
*adj
= GetVAdj();
1731 return DoScroll(adj
, (int)ceil(pages
*adj
->page_increment
));
1738 wxTextCtrl::GetClassDefaultAttributes(wxWindowVariant
WXUNUSED(variant
))
1740 return GetDefaultAttributesFromGTKWidget(gtk_entry_new
, true);