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