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