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 wxGtkTextApplyTagsFromAttr(GtkTextBuffer
*text_buffer
,
55 const wxTextAttr
& attr
,
59 static gchar buf
[1024];
65 PangoFontDescription
*font_description
= attr
.GetFont().GetNativeFontInfo()->description
;
66 font_string
= pango_font_description_to_string(font_description
);
67 g_snprintf(buf
, sizeof(buf
), "WXFONT %s", font_string
);
68 tag
= gtk_text_tag_table_lookup( gtk_text_buffer_get_tag_table( text_buffer
),
71 tag
= gtk_text_buffer_create_tag( text_buffer
, buf
,
72 "font-desc", font_description
,
74 gtk_text_buffer_apply_tag (text_buffer
, tag
, start
, end
);
78 if (attr
.HasTextColour())
80 GdkColor
*colFg
= attr
.GetTextColour().GetColor();
81 g_snprintf(buf
, sizeof(buf
), "WXFORECOLOR %d %d %d",
82 colFg
->red
, colFg
->green
, colFg
->blue
);
83 tag
= gtk_text_tag_table_lookup( gtk_text_buffer_get_tag_table( text_buffer
),
86 tag
= gtk_text_buffer_create_tag( text_buffer
, buf
,
87 "foreground-gdk", colFg
, NULL
);
88 gtk_text_buffer_apply_tag (text_buffer
, tag
, start
, end
);
91 if (attr
.HasBackgroundColour())
93 GdkColor
*colBg
= attr
.GetBackgroundColour().GetColor();
94 g_snprintf(buf
, sizeof(buf
), "WXBACKCOLOR %d %d %d",
95 colBg
->red
, colBg
->green
, colBg
->blue
);
96 tag
= gtk_text_tag_table_lookup( gtk_text_buffer_get_tag_table( text_buffer
),
99 tag
= gtk_text_buffer_create_tag( text_buffer
, buf
,
100 "background-gdk", colBg
, NULL
);
101 gtk_text_buffer_apply_tag (text_buffer
, tag
, start
, end
);
105 static void wxGtkTextInsert(GtkWidget
*text
,
106 GtkTextBuffer
*text_buffer
,
107 const wxTextAttr
& attr
,
112 GtkTextIter iter
, start
;
114 gtk_text_buffer_get_iter_at_mark( text_buffer
, &iter
,
115 gtk_text_buffer_get_insert (text_buffer
) );
116 start_offset
= gtk_text_iter_get_offset (&iter
);
117 gtk_text_buffer_insert( text_buffer
, &iter
, buffer
, strlen(buffer
) );
119 gtk_text_buffer_get_iter_at_offset (text_buffer
, &start
, start_offset
);
121 wxGtkTextApplyTagsFromAttr(text_buffer
, attr
, &start
, &iter
);
124 static void wxGtkTextInsert(GtkWidget
*text
,
125 const wxTextAttr
& attr
,
129 GdkFont
*font
= attr
.HasFont() ? attr
.GetFont().GetInternalFont()
132 GdkColor
*colFg
= attr
.HasTextColour() ? attr
.GetTextColour().GetColor()
135 GdkColor
*colBg
= attr
.HasBackgroundColour()
136 ? attr
.GetBackgroundColour().GetColor()
139 gtk_text_insert( GTK_TEXT(text
), font
, colFg
, colBg
, txt
, len
);
143 // ----------------------------------------------------------------------------
144 // "insert_text" for GtkEntry
145 // ----------------------------------------------------------------------------
148 gtk_insert_text_callback(GtkEditable
*editable
,
149 const gchar
*new_text
,
150 gint new_text_length
,
155 wxapp_install_idle_handler();
157 // we should only be called if we have a max len limit at all
158 GtkEntry
*entry
= GTK_ENTRY (editable
);
160 wxCHECK_RET( entry
->text_max_length
, _T("shouldn't be called") );
162 // check that we don't overflow the max length limit
164 // FIXME: this doesn't work when we paste a string which is going to be
166 if ( entry
->text_length
== entry
->text_max_length
)
168 // we don't need to run the base class version at all
169 gtk_signal_emit_stop_by_name(GTK_OBJECT(editable
), "insert_text");
171 // remember that the next changed signal is to be ignored to avoid
172 // generating a dummy wxEVT_COMMAND_TEXT_UPDATED event
173 win
->IgnoreNextTextUpdate();
175 // and generate the correct one ourselves
176 wxCommandEvent
event(wxEVT_COMMAND_TEXT_MAXLEN
, win
->GetId());
177 event
.SetEventObject(win
);
178 event
.SetString(win
->GetValue());
179 win
->GetEventHandler()->ProcessEvent( event
);
183 //-----------------------------------------------------------------------------
185 //-----------------------------------------------------------------------------
188 gtk_text_changed_callback( GtkWidget
*widget
, wxTextCtrl
*win
)
190 if ( win
->IgnoreTextUpdate() )
193 if (!win
->m_hasVMT
) return;
196 wxapp_install_idle_handler();
200 win
->UpdateFontIfNeeded();
201 #endif // !__WXGTK20__
203 wxCommandEvent
event( wxEVT_COMMAND_TEXT_UPDATED
, win
->GetId() );
204 event
.SetEventObject( win
);
205 event
.SetString( win
->GetValue() );
206 win
->GetEventHandler()->ProcessEvent( event
);
209 //-----------------------------------------------------------------------------
210 // "changed" from vertical scrollbar
211 //-----------------------------------------------------------------------------
215 gtk_scrollbar_changed_callback( GtkWidget
*WXUNUSED(widget
), wxTextCtrl
*win
)
217 if (!win
->m_hasVMT
) return;
220 wxapp_install_idle_handler();
222 win
->CalculateScrollbar();
226 // ----------------------------------------------------------------------------
227 // redraw callback for multiline text
228 // ----------------------------------------------------------------------------
232 // redrawing a GtkText from inside a wxYield() call results in crashes (the
233 // text sample shows it in its "Add lines" command which shows wxProgressDialog
234 // which implicitly calls wxYield()) so we override GtkText::draw() and simply
235 // don't do anything if we're inside wxYield()
237 extern bool wxIsInsideYield
;
240 typedef void (*GtkDrawCallback
)(GtkWidget
*widget
, GdkRectangle
*rect
);
243 static GtkDrawCallback gs_gtk_text_draw
= NULL
;
246 void wxgtk_text_draw( GtkWidget
*widget
, GdkRectangle
*rect
)
248 if ( !wxIsInsideYield
)
250 wxCHECK_RET( gs_gtk_text_draw
!= wxgtk_text_draw
,
251 _T("infinite recursion in wxgtk_text_draw aborted") );
253 gs_gtk_text_draw(widget
, rect
);
257 #endif // __WXGTK20__
259 //-----------------------------------------------------------------------------
261 //-----------------------------------------------------------------------------
263 IMPLEMENT_DYNAMIC_CLASS(wxTextCtrl
,wxControl
)
265 BEGIN_EVENT_TABLE(wxTextCtrl
, wxControl
)
266 EVT_CHAR(wxTextCtrl::OnChar
)
268 EVT_MENU(wxID_CUT
, wxTextCtrl::OnCut
)
269 EVT_MENU(wxID_COPY
, wxTextCtrl::OnCopy
)
270 EVT_MENU(wxID_PASTE
, wxTextCtrl::OnPaste
)
271 EVT_MENU(wxID_UNDO
, wxTextCtrl::OnUndo
)
272 EVT_MENU(wxID_REDO
, wxTextCtrl::OnRedo
)
274 EVT_UPDATE_UI(wxID_CUT
, wxTextCtrl::OnUpdateCut
)
275 EVT_UPDATE_UI(wxID_COPY
, wxTextCtrl::OnUpdateCopy
)
276 EVT_UPDATE_UI(wxID_PASTE
, wxTextCtrl::OnUpdatePaste
)
277 EVT_UPDATE_UI(wxID_UNDO
, wxTextCtrl::OnUpdateUndo
)
278 EVT_UPDATE_UI(wxID_REDO
, wxTextCtrl::OnUpdateRedo
)
281 void wxTextCtrl::Init()
285 SetUpdateFont(FALSE
);
287 m_vScrollbar
= (GtkWidget
*)NULL
;
290 wxTextCtrl::wxTextCtrl( wxWindow
*parent
,
292 const wxString
&value
,
296 const wxValidator
& validator
,
297 const wxString
&name
)
301 Create( parent
, id
, value
, pos
, size
, style
, validator
, name
);
304 bool wxTextCtrl::Create( wxWindow
*parent
,
306 const wxString
&value
,
310 const wxValidator
& validator
,
311 const wxString
&name
)
314 m_acceptsFocus
= TRUE
;
316 if (!PreCreation( parent
, pos
, size
) ||
317 !CreateBase( parent
, id
, pos
, size
, style
, validator
, name
))
319 wxFAIL_MSG( wxT("wxTextCtrl creation failed") );
324 m_vScrollbarVisible
= FALSE
;
326 bool multi_line
= (style
& wxTE_MULTILINE
) != 0;
329 GtkTextBuffer
*buffer
= NULL
;
336 m_text
= gtk_text_view_new();
338 buffer
= gtk_text_view_get_buffer( GTK_TEXT_VIEW(m_text
) );
340 // create scrolled window
341 m_widget
= gtk_scrolled_window_new( NULL
, NULL
);
342 gtk_scrolled_window_set_policy( GTK_SCROLLED_WINDOW( m_widget
),
343 GTK_POLICY_AUTOMATIC
, GTK_POLICY_AUTOMATIC
);
345 // Insert view into scrolled window
346 gtk_container_add( GTK_CONTAINER(m_widget
), m_text
);
348 // Global settings which can be overridden by tags, I guess.
349 if (HasFlag( wxHSCROLL
) || HasFlag( wxTE_DONTWRAP
))
350 gtk_text_view_set_wrap_mode( GTK_TEXT_VIEW( m_text
), GTK_WRAP_NONE
);
352 gtk_text_view_set_wrap_mode( GTK_TEXT_VIEW( m_text
), GTK_WRAP_WORD
);
354 if (!HasFlag(wxNO_BORDER
))
355 gtk_scrolled_window_set_shadow_type( GTK_SCROLLED_WINDOW(m_widget
), GTK_SHADOW_IN
);
357 GTK_WIDGET_UNSET_FLAGS( m_widget
, GTK_CAN_FOCUS
);
359 // create our control ...
360 m_text
= gtk_text_new( (GtkAdjustment
*) NULL
, (GtkAdjustment
*) NULL
);
362 // ... and put into the upper left hand corner of the table
363 bool bHasHScrollbar
= FALSE
;
364 m_widget
= gtk_table_new(bHasHScrollbar
? 2 : 1, 2, FALSE
);
365 GTK_WIDGET_UNSET_FLAGS( m_widget
, GTK_CAN_FOCUS
);
366 gtk_table_attach( GTK_TABLE(m_widget
), m_text
, 0, 1, 0, 1,
367 (GtkAttachOptions
)(GTK_FILL
| GTK_EXPAND
| GTK_SHRINK
),
368 (GtkAttachOptions
)(GTK_FILL
| GTK_EXPAND
| GTK_SHRINK
),
372 gtk_text_set_word_wrap( GTK_TEXT(m_text
), TRUE
);
374 // finally, put the vertical scrollbar in the upper right corner
375 m_vScrollbar
= gtk_vscrollbar_new( GTK_TEXT(m_text
)->vadj
);
376 GTK_WIDGET_UNSET_FLAGS( m_vScrollbar
, GTK_CAN_FOCUS
);
377 gtk_table_attach(GTK_TABLE(m_widget
), m_vScrollbar
, 1, 2, 0, 1,
379 (GtkAttachOptions
)(GTK_EXPAND
| GTK_FILL
| GTK_SHRINK
),
385 // a single-line text control: no need for scrollbars
387 m_text
= gtk_entry_new();
390 m_parent
->DoAddChild( this );
392 m_focusWidget
= m_text
;
397 gtk_widget_show(m_text
);
402 gtk_signal_connect(GTK_OBJECT(GTK_TEXT(m_text
)->vadj
), "changed",
403 (GtkSignalFunc
) gtk_scrollbar_changed_callback
, (gpointer
) this );
405 // only initialize gs_gtk_text_draw once, starting from the next the
406 // klass::draw will already be wxgtk_text_draw
407 if ( !gs_gtk_text_draw
)
410 draw
= GTK_WIDGET_CLASS(GTK_OBJECT(m_text
)->klass
)->draw
;
412 gs_gtk_text_draw
= draw
;
414 draw
= wxgtk_text_draw
;
419 if (!value
.IsEmpty())
425 #if !GTK_CHECK_VERSION(1, 2, 0)
426 // if we don't realize it, GTK 1.0.6 dies with a SIGSEGV in
427 // gtk_editable_insert_text()
428 gtk_widget_realize(m_text
);
433 wxWX2MBbuf val
= value
.mbc_str();
434 gtk_editable_insert_text( GTK_EDITABLE(m_text
), val
, strlen(val
), &tmp
);
436 gtk_editable_insert_text( GTK_EDITABLE(m_text
), value
, value
.Length(), &tmp
);
441 // Bring editable's cursor uptodate. Bug in GTK.
442 SET_EDITABLE_POS(m_text
, gtk_text_get_point( GTK_TEXT(m_text
) ));
448 if (style
& wxTE_PASSWORD
)
451 gtk_entry_set_visibility( GTK_ENTRY(m_text
), FALSE
);
454 if (style
& wxTE_READONLY
)
457 gtk_entry_set_editable( GTK_ENTRY(m_text
), FALSE
);
460 gtk_text_view_set_editable( GTK_TEXT_VIEW( m_text
), FALSE
);
466 gtk_text_set_editable( GTK_TEXT(m_text
), 1 );
473 if (style
& wxTE_RIGHT
)
474 gtk_text_view_set_justification( GTK_TEXT_VIEW(m_text
), GTK_JUSTIFY_RIGHT
);
475 else if (style
& wxTE_CENTRE
)
476 gtk_text_view_set_justification( GTK_TEXT_VIEW(m_text
), GTK_JUSTIFY_CENTER
);
477 // Left justify (alignment) is the default and we don't need to apply GTK_JUSTIFY_LEFT
479 // gtk_entry_set_alignment was introduced in gtk+-2.3.5
480 #if GTK_CHECK_VERSION(2, 3, 5)
483 if (style
& wxTE_RIGHT
)
484 gtk_entry_set_alignment( GTK_ENTRY(m_text
), 1.0 );
485 else if (style
& wxTE_CENTRE
)
486 gtk_entry_set_alignment( GTK_ENTRY(m_text
), 0.5 );
489 #endif // __WXGTK20__
491 // We want to be notified about text changes.
495 g_signal_connect( G_OBJECT(buffer
), "changed",
496 GTK_SIGNAL_FUNC(gtk_text_changed_callback
), (gpointer
)this);
502 gtk_signal_connect( GTK_OBJECT(m_text
), "changed",
503 GTK_SIGNAL_FUNC(gtk_text_changed_callback
), (gpointer
)this);
506 m_cursor
= wxCursor( wxCURSOR_IBEAM
);
508 wxTextAttr
attrDef(GetForegroundColour(), GetBackgroundColour(), GetFont());
509 SetDefaultStyle( attrDef
);
515 void wxTextCtrl::CalculateScrollbar()
518 if ((m_windowStyle
& wxTE_MULTILINE
) == 0) return;
520 GtkAdjustment
*adj
= GTK_TEXT(m_text
)->vadj
;
522 if (adj
->upper
- adj
->page_size
< 0.8)
524 if (m_vScrollbarVisible
)
526 gtk_widget_hide( m_vScrollbar
);
527 m_vScrollbarVisible
= FALSE
;
532 if (!m_vScrollbarVisible
)
534 gtk_widget_show( m_vScrollbar
);
535 m_vScrollbarVisible
= TRUE
;
541 wxString
wxTextCtrl::GetValue() const
543 wxCHECK_MSG( m_text
!= NULL
, wxT(""), wxT("invalid text ctrl") );
546 if (m_windowStyle
& wxTE_MULTILINE
)
549 GtkTextBuffer
*text_buffer
= gtk_text_view_get_buffer( GTK_TEXT_VIEW(m_text
) );
552 gtk_text_buffer_get_start_iter( text_buffer
, &start
);
554 gtk_text_buffer_get_end_iter( text_buffer
, &end
);
555 gchar
*text
= gtk_text_buffer_get_text( text_buffer
, &start
, &end
, TRUE
);
558 wxWCharBuffer
buffer( wxConvUTF8
.cMB2WX( text
) );
560 wxCharBuffer
buffer( wxConvLocal
.cWC2WX( wxConvUTF8
.cMB2WC( text
) ) );
567 gint len
= gtk_text_get_length( GTK_TEXT(m_text
) );
568 char *text
= gtk_editable_get_chars( GTK_EDITABLE(m_text
), 0, len
);
575 tmp
= wxGTK_CONV_BACK( gtk_entry_get_text( GTK_ENTRY(m_text
) ) );
581 void wxTextCtrl::SetValue( const wxString
&value
)
583 wxCHECK_RET( m_text
!= NULL
, wxT("invalid text ctrl") );
585 if (m_windowStyle
& wxTE_MULTILINE
)
590 wxCharBuffer
buffer( wxConvUTF8
.cWX2MB( value
) );
592 wxCharBuffer
buffer( wxConvUTF8
.cWC2MB( wxConvLocal
.cWX2WC( value
) ) );
594 GtkTextBuffer
*text_buffer
= gtk_text_view_get_buffer( GTK_TEXT_VIEW(m_text
) );
595 if (gtk_text_buffer_get_char_count(text_buffer
) != 0)
596 IgnoreNextTextUpdate();
598 gtk_text_buffer_set_text( text_buffer
, buffer
, strlen(buffer
) );
601 gint len
= gtk_text_get_length( GTK_TEXT(m_text
) );
602 gtk_editable_delete_text( GTK_EDITABLE(m_text
), 0, len
);
604 gtk_editable_insert_text( GTK_EDITABLE(m_text
), value
.mbc_str(), value
.Length(), &len
);
609 gtk_entry_set_text( GTK_ENTRY(m_text
), wxGTK_CONV( value
) );
612 // GRG, Jun/2000: Changed this after a lot of discussion in
613 // the lists. wxWidgets 2.2 will have a set of flags to
614 // customize this behaviour.
615 SetInsertionPoint(0);
620 void wxTextCtrl::WriteText( const wxString
&text
)
622 wxCHECK_RET( m_text
!= NULL
, wxT("invalid text ctrl") );
627 // gtk_text_changed_callback() will set m_modified to true but m_modified
628 // shouldn't be changed by the program writing to the text control itself,
629 // so save the old value and restore when we're done
630 bool oldModified
= m_modified
;
632 if ( m_windowStyle
& wxTE_MULTILINE
)
637 wxCharBuffer
buffer( wxConvUTF8
.cWX2MB( text
) );
639 wxCharBuffer
buffer( wxConvUTF8
.cWC2MB( wxConvLocal
.cWX2WC( text
) ) );
643 // what else can we do? at least don't crash...
647 GtkTextBuffer
*text_buffer
= gtk_text_view_get_buffer( GTK_TEXT_VIEW(m_text
) );
649 // TODO: Call whatever is needed to delete the selection.
650 wxGtkTextInsert( m_text
, text_buffer
, m_defaultStyle
, buffer
);
652 GtkAdjustment
*adj
= gtk_scrolled_window_get_vadjustment( GTK_SCROLLED_WINDOW(m_widget
) );
653 // Scroll to cursor, but only if scrollbar thumb is at the very bottom
654 if ( adj
->value
== adj
->upper
- adj
->page_size
)
656 gtk_text_view_scroll_to_mark( GTK_TEXT_VIEW(m_text
),
657 gtk_text_buffer_get_insert( text_buffer
), 0.0, FALSE
, 0.0, 1.0 );
660 // After cursor movements, gtk_text_get_point() is wrong by one.
661 gtk_text_set_point( GTK_TEXT(m_text
), GET_EDITABLE_POS(m_text
) );
663 // always use m_defaultStyle, even if it is empty as otherwise
664 // resetting the style and appending some more text wouldn't work: if
665 // we don't specify the style explicitly, the old style would be used
666 gtk_editable_delete_selection( GTK_EDITABLE(m_text
) );
667 wxGtkTextInsert(m_text
, m_defaultStyle
, text
.c_str(), text
.Len());
669 // we called wxGtkTextInsert with correct font, no need to do anything
670 // in UpdateFontIfNeeded() any longer
673 SetUpdateFont(FALSE
);
676 // Bring editable's cursor back uptodate.
677 SET_EDITABLE_POS(m_text
, gtk_text_get_point( GTK_TEXT(m_text
) ));
678 #endif // GTK 1.x/2.0
682 // First remove the selection if there is one
683 gtk_editable_delete_selection( GTK_EDITABLE(m_text
) );
685 // This moves the cursor pos to behind the inserted text.
686 gint len
= GET_EDITABLE_POS(m_text
);
691 wxCharBuffer
buffer( wxConvUTF8
.cWX2MB( text
) );
693 wxCharBuffer
buffer( wxConvUTF8
.cWC2MB( wxConvLocal
.cWX2WC( text
) ) );
695 gtk_editable_insert_text( GTK_EDITABLE(m_text
), buffer
, strlen(buffer
), &len
);
698 gtk_editable_insert_text( GTK_EDITABLE(m_text
), text
.c_str(), text
.Len(), &len
);
701 // Bring entry's cursor uptodate.
702 gtk_entry_set_position( GTK_ENTRY(m_text
), len
);
705 m_modified
= oldModified
;
708 void wxTextCtrl::AppendText( const wxString
&text
)
710 SetInsertionPointEnd();
714 wxString
wxTextCtrl::GetLineText( long lineNo
) const
716 if (m_windowStyle
& wxTE_MULTILINE
)
719 gint len
= gtk_text_get_length( GTK_TEXT(m_text
) );
720 char *text
= gtk_editable_get_chars( GTK_EDITABLE(m_text
), 0, len
);
724 wxString
buf(wxT(""));
727 for (i
= 0; currentLine
!= lineNo
&& text
[i
]; i
++ )
732 for (j
= 0; text
[i
] && text
[i
] != '\n'; i
++, j
++ )
740 return wxEmptyString
;
743 GtkTextBuffer
*text_buffer
;
744 text_buffer
= gtk_text_view_get_buffer(GTK_TEXT_VIEW(m_text
));
746 gtk_text_buffer_get_iter_at_line(text_buffer
,&line
,lineNo
);
748 gtk_text_buffer_get_end_iter(text_buffer
,&end
);
749 gchar
*text
= gtk_text_buffer_get_text(text_buffer
,&line
,&end
,TRUE
);
750 wxString
result(wxGTK_CONV_BACK(text
));
752 return result
.BeforeFirst(wxT('\n'));
757 if (lineNo
== 0) return GetValue();
758 return wxEmptyString
;
762 void wxTextCtrl::OnDropFiles( wxDropFilesEvent
&WXUNUSED(event
) )
764 /* If you implement this, don't forget to update the documentation!
765 * (file docs/latex/wx/text.tex) */
766 wxFAIL_MSG( wxT("wxTextCtrl::OnDropFiles not implemented") );
769 bool wxTextCtrl::PositionToXY(long pos
, long *x
, long *y
) const
771 if ( m_windowStyle
& wxTE_MULTILINE
)
773 wxString text
= GetValue();
775 // cast to prevent warning. But pos really should've been unsigned.
776 if( (unsigned long)pos
> text
.Len() )
782 const wxChar
* stop
= text
.c_str() + pos
;
783 for ( const wxChar
*p
= text
.c_str(); p
< stop
; p
++ )
794 else // single line control
796 if ( pos
<= GTK_ENTRY(m_text
)->text_length
)
803 // index out of bounds
811 long wxTextCtrl::XYToPosition(long x
, long y
) const
813 if (!(m_windowStyle
& wxTE_MULTILINE
)) return 0;
816 for( int i
=0; i
<y
; i
++ ) pos
+= GetLineLength(i
) + 1; // one for '\n'
822 int wxTextCtrl::GetLineLength(long lineNo
) const
824 wxString str
= GetLineText (lineNo
);
825 return (int) str
.Length();
828 int wxTextCtrl::GetNumberOfLines() const
830 if (m_windowStyle
& wxTE_MULTILINE
)
833 GtkTextBuffer
*buffer
= gtk_text_view_get_buffer( GTK_TEXT_VIEW(m_text
) );
835 return gtk_text_buffer_get_line_count( buffer
);
837 gint len
= gtk_text_get_length( GTK_TEXT(m_text
) );
838 char *text
= gtk_editable_get_chars( GTK_EDITABLE(m_text
), 0, len
);
843 for (int i
= 0; i
< len
; i
++ )
850 // currentLine is 0 based, add 1 to get number of lines
851 return currentLine
+ 1;
865 void wxTextCtrl::SetInsertionPoint( long pos
)
867 wxCHECK_RET( m_text
!= NULL
, wxT("invalid text ctrl") );
872 GtkTextBuffer
*text_buffer
= gtk_text_view_get_buffer( GTK_TEXT_VIEW(m_text
) );
874 gtk_text_buffer_get_iter_at_offset( text_buffer
, &iter
, pos
);
875 gtk_text_buffer_place_cursor( text_buffer
, &iter
);
876 gtk_text_view_scroll_mark_onscreen
878 GTK_TEXT_VIEW(m_text
),
879 gtk_text_buffer_get_insert( text_buffer
)
882 gtk_signal_disconnect_by_func( GTK_OBJECT(m_text
),
883 GTK_SIGNAL_FUNC(gtk_text_changed_callback
), (gpointer
)this);
885 /* we fake a set_point by inserting and deleting. as the user
886 isn't supposed to get to know about this non-sense, we
887 disconnect so that no events are sent to the user program. */
889 gint tmp
= (gint
)pos
;
890 gtk_editable_insert_text( GTK_EDITABLE(m_text
), " ", 1, &tmp
);
891 gtk_editable_delete_text( GTK_EDITABLE(m_text
), tmp
-1, tmp
);
893 gtk_signal_connect( GTK_OBJECT(m_text
), "changed",
894 GTK_SIGNAL_FUNC(gtk_text_changed_callback
), (gpointer
)this);
896 // bring editable's cursor uptodate. Bug in GTK.
897 SET_EDITABLE_POS(m_text
, gtk_text_get_point( GTK_TEXT(m_text
) ));
902 gtk_entry_set_position( GTK_ENTRY(m_text
), (int)pos
);
904 // Bring editable's cursor uptodate. Bug in GTK.
905 SET_EDITABLE_POS(m_text
, (guint32
)pos
);
909 void wxTextCtrl::SetInsertionPointEnd()
911 wxCHECK_RET( m_text
!= NULL
, wxT("invalid text ctrl") );
913 if (m_windowStyle
& wxTE_MULTILINE
)
916 GtkTextBuffer
*text_buffer
= gtk_text_view_get_buffer( GTK_TEXT_VIEW(m_text
) );
918 gtk_text_buffer_get_end_iter( text_buffer
, &end
);
919 gtk_text_buffer_place_cursor( text_buffer
, &end
);
921 SetInsertionPoint(gtk_text_get_length(GTK_TEXT(m_text
)));
926 gtk_entry_set_position( GTK_ENTRY(m_text
), -1 );
930 void wxTextCtrl::SetEditable( bool editable
)
932 wxCHECK_RET( m_text
!= NULL
, wxT("invalid text ctrl") );
934 if (m_windowStyle
& wxTE_MULTILINE
)
937 gtk_text_view_set_editable( GTK_TEXT_VIEW(m_text
), editable
);
939 gtk_text_set_editable( GTK_TEXT(m_text
), editable
);
944 gtk_entry_set_editable( GTK_ENTRY(m_text
), editable
);
948 bool wxTextCtrl::Enable( bool enable
)
950 if (!wxWindowBase::Enable(enable
))
956 if (m_windowStyle
& wxTE_MULTILINE
)
959 SetEditable( enable
);
961 gtk_text_set_editable( GTK_TEXT(m_text
), enable
);
962 OnParentEnable(enable
);
967 gtk_widget_set_sensitive( m_text
, enable
);
973 // wxGTK-specific: called recursively by Enable,
974 // to give widgets an oppprtunity to correct their colours after they
975 // have been changed by Enable
976 void wxTextCtrl::OnParentEnable( bool enable
)
978 // If we have a custom background colour, we use this colour in both
979 // disabled and enabled mode, or we end up with a different colour under the
981 wxColour oldColour
= GetBackgroundColour();
984 // Need to set twice or it'll optimize the useful stuff out
985 if (oldColour
== * wxWHITE
)
986 SetBackgroundColour(*wxBLACK
);
988 SetBackgroundColour(*wxWHITE
);
989 SetBackgroundColour(oldColour
);
993 void wxTextCtrl::MarkDirty()
998 void wxTextCtrl::DiscardEdits()
1003 // ----------------------------------------------------------------------------
1004 // max text length support
1005 // ----------------------------------------------------------------------------
1007 void wxTextCtrl::IgnoreNextTextUpdate()
1009 m_ignoreNextUpdate
= TRUE
;
1012 bool wxTextCtrl::IgnoreTextUpdate()
1014 if ( m_ignoreNextUpdate
)
1016 m_ignoreNextUpdate
= FALSE
;
1024 void wxTextCtrl::SetMaxLength(unsigned long len
)
1026 if ( !HasFlag(wxTE_MULTILINE
) )
1028 gtk_entry_set_max_length(GTK_ENTRY(m_text
), len
);
1030 // there is a bug in GTK+ 1.2.x: "changed" signal is emitted even if
1031 // we had tried to enter more text than allowed by max text length and
1032 // the text wasn't really changed
1034 // to detect this and generate TEXT_MAXLEN event instead of
1035 // TEXT_CHANGED one in this case we also catch "insert_text" signal
1037 // when max len is set to 0 we disconnect our handler as it means that
1038 // we shouldn't check anything any more
1041 gtk_signal_connect( GTK_OBJECT(m_text
),
1043 GTK_SIGNAL_FUNC(gtk_insert_text_callback
),
1048 gtk_signal_disconnect_by_func
1051 GTK_SIGNAL_FUNC(gtk_insert_text_callback
),
1058 void wxTextCtrl::SetSelection( long from
, long to
)
1060 wxCHECK_RET( m_text
!= NULL
, wxT("invalid text ctrl") );
1062 if (from
== -1 && to
== -1)
1065 to
= GetValue().Length();
1069 if ( (m_windowStyle
& wxTE_MULTILINE
) &&
1070 !GTK_TEXT(m_text
)->line_start_cache
)
1072 // tell the programmer that it didn't work
1073 wxLogDebug(_T("Can't call SetSelection() before realizing the control"));
1078 if (m_windowStyle
& wxTE_MULTILINE
)
1081 GtkTextBuffer
*buf
= gtk_text_view_get_buffer( GTK_TEXT_VIEW(m_text
) );
1083 GtkTextIter fromi
, toi
;
1084 gtk_text_buffer_get_iter_at_offset( buf
, &fromi
, from
);
1085 gtk_text_buffer_get_iter_at_offset( buf
, &toi
, to
);
1087 gtk_text_buffer_place_cursor( buf
, &toi
);
1088 gtk_text_buffer_move_mark_by_name( buf
, "selection_bound", &fromi
);
1090 gtk_editable_select_region( GTK_EDITABLE(m_text
), (gint
)from
, (gint
)to
);
1095 gtk_editable_select_region( GTK_EDITABLE(m_text
), (gint
)from
, (gint
)to
);
1099 void wxTextCtrl::ShowPosition( long pos
)
1101 if (m_windowStyle
& wxTE_MULTILINE
)
1104 GtkTextBuffer
*buf
= gtk_text_view_get_buffer( GTK_TEXT_VIEW(m_text
) );
1106 gtk_text_buffer_get_start_iter( buf
, &iter
);
1107 gtk_text_iter_set_offset( &iter
, pos
);
1108 GtkTextMark
*mark
= gtk_text_buffer_create_mark( buf
, NULL
, &iter
, TRUE
);
1109 gtk_text_view_scroll_to_mark( GTK_TEXT_VIEW(m_text
), mark
, 0.0, FALSE
, 0.0, 0.0 );
1111 GtkAdjustment
*vp
= GTK_TEXT(m_text
)->vadj
;
1112 float totalLines
= (float) GetNumberOfLines();
1115 PositionToXY(pos
, &posX
, &posY
);
1116 float posLine
= (float) posY
;
1117 float p
= (posLine
/totalLines
)*(vp
->upper
- vp
->lower
) + vp
->lower
;
1118 gtk_adjustment_set_value(GTK_TEXT(m_text
)->vadj
, p
);
1119 #endif // GTK 1.x/2.x
1125 wxTextCtrlHitTestResult
1126 wxTextCtrl::HitTest(const wxPoint
& pt
, long *pos
) const
1128 if ( !IsMultiLine() )
1131 return wxTE_HT_UNKNOWN
;
1135 gtk_text_view_window_to_buffer_coords
1137 GTK_TEXT_VIEW(m_text
),
1138 GTK_TEXT_WINDOW_TEXT
,
1144 gtk_text_view_get_iter_at_location(GTK_TEXT_VIEW(m_text
), &iter
, x
, y
);
1146 *pos
= gtk_text_iter_get_offset(&iter
);
1148 return wxTE_HT_ON_TEXT
;
1151 #endif // __WXGTK20__
1153 long wxTextCtrl::GetInsertionPoint() const
1155 wxCHECK_MSG( m_text
!= NULL
, 0, wxT("invalid text ctrl") );
1158 if (m_windowStyle
& wxTE_MULTILINE
)
1160 GtkTextBuffer
*text_buffer
= gtk_text_view_get_buffer( GTK_TEXT_VIEW(m_text
) );
1162 // There is no direct accessor for the cursor, but
1163 // internally, the cursor is the "mark" called
1164 // "insert" in the text view's btree structure.
1166 GtkTextMark
*mark
= gtk_text_buffer_get_insert( text_buffer
);
1168 gtk_text_buffer_get_iter_at_mark( text_buffer
, &cursor
, mark
);
1170 return gtk_text_iter_get_offset( &cursor
);
1175 return (long) GET_EDITABLE_POS(m_text
);
1179 long wxTextCtrl::GetLastPosition() const
1181 wxCHECK_MSG( m_text
!= NULL
, 0, wxT("invalid text ctrl") );
1185 if (m_windowStyle
& wxTE_MULTILINE
)
1188 GtkTextBuffer
*text_buffer
= gtk_text_view_get_buffer( GTK_TEXT_VIEW(m_text
) );
1190 gtk_text_buffer_get_end_iter( text_buffer
, &end
);
1192 pos
= gtk_text_iter_get_offset( &end
);
1194 pos
= gtk_text_get_length( GTK_TEXT(m_text
) );
1199 pos
= GTK_ENTRY(m_text
)->text_length
;
1205 void wxTextCtrl::Remove( long from
, long to
)
1207 wxCHECK_RET( m_text
!= NULL
, wxT("invalid text ctrl") );
1210 if (m_windowStyle
& wxTE_MULTILINE
)
1213 text_buffer
= gtk_text_view_get_buffer( GTK_TEXT_VIEW(m_text
) );
1215 GtkTextIter fromi
, toi
;
1216 gtk_text_buffer_get_iter_at_offset( text_buffer
, &fromi
, from
);
1217 gtk_text_buffer_get_iter_at_offset( text_buffer
, &toi
, to
);
1219 gtk_text_buffer_delete( text_buffer
, &fromi
, &toi
);
1223 gtk_editable_delete_text( GTK_EDITABLE(m_text
), (gint
)from
, (gint
)to
);
1226 void wxTextCtrl::Replace( long from
, long to
, const wxString
&value
)
1228 wxCHECK_RET( m_text
!= NULL
, wxT("invalid text ctrl") );
1232 if (!value
.IsEmpty())
1235 SetInsertionPoint( from
);
1238 gint pos
= (gint
)from
;
1240 wxWX2MBbuf buf
= value
.mbc_str();
1241 gtk_editable_insert_text( GTK_EDITABLE(m_text
), buf
, strlen(buf
), &pos
);
1243 gtk_editable_insert_text( GTK_EDITABLE(m_text
), value
, value
.Length(), &pos
);
1244 #endif // wxUSE_UNICODE
1245 #endif // GTK 1.x/2.x
1249 void wxTextCtrl::Cut()
1251 wxCHECK_RET( m_text
!= NULL
, wxT("invalid text ctrl") );
1254 if (m_windowStyle
& wxTE_MULTILINE
)
1255 g_signal_emit_by_name(m_text
, "cut-clipboard");
1258 gtk_editable_cut_clipboard(GTK_EDITABLE(m_text
) DUMMY_CLIPBOARD_ARG
);
1261 void wxTextCtrl::Copy()
1263 wxCHECK_RET( m_text
!= NULL
, wxT("invalid text ctrl") );
1266 if (m_windowStyle
& wxTE_MULTILINE
)
1267 g_signal_emit_by_name(m_text
, "copy-clipboard");
1270 gtk_editable_copy_clipboard(GTK_EDITABLE(m_text
) DUMMY_CLIPBOARD_ARG
);
1273 void wxTextCtrl::Paste()
1275 wxCHECK_RET( m_text
!= NULL
, wxT("invalid text ctrl") );
1278 if (m_windowStyle
& wxTE_MULTILINE
)
1279 g_signal_emit_by_name(m_text
, "paste-clipboard");
1282 gtk_editable_paste_clipboard(GTK_EDITABLE(m_text
) DUMMY_CLIPBOARD_ARG
);
1286 void wxTextCtrl::Undo()
1289 wxFAIL_MSG( wxT("wxTextCtrl::Undo not implemented") );
1292 void wxTextCtrl::Redo()
1295 wxFAIL_MSG( wxT("wxTextCtrl::Redo not implemented") );
1298 bool wxTextCtrl::CanUndo() const
1301 //wxFAIL_MSG( wxT("wxTextCtrl::CanUndo not implemented") );
1305 bool wxTextCtrl::CanRedo() const
1308 //wxFAIL_MSG( wxT("wxTextCtrl::CanRedo not implemented") );
1312 // If the return values from and to are the same, there is no
1314 void wxTextCtrl::GetSelection(long* fromOut
, long* toOut
) const
1316 wxCHECK_RET( m_text
!= NULL
, wxT("invalid text ctrl") );
1320 bool haveSelection
= FALSE
;
1323 if (m_windowStyle
& wxTE_MULTILINE
)
1325 GtkTextBuffer
*buffer
= gtk_text_view_get_buffer (GTK_TEXT_VIEW (m_text
));
1326 GtkTextIter ifrom
, ito
;
1327 if ( gtk_text_buffer_get_selection_bounds(buffer
, &ifrom
, &ito
) )
1329 haveSelection
= TRUE
;
1330 from
= gtk_text_iter_get_offset(&ifrom
);
1331 to
= gtk_text_iter_get_offset(&ito
);
1334 else // not multi-line
1336 if ( gtk_editable_get_selection_bounds( GTK_EDITABLE(m_text
),
1339 haveSelection
= TRUE
;
1343 if ( (GTK_EDITABLE(m_text
)->has_selection
) )
1345 haveSelection
= TRUE
;
1346 from
= (long) GTK_EDITABLE(m_text
)->selection_start_pos
;
1347 to
= (long) GTK_EDITABLE(m_text
)->selection_end_pos
;
1351 if (! haveSelection
)
1352 from
= to
= GetInsertionPoint();
1356 // exchange them to be compatible with wxMSW
1369 bool wxTextCtrl::IsEditable() const
1371 wxCHECK_MSG( m_text
!= NULL
, FALSE
, wxT("invalid text ctrl") );
1374 if (m_windowStyle
& wxTE_MULTILINE
)
1376 return gtk_text_view_get_editable(GTK_TEXT_VIEW(m_text
));
1380 return gtk_editable_get_editable(GTK_EDITABLE(m_text
));
1383 return GTK_EDITABLE(m_text
)->editable
;
1387 bool wxTextCtrl::IsModified() const
1392 void wxTextCtrl::Clear()
1394 SetValue( wxT("") );
1397 void wxTextCtrl::OnChar( wxKeyEvent
&key_event
)
1399 wxCHECK_RET( m_text
!= NULL
, wxT("invalid text ctrl") );
1401 if ((key_event
.GetKeyCode() == WXK_RETURN
) && (m_windowStyle
& wxPROCESS_ENTER
))
1403 wxCommandEvent
event(wxEVT_COMMAND_TEXT_ENTER
, m_windowId
);
1404 event
.SetEventObject(this);
1405 event
.SetString(GetValue());
1406 if (GetEventHandler()->ProcessEvent(event
)) return;
1409 if ((key_event
.GetKeyCode() == WXK_RETURN
) && !(m_windowStyle
& wxTE_MULTILINE
))
1411 // This will invoke the dialog default action, such
1412 // as the clicking the default button.
1414 wxWindow
*top_frame
= m_parent
;
1415 while (top_frame
->GetParent() && !(top_frame
->IsTopLevel()))
1416 top_frame
= top_frame
->GetParent();
1418 if (top_frame
&& GTK_IS_WINDOW(top_frame
->m_widget
))
1420 GtkWindow
*window
= GTK_WINDOW(top_frame
->m_widget
);
1422 if (window
->default_widget
)
1424 gtk_widget_activate (window
->default_widget
);
1433 GtkWidget
* wxTextCtrl::GetConnectWidget()
1435 return GTK_WIDGET(m_text
);
1438 bool wxTextCtrl::IsOwnGtkWindow( GdkWindow
*window
)
1440 if (m_windowStyle
& wxTE_MULTILINE
)
1443 return window
== gtk_text_view_get_window( GTK_TEXT_VIEW( m_text
), GTK_TEXT_WINDOW_TEXT
); // pure guesswork
1445 return (window
== GTK_TEXT(m_text
)->text_area
);
1450 return (window
== GTK_ENTRY(m_text
)->text_area
);
1454 // the font will change for subsequent text insertiongs
1455 bool wxTextCtrl::SetFont( const wxFont
&font
)
1457 wxCHECK_MSG( m_text
!= NULL
, FALSE
, wxT("invalid text ctrl") );
1459 if ( !wxTextCtrlBase::SetFont(font
) )
1461 // font didn't change, nothing to do
1465 if ( m_windowStyle
& wxTE_MULTILINE
)
1467 SetUpdateFont(TRUE
);
1469 m_defaultStyle
.SetFont(font
);
1471 ChangeFontGlobally();
1477 void wxTextCtrl::ChangeFontGlobally()
1479 // this method is very inefficient and hence should be called as rarely as
1482 // TODO: it can be implemented much more efficiently for GTK2
1484 wxASSERT_MSG( (m_windowStyle
& wxTE_MULTILINE
) && m_updateFont
,
1486 _T("shouldn't be called for single line controls") );
1488 wxASSERT_MSG( (m_windowStyle
& wxTE_MULTILINE
),
1489 _T("shouldn't be called for single line controls") );
1492 wxString value
= GetValue();
1493 if ( !value
.IsEmpty() )
1495 SetUpdateFont(FALSE
);
1504 void wxTextCtrl::UpdateFontIfNeeded()
1507 ChangeFontGlobally();
1512 bool wxTextCtrl::SetForegroundColour(const wxColour
& colour
)
1514 if ( !wxControl::SetForegroundColour(colour
) )
1517 // update default fg colour too
1518 m_defaultStyle
.SetTextColour(colour
);
1523 bool wxTextCtrl::SetBackgroundColour( const wxColour
&colour
)
1525 wxCHECK_MSG( m_text
!= NULL
, FALSE
, wxT("invalid text ctrl") );
1527 if ( !wxControl::SetBackgroundColour( colour
) )
1531 if (!m_widget
->window
)
1535 if (!m_backgroundColour
.Ok())
1538 if (m_windowStyle
& wxTE_MULTILINE
)
1541 GdkWindow
*window
= GTK_TEXT(m_text
)->text_area
;
1544 m_backgroundColour
.CalcPixel( gdk_window_get_colormap( window
) );
1545 gdk_window_set_background( window
, m_backgroundColour
.GetColor() );
1546 gdk_window_clear( window
);
1550 // change active background color too
1551 m_defaultStyle
.SetBackgroundColour( colour
);
1556 bool wxTextCtrl::SetStyle( long start
, long end
, const wxTextAttr
& style
)
1558 if ( m_windowStyle
& wxTE_MULTILINE
)
1560 if ( style
.IsDefault() )
1566 GtkTextBuffer
*text_buffer
= gtk_text_view_get_buffer( GTK_TEXT_VIEW(m_text
) );
1567 gint l
= gtk_text_buffer_get_char_count( text_buffer
);
1569 wxCHECK_MSG( start
>= 0 && end
<= l
, FALSE
,
1570 _T("invalid range in wxTextCtrl::SetStyle") );
1572 GtkTextIter starti
, endi
;
1573 gtk_text_buffer_get_iter_at_offset( text_buffer
, &starti
, start
);
1574 gtk_text_buffer_get_iter_at_offset( text_buffer
, &endi
, end
);
1576 // use the attributes from style which are set in it and fall back
1577 // first to the default style and then to the text control default
1578 // colours for the others
1579 wxTextAttr attr
= wxTextAttr::Combine(style
, m_defaultStyle
, this);
1581 wxGtkTextApplyTagsFromAttr( text_buffer
, attr
, &starti
, &endi
);
1585 // VERY dirty way to do that - removes the required text and re-adds it
1586 // with styling (FIXME)
1588 gint l
= gtk_text_get_length( GTK_TEXT(m_text
) );
1590 wxCHECK_MSG( start
>= 0 && end
<= l
, FALSE
,
1591 _T("invalid range in wxTextCtrl::SetStyle") );
1593 gint old_pos
= gtk_editable_get_position( GTK_EDITABLE(m_text
) );
1594 char *text
= gtk_editable_get_chars( GTK_EDITABLE(m_text
), start
, end
);
1595 wxString
tmp(text
,*wxConvCurrent
);
1598 gtk_editable_delete_text( GTK_EDITABLE(m_text
), start
, end
);
1599 gtk_editable_set_position( GTK_EDITABLE(m_text
), start
);
1602 wxWX2MBbuf buf
= tmp
.mbc_str();
1603 const char *txt
= buf
;
1604 size_t txtlen
= strlen(buf
);
1606 const char *txt
= tmp
;
1607 size_t txtlen
= tmp
.length();
1610 // use the attributes from style which are set in it and fall back
1611 // first to the default style and then to the text control default
1612 // colours for the others
1613 wxGtkTextInsert(m_text
,
1614 wxTextAttr::Combine(style
, m_defaultStyle
, this),
1618 /* does not seem to help under GTK+ 1.2 !!!
1619 gtk_editable_set_position( GTK_EDITABLE(m_text), old_pos ); */
1620 SetInsertionPoint( old_pos
);
1626 // cannot do this for GTK+'s Entry widget
1631 void wxTextCtrl::DoApplyWidgetStyle(GtkRcStyle
*style
)
1633 gtk_widget_modify_style(m_text
, style
);
1636 void wxTextCtrl::OnCut(wxCommandEvent
& WXUNUSED(event
))
1641 void wxTextCtrl::OnCopy(wxCommandEvent
& WXUNUSED(event
))
1646 void wxTextCtrl::OnPaste(wxCommandEvent
& WXUNUSED(event
))
1651 void wxTextCtrl::OnUndo(wxCommandEvent
& WXUNUSED(event
))
1656 void wxTextCtrl::OnRedo(wxCommandEvent
& WXUNUSED(event
))
1661 void wxTextCtrl::OnUpdateCut(wxUpdateUIEvent
& event
)
1663 event
.Enable( CanCut() );
1666 void wxTextCtrl::OnUpdateCopy(wxUpdateUIEvent
& event
)
1668 event
.Enable( CanCopy() );
1671 void wxTextCtrl::OnUpdatePaste(wxUpdateUIEvent
& event
)
1673 event
.Enable( CanPaste() );
1676 void wxTextCtrl::OnUpdateUndo(wxUpdateUIEvent
& event
)
1678 event
.Enable( CanUndo() );
1681 void wxTextCtrl::OnUpdateRedo(wxUpdateUIEvent
& event
)
1683 event
.Enable( CanRedo() );
1686 void wxTextCtrl::OnInternalIdle()
1688 wxCursor cursor
= m_cursor
;
1689 if (g_globalCursor
.Ok()) cursor
= g_globalCursor
;
1694 GdkWindow
*window
= (GdkWindow
*) NULL
;
1695 if (HasFlag(wxTE_MULTILINE
))
1696 window
= GTK_TEXT(m_text
)->text_area
;
1698 window
= GTK_ENTRY(m_text
)->text_area
;
1701 gdk_window_set_cursor( window
, cursor
.GetCursor() );
1703 if (!g_globalCursor
.Ok())
1704 cursor
= *wxSTANDARD_CURSOR
;
1706 window
= m_widget
->window
;
1707 if ((window
) && !(GTK_WIDGET_NO_WINDOW(m_widget
)))
1708 gdk_window_set_cursor( window
, cursor
.GetCursor() );
1712 if (g_delayedFocus
== this)
1714 if (GTK_WIDGET_REALIZED(m_widget
))
1716 gtk_widget_grab_focus( m_widget
);
1717 g_delayedFocus
= NULL
;
1721 if (wxUpdateUIEvent::CanUpdate(this))
1722 UpdateWindowUI(wxUPDATE_UI_FROMIDLE
);
1725 wxSize
wxTextCtrl::DoGetBestSize() const
1727 // FIXME should be different for multi-line controls...
1728 wxSize
ret( wxControl::DoGetBestSize() );
1729 wxSize
best(80, ret
.y
);
1730 CacheBestSize(best
);
1734 // ----------------------------------------------------------------------------
1736 // ----------------------------------------------------------------------------
1738 void wxTextCtrl::Freeze()
1741 if ( HasFlag(wxTE_MULTILINE
) )
1743 gtk_text_freeze(GTK_TEXT(m_text
));
1748 void wxTextCtrl::Thaw()
1751 if ( HasFlag(wxTE_MULTILINE
) )
1753 GTK_TEXT(m_text
)->vadj
->value
= 0.0;
1755 gtk_text_thaw(GTK_TEXT(m_text
));
1760 // ----------------------------------------------------------------------------
1762 // ----------------------------------------------------------------------------
1764 GtkAdjustment
*wxTextCtrl::GetVAdj() const
1766 if ( !IsMultiLine() )
1770 return gtk_scrolled_window_get_vadjustment(GTK_SCROLLED_WINDOW(m_widget
));
1772 return GTK_TEXT(m_text
)->vadj
;
1776 bool wxTextCtrl::DoScroll(GtkAdjustment
*adj
, int diff
)
1778 float value
= adj
->value
+ diff
;
1783 float upper
= adj
->upper
- adj
->page_size
;
1784 if ( value
> upper
)
1787 // did we noticeably change the scroll position?
1788 if ( fabs(adj
->value
- value
) < 0.2 )
1790 // well, this is what Robert does in wxScrollBar, so it must be good...
1797 gtk_adjustment_value_changed(GTK_ADJUSTMENT(adj
));
1799 gtk_signal_emit_by_name(GTK_OBJECT(adj
), "value_changed");
1805 bool wxTextCtrl::ScrollLines(int lines
)
1807 GtkAdjustment
*adj
= GetVAdj();
1812 int diff
= (int)ceil(lines
*adj
->step_increment
);
1814 // this is hardcoded to 10 in GTK+ 1.2 (great idea)
1815 int diff
= 10*lines
;
1818 return DoScroll(adj
, diff
);
1821 bool wxTextCtrl::ScrollPages(int pages
)
1823 GtkAdjustment
*adj
= GetVAdj();
1827 return DoScroll(adj
, (int)ceil(pages
*adj
->page_increment
));
1833 wxTextCtrl::GetClassDefaultAttributes(wxWindowVariant
WXUNUSED(variant
))
1835 return GetDefaultAttributesFromGTKWidget(gtk_entry_new
, true);