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