Provide shorter synonyms for wxEVT_XXX constants.
[wxWidgets.git] / src / gtk / textctrl.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/gtk/textctrl.cpp
3 // Purpose:
4 // Author: Robert Roebling
5 // Id: $Id$
6 // Copyright: (c) 1998 Robert Roebling, Vadim Zeitlin, 2005 Mart Raudsepp
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
9
10 // For compilers that support precompilation, includes "wx.h".
11 #include "wx/wxprec.h"
12
13 #if wxUSE_TEXTCTRL
14
15 #include "wx/textctrl.h"
16
17 #ifndef WX_PRECOMP
18 #include "wx/intl.h"
19 #include "wx/log.h"
20 #include "wx/utils.h"
21 #include "wx/settings.h"
22 #include "wx/math.h"
23 #endif
24
25 #include "wx/scopeguard.h"
26 #include "wx/strconv.h"
27 #include "wx/fontutil.h" // for wxNativeFontInfo (GetNativeFontInfo())
28
29 #include <sys/types.h>
30 #include <sys/stat.h>
31 #include <ctype.h>
32
33 #include <gtk/gtk.h>
34 #include "wx/gtk/private.h"
35 #include "wx/gtk/private/gtk2-compat.h"
36
37 // ----------------------------------------------------------------------------
38 // helpers
39 // ----------------------------------------------------------------------------
40
41 extern "C" {
42 static void wxGtkOnRemoveTag(GtkTextBuffer *buffer,
43 GtkTextTag *tag,
44 GtkTextIter * WXUNUSED(start),
45 GtkTextIter * WXUNUSED(end),
46 char *prefix)
47 {
48 gchar *name;
49 g_object_get (tag, "name", &name, NULL);
50
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");
54
55 g_free(name);
56 }
57 }
58
59 // remove all tags starting with the given prefix from the start..end range
60 static void
61 wxGtkTextRemoveTagsWithPrefix(GtkTextBuffer *text_buffer,
62 const char *prefix,
63 GtkTextIter *start,
64 GtkTextIter *end)
65 {
66 gulong remove_handler_id = g_signal_connect
67 (
68 text_buffer,
69 "remove_tag",
70 G_CALLBACK(wxGtkOnRemoveTag),
71 gpointer(prefix)
72 );
73 gtk_text_buffer_remove_all_tags(text_buffer, start, end);
74 g_signal_handler_disconnect(text_buffer, remove_handler_id);
75 }
76
77 static void wxGtkTextApplyTagsFromAttr(GtkWidget *text,
78 GtkTextBuffer *text_buffer,
79 const wxTextAttr& attr,
80 GtkTextIter *start,
81 GtkTextIter *end)
82 {
83 static gchar buf[1024];
84 GtkTextTag *tag;
85
86 if (attr.HasFont())
87 {
88 wxGtkTextRemoveTagsWithPrefix(text_buffer, "WXFONT", start, end);
89
90 wxFont font(attr.GetFont());
91
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 ),
96 buf );
97 if (!tag)
98 tag = gtk_text_buffer_create_tag( text_buffer, buf,
99 "font-desc", font_description,
100 NULL );
101 gtk_text_buffer_apply_tag (text_buffer, tag, start, end);
102
103 if (font.GetUnderlined())
104 {
105 g_snprintf(buf, sizeof(buf), "WXFONTUNDERLINE");
106 tag = gtk_text_tag_table_lookup( gtk_text_buffer_get_tag_table( text_buffer ),
107 buf );
108 if (!tag)
109 tag = gtk_text_buffer_create_tag( text_buffer, buf,
110 "underline-set", TRUE,
111 "underline", PANGO_UNDERLINE_SINGLE,
112 NULL );
113 gtk_text_buffer_apply_tag (text_buffer, tag, start, end);
114 }
115 if ( font.GetStrikethrough() )
116 {
117 g_snprintf(buf, sizeof(buf), "WXFONTSTRIKETHROUGH");
118 tag = gtk_text_tag_table_lookup( gtk_text_buffer_get_tag_table( text_buffer ),
119 buf );
120 if (!tag)
121 tag = gtk_text_buffer_create_tag( text_buffer, buf,
122 "strikethrough-set", TRUE,
123 "strikethrough", TRUE,
124 NULL );
125 gtk_text_buffer_apply_tag (text_buffer, tag, start, end);
126 }
127 }
128
129 if (attr.HasTextColour())
130 {
131 wxGtkTextRemoveTagsWithPrefix(text_buffer, "WXFORECOLOR", start, end);
132
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 ),
137 buf );
138 if (!tag)
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);
142 }
143
144 if (attr.HasBackgroundColour())
145 {
146 wxGtkTextRemoveTagsWithPrefix(text_buffer, "WXBACKCOLOR", start, end);
147
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 ),
152 buf );
153 if (!tag)
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);
157 }
158
159 if (attr.HasAlignment())
160 {
161 GtkTextIter para_start, para_end = *end;
162 gtk_text_buffer_get_iter_at_line( text_buffer,
163 &para_start,
164 gtk_text_iter_get_line(start) );
165 gtk_text_iter_forward_line(&para_end);
166
167 wxGtkTextRemoveTagsWithPrefix(text_buffer, "WXALIGNMENT", &para_start, &para_end);
168
169 GtkJustification align;
170 switch (attr.GetAlignment())
171 {
172 case wxTEXT_ALIGNMENT_RIGHT:
173 align = GTK_JUSTIFY_RIGHT;
174 break;
175 case wxTEXT_ALIGNMENT_CENTER:
176 align = GTK_JUSTIFY_CENTER;
177 break;
178 case wxTEXT_ALIGNMENT_JUSTIFIED:
179 #ifdef __WXGTK3__
180 align = GTK_JUSTIFY_FILL;
181 break;
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))
186 {
187 align = GTK_JUSTIFY_FILL;
188 break;
189 }
190 // fallthrough
191 #endif
192 default:
193 align = GTK_JUSTIFY_LEFT;
194 break;
195 }
196
197 g_snprintf(buf, sizeof(buf), "WXALIGNMENT %d", align);
198 tag = gtk_text_tag_table_lookup( gtk_text_buffer_get_tag_table( text_buffer ),
199 buf );
200 if (!tag)
201 tag = gtk_text_buffer_create_tag( text_buffer, buf,
202 "justification", align, NULL );
203 gtk_text_buffer_apply_tag( text_buffer, tag, &para_start, &para_end );
204 }
205
206 if (attr.HasLeftIndent())
207 {
208 // Indentation attribute
209
210 // Clear old indentation tags
211 GtkTextIter para_start, para_end = *end;
212 gtk_text_buffer_get_iter_at_line( text_buffer,
213 &para_start,
214 gtk_text_iter_get_line(start) );
215 gtk_text_iter_forward_line(&para_end);
216
217 wxGtkTextRemoveTagsWithPrefix(text_buffer, "WXINDENT", &para_start, &para_end);
218
219 // Convert indent from 1/10th of a mm into pixels
220 float factor =
221 (float)gdk_screen_get_width(gtk_widget_get_screen(text)) /
222 gdk_screen_get_width_mm(gtk_widget_get_screen(text)) / 10;
223
224 const int indent = (int)(factor * attr.GetLeftIndent());
225 const int subIndent = (int)(factor * attr.GetLeftSubIndent());
226
227 gint gindent;
228 gint gsubindent;
229
230 if (subIndent >= 0)
231 {
232 gindent = indent;
233 gsubindent = -subIndent;
234 }
235 else
236 {
237 gindent = -subIndent;
238 gsubindent = indent;
239 }
240
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 ),
243 buf );
244 if (!tag)
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, &para_start, &para_end);
248 }
249
250 if (attr.HasTabs())
251 {
252 // Set tab stops
253
254 // Clear old tabs
255 GtkTextIter para_start, para_end = *end;
256 gtk_text_buffer_get_iter_at_line( text_buffer,
257 &para_start,
258 gtk_text_iter_get_line(start) );
259 gtk_text_iter_forward_line(&para_end);
260
261 wxGtkTextRemoveTagsWithPrefix(text_buffer, "WXTABS", &para_start, &para_end);
262
263 const wxArrayInt& tabs = attr.GetTabs();
264
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]);
269
270 const wxWX2MBbuf buftag = tagname.utf8_str();
271
272 tag = gtk_text_tag_table_lookup( gtk_text_buffer_get_tag_table( text_buffer ),
273 buftag );
274 if (!tag)
275 {
276 // Factor to convert from 1/10th of a mm into pixels
277 float factor =
278 (float)gdk_screen_get_width(gtk_widget_get_screen(text)) /
279 gdk_screen_get_width_mm(gtk_widget_get_screen(text)) / 10;
280
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);
287 }
288 gtk_text_buffer_apply_tag (text_buffer, tag, &para_start, &para_end);
289 }
290 }
291
292 static void wxGtkTextInsert(GtkWidget *text,
293 GtkTextBuffer *text_buffer,
294 const wxTextAttr& attr,
295 const wxCharBuffer& buffer)
296
297 {
298 gint start_offset;
299 GtkTextIter iter, start;
300
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) );
305
306 gtk_text_buffer_get_iter_at_offset (text_buffer, &start, start_offset);
307
308 wxGtkTextApplyTagsFromAttr(text, text_buffer, attr, &start, &iter);
309 }
310
311 // Implementation of wxTE_AUTO_URL for wxGTK2 by Mart Raudsepp,
312
313 extern "C" {
314 static void
315 au_apply_tag_callback(GtkTextBuffer *buffer,
316 GtkTextTag *tag,
317 GtkTextIter * WXUNUSED(start),
318 GtkTextIter * WXUNUSED(end),
319 gpointer WXUNUSED(textctrl))
320 {
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");
323 }
324 }
325
326 //-----------------------------------------------------------------------------
327 // GtkTextCharPredicates for gtk_text_iter_*_find_char
328 //-----------------------------------------------------------------------------
329
330 extern "C" {
331 static gboolean
332 pred_whitespace(gunichar ch, gpointer WXUNUSED(user_data))
333 {
334 return g_unichar_isspace(ch);
335 }
336 }
337
338 extern "C" {
339 static gboolean
340 pred_non_whitespace (gunichar ch, gpointer WXUNUSED(user_data))
341 {
342 return !g_unichar_isspace(ch);
343 }
344 }
345
346 extern "C" {
347 static gboolean
348 pred_nonpunct (gunichar ch, gpointer WXUNUSED(user_data))
349 {
350 return !g_unichar_ispunct(ch);
351 }
352 }
353
354 extern "C" {
355 static gboolean
356 pred_nonpunct_or_slash (gunichar ch, gpointer WXUNUSED(user_data))
357 {
358 return !g_unichar_ispunct(ch) || ch == '/';
359 }
360 }
361
362 //-----------------------------------------------------------------------------
363 // Check for links between s and e and correct tags as necessary
364 //-----------------------------------------------------------------------------
365
366 // This function should be made match better while being efficient at one point.
367 // Most probably with a row of regular expressions.
368 extern "C" {
369 static void
370 au_check_word( GtkTextIter *s, GtkTextIter *e )
371 {
372 static const char *const URIPrefixes[] =
373 {
374 "http://",
375 "ftp://",
376 "www.",
377 "ftp.",
378 "mailto://",
379 "https://",
380 "file://",
381 "nntp://",
382 "news://",
383 "telnet://",
384 "mms://",
385 "gopher://",
386 "prospero://",
387 "wais://",
388 };
389
390 GtkTextIter start = *s, end = *e;
391 GtkTextBuffer *buffer = gtk_text_iter_get_buffer(s);
392
393 // Get our special link tag
394 GtkTextTag *tag = gtk_text_tag_table_lookup(gtk_text_buffer_get_tag_table(buffer), "wxUrl");
395
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 );
401
402 gtk_text_iter_backward_find_char( &end, pred_nonpunct_or_slash, NULL, &start );
403 gtk_text_iter_forward_char(&end);
404
405 wxGtkString text(gtk_text_iter_get_text( &start, &end ));
406 size_t len = strlen(text), prefix_len;
407 size_t n;
408
409 for( n = 0; n < WXSIZEOF(URIPrefixes); ++n )
410 {
411 prefix_len = strlen(URIPrefixes[n]);
412 if((len > prefix_len) && !wxStrnicmp(text, URIPrefixes[n], prefix_len))
413 break;
414 }
415
416 if(n < WXSIZEOF(URIPrefixes))
417 {
418 gulong signal_id = g_signal_handler_find (buffer,
419 (GSignalMatchType) (G_SIGNAL_MATCH_FUNC),
420 0, 0, NULL,
421 (gpointer)au_apply_tag_callback, NULL);
422
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);
426 }
427 }
428 }
429
430 extern "C" {
431 static void
432 au_check_range(GtkTextIter *s,
433 GtkTextIter *range_end)
434 {
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");
439
440 gtk_text_buffer_remove_tag(buffer, tag, s, range_end);
441
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);
444
445 while(!gtk_text_iter_equal(&range_start, range_end))
446 {
447 word_end = range_start;
448 gtk_text_iter_forward_find_char(&word_end, pred_whitespace, NULL, range_end);
449
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);
452
453 range_start = word_end;
454 gtk_text_iter_forward_find_char(&range_start, pred_non_whitespace, NULL, range_end);
455 }
456 }
457 }
458
459 //-----------------------------------------------------------------------------
460 // "insert-text" for GtkTextBuffer
461 //-----------------------------------------------------------------------------
462
463 extern "C" {
464
465 // Normal version used for detecting IME input and generating appropriate
466 // events for it.
467 void
468 wx_insert_text_callback(GtkTextBuffer* buffer,
469 GtkTextIter* WXUNUSED(end),
470 gchar *text,
471 gint WXUNUSED(len),
472 wxTextCtrl *win)
473 {
474 if ( win->GTKOnInsertText(text) )
475 {
476 // If we already handled the new text insertion, don't do it again.
477 g_signal_stop_emission_by_name (buffer, "insert_text");
478 }
479 }
480
481
482 // And an "after" version used for detecting URLs in the text.
483 static void
484 au_insert_text_callback(GtkTextBuffer * WXUNUSED(buffer),
485 GtkTextIter *end,
486 gchar *text,
487 gint len,
488 wxTextCtrl *win)
489 {
490 if (!len || !(win->GetWindowStyleFlag() & wxTE_AUTO_URL) )
491 return;
492
493 GtkTextIter start = *end;
494 gtk_text_iter_backward_chars(&start, g_utf8_strlen(text, len));
495
496 GtkTextIter line_start = start;
497 GtkTextIter line_end = *end;
498 GtkTextIter words_start = start;
499 GtkTextIter words_end = *end;
500
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);
505
506 au_check_range(&words_start, &words_end);
507 }
508 }
509
510 //-----------------------------------------------------------------------------
511 // "delete-range" for GtkTextBuffer
512 //-----------------------------------------------------------------------------
513
514 extern "C" {
515 static void
516 au_delete_range_callback(GtkTextBuffer * WXUNUSED(buffer),
517 GtkTextIter *start,
518 GtkTextIter *end,
519 wxTextCtrl *win)
520 {
521 if( !(win->GetWindowStyleFlag() & wxTE_AUTO_URL) )
522 return;
523
524 GtkTextIter line_start = *start, line_end = *end;
525
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);
530
531 au_check_range(start, end);
532 }
533 }
534
535 //-----------------------------------------------------------------------------
536 // "populate_popup" from text control and "unmap" from its poup menu
537 //-----------------------------------------------------------------------------
538
539 extern "C" {
540 static void
541 gtk_textctrl_popup_unmap( GtkMenu *WXUNUSED(menu), wxTextCtrl* win )
542 {
543 win->GTKEnableFocusOutEvent();
544 }
545 }
546
547 extern "C" {
548 static void
549 gtk_textctrl_populate_popup( GtkEntry *WXUNUSED(entry), GtkMenu *menu, wxTextCtrl *win )
550 {
551 win->GTKDisableFocusOutEvent();
552
553 g_signal_connect (menu, "unmap", G_CALLBACK (gtk_textctrl_popup_unmap), win );
554 }
555 }
556
557 //-----------------------------------------------------------------------------
558 // "changed"
559 //-----------------------------------------------------------------------------
560
561 extern "C" {
562 static void
563 gtk_text_changed_callback( GtkWidget *WXUNUSED(widget), wxTextCtrl *win )
564 {
565 if ( win->IgnoreTextUpdate() )
566 return;
567
568 if ( win->MarkDirtyOnChange() )
569 win->MarkDirty();
570
571 win->SendTextUpdatedEvent();
572 }
573 }
574
575 //-----------------------------------------------------------------------------
576 // "mark_set"
577 //-----------------------------------------------------------------------------
578
579 extern "C" {
580 static void mark_set(GtkTextBuffer*, GtkTextIter*, GtkTextMark* mark, GSList** markList)
581 {
582 if (gtk_text_mark_get_name(mark) == NULL)
583 *markList = g_slist_prepend(*markList, mark);
584 }
585 }
586
587 //-----------------------------------------------------------------------------
588 // wxTextCtrl
589 //-----------------------------------------------------------------------------
590
591 BEGIN_EVENT_TABLE(wxTextCtrl, wxTextCtrlBase)
592 EVT_CHAR(wxTextCtrl::OnChar)
593
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)
599
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)
605
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)
615 END_EVENT_TABLE()
616
617 void wxTextCtrl::Init()
618 {
619 m_dontMarkDirty =
620 m_modified = false;
621
622 m_countUpdatesToIgnore = 0;
623
624 SetUpdateFont(false);
625
626 m_text = NULL;
627 m_buffer = NULL;
628 m_showPositionOnThaw = NULL;
629 m_anonymousMarkList = NULL;
630 }
631
632 wxTextCtrl::~wxTextCtrl()
633 {
634 if (m_text)
635 GTKDisconnect(m_text);
636 if (m_buffer)
637 GTKDisconnect(m_buffer);
638
639 // this is also done by wxWindowGTK dtor, but has to be done here so our
640 // DoThaw() override is called
641 while (IsFrozen())
642 Thaw();
643
644 if (m_anonymousMarkList)
645 g_slist_free(m_anonymousMarkList);
646 }
647
648 wxTextCtrl::wxTextCtrl( wxWindow *parent,
649 wxWindowID id,
650 const wxString &value,
651 const wxPoint &pos,
652 const wxSize &size,
653 long style,
654 const wxValidator& validator,
655 const wxString &name )
656 {
657 Init();
658
659 Create( parent, id, value, pos, size, style, validator, name );
660 }
661
662 bool wxTextCtrl::Create( wxWindow *parent,
663 wxWindowID id,
664 const wxString &value,
665 const wxPoint &pos,
666 const wxSize &size,
667 long style,
668 const wxValidator& validator,
669 const wxString &name )
670 {
671 if (!PreCreation( parent, pos, size ) ||
672 !CreateBase( parent, id, pos, size, style, validator, name ))
673 {
674 wxFAIL_MSG( wxT("wxTextCtrl creation failed") );
675 return false;
676 }
677
678 bool multi_line = (style & wxTE_MULTILINE) != 0;
679
680 if (multi_line)
681 {
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);
684 // Create view
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);
689
690 // create "ShowPosition" marker
691 GtkTextIter iter;
692 gtk_text_buffer_get_start_iter(m_buffer, &iter);
693 gtk_text_buffer_create_mark(m_buffer, "ShowPosition", &iter, true);
694
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
700 ? GTK_POLICY_NEVER
701 : GTK_POLICY_AUTOMATIC );
702 // for ScrollLines/Pages
703 m_scrollBar[1] = GTK_RANGE(gtk_scrolled_window_get_vscrollbar(GTK_SCROLLED_WINDOW(m_widget)));
704
705 // Insert view into scrolled window
706 gtk_container_add( GTK_CONTAINER(m_widget), m_text );
707
708 GTKSetWrapMode();
709
710 GTKScrolledWindowSetBorder(m_widget, style);
711
712 gtk_widget_add_events( GTK_WIDGET(m_text), GDK_ENTER_NOTIFY_MASK | GDK_LEAVE_NOTIFY_MASK );
713
714 gtk_widget_set_can_focus(m_widget, FALSE);
715 }
716 else
717 {
718 // a single-line text control: no need for scrollbars
719 m_widget =
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);
724
725 if (style & wxNO_BORDER)
726 g_object_set (m_text, "has-frame", FALSE, NULL);
727
728 }
729 g_object_ref(m_widget);
730
731 m_parent->DoAddChild( this );
732
733 m_focusWidget = m_text;
734
735 PostCreation(size);
736
737 if (multi_line)
738 {
739 gtk_widget_show(m_text);
740 }
741
742 // We want to be notified about text changes.
743 if (multi_line)
744 {
745 g_signal_connect (m_buffer, "changed",
746 G_CALLBACK (gtk_text_changed_callback), this);
747 }
748 else
749 {
750 g_signal_connect (m_text, "changed",
751 G_CALLBACK (gtk_text_changed_callback), this);
752 }
753
754 // Catch to disable focus out handling
755 g_signal_connect (m_text, "populate_popup",
756 G_CALLBACK (gtk_textctrl_populate_popup),
757 this);
758
759 if (!value.empty())
760 {
761 SetValue( value );
762 }
763
764 if (style & wxTE_PASSWORD)
765 GTKSetVisibility();
766
767 if (style & wxTE_READONLY)
768 GTKSetEditable();
769
770 // left justification (alignment) is the default anyhow
771 if ( style & (wxTE_RIGHT | wxTE_CENTRE) )
772 GTKSetJustification();
773
774 if (multi_line)
775 {
776 // Handle URLs on multi-line controls with wxTE_AUTO_URL style
777 if (style & wxTE_AUTO_URL)
778 {
779 GtkTextIter start, end;
780
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,
787 NULL);
788
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);
794
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);
803
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);
808 }
809
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);
814 }
815 else // single line
816 {
817 // do the right thing with Enter presses depending on whether we have
818 // wxTE_PROCESS_ENTER or not
819 GTKSetActivatesDefault();
820
821 GTKConnectInsertTextSignal(GTK_ENTRY(m_text));
822 }
823
824
825 GTKConnectClipboardSignals(m_text);
826
827 m_cursor = wxCursor( wxCURSOR_IBEAM );
828
829 return true;
830 }
831
832 GtkEditable *wxTextCtrl::GetEditable() const
833 {
834 wxCHECK_MSG( IsSingleLine(), NULL, "shouldn't be called for multiline" );
835
836 return GTK_EDITABLE(m_text);
837 }
838
839 GtkEntry *wxTextCtrl::GetEntry() const
840 {
841 return GTK_ENTRY(m_text);
842 }
843
844 int wxTextCtrl::GTKIMFilterKeypress(GdkEventKey* event) const
845 {
846 #if GTK_CHECK_VERSION(2, 22, 0)
847 if ( gtk_check_version(2, 12, 0) == 0 )
848 {
849 if ( IsSingleLine() )
850 {
851 return wxTextEntry::GTKIMFilterKeypress(event);
852 }
853 else
854 {
855 return gtk_text_view_im_context_filter_keypress(
856 GTK_TEXT_VIEW(m_text),
857 event
858 );
859 }
860 }
861 #else // GTK+ < 2.22
862 wxUnusedVar(event);
863 #endif // GTK+ 2.22+
864
865 return FALSE;
866 }
867
868 // ----------------------------------------------------------------------------
869 // flags handling
870 // ----------------------------------------------------------------------------
871
872 void wxTextCtrl::GTKSetEditable()
873 {
874 gboolean editable = !HasFlag(wxTE_READONLY);
875 if ( IsSingleLine() )
876 gtk_editable_set_editable(GTK_EDITABLE(m_text), editable);
877 else
878 gtk_text_view_set_editable(GTK_TEXT_VIEW(m_text), editable);
879 }
880
881 void wxTextCtrl::GTKSetVisibility()
882 {
883 wxCHECK_RET( IsSingleLine(),
884 "wxTE_PASSWORD is for single line text controls only" );
885
886 gtk_entry_set_visibility(GTK_ENTRY(m_text), !HasFlag(wxTE_PASSWORD));
887 }
888
889 void wxTextCtrl::GTKSetActivatesDefault()
890 {
891 wxCHECK_RET( IsSingleLine(),
892 "wxTE_PROCESS_ENTER is for single line text controls only" );
893
894 gtk_entry_set_activates_default(GTK_ENTRY(m_text),
895 !HasFlag(wxTE_PROCESS_ENTER));
896 }
897
898 void wxTextCtrl::GTKSetWrapMode()
899 {
900 // no wrapping in single line controls
901 if ( !IsMultiLine() )
902 return;
903
904 // translate wx wrapping style to GTK+
905 GtkWrapMode wrap;
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;
914
915 gtk_text_view_set_wrap_mode( GTK_TEXT_VIEW( m_text ), wrap );
916 }
917
918 void wxTextCtrl::GTKSetJustification()
919 {
920 if ( IsMultiLine() )
921 {
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;
929
930 gtk_text_view_set_justification(GTK_TEXT_VIEW(m_text), just);
931 }
932 else // single line
933 {
934 gfloat align;
935 if ( HasFlag(wxTE_RIGHT) )
936 align = 1.0;
937 else if ( HasFlag(wxTE_CENTRE) )
938 align = 0.5;
939 else // single line
940 align = 0.0;
941
942 gtk_entry_set_alignment(GTK_ENTRY(m_text), align);
943 }
944 }
945
946 void wxTextCtrl::SetWindowStyleFlag(long style)
947 {
948 long styleOld = GetWindowStyleFlag();
949
950 wxTextCtrlBase::SetWindowStyleFlag(style);
951
952 if ( (style & wxTE_READONLY) != (styleOld & wxTE_READONLY) )
953 GTKSetEditable();
954
955 if ( (style & wxTE_PASSWORD) != (styleOld & wxTE_PASSWORD) )
956 GTKSetVisibility();
957
958 if ( (style & wxTE_PROCESS_ENTER) != (styleOld & wxTE_PROCESS_ENTER) )
959 GTKSetActivatesDefault();
960
961 static const long flagsWrap = wxTE_WORDWRAP | wxTE_CHARWRAP | wxTE_DONTWRAP;
962 if ( (style & flagsWrap) != (styleOld & flagsWrap) )
963 GTKSetWrapMode();
964
965 static const long flagsAlign = wxTE_LEFT | wxTE_CENTRE | wxTE_RIGHT;
966 if ( (style & flagsAlign) != (styleOld & flagsAlign) )
967 GTKSetJustification();
968 }
969
970 // ----------------------------------------------------------------------------
971 // control value
972 // ----------------------------------------------------------------------------
973
974 wxString wxTextCtrl::GetValue() const
975 {
976 wxCHECK_MSG( m_text != NULL, wxEmptyString, wxT("invalid text ctrl") );
977
978 if ( IsMultiLine() )
979 {
980 GtkTextIter start;
981 gtk_text_buffer_get_start_iter( m_buffer, &start );
982 GtkTextIter end;
983 gtk_text_buffer_get_end_iter( m_buffer, &end );
984 wxGtkString text(gtk_text_buffer_get_text(m_buffer, &start, &end, true));
985
986 return wxGTK_CONV_BACK(text);
987 }
988 else // single line
989 {
990 return wxTextEntry::GetValue();
991 }
992 }
993
994 wxFontEncoding wxTextCtrl::GetTextEncoding() const
995 {
996 // GTK+ uses UTF-8 internally, we need to convert to it but from which
997 // encoding?
998
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;
1004
1005 // fall back to the controls font if no style
1006 if ( enc == wxFONTENCODING_SYSTEM && m_hasFont )
1007 enc = GetFont().GetEncoding();
1008
1009 return enc;
1010 }
1011
1012 bool wxTextCtrl::IsEmpty() const
1013 {
1014 if ( IsMultiLine() )
1015 return gtk_text_buffer_get_char_count(m_buffer) == 0;
1016
1017 return wxTextEntry::IsEmpty();
1018 }
1019
1020 void wxTextCtrl::DoSetValue( const wxString &value, int flags )
1021 {
1022 wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") );
1023
1024 m_modified = false;
1025
1026 if ( !IsMultiLine() )
1027 {
1028 wxTextEntry::DoSetValue(value, flags);
1029 return;
1030 }
1031
1032 if (value.IsEmpty())
1033 {
1034 if ( !(flags & SetValue_SendEvent) )
1035 EnableTextChangedEvents(false);
1036
1037 gtk_text_buffer_set_text( m_buffer, "", 0 );
1038
1039 if ( !(flags & SetValue_SendEvent) )
1040 EnableTextChangedEvents(true);
1041
1042 return;
1043 }
1044
1045 #if wxUSE_UNICODE
1046 const wxCharBuffer buffer(value.utf8_str());
1047 #else
1048 wxFontEncoding enc = m_defaultStyle.HasFont()
1049 ? m_defaultStyle.GetFont().GetEncoding()
1050 : wxFONTENCODING_SYSTEM;
1051 if ( enc == wxFONTENCODING_SYSTEM )
1052 enc = GetTextEncoding();
1053
1054 const wxCharBuffer buffer(wxGTK_CONV_ENC(value, enc));
1055 if ( !buffer )
1056 {
1057 // see comment in WriteText() as to why we must warn the user about
1058 // this
1059 wxLogWarning(_("Failed to set text in the text control."));
1060 return;
1061 }
1062 #endif
1063
1064 if ( !(flags & SetValue_SendEvent) )
1065 {
1066 EnableTextChangedEvents(false);
1067 }
1068
1069 gtk_text_buffer_set_text( m_buffer, buffer, strlen(buffer) );
1070
1071 if ( !m_defaultStyle.IsDefault() )
1072 {
1073 GtkTextIter start, end;
1074 gtk_text_buffer_get_bounds( m_buffer, &start, &end );
1075 wxGtkTextApplyTagsFromAttr(m_widget, m_buffer, m_defaultStyle,
1076 &start, &end);
1077 }
1078
1079 if ( !(flags & SetValue_SendEvent) )
1080 {
1081 EnableTextChangedEvents(true);
1082 }
1083 }
1084
1085 void wxTextCtrl::WriteText( const wxString &text )
1086 {
1087 wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") );
1088
1089 // we're changing the text programmatically
1090 DontMarkDirtyOnNextChange();
1091
1092 if ( !IsMultiLine() )
1093 {
1094 wxTextEntry::WriteText(text);
1095 return;
1096 }
1097
1098 #if wxUSE_UNICODE
1099 const wxCharBuffer buffer(text.utf8_str());
1100 #else
1101 // check if we have a specific style for the current position
1102 wxFontEncoding enc = wxFONTENCODING_SYSTEM;
1103 wxTextAttr style;
1104 if ( GetStyle(GetInsertionPoint(), style) && style.HasFontEncoding() )
1105 {
1106 enc = style.GetFontEncoding();
1107 }
1108
1109 if ( enc == wxFONTENCODING_SYSTEM )
1110 enc = GetTextEncoding();
1111
1112 const wxCharBuffer buffer(wxGTK_CONV_ENC(text, enc));
1113 if ( !buffer )
1114 {
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."));
1119 return;
1120 }
1121 #endif
1122
1123 // First remove the selection if there is one
1124 // TODO: Is there an easier GTK specific way to do this?
1125 long from, to;
1126 GetSelection(&from, &to);
1127 if (from != to)
1128 Remove(from, to);
1129
1130 // Insert the text
1131 wxGtkTextInsert( m_text, m_buffer, m_defaultStyle, buffer );
1132
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
1135 if (!IsFrozen())
1136 {
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))
1142 {
1143 gtk_text_view_scroll_to_mark(GTK_TEXT_VIEW(m_text),
1144 gtk_text_buffer_get_insert(m_buffer), 0, false, 0, 1);
1145 }
1146 }
1147 }
1148
1149 wxString wxTextCtrl::GetLineText( long lineNo ) const
1150 {
1151 wxString result;
1152 if ( IsMultiLine() )
1153 {
1154 GtkTextIter line;
1155 gtk_text_buffer_get_iter_at_line(m_buffer,&line,lineNo);
1156
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);
1161
1162 wxGtkString text(gtk_text_buffer_get_text(m_buffer, &line, &end, true));
1163 result = wxGTK_CONV_BACK(text);
1164 }
1165 else
1166 {
1167 if (lineNo == 0)
1168 result = GetValue();
1169 }
1170 return result;
1171 }
1172
1173 void wxTextCtrl::OnDropFiles( wxDropFilesEvent &WXUNUSED(event) )
1174 {
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") );
1178 }
1179
1180 bool wxTextCtrl::PositionToXY(long pos, long *x, long *y ) const
1181 {
1182 if ( IsMultiLine() )
1183 {
1184 GtkTextIter iter;
1185
1186 if (pos > GetLastPosition())
1187 return false;
1188
1189 gtk_text_buffer_get_iter_at_offset(m_buffer, &iter, pos);
1190
1191 if ( y )
1192 *y = gtk_text_iter_get_line(&iter);
1193 if ( x )
1194 *x = gtk_text_iter_get_line_offset(&iter);
1195 }
1196 else // single line control
1197 {
1198 if (pos <= gtk_entry_get_text_length(GTK_ENTRY(m_text)))
1199 {
1200 if ( y )
1201 *y = 0;
1202 if ( x )
1203 *x = pos;
1204 }
1205 else
1206 {
1207 // index out of bounds
1208 return false;
1209 }
1210 }
1211
1212 return true;
1213 }
1214
1215 long wxTextCtrl::XYToPosition(long x, long y ) const
1216 {
1217 if ( IsSingleLine() )
1218 return 0;
1219
1220 GtkTextIter iter;
1221 if (y >= gtk_text_buffer_get_line_count (m_buffer))
1222 return -1;
1223
1224 gtk_text_buffer_get_iter_at_line(m_buffer, &iter, y);
1225 if (x >= gtk_text_iter_get_chars_in_line (&iter))
1226 return -1;
1227
1228 return gtk_text_iter_get_offset(&iter) + x;
1229 }
1230
1231 int wxTextCtrl::GetLineLength(long lineNo) const
1232 {
1233 if ( IsMultiLine() )
1234 {
1235 int last_line = gtk_text_buffer_get_line_count( m_buffer ) - 1;
1236 if (lineNo > last_line)
1237 return -1;
1238
1239 GtkTextIter iter;
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);
1243 }
1244 else
1245 {
1246 wxString str = GetLineText (lineNo);
1247 return (int) str.length();
1248 }
1249 }
1250
1251 wxPoint wxTextCtrl::DoPositionToCoords(long pos) const
1252 {
1253 if ( !IsMultiLine() )
1254 {
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
1259 // controls anyhow.
1260 return wxDefaultPosition;
1261 }
1262
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);
1266
1267 GtkTextIter iter;
1268 gtk_text_buffer_get_iter_at_offset(m_buffer, &iter, pos);
1269
1270 GdkRectangle bufferCoords;
1271 gtk_text_view_get_iter_location(textview, &iter, &bufferCoords);
1272
1273 gint winCoordX = 0,
1274 winCoordY = 0;
1275 gtk_text_view_buffer_to_window_coords(textview, GTK_TEXT_WINDOW_WIDGET,
1276 bufferCoords.x, bufferCoords.y,
1277 &winCoordX, &winCoordY);
1278
1279 return wxPoint(winCoordX, winCoordY);
1280 }
1281
1282 int wxTextCtrl::GetNumberOfLines() const
1283 {
1284 if ( IsMultiLine() )
1285 {
1286 return gtk_text_buffer_get_line_count( m_buffer );
1287 }
1288 else // single line
1289 {
1290 return 1;
1291 }
1292 }
1293
1294 void wxTextCtrl::SetInsertionPoint( long pos )
1295 {
1296 wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") );
1297
1298 if ( IsMultiLine() )
1299 {
1300 GtkTextIter iter;
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);
1304 if (IsFrozen())
1305 // defer until Thaw, text view is not using m_buffer now
1306 m_showPositionOnThaw = mark;
1307 else
1308 gtk_text_view_scroll_mark_onscreen(GTK_TEXT_VIEW(m_text), mark);
1309 }
1310 else // single line
1311 {
1312 wxTextEntry::SetInsertionPoint(pos);
1313 }
1314 }
1315
1316 void wxTextCtrl::SetEditable( bool editable )
1317 {
1318 wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") );
1319
1320 if ( IsMultiLine() )
1321 {
1322 gtk_text_view_set_editable( GTK_TEXT_VIEW(m_text), editable );
1323 }
1324 else // single line
1325 {
1326 wxTextEntry::SetEditable(editable);
1327 }
1328 }
1329
1330 bool wxTextCtrl::Enable( bool enable )
1331 {
1332 if (!wxWindowBase::Enable(enable))
1333 {
1334 // nothing to do
1335 return false;
1336 }
1337
1338 gtk_widget_set_sensitive( m_text, enable );
1339 SetCursor(enable ? wxCursor(wxCURSOR_IBEAM) : wxCursor());
1340
1341 return true;
1342 }
1343
1344 void wxTextCtrl::MarkDirty()
1345 {
1346 m_modified = true;
1347 }
1348
1349 void wxTextCtrl::DiscardEdits()
1350 {
1351 m_modified = false;
1352 }
1353
1354 // ----------------------------------------------------------------------------
1355 // event handling
1356 // ----------------------------------------------------------------------------
1357
1358 void wxTextCtrl::EnableTextChangedEvents(bool enable)
1359 {
1360 if ( enable )
1361 {
1362 g_signal_handlers_unblock_by_func(GetTextObject(),
1363 (gpointer)gtk_text_changed_callback, this);
1364 }
1365 else // disable events
1366 {
1367 g_signal_handlers_block_by_func(GetTextObject(),
1368 (gpointer)gtk_text_changed_callback, this);
1369 }
1370 }
1371
1372 bool wxTextCtrl::IgnoreTextUpdate()
1373 {
1374 if ( m_countUpdatesToIgnore > 0 )
1375 {
1376 m_countUpdatesToIgnore--;
1377
1378 return true;
1379 }
1380
1381 return false;
1382 }
1383
1384 bool wxTextCtrl::MarkDirtyOnChange()
1385 {
1386 if ( m_dontMarkDirty )
1387 {
1388 m_dontMarkDirty = false;
1389
1390 return false;
1391 }
1392
1393 return true;
1394 }
1395
1396 void wxTextCtrl::SetSelection( long from, long to )
1397 {
1398 wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") );
1399
1400 if ( IsMultiLine() )
1401 {
1402 if (from == -1 && to == -1)
1403 {
1404 from = 0;
1405 to = GetValue().length();
1406 }
1407
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 );
1411
1412 gtk_text_buffer_select_range( m_buffer, &fromi, &toi );
1413 }
1414 else // single line
1415 {
1416 wxTextEntry::SetSelection(from, to);
1417 }
1418 }
1419
1420 void wxTextCtrl::ShowPosition( long pos )
1421 {
1422 if (IsMultiLine())
1423 {
1424 GtkTextIter iter;
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);
1428 if (IsFrozen())
1429 // defer until Thaw, text view is not using m_buffer now
1430 m_showPositionOnThaw = mark;
1431 else
1432 gtk_text_view_scroll_mark_onscreen(GTK_TEXT_VIEW(m_text), mark);
1433 }
1434 }
1435
1436 wxTextCtrlHitTestResult
1437 wxTextCtrl::HitTest(const wxPoint& pt, long *pos) const
1438 {
1439 if ( !IsMultiLine() )
1440 {
1441 // not supported
1442 return wxTE_HT_UNKNOWN;
1443 }
1444
1445 int x, y;
1446 gtk_text_view_window_to_buffer_coords
1447 (
1448 GTK_TEXT_VIEW(m_text),
1449 GTK_TEXT_WINDOW_TEXT,
1450 pt.x, pt.y,
1451 &x, &y
1452 );
1453
1454 GtkTextIter iter;
1455 gtk_text_view_get_iter_at_location(GTK_TEXT_VIEW(m_text), &iter, x, y);
1456 if ( pos )
1457 *pos = gtk_text_iter_get_offset(&iter);
1458
1459 return wxTE_HT_ON_TEXT;
1460 }
1461
1462 long wxTextCtrl::GetInsertionPoint() const
1463 {
1464 wxCHECK_MSG( m_text != NULL, 0, wxT("invalid text ctrl") );
1465
1466 if ( IsMultiLine() )
1467 {
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.
1471
1472 GtkTextMark *mark = gtk_text_buffer_get_insert( m_buffer );
1473 GtkTextIter cursor;
1474 gtk_text_buffer_get_iter_at_mark( m_buffer, &cursor, mark );
1475
1476 return gtk_text_iter_get_offset( &cursor );
1477 }
1478 else
1479 {
1480 return wxTextEntry::GetInsertionPoint();
1481 }
1482 }
1483
1484 wxTextPos wxTextCtrl::GetLastPosition() const
1485 {
1486 wxCHECK_MSG( m_text != NULL, 0, wxT("invalid text ctrl") );
1487
1488 int pos = 0;
1489
1490 if ( IsMultiLine() )
1491 {
1492 GtkTextIter end;
1493 gtk_text_buffer_get_end_iter( m_buffer, &end );
1494
1495 pos = gtk_text_iter_get_offset( &end );
1496 }
1497 else // single line
1498 {
1499 pos = wxTextEntry::GetLastPosition();
1500 }
1501
1502 return (long)pos;
1503 }
1504
1505 void wxTextCtrl::Remove( long from, long to )
1506 {
1507 wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") );
1508
1509 if ( IsMultiLine() )
1510 {
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 );
1514
1515 gtk_text_buffer_delete( m_buffer, &fromi, &toi );
1516 }
1517 else // single line
1518 {
1519 wxTextEntry::Remove(from, to);
1520 }
1521 }
1522
1523 void wxTextCtrl::Cut()
1524 {
1525 wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") );
1526
1527 if ( IsMultiLine() )
1528 g_signal_emit_by_name (m_text, "cut-clipboard");
1529 else
1530 wxTextEntry::Cut();
1531 }
1532
1533 void wxTextCtrl::Copy()
1534 {
1535 wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") );
1536
1537 if ( IsMultiLine() )
1538 g_signal_emit_by_name (m_text, "copy-clipboard");
1539 else
1540 wxTextEntry::Copy();
1541 }
1542
1543 void wxTextCtrl::Paste()
1544 {
1545 wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") );
1546
1547 if ( IsMultiLine() )
1548 g_signal_emit_by_name (m_text, "paste-clipboard");
1549 else
1550 wxTextEntry::Paste();
1551 }
1552
1553 // If the return values from and to are the same, there is no
1554 // selection.
1555 void wxTextCtrl::GetSelection(long* fromOut, long* toOut) const
1556 {
1557 wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") );
1558
1559 if ( !IsMultiLine() )
1560 {
1561 wxTextEntry::GetSelection(fromOut, toOut);
1562 return;
1563 }
1564
1565 gint from, to;
1566
1567 GtkTextIter ifrom, ito;
1568 if ( gtk_text_buffer_get_selection_bounds(m_buffer, &ifrom, &ito) )
1569 {
1570 from = gtk_text_iter_get_offset(&ifrom);
1571 to = gtk_text_iter_get_offset(&ito);
1572
1573 if ( from > to )
1574 {
1575 // exchange them to be compatible with wxMSW
1576 gint tmp = from;
1577 from = to;
1578 to = tmp;
1579 }
1580 }
1581 else // no selection
1582 {
1583 from =
1584 to = GetInsertionPoint();
1585 }
1586
1587 if ( fromOut )
1588 *fromOut = from;
1589 if ( toOut )
1590 *toOut = to;
1591 }
1592
1593
1594 bool wxTextCtrl::IsEditable() const
1595 {
1596 wxCHECK_MSG( m_text != NULL, false, wxT("invalid text ctrl") );
1597
1598 if ( IsMultiLine() )
1599 {
1600 return gtk_text_view_get_editable(GTK_TEXT_VIEW(m_text)) != 0;
1601 }
1602 else
1603 {
1604 return wxTextEntry::IsEditable();
1605 }
1606 }
1607
1608 bool wxTextCtrl::IsModified() const
1609 {
1610 return m_modified;
1611 }
1612
1613 void wxTextCtrl::OnChar( wxKeyEvent &key_event )
1614 {
1615 wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") );
1616
1617 if ( key_event.GetKeyCode() == WXK_RETURN )
1618 {
1619 if ( HasFlag(wxTE_PROCESS_ENTER) )
1620 {
1621 wxCommandEvent event(wxEVT_TEXT_ENTER, m_windowId);
1622 event.SetEventObject(this);
1623 event.SetString(GetValue());
1624 if ( HandleWindowEvent(event) )
1625 return;
1626 }
1627 }
1628
1629 key_event.Skip();
1630 }
1631
1632 GtkWidget* wxTextCtrl::GetConnectWidget()
1633 {
1634 return GTK_WIDGET(m_text);
1635 }
1636
1637 GdkWindow *wxTextCtrl::GTKGetWindow(wxArrayGdkWindows& WXUNUSED(windows)) const
1638 {
1639 if ( IsMultiLine() )
1640 {
1641 return gtk_text_view_get_window(GTK_TEXT_VIEW(m_text),
1642 GTK_TEXT_WINDOW_TEXT );
1643 }
1644 else
1645 {
1646 #ifdef __WXGTK3__
1647 // no access to internal GdkWindows
1648 return NULL;
1649 #else
1650 return gtk_entry_get_text_window(GTK_ENTRY(m_text));
1651 #endif
1652 }
1653 }
1654
1655 // the font will change for subsequent text insertiongs
1656 bool wxTextCtrl::SetFont( const wxFont &font )
1657 {
1658 wxCHECK_MSG( m_text != NULL, false, wxT("invalid text ctrl") );
1659
1660 if ( !wxTextCtrlBase::SetFont(font) )
1661 {
1662 // font didn't change, nothing to do
1663 return false;
1664 }
1665
1666 if ( IsMultiLine() )
1667 {
1668 SetUpdateFont(true);
1669
1670 m_defaultStyle.SetFont(font);
1671
1672 ChangeFontGlobally();
1673 }
1674
1675 return true;
1676 }
1677
1678 void wxTextCtrl::ChangeFontGlobally()
1679 {
1680 // this method is very inefficient and hence should be called as rarely as
1681 // possible!
1682 //
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") );
1686
1687 wxString value = GetValue();
1688 if ( !value.empty() )
1689 {
1690 SetUpdateFont(false);
1691
1692 Clear();
1693 AppendText(value);
1694 }
1695 }
1696
1697 bool wxTextCtrl::SetForegroundColour(const wxColour& colour)
1698 {
1699 if ( !wxControl::SetForegroundColour(colour) )
1700 return false;
1701
1702 // update default fg colour too
1703 m_defaultStyle.SetTextColour(colour);
1704
1705 return true;
1706 }
1707
1708 bool wxTextCtrl::SetBackgroundColour( const wxColour &colour )
1709 {
1710 wxCHECK_MSG( m_text != NULL, false, wxT("invalid text ctrl") );
1711
1712 if ( !wxControl::SetBackgroundColour( colour ) )
1713 return false;
1714
1715 if (!m_backgroundColour.IsOk())
1716 return false;
1717
1718 // change active background color too
1719 m_defaultStyle.SetBackgroundColour( colour );
1720
1721 return true;
1722 }
1723
1724 bool wxTextCtrl::SetStyle( long start, long end, const wxTextAttr& style )
1725 {
1726 if ( IsMultiLine() )
1727 {
1728 if ( style.IsDefault() )
1729 {
1730 // nothing to do
1731 return true;
1732 }
1733
1734 gint l = gtk_text_buffer_get_char_count( m_buffer );
1735
1736 wxCHECK_MSG( start >= 0 && end <= l, false,
1737 wxT("invalid range in wxTextCtrl::SetStyle") );
1738
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 );
1742
1743 wxGtkTextApplyTagsFromAttr( m_widget, m_buffer, style, &starti, &endi );
1744
1745 return true;
1746 }
1747 //else: single line text controls don't support styles
1748
1749 return false;
1750 }
1751
1752 bool wxTextCtrl::GetStyle(long position, wxTextAttr& style)
1753 {
1754 if ( !IsMultiLine() )
1755 {
1756 // no styles for GtkEntry
1757 return false;
1758 }
1759
1760 gint l = gtk_text_buffer_get_char_count( m_buffer );
1761
1762 wxCHECK_MSG( position >= 0 && position <= l, false,
1763 wxT("invalid range in wxTextCtrl::GetStyle") );
1764
1765 GtkTextIter positioni;
1766 gtk_text_buffer_get_iter_at_offset(m_buffer, &positioni, position);
1767
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);
1772
1773 // And query GTK for the attributes at the given position using it as base
1774 if ( !gtk_text_iter_get_attributes(&positioni, pattr) )
1775 {
1776 style = m_defaultStyle;
1777 }
1778 else // have custom attributes
1779 {
1780 style.SetBackgroundColour(pattr->appearance.bg_color);
1781 style.SetTextColour(pattr->appearance.fg_color);
1782
1783 const wxGtkString
1784 pangoFontString(pango_font_description_to_string(pattr->font));
1785
1786 wxFont font;
1787 if ( font.SetNativeFontInfo(wxString(pangoFontString)) )
1788 style.SetFont(font);
1789
1790 // TODO: set alignment, tabs and indents
1791 }
1792
1793 return true;
1794 }
1795
1796 void wxTextCtrl::DoApplyWidgetStyle(GtkRcStyle *style)
1797 {
1798 GTKApplyStyle(m_text, style);
1799 }
1800
1801 void wxTextCtrl::OnCut(wxCommandEvent& WXUNUSED(event))
1802 {
1803 Cut();
1804 }
1805
1806 void wxTextCtrl::OnCopy(wxCommandEvent& WXUNUSED(event))
1807 {
1808 Copy();
1809 }
1810
1811 void wxTextCtrl::OnPaste(wxCommandEvent& WXUNUSED(event))
1812 {
1813 Paste();
1814 }
1815
1816 void wxTextCtrl::OnUndo(wxCommandEvent& WXUNUSED(event))
1817 {
1818 Undo();
1819 }
1820
1821 void wxTextCtrl::OnRedo(wxCommandEvent& WXUNUSED(event))
1822 {
1823 Redo();
1824 }
1825
1826 void wxTextCtrl::OnUpdateCut(wxUpdateUIEvent& event)
1827 {
1828 event.Enable( CanCut() );
1829 }
1830
1831 void wxTextCtrl::OnUpdateCopy(wxUpdateUIEvent& event)
1832 {
1833 event.Enable( CanCopy() );
1834 }
1835
1836 void wxTextCtrl::OnUpdatePaste(wxUpdateUIEvent& event)
1837 {
1838 event.Enable( CanPaste() );
1839 }
1840
1841 void wxTextCtrl::OnUpdateUndo(wxUpdateUIEvent& event)
1842 {
1843 event.Enable( CanUndo() );
1844 }
1845
1846 void wxTextCtrl::OnUpdateRedo(wxUpdateUIEvent& event)
1847 {
1848 event.Enable( CanRedo() );
1849 }
1850
1851 wxSize wxTextCtrl::DoGetBestSize() const
1852 {
1853 return DoGetSizeFromTextSize(80);
1854 }
1855
1856 wxSize wxTextCtrl::DoGetSizeFromTextSize(int xlen, int ylen) const
1857 {
1858 wxASSERT_MSG( m_widget, wxS("GetSizeFromTextSize called before creation") );
1859
1860 wxSize tsize(xlen, 0);
1861 int cHeight = GetCharHeight();
1862
1863 if ( IsSingleLine() )
1864 {
1865 if ( HasFlag(wxBORDER_NONE) )
1866 {
1867 tsize.y = cHeight;
1868 #ifdef __WXGTK3__
1869 tsize.IncBy(9, 0);
1870 #else
1871 tsize.IncBy(4, 0);
1872 #endif // GTK3
1873 }
1874 else
1875 {
1876 // default height
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);
1882 }
1883 }
1884
1885 //multiline
1886 else
1887 {
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);
1891
1892 // height
1893 tsize.y = cHeight;
1894 if ( ylen <= 0 )
1895 {
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);
1900 }
1901
1902 if ( !HasFlag(wxBORDER_NONE) )
1903 {
1904 // hardcode borders, margins, etc
1905 tsize.IncBy(5, 4);
1906 }
1907 }
1908
1909 // Perhaps the user wants something different from CharHeight, or ylen
1910 // is used as the height of a multiline text.
1911 if ( ylen > 0 )
1912 tsize.IncBy(0, ylen - cHeight);
1913
1914 return tsize;
1915 }
1916
1917
1918 // ----------------------------------------------------------------------------
1919 // freeze/thaw
1920 // ----------------------------------------------------------------------------
1921
1922 void wxTextCtrl::DoFreeze()
1923 {
1924 wxCHECK_RET(m_text != NULL, wxT("invalid text ctrl"));
1925
1926 GTKFreezeWidget(m_text);
1927
1928 if ( HasFlag(wxTE_MULTILINE) )
1929 {
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)
1941 {
1942 for (GSList* item = m_anonymousMarkList; item; item = item->next)
1943 {
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);
1947 }
1948 g_slist_free(m_anonymousMarkList);
1949 m_anonymousMarkList = NULL;
1950 }
1951 }
1952 }
1953
1954 void wxTextCtrl::DoThaw()
1955 {
1956 if ( HasFlag(wxTE_MULTILINE) )
1957 {
1958 // reattach buffer:
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);
1963
1964 if (m_showPositionOnThaw != NULL)
1965 {
1966 gtk_text_view_scroll_mark_onscreen(
1967 GTK_TEXT_VIEW(m_text), m_showPositionOnThaw);
1968 m_showPositionOnThaw = NULL;
1969 }
1970 }
1971
1972 GTKThawWidget(m_text);
1973 }
1974
1975 // ----------------------------------------------------------------------------
1976 // wxTextUrlEvent passing if style & wxTE_AUTO_URL
1977 // ----------------------------------------------------------------------------
1978
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)
1983 {
1984 event.Skip();
1985 if( !HasFlag(wxTE_AUTO_URL) )
1986 return;
1987
1988 gint x, y;
1989 GtkTextIter start, end;
1990 GtkTextTag *tag = gtk_text_tag_table_lookup(gtk_text_buffer_get_tag_table(m_buffer),
1991 "wxUrl");
1992
1993 gtk_text_view_window_to_buffer_coords(GTK_TEXT_VIEW(m_text), GTK_TEXT_WINDOW_WIDGET,
1994 event.GetX(), event.GetY(), &x, &y);
1995
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))
1998 {
1999 SetCursor(wxCursor(wxCURSOR_IBEAM));
2000 return;
2001 }
2002
2003 SetCursor(wxCursor(wxCURSOR_HAND));
2004
2005 start = end;
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);
2010
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)
2014 event.Skip(false);
2015
2016 wxTextUrlEvent url_event(m_windowId, event,
2017 gtk_text_iter_get_offset(&start),
2018 gtk_text_iter_get_offset(&end));
2019
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);
2024 }
2025
2026 bool wxTextCtrl::GTKProcessEvent(wxEvent& event) const
2027 {
2028 bool rc = wxTextCtrlBase::GTKProcessEvent(event);
2029
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);
2036 }
2037
2038 // static
2039 wxVisualAttributes
2040 wxTextCtrl::GetClassDefaultAttributes(wxWindowVariant WXUNUSED(variant))
2041 {
2042 return GetDefaultAttributesFromGTKWidget(gtk_entry_new(), true);
2043 }
2044
2045 #endif // wxUSE_TEXTCTRL