fix generation of events from SetValue() broken in rev 46611
[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/strconv.h"
26 #include "wx/fontutil.h" // for wxNativeFontInfo (GetNativeFontInfo())
27
28 #include <sys/types.h>
29 #include <sys/stat.h>
30 #include <ctype.h>
31
32 #include "wx/gtk/private.h"
33
34 // ----------------------------------------------------------------------------
35 // helpers
36 // ----------------------------------------------------------------------------
37
38 extern "C" {
39 static void wxGtkOnRemoveTag(GtkTextBuffer *buffer,
40 GtkTextTag *tag,
41 GtkTextIter *start,
42 GtkTextIter *end,
43 char *prefix)
44 {
45 gchar *name;
46 g_object_get (tag, "name", &name, NULL);
47
48 if (!name || strncmp(name, prefix, strlen(prefix)))
49 // anonymous tag or not starting with prefix - don't remove
50 g_signal_stop_emission_by_name (buffer, "remove_tag");
51
52 g_free(name);
53 }
54 }
55
56 // remove all tags starting with the given prefix from the start..end range
57 static void
58 wxGtkTextRemoveTagsWithPrefix(GtkTextBuffer *text_buffer,
59 const char *prefix,
60 GtkTextIter *start,
61 GtkTextIter *end)
62 {
63 gulong remove_handler_id = g_signal_connect
64 (
65 text_buffer,
66 "remove_tag",
67 G_CALLBACK(wxGtkOnRemoveTag),
68 gpointer(prefix)
69 );
70 gtk_text_buffer_remove_all_tags(text_buffer, start, end);
71 g_signal_handler_disconnect(text_buffer, remove_handler_id);
72 }
73
74 static void wxGtkTextApplyTagsFromAttr(GtkWidget *text,
75 GtkTextBuffer *text_buffer,
76 const wxTextAttr& attr,
77 GtkTextIter *start,
78 GtkTextIter *end)
79 {
80 static gchar buf[1024];
81 GtkTextTag *tag;
82
83 if (attr.HasFont())
84 {
85 wxGtkTextRemoveTagsWithPrefix(text_buffer, "WXFONT", start, end);
86
87 PangoFontDescription *font_description = attr.GetFont().GetNativeFontInfo()->description;
88 wxGtkString font_string(pango_font_description_to_string(font_description));
89 g_snprintf(buf, sizeof(buf), "WXFONT %s", font_string.c_str());
90 tag = gtk_text_tag_table_lookup( gtk_text_buffer_get_tag_table( text_buffer ),
91 buf );
92 if (!tag)
93 tag = gtk_text_buffer_create_tag( text_buffer, buf,
94 "font-desc", font_description,
95 NULL );
96 gtk_text_buffer_apply_tag (text_buffer, tag, start, end);
97
98 if (attr.GetFont().GetUnderlined())
99 {
100 g_snprintf(buf, sizeof(buf), "WXFONTUNDERLINE");
101 tag = gtk_text_tag_table_lookup( gtk_text_buffer_get_tag_table( text_buffer ),
102 buf );
103 if (!tag)
104 tag = gtk_text_buffer_create_tag( text_buffer, buf,
105 "underline-set", TRUE,
106 "underline", PANGO_UNDERLINE_SINGLE,
107 NULL );
108 gtk_text_buffer_apply_tag (text_buffer, tag, start, end);
109 }
110 }
111
112 if (attr.HasTextColour())
113 {
114 wxGtkTextRemoveTagsWithPrefix(text_buffer, "WXFORECOLOR", start, end);
115
116 const GdkColor *colFg = attr.GetTextColour().GetColor();
117 g_snprintf(buf, sizeof(buf), "WXFORECOLOR %d %d %d",
118 colFg->red, colFg->green, colFg->blue);
119 tag = gtk_text_tag_table_lookup( gtk_text_buffer_get_tag_table( text_buffer ),
120 buf );
121 if (!tag)
122 tag = gtk_text_buffer_create_tag( text_buffer, buf,
123 "foreground-gdk", colFg, NULL );
124 gtk_text_buffer_apply_tag (text_buffer, tag, start, end);
125 }
126
127 if (attr.HasBackgroundColour())
128 {
129 wxGtkTextRemoveTagsWithPrefix(text_buffer, "WXBACKCOLOR", start, end);
130
131 const GdkColor *colBg = attr.GetBackgroundColour().GetColor();
132 g_snprintf(buf, sizeof(buf), "WXBACKCOLOR %d %d %d",
133 colBg->red, colBg->green, colBg->blue);
134 tag = gtk_text_tag_table_lookup( gtk_text_buffer_get_tag_table( text_buffer ),
135 buf );
136 if (!tag)
137 tag = gtk_text_buffer_create_tag( text_buffer, buf,
138 "background-gdk", colBg, NULL );
139 gtk_text_buffer_apply_tag (text_buffer, tag, start, end);
140 }
141
142 if (attr.HasAlignment())
143 {
144 GtkTextIter para_start, para_end = *end;
145 gtk_text_buffer_get_iter_at_line( text_buffer,
146 &para_start,
147 gtk_text_iter_get_line(start) );
148 gtk_text_iter_forward_line(&para_end);
149
150 wxGtkTextRemoveTagsWithPrefix(text_buffer, "WXALIGNMENT", start, end);
151
152 GtkJustification align;
153 switch (attr.GetAlignment())
154 {
155 default:
156 align = GTK_JUSTIFY_LEFT;
157 break;
158 case wxTEXT_ALIGNMENT_RIGHT:
159 align = GTK_JUSTIFY_RIGHT;
160 break;
161 case wxTEXT_ALIGNMENT_CENTER:
162 align = GTK_JUSTIFY_CENTER;
163 break;
164 // gtk+ doesn't support justify before gtk+-2.11.0 with pango-1.17 being available
165 // (but if new enough pango isn't available it's a mere gtk warning)
166 #if GTK_CHECK_VERSION(2,11,0)
167 case wxTEXT_ALIGNMENT_JUSTIFIED:
168 if (!gtk_check_version(2,11,0))
169 align = GTK_JUSTIFY_FILL;
170 else
171 align = GTK_JUSTIFY_LEFT;
172 break;
173 #endif
174 }
175
176 g_snprintf(buf, sizeof(buf), "WXALIGNMENT %d", align);
177 tag = gtk_text_tag_table_lookup( gtk_text_buffer_get_tag_table( text_buffer ),
178 buf );
179 if (!tag)
180 tag = gtk_text_buffer_create_tag( text_buffer, buf,
181 "justification", align, NULL );
182 gtk_text_buffer_apply_tag( text_buffer, tag, &para_start, &para_end );
183 }
184
185 if (attr.HasLeftIndent())
186 {
187 // Indentation attribute
188
189 // Clear old indentation tags
190 GtkTextIter para_start, para_end = *end;
191 gtk_text_buffer_get_iter_at_line( text_buffer,
192 &para_start,
193 gtk_text_iter_get_line(start) );
194 gtk_text_iter_forward_line(&para_end);
195
196 wxGtkTextRemoveTagsWithPrefix(text_buffer, "WXINDENT", start, end);
197
198 // Convert indent from 1/10th of a mm into pixels
199 float factor;
200 #if GTK_CHECK_VERSION(2,2,0)
201 if (!gtk_check_version(2,2,0))
202 factor = (float)gdk_screen_get_width(gtk_widget_get_screen(text)) /
203 gdk_screen_get_width_mm(gtk_widget_get_screen(text)) / 10;
204 else
205 #endif
206 factor = (float)gdk_screen_width() / gdk_screen_width_mm() / 10;
207
208 const int indent = (int)(factor * attr.GetLeftIndent());
209 const int subIndent = (int)(factor * attr.GetLeftSubIndent());
210
211 gint gindent;
212 gint gsubindent;
213
214 if (subIndent >= 0)
215 {
216 gindent = indent;
217 gsubindent = -subIndent;
218 }
219 else
220 {
221 gindent = -subIndent;
222 gsubindent = indent;
223 }
224
225 g_snprintf(buf, sizeof(buf), "WXINDENT %d %d", gindent, gsubindent);
226 tag = gtk_text_tag_table_lookup( gtk_text_buffer_get_tag_table( text_buffer ),
227 buf );
228 if (!tag)
229 tag = gtk_text_buffer_create_tag( text_buffer, buf,
230 "left-margin", gindent, "indent", gsubindent, NULL );
231 gtk_text_buffer_apply_tag (text_buffer, tag, &para_start, &para_end);
232 }
233
234 if (attr.HasTabs())
235 {
236 // Set tab stops
237
238 // Clear old tabs
239 GtkTextIter para_start, para_end = *end;
240 gtk_text_buffer_get_iter_at_line( text_buffer,
241 &para_start,
242 gtk_text_iter_get_line(start) );
243 gtk_text_iter_forward_line(&para_end);
244
245 wxGtkTextRemoveTagsWithPrefix(text_buffer, "WXTABS", start, end);
246
247 const wxArrayInt& tabs = attr.GetTabs();
248
249 wxString tagname = _T("WXTABS");
250 g_snprintf(buf, sizeof(buf), "WXTABS");
251 for (size_t i = 0; i < tabs.GetCount(); i++)
252 tagname += wxString::Format(_T(" %d"), tabs[i]);
253
254 const wxWX2MBbuf buf = tagname.mb_str(wxConvUTF8);
255
256 tag = gtk_text_tag_table_lookup( gtk_text_buffer_get_tag_table( text_buffer ),
257 buf );
258 if (!tag)
259 {
260 // Factor to convert from 1/10th of a mm into pixels
261 float factor;
262 #if GTK_CHECK_VERSION(2,2,0)
263 if (!gtk_check_version(2,2,0))
264 factor = (float)gdk_screen_get_width(gtk_widget_get_screen(text)) /
265 gdk_screen_get_width_mm(gtk_widget_get_screen(text)) / 10;
266 else
267 #endif
268 factor = (float)gdk_screen_width() / gdk_screen_width_mm() / 10;
269
270 PangoTabArray* tabArray = pango_tab_array_new(tabs.GetCount(), TRUE);
271 for (size_t i = 0; i < tabs.GetCount(); i++)
272 pango_tab_array_set_tab(tabArray, i, PANGO_TAB_LEFT, (gint)(tabs[i] * factor));
273 tag = gtk_text_buffer_create_tag( text_buffer, buf,
274 "tabs", tabArray, NULL );
275 pango_tab_array_free(tabArray);
276 }
277 gtk_text_buffer_apply_tag (text_buffer, tag, &para_start, &para_end);
278 }
279 }
280
281 static void wxGtkTextInsert(GtkWidget *text,
282 GtkTextBuffer *text_buffer,
283 const wxTextAttr& attr,
284 const wxCharBuffer& buffer)
285
286 {
287 gint start_offset;
288 GtkTextIter iter, start;
289
290 gtk_text_buffer_get_iter_at_mark( text_buffer, &iter,
291 gtk_text_buffer_get_insert (text_buffer) );
292 start_offset = gtk_text_iter_get_offset (&iter);
293 gtk_text_buffer_insert( text_buffer, &iter, buffer, strlen(buffer) );
294
295 gtk_text_buffer_get_iter_at_offset (text_buffer, &start, start_offset);
296
297 wxGtkTextApplyTagsFromAttr(text, text_buffer, attr, &start, &iter);
298 }
299
300 // ----------------------------------------------------------------------------
301 // "insert_text" for GtkEntry
302 // ----------------------------------------------------------------------------
303
304 extern "C" {
305 static void
306 gtk_insert_text_callback(GtkEditable *editable,
307 const gchar *new_text,
308 gint new_text_length,
309 gint *position,
310 wxTextCtrl *win)
311 {
312 // we should only be called if we have a max len limit at all
313 GtkEntry *entry = GTK_ENTRY (editable);
314
315 wxCHECK_RET( entry->text_max_length, _T("shouldn't be called") );
316
317 // check that we don't overflow the max length limit
318 //
319 // FIXME: this doesn't work when we paste a string which is going to be
320 // truncated
321 if ( entry->text_length == entry->text_max_length )
322 {
323 // we don't need to run the base class version at all
324 g_signal_stop_emission_by_name (editable, "insert_text");
325
326 // remember that the next changed signal is to be ignored to avoid
327 // generating a dummy wxEVT_COMMAND_TEXT_UPDATED event
328 win->IgnoreNextTextUpdate();
329
330 // and generate the correct one ourselves
331 wxCommandEvent event(wxEVT_COMMAND_TEXT_MAXLEN, win->GetId());
332 event.SetEventObject(win);
333 event.SetString(win->GetValue());
334 win->GetEventHandler()->ProcessEvent( event );
335 }
336 }
337 }
338
339 // Implementation of wxTE_AUTO_URL for wxGTK2 by Mart Raudsepp,
340
341 extern "C" {
342 static void
343 au_apply_tag_callback(GtkTextBuffer *buffer,
344 GtkTextTag *tag,
345 GtkTextIter *start,
346 GtkTextIter *end,
347 gpointer textctrl)
348 {
349 if(tag == gtk_text_tag_table_lookup(gtk_text_buffer_get_tag_table(buffer), "wxUrl"))
350 g_signal_stop_emission_by_name (buffer, "apply_tag");
351 }
352 }
353
354 //-----------------------------------------------------------------------------
355 // GtkTextCharPredicates for gtk_text_iter_*_find_char
356 //-----------------------------------------------------------------------------
357
358 extern "C" {
359 static gboolean
360 pred_whitespace (gunichar ch, gpointer user_data)
361 {
362 return g_unichar_isspace(ch);
363 }
364 }
365
366 extern "C" {
367 static gboolean
368 pred_non_whitespace (gunichar ch, gpointer user_data)
369 {
370 return !g_unichar_isspace(ch);
371 }
372 }
373
374 extern "C" {
375 static gboolean
376 pred_nonpunct (gunichar ch, gpointer user_data)
377 {
378 return !g_unichar_ispunct(ch);
379 }
380 }
381
382 extern "C" {
383 static gboolean
384 pred_nonpunct_or_slash (gunichar ch, gpointer user_data)
385 {
386 return !g_unichar_ispunct(ch) || ch == '/';
387 }
388 }
389
390 //-----------------------------------------------------------------------------
391 // Check for links between s and e and correct tags as necessary
392 //-----------------------------------------------------------------------------
393
394 // This function should be made match better while being efficient at one point.
395 // Most probably with a row of regular expressions.
396 extern "C" {
397 static void
398 au_check_word( GtkTextIter *s, GtkTextIter *e )
399 {
400 static const char *URIPrefixes[] =
401 {
402 "http://",
403 "ftp://",
404 "www.",
405 "ftp.",
406 "mailto://",
407 "https://",
408 "file://",
409 "nntp://",
410 "news://",
411 "telnet://",
412 "mms://",
413 "gopher://",
414 "prospero://",
415 "wais://",
416 };
417
418 GtkTextIter start = *s, end = *e;
419 GtkTextBuffer *buffer = gtk_text_iter_get_buffer(s);
420
421 // Get our special link tag
422 GtkTextTag *tag = gtk_text_tag_table_lookup(gtk_text_buffer_get_tag_table(buffer), "wxUrl");
423
424 // Get rid of punctuation from beginning and end.
425 // Might want to move this to au_check_range if an improved link checking doesn't
426 // use some intelligent punctuation checking itself (beware of undesired iter modifications).
427 if(g_unichar_ispunct( gtk_text_iter_get_char( &start ) ) )
428 gtk_text_iter_forward_find_char( &start, pred_nonpunct, NULL, e );
429
430 gtk_text_iter_backward_find_char( &end, pred_nonpunct_or_slash, NULL, &start );
431 gtk_text_iter_forward_char(&end);
432
433 wxGtkString text(gtk_text_iter_get_text( &start, &end ));
434 size_t len = strlen(text), prefix_len;
435 size_t n;
436
437 for( n = 0; n < WXSIZEOF(URIPrefixes); ++n )
438 {
439 prefix_len = strlen(URIPrefixes[n]);
440 if((len > prefix_len) && !strncasecmp(text, URIPrefixes[n], prefix_len))
441 break;
442 }
443
444 if(n < WXSIZEOF(URIPrefixes))
445 {
446 gulong signal_id = g_signal_handler_find (buffer,
447 (GSignalMatchType) (G_SIGNAL_MATCH_FUNC),
448 0, 0, NULL,
449 (gpointer)au_apply_tag_callback, NULL);
450
451 g_signal_handler_block (buffer, signal_id);
452 gtk_text_buffer_apply_tag(buffer, tag, &start, &end);
453 g_signal_handler_unblock (buffer, signal_id);
454 }
455 }
456 }
457
458 extern "C" {
459 static void
460 au_check_range(GtkTextIter *s,
461 GtkTextIter *range_end)
462 {
463 GtkTextIter range_start = *s;
464 GtkTextIter word_end;
465 GtkTextBuffer *buffer = gtk_text_iter_get_buffer(s);
466 GtkTextTag *tag = gtk_text_tag_table_lookup(gtk_text_buffer_get_tag_table(buffer), "wxUrl");
467
468 gtk_text_buffer_remove_tag(buffer, tag, s, range_end);
469
470 if(g_unichar_isspace(gtk_text_iter_get_char(&range_start)))
471 gtk_text_iter_forward_find_char(&range_start, pred_non_whitespace, NULL, range_end);
472
473 while(!gtk_text_iter_equal(&range_start, range_end))
474 {
475 word_end = range_start;
476 gtk_text_iter_forward_find_char(&word_end, pred_whitespace, NULL, range_end);
477
478 // Now we should have a word delimited by range_start and word_end, correct link tags
479 au_check_word(&range_start, &word_end);
480
481 range_start = word_end;
482 gtk_text_iter_forward_find_char(&range_start, pred_non_whitespace, NULL, range_end);
483 }
484 }
485 }
486
487 //-----------------------------------------------------------------------------
488 // "insert-text" for GtkTextBuffer
489 //-----------------------------------------------------------------------------
490
491 extern "C" {
492 static void
493 au_insert_text_callback(GtkTextBuffer *buffer,
494 GtkTextIter *end,
495 gchar *text,
496 gint len,
497 wxTextCtrl *win)
498 {
499 if (!len || !(win->GetWindowStyleFlag() & wxTE_AUTO_URL) )
500 return;
501
502 GtkTextIter start = *end;
503 gtk_text_iter_backward_chars(&start, g_utf8_strlen(text, len));
504
505 GtkTextIter line_start = start;
506 GtkTextIter line_end = *end;
507 GtkTextIter words_start = start;
508 GtkTextIter words_end = *end;
509
510 gtk_text_iter_set_line(&line_start, gtk_text_iter_get_line(&start));
511 gtk_text_iter_forward_to_line_end(&line_end);
512 gtk_text_iter_backward_find_char(&words_start, pred_whitespace, NULL, &line_start);
513 gtk_text_iter_forward_find_char(&words_end, pred_whitespace, NULL, &line_end);
514
515 au_check_range(&words_start, &words_end);
516 }
517 }
518
519 //-----------------------------------------------------------------------------
520 // "delete-range" for GtkTextBuffer
521 //-----------------------------------------------------------------------------
522
523 extern "C" {
524 static void
525 au_delete_range_callback(GtkTextBuffer *buffer,
526 GtkTextIter *start,
527 GtkTextIter *end,
528 wxTextCtrl *win)
529 {
530 if( !(win->GetWindowStyleFlag() & wxTE_AUTO_URL) )
531 return;
532
533 GtkTextIter line_start = *start, line_end = *end;
534
535 gtk_text_iter_set_line(&line_start, gtk_text_iter_get_line(start));
536 gtk_text_iter_forward_to_line_end(&line_end);
537 gtk_text_iter_backward_find_char(start, pred_whitespace, NULL, &line_start);
538 gtk_text_iter_forward_find_char(end, pred_whitespace, NULL, &line_end);
539
540 au_check_range(start, end);
541 }
542 }
543
544
545 //-----------------------------------------------------------------------------
546 // "changed"
547 //-----------------------------------------------------------------------------
548
549 extern "C" {
550 static void
551 gtk_text_changed_callback( GtkWidget *widget, wxTextCtrl *win )
552 {
553 if ( win->IgnoreTextUpdate() )
554 return;
555
556 if (!win->m_hasVMT) return;
557
558 if ( win->MarkDirtyOnChange() )
559 win->MarkDirty();
560
561 win->SendTextUpdatedEvent();
562 }
563 }
564
565 //-----------------------------------------------------------------------------
566 // clipboard events: "copy-clipboard", "cut-clipboard", "paste-clipboard"
567 //-----------------------------------------------------------------------------
568
569 // common part of the event handlers below
570 static void
571 handle_text_clipboard_callback( GtkWidget *widget, wxTextCtrl *win,
572 wxEventType eventType, const gchar * signal_name)
573 {
574 wxClipboardTextEvent event( eventType, win->GetId() );
575 event.SetEventObject( win );
576 if ( win->GetEventHandler()->ProcessEvent( event ) )
577 {
578 // don't let the default processing to take place if we did something
579 // ourselves in the event handler
580 g_signal_stop_emission_by_name (widget, signal_name);
581 }
582 }
583
584 extern "C" {
585 static void
586 gtk_copy_clipboard_callback( GtkWidget *widget, wxTextCtrl *win )
587 {
588 handle_text_clipboard_callback(
589 widget, win, wxEVT_COMMAND_TEXT_COPY, "copy-clipboard" );
590 }
591
592 static void
593 gtk_cut_clipboard_callback( GtkWidget *widget, wxTextCtrl *win )
594 {
595 handle_text_clipboard_callback(
596 widget, win, wxEVT_COMMAND_TEXT_CUT, "cut-clipboard" );
597 }
598
599 static void
600 gtk_paste_clipboard_callback( GtkWidget *widget, wxTextCtrl *win )
601 {
602 handle_text_clipboard_callback(
603 widget, win, wxEVT_COMMAND_TEXT_PASTE, "paste-clipboard" );
604 }
605 }
606
607 //-----------------------------------------------------------------------------
608 // "expose_event" from scrolled window and textview
609 //-----------------------------------------------------------------------------
610
611 extern "C" {
612 static gboolean
613 gtk_text_exposed_callback( GtkWidget *widget, GdkEventExpose *event, wxTextCtrl *win )
614 {
615 return TRUE;
616 }
617 }
618
619
620 //-----------------------------------------------------------------------------
621 // wxTextCtrl
622 //-----------------------------------------------------------------------------
623
624 IMPLEMENT_DYNAMIC_CLASS(wxTextCtrl, wxTextCtrlBase)
625
626 BEGIN_EVENT_TABLE(wxTextCtrl, wxTextCtrlBase)
627 EVT_CHAR(wxTextCtrl::OnChar)
628
629 EVT_MENU(wxID_CUT, wxTextCtrl::OnCut)
630 EVT_MENU(wxID_COPY, wxTextCtrl::OnCopy)
631 EVT_MENU(wxID_PASTE, wxTextCtrl::OnPaste)
632 EVT_MENU(wxID_UNDO, wxTextCtrl::OnUndo)
633 EVT_MENU(wxID_REDO, wxTextCtrl::OnRedo)
634
635 EVT_UPDATE_UI(wxID_CUT, wxTextCtrl::OnUpdateCut)
636 EVT_UPDATE_UI(wxID_COPY, wxTextCtrl::OnUpdateCopy)
637 EVT_UPDATE_UI(wxID_PASTE, wxTextCtrl::OnUpdatePaste)
638 EVT_UPDATE_UI(wxID_UNDO, wxTextCtrl::OnUpdateUndo)
639 EVT_UPDATE_UI(wxID_REDO, wxTextCtrl::OnUpdateRedo)
640
641 // wxTE_AUTO_URL wxTextUrl support. Currently only creates
642 // wxTextUrlEvent in the same cases as wxMSW, more can be added here.
643 EVT_MOTION (wxTextCtrl::OnUrlMouseEvent)
644 EVT_LEFT_DOWN (wxTextCtrl::OnUrlMouseEvent)
645 EVT_LEFT_UP (wxTextCtrl::OnUrlMouseEvent)
646 EVT_LEFT_DCLICK (wxTextCtrl::OnUrlMouseEvent)
647 EVT_RIGHT_DOWN (wxTextCtrl::OnUrlMouseEvent)
648 EVT_RIGHT_UP (wxTextCtrl::OnUrlMouseEvent)
649 EVT_RIGHT_DCLICK(wxTextCtrl::OnUrlMouseEvent)
650 END_EVENT_TABLE()
651
652 void wxTextCtrl::Init()
653 {
654 m_dontMarkDirty =
655 m_modified = false;
656
657 m_countUpdatesToIgnore = 0;
658
659 SetUpdateFont(false);
660
661 m_text = NULL;
662 m_freezeCount = 0;
663 m_showPositionOnThaw = NULL;
664 m_gdkHandCursor = NULL;
665 m_gdkXTermCursor = NULL;
666 }
667
668 wxTextCtrl::~wxTextCtrl()
669 {
670 if(m_gdkHandCursor)
671 gdk_cursor_unref(m_gdkHandCursor);
672 if(m_gdkXTermCursor)
673 gdk_cursor_unref(m_gdkXTermCursor);
674 }
675
676 wxTextCtrl::wxTextCtrl( wxWindow *parent,
677 wxWindowID id,
678 const wxString &value,
679 const wxPoint &pos,
680 const wxSize &size,
681 long style,
682 const wxValidator& validator,
683 const wxString &name )
684 {
685 Init();
686
687 Create( parent, id, value, pos, size, style, validator, name );
688 }
689
690 bool wxTextCtrl::Create( wxWindow *parent,
691 wxWindowID id,
692 const wxString &value,
693 const wxPoint &pos,
694 const wxSize &size,
695 long style,
696 const wxValidator& validator,
697 const wxString &name )
698 {
699 if (!PreCreation( parent, pos, size ) ||
700 !CreateBase( parent, id, pos, size, style, validator, name ))
701 {
702 wxFAIL_MSG( wxT("wxTextCtrl creation failed") );
703 return false;
704 }
705
706 bool multi_line = (style & wxTE_MULTILINE) != 0;
707
708 if (multi_line)
709 {
710 // Create view
711 m_text = gtk_text_view_new();
712
713 m_buffer = gtk_text_view_get_buffer( GTK_TEXT_VIEW(m_text) );
714
715 // create "ShowPosition" marker
716 GtkTextIter iter;
717 gtk_text_buffer_get_start_iter(m_buffer, &iter);
718 gtk_text_buffer_create_mark(m_buffer, "ShowPosition", &iter, true);
719
720 // create scrolled window
721 m_widget = gtk_scrolled_window_new( NULL, NULL );
722 gtk_scrolled_window_set_policy( GTK_SCROLLED_WINDOW( m_widget ),
723 GTK_POLICY_AUTOMATIC,
724 style & wxTE_NO_VSCROLL
725 ? GTK_POLICY_NEVER
726 : GTK_POLICY_AUTOMATIC );
727 // for ScrollLines/Pages
728 m_scrollBar[1] = (GtkRange*)((GtkScrolledWindow*)m_widget)->vscrollbar;
729
730 // Insert view into scrolled window
731 gtk_container_add( GTK_CONTAINER(m_widget), m_text );
732
733 GTKSetWrapMode();
734
735 GtkScrolledWindowSetBorder(m_widget, style);
736
737 gtk_widget_add_events( GTK_WIDGET(m_text), GDK_ENTER_NOTIFY_MASK | GDK_LEAVE_NOTIFY_MASK );
738
739 GTK_WIDGET_UNSET_FLAGS( m_widget, GTK_CAN_FOCUS );
740 }
741 else
742 {
743 // a single-line text control: no need for scrollbars
744 m_widget =
745 m_text = gtk_entry_new();
746
747 if (style & wxNO_BORDER)
748 g_object_set (m_text, "has-frame", FALSE, NULL);
749 }
750
751 m_parent->DoAddChild( this );
752
753 m_focusWidget = m_text;
754
755 PostCreation(size);
756
757 if (multi_line)
758 {
759 gtk_widget_show(m_text);
760 }
761
762 // We want to be notified about text changes.
763 if (multi_line)
764 {
765 g_signal_connect (m_buffer, "changed",
766 G_CALLBACK (gtk_text_changed_callback), this);
767 }
768 else
769 {
770 g_signal_connect (m_text, "changed",
771 G_CALLBACK (gtk_text_changed_callback), this);
772 }
773
774 if (!value.empty())
775 {
776 SetValue( value );
777 }
778
779 if (style & wxTE_PASSWORD)
780 GTKSetVisibility();
781
782 if (style & wxTE_READONLY)
783 GTKSetEditable();
784
785 // left justification (alignment) is the default anyhow
786 if ( style & (wxTE_RIGHT | wxTE_CENTRE) )
787 GTKSetJustification();
788
789 if (multi_line)
790 {
791 // Handle URLs on multi-line controls with wxTE_AUTO_URL style
792 if (style & wxTE_AUTO_URL)
793 {
794 GtkTextIter start, end;
795 m_gdkHandCursor = gdk_cursor_new(GDK_HAND2);
796 m_gdkXTermCursor = gdk_cursor_new(GDK_XTERM);
797
798 // We create our wxUrl tag here for slight efficiency gain - we
799 // don't have to check for the tag existance in callbacks,
800 // hereby it's guaranteed to exist.
801 gtk_text_buffer_create_tag(m_buffer, "wxUrl",
802 "foreground", "blue",
803 "underline", PANGO_UNDERLINE_SINGLE,
804 NULL);
805
806 // Check for URLs after each text change
807 g_signal_connect_after (m_buffer, "insert_text",
808 G_CALLBACK (au_insert_text_callback), this);
809 g_signal_connect_after (m_buffer, "delete_range",
810 G_CALLBACK (au_delete_range_callback), this);
811
812 // Block all wxUrl tag applying unless we do it ourselves, in which case we
813 // block this callback temporarily. This takes care of gtk+ internal
814 // gtk_text_buffer_insert_range* calls that would copy our URL tag otherwise,
815 // which is undesired because only a part of the URL might be copied.
816 // The insert-text signal emitted inside it will take care of newly formed
817 // or wholly copied URLs.
818 g_signal_connect (m_buffer, "apply_tag",
819 G_CALLBACK (au_apply_tag_callback), NULL);
820
821 // Check for URLs in the initial string passed to Create
822 gtk_text_buffer_get_start_iter(m_buffer, &start);
823 gtk_text_buffer_get_end_iter(m_buffer, &end);
824 au_check_range(&start, &end);
825 }
826 }
827
828 g_signal_connect (m_text, "copy-clipboard",
829 G_CALLBACK (gtk_copy_clipboard_callback), this);
830 g_signal_connect (m_text, "cut-clipboard",
831 G_CALLBACK (gtk_cut_clipboard_callback), this);
832 g_signal_connect (m_text, "paste-clipboard",
833 G_CALLBACK (gtk_paste_clipboard_callback), this);
834
835 m_cursor = wxCursor( wxCURSOR_IBEAM );
836
837 return true;
838 }
839
840 // ----------------------------------------------------------------------------
841 // flags handling
842 // ----------------------------------------------------------------------------
843
844 void wxTextCtrl::GTKSetEditable()
845 {
846 gboolean editable = !HasFlag(wxTE_READONLY);
847 if ( IsSingleLine() )
848 gtk_editable_set_editable(GTK_EDITABLE(m_text), editable);
849 else
850 gtk_text_view_set_editable(GTK_TEXT_VIEW(m_text), editable);
851 }
852
853 void wxTextCtrl::GTKSetVisibility()
854 {
855 // VZ: shouldn't we assert if wxTE_PASSWORD is set for multiline control?
856 if ( IsSingleLine() )
857 gtk_entry_set_visibility(GTK_ENTRY(m_text), !HasFlag(wxTE_PASSWORD));
858 }
859
860 void wxTextCtrl::GTKSetWrapMode()
861 {
862 // no wrapping in single line controls
863 if ( !IsMultiLine() )
864 return;
865
866 // translate wx wrapping style to GTK+
867 GtkWrapMode wrap;
868 if ( HasFlag( wxTE_DONTWRAP ) )
869 wrap = GTK_WRAP_NONE;
870 else if ( HasFlag( wxTE_CHARWRAP ) )
871 wrap = GTK_WRAP_CHAR;
872 else if ( HasFlag( wxTE_WORDWRAP ) )
873 wrap = GTK_WRAP_WORD;
874 else // HasFlag(wxTE_BESTWRAP) always true as wxTE_BESTWRAP == 0
875 {
876 // GTK_WRAP_WORD_CHAR seems to be new in GTK+ 2.4
877 #ifdef __WXGTK24__
878 if ( !gtk_check_version(2,4,0) )
879 {
880 wrap = GTK_WRAP_WORD_CHAR;
881 }
882 else
883 #endif // __WXGTK24__
884 wrap = GTK_WRAP_WORD;
885 }
886
887 gtk_text_view_set_wrap_mode( GTK_TEXT_VIEW( m_text ), wrap );
888 }
889
890 void wxTextCtrl::GTKSetJustification()
891 {
892 if ( IsMultiLine() )
893 {
894 GtkJustification just;
895 if ( HasFlag(wxTE_RIGHT) )
896 just = GTK_JUSTIFY_RIGHT;
897 else if ( HasFlag(wxTE_CENTRE) )
898 just = GTK_JUSTIFY_CENTER;
899 else // wxTE_LEFT == 0
900 just = GTK_JUSTIFY_LEFT;
901
902 gtk_text_view_set_justification(GTK_TEXT_VIEW(m_text), just);
903 }
904 else // single line
905 {
906 #ifdef __WXGTK24__
907 // gtk_entry_set_alignment was introduced in gtk+-2.3.5
908 if (!gtk_check_version(2,4,0))
909 {
910 gfloat align;
911 if ( HasFlag(wxTE_RIGHT) )
912 align = 1.0;
913 else if ( HasFlag(wxTE_CENTRE) )
914 align = 0.5;
915 else // single line
916 align = 0.0;
917
918 gtk_entry_set_alignment(GTK_ENTRY(m_text), align);
919 }
920 #endif // __WXGTK24__
921 }
922
923 }
924
925 void wxTextCtrl::SetWindowStyleFlag(long style)
926 {
927 long styleOld = GetWindowStyleFlag();
928
929 wxTextCtrlBase::SetWindowStyleFlag(style);
930
931 if ( (style & wxTE_READONLY) != (styleOld & wxTE_READONLY) )
932 GTKSetEditable();
933
934 if ( (style & wxTE_PASSWORD) != (styleOld & wxTE_PASSWORD) )
935 GTKSetVisibility();
936
937 static const long flagsWrap = wxTE_WORDWRAP | wxTE_CHARWRAP | wxTE_DONTWRAP;
938 if ( (style & flagsWrap) != (styleOld & flagsWrap) )
939 GTKSetWrapMode();
940
941 static const long flagsAlign = wxTE_LEFT | wxTE_CENTRE | wxTE_RIGHT;
942 if ( (style & flagsAlign) != (styleOld & flagsAlign) )
943 GTKSetJustification();
944 }
945
946 // ----------------------------------------------------------------------------
947 // control value
948 // ----------------------------------------------------------------------------
949
950 wxString wxTextCtrl::GetValue() const
951 {
952 wxCHECK_MSG( m_text != NULL, wxEmptyString, wxT("invalid text ctrl") );
953
954 wxString tmp;
955 if ( IsMultiLine() )
956 {
957 GtkTextIter start;
958 gtk_text_buffer_get_start_iter( m_buffer, &start );
959 GtkTextIter end;
960 gtk_text_buffer_get_end_iter( m_buffer, &end );
961 wxGtkString text(gtk_text_buffer_get_text(m_buffer, &start, &end, true));
962
963 return wxGTK_CONV_BACK(text);
964 }
965 else
966 {
967 const gchar *text = gtk_entry_get_text( GTK_ENTRY(m_text) );
968 return wxGTK_CONV_BACK(text);
969 }
970
971 return tmp;
972 }
973
974 wxFontEncoding wxTextCtrl::GetTextEncoding() const
975 {
976 // GTK+ uses UTF-8 internally, we need to convert to it but from which
977 // encoding?
978
979 // first check the default text style (we intentionally don't check the
980 // style for the current position as it doesn't make sense for SetValue())
981 const wxTextAttr& style = GetDefaultStyle();
982 wxFontEncoding enc = style.HasFont() ? style.GetFont().GetEncoding()
983 : wxFONTENCODING_SYSTEM;
984
985 // fall back to the controls font if no style
986 if ( enc == wxFONTENCODING_SYSTEM && m_hasFont )
987 enc = GetFont().GetEncoding();
988
989 return enc;
990 }
991
992 bool wxTextCtrl::IsEmpty() const
993 {
994 if ( IsMultiLine() )
995 return gtk_text_buffer_get_char_count(m_buffer) == 0;
996
997 return wxTextCtrlBase::IsEmpty();
998 }
999
1000 void wxTextCtrl::DoSetValue( const wxString &value, int flags )
1001 {
1002 wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") );
1003
1004 m_modified = false;
1005
1006 wxFontEncoding enc = m_defaultStyle.HasFont()
1007 ? m_defaultStyle.GetFont().GetEncoding()
1008 : wxFONTENCODING_SYSTEM;
1009 if ( enc == wxFONTENCODING_SYSTEM )
1010 enc = GetTextEncoding();
1011
1012 const wxCharBuffer buffer(wxGTK_CONV_ENC(value, enc));
1013 if ( !buffer )
1014 {
1015 // see comment in WriteText() as to why we must warn the user about
1016 // this
1017 wxLogWarning(_("Failed to set text in the text control."));
1018 return;
1019 }
1020
1021 if ( !(flags & SetValue_SendEvent) )
1022 {
1023 g_signal_handlers_block_by_func(GetTextObject(),
1024 (gpointer)gtk_text_changed_callback, this);
1025 }
1026
1027 if ( IsMultiLine() )
1028 {
1029 gtk_text_buffer_set_text( m_buffer, buffer, strlen(buffer) );
1030
1031 if ( !m_defaultStyle.IsDefault() )
1032 {
1033 GtkTextIter start, end;
1034 gtk_text_buffer_get_bounds( m_buffer, &start, &end );
1035 wxGtkTextApplyTagsFromAttr(m_widget, m_buffer, m_defaultStyle,
1036 &start, &end);
1037 }
1038 }
1039 else // single line
1040 {
1041 gtk_entry_set_text( GTK_ENTRY(m_text), buffer );
1042 }
1043
1044 if ( !(flags & SetValue_SendEvent) )
1045 {
1046 g_signal_handlers_unblock_by_func(GetTextObject(),
1047 (gpointer)gtk_text_changed_callback, this);
1048 }
1049
1050 // This was added after discussion on the list
1051 SetInsertionPoint(0);
1052 }
1053
1054 void wxTextCtrl::WriteText( const wxString &text )
1055 {
1056 wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") );
1057
1058 if ( text.empty() )
1059 return;
1060
1061 // check if we have a specific style for the current position
1062 wxFontEncoding enc = wxFONTENCODING_SYSTEM;
1063 wxTextAttr style;
1064 if ( GetStyle(GetInsertionPoint(), style) && style.HasFont() )
1065 {
1066 enc = style.GetFont().GetEncoding();
1067 }
1068
1069 if ( enc == wxFONTENCODING_SYSTEM )
1070 enc = GetTextEncoding();
1071
1072 const wxCharBuffer buffer(wxGTK_CONV_ENC(text, enc));
1073 if ( !buffer )
1074 {
1075 // we must log an error here as losing the text like this can be a
1076 // serious problem (e.g. imagine the document edited by user being
1077 // empty instead of containing the correct text)
1078 wxLogWarning(_("Failed to insert text in the control."));
1079 return;
1080 }
1081
1082 // we're changing the text programmatically
1083 DontMarkDirtyOnNextChange();
1084
1085 if ( IsMultiLine() )
1086 {
1087 // First remove the selection if there is one
1088 // TODO: Is there an easier GTK specific way to do this?
1089 long from, to;
1090 GetSelection(&from, &to);
1091 if (from != to)
1092 Remove(from, to);
1093
1094 // Insert the text
1095 wxGtkTextInsert( m_text, m_buffer, m_defaultStyle, buffer );
1096
1097 GtkAdjustment *adj = gtk_scrolled_window_get_vadjustment( GTK_SCROLLED_WINDOW(m_widget) );
1098 // Scroll to cursor, but only if scrollbar thumb is at the very bottom
1099 // won't work when frozen, text view is not using m_buffer then
1100 if (!IsFrozen() && wxIsSameDouble(adj->value, adj->upper - adj->page_size))
1101 {
1102 gtk_text_view_scroll_to_mark( GTK_TEXT_VIEW(m_text),
1103 gtk_text_buffer_get_insert( m_buffer ), 0.0, FALSE, 0.0, 1.0 );
1104 }
1105 }
1106 else // single line
1107 {
1108 // First remove the selection if there is one
1109 gtk_editable_delete_selection( GTK_EDITABLE(m_text) );
1110
1111 // This moves the cursor pos to behind the inserted text.
1112 gint len = gtk_editable_get_position(GTK_EDITABLE(m_text));
1113
1114 gtk_editable_insert_text( GTK_EDITABLE(m_text), buffer, strlen(buffer), &len );
1115
1116 // Bring entry's cursor uptodate.
1117 gtk_editable_set_position( GTK_EDITABLE(m_text), len );
1118 }
1119 }
1120
1121 void wxTextCtrl::AppendText( const wxString &text )
1122 {
1123 SetInsertionPointEnd();
1124 WriteText( text );
1125 }
1126
1127 wxString wxTextCtrl::GetLineText( long lineNo ) const
1128 {
1129 wxString result;
1130 if ( IsMultiLine() )
1131 {
1132 GtkTextIter line;
1133 gtk_text_buffer_get_iter_at_line(m_buffer,&line,lineNo);
1134
1135 GtkTextIter end = line;
1136 // avoid skipping to the next line end if this one is empty
1137 if ( !gtk_text_iter_ends_line(&line) )
1138 gtk_text_iter_forward_to_line_end(&end);
1139
1140 wxGtkString text(gtk_text_buffer_get_text(m_buffer, &line, &end, true));
1141 result = wxGTK_CONV_BACK(text);
1142 }
1143 else
1144 {
1145 if (lineNo == 0)
1146 result = GetValue();
1147 }
1148 return result;
1149 }
1150
1151 void wxTextCtrl::OnDropFiles( wxDropFilesEvent &WXUNUSED(event) )
1152 {
1153 /* If you implement this, don't forget to update the documentation!
1154 * (file docs/latex/wx/text.tex) */
1155 wxFAIL_MSG( wxT("wxTextCtrl::OnDropFiles not implemented") );
1156 }
1157
1158 bool wxTextCtrl::PositionToXY(long pos, long *x, long *y ) const
1159 {
1160 if ( IsMultiLine() )
1161 {
1162 GtkTextIter iter;
1163
1164 if (pos > GetLastPosition())
1165 return false;
1166
1167 gtk_text_buffer_get_iter_at_offset(m_buffer, &iter, pos);
1168
1169 if ( y )
1170 *y = gtk_text_iter_get_line(&iter);
1171 if ( x )
1172 *x = gtk_text_iter_get_line_offset(&iter);
1173 }
1174 else // single line control
1175 {
1176 if ( pos <= GTK_ENTRY(m_text)->text_length )
1177 {
1178 if ( y )
1179 *y = 0;
1180 if ( x )
1181 *x = pos;
1182 }
1183 else
1184 {
1185 // index out of bounds
1186 return false;
1187 }
1188 }
1189
1190 return true;
1191 }
1192
1193 long wxTextCtrl::XYToPosition(long x, long y ) const
1194 {
1195 if ( IsSingleLine() )
1196 return 0;
1197
1198 GtkTextIter iter;
1199 if (y >= gtk_text_buffer_get_line_count (m_buffer))
1200 return -1;
1201
1202 gtk_text_buffer_get_iter_at_line(m_buffer, &iter, y);
1203 if (x >= gtk_text_iter_get_chars_in_line (&iter))
1204 return -1;
1205
1206 return gtk_text_iter_get_offset(&iter) + x;
1207 }
1208
1209 int wxTextCtrl::GetLineLength(long lineNo) const
1210 {
1211 if ( IsMultiLine() )
1212 {
1213 int last_line = gtk_text_buffer_get_line_count( m_buffer ) - 1;
1214 if (lineNo > last_line)
1215 return -1;
1216
1217 GtkTextIter iter;
1218 gtk_text_buffer_get_iter_at_line(m_buffer, &iter, lineNo);
1219 // get_chars_in_line return includes paragraph delimiters, so need to subtract 1 IF it is not the last line
1220 return gtk_text_iter_get_chars_in_line(&iter) - ((lineNo == last_line) ? 0 : 1);
1221 }
1222 else
1223 {
1224 wxString str = GetLineText (lineNo);
1225 return (int) str.length();
1226 }
1227 }
1228
1229 int wxTextCtrl::GetNumberOfLines() const
1230 {
1231 if ( IsMultiLine() )
1232 {
1233 return gtk_text_buffer_get_line_count( m_buffer );
1234 }
1235 else // single line
1236 {
1237 return 1;
1238 }
1239 }
1240
1241 void wxTextCtrl::SetInsertionPoint( long pos )
1242 {
1243 wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") );
1244
1245 if ( IsMultiLine() )
1246 {
1247 GtkTextIter iter;
1248 gtk_text_buffer_get_iter_at_offset( m_buffer, &iter, pos );
1249 gtk_text_buffer_place_cursor( m_buffer, &iter );
1250 GtkTextMark* mark = gtk_text_buffer_get_insert(m_buffer);
1251 if (IsFrozen())
1252 // defer until Thaw, text view is not using m_buffer now
1253 m_showPositionOnThaw = mark;
1254 else
1255 gtk_text_view_scroll_mark_onscreen(GTK_TEXT_VIEW(m_text), mark);
1256 }
1257 else
1258 {
1259 // FIXME: Is the editable's cursor really uptodate without double set_position in GTK2?
1260 gtk_editable_set_position(GTK_EDITABLE(m_text), int(pos));
1261 }
1262 }
1263
1264 void wxTextCtrl::SetInsertionPointEnd()
1265 {
1266 SetInsertionPoint(-1);
1267 }
1268
1269 void wxTextCtrl::SetEditable( bool editable )
1270 {
1271 wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") );
1272
1273 if ( IsMultiLine() )
1274 {
1275 gtk_text_view_set_editable( GTK_TEXT_VIEW(m_text), editable );
1276 }
1277 else
1278 {
1279 gtk_editable_set_editable( GTK_EDITABLE(m_text), editable );
1280 }
1281 }
1282
1283 bool wxTextCtrl::Enable( bool enable )
1284 {
1285 if (!wxWindowBase::Enable(enable))
1286 {
1287 // nothing to do
1288 return false;
1289 }
1290
1291 gtk_widget_set_sensitive( m_text, enable );
1292
1293 return true;
1294 }
1295
1296 // wxGTK-specific: called recursively by Enable,
1297 // to give widgets an opportunity to correct their colours after they
1298 // have been changed by Enable
1299 void wxTextCtrl::OnEnabled( bool enable )
1300 {
1301 // If we have a custom background colour, we use this colour in both
1302 // disabled and enabled mode, or we end up with a different colour under the
1303 // text.
1304 wxColour oldColour = GetBackgroundColour();
1305 if (oldColour.Ok())
1306 {
1307 // Need to set twice or it'll optimize the useful stuff out
1308 if (oldColour == * wxWHITE)
1309 SetBackgroundColour(*wxBLACK);
1310 else
1311 SetBackgroundColour(*wxWHITE);
1312 SetBackgroundColour(oldColour);
1313 }
1314 }
1315
1316 void wxTextCtrl::MarkDirty()
1317 {
1318 m_modified = true;
1319 }
1320
1321 void wxTextCtrl::DiscardEdits()
1322 {
1323 m_modified = false;
1324 }
1325
1326 // ----------------------------------------------------------------------------
1327 // max text length support
1328 // ----------------------------------------------------------------------------
1329
1330 bool wxTextCtrl::IgnoreTextUpdate()
1331 {
1332 if ( m_countUpdatesToIgnore > 0 )
1333 {
1334 m_countUpdatesToIgnore--;
1335
1336 return true;
1337 }
1338
1339 return false;
1340 }
1341
1342 bool wxTextCtrl::MarkDirtyOnChange()
1343 {
1344 if ( m_dontMarkDirty )
1345 {
1346 m_dontMarkDirty = false;
1347
1348 return false;
1349 }
1350
1351 return true;
1352 }
1353
1354 void wxTextCtrl::SetMaxLength(unsigned long len)
1355 {
1356 if ( !HasFlag(wxTE_MULTILINE) )
1357 {
1358 gtk_entry_set_max_length(GTK_ENTRY(m_text), len);
1359
1360 // there is a bug in GTK+ 1.2.x: "changed" signal is emitted even if
1361 // we had tried to enter more text than allowed by max text length and
1362 // the text wasn't really changed
1363 //
1364 // to detect this and generate TEXT_MAXLEN event instead of
1365 // TEXT_CHANGED one in this case we also catch "insert_text" signal
1366 //
1367 // when max len is set to 0 we disconnect our handler as it means that
1368 // we shouldn't check anything any more
1369 if ( len )
1370 {
1371 g_signal_connect (m_text, "insert_text",
1372 G_CALLBACK (gtk_insert_text_callback), this);
1373 }
1374 else // no checking
1375 {
1376 g_signal_handlers_disconnect_by_func (m_text,
1377 (gpointer) gtk_insert_text_callback, this);
1378 }
1379 }
1380 }
1381
1382 void wxTextCtrl::SetSelection( long from, long to )
1383 {
1384 wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") );
1385
1386 if (from == -1 && to == -1)
1387 {
1388 from = 0;
1389 to = GetValue().length();
1390 }
1391
1392 if ( IsMultiLine() )
1393 {
1394 GtkTextIter fromi, toi;
1395 gtk_text_buffer_get_iter_at_offset( m_buffer, &fromi, from );
1396 gtk_text_buffer_get_iter_at_offset( m_buffer, &toi, to );
1397
1398 gtk_text_buffer_place_cursor( m_buffer, &toi );
1399 gtk_text_buffer_move_mark_by_name( m_buffer, "selection_bound", &fromi );
1400 }
1401 else
1402 {
1403 gtk_editable_select_region( GTK_EDITABLE(m_text), (gint)from, (gint)to );
1404 }
1405 }
1406
1407 void wxTextCtrl::ShowPosition( long pos )
1408 {
1409 if (IsMultiLine())
1410 {
1411 GtkTextIter iter;
1412 gtk_text_buffer_get_iter_at_offset(m_buffer, &iter, int(pos));
1413 GtkTextMark* mark = gtk_text_buffer_get_mark(m_buffer, "ShowPosition");
1414 gtk_text_buffer_move_mark(m_buffer, mark, &iter);
1415 if (IsFrozen())
1416 // defer until Thaw, text view is not using m_buffer now
1417 m_showPositionOnThaw = mark;
1418 else
1419 gtk_text_view_scroll_mark_onscreen(GTK_TEXT_VIEW(m_text), mark);
1420 }
1421 }
1422
1423 wxTextCtrlHitTestResult
1424 wxTextCtrl::HitTest(const wxPoint& pt, long *pos) const
1425 {
1426 if ( !IsMultiLine() )
1427 {
1428 // not supported
1429 return wxTE_HT_UNKNOWN;
1430 }
1431
1432 int x, y;
1433 gtk_text_view_window_to_buffer_coords
1434 (
1435 GTK_TEXT_VIEW(m_text),
1436 GTK_TEXT_WINDOW_TEXT,
1437 pt.x, pt.y,
1438 &x, &y
1439 );
1440
1441 GtkTextIter iter;
1442 gtk_text_view_get_iter_at_location(GTK_TEXT_VIEW(m_text), &iter, x, y);
1443 if ( pos )
1444 *pos = gtk_text_iter_get_offset(&iter);
1445
1446 return wxTE_HT_ON_TEXT;
1447 }
1448
1449 long wxTextCtrl::GetInsertionPoint() const
1450 {
1451 wxCHECK_MSG( m_text != NULL, 0, wxT("invalid text ctrl") );
1452
1453 if ( IsMultiLine() )
1454 {
1455 // There is no direct accessor for the cursor, but
1456 // internally, the cursor is the "mark" called
1457 // "insert" in the text view's btree structure.
1458
1459 GtkTextMark *mark = gtk_text_buffer_get_insert( m_buffer );
1460 GtkTextIter cursor;
1461 gtk_text_buffer_get_iter_at_mark( m_buffer, &cursor, mark );
1462
1463 return gtk_text_iter_get_offset( &cursor );
1464 }
1465 else
1466 {
1467 return (long) gtk_editable_get_position(GTK_EDITABLE(m_text));
1468 }
1469 }
1470
1471 wxTextPos wxTextCtrl::GetLastPosition() const
1472 {
1473 wxCHECK_MSG( m_text != NULL, 0, wxT("invalid text ctrl") );
1474
1475 int pos = 0;
1476
1477 if ( IsMultiLine() )
1478 {
1479 GtkTextIter end;
1480 gtk_text_buffer_get_end_iter( m_buffer, &end );
1481
1482 pos = gtk_text_iter_get_offset( &end );
1483 }
1484 else
1485 {
1486 pos = GTK_ENTRY(m_text)->text_length;
1487 }
1488
1489 return (long)pos;
1490 }
1491
1492 void wxTextCtrl::Remove( long from, long to )
1493 {
1494 wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") );
1495
1496 if ( IsMultiLine() )
1497 {
1498 GtkTextIter fromi, toi;
1499 gtk_text_buffer_get_iter_at_offset( m_buffer, &fromi, from );
1500 gtk_text_buffer_get_iter_at_offset( m_buffer, &toi, to );
1501
1502 gtk_text_buffer_delete( m_buffer, &fromi, &toi );
1503 }
1504 else // single line
1505 gtk_editable_delete_text( GTK_EDITABLE(m_text), (gint)from, (gint)to );
1506 }
1507
1508 void wxTextCtrl::Replace( long from, long to, const wxString &value )
1509 {
1510 wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") );
1511
1512 Remove( from, to );
1513
1514 if (!value.empty())
1515 {
1516 SetInsertionPoint( from );
1517 WriteText( value );
1518 }
1519 }
1520
1521 void wxTextCtrl::Cut()
1522 {
1523 wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") );
1524
1525 if ( IsMultiLine() )
1526 g_signal_emit_by_name (m_text, "cut-clipboard");
1527 else
1528 gtk_editable_cut_clipboard(GTK_EDITABLE(m_text));
1529 }
1530
1531 void wxTextCtrl::Copy()
1532 {
1533 wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") );
1534
1535 if ( IsMultiLine() )
1536 g_signal_emit_by_name (m_text, "copy-clipboard");
1537 else
1538 gtk_editable_copy_clipboard(GTK_EDITABLE(m_text));
1539 }
1540
1541 void wxTextCtrl::Paste()
1542 {
1543 wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") );
1544
1545 if ( IsMultiLine() )
1546 g_signal_emit_by_name (m_text, "paste-clipboard");
1547 else
1548 gtk_editable_paste_clipboard(GTK_EDITABLE(m_text));
1549 }
1550
1551 // Undo/redo
1552 void wxTextCtrl::Undo()
1553 {
1554 // TODO
1555 wxFAIL_MSG( wxT("wxTextCtrl::Undo not implemented") );
1556 }
1557
1558 void wxTextCtrl::Redo()
1559 {
1560 // TODO
1561 wxFAIL_MSG( wxT("wxTextCtrl::Redo not implemented") );
1562 }
1563
1564 bool wxTextCtrl::CanUndo() const
1565 {
1566 // TODO
1567 //wxFAIL_MSG( wxT("wxTextCtrl::CanUndo not implemented") );
1568 return false;
1569 }
1570
1571 bool wxTextCtrl::CanRedo() const
1572 {
1573 // TODO
1574 //wxFAIL_MSG( wxT("wxTextCtrl::CanRedo not implemented") );
1575 return false;
1576 }
1577
1578 // If the return values from and to are the same, there is no
1579 // selection.
1580 void wxTextCtrl::GetSelection(long* fromOut, long* toOut) const
1581 {
1582 wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") );
1583
1584 gint from = -1;
1585 gint to = -1;
1586 bool haveSelection = false;
1587
1588 if ( IsMultiLine() )
1589 {
1590 GtkTextIter ifrom, ito;
1591 if ( gtk_text_buffer_get_selection_bounds(m_buffer, &ifrom, &ito) )
1592 {
1593 haveSelection = true;
1594 from = gtk_text_iter_get_offset(&ifrom);
1595 to = gtk_text_iter_get_offset(&ito);
1596 }
1597 }
1598 else // not multi-line
1599 {
1600 if ( gtk_editable_get_selection_bounds( GTK_EDITABLE(m_text),
1601 &from, &to) )
1602 {
1603 haveSelection = true;
1604 }
1605 }
1606
1607 if (! haveSelection )
1608 from = to = GetInsertionPoint();
1609
1610 if ( from > to )
1611 {
1612 // exchange them to be compatible with wxMSW
1613 gint tmp = from;
1614 from = to;
1615 to = tmp;
1616 }
1617
1618 if ( fromOut )
1619 *fromOut = from;
1620 if ( toOut )
1621 *toOut = to;
1622 }
1623
1624
1625 bool wxTextCtrl::IsEditable() const
1626 {
1627 wxCHECK_MSG( m_text != NULL, false, wxT("invalid text ctrl") );
1628
1629 if ( IsMultiLine() )
1630 {
1631 return gtk_text_view_get_editable(GTK_TEXT_VIEW(m_text));
1632 }
1633 else
1634 {
1635 return gtk_editable_get_editable(GTK_EDITABLE(m_text));
1636 }
1637 }
1638
1639 bool wxTextCtrl::IsModified() const
1640 {
1641 return m_modified;
1642 }
1643
1644 void wxTextCtrl::Clear()
1645 {
1646 SetValue( wxEmptyString );
1647 }
1648
1649 void wxTextCtrl::OnChar( wxKeyEvent &key_event )
1650 {
1651 wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") );
1652
1653 if ( key_event.GetKeyCode() == WXK_RETURN )
1654 {
1655 if ( HasFlag(wxTE_PROCESS_ENTER) )
1656 {
1657 wxCommandEvent event(wxEVT_COMMAND_TEXT_ENTER, m_windowId);
1658 event.SetEventObject(this);
1659 event.SetString(GetValue());
1660 if ( GetEventHandler()->ProcessEvent(event) )
1661 return;
1662 }
1663
1664 // FIXME: this is not the right place to do it, wxDialog::OnCharHook()
1665 // probably is
1666 if ( IsSingleLine() )
1667 {
1668 // This will invoke the dialog default action, such
1669 // as the clicking the default button.
1670
1671 wxWindow *top_frame = m_parent;
1672 while (top_frame->GetParent() && !(top_frame->IsTopLevel()))
1673 top_frame = top_frame->GetParent();
1674
1675 if (top_frame && GTK_IS_WINDOW(top_frame->m_widget))
1676 {
1677 GtkWindow *window = GTK_WINDOW(top_frame->m_widget);
1678
1679 if (window->default_widget)
1680 {
1681 gtk_widget_activate (window->default_widget);
1682 return;
1683 }
1684 }
1685 }
1686 }
1687
1688 key_event.Skip();
1689 }
1690
1691 GtkWidget* wxTextCtrl::GetConnectWidget()
1692 {
1693 return GTK_WIDGET(m_text);
1694 }
1695
1696 GdkWindow *wxTextCtrl::GTKGetWindow(wxArrayGdkWindows& WXUNUSED(windows)) const
1697 {
1698 if ( IsMultiLine() )
1699 {
1700 return gtk_text_view_get_window(GTK_TEXT_VIEW(m_text),
1701 GTK_TEXT_WINDOW_TEXT );
1702 }
1703 else
1704 {
1705 return GTK_ENTRY(m_text)->text_area;
1706 }
1707 }
1708
1709 // the font will change for subsequent text insertiongs
1710 bool wxTextCtrl::SetFont( const wxFont &font )
1711 {
1712 wxCHECK_MSG( m_text != NULL, false, wxT("invalid text ctrl") );
1713
1714 if ( !wxTextCtrlBase::SetFont(font) )
1715 {
1716 // font didn't change, nothing to do
1717 return false;
1718 }
1719
1720 if ( IsMultiLine() )
1721 {
1722 SetUpdateFont(true);
1723
1724 m_defaultStyle.SetFont(font);
1725
1726 ChangeFontGlobally();
1727 }
1728
1729 return true;
1730 }
1731
1732 void wxTextCtrl::ChangeFontGlobally()
1733 {
1734 // this method is very inefficient and hence should be called as rarely as
1735 // possible!
1736 //
1737 // TODO: it can be implemented much more efficiently for GTK2
1738 wxASSERT_MSG( IsMultiLine(),
1739 _T("shouldn't be called for single line controls") );
1740
1741 wxString value = GetValue();
1742 if ( !value.empty() )
1743 {
1744 SetUpdateFont(false);
1745
1746 Clear();
1747 AppendText(value);
1748 }
1749 }
1750
1751 bool wxTextCtrl::SetForegroundColour(const wxColour& colour)
1752 {
1753 if ( !wxControl::SetForegroundColour(colour) )
1754 return false;
1755
1756 // update default fg colour too
1757 m_defaultStyle.SetTextColour(colour);
1758
1759 return true;
1760 }
1761
1762 bool wxTextCtrl::SetBackgroundColour( const wxColour &colour )
1763 {
1764 wxCHECK_MSG( m_text != NULL, false, wxT("invalid text ctrl") );
1765
1766 if ( !wxControl::SetBackgroundColour( colour ) )
1767 return false;
1768
1769 if (!m_backgroundColour.Ok())
1770 return false;
1771
1772 // change active background color too
1773 m_defaultStyle.SetBackgroundColour( colour );
1774
1775 return true;
1776 }
1777
1778 bool wxTextCtrl::SetStyle( long start, long end, const wxTextAttr& style )
1779 {
1780 if ( IsMultiLine() )
1781 {
1782 if ( style.IsDefault() )
1783 {
1784 // nothing to do
1785 return true;
1786 }
1787
1788 gint l = gtk_text_buffer_get_char_count( m_buffer );
1789
1790 wxCHECK_MSG( start >= 0 && end <= l, false,
1791 _T("invalid range in wxTextCtrl::SetStyle") );
1792
1793 GtkTextIter starti, endi;
1794 gtk_text_buffer_get_iter_at_offset( m_buffer, &starti, start );
1795 gtk_text_buffer_get_iter_at_offset( m_buffer, &endi, end );
1796
1797 wxGtkTextApplyTagsFromAttr( m_widget, m_buffer, style, &starti, &endi );
1798
1799 return true;
1800 }
1801 //else: single line text controls don't support styles
1802
1803 return false;
1804 }
1805
1806 void wxTextCtrl::DoApplyWidgetStyle(GtkRcStyle *style)
1807 {
1808 gtk_widget_modify_style(m_text, style);
1809 }
1810
1811 void wxTextCtrl::OnCut(wxCommandEvent& WXUNUSED(event))
1812 {
1813 Cut();
1814 }
1815
1816 void wxTextCtrl::OnCopy(wxCommandEvent& WXUNUSED(event))
1817 {
1818 Copy();
1819 }
1820
1821 void wxTextCtrl::OnPaste(wxCommandEvent& WXUNUSED(event))
1822 {
1823 Paste();
1824 }
1825
1826 void wxTextCtrl::OnUndo(wxCommandEvent& WXUNUSED(event))
1827 {
1828 Undo();
1829 }
1830
1831 void wxTextCtrl::OnRedo(wxCommandEvent& WXUNUSED(event))
1832 {
1833 Redo();
1834 }
1835
1836 void wxTextCtrl::OnUpdateCut(wxUpdateUIEvent& event)
1837 {
1838 event.Enable( CanCut() );
1839 }
1840
1841 void wxTextCtrl::OnUpdateCopy(wxUpdateUIEvent& event)
1842 {
1843 event.Enable( CanCopy() );
1844 }
1845
1846 void wxTextCtrl::OnUpdatePaste(wxUpdateUIEvent& event)
1847 {
1848 event.Enable( CanPaste() );
1849 }
1850
1851 void wxTextCtrl::OnUpdateUndo(wxUpdateUIEvent& event)
1852 {
1853 event.Enable( CanUndo() );
1854 }
1855
1856 void wxTextCtrl::OnUpdateRedo(wxUpdateUIEvent& event)
1857 {
1858 event.Enable( CanRedo() );
1859 }
1860
1861 wxSize wxTextCtrl::DoGetBestSize() const
1862 {
1863 // FIXME should be different for multi-line controls...
1864 wxSize ret( wxControl::DoGetBestSize() );
1865 wxSize best(80, ret.y);
1866 CacheBestSize(best);
1867 return best;
1868 }
1869
1870 // ----------------------------------------------------------------------------
1871 // freeze/thaw
1872 // ----------------------------------------------------------------------------
1873
1874 void wxTextCtrl::Freeze()
1875 {
1876 wxCHECK_RET(m_text != NULL, wxT("invalid text ctrl"));
1877
1878 if ( HasFlag(wxTE_MULTILINE) )
1879 {
1880 if (m_freezeCount++ == 0)
1881 {
1882 // freeze textview updates and remove buffer
1883 g_signal_connect (m_text, "expose_event",
1884 G_CALLBACK (gtk_text_exposed_callback), this);
1885 g_signal_connect (m_widget, "expose_event",
1886 G_CALLBACK (gtk_text_exposed_callback), this);
1887 gtk_widget_set_sensitive(m_widget, false);
1888 g_object_ref(m_buffer);
1889 GtkTextBuffer* buf_new = gtk_text_buffer_new(NULL);
1890 GtkTextMark* mark = GTK_TEXT_VIEW(m_text)->first_para_mark;
1891 gtk_text_view_set_buffer(GTK_TEXT_VIEW(m_text), buf_new);
1892 // gtk_text_view_set_buffer adds its own reference
1893 g_object_unref(buf_new);
1894 // This mark should be deleted when the buffer is changed,
1895 // but it's not (in GTK+ up to at least 2.10.6).
1896 // Otherwise these anonymous marks start to build up in the buffer,
1897 // and Freeze takes longer and longer each time it is called.
1898 if (GTK_IS_TEXT_MARK(mark) && !gtk_text_mark_get_deleted(mark))
1899 gtk_text_buffer_delete_mark(m_buffer, mark);
1900 }
1901 }
1902 }
1903
1904 void wxTextCtrl::Thaw()
1905 {
1906 if ( HasFlag(wxTE_MULTILINE) )
1907 {
1908 wxCHECK_RET(m_freezeCount != 0, _T("Thaw() without matching Freeze()"));
1909
1910 if (--m_freezeCount == 0)
1911 {
1912 // Reattach buffer and thaw textview updates
1913 gtk_text_view_set_buffer(GTK_TEXT_VIEW(m_text), m_buffer);
1914 g_object_unref(m_buffer);
1915 gtk_widget_set_sensitive(m_widget, true);
1916 g_signal_handlers_disconnect_by_func (m_widget,
1917 (gpointer) gtk_text_exposed_callback, this);
1918 g_signal_handlers_disconnect_by_func (m_text,
1919 (gpointer) gtk_text_exposed_callback, this);
1920 if (m_showPositionOnThaw != NULL)
1921 {
1922 gtk_text_view_scroll_mark_onscreen(
1923 GTK_TEXT_VIEW(m_text), m_showPositionOnThaw);
1924 m_showPositionOnThaw = NULL;
1925 }
1926 }
1927 }
1928 }
1929
1930 // ----------------------------------------------------------------------------
1931 // wxTextUrlEvent passing if style & wxTE_AUTO_URL
1932 // ----------------------------------------------------------------------------
1933
1934 // FIXME: when dragging on a link the sample gets an "Unknown event".
1935 // This might be an excessive event from us or a buggy wxMouseEvent::Moving() or
1936 // a buggy sample, or something else
1937 void wxTextCtrl::OnUrlMouseEvent(wxMouseEvent& event)
1938 {
1939 event.Skip();
1940 if( !HasFlag(wxTE_AUTO_URL) )
1941 return;
1942
1943 gint x, y;
1944 GtkTextIter start, end;
1945 GtkTextTag *tag = gtk_text_tag_table_lookup(gtk_text_buffer_get_tag_table(m_buffer),
1946 "wxUrl");
1947
1948 gtk_text_view_window_to_buffer_coords(GTK_TEXT_VIEW(m_text), GTK_TEXT_WINDOW_WIDGET,
1949 event.GetX(), event.GetY(), &x, &y);
1950
1951 gtk_text_view_get_iter_at_location(GTK_TEXT_VIEW(m_text), &end, x, y);
1952 if (!gtk_text_iter_has_tag(&end, tag))
1953 {
1954 gdk_window_set_cursor(gtk_text_view_get_window(GTK_TEXT_VIEW(m_text),
1955 GTK_TEXT_WINDOW_TEXT), m_gdkXTermCursor);
1956 return;
1957 }
1958
1959 gdk_window_set_cursor(gtk_text_view_get_window(GTK_TEXT_VIEW(m_text),
1960 GTK_TEXT_WINDOW_TEXT), m_gdkHandCursor);
1961
1962 start = end;
1963 if(!gtk_text_iter_begins_tag(&start, tag))
1964 gtk_text_iter_backward_to_tag_toggle(&start, tag);
1965 if(!gtk_text_iter_ends_tag(&end, tag))
1966 gtk_text_iter_forward_to_tag_toggle(&end, tag);
1967
1968 // Native context menu is probably not desired on an URL.
1969 // Consider making this dependant on ProcessEvent(wxTextUrlEvent) return value
1970 if(event.GetEventType() == wxEVT_RIGHT_DOWN)
1971 event.Skip(false);
1972
1973 wxTextUrlEvent url_event(m_windowId, event,
1974 gtk_text_iter_get_offset(&start),
1975 gtk_text_iter_get_offset(&end));
1976
1977 InitCommandEvent(url_event);
1978 // Is that a good idea? Seems not (pleasure with gtk_text_view_start_selection_drag)
1979 //event.Skip(!GetEventHandler()->ProcessEvent(url_event));
1980 GetEventHandler()->ProcessEvent(url_event);
1981 }
1982
1983 bool wxTextCtrl::GTKProcessEvent(wxEvent& event) const
1984 {
1985 bool rc = wxTextCtrlBase::GTKProcessEvent(event);
1986
1987 // GtkTextView starts a drag operation when left mouse button is pressed
1988 // and ends it when it is released and if it doesn't get the release event
1989 // the next click on a control results in an assertion failure inside
1990 // gtk_text_view_start_selection_drag() which simply *kills* the program
1991 // without anything we can do about it, so always let GTK+ have this event
1992 return rc && (IsSingleLine() || event.GetEventType() != wxEVT_LEFT_UP);
1993 }
1994
1995 // static
1996 wxVisualAttributes
1997 wxTextCtrl::GetClassDefaultAttributes(wxWindowVariant WXUNUSED(variant))
1998 {
1999 return GetDefaultAttributesFromGTKWidget(gtk_entry_new, true);
2000 }
2001
2002 #endif // wxUSE_TEXTCTRL