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"
15 #include "wx/textctrl.h"
21 #include "wx/settings.h"
25 #include "wx/scopeguard.h"
26 #include "wx/strconv.h"
27 #include "wx/fontutil.h" // for wxNativeFontInfo (GetNativeFontInfo())
29 #include <sys/types.h>
34 #include "wx/gtk/private.h"
35 #include "wx/gtk/private/gtk2-compat.h"
37 // ----------------------------------------------------------------------------
39 // ----------------------------------------------------------------------------
42 static void wxGtkOnRemoveTag(GtkTextBuffer
*buffer
,
44 GtkTextIter
* WXUNUSED(start
),
45 GtkTextIter
* WXUNUSED(end
),
49 g_object_get (tag
, "name", &name
, NULL
);
51 if (!name
|| strncmp(name
, prefix
, strlen(prefix
)))
52 // anonymous tag or not starting with prefix - don't remove
53 g_signal_stop_emission_by_name (buffer
, "remove_tag");
59 // remove all tags starting with the given prefix from the start..end range
61 wxGtkTextRemoveTagsWithPrefix(GtkTextBuffer
*text_buffer
,
66 gulong remove_handler_id
= g_signal_connect
70 G_CALLBACK(wxGtkOnRemoveTag
),
73 gtk_text_buffer_remove_all_tags(text_buffer
, start
, end
);
74 g_signal_handler_disconnect(text_buffer
, remove_handler_id
);
77 static void wxGtkTextApplyTagsFromAttr(GtkWidget
*text
,
78 GtkTextBuffer
*text_buffer
,
79 const wxTextAttr
& attr
,
83 static gchar buf
[1024];
88 wxGtkTextRemoveTagsWithPrefix(text_buffer
, "WXFONT", start
, end
);
90 wxFont
font(attr
.GetFont());
92 PangoFontDescription
*font_description
= font
.GetNativeFontInfo()->description
;
93 wxGtkString
font_string(pango_font_description_to_string(font_description
));
94 g_snprintf(buf
, sizeof(buf
), "WXFONT %s", font_string
.c_str());
95 tag
= gtk_text_tag_table_lookup( gtk_text_buffer_get_tag_table( text_buffer
),
98 tag
= gtk_text_buffer_create_tag( text_buffer
, buf
,
99 "font-desc", font_description
,
101 gtk_text_buffer_apply_tag (text_buffer
, tag
, start
, end
);
103 if (font
.GetUnderlined())
105 g_snprintf(buf
, sizeof(buf
), "WXFONTUNDERLINE");
106 tag
= gtk_text_tag_table_lookup( gtk_text_buffer_get_tag_table( text_buffer
),
109 tag
= gtk_text_buffer_create_tag( text_buffer
, buf
,
110 "underline-set", TRUE
,
111 "underline", PANGO_UNDERLINE_SINGLE
,
113 gtk_text_buffer_apply_tag (text_buffer
, tag
, start
, end
);
115 if ( font
.GetStrikethrough() )
117 g_snprintf(buf
, sizeof(buf
), "WXFONTSTRIKETHROUGH");
118 tag
= gtk_text_tag_table_lookup( gtk_text_buffer_get_tag_table( text_buffer
),
121 tag
= gtk_text_buffer_create_tag( text_buffer
, buf
,
122 "strikethrough-set", TRUE
,
123 "strikethrough", TRUE
,
125 gtk_text_buffer_apply_tag (text_buffer
, tag
, start
, end
);
129 if (attr
.HasTextColour())
131 wxGtkTextRemoveTagsWithPrefix(text_buffer
, "WXFORECOLOR", start
, end
);
133 const GdkColor
*colFg
= attr
.GetTextColour().GetColor();
134 g_snprintf(buf
, sizeof(buf
), "WXFORECOLOR %d %d %d",
135 colFg
->red
, colFg
->green
, colFg
->blue
);
136 tag
= gtk_text_tag_table_lookup( gtk_text_buffer_get_tag_table( text_buffer
),
139 tag
= gtk_text_buffer_create_tag( text_buffer
, buf
,
140 "foreground-gdk", colFg
, NULL
);
141 gtk_text_buffer_apply_tag (text_buffer
, tag
, start
, end
);
144 if (attr
.HasBackgroundColour())
146 wxGtkTextRemoveTagsWithPrefix(text_buffer
, "WXBACKCOLOR", start
, end
);
148 const GdkColor
*colBg
= attr
.GetBackgroundColour().GetColor();
149 g_snprintf(buf
, sizeof(buf
), "WXBACKCOLOR %d %d %d",
150 colBg
->red
, colBg
->green
, colBg
->blue
);
151 tag
= gtk_text_tag_table_lookup( gtk_text_buffer_get_tag_table( text_buffer
),
154 tag
= gtk_text_buffer_create_tag( text_buffer
, buf
,
155 "background-gdk", colBg
, NULL
);
156 gtk_text_buffer_apply_tag (text_buffer
, tag
, start
, end
);
159 if (attr
.HasAlignment())
161 GtkTextIter para_start
, para_end
= *end
;
162 gtk_text_buffer_get_iter_at_line( text_buffer
,
164 gtk_text_iter_get_line(start
) );
165 gtk_text_iter_forward_line(¶_end
);
167 wxGtkTextRemoveTagsWithPrefix(text_buffer
, "WXALIGNMENT", ¶_start
, ¶_end
);
169 GtkJustification align
;
170 switch (attr
.GetAlignment())
172 case wxTEXT_ALIGNMENT_RIGHT
:
173 align
= GTK_JUSTIFY_RIGHT
;
175 case wxTEXT_ALIGNMENT_CENTER
:
176 align
= GTK_JUSTIFY_CENTER
;
178 case wxTEXT_ALIGNMENT_JUSTIFIED
:
180 align
= GTK_JUSTIFY_FILL
;
182 #elif GTK_CHECK_VERSION(2,11,0)
183 // gtk+ doesn't support justify before gtk+-2.11.0 with pango-1.17 being available
184 // (but if new enough pango isn't available it's a mere gtk warning)
185 if (!gtk_check_version(2,11,0))
187 align
= GTK_JUSTIFY_FILL
;
193 align
= GTK_JUSTIFY_LEFT
;
197 g_snprintf(buf
, sizeof(buf
), "WXALIGNMENT %d", align
);
198 tag
= gtk_text_tag_table_lookup( gtk_text_buffer_get_tag_table( text_buffer
),
201 tag
= gtk_text_buffer_create_tag( text_buffer
, buf
,
202 "justification", align
, NULL
);
203 gtk_text_buffer_apply_tag( text_buffer
, tag
, ¶_start
, ¶_end
);
206 if (attr
.HasLeftIndent())
208 // Indentation attribute
210 // Clear old indentation tags
211 GtkTextIter para_start
, para_end
= *end
;
212 gtk_text_buffer_get_iter_at_line( text_buffer
,
214 gtk_text_iter_get_line(start
) );
215 gtk_text_iter_forward_line(¶_end
);
217 wxGtkTextRemoveTagsWithPrefix(text_buffer
, "WXINDENT", ¶_start
, ¶_end
);
219 // Convert indent from 1/10th of a mm into pixels
221 (float)gdk_screen_get_width(gtk_widget_get_screen(text
)) /
222 gdk_screen_get_width_mm(gtk_widget_get_screen(text
)) / 10;
224 const int indent
= (int)(factor
* attr
.GetLeftIndent());
225 const int subIndent
= (int)(factor
* attr
.GetLeftSubIndent());
233 gsubindent
= -subIndent
;
237 gindent
= -subIndent
;
241 g_snprintf(buf
, sizeof(buf
), "WXINDENT %d %d", gindent
, gsubindent
);
242 tag
= gtk_text_tag_table_lookup( gtk_text_buffer_get_tag_table( text_buffer
),
245 tag
= gtk_text_buffer_create_tag( text_buffer
, buf
,
246 "left-margin", gindent
, "indent", gsubindent
, NULL
);
247 gtk_text_buffer_apply_tag (text_buffer
, tag
, ¶_start
, ¶_end
);
255 GtkTextIter para_start
, para_end
= *end
;
256 gtk_text_buffer_get_iter_at_line( text_buffer
,
258 gtk_text_iter_get_line(start
) );
259 gtk_text_iter_forward_line(¶_end
);
261 wxGtkTextRemoveTagsWithPrefix(text_buffer
, "WXTABS", ¶_start
, ¶_end
);
263 const wxArrayInt
& tabs
= attr
.GetTabs();
265 wxString tagname
= wxT("WXTABS");
266 g_snprintf(buf
, sizeof(buf
), "WXTABS");
267 for (size_t i
= 0; i
< tabs
.GetCount(); i
++)
268 tagname
+= wxString::Format(wxT(" %d"), tabs
[i
]);
270 const wxWX2MBbuf buftag
= tagname
.utf8_str();
272 tag
= gtk_text_tag_table_lookup( gtk_text_buffer_get_tag_table( text_buffer
),
276 // Factor to convert from 1/10th of a mm into pixels
278 (float)gdk_screen_get_width(gtk_widget_get_screen(text
)) /
279 gdk_screen_get_width_mm(gtk_widget_get_screen(text
)) / 10;
281 PangoTabArray
* tabArray
= pango_tab_array_new(tabs
.GetCount(), TRUE
);
282 for (size_t i
= 0; i
< tabs
.GetCount(); i
++)
283 pango_tab_array_set_tab(tabArray
, i
, PANGO_TAB_LEFT
, (gint
)(tabs
[i
] * factor
));
284 tag
= gtk_text_buffer_create_tag( text_buffer
, buftag
,
285 "tabs", tabArray
, NULL
);
286 pango_tab_array_free(tabArray
);
288 gtk_text_buffer_apply_tag (text_buffer
, tag
, ¶_start
, ¶_end
);
292 static void wxGtkTextInsert(GtkWidget
*text
,
293 GtkTextBuffer
*text_buffer
,
294 const wxTextAttr
& attr
,
295 const wxCharBuffer
& buffer
)
299 GtkTextIter iter
, start
;
301 gtk_text_buffer_get_iter_at_mark( text_buffer
, &iter
,
302 gtk_text_buffer_get_insert (text_buffer
) );
303 start_offset
= gtk_text_iter_get_offset (&iter
);
304 gtk_text_buffer_insert( text_buffer
, &iter
, buffer
, strlen(buffer
) );
306 gtk_text_buffer_get_iter_at_offset (text_buffer
, &start
, start_offset
);
308 wxGtkTextApplyTagsFromAttr(text
, text_buffer
, attr
, &start
, &iter
);
311 // Implementation of wxTE_AUTO_URL for wxGTK2 by Mart Raudsepp,
315 au_apply_tag_callback(GtkTextBuffer
*buffer
,
317 GtkTextIter
* WXUNUSED(start
),
318 GtkTextIter
* WXUNUSED(end
),
319 gpointer
WXUNUSED(textctrl
))
321 if(tag
== gtk_text_tag_table_lookup(gtk_text_buffer_get_tag_table(buffer
), "wxUrl"))
322 g_signal_stop_emission_by_name (buffer
, "apply_tag");
326 //-----------------------------------------------------------------------------
327 // GtkTextCharPredicates for gtk_text_iter_*_find_char
328 //-----------------------------------------------------------------------------
332 pred_whitespace(gunichar ch
, gpointer
WXUNUSED(user_data
))
334 return g_unichar_isspace(ch
);
340 pred_non_whitespace (gunichar ch
, gpointer
WXUNUSED(user_data
))
342 return !g_unichar_isspace(ch
);
348 pred_nonpunct (gunichar ch
, gpointer
WXUNUSED(user_data
))
350 return !g_unichar_ispunct(ch
);
356 pred_nonpunct_or_slash (gunichar ch
, gpointer
WXUNUSED(user_data
))
358 return !g_unichar_ispunct(ch
) || ch
== '/';
362 //-----------------------------------------------------------------------------
363 // Check for links between s and e and correct tags as necessary
364 //-----------------------------------------------------------------------------
366 // This function should be made match better while being efficient at one point.
367 // Most probably with a row of regular expressions.
370 au_check_word( GtkTextIter
*s
, GtkTextIter
*e
)
372 static const char *const URIPrefixes
[] =
390 GtkTextIter start
= *s
, end
= *e
;
391 GtkTextBuffer
*buffer
= gtk_text_iter_get_buffer(s
);
393 // Get our special link tag
394 GtkTextTag
*tag
= gtk_text_tag_table_lookup(gtk_text_buffer_get_tag_table(buffer
), "wxUrl");
396 // Get rid of punctuation from beginning and end.
397 // Might want to move this to au_check_range if an improved link checking doesn't
398 // use some intelligent punctuation checking itself (beware of undesired iter modifications).
399 if(g_unichar_ispunct( gtk_text_iter_get_char( &start
) ) )
400 gtk_text_iter_forward_find_char( &start
, pred_nonpunct
, NULL
, e
);
402 gtk_text_iter_backward_find_char( &end
, pred_nonpunct_or_slash
, NULL
, &start
);
403 gtk_text_iter_forward_char(&end
);
405 wxGtkString
text(gtk_text_iter_get_text( &start
, &end
));
406 size_t len
= strlen(text
), prefix_len
;
409 for( n
= 0; n
< WXSIZEOF(URIPrefixes
); ++n
)
411 prefix_len
= strlen(URIPrefixes
[n
]);
412 if((len
> prefix_len
) && !wxStrnicmp(text
, URIPrefixes
[n
], prefix_len
))
416 if(n
< WXSIZEOF(URIPrefixes
))
418 gulong signal_id
= g_signal_handler_find (buffer
,
419 (GSignalMatchType
) (G_SIGNAL_MATCH_FUNC
),
421 (gpointer
)au_apply_tag_callback
, NULL
);
423 g_signal_handler_block (buffer
, signal_id
);
424 gtk_text_buffer_apply_tag(buffer
, tag
, &start
, &end
);
425 g_signal_handler_unblock (buffer
, signal_id
);
432 au_check_range(GtkTextIter
*s
,
433 GtkTextIter
*range_end
)
435 GtkTextIter range_start
= *s
;
436 GtkTextIter word_end
;
437 GtkTextBuffer
*buffer
= gtk_text_iter_get_buffer(s
);
438 GtkTextTag
*tag
= gtk_text_tag_table_lookup(gtk_text_buffer_get_tag_table(buffer
), "wxUrl");
440 gtk_text_buffer_remove_tag(buffer
, tag
, s
, range_end
);
442 if(g_unichar_isspace(gtk_text_iter_get_char(&range_start
)))
443 gtk_text_iter_forward_find_char(&range_start
, pred_non_whitespace
, NULL
, range_end
);
445 while(!gtk_text_iter_equal(&range_start
, range_end
))
447 word_end
= range_start
;
448 gtk_text_iter_forward_find_char(&word_end
, pred_whitespace
, NULL
, range_end
);
450 // Now we should have a word delimited by range_start and word_end, correct link tags
451 au_check_word(&range_start
, &word_end
);
453 range_start
= word_end
;
454 gtk_text_iter_forward_find_char(&range_start
, pred_non_whitespace
, NULL
, range_end
);
459 //-----------------------------------------------------------------------------
460 // "insert-text" for GtkTextBuffer
461 //-----------------------------------------------------------------------------
465 // Normal version used for detecting IME input and generating appropriate
468 wx_insert_text_callback(GtkTextBuffer
* buffer
,
469 GtkTextIter
* WXUNUSED(end
),
474 if ( win
->GTKOnInsertText(text
) )
476 // If we already handled the new text insertion, don't do it again.
477 g_signal_stop_emission_by_name (buffer
, "insert_text");
482 // And an "after" version used for detecting URLs in the text.
484 au_insert_text_callback(GtkTextBuffer
* WXUNUSED(buffer
),
490 if (!len
|| !(win
->GetWindowStyleFlag() & wxTE_AUTO_URL
) )
493 GtkTextIter start
= *end
;
494 gtk_text_iter_backward_chars(&start
, g_utf8_strlen(text
, len
));
496 GtkTextIter line_start
= start
;
497 GtkTextIter line_end
= *end
;
498 GtkTextIter words_start
= start
;
499 GtkTextIter words_end
= *end
;
501 gtk_text_iter_set_line(&line_start
, gtk_text_iter_get_line(&start
));
502 gtk_text_iter_forward_to_line_end(&line_end
);
503 gtk_text_iter_backward_find_char(&words_start
, pred_whitespace
, NULL
, &line_start
);
504 gtk_text_iter_forward_find_char(&words_end
, pred_whitespace
, NULL
, &line_end
);
506 au_check_range(&words_start
, &words_end
);
510 //-----------------------------------------------------------------------------
511 // "delete-range" for GtkTextBuffer
512 //-----------------------------------------------------------------------------
516 au_delete_range_callback(GtkTextBuffer
* WXUNUSED(buffer
),
521 if( !(win
->GetWindowStyleFlag() & wxTE_AUTO_URL
) )
524 GtkTextIter line_start
= *start
, line_end
= *end
;
526 gtk_text_iter_set_line(&line_start
, gtk_text_iter_get_line(start
));
527 gtk_text_iter_forward_to_line_end(&line_end
);
528 gtk_text_iter_backward_find_char(start
, pred_whitespace
, NULL
, &line_start
);
529 gtk_text_iter_forward_find_char(end
, pred_whitespace
, NULL
, &line_end
);
531 au_check_range(start
, end
);
535 //-----------------------------------------------------------------------------
536 // "populate_popup" from text control and "unmap" from its poup menu
537 //-----------------------------------------------------------------------------
541 gtk_textctrl_popup_unmap( GtkMenu
*WXUNUSED(menu
), wxTextCtrl
* win
)
543 win
->GTKEnableFocusOutEvent();
549 gtk_textctrl_populate_popup( GtkEntry
*WXUNUSED(entry
), GtkMenu
*menu
, wxTextCtrl
*win
)
551 win
->GTKDisableFocusOutEvent();
553 g_signal_connect (menu
, "unmap", G_CALLBACK (gtk_textctrl_popup_unmap
), win
);
557 //-----------------------------------------------------------------------------
559 //-----------------------------------------------------------------------------
563 gtk_text_changed_callback( GtkWidget
*WXUNUSED(widget
), wxTextCtrl
*win
)
565 if ( win
->IgnoreTextUpdate() )
568 if ( win
->MarkDirtyOnChange() )
571 win
->SendTextUpdatedEvent();
575 //-----------------------------------------------------------------------------
577 //-----------------------------------------------------------------------------
580 static void mark_set(GtkTextBuffer
*, GtkTextIter
*, GtkTextMark
* mark
, GSList
** markList
)
582 if (gtk_text_mark_get_name(mark
) == NULL
)
583 *markList
= g_slist_prepend(*markList
, mark
);
587 //-----------------------------------------------------------------------------
589 //-----------------------------------------------------------------------------
591 BEGIN_EVENT_TABLE(wxTextCtrl
, wxTextCtrlBase
)
592 EVT_CHAR(wxTextCtrl::OnChar
)
594 EVT_MENU(wxID_CUT
, wxTextCtrl::OnCut
)
595 EVT_MENU(wxID_COPY
, wxTextCtrl::OnCopy
)
596 EVT_MENU(wxID_PASTE
, wxTextCtrl::OnPaste
)
597 EVT_MENU(wxID_UNDO
, wxTextCtrl::OnUndo
)
598 EVT_MENU(wxID_REDO
, wxTextCtrl::OnRedo
)
600 EVT_UPDATE_UI(wxID_CUT
, wxTextCtrl::OnUpdateCut
)
601 EVT_UPDATE_UI(wxID_COPY
, wxTextCtrl::OnUpdateCopy
)
602 EVT_UPDATE_UI(wxID_PASTE
, wxTextCtrl::OnUpdatePaste
)
603 EVT_UPDATE_UI(wxID_UNDO
, wxTextCtrl::OnUpdateUndo
)
604 EVT_UPDATE_UI(wxID_REDO
, wxTextCtrl::OnUpdateRedo
)
606 // wxTE_AUTO_URL wxTextUrl support. Currently only creates
607 // wxTextUrlEvent in the same cases as wxMSW, more can be added here.
608 EVT_MOTION (wxTextCtrl::OnUrlMouseEvent
)
609 EVT_LEFT_DOWN (wxTextCtrl::OnUrlMouseEvent
)
610 EVT_LEFT_UP (wxTextCtrl::OnUrlMouseEvent
)
611 EVT_LEFT_DCLICK (wxTextCtrl::OnUrlMouseEvent
)
612 EVT_RIGHT_DOWN (wxTextCtrl::OnUrlMouseEvent
)
613 EVT_RIGHT_UP (wxTextCtrl::OnUrlMouseEvent
)
614 EVT_RIGHT_DCLICK(wxTextCtrl::OnUrlMouseEvent
)
617 void wxTextCtrl::Init()
622 m_countUpdatesToIgnore
= 0;
624 SetUpdateFont(false);
628 m_showPositionOnThaw
= NULL
;
629 m_anonymousMarkList
= NULL
;
632 wxTextCtrl::~wxTextCtrl()
635 GTKDisconnect(m_text
);
637 GTKDisconnect(m_buffer
);
639 // this is also done by wxWindowGTK dtor, but has to be done here so our
640 // DoThaw() override is called
644 if (m_anonymousMarkList
)
645 g_slist_free(m_anonymousMarkList
);
648 wxTextCtrl::wxTextCtrl( wxWindow
*parent
,
650 const wxString
&value
,
654 const wxValidator
& validator
,
655 const wxString
&name
)
659 Create( parent
, id
, value
, pos
, size
, style
, validator
, name
);
662 bool wxTextCtrl::Create( wxWindow
*parent
,
664 const wxString
&value
,
668 const wxValidator
& validator
,
669 const wxString
&name
)
671 if (!PreCreation( parent
, pos
, size
) ||
672 !CreateBase( parent
, id
, pos
, size
, style
, validator
, name
))
674 wxFAIL_MSG( wxT("wxTextCtrl creation failed") );
678 bool multi_line
= (style
& wxTE_MULTILINE
) != 0;
682 m_buffer
= gtk_text_buffer_new(NULL
);
683 gulong sig_id
= g_signal_connect(m_buffer
, "mark_set", G_CALLBACK(mark_set
), &m_anonymousMarkList
);
685 m_text
= gtk_text_view_new_with_buffer(m_buffer
);
686 // gtk_text_view_set_buffer adds its own reference
687 g_object_unref(m_buffer
);
688 g_signal_handler_disconnect(m_buffer
, sig_id
);
690 // create "ShowPosition" marker
692 gtk_text_buffer_get_start_iter(m_buffer
, &iter
);
693 gtk_text_buffer_create_mark(m_buffer
, "ShowPosition", &iter
, true);
695 // create scrolled window
696 m_widget
= gtk_scrolled_window_new( NULL
, NULL
);
697 gtk_scrolled_window_set_policy( GTK_SCROLLED_WINDOW( m_widget
),
698 GTK_POLICY_AUTOMATIC
,
699 style
& wxTE_NO_VSCROLL
701 : GTK_POLICY_AUTOMATIC
);
702 // for ScrollLines/Pages
703 m_scrollBar
[1] = GTK_RANGE(gtk_scrolled_window_get_vscrollbar(GTK_SCROLLED_WINDOW(m_widget
)));
705 // Insert view into scrolled window
706 gtk_container_add( GTK_CONTAINER(m_widget
), m_text
);
710 GTKScrolledWindowSetBorder(m_widget
, style
);
712 gtk_widget_add_events( GTK_WIDGET(m_text
), GDK_ENTER_NOTIFY_MASK
| GDK_LEAVE_NOTIFY_MASK
);
714 gtk_widget_set_can_focus(m_widget
, FALSE
);
718 // a single-line text control: no need for scrollbars
720 m_text
= gtk_entry_new();
721 // work around probable bug in GTK+ 2.18 when calling WriteText on a
722 // new, empty control, see http://trac.wxwidgets.org/ticket/11409
723 gtk_entry_get_text((GtkEntry
*)m_text
);
725 if (style
& wxNO_BORDER
)
726 g_object_set (m_text
, "has-frame", FALSE
, NULL
);
729 g_object_ref(m_widget
);
731 m_parent
->DoAddChild( this );
733 m_focusWidget
= m_text
;
739 gtk_widget_show(m_text
);
742 // We want to be notified about text changes.
745 g_signal_connect (m_buffer
, "changed",
746 G_CALLBACK (gtk_text_changed_callback
), this);
750 g_signal_connect (m_text
, "changed",
751 G_CALLBACK (gtk_text_changed_callback
), this);
754 // Catch to disable focus out handling
755 g_signal_connect (m_text
, "populate_popup",
756 G_CALLBACK (gtk_textctrl_populate_popup
),
764 if (style
& wxTE_PASSWORD
)
767 if (style
& wxTE_READONLY
)
770 // left justification (alignment) is the default anyhow
771 if ( style
& (wxTE_RIGHT
| wxTE_CENTRE
) )
772 GTKSetJustification();
776 // Handle URLs on multi-line controls with wxTE_AUTO_URL style
777 if (style
& wxTE_AUTO_URL
)
779 GtkTextIter start
, end
;
781 // We create our wxUrl tag here for slight efficiency gain - we
782 // don't have to check for the tag existence in callbacks,
783 // hereby it's guaranteed to exist.
784 gtk_text_buffer_create_tag(m_buffer
, "wxUrl",
785 "foreground", "blue",
786 "underline", PANGO_UNDERLINE_SINGLE
,
789 // Check for URLs after each text change
790 g_signal_connect_after (m_buffer
, "insert_text",
791 G_CALLBACK (au_insert_text_callback
), this);
792 g_signal_connect_after (m_buffer
, "delete_range",
793 G_CALLBACK (au_delete_range_callback
), this);
795 // Block all wxUrl tag applying unless we do it ourselves, in which case we
796 // block this callback temporarily. This takes care of gtk+ internal
797 // gtk_text_buffer_insert_range* calls that would copy our URL tag otherwise,
798 // which is undesired because only a part of the URL might be copied.
799 // The insert-text signal emitted inside it will take care of newly formed
800 // or wholly copied URLs.
801 g_signal_connect (m_buffer
, "apply_tag",
802 G_CALLBACK (au_apply_tag_callback
), NULL
);
804 // Check for URLs in the initial string passed to Create
805 gtk_text_buffer_get_start_iter(m_buffer
, &start
);
806 gtk_text_buffer_get_end_iter(m_buffer
, &end
);
807 au_check_range(&start
, &end
);
810 // Also connect a normal (not "after") signal handler for checking for
811 // the IME-generated input.
812 g_signal_connect(m_buffer
, "insert_text",
813 G_CALLBACK(wx_insert_text_callback
), this);
817 // do the right thing with Enter presses depending on whether we have
818 // wxTE_PROCESS_ENTER or not
819 GTKSetActivatesDefault();
821 GTKConnectInsertTextSignal(GTK_ENTRY(m_text
));
825 GTKConnectClipboardSignals(m_text
);
827 m_cursor
= wxCursor( wxCURSOR_IBEAM
);
832 GtkEditable
*wxTextCtrl::GetEditable() const
834 wxCHECK_MSG( IsSingleLine(), NULL
, "shouldn't be called for multiline" );
836 return GTK_EDITABLE(m_text
);
839 GtkEntry
*wxTextCtrl::GetEntry() const
841 return GTK_ENTRY(m_text
);
844 int wxTextCtrl::GTKIMFilterKeypress(GdkEventKey
* event
) const
846 #if GTK_CHECK_VERSION(2, 22, 0)
847 if ( gtk_check_version(2, 12, 0) == 0 )
849 if ( IsSingleLine() )
851 return wxTextEntry::GTKIMFilterKeypress(event
);
855 return gtk_text_view_im_context_filter_keypress(
856 GTK_TEXT_VIEW(m_text
),
868 // ----------------------------------------------------------------------------
870 // ----------------------------------------------------------------------------
872 void wxTextCtrl::GTKSetEditable()
874 gboolean editable
= !HasFlag(wxTE_READONLY
);
875 if ( IsSingleLine() )
876 gtk_editable_set_editable(GTK_EDITABLE(m_text
), editable
);
878 gtk_text_view_set_editable(GTK_TEXT_VIEW(m_text
), editable
);
881 void wxTextCtrl::GTKSetVisibility()
883 wxCHECK_RET( IsSingleLine(),
884 "wxTE_PASSWORD is for single line text controls only" );
886 gtk_entry_set_visibility(GTK_ENTRY(m_text
), !HasFlag(wxTE_PASSWORD
));
889 void wxTextCtrl::GTKSetActivatesDefault()
891 wxCHECK_RET( IsSingleLine(),
892 "wxTE_PROCESS_ENTER is for single line text controls only" );
894 gtk_entry_set_activates_default(GTK_ENTRY(m_text
),
895 !HasFlag(wxTE_PROCESS_ENTER
));
898 void wxTextCtrl::GTKSetWrapMode()
900 // no wrapping in single line controls
901 if ( !IsMultiLine() )
904 // translate wx wrapping style to GTK+
906 if ( HasFlag( wxTE_DONTWRAP
) )
907 wrap
= GTK_WRAP_NONE
;
908 else if ( HasFlag( wxTE_CHARWRAP
) )
909 wrap
= GTK_WRAP_CHAR
;
910 else if ( HasFlag( wxTE_WORDWRAP
) )
911 wrap
= GTK_WRAP_WORD
;
912 else // HasFlag(wxTE_BESTWRAP) always true as wxTE_BESTWRAP == 0
913 wrap
= GTK_WRAP_WORD_CHAR
;
915 gtk_text_view_set_wrap_mode( GTK_TEXT_VIEW( m_text
), wrap
);
918 void wxTextCtrl::GTKSetJustification()
922 GtkJustification just
;
923 if ( HasFlag(wxTE_RIGHT
) )
924 just
= GTK_JUSTIFY_RIGHT
;
925 else if ( HasFlag(wxTE_CENTRE
) )
926 just
= GTK_JUSTIFY_CENTER
;
927 else // wxTE_LEFT == 0
928 just
= GTK_JUSTIFY_LEFT
;
930 gtk_text_view_set_justification(GTK_TEXT_VIEW(m_text
), just
);
935 if ( HasFlag(wxTE_RIGHT
) )
937 else if ( HasFlag(wxTE_CENTRE
) )
942 gtk_entry_set_alignment(GTK_ENTRY(m_text
), align
);
946 void wxTextCtrl::SetWindowStyleFlag(long style
)
948 long styleOld
= GetWindowStyleFlag();
950 wxTextCtrlBase::SetWindowStyleFlag(style
);
952 if ( (style
& wxTE_READONLY
) != (styleOld
& wxTE_READONLY
) )
955 if ( (style
& wxTE_PASSWORD
) != (styleOld
& wxTE_PASSWORD
) )
958 if ( (style
& wxTE_PROCESS_ENTER
) != (styleOld
& wxTE_PROCESS_ENTER
) )
959 GTKSetActivatesDefault();
961 static const long flagsWrap
= wxTE_WORDWRAP
| wxTE_CHARWRAP
| wxTE_DONTWRAP
;
962 if ( (style
& flagsWrap
) != (styleOld
& flagsWrap
) )
965 static const long flagsAlign
= wxTE_LEFT
| wxTE_CENTRE
| wxTE_RIGHT
;
966 if ( (style
& flagsAlign
) != (styleOld
& flagsAlign
) )
967 GTKSetJustification();
970 // ----------------------------------------------------------------------------
972 // ----------------------------------------------------------------------------
974 wxString
wxTextCtrl::GetValue() const
976 wxCHECK_MSG( m_text
!= NULL
, wxEmptyString
, wxT("invalid text ctrl") );
981 gtk_text_buffer_get_start_iter( m_buffer
, &start
);
983 gtk_text_buffer_get_end_iter( m_buffer
, &end
);
984 wxGtkString
text(gtk_text_buffer_get_text(m_buffer
, &start
, &end
, true));
986 return wxGTK_CONV_BACK(text
);
990 return wxTextEntry::GetValue();
994 wxFontEncoding
wxTextCtrl::GetTextEncoding() const
996 // GTK+ uses UTF-8 internally, we need to convert to it but from which
999 // first check the default text style (we intentionally don't check the
1000 // style for the current position as it doesn't make sense for SetValue())
1001 const wxTextAttr
& style
= GetDefaultStyle();
1002 wxFontEncoding enc
= style
.HasFontEncoding() ? style
.GetFontEncoding()
1003 : wxFONTENCODING_SYSTEM
;
1005 // fall back to the controls font if no style
1006 if ( enc
== wxFONTENCODING_SYSTEM
&& m_hasFont
)
1007 enc
= GetFont().GetEncoding();
1012 bool wxTextCtrl::IsEmpty() const
1014 if ( IsMultiLine() )
1015 return gtk_text_buffer_get_char_count(m_buffer
) == 0;
1017 return wxTextEntry::IsEmpty();
1020 void wxTextCtrl::DoSetValue( const wxString
&value
, int flags
)
1022 wxCHECK_RET( m_text
!= NULL
, wxT("invalid text ctrl") );
1026 if ( !IsMultiLine() )
1028 wxTextEntry::DoSetValue(value
, flags
);
1032 if (value
.IsEmpty())
1034 if ( !(flags
& SetValue_SendEvent
) )
1035 EnableTextChangedEvents(false);
1037 gtk_text_buffer_set_text( m_buffer
, "", 0 );
1039 if ( !(flags
& SetValue_SendEvent
) )
1040 EnableTextChangedEvents(true);
1046 const wxCharBuffer
buffer(value
.utf8_str());
1048 wxFontEncoding enc
= m_defaultStyle
.HasFont()
1049 ? m_defaultStyle
.GetFont().GetEncoding()
1050 : wxFONTENCODING_SYSTEM
;
1051 if ( enc
== wxFONTENCODING_SYSTEM
)
1052 enc
= GetTextEncoding();
1054 const wxCharBuffer
buffer(wxGTK_CONV_ENC(value
, enc
));
1057 // see comment in WriteText() as to why we must warn the user about
1059 wxLogWarning(_("Failed to set text in the text control."));
1064 if ( !(flags
& SetValue_SendEvent
) )
1066 EnableTextChangedEvents(false);
1069 gtk_text_buffer_set_text( m_buffer
, buffer
, strlen(buffer
) );
1071 if ( !m_defaultStyle
.IsDefault() )
1073 GtkTextIter start
, end
;
1074 gtk_text_buffer_get_bounds( m_buffer
, &start
, &end
);
1075 wxGtkTextApplyTagsFromAttr(m_widget
, m_buffer
, m_defaultStyle
,
1079 if ( !(flags
& SetValue_SendEvent
) )
1081 EnableTextChangedEvents(true);
1085 void wxTextCtrl::WriteText( const wxString
&text
)
1087 wxCHECK_RET( m_text
!= NULL
, wxT("invalid text ctrl") );
1089 // we're changing the text programmatically
1090 DontMarkDirtyOnNextChange();
1092 if ( !IsMultiLine() )
1094 wxTextEntry::WriteText(text
);
1099 const wxCharBuffer
buffer(text
.utf8_str());
1101 // check if we have a specific style for the current position
1102 wxFontEncoding enc
= wxFONTENCODING_SYSTEM
;
1104 if ( GetStyle(GetInsertionPoint(), style
) && style
.HasFontEncoding() )
1106 enc
= style
.GetFontEncoding();
1109 if ( enc
== wxFONTENCODING_SYSTEM
)
1110 enc
= GetTextEncoding();
1112 const wxCharBuffer
buffer(wxGTK_CONV_ENC(text
, enc
));
1115 // we must log an error here as losing the text like this can be a
1116 // serious problem (e.g. imagine the document edited by user being
1117 // empty instead of containing the correct text)
1118 wxLogWarning(_("Failed to insert text in the control."));
1123 // First remove the selection if there is one
1124 // TODO: Is there an easier GTK specific way to do this?
1126 GetSelection(&from
, &to
);
1131 wxGtkTextInsert( m_text
, m_buffer
, m_defaultStyle
, buffer
);
1133 // Scroll to cursor, but only if scrollbar thumb is at the very bottom
1134 // won't work when frozen, text view is not using m_buffer then
1137 GtkAdjustment
* adj
= gtk_scrolled_window_get_vadjustment(GTK_SCROLLED_WINDOW(m_widget
));
1138 const double value
= gtk_adjustment_get_value(adj
);
1139 const double upper
= gtk_adjustment_get_upper(adj
);
1140 const double page_size
= gtk_adjustment_get_page_size(adj
);
1141 if (wxIsSameDouble(value
, upper
- page_size
))
1143 gtk_text_view_scroll_to_mark(GTK_TEXT_VIEW(m_text
),
1144 gtk_text_buffer_get_insert(m_buffer
), 0, false, 0, 1);
1149 wxString
wxTextCtrl::GetLineText( long lineNo
) const
1152 if ( IsMultiLine() )
1155 gtk_text_buffer_get_iter_at_line(m_buffer
,&line
,lineNo
);
1157 GtkTextIter end
= line
;
1158 // avoid skipping to the next line end if this one is empty
1159 if ( !gtk_text_iter_ends_line(&line
) )
1160 gtk_text_iter_forward_to_line_end(&end
);
1162 wxGtkString
text(gtk_text_buffer_get_text(m_buffer
, &line
, &end
, true));
1163 result
= wxGTK_CONV_BACK(text
);
1168 result
= GetValue();
1173 void wxTextCtrl::OnDropFiles( wxDropFilesEvent
&WXUNUSED(event
) )
1175 /* If you implement this, don't forget to update the documentation!
1176 * (file docs/latex/wx/text.tex) */
1177 wxFAIL_MSG( wxT("wxTextCtrl::OnDropFiles not implemented") );
1180 bool wxTextCtrl::PositionToXY(long pos
, long *x
, long *y
) const
1182 if ( IsMultiLine() )
1186 if (pos
> GetLastPosition())
1189 gtk_text_buffer_get_iter_at_offset(m_buffer
, &iter
, pos
);
1192 *y
= gtk_text_iter_get_line(&iter
);
1194 *x
= gtk_text_iter_get_line_offset(&iter
);
1196 else // single line control
1198 if (pos
<= gtk_entry_get_text_length(GTK_ENTRY(m_text
)))
1207 // index out of bounds
1215 long wxTextCtrl::XYToPosition(long x
, long y
) const
1217 if ( IsSingleLine() )
1221 if (y
>= gtk_text_buffer_get_line_count (m_buffer
))
1224 gtk_text_buffer_get_iter_at_line(m_buffer
, &iter
, y
);
1225 if (x
>= gtk_text_iter_get_chars_in_line (&iter
))
1228 return gtk_text_iter_get_offset(&iter
) + x
;
1231 int wxTextCtrl::GetLineLength(long lineNo
) const
1233 if ( IsMultiLine() )
1235 int last_line
= gtk_text_buffer_get_line_count( m_buffer
) - 1;
1236 if (lineNo
> last_line
)
1240 gtk_text_buffer_get_iter_at_line(m_buffer
, &iter
, lineNo
);
1241 // get_chars_in_line return includes paragraph delimiters, so need to subtract 1 IF it is not the last line
1242 return gtk_text_iter_get_chars_in_line(&iter
) - ((lineNo
== last_line
) ? 0 : 1);
1246 wxString str
= GetLineText (lineNo
);
1247 return (int) str
.length();
1251 wxPoint
wxTextCtrl::DoPositionToCoords(long pos
) const
1253 if ( !IsMultiLine() )
1255 // Single line text entry (GtkTextEntry) doesn't have support for
1256 // getting the coordinates for the given offset. Perhaps we could
1257 // find them ourselves by using GetTextExtent() but for now just leave
1258 // it unimplemented, this function is more useful for multiline
1260 return wxDefaultPosition
;
1263 // Window coordinates for the given position is calculated by getting
1264 // the buffer coordinates and converting them to window coordinates.
1265 GtkTextView
*textview
= GTK_TEXT_VIEW(m_text
);
1268 gtk_text_buffer_get_iter_at_offset(m_buffer
, &iter
, pos
);
1270 GdkRectangle bufferCoords
;
1271 gtk_text_view_get_iter_location(textview
, &iter
, &bufferCoords
);
1275 gtk_text_view_buffer_to_window_coords(textview
, GTK_TEXT_WINDOW_WIDGET
,
1276 bufferCoords
.x
, bufferCoords
.y
,
1277 &winCoordX
, &winCoordY
);
1279 return wxPoint(winCoordX
, winCoordY
);
1282 int wxTextCtrl::GetNumberOfLines() const
1284 if ( IsMultiLine() )
1286 return gtk_text_buffer_get_line_count( m_buffer
);
1294 void wxTextCtrl::SetInsertionPoint( long pos
)
1296 wxCHECK_RET( m_text
!= NULL
, wxT("invalid text ctrl") );
1298 if ( IsMultiLine() )
1301 gtk_text_buffer_get_iter_at_offset( m_buffer
, &iter
, pos
);
1302 gtk_text_buffer_place_cursor( m_buffer
, &iter
);
1303 GtkTextMark
* mark
= gtk_text_buffer_get_insert(m_buffer
);
1305 // defer until Thaw, text view is not using m_buffer now
1306 m_showPositionOnThaw
= mark
;
1308 gtk_text_view_scroll_mark_onscreen(GTK_TEXT_VIEW(m_text
), mark
);
1312 wxTextEntry::SetInsertionPoint(pos
);
1316 void wxTextCtrl::SetEditable( bool editable
)
1318 wxCHECK_RET( m_text
!= NULL
, wxT("invalid text ctrl") );
1320 if ( IsMultiLine() )
1322 gtk_text_view_set_editable( GTK_TEXT_VIEW(m_text
), editable
);
1326 wxTextEntry::SetEditable(editable
);
1330 bool wxTextCtrl::Enable( bool enable
)
1332 if (!wxWindowBase::Enable(enable
))
1338 gtk_widget_set_sensitive( m_text
, enable
);
1339 SetCursor(enable
? wxCursor(wxCURSOR_IBEAM
) : wxCursor());
1344 void wxTextCtrl::MarkDirty()
1349 void wxTextCtrl::DiscardEdits()
1354 // ----------------------------------------------------------------------------
1356 // ----------------------------------------------------------------------------
1358 void wxTextCtrl::EnableTextChangedEvents(bool enable
)
1362 g_signal_handlers_unblock_by_func(GetTextObject(),
1363 (gpointer
)gtk_text_changed_callback
, this);
1365 else // disable events
1367 g_signal_handlers_block_by_func(GetTextObject(),
1368 (gpointer
)gtk_text_changed_callback
, this);
1372 bool wxTextCtrl::IgnoreTextUpdate()
1374 if ( m_countUpdatesToIgnore
> 0 )
1376 m_countUpdatesToIgnore
--;
1384 bool wxTextCtrl::MarkDirtyOnChange()
1386 if ( m_dontMarkDirty
)
1388 m_dontMarkDirty
= false;
1396 void wxTextCtrl::SetSelection( long from
, long to
)
1398 wxCHECK_RET( m_text
!= NULL
, wxT("invalid text ctrl") );
1400 if ( IsMultiLine() )
1402 if (from
== -1 && to
== -1)
1405 to
= GetValue().length();
1408 GtkTextIter fromi
, toi
;
1409 gtk_text_buffer_get_iter_at_offset( m_buffer
, &fromi
, from
);
1410 gtk_text_buffer_get_iter_at_offset( m_buffer
, &toi
, to
);
1412 gtk_text_buffer_select_range( m_buffer
, &fromi
, &toi
);
1416 wxTextEntry::SetSelection(from
, to
);
1420 void wxTextCtrl::ShowPosition( long pos
)
1425 gtk_text_buffer_get_iter_at_offset(m_buffer
, &iter
, int(pos
));
1426 GtkTextMark
* mark
= gtk_text_buffer_get_mark(m_buffer
, "ShowPosition");
1427 gtk_text_buffer_move_mark(m_buffer
, mark
, &iter
);
1429 // defer until Thaw, text view is not using m_buffer now
1430 m_showPositionOnThaw
= mark
;
1432 gtk_text_view_scroll_mark_onscreen(GTK_TEXT_VIEW(m_text
), mark
);
1436 wxTextCtrlHitTestResult
1437 wxTextCtrl::HitTest(const wxPoint
& pt
, long *pos
) const
1439 if ( !IsMultiLine() )
1442 return wxTE_HT_UNKNOWN
;
1446 gtk_text_view_window_to_buffer_coords
1448 GTK_TEXT_VIEW(m_text
),
1449 GTK_TEXT_WINDOW_TEXT
,
1455 gtk_text_view_get_iter_at_location(GTK_TEXT_VIEW(m_text
), &iter
, x
, y
);
1457 *pos
= gtk_text_iter_get_offset(&iter
);
1459 return wxTE_HT_ON_TEXT
;
1462 long wxTextCtrl::GetInsertionPoint() const
1464 wxCHECK_MSG( m_text
!= NULL
, 0, wxT("invalid text ctrl") );
1466 if ( IsMultiLine() )
1468 // There is no direct accessor for the cursor, but
1469 // internally, the cursor is the "mark" called
1470 // "insert" in the text view's btree structure.
1472 GtkTextMark
*mark
= gtk_text_buffer_get_insert( m_buffer
);
1474 gtk_text_buffer_get_iter_at_mark( m_buffer
, &cursor
, mark
);
1476 return gtk_text_iter_get_offset( &cursor
);
1480 return wxTextEntry::GetInsertionPoint();
1484 wxTextPos
wxTextCtrl::GetLastPosition() const
1486 wxCHECK_MSG( m_text
!= NULL
, 0, wxT("invalid text ctrl") );
1490 if ( IsMultiLine() )
1493 gtk_text_buffer_get_end_iter( m_buffer
, &end
);
1495 pos
= gtk_text_iter_get_offset( &end
);
1499 pos
= wxTextEntry::GetLastPosition();
1505 void wxTextCtrl::Remove( long from
, long to
)
1507 wxCHECK_RET( m_text
!= NULL
, wxT("invalid text ctrl") );
1509 if ( IsMultiLine() )
1511 GtkTextIter fromi
, toi
;
1512 gtk_text_buffer_get_iter_at_offset( m_buffer
, &fromi
, from
);
1513 gtk_text_buffer_get_iter_at_offset( m_buffer
, &toi
, to
);
1515 gtk_text_buffer_delete( m_buffer
, &fromi
, &toi
);
1519 wxTextEntry::Remove(from
, to
);
1523 void wxTextCtrl::Cut()
1525 wxCHECK_RET( m_text
!= NULL
, wxT("invalid text ctrl") );
1527 if ( IsMultiLine() )
1528 g_signal_emit_by_name (m_text
, "cut-clipboard");
1533 void wxTextCtrl::Copy()
1535 wxCHECK_RET( m_text
!= NULL
, wxT("invalid text ctrl") );
1537 if ( IsMultiLine() )
1538 g_signal_emit_by_name (m_text
, "copy-clipboard");
1540 wxTextEntry::Copy();
1543 void wxTextCtrl::Paste()
1545 wxCHECK_RET( m_text
!= NULL
, wxT("invalid text ctrl") );
1547 if ( IsMultiLine() )
1548 g_signal_emit_by_name (m_text
, "paste-clipboard");
1550 wxTextEntry::Paste();
1553 // If the return values from and to are the same, there is no
1555 void wxTextCtrl::GetSelection(long* fromOut
, long* toOut
) const
1557 wxCHECK_RET( m_text
!= NULL
, wxT("invalid text ctrl") );
1559 if ( !IsMultiLine() )
1561 wxTextEntry::GetSelection(fromOut
, toOut
);
1567 GtkTextIter ifrom
, ito
;
1568 if ( gtk_text_buffer_get_selection_bounds(m_buffer
, &ifrom
, &ito
) )
1570 from
= gtk_text_iter_get_offset(&ifrom
);
1571 to
= gtk_text_iter_get_offset(&ito
);
1575 // exchange them to be compatible with wxMSW
1581 else // no selection
1584 to
= GetInsertionPoint();
1594 bool wxTextCtrl::IsEditable() const
1596 wxCHECK_MSG( m_text
!= NULL
, false, wxT("invalid text ctrl") );
1598 if ( IsMultiLine() )
1600 return gtk_text_view_get_editable(GTK_TEXT_VIEW(m_text
)) != 0;
1604 return wxTextEntry::IsEditable();
1608 bool wxTextCtrl::IsModified() const
1613 void wxTextCtrl::OnChar( wxKeyEvent
&key_event
)
1615 wxCHECK_RET( m_text
!= NULL
, wxT("invalid text ctrl") );
1617 if ( key_event
.GetKeyCode() == WXK_RETURN
)
1619 if ( HasFlag(wxTE_PROCESS_ENTER
) )
1621 wxCommandEvent
event(wxEVT_TEXT_ENTER
, m_windowId
);
1622 event
.SetEventObject(this);
1623 event
.SetString(GetValue());
1624 if ( HandleWindowEvent(event
) )
1632 GtkWidget
* wxTextCtrl::GetConnectWidget()
1634 return GTK_WIDGET(m_text
);
1637 GdkWindow
*wxTextCtrl::GTKGetWindow(wxArrayGdkWindows
& WXUNUSED(windows
)) const
1639 if ( IsMultiLine() )
1641 return gtk_text_view_get_window(GTK_TEXT_VIEW(m_text
),
1642 GTK_TEXT_WINDOW_TEXT
);
1647 // no access to internal GdkWindows
1650 return gtk_entry_get_text_window(GTK_ENTRY(m_text
));
1655 // the font will change for subsequent text insertiongs
1656 bool wxTextCtrl::SetFont( const wxFont
&font
)
1658 wxCHECK_MSG( m_text
!= NULL
, false, wxT("invalid text ctrl") );
1660 if ( !wxTextCtrlBase::SetFont(font
) )
1662 // font didn't change, nothing to do
1666 if ( IsMultiLine() )
1668 SetUpdateFont(true);
1670 m_defaultStyle
.SetFont(font
);
1672 ChangeFontGlobally();
1678 void wxTextCtrl::ChangeFontGlobally()
1680 // this method is very inefficient and hence should be called as rarely as
1683 // TODO: it can be implemented much more efficiently for GTK2
1684 wxASSERT_MSG( IsMultiLine(),
1685 wxT("shouldn't be called for single line controls") );
1687 wxString value
= GetValue();
1688 if ( !value
.empty() )
1690 SetUpdateFont(false);
1697 bool wxTextCtrl::SetForegroundColour(const wxColour
& colour
)
1699 if ( !wxControl::SetForegroundColour(colour
) )
1702 // update default fg colour too
1703 m_defaultStyle
.SetTextColour(colour
);
1708 bool wxTextCtrl::SetBackgroundColour( const wxColour
&colour
)
1710 wxCHECK_MSG( m_text
!= NULL
, false, wxT("invalid text ctrl") );
1712 if ( !wxControl::SetBackgroundColour( colour
) )
1715 if (!m_backgroundColour
.IsOk())
1718 // change active background color too
1719 m_defaultStyle
.SetBackgroundColour( colour
);
1724 bool wxTextCtrl::SetStyle( long start
, long end
, const wxTextAttr
& style
)
1726 if ( IsMultiLine() )
1728 if ( style
.IsDefault() )
1734 gint l
= gtk_text_buffer_get_char_count( m_buffer
);
1736 wxCHECK_MSG( start
>= 0 && end
<= l
, false,
1737 wxT("invalid range in wxTextCtrl::SetStyle") );
1739 GtkTextIter starti
, endi
;
1740 gtk_text_buffer_get_iter_at_offset( m_buffer
, &starti
, start
);
1741 gtk_text_buffer_get_iter_at_offset( m_buffer
, &endi
, end
);
1743 wxGtkTextApplyTagsFromAttr( m_widget
, m_buffer
, style
, &starti
, &endi
);
1747 //else: single line text controls don't support styles
1752 bool wxTextCtrl::GetStyle(long position
, wxTextAttr
& style
)
1754 if ( !IsMultiLine() )
1756 // no styles for GtkEntry
1760 gint l
= gtk_text_buffer_get_char_count( m_buffer
);
1762 wxCHECK_MSG( position
>= 0 && position
<= l
, false,
1763 wxT("invalid range in wxTextCtrl::GetStyle") );
1765 GtkTextIter positioni
;
1766 gtk_text_buffer_get_iter_at_offset(m_buffer
, &positioni
, position
);
1768 // Obtain a copy of the default attributes
1769 GtkTextAttributes
* const
1770 pattr
= gtk_text_view_get_default_attributes(GTK_TEXT_VIEW(m_text
));
1771 wxON_BLOCK_EXIT1(gtk_text_attributes_unref
, pattr
);
1773 // And query GTK for the attributes at the given position using it as base
1774 if ( !gtk_text_iter_get_attributes(&positioni
, pattr
) )
1776 style
= m_defaultStyle
;
1778 else // have custom attributes
1780 style
.SetBackgroundColour(pattr
->appearance
.bg_color
);
1781 style
.SetTextColour(pattr
->appearance
.fg_color
);
1784 pangoFontString(pango_font_description_to_string(pattr
->font
));
1787 if ( font
.SetNativeFontInfo(wxString(pangoFontString
)) )
1788 style
.SetFont(font
);
1790 // TODO: set alignment, tabs and indents
1796 void wxTextCtrl::DoApplyWidgetStyle(GtkRcStyle
*style
)
1798 GTKApplyStyle(m_text
, style
);
1801 void wxTextCtrl::OnCut(wxCommandEvent
& WXUNUSED(event
))
1806 void wxTextCtrl::OnCopy(wxCommandEvent
& WXUNUSED(event
))
1811 void wxTextCtrl::OnPaste(wxCommandEvent
& WXUNUSED(event
))
1816 void wxTextCtrl::OnUndo(wxCommandEvent
& WXUNUSED(event
))
1821 void wxTextCtrl::OnRedo(wxCommandEvent
& WXUNUSED(event
))
1826 void wxTextCtrl::OnUpdateCut(wxUpdateUIEvent
& event
)
1828 event
.Enable( CanCut() );
1831 void wxTextCtrl::OnUpdateCopy(wxUpdateUIEvent
& event
)
1833 event
.Enable( CanCopy() );
1836 void wxTextCtrl::OnUpdatePaste(wxUpdateUIEvent
& event
)
1838 event
.Enable( CanPaste() );
1841 void wxTextCtrl::OnUpdateUndo(wxUpdateUIEvent
& event
)
1843 event
.Enable( CanUndo() );
1846 void wxTextCtrl::OnUpdateRedo(wxUpdateUIEvent
& event
)
1848 event
.Enable( CanRedo() );
1851 wxSize
wxTextCtrl::DoGetBestSize() const
1853 return DoGetSizeFromTextSize(80);
1856 wxSize
wxTextCtrl::DoGetSizeFromTextSize(int xlen
, int ylen
) const
1858 wxASSERT_MSG( m_widget
, wxS("GetSizeFromTextSize called before creation") );
1860 wxSize
tsize(xlen
, 0);
1861 int cHeight
= GetCharHeight();
1863 if ( IsSingleLine() )
1865 if ( HasFlag(wxBORDER_NONE
) )
1877 tsize
.y
= GTKGetPreferredSize(m_widget
).y
;
1878 // Add the margins we have previously set, but only the horizontal border
1879 // as vertical one has been taken account at GTKGetPreferredSize().
1880 // Also get other GTK+ margins.
1881 tsize
.IncBy( GTKGetEntryMargins(GetEntry()).x
, 0);
1888 // add space for vertical scrollbar
1889 if ( m_scrollBar
[1] && !(m_windowStyle
& wxTE_NO_VSCROLL
) )
1890 tsize
.IncBy(GTKGetPreferredSize(GTK_WIDGET(m_scrollBar
[1])).x
+ 3, 0);
1896 tsize
.y
= 1 + cHeight
* wxMax(wxMin(GetNumberOfLines(), 10), 2);
1897 // add space for horizontal scrollbar
1898 if ( m_scrollBar
[0] && (m_windowStyle
& wxHSCROLL
) )
1899 tsize
.IncBy(0, GTKGetPreferredSize(GTK_WIDGET(m_scrollBar
[0])).y
+ 3);
1902 if ( !HasFlag(wxBORDER_NONE
) )
1904 // hardcode borders, margins, etc
1909 // Perhaps the user wants something different from CharHeight, or ylen
1910 // is used as the height of a multiline text.
1912 tsize
.IncBy(0, ylen
- cHeight
);
1918 // ----------------------------------------------------------------------------
1920 // ----------------------------------------------------------------------------
1922 void wxTextCtrl::DoFreeze()
1924 wxCHECK_RET(m_text
!= NULL
, wxT("invalid text ctrl"));
1926 GTKFreezeWidget(m_text
);
1928 if ( HasFlag(wxTE_MULTILINE
) )
1930 // removing buffer dramatically speeds up insertion:
1931 g_object_ref(m_buffer
);
1932 GtkTextBuffer
* buf_new
= gtk_text_buffer_new(NULL
);
1933 gtk_text_view_set_buffer(GTK_TEXT_VIEW(m_text
), buf_new
);
1934 // gtk_text_view_set_buffer adds its own reference
1935 g_object_unref(buf_new
);
1936 // These marks should be deleted when the buffer is changed,
1937 // but they are not (in GTK+ up to at least 3.0.1).
1938 // Otherwise these anonymous marks start to build up in the buffer,
1939 // and Freeze takes longer and longer each time it is called.
1940 if (m_anonymousMarkList
)
1942 for (GSList
* item
= m_anonymousMarkList
; item
; item
= item
->next
)
1944 GtkTextMark
* mark
= static_cast<GtkTextMark
*>(item
->data
);
1945 if (GTK_IS_TEXT_MARK(mark
) && !gtk_text_mark_get_deleted(mark
))
1946 gtk_text_buffer_delete_mark(m_buffer
, mark
);
1948 g_slist_free(m_anonymousMarkList
);
1949 m_anonymousMarkList
= NULL
;
1954 void wxTextCtrl::DoThaw()
1956 if ( HasFlag(wxTE_MULTILINE
) )
1959 gulong sig_id
= g_signal_connect(m_buffer
, "mark_set", G_CALLBACK(mark_set
), &m_anonymousMarkList
);
1960 gtk_text_view_set_buffer(GTK_TEXT_VIEW(m_text
), m_buffer
);
1961 g_object_unref(m_buffer
);
1962 g_signal_handler_disconnect(m_buffer
, sig_id
);
1964 if (m_showPositionOnThaw
!= NULL
)
1966 gtk_text_view_scroll_mark_onscreen(
1967 GTK_TEXT_VIEW(m_text
), m_showPositionOnThaw
);
1968 m_showPositionOnThaw
= NULL
;
1972 GTKThawWidget(m_text
);
1975 // ----------------------------------------------------------------------------
1976 // wxTextUrlEvent passing if style & wxTE_AUTO_URL
1977 // ----------------------------------------------------------------------------
1979 // FIXME: when dragging on a link the sample gets an "Unknown event".
1980 // This might be an excessive event from us or a buggy wxMouseEvent::Moving() or
1981 // a buggy sample, or something else
1982 void wxTextCtrl::OnUrlMouseEvent(wxMouseEvent
& event
)
1985 if( !HasFlag(wxTE_AUTO_URL
) )
1989 GtkTextIter start
, end
;
1990 GtkTextTag
*tag
= gtk_text_tag_table_lookup(gtk_text_buffer_get_tag_table(m_buffer
),
1993 gtk_text_view_window_to_buffer_coords(GTK_TEXT_VIEW(m_text
), GTK_TEXT_WINDOW_WIDGET
,
1994 event
.GetX(), event
.GetY(), &x
, &y
);
1996 gtk_text_view_get_iter_at_location(GTK_TEXT_VIEW(m_text
), &end
, x
, y
);
1997 if (!gtk_text_iter_has_tag(&end
, tag
))
1999 SetCursor(wxCursor(wxCURSOR_IBEAM
));
2003 SetCursor(wxCursor(wxCURSOR_HAND
));
2006 if(!gtk_text_iter_begins_tag(&start
, tag
))
2007 gtk_text_iter_backward_to_tag_toggle(&start
, tag
);
2008 if(!gtk_text_iter_ends_tag(&end
, tag
))
2009 gtk_text_iter_forward_to_tag_toggle(&end
, tag
);
2011 // Native context menu is probably not desired on an URL.
2012 // Consider making this dependent on ProcessEvent(wxTextUrlEvent) return value
2013 if(event
.GetEventType() == wxEVT_RIGHT_DOWN
)
2016 wxTextUrlEvent
url_event(m_windowId
, event
,
2017 gtk_text_iter_get_offset(&start
),
2018 gtk_text_iter_get_offset(&end
));
2020 InitCommandEvent(url_event
);
2021 // Is that a good idea? Seems not (pleasure with gtk_text_view_start_selection_drag)
2022 //event.Skip(!HandleWindowEvent(url_event));
2023 HandleWindowEvent(url_event
);
2026 bool wxTextCtrl::GTKProcessEvent(wxEvent
& event
) const
2028 bool rc
= wxTextCtrlBase::GTKProcessEvent(event
);
2030 // GtkTextView starts a drag operation when left mouse button is pressed
2031 // and ends it when it is released and if it doesn't get the release event
2032 // the next click on a control results in an assertion failure inside
2033 // gtk_text_view_start_selection_drag() which simply *kills* the program
2034 // without anything we can do about it, so always let GTK+ have this event
2035 return rc
&& (IsSingleLine() || event
.GetEventType() != wxEVT_LEFT_UP
);
2040 wxTextCtrl::GetClassDefaultAttributes(wxWindowVariant
WXUNUSED(variant
))
2042 return GetDefaultAttributesFromGTKWidget(gtk_entry_new(), true);
2045 #endif // wxUSE_TEXTCTRL