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();
159 win
->UpdateFontIfNeeded();
160 #endif // !__WXGTK20__
162 wxCommandEvent
event( wxEVT_COMMAND_TEXT_UPDATED
, win
->GetId() );
163 event
.SetEventObject( win
);
164 event
.SetString( win
->GetValue() );
165 win
->GetEventHandler()->ProcessEvent( event
);
168 //-----------------------------------------------------------------------------
169 // "changed" from vertical scrollbar
170 //-----------------------------------------------------------------------------
174 gtk_scrollbar_changed_callback( GtkWidget
*WXUNUSED(widget
), wxTextCtrl
*win
)
176 if (!win
->m_hasVMT
) return;
179 wxapp_install_idle_handler();
181 win
->CalculateScrollbar();
185 // ----------------------------------------------------------------------------
186 // redraw callback for multiline text
187 // ----------------------------------------------------------------------------
191 // redrawing a GtkText from inside a wxYield() call results in crashes (the
192 // text sample shows it in its "Add lines" command which shows wxProgressDialog
193 // which implicitly calls wxYield()) so we override GtkText::draw() and simply
194 // don't do anything if we're inside wxYield()
196 extern bool wxIsInsideYield
;
199 typedef void (*GtkDrawCallback
)(GtkWidget
*widget
, GdkRectangle
*rect
);
202 static GtkDrawCallback gs_gtk_text_draw
= NULL
;
205 void wxgtk_text_draw( GtkWidget
*widget
, GdkRectangle
*rect
)
207 if ( !wxIsInsideYield
)
209 wxCHECK_RET( gs_gtk_text_draw
!= wxgtk_text_draw
,
210 _T("infinite recursion in wxgtk_text_draw aborted") );
212 gs_gtk_text_draw(widget
, rect
);
216 #endif // __WXGTK20__
218 //-----------------------------------------------------------------------------
220 //-----------------------------------------------------------------------------
222 IMPLEMENT_DYNAMIC_CLASS(wxTextCtrl
,wxControl
)
224 BEGIN_EVENT_TABLE(wxTextCtrl
, wxControl
)
225 EVT_CHAR(wxTextCtrl::OnChar
)
227 EVT_MENU(wxID_CUT
, wxTextCtrl::OnCut
)
228 EVT_MENU(wxID_COPY
, wxTextCtrl::OnCopy
)
229 EVT_MENU(wxID_PASTE
, wxTextCtrl::OnPaste
)
230 EVT_MENU(wxID_UNDO
, wxTextCtrl::OnUndo
)
231 EVT_MENU(wxID_REDO
, wxTextCtrl::OnRedo
)
233 EVT_UPDATE_UI(wxID_CUT
, wxTextCtrl::OnUpdateCut
)
234 EVT_UPDATE_UI(wxID_COPY
, wxTextCtrl::OnUpdateCopy
)
235 EVT_UPDATE_UI(wxID_PASTE
, wxTextCtrl::OnUpdatePaste
)
236 EVT_UPDATE_UI(wxID_UNDO
, wxTextCtrl::OnUpdateUndo
)
237 EVT_UPDATE_UI(wxID_REDO
, wxTextCtrl::OnUpdateRedo
)
240 void wxTextCtrl::Init()
244 SetUpdateFont(FALSE
);
246 m_vScrollbar
= (GtkWidget
*)NULL
;
249 wxTextCtrl::wxTextCtrl( wxWindow
*parent
,
251 const wxString
&value
,
255 const wxValidator
& validator
,
256 const wxString
&name
)
260 Create( parent
, id
, value
, pos
, size
, style
, validator
, name
);
263 bool wxTextCtrl::Create( wxWindow
*parent
,
265 const wxString
&value
,
269 const wxValidator
& validator
,
270 const wxString
&name
)
273 m_acceptsFocus
= TRUE
;
275 if (!PreCreation( parent
, pos
, size
) ||
276 !CreateBase( parent
, id
, pos
, size
, style
, validator
, name
))
278 wxFAIL_MSG( wxT("wxTextCtrl creation failed") );
283 m_vScrollbarVisible
= FALSE
;
285 bool multi_line
= (style
& wxTE_MULTILINE
) != 0;
288 GtkTextBuffer
*buffer
= NULL
;
295 m_text
= gtk_text_view_new();
297 buffer
= gtk_text_view_get_buffer( GTK_TEXT_VIEW(m_text
) );
299 // create scrolled window
300 m_widget
= gtk_scrolled_window_new( NULL
, NULL
);
301 gtk_scrolled_window_set_policy( GTK_SCROLLED_WINDOW( m_widget
),
302 GTK_POLICY_AUTOMATIC
, GTK_POLICY_AUTOMATIC
);
304 // Insert view into scrolled window
305 gtk_container_add( GTK_CONTAINER(m_widget
), m_text
);
307 // Global settings which can be overridden by tags, I guess.
308 if (HasFlag( wxHSCROLL
) || HasFlag( wxTE_DONTWRAP
))
309 gtk_text_view_set_wrap_mode( GTK_TEXT_VIEW( m_text
), GTK_WRAP_NONE
);
311 gtk_text_view_set_wrap_mode( GTK_TEXT_VIEW( m_text
), GTK_WRAP_WORD
);
313 if (!HasFlag(wxNO_BORDER
))
314 gtk_scrolled_window_set_shadow_type( GTK_SCROLLED_WINDOW(m_widget
), GTK_SHADOW_IN
);
316 GTK_WIDGET_UNSET_FLAGS( m_widget
, GTK_CAN_FOCUS
);
318 // create our control ...
319 m_text
= gtk_text_new( (GtkAdjustment
*) NULL
, (GtkAdjustment
*) NULL
);
321 // ... and put into the upper left hand corner of the table
322 bool bHasHScrollbar
= FALSE
;
323 m_widget
= gtk_table_new(bHasHScrollbar
? 2 : 1, 2, FALSE
);
324 GTK_WIDGET_UNSET_FLAGS( m_widget
, GTK_CAN_FOCUS
);
325 gtk_table_attach( GTK_TABLE(m_widget
), m_text
, 0, 1, 0, 1,
326 (GtkAttachOptions
)(GTK_FILL
| GTK_EXPAND
| GTK_SHRINK
),
327 (GtkAttachOptions
)(GTK_FILL
| GTK_EXPAND
| GTK_SHRINK
),
331 gtk_text_set_word_wrap( GTK_TEXT(m_text
), TRUE
);
333 // finally, put the vertical scrollbar in the upper right corner
334 m_vScrollbar
= gtk_vscrollbar_new( GTK_TEXT(m_text
)->vadj
);
335 GTK_WIDGET_UNSET_FLAGS( m_vScrollbar
, GTK_CAN_FOCUS
);
336 gtk_table_attach(GTK_TABLE(m_widget
), m_vScrollbar
, 1, 2, 0, 1,
338 (GtkAttachOptions
)(GTK_EXPAND
| GTK_FILL
| GTK_SHRINK
),
344 // a single-line text control: no need for scrollbars
346 m_text
= gtk_entry_new();
349 m_parent
->DoAddChild( this );
351 m_focusWidget
= m_text
;
356 gtk_widget_show(m_text
);
361 gtk_signal_connect(GTK_OBJECT(GTK_TEXT(m_text
)->vadj
), "changed",
362 (GtkSignalFunc
) gtk_scrollbar_changed_callback
, (gpointer
) this );
364 // only initialize gs_gtk_text_draw once, starting from the next the
365 // klass::draw will already be wxgtk_text_draw
366 if ( !gs_gtk_text_draw
)
369 draw
= GTK_WIDGET_CLASS(GTK_OBJECT(m_text
)->klass
)->draw
;
371 gs_gtk_text_draw
= draw
;
373 draw
= wxgtk_text_draw
;
378 if (!value
.IsEmpty())
384 #if !GTK_CHECK_VERSION(1, 2, 0)
385 // if we don't realize it, GTK 1.0.6 dies with a SIGSEGV in
386 // gtk_editable_insert_text()
387 gtk_widget_realize(m_text
);
392 wxWX2MBbuf val
= value
.mbc_str();
393 gtk_editable_insert_text( GTK_EDITABLE(m_text
), val
, strlen(val
), &tmp
);
395 gtk_editable_insert_text( GTK_EDITABLE(m_text
), value
, value
.Length(), &tmp
);
400 // Bring editable's cursor uptodate. Bug in GTK.
401 SET_EDITABLE_POS(m_text
, gtk_text_get_point( GTK_TEXT(m_text
) ));
407 if (style
& wxTE_PASSWORD
)
410 gtk_entry_set_visibility( GTK_ENTRY(m_text
), FALSE
);
413 if (style
& wxTE_READONLY
)
416 gtk_entry_set_editable( GTK_ENTRY(m_text
), FALSE
);
419 gtk_text_view_set_editable( GTK_TEXT_VIEW( m_text
), FALSE
);
425 gtk_text_set_editable( GTK_TEXT(m_text
), 1 );
432 if (style
& wxTE_RIGHT
)
433 gtk_text_view_set_justification( GTK_TEXT_VIEW(m_text
), GTK_JUSTIFY_RIGHT
);
434 else if (style
& wxTE_CENTRE
)
435 gtk_text_view_set_justification( GTK_TEXT_VIEW(m_text
), GTK_JUSTIFY_CENTER
);
436 // Left justify (alignment) is the default and we don't need to apply GTK_JUSTIFY_LEFT
438 // gtk_entry_set_alignment was introduced in gtk+-2.3.5
439 #if GTK_CHECK_VERSION(2, 3, 5)
442 if (style
& wxTE_RIGHT
)
443 gtk_entry_set_alignment( GTK_ENTRY(m_text
), 1.0 );
444 else if (style
& wxTE_CENTRE
)
445 gtk_entry_set_alignment( GTK_ENTRY(m_text
), 0.5 );
448 #endif // __WXGTK20__
450 // We want to be notified about text changes.
454 g_signal_connect( G_OBJECT(buffer
), "changed",
455 GTK_SIGNAL_FUNC(gtk_text_changed_callback
), (gpointer
)this);
461 gtk_signal_connect( GTK_OBJECT(m_text
), "changed",
462 GTK_SIGNAL_FUNC(gtk_text_changed_callback
), (gpointer
)this);
465 m_cursor
= wxCursor( wxCURSOR_IBEAM
);
467 wxTextAttr
attrDef(GetForegroundColour(), GetBackgroundColour(), GetFont());
468 SetDefaultStyle( attrDef
);
474 void wxTextCtrl::CalculateScrollbar()
477 if ((m_windowStyle
& wxTE_MULTILINE
) == 0) return;
479 GtkAdjustment
*adj
= GTK_TEXT(m_text
)->vadj
;
481 if (adj
->upper
- adj
->page_size
< 0.8)
483 if (m_vScrollbarVisible
)
485 gtk_widget_hide( m_vScrollbar
);
486 m_vScrollbarVisible
= FALSE
;
491 if (!m_vScrollbarVisible
)
493 gtk_widget_show( m_vScrollbar
);
494 m_vScrollbarVisible
= TRUE
;
500 wxString
wxTextCtrl::GetValue() const
502 wxCHECK_MSG( m_text
!= NULL
, wxT(""), wxT("invalid text ctrl") );
505 if (m_windowStyle
& wxTE_MULTILINE
)
508 GtkTextBuffer
*text_buffer
= gtk_text_view_get_buffer( GTK_TEXT_VIEW(m_text
) );
511 gtk_text_buffer_get_start_iter( text_buffer
, &start
);
513 gtk_text_buffer_get_end_iter( text_buffer
, &end
);
514 gchar
*text
= gtk_text_buffer_get_text( text_buffer
, &start
, &end
, TRUE
);
517 wxWCharBuffer
buffer( wxConvUTF8
.cMB2WX( text
) );
519 wxCharBuffer
buffer( wxConvLocal
.cWC2WX( wxConvUTF8
.cMB2WC( text
) ) );
526 gint len
= gtk_text_get_length( GTK_TEXT(m_text
) );
527 char *text
= gtk_editable_get_chars( GTK_EDITABLE(m_text
), 0, len
);
534 tmp
= wxGTK_CONV_BACK( gtk_entry_get_text( GTK_ENTRY(m_text
) ) );
540 void wxTextCtrl::SetValue( const wxString
&value
)
542 wxCHECK_RET( m_text
!= NULL
, wxT("invalid text ctrl") );
544 if (m_windowStyle
& wxTE_MULTILINE
)
549 wxCharBuffer
buffer( wxConvUTF8
.cWX2MB( value
) );
551 wxCharBuffer
buffer( wxConvUTF8
.cWC2MB( wxConvLocal
.cWX2WC( value
) ) );
553 GtkTextBuffer
*text_buffer
= gtk_text_view_get_buffer( GTK_TEXT_VIEW(m_text
) );
554 if (gtk_text_buffer_get_char_count(text_buffer
) != 0)
555 IgnoreNextTextUpdate();
557 gtk_text_buffer_set_text( text_buffer
, buffer
, strlen(buffer
) );
560 gint len
= gtk_text_get_length( GTK_TEXT(m_text
) );
561 gtk_editable_delete_text( GTK_EDITABLE(m_text
), 0, len
);
563 gtk_editable_insert_text( GTK_EDITABLE(m_text
), value
.mbc_str(), value
.Length(), &len
);
568 gtk_entry_set_text( GTK_ENTRY(m_text
), wxGTK_CONV( value
) );
571 // GRG, Jun/2000: Changed this after a lot of discussion in
572 // the lists. wxWidgets 2.2 will have a set of flags to
573 // customize this behaviour.
574 SetInsertionPoint(0);
579 void wxTextCtrl::WriteText( const wxString
&text
)
581 wxCHECK_RET( m_text
!= NULL
, wxT("invalid text ctrl") );
586 // gtk_text_changed_callback() will set m_modified to true but m_modified
587 // shouldn't be changed by the program writing to the text control itself,
588 // so save the old value and restore when we're done
589 bool oldModified
= m_modified
;
591 if ( m_windowStyle
& wxTE_MULTILINE
)
596 wxCharBuffer
buffer( wxConvUTF8
.cWX2MB( text
) );
598 wxCharBuffer
buffer( wxConvUTF8
.cWC2MB( wxConvLocal
.cWX2WC( text
) ) );
602 // what else can we do? at least don't crash...
606 GtkTextBuffer
*text_buffer
= gtk_text_view_get_buffer( GTK_TEXT_VIEW(m_text
) );
608 // TODO: Call whatever is needed to delete the selection.
609 wxGtkTextInsert( m_text
, text_buffer
, m_defaultStyle
, buffer
);
611 GtkAdjustment
*adj
= gtk_scrolled_window_get_vadjustment( GTK_SCROLLED_WINDOW(m_widget
) );
612 // Scroll to cursor, but only if scrollbar thumb is at the very bottom
613 if ( adj
->value
== adj
->upper
- adj
->page_size
)
615 gtk_text_view_scroll_to_mark( GTK_TEXT_VIEW(m_text
),
616 gtk_text_buffer_get_insert( text_buffer
), 0.0, FALSE
, 0.0, 1.0 );
619 // After cursor movements, gtk_text_get_point() is wrong by one.
620 gtk_text_set_point( GTK_TEXT(m_text
), GET_EDITABLE_POS(m_text
) );
622 // always use m_defaultStyle, even if it is empty as otherwise
623 // resetting the style and appending some more text wouldn't work: if
624 // we don't specify the style explicitly, the old style would be used
625 gtk_editable_delete_selection( GTK_EDITABLE(m_text
) );
626 wxGtkTextInsert(m_text
, m_defaultStyle
, text
.c_str(), text
.Len());
628 // we called wxGtkTextInsert with correct font, no need to do anything
629 // in UpdateFontIfNeeded() any longer
632 SetUpdateFont(FALSE
);
635 // Bring editable's cursor back uptodate.
636 SET_EDITABLE_POS(m_text
, gtk_text_get_point( GTK_TEXT(m_text
) ));
637 #endif // GTK 1.x/2.0
641 // First remove the selection if there is one
642 gtk_editable_delete_selection( GTK_EDITABLE(m_text
) );
644 // This moves the cursor pos to behind the inserted text.
645 gint len
= GET_EDITABLE_POS(m_text
);
650 wxCharBuffer
buffer( wxConvUTF8
.cWX2MB( text
) );
652 wxCharBuffer
buffer( wxConvUTF8
.cWC2MB( wxConvLocal
.cWX2WC( text
) ) );
654 gtk_editable_insert_text( GTK_EDITABLE(m_text
), buffer
, strlen(buffer
), &len
);
657 gtk_editable_insert_text( GTK_EDITABLE(m_text
), text
.c_str(), text
.Len(), &len
);
660 // Bring entry's cursor uptodate.
661 gtk_entry_set_position( GTK_ENTRY(m_text
), len
);
664 m_modified
= oldModified
;
667 void wxTextCtrl::AppendText( const wxString
&text
)
669 SetInsertionPointEnd();
673 wxString
wxTextCtrl::GetLineText( long lineNo
) const
675 if (m_windowStyle
& wxTE_MULTILINE
)
678 gint len
= gtk_text_get_length( GTK_TEXT(m_text
) );
679 char *text
= gtk_editable_get_chars( GTK_EDITABLE(m_text
), 0, len
);
683 wxString
buf(wxT(""));
686 for (i
= 0; currentLine
!= lineNo
&& text
[i
]; i
++ )
691 for (j
= 0; text
[i
] && text
[i
] != '\n'; i
++, j
++ )
699 return wxEmptyString
;
702 GtkTextBuffer
*text_buffer
;
703 text_buffer
= gtk_text_view_get_buffer(GTK_TEXT_VIEW(m_text
));
705 gtk_text_buffer_get_iter_at_line(text_buffer
,&line
,lineNo
);
707 gtk_text_buffer_get_end_iter(text_buffer
,&end
);
708 gchar
*text
= gtk_text_buffer_get_text(text_buffer
,&line
,&end
,TRUE
);
709 wxString
result(wxGTK_CONV_BACK(text
));
711 return result
.BeforeFirst(wxT('\n'));
716 if (lineNo
== 0) return GetValue();
717 return wxEmptyString
;
721 void wxTextCtrl::OnDropFiles( wxDropFilesEvent
&WXUNUSED(event
) )
723 /* If you implement this, don't forget to update the documentation!
724 * (file docs/latex/wx/text.tex) */
725 wxFAIL_MSG( wxT("wxTextCtrl::OnDropFiles not implemented") );
728 bool wxTextCtrl::PositionToXY(long pos
, long *x
, long *y
) const
730 if ( m_windowStyle
& wxTE_MULTILINE
)
732 wxString text
= GetValue();
734 // cast to prevent warning. But pos really should've been unsigned.
735 if( (unsigned long)pos
> text
.Len() )
741 const wxChar
* stop
= text
.c_str() + pos
;
742 for ( const wxChar
*p
= text
.c_str(); p
< stop
; p
++ )
753 else // single line control
755 if ( pos
<= GTK_ENTRY(m_text
)->text_length
)
762 // index out of bounds
770 long wxTextCtrl::XYToPosition(long x
, long y
) const
772 if (!(m_windowStyle
& wxTE_MULTILINE
)) return 0;
775 for( int i
=0; i
<y
; i
++ ) pos
+= GetLineLength(i
) + 1; // one for '\n'
781 int wxTextCtrl::GetLineLength(long lineNo
) const
783 wxString str
= GetLineText (lineNo
);
784 return (int) str
.Length();
787 int wxTextCtrl::GetNumberOfLines() const
789 if (m_windowStyle
& wxTE_MULTILINE
)
792 GtkTextBuffer
*buffer
= gtk_text_view_get_buffer( GTK_TEXT_VIEW(m_text
) );
794 return gtk_text_buffer_get_line_count( buffer
);
796 gint len
= gtk_text_get_length( GTK_TEXT(m_text
) );
797 char *text
= gtk_editable_get_chars( GTK_EDITABLE(m_text
), 0, len
);
802 for (int i
= 0; i
< len
; i
++ )
809 // currentLine is 0 based, add 1 to get number of lines
810 return currentLine
+ 1;
824 void wxTextCtrl::SetInsertionPoint( long pos
)
826 wxCHECK_RET( m_text
!= NULL
, wxT("invalid text ctrl") );
831 GtkTextBuffer
*text_buffer
= gtk_text_view_get_buffer( GTK_TEXT_VIEW(m_text
) );
833 gtk_text_buffer_get_iter_at_offset( text_buffer
, &iter
, pos
);
834 gtk_text_buffer_place_cursor( text_buffer
, &iter
);
835 gtk_text_view_scroll_mark_onscreen
837 GTK_TEXT_VIEW(m_text
),
838 gtk_text_buffer_get_insert( text_buffer
)
841 gtk_signal_disconnect_by_func( GTK_OBJECT(m_text
),
842 GTK_SIGNAL_FUNC(gtk_text_changed_callback
), (gpointer
)this);
844 /* we fake a set_point by inserting and deleting. as the user
845 isn't supposed to get to know about this non-sense, we
846 disconnect so that no events are sent to the user program. */
848 gint tmp
= (gint
)pos
;
849 gtk_editable_insert_text( GTK_EDITABLE(m_text
), " ", 1, &tmp
);
850 gtk_editable_delete_text( GTK_EDITABLE(m_text
), tmp
-1, tmp
);
852 gtk_signal_connect( GTK_OBJECT(m_text
), "changed",
853 GTK_SIGNAL_FUNC(gtk_text_changed_callback
), (gpointer
)this);
855 // bring editable's cursor uptodate. Bug in GTK.
856 SET_EDITABLE_POS(m_text
, gtk_text_get_point( GTK_TEXT(m_text
) ));
861 gtk_entry_set_position( GTK_ENTRY(m_text
), (int)pos
);
863 // Bring editable's cursor uptodate. Bug in GTK.
864 SET_EDITABLE_POS(m_text
, (guint32
)pos
);
868 void wxTextCtrl::SetInsertionPointEnd()
870 wxCHECK_RET( m_text
!= NULL
, wxT("invalid text ctrl") );
872 if (m_windowStyle
& wxTE_MULTILINE
)
875 GtkTextBuffer
*text_buffer
= gtk_text_view_get_buffer( GTK_TEXT_VIEW(m_text
) );
877 gtk_text_buffer_get_end_iter( text_buffer
, &end
);
878 gtk_text_buffer_place_cursor( text_buffer
, &end
);
880 SetInsertionPoint(gtk_text_get_length(GTK_TEXT(m_text
)));
885 gtk_entry_set_position( GTK_ENTRY(m_text
), -1 );
889 void wxTextCtrl::SetEditable( bool editable
)
891 wxCHECK_RET( m_text
!= NULL
, wxT("invalid text ctrl") );
893 if (m_windowStyle
& wxTE_MULTILINE
)
896 gtk_text_view_set_editable( GTK_TEXT_VIEW(m_text
), editable
);
898 gtk_text_set_editable( GTK_TEXT(m_text
), editable
);
903 gtk_entry_set_editable( GTK_ENTRY(m_text
), editable
);
907 bool wxTextCtrl::Enable( bool enable
)
909 if (!wxWindowBase::Enable(enable
))
915 if (m_windowStyle
& wxTE_MULTILINE
)
918 SetEditable( enable
);
920 gtk_text_set_editable( GTK_TEXT(m_text
), enable
);
921 OnParentEnable(enable
);
926 gtk_widget_set_sensitive( m_text
, enable
);
932 // wxGTK-specific: called recursively by Enable,
933 // to give widgets an oppprtunity to correct their colours after they
934 // have been changed by Enable
935 void wxTextCtrl::OnParentEnable( bool enable
)
937 // If we have a custom background colour, we use this colour in both
938 // disabled and enabled mode, or we end up with a different colour under the
940 wxColour oldColour
= GetBackgroundColour();
943 // Need to set twice or it'll optimize the useful stuff out
944 if (oldColour
== * wxWHITE
)
945 SetBackgroundColour(*wxBLACK
);
947 SetBackgroundColour(*wxWHITE
);
948 SetBackgroundColour(oldColour
);
952 void wxTextCtrl::MarkDirty()
957 void wxTextCtrl::DiscardEdits()
962 // ----------------------------------------------------------------------------
963 // max text length support
964 // ----------------------------------------------------------------------------
966 void wxTextCtrl::IgnoreNextTextUpdate()
968 m_ignoreNextUpdate
= TRUE
;
971 bool wxTextCtrl::IgnoreTextUpdate()
973 if ( m_ignoreNextUpdate
)
975 m_ignoreNextUpdate
= FALSE
;
983 void wxTextCtrl::SetMaxLength(unsigned long len
)
985 if ( !HasFlag(wxTE_MULTILINE
) )
987 gtk_entry_set_max_length(GTK_ENTRY(m_text
), len
);
989 // there is a bug in GTK+ 1.2.x: "changed" signal is emitted even if
990 // we had tried to enter more text than allowed by max text length and
991 // the text wasn't really changed
993 // to detect this and generate TEXT_MAXLEN event instead of
994 // TEXT_CHANGED one in this case we also catch "insert_text" signal
996 // when max len is set to 0 we disconnect our handler as it means that
997 // we shouldn't check anything any more
1000 gtk_signal_connect( GTK_OBJECT(m_text
),
1002 GTK_SIGNAL_FUNC(gtk_insert_text_callback
),
1007 gtk_signal_disconnect_by_func
1010 GTK_SIGNAL_FUNC(gtk_insert_text_callback
),
1017 void wxTextCtrl::SetSelection( long from
, long to
)
1019 wxCHECK_RET( m_text
!= NULL
, wxT("invalid text ctrl") );
1021 if (from
== -1 && to
== -1)
1024 to
= GetValue().Length();
1028 if ( (m_windowStyle
& wxTE_MULTILINE
) &&
1029 !GTK_TEXT(m_text
)->line_start_cache
)
1031 // tell the programmer that it didn't work
1032 wxLogDebug(_T("Can't call SetSelection() before realizing the control"));
1037 if (m_windowStyle
& wxTE_MULTILINE
)
1040 GtkTextBuffer
*buf
= gtk_text_view_get_buffer( GTK_TEXT_VIEW(m_text
) );
1042 GtkTextIter fromi
, toi
;
1043 gtk_text_buffer_get_iter_at_offset( buf
, &fromi
, from
);
1044 gtk_text_buffer_get_iter_at_offset( buf
, &toi
, to
);
1046 gtk_text_buffer_place_cursor( buf
, &toi
);
1047 gtk_text_buffer_move_mark_by_name( buf
, "selection_bound", &fromi
);
1049 gtk_editable_select_region( GTK_EDITABLE(m_text
), (gint
)from
, (gint
)to
);
1054 gtk_editable_select_region( GTK_EDITABLE(m_text
), (gint
)from
, (gint
)to
);
1058 void wxTextCtrl::ShowPosition( long pos
)
1060 if (m_windowStyle
& wxTE_MULTILINE
)
1063 GtkTextBuffer
*buf
= gtk_text_view_get_buffer( GTK_TEXT_VIEW(m_text
) );
1065 gtk_text_buffer_get_start_iter( buf
, &iter
);
1066 gtk_text_iter_set_offset( &iter
, pos
);
1067 GtkTextMark
*mark
= gtk_text_buffer_create_mark( buf
, NULL
, &iter
, TRUE
);
1068 gtk_text_view_scroll_to_mark( GTK_TEXT_VIEW(m_text
), mark
, 0.0, FALSE
, 0.0, 0.0 );
1070 GtkAdjustment
*vp
= GTK_TEXT(m_text
)->vadj
;
1071 float totalLines
= (float) GetNumberOfLines();
1074 PositionToXY(pos
, &posX
, &posY
);
1075 float posLine
= (float) posY
;
1076 float p
= (posLine
/totalLines
)*(vp
->upper
- vp
->lower
) + vp
->lower
;
1077 gtk_adjustment_set_value(GTK_TEXT(m_text
)->vadj
, p
);
1078 #endif // GTK 1.x/2.x
1084 wxTextCtrlHitTestResult
1085 wxTextCtrl::HitTest(const wxPoint
& pt
, long *pos
) const
1087 if ( !IsMultiLine() )
1090 return wxTE_HT_UNKNOWN
;
1094 gtk_text_view_window_to_buffer_coords
1096 GTK_TEXT_VIEW(m_text
),
1097 GTK_TEXT_WINDOW_TEXT
,
1103 gtk_text_view_get_iter_at_location(GTK_TEXT_VIEW(m_text
), &iter
, x
, y
);
1105 *pos
= gtk_text_iter_get_offset(&iter
);
1107 return wxTE_HT_ON_TEXT
;
1110 #endif // __WXGTK20__
1112 long wxTextCtrl::GetInsertionPoint() const
1114 wxCHECK_MSG( m_text
!= NULL
, 0, wxT("invalid text ctrl") );
1117 if (m_windowStyle
& wxTE_MULTILINE
)
1119 GtkTextBuffer
*text_buffer
= gtk_text_view_get_buffer( GTK_TEXT_VIEW(m_text
) );
1121 // There is no direct accessor for the cursor, but
1122 // internally, the cursor is the "mark" called
1123 // "insert" in the text view's btree structure.
1125 GtkTextMark
*mark
= gtk_text_buffer_get_insert( text_buffer
);
1127 gtk_text_buffer_get_iter_at_mark( text_buffer
, &cursor
, mark
);
1129 return gtk_text_iter_get_offset( &cursor
);
1134 return (long) GET_EDITABLE_POS(m_text
);
1138 long wxTextCtrl::GetLastPosition() const
1140 wxCHECK_MSG( m_text
!= NULL
, 0, wxT("invalid text ctrl") );
1144 if (m_windowStyle
& wxTE_MULTILINE
)
1147 GtkTextBuffer
*text_buffer
= gtk_text_view_get_buffer( GTK_TEXT_VIEW(m_text
) );
1149 gtk_text_buffer_get_end_iter( text_buffer
, &end
);
1151 pos
= gtk_text_iter_get_offset( &end
);
1153 pos
= gtk_text_get_length( GTK_TEXT(m_text
) );
1158 pos
= GTK_ENTRY(m_text
)->text_length
;
1164 void wxTextCtrl::Remove( long from
, long to
)
1166 wxCHECK_RET( m_text
!= NULL
, wxT("invalid text ctrl") );
1169 if (m_windowStyle
& wxTE_MULTILINE
)
1172 text_buffer
= gtk_text_view_get_buffer( GTK_TEXT_VIEW(m_text
) );
1174 GtkTextIter fromi
, toi
;
1175 gtk_text_buffer_get_iter_at_offset( text_buffer
, &fromi
, from
);
1176 gtk_text_buffer_get_iter_at_offset( text_buffer
, &toi
, to
);
1178 gtk_text_buffer_delete( text_buffer
, &fromi
, &toi
);
1182 gtk_editable_delete_text( GTK_EDITABLE(m_text
), (gint
)from
, (gint
)to
);
1185 void wxTextCtrl::Replace( long from
, long to
, const wxString
&value
)
1187 wxCHECK_RET( m_text
!= NULL
, wxT("invalid text ctrl") );
1191 if (!value
.IsEmpty())
1194 SetInsertionPoint( from
);
1197 gint pos
= (gint
)from
;
1199 wxWX2MBbuf buf
= value
.mbc_str();
1200 gtk_editable_insert_text( GTK_EDITABLE(m_text
), buf
, strlen(buf
), &pos
);
1202 gtk_editable_insert_text( GTK_EDITABLE(m_text
), value
, value
.Length(), &pos
);
1203 #endif // wxUSE_UNICODE
1204 #endif // GTK 1.x/2.x
1208 void wxTextCtrl::Cut()
1210 wxCHECK_RET( m_text
!= NULL
, wxT("invalid text ctrl") );
1213 if (m_windowStyle
& wxTE_MULTILINE
)
1214 g_signal_emit_by_name(m_text
, "cut-clipboard");
1217 gtk_editable_cut_clipboard(GTK_EDITABLE(m_text
) DUMMY_CLIPBOARD_ARG
);
1220 void wxTextCtrl::Copy()
1222 wxCHECK_RET( m_text
!= NULL
, wxT("invalid text ctrl") );
1225 if (m_windowStyle
& wxTE_MULTILINE
)
1226 g_signal_emit_by_name(m_text
, "copy-clipboard");
1229 gtk_editable_copy_clipboard(GTK_EDITABLE(m_text
) DUMMY_CLIPBOARD_ARG
);
1232 void wxTextCtrl::Paste()
1234 wxCHECK_RET( m_text
!= NULL
, wxT("invalid text ctrl") );
1237 if (m_windowStyle
& wxTE_MULTILINE
)
1238 g_signal_emit_by_name(m_text
, "paste-clipboard");
1241 gtk_editable_paste_clipboard(GTK_EDITABLE(m_text
) DUMMY_CLIPBOARD_ARG
);
1245 void wxTextCtrl::Undo()
1248 wxFAIL_MSG( wxT("wxTextCtrl::Undo not implemented") );
1251 void wxTextCtrl::Redo()
1254 wxFAIL_MSG( wxT("wxTextCtrl::Redo not implemented") );
1257 bool wxTextCtrl::CanUndo() const
1260 //wxFAIL_MSG( wxT("wxTextCtrl::CanUndo not implemented") );
1264 bool wxTextCtrl::CanRedo() const
1267 //wxFAIL_MSG( wxT("wxTextCtrl::CanRedo not implemented") );
1271 // If the return values from and to are the same, there is no
1273 void wxTextCtrl::GetSelection(long* fromOut
, long* toOut
) const
1275 wxCHECK_RET( m_text
!= NULL
, wxT("invalid text ctrl") );
1279 bool haveSelection
= FALSE
;
1282 if (m_windowStyle
& wxTE_MULTILINE
)
1284 GtkTextBuffer
*buffer
= gtk_text_view_get_buffer (GTK_TEXT_VIEW (m_text
));
1285 GtkTextIter ifrom
, ito
;
1286 if ( gtk_text_buffer_get_selection_bounds(buffer
, &ifrom
, &ito
) )
1288 haveSelection
= TRUE
;
1289 from
= gtk_text_iter_get_offset(&ifrom
);
1290 to
= gtk_text_iter_get_offset(&ito
);
1293 else // not multi-line
1295 if ( gtk_editable_get_selection_bounds( GTK_EDITABLE(m_text
),
1298 haveSelection
= TRUE
;
1302 if ( (GTK_EDITABLE(m_text
)->has_selection
) )
1304 haveSelection
= TRUE
;
1305 from
= (long) GTK_EDITABLE(m_text
)->selection_start_pos
;
1306 to
= (long) GTK_EDITABLE(m_text
)->selection_end_pos
;
1310 if (! haveSelection
)
1311 from
= to
= GetInsertionPoint();
1315 // exchange them to be compatible with wxMSW
1328 bool wxTextCtrl::IsEditable() const
1330 wxCHECK_MSG( m_text
!= NULL
, FALSE
, wxT("invalid text ctrl") );
1333 if (m_windowStyle
& wxTE_MULTILINE
)
1335 return gtk_text_view_get_editable(GTK_TEXT_VIEW(m_text
));
1339 return gtk_editable_get_editable(GTK_EDITABLE(m_text
));
1342 return GTK_EDITABLE(m_text
)->editable
;
1346 bool wxTextCtrl::IsModified() const
1351 void wxTextCtrl::Clear()
1353 SetValue( wxT("") );
1356 void wxTextCtrl::OnChar( wxKeyEvent
&key_event
)
1358 wxCHECK_RET( m_text
!= NULL
, wxT("invalid text ctrl") );
1360 if ((key_event
.GetKeyCode() == WXK_RETURN
) && (m_windowStyle
& wxPROCESS_ENTER
))
1362 wxCommandEvent
event(wxEVT_COMMAND_TEXT_ENTER
, m_windowId
);
1363 event
.SetEventObject(this);
1364 event
.SetString(GetValue());
1365 if (GetEventHandler()->ProcessEvent(event
)) return;
1368 if ((key_event
.GetKeyCode() == WXK_RETURN
) && !(m_windowStyle
& wxTE_MULTILINE
))
1370 // This will invoke the dialog default action, such
1371 // as the clicking the default button.
1373 wxWindow
*top_frame
= m_parent
;
1374 while (top_frame
->GetParent() && !(top_frame
->IsTopLevel()))
1375 top_frame
= top_frame
->GetParent();
1377 if (top_frame
&& GTK_IS_WINDOW(top_frame
->m_widget
))
1379 GtkWindow
*window
= GTK_WINDOW(top_frame
->m_widget
);
1381 if (window
->default_widget
)
1383 gtk_widget_activate (window
->default_widget
);
1392 GtkWidget
* wxTextCtrl::GetConnectWidget()
1394 return GTK_WIDGET(m_text
);
1397 bool wxTextCtrl::IsOwnGtkWindow( GdkWindow
*window
)
1399 if (m_windowStyle
& wxTE_MULTILINE
)
1402 return window
== gtk_text_view_get_window( GTK_TEXT_VIEW( m_text
), GTK_TEXT_WINDOW_TEXT
); // pure guesswork
1404 return (window
== GTK_TEXT(m_text
)->text_area
);
1409 return (window
== GTK_ENTRY(m_text
)->text_area
);
1413 // the font will change for subsequent text insertiongs
1414 bool wxTextCtrl::SetFont( const wxFont
&font
)
1416 wxCHECK_MSG( m_text
!= NULL
, FALSE
, wxT("invalid text ctrl") );
1418 if ( !wxTextCtrlBase::SetFont(font
) )
1420 // font didn't change, nothing to do
1424 if ( m_windowStyle
& wxTE_MULTILINE
)
1426 SetUpdateFont(TRUE
);
1428 m_defaultStyle
.SetFont(font
);
1430 ChangeFontGlobally();
1436 void wxTextCtrl::ChangeFontGlobally()
1438 // this method is very inefficient and hence should be called as rarely as
1441 // TODO: it can be implemented much more efficiently for GTK2
1443 wxASSERT_MSG( (m_windowStyle
& wxTE_MULTILINE
) && m_updateFont
,
1445 _T("shouldn't be called for single line controls") );
1447 wxASSERT_MSG( (m_windowStyle
& wxTE_MULTILINE
),
1448 _T("shouldn't be called for single line controls") );
1451 wxString value
= GetValue();
1452 if ( !value
.IsEmpty() )
1454 SetUpdateFont(FALSE
);
1463 void wxTextCtrl::UpdateFontIfNeeded()
1466 ChangeFontGlobally();
1471 bool wxTextCtrl::SetForegroundColour(const wxColour
& colour
)
1473 if ( !wxControl::SetForegroundColour(colour
) )
1476 // update default fg colour too
1477 m_defaultStyle
.SetTextColour(colour
);
1482 bool wxTextCtrl::SetBackgroundColour( const wxColour
&colour
)
1484 wxCHECK_MSG( m_text
!= NULL
, FALSE
, wxT("invalid text ctrl") );
1486 if ( !wxControl::SetBackgroundColour( colour
) )
1490 if (!m_widget
->window
)
1494 if (!m_backgroundColour
.Ok())
1497 if (m_windowStyle
& wxTE_MULTILINE
)
1500 GdkWindow
*window
= GTK_TEXT(m_text
)->text_area
;
1503 m_backgroundColour
.CalcPixel( gdk_window_get_colormap( window
) );
1504 gdk_window_set_background( window
, m_backgroundColour
.GetColor() );
1505 gdk_window_clear( window
);
1509 // change active background color too
1510 m_defaultStyle
.SetBackgroundColour( colour
);
1515 bool wxTextCtrl::SetStyle( long start
, long end
, const wxTextAttr
& style
)
1517 if ( m_windowStyle
& wxTE_MULTILINE
)
1519 if ( style
.IsDefault() )
1525 GtkTextBuffer
*text_buffer
= gtk_text_view_get_buffer( GTK_TEXT_VIEW(m_text
) );
1526 gint l
= gtk_text_buffer_get_char_count( text_buffer
);
1528 wxCHECK_MSG( start
>= 0 && end
<= l
, FALSE
,
1529 _T("invalid range in wxTextCtrl::SetStyle") );
1531 GtkTextIter starti
, endi
;
1532 gtk_text_buffer_get_iter_at_offset( text_buffer
, &starti
, start
);
1533 gtk_text_buffer_get_iter_at_offset( text_buffer
, &endi
, end
);
1535 // use the attributes from style which are set in it and fall back
1536 // first to the default style and then to the text control default
1537 // colours for the others
1538 wxTextAttr attr
= wxTextAttr::Combine(style
, m_defaultStyle
, this);
1540 PangoFontDescription
*font_description
= attr
.HasFont()
1541 ? attr
.GetFont().GetNativeFontInfo()->description
1544 GdkColor
*colFg
= attr
.HasTextColour() ? attr
.GetTextColour().GetColor()
1547 GdkColor
*colBg
= attr
.HasBackgroundColour()
1548 ? attr
.GetBackgroundColour().GetColor()
1552 tag
= gtk_text_buffer_create_tag( text_buffer
, NULL
, "font-desc", font_description
,
1553 "foreground-gdk", colFg
,
1554 "background-gdk", colBg
, NULL
);
1555 gtk_text_buffer_apply_tag( text_buffer
, tag
, &starti
, &endi
);
1559 // VERY dirty way to do that - removes the required text and re-adds it
1560 // with styling (FIXME)
1562 gint l
= gtk_text_get_length( GTK_TEXT(m_text
) );
1564 wxCHECK_MSG( start
>= 0 && end
<= l
, FALSE
,
1565 _T("invalid range in wxTextCtrl::SetStyle") );
1567 gint old_pos
= gtk_editable_get_position( GTK_EDITABLE(m_text
) );
1568 char *text
= gtk_editable_get_chars( GTK_EDITABLE(m_text
), start
, end
);
1569 wxString
tmp(text
,*wxConvCurrent
);
1572 gtk_editable_delete_text( GTK_EDITABLE(m_text
), start
, end
);
1573 gtk_editable_set_position( GTK_EDITABLE(m_text
), start
);
1576 wxWX2MBbuf buf
= tmp
.mbc_str();
1577 const char *txt
= buf
;
1578 size_t txtlen
= strlen(buf
);
1580 const char *txt
= tmp
;
1581 size_t txtlen
= tmp
.length();
1584 // use the attributes from style which are set in it and fall back
1585 // first to the default style and then to the text control default
1586 // colours for the others
1587 wxGtkTextInsert(m_text
,
1588 wxTextAttr::Combine(style
, m_defaultStyle
, this),
1592 /* does not seem to help under GTK+ 1.2 !!!
1593 gtk_editable_set_position( GTK_EDITABLE(m_text), old_pos ); */
1594 SetInsertionPoint( old_pos
);
1600 // cannot do this for GTK+'s Entry widget
1605 void wxTextCtrl::DoApplyWidgetStyle(GtkRcStyle
*style
)
1607 gtk_widget_modify_style(m_text
, style
);
1610 void wxTextCtrl::OnCut(wxCommandEvent
& WXUNUSED(event
))
1615 void wxTextCtrl::OnCopy(wxCommandEvent
& WXUNUSED(event
))
1620 void wxTextCtrl::OnPaste(wxCommandEvent
& WXUNUSED(event
))
1625 void wxTextCtrl::OnUndo(wxCommandEvent
& WXUNUSED(event
))
1630 void wxTextCtrl::OnRedo(wxCommandEvent
& WXUNUSED(event
))
1635 void wxTextCtrl::OnUpdateCut(wxUpdateUIEvent
& event
)
1637 event
.Enable( CanCut() );
1640 void wxTextCtrl::OnUpdateCopy(wxUpdateUIEvent
& event
)
1642 event
.Enable( CanCopy() );
1645 void wxTextCtrl::OnUpdatePaste(wxUpdateUIEvent
& event
)
1647 event
.Enable( CanPaste() );
1650 void wxTextCtrl::OnUpdateUndo(wxUpdateUIEvent
& event
)
1652 event
.Enable( CanUndo() );
1655 void wxTextCtrl::OnUpdateRedo(wxUpdateUIEvent
& event
)
1657 event
.Enable( CanRedo() );
1660 void wxTextCtrl::OnInternalIdle()
1662 wxCursor cursor
= m_cursor
;
1663 if (g_globalCursor
.Ok()) cursor
= g_globalCursor
;
1668 GdkWindow
*window
= (GdkWindow
*) NULL
;
1669 if (HasFlag(wxTE_MULTILINE
))
1670 window
= GTK_TEXT(m_text
)->text_area
;
1672 window
= GTK_ENTRY(m_text
)->text_area
;
1675 gdk_window_set_cursor( window
, cursor
.GetCursor() );
1677 if (!g_globalCursor
.Ok())
1678 cursor
= *wxSTANDARD_CURSOR
;
1680 window
= m_widget
->window
;
1681 if ((window
) && !(GTK_WIDGET_NO_WINDOW(m_widget
)))
1682 gdk_window_set_cursor( window
, cursor
.GetCursor() );
1686 if (g_delayedFocus
== this)
1688 if (GTK_WIDGET_REALIZED(m_widget
))
1690 gtk_widget_grab_focus( m_widget
);
1691 g_delayedFocus
= NULL
;
1695 if (wxUpdateUIEvent::CanUpdate(this))
1696 UpdateWindowUI(wxUPDATE_UI_FROMIDLE
);
1699 wxSize
wxTextCtrl::DoGetBestSize() const
1701 // FIXME should be different for multi-line controls...
1702 wxSize
ret( wxControl::DoGetBestSize() );
1703 wxSize
best(80, ret
.y
);
1704 CacheBestSize(best
);
1708 // ----------------------------------------------------------------------------
1710 // ----------------------------------------------------------------------------
1712 void wxTextCtrl::Freeze()
1715 if ( HasFlag(wxTE_MULTILINE
) )
1717 gtk_text_freeze(GTK_TEXT(m_text
));
1722 void wxTextCtrl::Thaw()
1725 if ( HasFlag(wxTE_MULTILINE
) )
1727 GTK_TEXT(m_text
)->vadj
->value
= 0.0;
1729 gtk_text_thaw(GTK_TEXT(m_text
));
1734 // ----------------------------------------------------------------------------
1736 // ----------------------------------------------------------------------------
1738 GtkAdjustment
*wxTextCtrl::GetVAdj() const
1740 if ( !IsMultiLine() )
1744 return gtk_scrolled_window_get_vadjustment(GTK_SCROLLED_WINDOW(m_widget
));
1746 return GTK_TEXT(m_text
)->vadj
;
1750 bool wxTextCtrl::DoScroll(GtkAdjustment
*adj
, int diff
)
1752 float value
= adj
->value
+ diff
;
1757 float upper
= adj
->upper
- adj
->page_size
;
1758 if ( value
> upper
)
1761 // did we noticeably change the scroll position?
1762 if ( fabs(adj
->value
- value
) < 0.2 )
1764 // well, this is what Robert does in wxScrollBar, so it must be good...
1771 gtk_adjustment_value_changed(GTK_ADJUSTMENT(adj
));
1773 gtk_signal_emit_by_name(GTK_OBJECT(adj
), "value_changed");
1779 bool wxTextCtrl::ScrollLines(int lines
)
1781 GtkAdjustment
*adj
= GetVAdj();
1786 int diff
= (int)ceil(lines
*adj
->step_increment
);
1788 // this is hardcoded to 10 in GTK+ 1.2 (great idea)
1789 int diff
= 10*lines
;
1792 return DoScroll(adj
, diff
);
1795 bool wxTextCtrl::ScrollPages(int pages
)
1797 GtkAdjustment
*adj
= GetVAdj();
1801 return DoScroll(adj
, (int)ceil(pages
*adj
->page_increment
));
1807 wxTextCtrl::GetClassDefaultAttributes(wxWindowVariant
WXUNUSED(variant
))
1809 return GetDefaultAttributesFromGTKWidget(gtk_entry_new
, true);