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