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