1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/gtk/textctrl.cpp
4 // Author: Robert Roebling
6 // Copyright: (c) 1998 Robert Roebling, Vadim Zeitlin, 2005 Mart Raudsepp
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
10 // For compilers that support precompilation, includes "wx.h".
11 #include "wx/wxprec.h"
13 #include "wx/textctrl.h"
20 #include "wx/settings.h"
24 #include "wx/strconv.h"
25 #include "wx/fontutil.h" // for wxNativeFontInfo (GetNativeFontInfo())
27 #include <sys/types.h>
31 #include "wx/gtk/private.h"
32 #include <gdk/gdkkeysyms.h>
34 // ----------------------------------------------------------------------------
36 // ----------------------------------------------------------------------------
39 static void wxGtkOnRemoveTag(GtkTextBuffer
*buffer
,
46 g_object_get (tag
, "name", &name
, NULL
);
48 if (!name
|| strncmp(name
, prefix
, strlen(prefix
)))
49 // anonymous tag or not starting with prefix - don't remove
50 g_signal_stop_emission_by_name (buffer
, "remove_tag");
57 static void wxGtkTextApplyTagsFromAttr(GtkTextBuffer
*text_buffer
,
58 const wxTextAttr
& attr
,
62 static gchar buf
[1024];
65 gulong remove_handler_id
= g_signal_connect (text_buffer
, "remove_tag",
66 G_CALLBACK (wxGtkOnRemoveTag
), gpointer("WX"));
67 gtk_text_buffer_remove_all_tags(text_buffer
, start
, end
);
68 g_signal_handler_disconnect (text_buffer
, remove_handler_id
);
72 PangoFontDescription
*font_description
= attr
.GetFont().GetNativeFontInfo()->description
;
73 wxGtkString
font_string(pango_font_description_to_string(font_description
));
74 g_snprintf(buf
, sizeof(buf
), "WXFONT %s", font_string
.c_str());
75 tag
= gtk_text_tag_table_lookup( gtk_text_buffer_get_tag_table( text_buffer
),
78 tag
= gtk_text_buffer_create_tag( text_buffer
, buf
,
79 "font-desc", font_description
,
81 gtk_text_buffer_apply_tag (text_buffer
, tag
, start
, end
);
83 if (attr
.GetFont().GetUnderlined())
85 g_snprintf(buf
, sizeof(buf
), "WXFONTUNDERLINE");
86 tag
= gtk_text_tag_table_lookup( gtk_text_buffer_get_tag_table( text_buffer
),
89 tag
= gtk_text_buffer_create_tag( text_buffer
, buf
,
90 "underline-set", TRUE
,
91 "underline", PANGO_UNDERLINE_SINGLE
,
93 gtk_text_buffer_apply_tag (text_buffer
, tag
, start
, end
);
97 if (attr
.HasTextColour())
99 const GdkColor
*colFg
= attr
.GetTextColour().GetColor();
100 g_snprintf(buf
, sizeof(buf
), "WXFORECOLOR %d %d %d",
101 colFg
->red
, colFg
->green
, colFg
->blue
);
102 tag
= gtk_text_tag_table_lookup( gtk_text_buffer_get_tag_table( text_buffer
),
105 tag
= gtk_text_buffer_create_tag( text_buffer
, buf
,
106 "foreground-gdk", colFg
, NULL
);
107 gtk_text_buffer_apply_tag (text_buffer
, tag
, start
, end
);
110 if (attr
.HasBackgroundColour())
112 const GdkColor
*colBg
= attr
.GetBackgroundColour().GetColor();
113 g_snprintf(buf
, sizeof(buf
), "WXBACKCOLOR %d %d %d",
114 colBg
->red
, colBg
->green
, colBg
->blue
);
115 tag
= gtk_text_tag_table_lookup( gtk_text_buffer_get_tag_table( text_buffer
),
118 tag
= gtk_text_buffer_create_tag( text_buffer
, buf
,
119 "background-gdk", colBg
, NULL
);
120 gtk_text_buffer_apply_tag (text_buffer
, tag
, start
, end
);
123 if (attr
.HasAlignment())
125 GtkTextIter para_start
, para_end
= *end
;
126 gtk_text_buffer_get_iter_at_line( text_buffer
,
128 gtk_text_iter_get_line(start
) );
129 gtk_text_iter_forward_line(¶_end
);
131 remove_handler_id
= g_signal_connect (text_buffer
, "remove_tag",
132 G_CALLBACK(wxGtkOnRemoveTag
),
133 gpointer("WXALIGNMENT"));
134 gtk_text_buffer_remove_all_tags( text_buffer
, ¶_start
, ¶_end
);
135 g_signal_handler_disconnect (text_buffer
, remove_handler_id
);
137 GtkJustification align
;
138 switch (attr
.GetAlignment())
141 align
= GTK_JUSTIFY_LEFT
;
143 case wxTEXT_ALIGNMENT_RIGHT
:
144 align
= GTK_JUSTIFY_RIGHT
;
146 case wxTEXT_ALIGNMENT_CENTER
:
147 align
= GTK_JUSTIFY_CENTER
;
149 // gtk+ doesn't support justify as of gtk+-2.7.4
152 g_snprintf(buf
, sizeof(buf
), "WXALIGNMENT %d", align
);
153 tag
= gtk_text_tag_table_lookup( gtk_text_buffer_get_tag_table( text_buffer
),
156 tag
= gtk_text_buffer_create_tag( text_buffer
, buf
,
157 "justification", align
, NULL
);
158 gtk_text_buffer_apply_tag( text_buffer
, tag
, ¶_start
, ¶_end
);
164 static void wxGtkTextInsert(GtkWidget
*text
,
165 GtkTextBuffer
*text_buffer
,
166 const wxTextAttr
& attr
,
167 const wxCharBuffer
& buffer
)
171 GtkTextIter iter
, start
;
173 gtk_text_buffer_get_iter_at_mark( text_buffer
, &iter
,
174 gtk_text_buffer_get_insert (text_buffer
) );
175 start_offset
= gtk_text_iter_get_offset (&iter
);
176 gtk_text_buffer_insert( text_buffer
, &iter
, buffer
, strlen(buffer
) );
178 gtk_text_buffer_get_iter_at_offset (text_buffer
, &start
, start_offset
);
180 wxGtkTextApplyTagsFromAttr(text_buffer
, attr
, &start
, &iter
);
184 // ----------------------------------------------------------------------------
185 // "insert_text" for GtkEntry
186 // ----------------------------------------------------------------------------
190 gtk_insert_text_callback(GtkEditable
*editable
,
191 const gchar
*new_text
,
192 gint new_text_length
,
197 wxapp_install_idle_handler();
199 // we should only be called if we have a max len limit at all
200 GtkEntry
*entry
= GTK_ENTRY (editable
);
202 wxCHECK_RET( entry
->text_max_length
, _T("shouldn't be called") );
204 // check that we don't overflow the max length limit
206 // FIXME: this doesn't work when we paste a string which is going to be
208 if ( entry
->text_length
== entry
->text_max_length
)
210 // we don't need to run the base class version at all
211 g_signal_stop_emission_by_name (editable
, "insert_text");
213 // remember that the next changed signal is to be ignored to avoid
214 // generating a dummy wxEVT_COMMAND_TEXT_UPDATED event
215 win
->IgnoreNextTextUpdate();
217 // and generate the correct one ourselves
218 wxCommandEvent
event(wxEVT_COMMAND_TEXT_MAXLEN
, win
->GetId());
219 event
.SetEventObject(win
);
220 event
.SetString(win
->GetValue());
221 win
->GetEventHandler()->ProcessEvent( event
);
226 // Implementation of wxTE_AUTO_URL for wxGTK2 by Mart Raudsepp,
230 au_apply_tag_callback(GtkTextBuffer
*buffer
,
236 if(tag
== gtk_text_tag_table_lookup(gtk_text_buffer_get_tag_table(buffer
), "wxUrl"))
237 g_signal_stop_emission_by_name (buffer
, "apply_tag");
241 //-----------------------------------------------------------------------------
242 // GtkTextCharPredicates for gtk_text_iter_*_find_char
243 //-----------------------------------------------------------------------------
247 pred_whitespace (gunichar ch
, gpointer user_data
)
249 return g_unichar_isspace(ch
);
255 pred_non_whitespace (gunichar ch
, gpointer user_data
)
257 return !g_unichar_isspace(ch
);
263 pred_nonpunct (gunichar ch
, gpointer user_data
)
265 return !g_unichar_ispunct(ch
);
271 pred_nonpunct_or_slash (gunichar ch
, gpointer user_data
)
273 return !g_unichar_ispunct(ch
) || ch
== '/';
277 //-----------------------------------------------------------------------------
278 // Check for links between s and e and correct tags as necessary
279 //-----------------------------------------------------------------------------
281 // This function should be made match better while being efficient at one point.
282 // Most probably with a row of regular expressions.
285 au_check_word( GtkTextIter
*s
, GtkTextIter
*e
)
287 static const char *URIPrefixes
[] =
305 GtkTextIter start
= *s
, end
= *e
;
306 GtkTextBuffer
*buffer
= gtk_text_iter_get_buffer(s
);
308 // Get our special link tag
309 GtkTextTag
*tag
= gtk_text_tag_table_lookup(gtk_text_buffer_get_tag_table(buffer
), "wxUrl");
311 // Get rid of punctuation from beginning and end.
312 // Might want to move this to au_check_range if an improved link checking doesn't
313 // use some intelligent punctuation checking itself (beware of undesired iter modifications).
314 if(g_unichar_ispunct( gtk_text_iter_get_char( &start
) ) )
315 gtk_text_iter_forward_find_char( &start
, pred_nonpunct
, NULL
, e
);
317 gtk_text_iter_backward_find_char( &end
, pred_nonpunct_or_slash
, NULL
, &start
);
318 gtk_text_iter_forward_char(&end
);
320 gchar
* text
= gtk_text_iter_get_text( &start
, &end
);
321 size_t len
= strlen(text
), prefix_len
;
324 for( n
= 0; n
< WXSIZEOF(URIPrefixes
); ++n
)
326 prefix_len
= strlen(URIPrefixes
[n
]);
327 if((len
> prefix_len
) && !strncasecmp(text
, URIPrefixes
[n
], prefix_len
))
331 if(n
< WXSIZEOF(URIPrefixes
))
333 gulong signal_id
= g_signal_handler_find (buffer
,
334 (GSignalMatchType
) (G_SIGNAL_MATCH_FUNC
),
336 (gpointer
)au_apply_tag_callback
, NULL
);
338 g_signal_handler_block (buffer
, signal_id
);
339 gtk_text_buffer_apply_tag(buffer
, tag
, &start
, &end
);
340 g_signal_handler_unblock (buffer
, signal_id
);
347 au_check_range(GtkTextIter
*s
,
348 GtkTextIter
*range_end
)
350 GtkTextIter range_start
= *s
;
351 GtkTextIter word_end
;
352 GtkTextBuffer
*buffer
= gtk_text_iter_get_buffer(s
);
353 GtkTextTag
*tag
= gtk_text_tag_table_lookup(gtk_text_buffer_get_tag_table(buffer
), "wxUrl");
355 gtk_text_buffer_remove_tag(buffer
, tag
, s
, range_end
);
357 if(g_unichar_isspace(gtk_text_iter_get_char(&range_start
)))
358 gtk_text_iter_forward_find_char(&range_start
, pred_non_whitespace
, NULL
, range_end
);
360 while(!gtk_text_iter_equal(&range_start
, range_end
))
362 word_end
= range_start
;
363 gtk_text_iter_forward_find_char(&word_end
, pred_whitespace
, NULL
, range_end
);
365 // Now we should have a word delimited by range_start and word_end, correct link tags
366 au_check_word(&range_start
, &word_end
);
368 range_start
= word_end
;
369 gtk_text_iter_forward_find_char(&range_start
, pred_non_whitespace
, NULL
, range_end
);
374 //-----------------------------------------------------------------------------
375 // "insert-text" for GtkTextBuffer
376 //-----------------------------------------------------------------------------
380 au_insert_text_callback(GtkTextBuffer
*buffer
,
386 if (!len
|| !(win
->GetWindowStyleFlag() & wxTE_AUTO_URL
) )
389 GtkTextIter start
= *end
;
390 gtk_text_iter_backward_chars(&start
, g_utf8_strlen(text
, len
));
392 GtkTextIter line_start
= start
;
393 GtkTextIter line_end
= *end
;
394 GtkTextIter words_start
= start
;
395 GtkTextIter words_end
= *end
;
397 gtk_text_iter_set_line(&line_start
, gtk_text_iter_get_line(&start
));
398 gtk_text_iter_forward_to_line_end(&line_end
);
399 gtk_text_iter_backward_find_char(&words_start
, pred_whitespace
, NULL
, &line_start
);
400 gtk_text_iter_forward_find_char(&words_end
, pred_whitespace
, NULL
, &line_end
);
402 au_check_range(&words_start
, &words_end
);
406 //-----------------------------------------------------------------------------
407 // "delete-range" for GtkTextBuffer
408 //-----------------------------------------------------------------------------
412 au_delete_range_callback(GtkTextBuffer
*buffer
,
417 if( !(win
->GetWindowStyleFlag() & wxTE_AUTO_URL
) )
420 GtkTextIter line_start
= *start
, line_end
= *end
;
422 gtk_text_iter_set_line(&line_start
, gtk_text_iter_get_line(start
));
423 gtk_text_iter_forward_to_line_end(&line_end
);
424 gtk_text_iter_backward_find_char(start
, pred_whitespace
, NULL
, &line_start
);
425 gtk_text_iter_forward_find_char(end
, pred_whitespace
, NULL
, &line_end
);
427 au_check_range(start
, end
);
432 //-----------------------------------------------------------------------------
434 //-----------------------------------------------------------------------------
438 gtk_text_changed_callback( GtkWidget
*widget
, wxTextCtrl
*win
)
440 if ( win
->IgnoreTextUpdate() )
443 if (!win
->m_hasVMT
) return;
446 wxapp_install_idle_handler();
448 if ( win
->MarkDirtyOnChange() )
451 wxCommandEvent
event( wxEVT_COMMAND_TEXT_UPDATED
, win
->GetId() );
452 event
.SetEventObject( win
);
453 win
->GetEventHandler()->ProcessEvent( event
);
457 //-----------------------------------------------------------------------------
458 // clipboard events: "copy-clipboard", "cut-clipboard", "paste-clipboard"
459 //-----------------------------------------------------------------------------
461 // common part of the event handlers below
463 handle_text_clipboard_callback( GtkWidget
*widget
, wxTextCtrl
*win
,
464 wxEventType eventType
, const gchar
* signal_name
)
466 wxClipboardTextEvent
event( eventType
, win
->GetId() );
467 event
.SetEventObject( win
);
468 if ( win
->GetEventHandler()->ProcessEvent( event
) )
470 // don't let the default processing to take place if we did something
471 // ourselves in the event handler
472 g_signal_stop_emission_by_name (widget
, signal_name
);
478 gtk_copy_clipboard_callback( GtkWidget
*widget
, wxTextCtrl
*win
)
480 handle_text_clipboard_callback(
481 widget
, win
, wxEVT_COMMAND_TEXT_COPY
, "copy-clipboard" );
485 gtk_cut_clipboard_callback( GtkWidget
*widget
, wxTextCtrl
*win
)
487 handle_text_clipboard_callback(
488 widget
, win
, wxEVT_COMMAND_TEXT_CUT
, "cut-clipboard" );
492 gtk_paste_clipboard_callback( GtkWidget
*widget
, wxTextCtrl
*win
)
494 handle_text_clipboard_callback(
495 widget
, win
, wxEVT_COMMAND_TEXT_PASTE
, "paste-clipboard" );
499 //-----------------------------------------------------------------------------
500 // "expose_event" from scrolled window and textview
501 //-----------------------------------------------------------------------------
505 gtk_text_exposed_callback( GtkWidget
*widget
, GdkEventExpose
*event
, wxTextCtrl
*win
)
512 //-----------------------------------------------------------------------------
514 //-----------------------------------------------------------------------------
516 IMPLEMENT_DYNAMIC_CLASS(wxTextCtrl
, wxTextCtrlBase
)
518 BEGIN_EVENT_TABLE(wxTextCtrl
, wxTextCtrlBase
)
519 EVT_CHAR(wxTextCtrl::OnChar
)
521 EVT_MENU(wxID_CUT
, wxTextCtrl::OnCut
)
522 EVT_MENU(wxID_COPY
, wxTextCtrl::OnCopy
)
523 EVT_MENU(wxID_PASTE
, wxTextCtrl::OnPaste
)
524 EVT_MENU(wxID_UNDO
, wxTextCtrl::OnUndo
)
525 EVT_MENU(wxID_REDO
, wxTextCtrl::OnRedo
)
527 EVT_UPDATE_UI(wxID_CUT
, wxTextCtrl::OnUpdateCut
)
528 EVT_UPDATE_UI(wxID_COPY
, wxTextCtrl::OnUpdateCopy
)
529 EVT_UPDATE_UI(wxID_PASTE
, wxTextCtrl::OnUpdatePaste
)
530 EVT_UPDATE_UI(wxID_UNDO
, wxTextCtrl::OnUpdateUndo
)
531 EVT_UPDATE_UI(wxID_REDO
, wxTextCtrl::OnUpdateRedo
)
533 // wxTE_AUTO_URL wxTextUrl support. Currently only creates
534 // wxTextUrlEvent in the same cases as wxMSW, more can be added here.
535 EVT_MOTION (wxTextCtrl::OnUrlMouseEvent
)
536 EVT_LEFT_DOWN (wxTextCtrl::OnUrlMouseEvent
)
537 EVT_LEFT_UP (wxTextCtrl::OnUrlMouseEvent
)
538 EVT_LEFT_DCLICK (wxTextCtrl::OnUrlMouseEvent
)
539 EVT_RIGHT_DOWN (wxTextCtrl::OnUrlMouseEvent
)
540 EVT_RIGHT_UP (wxTextCtrl::OnUrlMouseEvent
)
541 EVT_RIGHT_DCLICK(wxTextCtrl::OnUrlMouseEvent
)
544 void wxTextCtrl::Init()
550 SetUpdateFont(false);
554 m_gdkHandCursor
= NULL
;
555 m_gdkXTermCursor
= NULL
;
558 wxTextCtrl::~wxTextCtrl()
561 gdk_cursor_unref(m_gdkHandCursor
);
563 gdk_cursor_unref(m_gdkXTermCursor
);
566 wxTextCtrl::wxTextCtrl( wxWindow
*parent
,
568 const wxString
&value
,
572 const wxValidator
& validator
,
573 const wxString
&name
)
577 Create( parent
, id
, value
, pos
, size
, style
, validator
, name
);
580 bool wxTextCtrl::Create( wxWindow
*parent
,
582 const wxString
&value
,
586 const wxValidator
& validator
,
587 const wxString
&name
)
590 m_acceptsFocus
= true;
592 if (!PreCreation( parent
, pos
, size
) ||
593 !CreateBase( parent
, id
, pos
, size
, style
, validator
, name
))
595 wxFAIL_MSG( wxT("wxTextCtrl creation failed") );
599 bool multi_line
= (style
& wxTE_MULTILINE
) != 0;
604 m_text
= gtk_text_view_new();
606 m_buffer
= gtk_text_view_get_buffer( GTK_TEXT_VIEW(m_text
) );
608 // create scrolled window
609 m_widget
= gtk_scrolled_window_new( NULL
, NULL
);
610 gtk_scrolled_window_set_policy( GTK_SCROLLED_WINDOW( m_widget
),
611 GTK_POLICY_AUTOMATIC
, GTK_POLICY_AUTOMATIC
);
612 // for ScrollLines/Pages
613 m_scrollBar
[1] = (GtkRange
*)((GtkScrolledWindow
*)m_widget
)->vscrollbar
;
615 // Insert view into scrolled window
616 gtk_container_add( GTK_CONTAINER(m_widget
), m_text
);
618 // translate wx wrapping style to GTK+
620 if ( HasFlag( wxTE_DONTWRAP
) )
621 wrap
= GTK_WRAP_NONE
;
622 else if ( HasFlag( wxTE_CHARWRAP
) )
623 wrap
= GTK_WRAP_CHAR
;
624 else if ( HasFlag( wxTE_WORDWRAP
) )
625 wrap
= GTK_WRAP_WORD
;
626 else // HasFlag(wxTE_BESTWRAP) always true as wxTE_BESTWRAP == 0
628 // GTK_WRAP_WORD_CHAR seems to be new in GTK+ 2.4
630 if ( !gtk_check_version(2,4,0) )
632 wrap
= GTK_WRAP_WORD_CHAR
;
636 wrap
= GTK_WRAP_WORD
;
639 gtk_text_view_set_wrap_mode( GTK_TEXT_VIEW( m_text
), wrap
);
641 GtkScrolledWindowSetBorder(m_widget
, style
);
643 gtk_widget_add_events( GTK_WIDGET(m_text
), GDK_ENTER_NOTIFY_MASK
| GDK_LEAVE_NOTIFY_MASK
);
645 GTK_WIDGET_UNSET_FLAGS( m_widget
, GTK_CAN_FOCUS
);
649 // a single-line text control: no need for scrollbars
651 m_text
= gtk_entry_new();
653 if (style
& wxNO_BORDER
)
654 g_object_set (m_text
, "has-frame", FALSE
, NULL
);
657 m_parent
->DoAddChild( this );
659 m_focusWidget
= m_text
;
665 gtk_widget_show(m_text
);
673 if (style
& wxTE_PASSWORD
)
676 gtk_entry_set_visibility( GTK_ENTRY(m_text
), FALSE
);
679 if (style
& wxTE_READONLY
)
682 gtk_editable_set_editable( GTK_EDITABLE(m_text
), FALSE
);
684 gtk_text_view_set_editable( GTK_TEXT_VIEW( m_text
), FALSE
);
689 if (style
& wxTE_RIGHT
)
690 gtk_text_view_set_justification( GTK_TEXT_VIEW(m_text
), GTK_JUSTIFY_RIGHT
);
691 else if (style
& wxTE_CENTRE
)
692 gtk_text_view_set_justification( GTK_TEXT_VIEW(m_text
), GTK_JUSTIFY_CENTER
);
693 // Left justify (alignment) is the default and we don't need to apply GTK_JUSTIFY_LEFT
698 // gtk_entry_set_alignment was introduced in gtk+-2.3.5
699 if (!gtk_check_version(2,4,0))
701 if (style
& wxTE_RIGHT
)
702 gtk_entry_set_alignment( GTK_ENTRY(m_text
), 1.0 );
703 else if (style
& wxTE_CENTRE
)
704 gtk_entry_set_alignment( GTK_ENTRY(m_text
), 0.5 );
709 // We want to be notified about text changes.
712 g_signal_connect (m_buffer
, "changed",
713 G_CALLBACK (gtk_text_changed_callback
), this);
715 // .. and handle URLs on multi-line controls with wxTE_AUTO_URL style
716 if (style
& wxTE_AUTO_URL
)
718 GtkTextIter start
, end
;
719 m_gdkHandCursor
= gdk_cursor_new(GDK_HAND2
);
720 m_gdkXTermCursor
= gdk_cursor_new(GDK_XTERM
);
722 // We create our wxUrl tag here for slight efficiency gain - we
723 // don't have to check for the tag existance in callbacks,
724 // hereby it's guaranteed to exist.
725 gtk_text_buffer_create_tag(m_buffer
, "wxUrl",
726 "foreground", "blue",
727 "underline", PANGO_UNDERLINE_SINGLE
,
730 // Check for URLs after each text change
731 g_signal_connect_after (m_buffer
, "insert_text",
732 G_CALLBACK (au_insert_text_callback
), this);
733 g_signal_connect_after (m_buffer
, "delete_range",
734 G_CALLBACK (au_delete_range_callback
), this);
736 // Block all wxUrl tag applying unless we do it ourselves, in which case we
737 // block this callback temporarily. This takes care of gtk+ internal
738 // gtk_text_buffer_insert_range* calls that would copy our URL tag otherwise,
739 // which is undesired because only a part of the URL might be copied.
740 // The insert-text signal emitted inside it will take care of newly formed
741 // or wholly copied URLs.
742 g_signal_connect (m_buffer
, "apply_tag",
743 G_CALLBACK (au_apply_tag_callback
), NULL
);
745 // Check for URLs in the initial string passed to Create
746 gtk_text_buffer_get_start_iter(m_buffer
, &start
);
747 gtk_text_buffer_get_end_iter(m_buffer
, &end
);
748 au_check_range(&start
, &end
);
753 g_signal_connect (m_text
, "changed",
754 G_CALLBACK (gtk_text_changed_callback
), this);
757 g_signal_connect (m_text
, "copy-clipboard",
758 G_CALLBACK (gtk_copy_clipboard_callback
), this);
759 g_signal_connect (m_text
, "cut-clipboard",
760 G_CALLBACK (gtk_cut_clipboard_callback
), this);
761 g_signal_connect (m_text
, "paste-clipboard",
762 G_CALLBACK (gtk_paste_clipboard_callback
), this);
764 m_cursor
= wxCursor( wxCURSOR_IBEAM
);
766 wxTextAttr
attrDef(GetForegroundColour(), GetBackgroundColour(), GetFont());
767 SetDefaultStyle( attrDef
);
773 void wxTextCtrl::CalculateScrollbar()
777 wxString
wxTextCtrl::GetValue() const
779 wxCHECK_MSG( m_text
!= NULL
, wxEmptyString
, wxT("invalid text ctrl") );
785 gtk_text_buffer_get_start_iter( m_buffer
, &start
);
787 gtk_text_buffer_get_end_iter( m_buffer
, &end
);
788 wxGtkString
text(gtk_text_buffer_get_text(m_buffer
, &start
, &end
, true));
790 const wxWxCharBuffer buf
= wxGTK_CONV_BACK(text
);
796 const gchar
*text
= gtk_entry_get_text( GTK_ENTRY(m_text
) );
797 const wxWxCharBuffer buf
= wxGTK_CONV_BACK( text
);
805 wxFontEncoding
wxTextCtrl::GetTextEncoding() const
807 // GTK+ uses UTF-8 internally, we need to convert to it but from which
810 // first check the default text style (we intentionally don't check the
811 // style for the current position as it doesn't make sense for SetValue())
812 const wxTextAttr
& style
= GetDefaultStyle();
813 wxFontEncoding enc
= style
.HasFont() ? style
.GetFont().GetEncoding()
814 : wxFONTENCODING_SYSTEM
;
816 // fall back to the controls font if no style
817 if ( enc
== wxFONTENCODING_SYSTEM
&& m_hasFont
)
818 enc
= GetFont().GetEncoding();
823 void wxTextCtrl::SetValue( const wxString
&value
)
825 wxCHECK_RET( m_text
!= NULL
, wxT("invalid text ctrl") );
827 // the control won't be modified any more as we programmatically replace
828 // all the existing text, so reset the flag and don't set it again (and do
829 // it now, before the text event handler is ran so that IsModified() called
830 // from there returns the expected value)
832 DontMarkDirtyOnNextChange();
836 const wxCharBuffer
buffer(wxGTK_CONV_ENC(value
, GetTextEncoding()));
839 // see comment in WriteText() as to why we must warn the user about
841 wxLogWarning(_("Failed to set text in the text control."));
845 if (gtk_text_buffer_get_char_count(m_buffer
) != 0)
846 IgnoreNextTextUpdate();
848 gtk_text_buffer_set_text( m_buffer
, buffer
, strlen(buffer
) );
852 // gtk_entry_set_text() emits two "changed" signals if the control is
853 // not empty because internally it calls gtk_editable_delete_text() and
854 // gtk_editable_insert_text() but we want to have only one event
855 if ( !GetValue().empty() )
856 IgnoreNextTextUpdate();
858 gtk_entry_set_text( GTK_ENTRY(m_text
), wxGTK_CONV(value
) );
861 // GRG, Jun/2000: Changed this after a lot of discussion in
862 // the lists. wxWidgets 2.2 will have a set of flags to
863 // customize this behaviour.
864 SetInsertionPoint(0);
867 void wxTextCtrl::WriteText( const wxString
&text
)
869 wxCHECK_RET( m_text
!= NULL
, wxT("invalid text ctrl") );
874 // check if we have a specific style for the current position
875 wxFontEncoding enc
= wxFONTENCODING_SYSTEM
;
877 if ( GetStyle(GetInsertionPoint(), style
) && style
.HasFont() )
879 enc
= style
.GetFont().GetEncoding();
882 if ( enc
== wxFONTENCODING_SYSTEM
)
883 enc
= GetTextEncoding();
885 const wxCharBuffer
buffer(wxGTK_CONV_ENC(text
, enc
));
888 // we must log an error here as losing the text like this can be a
889 // serious problem (e.g. imagine the document edited by user being
890 // empty instead of containing the correct text)
891 wxLogWarning(_("Failed to insert text in the control."));
895 // we're changing the text programmatically
896 DontMarkDirtyOnNextChange();
900 // First remove the selection if there is one
901 // TODO: Is there an easier GTK specific way to do this?
903 GetSelection(&from
, &to
);
908 wxGtkTextInsert( m_text
, m_buffer
, m_defaultStyle
, buffer
);
910 GtkAdjustment
*adj
= gtk_scrolled_window_get_vadjustment( GTK_SCROLLED_WINDOW(m_widget
) );
911 // Scroll to cursor, but only if scrollbar thumb is at the very bottom
912 if ( wxIsSameDouble(adj
->value
, adj
->upper
- adj
->page_size
) )
914 gtk_text_view_scroll_to_mark( GTK_TEXT_VIEW(m_text
),
915 gtk_text_buffer_get_insert( m_buffer
), 0.0, FALSE
, 0.0, 1.0 );
920 // First remove the selection if there is one
921 gtk_editable_delete_selection( GTK_EDITABLE(m_text
) );
923 // This moves the cursor pos to behind the inserted text.
924 gint len
= gtk_editable_get_position(GTK_EDITABLE(m_text
));
926 gtk_editable_insert_text( GTK_EDITABLE(m_text
), buffer
, strlen(buffer
), &len
);
928 // Bring entry's cursor uptodate.
929 gtk_editable_set_position( GTK_EDITABLE(m_text
), len
);
933 void wxTextCtrl::AppendText( const wxString
&text
)
935 SetInsertionPointEnd();
939 wxString
wxTextCtrl::GetLineText( long lineNo
) const
945 gtk_text_buffer_get_iter_at_line(m_buffer
,&line
,lineNo
);
946 GtkTextIter end
= line
;
947 gtk_text_iter_forward_to_line_end(&end
);
948 wxGtkString
text(gtk_text_buffer_get_text(m_buffer
, &line
, &end
, true));
949 result
= wxGTK_CONV_BACK(text
);
959 void wxTextCtrl::OnDropFiles( wxDropFilesEvent
&WXUNUSED(event
) )
961 /* If you implement this, don't forget to update the documentation!
962 * (file docs/latex/wx/text.tex) */
963 wxFAIL_MSG( wxT("wxTextCtrl::OnDropFiles not implemented") );
966 bool wxTextCtrl::PositionToXY(long pos
, long *x
, long *y
) const
972 if (pos
> GetLastPosition())
975 gtk_text_buffer_get_iter_at_offset(m_buffer
, &iter
, pos
);
978 *y
= gtk_text_iter_get_line(&iter
);
980 *x
= gtk_text_iter_get_line_offset(&iter
);
982 else // single line control
984 if ( pos
<= GTK_ENTRY(m_text
)->text_length
)
993 // index out of bounds
1001 long wxTextCtrl::XYToPosition(long x
, long y
) const
1003 if ( IsSingleLine() )
1007 if (y
>= gtk_text_buffer_get_line_count (m_buffer
))
1010 gtk_text_buffer_get_iter_at_line(m_buffer
, &iter
, y
);
1011 if (x
>= gtk_text_iter_get_chars_in_line (&iter
))
1014 return gtk_text_iter_get_offset(&iter
) + x
;
1017 int wxTextCtrl::GetLineLength(long lineNo
) const
1019 if ( IsMultiLine() )
1021 int last_line
= gtk_text_buffer_get_line_count( m_buffer
) - 1;
1022 if (lineNo
> last_line
)
1026 gtk_text_buffer_get_iter_at_line(m_buffer
, &iter
, lineNo
);
1027 // get_chars_in_line return includes paragraph delimiters, so need to subtract 1 IF it is not the last line
1028 return gtk_text_iter_get_chars_in_line(&iter
) - ((lineNo
== last_line
) ? 0 : 1);
1032 wxString str
= GetLineText (lineNo
);
1033 return (int) str
.length();
1037 int wxTextCtrl::GetNumberOfLines() const
1039 if ( IsMultiLine() )
1042 gtk_text_buffer_get_iter_at_offset( m_buffer
, &iter
, 0 );
1044 // move forward by one display line until the end is reached
1046 while ( gtk_text_view_forward_display_line(GTK_TEXT_VIEW(m_text
), &iter
) )
1051 // If the last character in the text buffer is a newline,
1052 // gtk_text_view_forward_display_line() will return false without that
1053 // line being counted. Must add one manually in that case.
1054 GtkTextIter lastCharIter
;
1055 gtk_text_buffer_get_iter_at_offset
1059 gtk_text_buffer_get_char_count(m_buffer
) - 1
1061 gchar lastChar
= gtk_text_iter_get_char( &lastCharIter
);
1062 if ( lastChar
== wxT('\n') )
1073 void wxTextCtrl::SetInsertionPoint( long pos
)
1075 wxCHECK_RET( m_text
!= NULL
, wxT("invalid text ctrl") );
1077 if ( IsMultiLine() )
1080 gtk_text_buffer_get_iter_at_offset( m_buffer
, &iter
, pos
);
1081 gtk_text_buffer_place_cursor( m_buffer
, &iter
);
1082 gtk_text_view_scroll_mark_onscreen
1084 GTK_TEXT_VIEW(m_text
),
1085 gtk_text_buffer_get_insert( m_buffer
)
1090 // FIXME: Is the editable's cursor really uptodate without double set_position in GTK2?
1091 gtk_editable_set_position(GTK_EDITABLE(m_text
), int(pos
));
1095 void wxTextCtrl::SetInsertionPointEnd()
1097 wxCHECK_RET( m_text
!= NULL
, wxT("invalid text ctrl") );
1099 if ( IsMultiLine() )
1102 gtk_text_buffer_get_end_iter( m_buffer
, &end
);
1103 gtk_text_buffer_place_cursor( m_buffer
, &end
);
1107 gtk_editable_set_position( GTK_EDITABLE(m_text
), -1 );
1111 void wxTextCtrl::SetEditable( bool editable
)
1113 wxCHECK_RET( m_text
!= NULL
, wxT("invalid text ctrl") );
1115 if ( IsMultiLine() )
1117 gtk_text_view_set_editable( GTK_TEXT_VIEW(m_text
), editable
);
1121 gtk_editable_set_editable( GTK_EDITABLE(m_text
), editable
);
1125 bool wxTextCtrl::Enable( bool enable
)
1127 if (!wxWindowBase::Enable(enable
))
1133 if ( IsMultiLine() )
1135 SetEditable( enable
);
1139 gtk_widget_set_sensitive( m_text
, enable
);
1145 // wxGTK-specific: called recursively by Enable,
1146 // to give widgets an oppprtunity to correct their colours after they
1147 // have been changed by Enable
1148 void wxTextCtrl::OnParentEnable( bool enable
)
1150 // If we have a custom background colour, we use this colour in both
1151 // disabled and enabled mode, or we end up with a different colour under the
1153 wxColour oldColour
= GetBackgroundColour();
1156 // Need to set twice or it'll optimize the useful stuff out
1157 if (oldColour
== * wxWHITE
)
1158 SetBackgroundColour(*wxBLACK
);
1160 SetBackgroundColour(*wxWHITE
);
1161 SetBackgroundColour(oldColour
);
1165 void wxTextCtrl::MarkDirty()
1170 void wxTextCtrl::DiscardEdits()
1175 // ----------------------------------------------------------------------------
1176 // max text length support
1177 // ----------------------------------------------------------------------------
1179 bool wxTextCtrl::IgnoreTextUpdate()
1181 if ( m_ignoreNextUpdate
)
1183 m_ignoreNextUpdate
= false;
1191 bool wxTextCtrl::MarkDirtyOnChange()
1193 if ( m_dontMarkDirty
)
1195 m_dontMarkDirty
= false;
1203 void wxTextCtrl::SetMaxLength(unsigned long len
)
1205 if ( !HasFlag(wxTE_MULTILINE
) )
1207 gtk_entry_set_max_length(GTK_ENTRY(m_text
), len
);
1209 // there is a bug in GTK+ 1.2.x: "changed" signal is emitted even if
1210 // we had tried to enter more text than allowed by max text length and
1211 // the text wasn't really changed
1213 // to detect this and generate TEXT_MAXLEN event instead of
1214 // TEXT_CHANGED one in this case we also catch "insert_text" signal
1216 // when max len is set to 0 we disconnect our handler as it means that
1217 // we shouldn't check anything any more
1220 g_signal_connect (m_text
, "insert_text",
1221 G_CALLBACK (gtk_insert_text_callback
), this);
1225 g_signal_handlers_disconnect_by_func (m_text
,
1226 (gpointer
) gtk_insert_text_callback
, this);
1231 void wxTextCtrl::SetSelection( long from
, long to
)
1233 wxCHECK_RET( m_text
!= NULL
, wxT("invalid text ctrl") );
1235 if (from
== -1 && to
== -1)
1238 to
= GetValue().length();
1241 if ( IsMultiLine() )
1243 GtkTextIter fromi
, toi
;
1244 gtk_text_buffer_get_iter_at_offset( m_buffer
, &fromi
, from
);
1245 gtk_text_buffer_get_iter_at_offset( m_buffer
, &toi
, to
);
1247 gtk_text_buffer_place_cursor( m_buffer
, &toi
);
1248 gtk_text_buffer_move_mark_by_name( m_buffer
, "selection_bound", &fromi
);
1252 gtk_editable_select_region( GTK_EDITABLE(m_text
), (gint
)from
, (gint
)to
);
1256 void wxTextCtrl::ShowPosition( long pos
)
1258 if ( IsMultiLine() )
1261 gtk_text_buffer_get_start_iter( m_buffer
, &iter
);
1262 gtk_text_iter_set_offset( &iter
, pos
);
1263 GtkTextMark
*mark
= gtk_text_buffer_create_mark( m_buffer
, NULL
, &iter
, TRUE
);
1264 gtk_text_view_scroll_to_mark( GTK_TEXT_VIEW(m_text
), mark
, 0.0, FALSE
, 0.0, 0.0 );
1268 wxTextCtrlHitTestResult
1269 wxTextCtrl::HitTest(const wxPoint
& pt
, long *pos
) const
1271 if ( !IsMultiLine() )
1274 return wxTE_HT_UNKNOWN
;
1278 gtk_text_view_window_to_buffer_coords
1280 GTK_TEXT_VIEW(m_text
),
1281 GTK_TEXT_WINDOW_TEXT
,
1287 gtk_text_view_get_iter_at_location(GTK_TEXT_VIEW(m_text
), &iter
, x
, y
);
1289 *pos
= gtk_text_iter_get_offset(&iter
);
1291 return wxTE_HT_ON_TEXT
;
1294 long wxTextCtrl::GetInsertionPoint() const
1296 wxCHECK_MSG( m_text
!= NULL
, 0, wxT("invalid text ctrl") );
1298 if ( IsMultiLine() )
1300 // There is no direct accessor for the cursor, but
1301 // internally, the cursor is the "mark" called
1302 // "insert" in the text view's btree structure.
1304 GtkTextMark
*mark
= gtk_text_buffer_get_insert( m_buffer
);
1306 gtk_text_buffer_get_iter_at_mark( m_buffer
, &cursor
, mark
);
1308 return gtk_text_iter_get_offset( &cursor
);
1312 return (long) gtk_editable_get_position(GTK_EDITABLE(m_text
));
1316 wxTextPos
wxTextCtrl::GetLastPosition() const
1318 wxCHECK_MSG( m_text
!= NULL
, 0, wxT("invalid text ctrl") );
1322 if ( IsMultiLine() )
1325 gtk_text_buffer_get_end_iter( m_buffer
, &end
);
1327 pos
= gtk_text_iter_get_offset( &end
);
1331 pos
= GTK_ENTRY(m_text
)->text_length
;
1337 void wxTextCtrl::Remove( long from
, long to
)
1339 wxCHECK_RET( m_text
!= NULL
, wxT("invalid text ctrl") );
1341 if ( IsMultiLine() )
1343 GtkTextIter fromi
, toi
;
1344 gtk_text_buffer_get_iter_at_offset( m_buffer
, &fromi
, from
);
1345 gtk_text_buffer_get_iter_at_offset( m_buffer
, &toi
, to
);
1347 gtk_text_buffer_delete( m_buffer
, &fromi
, &toi
);
1350 gtk_editable_delete_text( GTK_EDITABLE(m_text
), (gint
)from
, (gint
)to
);
1353 void wxTextCtrl::Replace( long from
, long to
, const wxString
&value
)
1355 wxCHECK_RET( m_text
!= NULL
, wxT("invalid text ctrl") );
1361 SetInsertionPoint( from
);
1366 void wxTextCtrl::Cut()
1368 wxCHECK_RET( m_text
!= NULL
, wxT("invalid text ctrl") );
1370 if ( IsMultiLine() )
1371 g_signal_emit_by_name (m_text
, "cut-clipboard");
1373 gtk_editable_cut_clipboard(GTK_EDITABLE(m_text
));
1376 void wxTextCtrl::Copy()
1378 wxCHECK_RET( m_text
!= NULL
, wxT("invalid text ctrl") );
1380 if ( IsMultiLine() )
1381 g_signal_emit_by_name (m_text
, "copy-clipboard");
1383 gtk_editable_copy_clipboard(GTK_EDITABLE(m_text
));
1386 void wxTextCtrl::Paste()
1388 wxCHECK_RET( m_text
!= NULL
, wxT("invalid text ctrl") );
1390 if ( IsMultiLine() )
1391 g_signal_emit_by_name (m_text
, "paste-clipboard");
1393 gtk_editable_paste_clipboard(GTK_EDITABLE(m_text
));
1397 void wxTextCtrl::Undo()
1400 wxFAIL_MSG( wxT("wxTextCtrl::Undo not implemented") );
1403 void wxTextCtrl::Redo()
1406 wxFAIL_MSG( wxT("wxTextCtrl::Redo not implemented") );
1409 bool wxTextCtrl::CanUndo() const
1412 //wxFAIL_MSG( wxT("wxTextCtrl::CanUndo not implemented") );
1416 bool wxTextCtrl::CanRedo() const
1419 //wxFAIL_MSG( wxT("wxTextCtrl::CanRedo not implemented") );
1423 // If the return values from and to are the same, there is no
1425 void wxTextCtrl::GetSelection(long* fromOut
, long* toOut
) const
1427 wxCHECK_RET( m_text
!= NULL
, wxT("invalid text ctrl") );
1431 bool haveSelection
= false;
1433 if ( IsMultiLine() )
1435 GtkTextIter ifrom
, ito
;
1436 if ( gtk_text_buffer_get_selection_bounds(m_buffer
, &ifrom
, &ito
) )
1438 haveSelection
= true;
1439 from
= gtk_text_iter_get_offset(&ifrom
);
1440 to
= gtk_text_iter_get_offset(&ito
);
1443 else // not multi-line
1445 if ( gtk_editable_get_selection_bounds( GTK_EDITABLE(m_text
),
1448 haveSelection
= true;
1452 if (! haveSelection
)
1453 from
= to
= GetInsertionPoint();
1457 // exchange them to be compatible with wxMSW
1470 bool wxTextCtrl::IsEditable() const
1472 wxCHECK_MSG( m_text
!= NULL
, false, wxT("invalid text ctrl") );
1474 if ( IsMultiLine() )
1476 return gtk_text_view_get_editable(GTK_TEXT_VIEW(m_text
));
1480 return gtk_editable_get_editable(GTK_EDITABLE(m_text
));
1484 bool wxTextCtrl::IsModified() const
1489 void wxTextCtrl::Clear()
1491 SetValue( wxEmptyString
);
1494 void wxTextCtrl::OnChar( wxKeyEvent
&key_event
)
1496 wxCHECK_RET( m_text
!= NULL
, wxT("invalid text ctrl") );
1498 if ( key_event
.GetKeyCode() == WXK_RETURN
)
1500 if ( HasFlag(wxTE_PROCESS_ENTER
) )
1502 wxCommandEvent
event(wxEVT_COMMAND_TEXT_ENTER
, m_windowId
);
1503 event
.SetEventObject(this);
1504 event
.SetString(GetValue());
1505 if ( GetEventHandler()->ProcessEvent(event
) )
1509 // FIXME: this is not the right place to do it, wxDialog::OnCharHook()
1511 if ( IsSingleLine() )
1513 // This will invoke the dialog default action, such
1514 // as the clicking the default button.
1516 wxWindow
*top_frame
= m_parent
;
1517 while (top_frame
->GetParent() && !(top_frame
->IsTopLevel()))
1518 top_frame
= top_frame
->GetParent();
1520 if (top_frame
&& GTK_IS_WINDOW(top_frame
->m_widget
))
1522 GtkWindow
*window
= GTK_WINDOW(top_frame
->m_widget
);
1524 if (window
->default_widget
)
1526 gtk_widget_activate (window
->default_widget
);
1536 GtkWidget
* wxTextCtrl::GetConnectWidget()
1538 return GTK_WIDGET(m_text
);
1541 GdkWindow
*wxTextCtrl::GTKGetWindow(wxArrayGdkWindows
& WXUNUSED(windows
)) const
1543 if ( IsMultiLine() )
1545 return gtk_text_view_get_window(GTK_TEXT_VIEW(m_text
),
1546 GTK_TEXT_WINDOW_TEXT
);
1550 return GTK_ENTRY(m_text
)->text_area
;
1554 // the font will change for subsequent text insertiongs
1555 bool wxTextCtrl::SetFont( const wxFont
&font
)
1557 wxCHECK_MSG( m_text
!= NULL
, false, wxT("invalid text ctrl") );
1559 if ( !wxTextCtrlBase::SetFont(font
) )
1561 // font didn't change, nothing to do
1565 if ( IsMultiLine() )
1567 SetUpdateFont(true);
1569 m_defaultStyle
.SetFont(font
);
1571 ChangeFontGlobally();
1577 void wxTextCtrl::ChangeFontGlobally()
1579 // this method is very inefficient and hence should be called as rarely as
1582 // TODO: it can be implemented much more efficiently for GTK2
1583 wxASSERT_MSG( IsMultiLine(),
1584 _T("shouldn't be called for single line controls") );
1586 wxString value
= GetValue();
1587 if ( !value
.empty() )
1589 SetUpdateFont(false);
1596 bool wxTextCtrl::SetForegroundColour(const wxColour
& colour
)
1598 if ( !wxControl::SetForegroundColour(colour
) )
1601 // update default fg colour too
1602 m_defaultStyle
.SetTextColour(colour
);
1607 bool wxTextCtrl::SetBackgroundColour( const wxColour
&colour
)
1609 wxCHECK_MSG( m_text
!= NULL
, false, wxT("invalid text ctrl") );
1611 if ( !wxControl::SetBackgroundColour( colour
) )
1614 if (!m_backgroundColour
.Ok())
1617 // change active background color too
1618 m_defaultStyle
.SetBackgroundColour( colour
);
1623 bool wxTextCtrl::SetStyle( long start
, long end
, const wxTextAttr
& style
)
1625 if ( IsMultiLine() )
1627 if ( style
.IsDefault() )
1633 gint l
= gtk_text_buffer_get_char_count( m_buffer
);
1635 wxCHECK_MSG( start
>= 0 && end
<= l
, false,
1636 _T("invalid range in wxTextCtrl::SetStyle") );
1638 GtkTextIter starti
, endi
;
1639 gtk_text_buffer_get_iter_at_offset( m_buffer
, &starti
, start
);
1640 gtk_text_buffer_get_iter_at_offset( m_buffer
, &endi
, end
);
1642 // use the attributes from style which are set in it and fall back
1643 // first to the default style and then to the text control default
1644 // colours for the others
1645 wxTextAttr attr
= wxTextAttr::Combine(style
, m_defaultStyle
, this);
1647 wxGtkTextApplyTagsFromAttr( m_buffer
, attr
, &starti
, &endi
);
1653 // cannot do this for GTK+'s Entry widget
1657 void wxTextCtrl::DoApplyWidgetStyle(GtkRcStyle
*style
)
1659 gtk_widget_modify_style(m_text
, style
);
1662 void wxTextCtrl::OnCut(wxCommandEvent
& WXUNUSED(event
))
1667 void wxTextCtrl::OnCopy(wxCommandEvent
& WXUNUSED(event
))
1672 void wxTextCtrl::OnPaste(wxCommandEvent
& WXUNUSED(event
))
1677 void wxTextCtrl::OnUndo(wxCommandEvent
& WXUNUSED(event
))
1682 void wxTextCtrl::OnRedo(wxCommandEvent
& WXUNUSED(event
))
1687 void wxTextCtrl::OnUpdateCut(wxUpdateUIEvent
& event
)
1689 event
.Enable( CanCut() );
1692 void wxTextCtrl::OnUpdateCopy(wxUpdateUIEvent
& event
)
1694 event
.Enable( CanCopy() );
1697 void wxTextCtrl::OnUpdatePaste(wxUpdateUIEvent
& event
)
1699 event
.Enable( CanPaste() );
1702 void wxTextCtrl::OnUpdateUndo(wxUpdateUIEvent
& event
)
1704 event
.Enable( CanUndo() );
1707 void wxTextCtrl::OnUpdateRedo(wxUpdateUIEvent
& event
)
1709 event
.Enable( CanRedo() );
1712 wxSize
wxTextCtrl::DoGetBestSize() const
1714 // FIXME should be different for multi-line controls...
1715 wxSize
ret( wxControl::DoGetBestSize() );
1716 wxSize
best(80, ret
.y
);
1717 CacheBestSize(best
);
1721 // ----------------------------------------------------------------------------
1723 // ----------------------------------------------------------------------------
1725 void wxTextCtrl::Freeze()
1727 if ( HasFlag(wxTE_MULTILINE
) )
1729 if ( !m_frozenness
++ )
1731 // freeze textview updates and remove buffer
1732 g_signal_connect (m_text
, "expose_event",
1733 G_CALLBACK (gtk_text_exposed_callback
), this);
1734 g_signal_connect (m_widget
, "expose_event",
1735 G_CALLBACK (gtk_text_exposed_callback
), this);
1736 gtk_widget_set_sensitive(m_widget
, false);
1737 g_object_ref(m_buffer
);
1738 gtk_text_view_set_buffer(GTK_TEXT_VIEW(m_text
), gtk_text_buffer_new(NULL
));
1743 void wxTextCtrl::Thaw()
1745 if ( HasFlag(wxTE_MULTILINE
) )
1747 wxASSERT_MSG( m_frozenness
> 0, _T("Thaw() without matching Freeze()") );
1749 if ( !--m_frozenness
)
1751 // Reattach buffer and thaw textview updates
1752 gtk_text_view_set_buffer(GTK_TEXT_VIEW(m_text
), m_buffer
);
1753 g_object_unref(m_buffer
);
1754 gtk_widget_set_sensitive(m_widget
, true);
1755 g_signal_handlers_disconnect_by_func (m_widget
,
1756 (gpointer
) gtk_text_exposed_callback
, this);
1757 g_signal_handlers_disconnect_by_func (m_text
,
1758 (gpointer
) gtk_text_exposed_callback
, this);
1763 // ----------------------------------------------------------------------------
1764 // wxTextUrlEvent passing if style & wxTE_AUTO_URL
1765 // ----------------------------------------------------------------------------
1767 // FIXME: when dragging on a link the sample gets an "Unknown event".
1768 // This might be an excessive event from us or a buggy wxMouseEvent::Moving() or
1769 // a buggy sample, or something else
1770 void wxTextCtrl::OnUrlMouseEvent(wxMouseEvent
& event
)
1773 if( !HasFlag(wxTE_AUTO_URL
) )
1777 GtkTextIter start
, end
;
1778 GtkTextTag
*tag
= gtk_text_tag_table_lookup(gtk_text_buffer_get_tag_table(m_buffer
),
1781 gtk_text_view_window_to_buffer_coords(GTK_TEXT_VIEW(m_text
), GTK_TEXT_WINDOW_WIDGET
,
1782 event
.GetX(), event
.GetY(), &x
, &y
);
1784 gtk_text_view_get_iter_at_location(GTK_TEXT_VIEW(m_text
), &end
, x
, y
);
1785 if (!gtk_text_iter_has_tag(&end
, tag
))
1787 gdk_window_set_cursor(gtk_text_view_get_window(GTK_TEXT_VIEW(m_text
),
1788 GTK_TEXT_WINDOW_TEXT
), m_gdkXTermCursor
);
1792 gdk_window_set_cursor(gtk_text_view_get_window(GTK_TEXT_VIEW(m_text
),
1793 GTK_TEXT_WINDOW_TEXT
), m_gdkHandCursor
);
1796 if(!gtk_text_iter_begins_tag(&start
, tag
))
1797 gtk_text_iter_backward_to_tag_toggle(&start
, tag
);
1798 if(!gtk_text_iter_ends_tag(&end
, tag
))
1799 gtk_text_iter_forward_to_tag_toggle(&end
, tag
);
1801 // Native context menu is probably not desired on an URL.
1802 // Consider making this dependant on ProcessEvent(wxTextUrlEvent) return value
1803 if(event
.GetEventType() == wxEVT_RIGHT_DOWN
)
1806 wxTextUrlEvent
url_event(m_windowId
, event
,
1807 gtk_text_iter_get_offset(&start
),
1808 gtk_text_iter_get_offset(&end
));
1810 InitCommandEvent(url_event
);
1811 // Is that a good idea? Seems not (pleasure with gtk_text_view_start_selection_drag)
1812 //event.Skip(!GetEventHandler()->ProcessEvent(url_event));
1813 GetEventHandler()->ProcessEvent(url_event
);
1816 bool wxTextCtrl::GTKProcessEvent(wxEvent
& event
) const
1818 bool rc
= wxTextCtrlBase::GTKProcessEvent(event
);
1820 // GtkTextView starts a drag operation when left mouse button is pressed
1821 // and ends it when it is released and if it doesn't get the release event
1822 // the next click on a control results in an assertion failure inside
1823 // gtk_text_view_start_selection_drag() which simply *kills* the program
1824 // without anything we can do about it, so always let GTK+ have this event
1825 return rc
&& (IsSingleLine() || event
.GetEventType() != wxEVT_LEFT_UP
);
1830 wxTextCtrl::GetClassDefaultAttributes(wxWindowVariant
WXUNUSED(variant
))
1832 return GetDefaultAttributesFromGTKWidget(gtk_entry_new
, true);