]> git.saurik.com Git - wxWidgets.git/blame - src/gtk/textctrl.cpp
adding raw_control for osx
[wxWidgets.git] / src / gtk / textctrl.cpp
CommitLineData
c801d85f 1/////////////////////////////////////////////////////////////////////////////
8e13c1ec 2// Name: src/gtk/textctrl.cpp
c801d85f
KB
3// Purpose:
4// Author: Robert Roebling
f96aa4d9 5// Id: $Id$
9fa72bd2 6// Copyright: (c) 1998 Robert Roebling, Vadim Zeitlin, 2005 Mart Raudsepp
65571936 7// Licence: wxWindows licence
c801d85f
KB
8/////////////////////////////////////////////////////////////////////////////
9
14f355c2
VS
10// For compilers that support precompilation, includes "wx.h".
11#include "wx/wxprec.h"
12
28fcfbfe
VZ
13#if wxUSE_TEXTCTRL
14
c801d85f 15#include "wx/textctrl.h"
88a7a4e1
WS
16
17#ifndef WX_PRECOMP
18 #include "wx/intl.h"
e4db172a 19 #include "wx/log.h"
de6185e2 20 #include "wx/utils.h"
9eddec69 21 #include "wx/settings.h"
18680f86 22 #include "wx/math.h"
88a7a4e1
WS
23#endif
24
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
385e8575
PC
582//-----------------------------------------------------------------------------
583// "mark_set"
584//-----------------------------------------------------------------------------
585
586extern "C" {
587static void mark_set(GtkTextBuffer*, GtkTextIter*, GtkTextMark* mark, GSList** markList)
588{
589 if (gtk_text_mark_get_name(mark) == NULL)
590 *markList = g_slist_prepend(*markList, mark);
591}
592}
593
2f2aa628
RR
594//-----------------------------------------------------------------------------
595// wxTextCtrl
596//-----------------------------------------------------------------------------
597
9d112688 598BEGIN_EVENT_TABLE(wxTextCtrl, wxTextCtrlBase)
2830bf19 599 EVT_CHAR(wxTextCtrl::OnChar)
e702ff0f
JS
600
601 EVT_MENU(wxID_CUT, wxTextCtrl::OnCut)
602 EVT_MENU(wxID_COPY, wxTextCtrl::OnCopy)
603 EVT_MENU(wxID_PASTE, wxTextCtrl::OnPaste)
604 EVT_MENU(wxID_UNDO, wxTextCtrl::OnUndo)
605 EVT_MENU(wxID_REDO, wxTextCtrl::OnRedo)
606
607 EVT_UPDATE_UI(wxID_CUT, wxTextCtrl::OnUpdateCut)
608 EVT_UPDATE_UI(wxID_COPY, wxTextCtrl::OnUpdateCopy)
609 EVT_UPDATE_UI(wxID_PASTE, wxTextCtrl::OnUpdatePaste)
610 EVT_UPDATE_UI(wxID_UNDO, wxTextCtrl::OnUpdateUndo)
611 EVT_UPDATE_UI(wxID_REDO, wxTextCtrl::OnUpdateRedo)
9440c3d0 612
9440c3d0
KH
613 // wxTE_AUTO_URL wxTextUrl support. Currently only creates
614 // wxTextUrlEvent in the same cases as wxMSW, more can be added here.
615 EVT_MOTION (wxTextCtrl::OnUrlMouseEvent)
616 EVT_LEFT_DOWN (wxTextCtrl::OnUrlMouseEvent)
617 EVT_LEFT_UP (wxTextCtrl::OnUrlMouseEvent)
618 EVT_LEFT_DCLICK (wxTextCtrl::OnUrlMouseEvent)
619 EVT_RIGHT_DOWN (wxTextCtrl::OnUrlMouseEvent)
620 EVT_RIGHT_UP (wxTextCtrl::OnUrlMouseEvent)
621 EVT_RIGHT_DCLICK(wxTextCtrl::OnUrlMouseEvent)
c801d85f
KB
622END_EVENT_TABLE()
623
01041145 624void wxTextCtrl::Init()
f5abe911 625{
6964cbba 626 m_dontMarkDirty =
7d8268a1 627 m_modified = false;
6964cbba 628
f6519b40
VZ
629 m_countUpdatesToIgnore = 0;
630
7d8268a1 631 SetUpdateFont(false);
6964cbba 632
85396430 633 m_text = NULL;
5a3ef194 634 m_showPositionOnThaw = NULL;
385e8575 635 m_anonymousMarkList = NULL;
9440c3d0
KH
636}
637
638wxTextCtrl::~wxTextCtrl()
639{
385e8575
PC
640 if (m_anonymousMarkList)
641 g_slist_free(m_anonymousMarkList);
f5abe911 642}
13289f04 643
13111b2a
VZ
644wxTextCtrl::wxTextCtrl( wxWindow *parent,
645 wxWindowID id,
646 const wxString &value,
647 const wxPoint &pos,
648 const wxSize &size,
649 long style,
650 const wxValidator& validator,
651 const wxString &name )
f5abe911 652{
01041145
VZ
653 Init();
654
f5abe911
RR
655 Create( parent, id, value, pos, size, style, validator, name );
656}
c801d85f 657
13111b2a
VZ
658bool wxTextCtrl::Create( wxWindow *parent,
659 wxWindowID id,
660 const wxString &value,
661 const wxPoint &pos,
662 const wxSize &size,
663 long style,
664 const wxValidator& validator,
665 const wxString &name )
c801d85f 666{
4dcaf11a
RR
667 if (!PreCreation( parent, pos, size ) ||
668 !CreateBase( parent, id, pos, size, style, validator, name ))
669 {
223d09f6 670 wxFAIL_MSG( wxT("wxTextCtrl creation failed") );
7d8268a1 671 return false;
4dcaf11a 672 }
6de97a3b 673
2830bf19 674 bool multi_line = (style & wxTE_MULTILINE) != 0;
a8bf1826 675
ab46dc18 676 if (multi_line)
2830bf19 677 {
385e8575
PC
678 m_buffer = gtk_text_buffer_new(NULL);
679 gulong sig_id = g_signal_connect(m_buffer, "mark_set", G_CALLBACK(mark_set), &m_anonymousMarkList);
fab591c5 680 // Create view
385e8575
PC
681 m_text = gtk_text_view_new_with_buffer(m_buffer);
682 // gtk_text_view_set_buffer adds its own reference
683 g_object_unref(m_buffer);
684 g_signal_handler_disconnect(m_buffer, sig_id);
a8bf1826 685
5a3ef194
PC
686 // create "ShowPosition" marker
687 GtkTextIter iter;
688 gtk_text_buffer_get_start_iter(m_buffer, &iter);
689 gtk_text_buffer_create_mark(m_buffer, "ShowPosition", &iter, true);
690
fab591c5
RR
691 // create scrolled window
692 m_widget = gtk_scrolled_window_new( NULL, NULL );
693 gtk_scrolled_window_set_policy( GTK_SCROLLED_WINDOW( m_widget ),
09b86e69
VZ
694 GTK_POLICY_AUTOMATIC,
695 style & wxTE_NO_VSCROLL
696 ? GTK_POLICY_NEVER
697 : GTK_POLICY_AUTOMATIC );
add7cadd 698 // for ScrollLines/Pages
385e8575 699 m_scrollBar[1] = GTK_RANGE(gtk_scrolled_window_get_vscrollbar(GTK_SCROLLED_WINDOW(m_widget)));
a8bf1826 700
fab591c5
RR
701 // Insert view into scrolled window
702 gtk_container_add( GTK_CONTAINER(m_widget), m_text );
a8bf1826 703
927637fd 704 GTKSetWrapMode();
805dd538 705
496e7ec6 706 GTKScrolledWindowSetBorder(m_widget, style);
7d8268a1 707
e327fddf
KH
708 gtk_widget_add_events( GTK_WIDGET(m_text), GDK_ENTER_NOTIFY_MASK | GDK_LEAVE_NOTIFY_MASK );
709
fc9ab22a 710 gtk_widget_set_can_focus(m_widget, FALSE);
2830bf19
RR
711 }
712 else
713 {
fab591c5 714 // a single-line text control: no need for scrollbars
2830bf19 715 m_widget =
1c35b54e 716 m_text = gtk_entry_new();
69cecdb1
PC
717 // work around probable bug in GTK+ 2.18 when calling WriteText on a
718 // new, empty control, see http://trac.wxwidgets.org/ticket/11409
719 gtk_entry_get_text((GtkEntry*)m_text);
44c5573d 720
02a6e358 721 if (style & wxNO_BORDER)
7d1fea10 722 g_object_set (m_text, "has-frame", FALSE, NULL);
e2ccb250 723
2830bf19 724 }
9ff9d30c 725 g_object_ref(m_widget);
484e45bf 726
db434467 727 m_parent->DoAddChild( this );
eda40bfc 728
76fcf0f2 729 m_focusWidget = m_text;
db434467 730
abdeb9e7 731 PostCreation(size);
484e45bf 732
2830bf19 733 if (multi_line)
0c131a5a 734 {
2830bf19 735 gtk_widget_show(m_text);
0c131a5a 736 }
13289f04 737
4a3f5ad0
RR
738 // We want to be notified about text changes.
739 if (multi_line)
740 {
741 g_signal_connect (m_buffer, "changed",
742 G_CALLBACK (gtk_text_changed_callback), this);
743 }
744 else
745 {
746 g_signal_connect (m_text, "changed",
747 G_CALLBACK (gtk_text_changed_callback), this);
748 }
749
5edfb384
RR
750 // Catch to disable focus out handling
751 g_signal_connect (m_text, "populate_popup",
752 G_CALLBACK (gtk_textctrl_populate_popup),
753 this);
754
7d8268a1 755 if (!value.empty())
2830bf19 756 {
fab591c5 757 SetValue( value );
2830bf19 758 }
484e45bf 759
2830bf19 760 if (style & wxTE_PASSWORD)
927637fd 761 GTKSetVisibility();
8bbe427f 762
2830bf19 763 if (style & wxTE_READONLY)
927637fd 764 GTKSetEditable();
98a8daf4 765
927637fd
VZ
766 // left justification (alignment) is the default anyhow
767 if ( style & (wxTE_RIGHT | wxTE_CENTRE) )
768 GTKSetJustification();
7d8268a1 769
fab591c5
RR
770 if (multi_line)
771 {
4a3f5ad0 772 // Handle URLs on multi-line controls with wxTE_AUTO_URL style
9440c3d0
KH
773 if (style & wxTE_AUTO_URL)
774 {
775 GtkTextIter start, end;
9440c3d0
KH
776
777 // We create our wxUrl tag here for slight efficiency gain - we
778 // don't have to check for the tag existance in callbacks,
779 // hereby it's guaranteed to exist.
780 gtk_text_buffer_create_tag(m_buffer, "wxUrl",
781 "foreground", "blue",
782 "underline", PANGO_UNDERLINE_SINGLE,
783 NULL);
784
785 // Check for URLs after each text change
9fa72bd2
MR
786 g_signal_connect_after (m_buffer, "insert_text",
787 G_CALLBACK (au_insert_text_callback), this);
788 g_signal_connect_after (m_buffer, "delete_range",
789 G_CALLBACK (au_delete_range_callback), this);
9440c3d0
KH
790
791 // Block all wxUrl tag applying unless we do it ourselves, in which case we
792 // block this callback temporarily. This takes care of gtk+ internal
793 // gtk_text_buffer_insert_range* calls that would copy our URL tag otherwise,
794 // which is undesired because only a part of the URL might be copied.
795 // The insert-text signal emitted inside it will take care of newly formed
796 // or wholly copied URLs.
9fa72bd2
MR
797 g_signal_connect (m_buffer, "apply_tag",
798 G_CALLBACK (au_apply_tag_callback), NULL);
9440c3d0
KH
799
800 // Check for URLs in the initial string passed to Create
801 gtk_text_buffer_get_start_iter(m_buffer, &start);
802 gtk_text_buffer_get_end_iter(m_buffer, &end);
803 au_check_range(&start, &end);
804 }
fab591c5 805 }
3cfe87da
VZ
806 else // single line
807 {
808 // do the right thing with Enter presses depending on whether we have
809 // wxTE_PROCESS_ENTER or not
810 GTKSetActivatesDefault();
811 }
812
0ec1179b 813
c85f2eb1
VZ
814 g_signal_connect (m_text, "copy-clipboard",
815 G_CALLBACK (gtk_copy_clipboard_callback), this);
816 g_signal_connect (m_text, "cut-clipboard",
817 G_CALLBACK (gtk_cut_clipboard_callback), this);
818 g_signal_connect (m_text, "paste-clipboard",
819 G_CALLBACK (gtk_paste_clipboard_callback), this);
820
65045edd 821 m_cursor = wxCursor( wxCURSOR_IBEAM );
13111b2a 822
7d8268a1 823 return true;
2830bf19 824}
484e45bf 825
0ec1179b
VZ
826GtkEditable *wxTextCtrl::GetEditable() const
827{
828 wxCHECK_MSG( IsSingleLine(), NULL, "shouldn't be called for multiline" );
829
830 return GTK_EDITABLE(m_text);
831}
832
0847e36e
JS
833GtkEntry *wxTextCtrl::GetEntry() const
834{
835 return GTK_ENTRY(m_text);
836}
837
927637fd
VZ
838// ----------------------------------------------------------------------------
839// flags handling
840// ----------------------------------------------------------------------------
841
842void wxTextCtrl::GTKSetEditable()
843{
844 gboolean editable = !HasFlag(wxTE_READONLY);
845 if ( IsSingleLine() )
846 gtk_editable_set_editable(GTK_EDITABLE(m_text), editable);
847 else
848 gtk_text_view_set_editable(GTK_TEXT_VIEW(m_text), editable);
849}
850
851void wxTextCtrl::GTKSetVisibility()
852{
ff805cac
VZ
853 wxCHECK_RET( IsSingleLine(),
854 "wxTE_PASSWORD is for single line text controls only" );
855
856 gtk_entry_set_visibility(GTK_ENTRY(m_text), !HasFlag(wxTE_PASSWORD));
857}
858
859void wxTextCtrl::GTKSetActivatesDefault()
860{
861 wxCHECK_RET( IsSingleLine(),
862 "wxTE_PROCESS_ENTER is for single line text controls only" );
863
864 gtk_entry_set_activates_default(GTK_ENTRY(m_text),
865 !HasFlag(wxTE_PROCESS_ENTER));
927637fd
VZ
866}
867
868void wxTextCtrl::GTKSetWrapMode()
869{
870 // no wrapping in single line controls
871 if ( !IsMultiLine() )
872 return;
873
874 // translate wx wrapping style to GTK+
875 GtkWrapMode wrap;
876 if ( HasFlag( wxTE_DONTWRAP ) )
877 wrap = GTK_WRAP_NONE;
878 else if ( HasFlag( wxTE_CHARWRAP ) )
879 wrap = GTK_WRAP_CHAR;
880 else if ( HasFlag( wxTE_WORDWRAP ) )
881 wrap = GTK_WRAP_WORD;
882 else // HasFlag(wxTE_BESTWRAP) always true as wxTE_BESTWRAP == 0
ff654490 883 wrap = GTK_WRAP_WORD_CHAR;
927637fd
VZ
884
885 gtk_text_view_set_wrap_mode( GTK_TEXT_VIEW( m_text ), wrap );
886}
887
888void wxTextCtrl::GTKSetJustification()
889{
890 if ( IsMultiLine() )
891 {
892 GtkJustification just;
893 if ( HasFlag(wxTE_RIGHT) )
894 just = GTK_JUSTIFY_RIGHT;
895 else if ( HasFlag(wxTE_CENTRE) )
896 just = GTK_JUSTIFY_CENTER;
897 else // wxTE_LEFT == 0
898 just = GTK_JUSTIFY_LEFT;
899
41e2aad5 900 gtk_text_view_set_justification(GTK_TEXT_VIEW(m_text), just);
927637fd
VZ
901 }
902 else // single line
903 {
ff654490
VZ
904 gfloat align;
905 if ( HasFlag(wxTE_RIGHT) )
906 align = 1.0;
907 else if ( HasFlag(wxTE_CENTRE) )
908 align = 0.5;
909 else // single line
910 align = 0.0;
927637fd 911
ff654490
VZ
912 gtk_entry_set_alignment(GTK_ENTRY(m_text), align);
913 }
927637fd
VZ
914}
915
916void wxTextCtrl::SetWindowStyleFlag(long style)
917{
918 long styleOld = GetWindowStyleFlag();
919
920 wxTextCtrlBase::SetWindowStyleFlag(style);
921
922 if ( (style & wxTE_READONLY) != (styleOld & wxTE_READONLY) )
923 GTKSetEditable();
924
925 if ( (style & wxTE_PASSWORD) != (styleOld & wxTE_PASSWORD) )
926 GTKSetVisibility();
927
ff805cac
VZ
928 if ( (style & wxTE_PROCESS_ENTER) != (styleOld & wxTE_PROCESS_ENTER) )
929 GTKSetActivatesDefault();
930
927637fd
VZ
931 static const long flagsWrap = wxTE_WORDWRAP | wxTE_CHARWRAP | wxTE_DONTWRAP;
932 if ( (style & flagsWrap) != (styleOld & flagsWrap) )
933 GTKSetWrapMode();
934
935 static const long flagsAlign = wxTE_LEFT | wxTE_CENTRE | wxTE_RIGHT;
936 if ( (style & flagsAlign) != (styleOld & flagsAlign) )
937 GTKSetJustification();
938}
939
940// ----------------------------------------------------------------------------
941// control value
942// ----------------------------------------------------------------------------
943
03f38c58 944wxString wxTextCtrl::GetValue() const
c801d85f 945{
902725ee 946 wxCHECK_MSG( m_text != NULL, wxEmptyString, wxT("invalid text ctrl") );
8bbe427f 947
75812722 948 if ( IsMultiLine() )
2830bf19 949 {
fab591c5 950 GtkTextIter start;
41b81aed 951 gtk_text_buffer_get_start_iter( m_buffer, &start );
fab591c5 952 GtkTextIter end;
41b81aed 953 gtk_text_buffer_get_end_iter( m_buffer, &end );
e808cf8a 954 wxGtkString text(gtk_text_buffer_get_text(m_buffer, &start, &end, true));
5b87f8bf 955
6256849f 956 return wxGTK_CONV_BACK(text);
2830bf19 957 }
0ec1179b 958 else // single line
2830bf19 959 {
0ec1179b 960 return wxTextEntry::GetValue();
2830bf19 961 }
6de97a3b 962}
c801d85f 963
0d91b234
VZ
964wxFontEncoding wxTextCtrl::GetTextEncoding() const
965{
966 // GTK+ uses UTF-8 internally, we need to convert to it but from which
967 // encoding?
968
969 // first check the default text style (we intentionally don't check the
970 // style for the current position as it doesn't make sense for SetValue())
971 const wxTextAttr& style = GetDefaultStyle();
44cc96a8 972 wxFontEncoding enc = style.HasFontEncoding() ? style.GetFontEncoding()
0d91b234
VZ
973 : wxFONTENCODING_SYSTEM;
974
975 // fall back to the controls font if no style
976 if ( enc == wxFONTENCODING_SYSTEM && m_hasFont )
977 enc = GetFont().GetEncoding();
978
979 return enc;
980}
981
28fdd8db
VZ
982bool wxTextCtrl::IsEmpty() const
983{
984 if ( IsMultiLine() )
14be4734 985 return gtk_text_buffer_get_char_count(m_buffer) == 0;
28fdd8db 986
0ec1179b 987 return wxTextEntry::IsEmpty();
28fdd8db
VZ
988}
989
f6519b40 990void wxTextCtrl::DoSetValue( const wxString &value, int flags )
c801d85f 991{
223d09f6 992 wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") );
8bbe427f 993
6964cbba 994 m_modified = false;
6964cbba 995
0ec1179b
VZ
996 if ( !IsMultiLine() )
997 {
998 wxTextEntry::DoSetValue(value, flags);
999 return;
1000 }
1001
d1263a39
RR
1002 if (value.IsEmpty())
1003 {
1004 if ( !(flags & SetValue_SendEvent) )
1005 EnableTextChangedEvents(false);
e2ccb250 1006
d1263a39 1007 gtk_text_buffer_set_text( m_buffer, "", 0 );
e2ccb250 1008
d1263a39
RR
1009 if ( !(flags & SetValue_SendEvent) )
1010 EnableTextChangedEvents(true);
e2ccb250 1011
d1263a39
RR
1012 return;
1013 }
1014
e2ccb250 1015#if wxUSE_UNICODE
d5d20078
RR
1016 const wxCharBuffer buffer(value.utf8_str());
1017#else
785d8330
VZ
1018 wxFontEncoding enc = m_defaultStyle.HasFont()
1019 ? m_defaultStyle.GetFont().GetEncoding()
1020 : wxFONTENCODING_SYSTEM;
1021 if ( enc == wxFONTENCODING_SYSTEM )
1022 enc = GetTextEncoding();
1023
1024 const wxCharBuffer buffer(wxGTK_CONV_ENC(value, enc));
7e0fff42 1025 if ( !buffer )
2830bf19 1026 {
7e0fff42
VZ
1027 // see comment in WriteText() as to why we must warn the user about
1028 // this
1029 wxLogWarning(_("Failed to set text in the text control."));
1030 return;
1031 }
d5d20078 1032#endif
418cf02e 1033
86e37f69
VZ
1034 if ( !(flags & SetValue_SendEvent) )
1035 {
0ec1179b 1036 EnableTextChangedEvents(false);
86e37f69
VZ
1037 }
1038
0ec1179b
VZ
1039 gtk_text_buffer_set_text( m_buffer, buffer, strlen(buffer) );
1040
1041 if ( !m_defaultStyle.IsDefault() )
2830bf19 1042 {
0ec1179b
VZ
1043 GtkTextIter start, end;
1044 gtk_text_buffer_get_bounds( m_buffer, &start, &end );
1045 wxGtkTextApplyTagsFromAttr(m_widget, m_buffer, m_defaultStyle,
1046 &start, &end);
2830bf19 1047 }
86e37f69
VZ
1048
1049 if ( !(flags & SetValue_SendEvent) )
1050 {
0ec1179b 1051 EnableTextChangedEvents(true);
86e37f69 1052 }
6de97a3b 1053}
c801d85f
KB
1054
1055void wxTextCtrl::WriteText( const wxString &text )
1056{
223d09f6 1057 wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") );
8bbe427f 1058
0ec1179b
VZ
1059 // we're changing the text programmatically
1060 DontMarkDirtyOnNextChange();
1061
1062 if ( !IsMultiLine() )
1063 {
1064 wxTextEntry::WriteText(text);
17665a2b 1065 return;
0ec1179b 1066 }
484e45bf 1067
e2ccb250 1068#if wxUSE_UNICODE
d5d20078
RR
1069 const wxCharBuffer buffer(text.utf8_str());
1070#else
0d91b234
VZ
1071 // check if we have a specific style for the current position
1072 wxFontEncoding enc = wxFONTENCODING_SYSTEM;
1073 wxTextAttr style;
44cc96a8 1074 if ( GetStyle(GetInsertionPoint(), style) && style.HasFontEncoding() )
0d91b234 1075 {
44cc96a8 1076 enc = style.GetFontEncoding();
0d91b234
VZ
1077 }
1078
1079 if ( enc == wxFONTENCODING_SYSTEM )
1080 enc = GetTextEncoding();
1081
1082 const wxCharBuffer buffer(wxGTK_CONV_ENC(text, enc));
a3669332
VZ
1083 if ( !buffer )
1084 {
0d91b234
VZ
1085 // we must log an error here as losing the text like this can be a
1086 // serious problem (e.g. imagine the document edited by user being
1087 // empty instead of containing the correct text)
1088 wxLogWarning(_("Failed to insert text in the control."));
a3669332
VZ
1089 return;
1090 }
d5d20078 1091#endif
a3669332 1092
0ec1179b
VZ
1093 // First remove the selection if there is one
1094 // TODO: Is there an easier GTK specific way to do this?
1095 long from, to;
1096 GetSelection(&from, &to);
1097 if (from != to)
1098 Remove(from, to);
ea5449ae 1099
0ec1179b
VZ
1100 // Insert the text
1101 wxGtkTextInsert( m_text, m_buffer, m_defaultStyle, buffer );
a8bf1826 1102
0ec1179b
VZ
1103 // Scroll to cursor, but only if scrollbar thumb is at the very bottom
1104 // won't work when frozen, text view is not using m_buffer then
385e8575 1105 if (!IsFrozen())
2830bf19 1106 {
385e8575
PC
1107 GtkAdjustment* adj = gtk_scrolled_window_get_vadjustment(GTK_SCROLLED_WINDOW(m_widget));
1108 const double value = gtk_adjustment_get_value(adj);
1109 const double upper = gtk_adjustment_get_upper(adj);
1110 const double page_size = gtk_adjustment_get_page_size(adj);
1111 if (wxIsSameDouble(value, upper - page_size))
1112 {
1113 gtk_text_view_scroll_to_mark(GTK_TEXT_VIEW(m_text),
1114 gtk_text_buffer_get_insert(m_buffer), 0, false, 0, 1);
1115 }
2830bf19 1116 }
6de97a3b 1117}
c801d85f 1118
ba3f6b44
RR
1119wxString wxTextCtrl::GetLineText( long lineNo ) const
1120{
e808cf8a 1121 wxString result;
75812722 1122 if ( IsMultiLine() )
a6e21573 1123 {
905f2110 1124 GtkTextIter line;
41b81aed 1125 gtk_text_buffer_get_iter_at_line(m_buffer,&line,lineNo);
5440a04f 1126
8c6785f0 1127 GtkTextIter end = line;
5440a04f
VZ
1128 // avoid skipping to the next line end if this one is empty
1129 if ( !gtk_text_iter_ends_line(&line) )
1130 gtk_text_iter_forward_to_line_end(&end);
1131
e808cf8a
PC
1132 wxGtkString text(gtk_text_buffer_get_text(m_buffer, &line, &end, true));
1133 result = wxGTK_CONV_BACK(text);
a6e21573 1134 }
ba3f6b44 1135 else
a81258be 1136 {
e808cf8a
PC
1137 if (lineNo == 0)
1138 result = GetValue();
a81258be 1139 }
e808cf8a 1140 return result;
6de97a3b 1141}
c801d85f 1142
a81258be
RR
1143void wxTextCtrl::OnDropFiles( wxDropFilesEvent &WXUNUSED(event) )
1144{
ac0d36b5
HH
1145 /* If you implement this, don't forget to update the documentation!
1146 * (file docs/latex/wx/text.tex) */
223d09f6 1147 wxFAIL_MSG( wxT("wxTextCtrl::OnDropFiles not implemented") );
a81258be 1148}
112892b9 1149
0efe5ba7 1150bool wxTextCtrl::PositionToXY(long pos, long *x, long *y ) const
c801d85f 1151{
75812722 1152 if ( IsMultiLine() )
805dd538 1153 {
f29a481a 1154 GtkTextIter iter;
01207937
MR
1155
1156 if (pos > GetLastPosition())
1157 return false;
1158
f29a481a 1159 gtk_text_buffer_get_iter_at_offset(m_buffer, &iter, pos);
f29a481a 1160
50259962
MR
1161 if ( y )
1162 *y = gtk_text_iter_get_line(&iter);
1163 if ( x )
1164 *x = gtk_text_iter_get_line_offset(&iter);
805dd538 1165 }
96385642
VZ
1166 else // single line control
1167 {
385e8575 1168 if (pos <= gtk_entry_get_text_length(GTK_ENTRY(m_text)))
96385642 1169 {
50259962
MR
1170 if ( y )
1171 *y = 0;
1172 if ( x )
1173 *x = pos;
96385642
VZ
1174 }
1175 else
1176 {
1177 // index out of bounds
7d8268a1 1178 return false;
96385642 1179 }
8bbe427f 1180 }
96385642 1181
7d8268a1 1182 return true;
6de97a3b 1183}
c801d85f 1184
e3ca08dd 1185long wxTextCtrl::XYToPosition(long x, long y ) const
c801d85f 1186{
75812722
VZ
1187 if ( IsSingleLine() )
1188 return 0;
805dd538 1189
f29a481a 1190 GtkTextIter iter;
21d23b88
MR
1191 if (y >= gtk_text_buffer_get_line_count (m_buffer))
1192 return -1;
1193
1194 gtk_text_buffer_get_iter_at_line(m_buffer, &iter, y);
1195 if (x >= gtk_text_iter_get_chars_in_line (&iter))
1196 return -1;
1197
1198 return gtk_text_iter_get_offset(&iter) + x;
6de97a3b 1199}
c801d85f 1200
a81258be 1201int wxTextCtrl::GetLineLength(long lineNo) const
c801d85f 1202{
75812722 1203 if ( IsMultiLine() )
f29a481a
MR
1204 {
1205 int last_line = gtk_text_buffer_get_line_count( m_buffer ) - 1;
1206 if (lineNo > last_line)
1207 return -1;
1208
1209 GtkTextIter iter;
1210 gtk_text_buffer_get_iter_at_line(m_buffer, &iter, lineNo);
1211 // get_chars_in_line return includes paragraph delimiters, so need to subtract 1 IF it is not the last line
1212 return gtk_text_iter_get_chars_in_line(&iter) - ((lineNo == last_line) ? 0 : 1);
1213 }
1214 else
f29a481a
MR
1215 {
1216 wxString str = GetLineText (lineNo);
8e13c1ec 1217 return (int) str.length();
f29a481a 1218 }
6de97a3b 1219}
c801d85f 1220
6ce83213
VZ
1221wxPoint wxTextCtrl::DoPositionToCoords(long pos) const
1222{
1223 if ( !IsMultiLine() )
1224 {
1225 // Single line text entry (GtkTextEntry) doesn't have support for
1226 // getting the coordinates for the given offset. Perhaps we could
1227 // find them ourselves by using GetTextExtent() but for now just leave
1228 // it unimplemented, this function is more useful for multiline
1229 // controls anyhow.
1230 return wxDefaultPosition;
1231 }
1232
1233 // Window coordinates for the given position is calculated by getting
1234 // the buffer coordinates and converting them to window coordinates.
1235 GtkTextView *textview = GTK_TEXT_VIEW(m_text);
1236
1237 GtkTextIter iter;
1238 gtk_text_buffer_get_iter_at_offset(m_buffer, &iter, pos);
1239
1240 GdkRectangle bufferCoords;
1241 gtk_text_view_get_iter_location(textview, &iter, &bufferCoords);
1242
1243 gint winCoordX = 0,
1244 winCoordY = 0;
1245 gtk_text_view_buffer_to_window_coords(textview, GTK_TEXT_WINDOW_WIDGET,
1246 bufferCoords.x, bufferCoords.y,
1247 &winCoordX, &winCoordY);
1248
1249 return wxPoint(winCoordX, winCoordY);
1250}
1251
a81258be 1252int wxTextCtrl::GetNumberOfLines() const
c801d85f 1253{
75812722 1254 if ( IsMultiLine() )
e894be20 1255 {
c68dea66 1256 return gtk_text_buffer_get_line_count( m_buffer );
e894be20
VZ
1257 }
1258 else // single line
1259 {
96385642 1260 return 1;
e894be20 1261 }
6de97a3b 1262}
c801d85f 1263
debe6624 1264void wxTextCtrl::SetInsertionPoint( long pos )
c801d85f 1265{
223d09f6 1266 wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") );
3358d36e 1267
74c5a810 1268 if ( IsMultiLine() )
291a8f20 1269 {
fab591c5 1270 GtkTextIter iter;
41b81aed
RR
1271 gtk_text_buffer_get_iter_at_offset( m_buffer, &iter, pos );
1272 gtk_text_buffer_place_cursor( m_buffer, &iter );
5a3ef194
PC
1273 GtkTextMark* mark = gtk_text_buffer_get_insert(m_buffer);
1274 if (IsFrozen())
1275 // defer until Thaw, text view is not using m_buffer now
1276 m_showPositionOnThaw = mark;
1277 else
1278 gtk_text_view_scroll_mark_onscreen(GTK_TEXT_VIEW(m_text), mark);
ac0d36b5 1279 }
0ec1179b 1280 else // single line
291a8f20 1281 {
0ec1179b 1282 wxTextEntry::SetInsertionPoint(pos);
291a8f20 1283 }
6de97a3b 1284}
c801d85f 1285
debe6624 1286void wxTextCtrl::SetEditable( bool editable )
c801d85f 1287{
223d09f6 1288 wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") );
8bbe427f 1289
75812722 1290 if ( IsMultiLine() )
fab591c5 1291 {
fab591c5 1292 gtk_text_view_set_editable( GTK_TEXT_VIEW(m_text), editable );
fab591c5 1293 }
0ec1179b 1294 else // single line
fab591c5 1295 {
0ec1179b 1296 wxTextEntry::SetEditable(editable);
fab591c5 1297 }
6de97a3b 1298}
c801d85f 1299
68df5777
RR
1300bool wxTextCtrl::Enable( bool enable )
1301{
1302 if (!wxWindowBase::Enable(enable))
1303 {
1304 // nothing to do
7d8268a1 1305 return false;
68df5777 1306 }
f6bcfd97 1307
81c882b6 1308 gtk_widget_set_sensitive( m_text, enable );
8caabedb 1309 SetCursor(enable ? wxCursor(wxCURSOR_IBEAM) : wxCursor());
68df5777 1310
7d8268a1 1311 return true;
68df5777
RR
1312}
1313
fdca68a6 1314// wxGTK-specific: called recursively by Enable,
47a8a4d5 1315// to give widgets an opportunity to correct their colours after they
fdca68a6 1316// have been changed by Enable
e4161a2a 1317void wxTextCtrl::OnEnabled(bool WXUNUSED(enable))
fdca68a6
JS
1318{
1319 // If we have a custom background colour, we use this colour in both
1320 // disabled and enabled mode, or we end up with a different colour under the
1321 // text.
1322 wxColour oldColour = GetBackgroundColour();
a1b806b9 1323 if (oldColour.IsOk())
fdca68a6
JS
1324 {
1325 // Need to set twice or it'll optimize the useful stuff out
1326 if (oldColour == * wxWHITE)
1327 SetBackgroundColour(*wxBLACK);
1328 else
1329 SetBackgroundColour(*wxWHITE);
1330 SetBackgroundColour(oldColour);
1331 }
1332}
1333
3a9fa0d6
VZ
1334void wxTextCtrl::MarkDirty()
1335{
7d8268a1 1336 m_modified = true;
3a9fa0d6
VZ
1337}
1338
0efe5ba7
VZ
1339void wxTextCtrl::DiscardEdits()
1340{
7d8268a1 1341 m_modified = false;
0efe5ba7
VZ
1342}
1343
ce2f50e3 1344// ----------------------------------------------------------------------------
0ec1179b 1345// event handling
ce2f50e3
VZ
1346// ----------------------------------------------------------------------------
1347
0ec1179b
VZ
1348void wxTextCtrl::EnableTextChangedEvents(bool enable)
1349{
1350 if ( enable )
1351 {
1352 g_signal_handlers_unblock_by_func(GetTextObject(),
1353 (gpointer)gtk_text_changed_callback, this);
1354 }
1355 else // disable events
1356 {
1357 g_signal_handlers_block_by_func(GetTextObject(),
1358 (gpointer)gtk_text_changed_callback, this);
1359 }
1360}
1361
ce2f50e3
VZ
1362bool wxTextCtrl::IgnoreTextUpdate()
1363{
f6519b40 1364 if ( m_countUpdatesToIgnore > 0 )
ce2f50e3 1365 {
f6519b40 1366 m_countUpdatesToIgnore--;
ce2f50e3 1367
7d8268a1 1368 return true;
ce2f50e3
VZ
1369 }
1370
7d8268a1 1371 return false;
ce2f50e3
VZ
1372}
1373
6964cbba
VZ
1374bool wxTextCtrl::MarkDirtyOnChange()
1375{
1376 if ( m_dontMarkDirty )
1377 {
1378 m_dontMarkDirty = false;
1379
1380 return false;
1381 }
1382
1383 return true;
1384}
1385
debe6624 1386void wxTextCtrl::SetSelection( long from, long to )
c801d85f 1387{
223d09f6 1388 wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") );
8bbe427f 1389
75812722 1390 if ( IsMultiLine() )
fab591c5 1391 {
6eb60628
VZ
1392 if (from == -1 && to == -1)
1393 {
1394 from = 0;
1395 to = GetValue().length();
1396 }
1397
739e366a 1398 GtkTextIter fromi, toi;
41b81aed
RR
1399 gtk_text_buffer_get_iter_at_offset( m_buffer, &fromi, from );
1400 gtk_text_buffer_get_iter_at_offset( m_buffer, &toi, to );
739e366a 1401
183b82cc 1402 gtk_text_buffer_select_range( m_buffer, &fromi, &toi );
fab591c5 1403 }
0ec1179b 1404 else // single line
fab591c5 1405 {
0ec1179b 1406 wxTextEntry::SetSelection(from, to);
fab591c5 1407 }
6de97a3b 1408}
c801d85f 1409
afbe906a 1410void wxTextCtrl::ShowPosition( long pos )
c801d85f 1411{
5a3ef194 1412 if (IsMultiLine())
afbe906a 1413 {
71aba833 1414 GtkTextIter iter;
5a3ef194
PC
1415 gtk_text_buffer_get_iter_at_offset(m_buffer, &iter, int(pos));
1416 GtkTextMark* mark = gtk_text_buffer_get_mark(m_buffer, "ShowPosition");
1417 gtk_text_buffer_move_mark(m_buffer, mark, &iter);
1418 if (IsFrozen())
1419 // defer until Thaw, text view is not using m_buffer now
1420 m_showPositionOnThaw = mark;
1421 else
1422 gtk_text_view_scroll_mark_onscreen(GTK_TEXT_VIEW(m_text), mark);
afbe906a 1423 }
6de97a3b 1424}
c801d85f 1425
692c9b86
VZ
1426wxTextCtrlHitTestResult
1427wxTextCtrl::HitTest(const wxPoint& pt, long *pos) const
1428{
1429 if ( !IsMultiLine() )
1430 {
1431 // not supported
1432 return wxTE_HT_UNKNOWN;
1433 }
1434
1435 int x, y;
1436 gtk_text_view_window_to_buffer_coords
1437 (
1438 GTK_TEXT_VIEW(m_text),
1439 GTK_TEXT_WINDOW_TEXT,
1440 pt.x, pt.y,
1441 &x, &y
1442 );
1443
1444 GtkTextIter iter;
1445 gtk_text_view_get_iter_at_location(GTK_TEXT_VIEW(m_text), &iter, x, y);
1446 if ( pos )
1447 *pos = gtk_text_iter_get_offset(&iter);
1448
1449 return wxTE_HT_ON_TEXT;
1450}
1451
03f38c58 1452long wxTextCtrl::GetInsertionPoint() const
c801d85f 1453{
223d09f6 1454 wxCHECK_MSG( m_text != NULL, 0, wxT("invalid text ctrl") );
8bbe427f 1455
75812722 1456 if ( IsMultiLine() )
fab591c5 1457 {
fab591c5
RR
1458 // There is no direct accessor for the cursor, but
1459 // internally, the cursor is the "mark" called
1460 // "insert" in the text view's btree structure.
a8bf1826 1461
41b81aed 1462 GtkTextMark *mark = gtk_text_buffer_get_insert( m_buffer );
fab591c5 1463 GtkTextIter cursor;
41b81aed 1464 gtk_text_buffer_get_iter_at_mark( m_buffer, &cursor, mark );
a8bf1826 1465
fab591c5
RR
1466 return gtk_text_iter_get_offset( &cursor );
1467 }
1468 else
fab591c5 1469 {
0ec1179b 1470 return wxTextEntry::GetInsertionPoint();
fab591c5 1471 }
6de97a3b 1472}
c801d85f 1473
7d8268a1 1474wxTextPos wxTextCtrl::GetLastPosition() const
c801d85f 1475{
223d09f6 1476 wxCHECK_MSG( m_text != NULL, 0, wxT("invalid text ctrl") );
8bbe427f 1477
2830bf19 1478 int pos = 0;
a8bf1826 1479
75812722 1480 if ( IsMultiLine() )
fab591c5 1481 {
fab591c5 1482 GtkTextIter end;
41b81aed 1483 gtk_text_buffer_get_end_iter( m_buffer, &end );
a8bf1826 1484
fab591c5 1485 pos = gtk_text_iter_get_offset( &end );
fab591c5 1486 }
0ec1179b 1487 else // single line
fab591c5 1488 {
0ec1179b 1489 pos = wxTextEntry::GetLastPosition();
fab591c5 1490 }
805dd538 1491
ac0d36b5 1492 return (long)pos;
6de97a3b 1493}
c801d85f 1494
debe6624 1495void wxTextCtrl::Remove( long from, long to )
c801d85f 1496{
223d09f6 1497 wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") );
8bbe427f 1498
75812722 1499 if ( IsMultiLine() )
581ee8a9 1500 {
581ee8a9 1501 GtkTextIter fromi, toi;
41b81aed
RR
1502 gtk_text_buffer_get_iter_at_offset( m_buffer, &fromi, from );
1503 gtk_text_buffer_get_iter_at_offset( m_buffer, &toi, to );
581ee8a9 1504
41b81aed 1505 gtk_text_buffer_delete( m_buffer, &fromi, &toi );
581ee8a9
VZ
1506 }
1507 else // single line
2df7be7f 1508 {
0ec1179b 1509 wxTextEntry::Remove(from, to);
2df7be7f 1510 }
6de97a3b 1511}
c801d85f 1512
03f38c58 1513void wxTextCtrl::Cut()
c801d85f 1514{
223d09f6 1515 wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") );
8bbe427f 1516
75812722 1517 if ( IsMultiLine() )
9fa72bd2 1518 g_signal_emit_by_name (m_text, "cut-clipboard");
bbde2e29 1519 else
0ec1179b 1520 wxTextEntry::Cut();
6de97a3b 1521}
c801d85f 1522
03f38c58 1523void wxTextCtrl::Copy()
c801d85f 1524{
223d09f6 1525 wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") );
8bbe427f 1526
75812722 1527 if ( IsMultiLine() )
9fa72bd2 1528 g_signal_emit_by_name (m_text, "copy-clipboard");
bbde2e29 1529 else
0ec1179b 1530 wxTextEntry::Copy();
6de97a3b 1531}
c801d85f 1532
03f38c58 1533void wxTextCtrl::Paste()
c801d85f 1534{
223d09f6 1535 wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") );
8bbe427f 1536
75812722 1537 if ( IsMultiLine() )
9fa72bd2 1538 g_signal_emit_by_name (m_text, "paste-clipboard");
bbde2e29 1539 else
0ec1179b 1540 wxTextEntry::Paste();
ca8b28f2
JS
1541}
1542
1543// If the return values from and to are the same, there is no
1544// selection.
2d4cc5b6 1545void wxTextCtrl::GetSelection(long* fromOut, long* toOut) const
ca8b28f2 1546{
223d09f6 1547 wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") );
bb69661b 1548
0ec1179b
VZ
1549 if ( !IsMultiLine() )
1550 {
1551 wxTextEntry::GetSelection(fromOut, toOut);
1552 return;
1553 }
1554
1555 gint from, to;
1556
1557 GtkTextIter ifrom, ito;
1558 if ( gtk_text_buffer_get_selection_bounds(m_buffer, &ifrom, &ito) )
1559 {
1560 from = gtk_text_iter_get_offset(&ifrom);
1561 to = gtk_text_iter_get_offset(&ito);
1562
1563 if ( from > to )
1564 {
1565 // exchange them to be compatible with wxMSW
1566 gint tmp = from;
1567 from = to;
1568 to = tmp;
1569 }
1570 }
1571 else // no selection
1572 {
1573 from =
1574 to = GetInsertionPoint();
1575 }
bb69661b 1576
2d4cc5b6
VZ
1577 if ( fromOut )
1578 *fromOut = from;
1579 if ( toOut )
1580 *toOut = to;
ca8b28f2
JS
1581}
1582
5b87f8bf 1583
ca8b28f2
JS
1584bool wxTextCtrl::IsEditable() const
1585{
7d8268a1 1586 wxCHECK_MSG( m_text != NULL, false, wxT("invalid text ctrl") );
05060eeb 1587
75812722 1588 if ( IsMultiLine() )
fdd55287
VZ
1589 {
1590 return gtk_text_view_get_editable(GTK_TEXT_VIEW(m_text));
1591 }
1592 else
1593 {
0ec1179b 1594 return wxTextEntry::IsEditable();
fdd55287 1595 }
ca8b28f2
JS
1596}
1597
0efe5ba7
VZ
1598bool wxTextCtrl::IsModified() const
1599{
1600 return m_modified;
1601}
1602
903f689b 1603void wxTextCtrl::OnChar( wxKeyEvent &key_event )
c801d85f 1604{
223d09f6 1605 wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") );
805dd538 1606
75812722 1607 if ( key_event.GetKeyCode() == WXK_RETURN )
da048e3d 1608 {
75812722
VZ
1609 if ( HasFlag(wxTE_PROCESS_ENTER) )
1610 {
1611 wxCommandEvent event(wxEVT_COMMAND_TEXT_ENTER, m_windowId);
1612 event.SetEventObject(this);
1613 event.SetString(GetValue());
937013e0 1614 if ( HandleWindowEvent(event) )
75812722
VZ
1615 return;
1616 }
da048e3d
RR
1617 }
1618
2830bf19 1619 key_event.Skip();
6de97a3b 1620}
c801d85f 1621
03f38c58 1622GtkWidget* wxTextCtrl::GetConnectWidget()
e3e65dac 1623{
ae0bdb01 1624 return GTK_WIDGET(m_text);
6de97a3b 1625}
e3e65dac 1626
ef5c70f9 1627GdkWindow *wxTextCtrl::GTKGetWindow(wxArrayGdkWindows& WXUNUSED(windows)) const
903f689b 1628{
75812722 1629 if ( IsMultiLine() )
fab591c5 1630 {
ef5c70f9
VZ
1631 return gtk_text_view_get_window(GTK_TEXT_VIEW(m_text),
1632 GTK_TEXT_WINDOW_TEXT );
fab591c5 1633 }
ae0bdb01 1634 else
fab591c5 1635 {
385e8575 1636 return gtk_entry_get_text_window(GTK_ENTRY(m_text));
fab591c5 1637 }
903f689b 1638}
e3e65dac 1639
bb69661b
VZ
1640// the font will change for subsequent text insertiongs
1641bool wxTextCtrl::SetFont( const wxFont &font )
868a2826 1642{
7d8268a1 1643 wxCHECK_MSG( m_text != NULL, false, wxT("invalid text ctrl") );
8bbe427f 1644
a66954a6 1645 if ( !wxTextCtrlBase::SetFont(font) )
bb69661b
VZ
1646 {
1647 // font didn't change, nothing to do
7d8268a1 1648 return false;
bb69661b
VZ
1649 }
1650
75812722 1651 if ( IsMultiLine() )
bb69661b 1652 {
7d8268a1 1653 SetUpdateFont(true);
bb69661b 1654
1ff4714d
VZ
1655 m_defaultStyle.SetFont(font);
1656
01041145 1657 ChangeFontGlobally();
bb69661b
VZ
1658 }
1659
7d8268a1 1660 return true;
58614078
RR
1661}
1662
01041145
VZ
1663void wxTextCtrl::ChangeFontGlobally()
1664{
1665 // this method is very inefficient and hence should be called as rarely as
1666 // possible!
c04ec496
VZ
1667 //
1668 // TODO: it can be implemented much more efficiently for GTK2
75812722 1669 wxASSERT_MSG( IsMultiLine(),
9a83f860 1670 wxT("shouldn't be called for single line controls") );
01041145
VZ
1671
1672 wxString value = GetValue();
7d8268a1 1673 if ( !value.empty() )
01041145 1674 {
7d8268a1 1675 SetUpdateFont(false);
572aeb77 1676
01041145
VZ
1677 Clear();
1678 AppendText(value);
01041145
VZ
1679 }
1680}
1681
17665a2b
VZ
1682bool wxTextCtrl::SetForegroundColour(const wxColour& colour)
1683{
1684 if ( !wxControl::SetForegroundColour(colour) )
7d8268a1 1685 return false;
17665a2b
VZ
1686
1687 // update default fg colour too
1688 m_defaultStyle.SetTextColour(colour);
1689
7d8268a1 1690 return true;
17665a2b
VZ
1691}
1692
f03fc89f 1693bool wxTextCtrl::SetBackgroundColour( const wxColour &colour )
68dda785 1694{
7d8268a1 1695 wxCHECK_MSG( m_text != NULL, false, wxT("invalid text ctrl") );
a81258be 1696
1f477433 1697 if ( !wxControl::SetBackgroundColour( colour ) )
7d8268a1 1698 return false;
3358d36e 1699
a1b806b9 1700 if (!m_backgroundColour.IsOk())
7d8268a1 1701 return false;
8bbe427f 1702
17665a2b
VZ
1703 // change active background color too
1704 m_defaultStyle.SetBackgroundColour( colour );
1705
7d8268a1 1706 return true;
58614078
RR
1707}
1708
eda40bfc 1709bool wxTextCtrl::SetStyle( long start, long end, const wxTextAttr& style )
17665a2b 1710{
75812722 1711 if ( IsMultiLine() )
17665a2b
VZ
1712 {
1713 if ( style.IsDefault() )
1714 {
1715 // nothing to do
7d8268a1 1716 return true;
17665a2b 1717 }
902725ee 1718
41b81aed 1719 gint l = gtk_text_buffer_get_char_count( m_buffer );
17665a2b 1720
7d8268a1 1721 wxCHECK_MSG( start >= 0 && end <= l, false,
9a83f860 1722 wxT("invalid range in wxTextCtrl::SetStyle") );
cc3da3f8
RR
1723
1724 GtkTextIter starti, endi;
41b81aed
RR
1725 gtk_text_buffer_get_iter_at_offset( m_buffer, &starti, start );
1726 gtk_text_buffer_get_iter_at_offset( m_buffer, &endi, end );
cc3da3f8 1727
7b377ed9 1728 wxGtkTextApplyTagsFromAttr( m_widget, m_buffer, style, &starti, &endi );
902725ee 1729
7d8268a1 1730 return true;
17665a2b 1731 }
7b377ed9 1732 //else: single line text controls don't support styles
902725ee 1733
902725ee 1734 return false;
17665a2b
VZ
1735}
1736
e9ee2270
VZ
1737bool wxTextCtrl::GetStyle(long position, wxTextAttr& style)
1738{
1739 if ( !IsMultiLine() )
1740 {
1741 // no styles for GtkEntry
1742 return false;
1743 }
1744
1745 gint l = gtk_text_buffer_get_char_count( m_buffer );
1746
1747 wxCHECK_MSG( position >= 0 && position <= l, false,
490e22fd 1748 wxT("invalid range in wxTextCtrl::GetStyle") );
e9ee2270
VZ
1749
1750 GtkTextIter positioni;
1751 gtk_text_buffer_get_iter_at_offset(m_buffer, &positioni, position);
1752
1753 // Obtain a copy of the default attributes
1754 GtkTextAttributes * const
1755 pattr = gtk_text_view_get_default_attributes(GTK_TEXT_VIEW(m_text));
1756 wxON_BLOCK_EXIT1( g_free, pattr );
1757
1758 // And query GTK for the attributes at the given position using it as base
1759 if ( !gtk_text_iter_get_attributes(&positioni, pattr) )
1760 {
1761 style = m_defaultStyle;
1762 }
1763 else // have custom attributes
1764 {
1765 style.SetBackgroundColour(pattr->appearance.bg_color);
1766 style.SetTextColour(pattr->appearance.fg_color);
1767
2205ca74
VZ
1768 const wxGtkString
1769 pangoFontString(pango_font_description_to_string(pattr->font));
1770
1771 wxFont font;
1772 if ( font.SetNativeFontInfo(wxString(pangoFontString)) )
1773 style.SetFont(font);
1774
1775 // TODO: set alignment, tabs and indents
e9ee2270
VZ
1776 }
1777
1778 return true;
1779}
1780
f40fdaa3 1781void wxTextCtrl::DoApplyWidgetStyle(GtkRcStyle *style)
58614078 1782{
f40fdaa3 1783 gtk_widget_modify_style(m_text, style);
68dda785 1784}
f96aa4d9 1785
e702ff0f
JS
1786void wxTextCtrl::OnCut(wxCommandEvent& WXUNUSED(event))
1787{
1788 Cut();
1789}
1790
1791void wxTextCtrl::OnCopy(wxCommandEvent& WXUNUSED(event))
1792{
1793 Copy();
1794}
1795
1796void wxTextCtrl::OnPaste(wxCommandEvent& WXUNUSED(event))
1797{
1798 Paste();
1799}
1800
1801void wxTextCtrl::OnUndo(wxCommandEvent& WXUNUSED(event))
1802{
1803 Undo();
1804}
1805
1806void wxTextCtrl::OnRedo(wxCommandEvent& WXUNUSED(event))
1807{
1808 Redo();
1809}
1810
1811void wxTextCtrl::OnUpdateCut(wxUpdateUIEvent& event)
1812{
1813 event.Enable( CanCut() );
1814}
1815
1816void wxTextCtrl::OnUpdateCopy(wxUpdateUIEvent& event)
1817{
1818 event.Enable( CanCopy() );
1819}
1820
1821void wxTextCtrl::OnUpdatePaste(wxUpdateUIEvent& event)
1822{
1823 event.Enable( CanPaste() );
1824}
1825
1826void wxTextCtrl::OnUpdateUndo(wxUpdateUIEvent& event)
1827{
1828 event.Enable( CanUndo() );
1829}
1830
1831void wxTextCtrl::OnUpdateRedo(wxUpdateUIEvent& event)
1832{
1833 event.Enable( CanRedo() );
1834}
65045edd 1835
f68586e5
VZ
1836wxSize wxTextCtrl::DoGetBestSize() const
1837{
1838 // FIXME should be different for multi-line controls...
0279e844 1839 wxSize ret( wxControl::DoGetBestSize() );
9f884528
RD
1840 wxSize best(80, ret.y);
1841 CacheBestSize(best);
1842 return best;
f68586e5 1843}
0cc7251e 1844
9cd6d737
VZ
1845// ----------------------------------------------------------------------------
1846// freeze/thaw
1847// ----------------------------------------------------------------------------
1848
17808a75 1849void wxTextCtrl::DoFreeze()
0cc7251e 1850{
442a960c
PC
1851 wxCHECK_RET(m_text != NULL, wxT("invalid text ctrl"));
1852
5f346ddc
VS
1853 wxWindow::DoFreeze();
1854
0cc7251e
VZ
1855 if ( HasFlag(wxTE_MULTILINE) )
1856 {
5f346ddc
VS
1857 GTKFreezeWidget(m_text);
1858
1859 // removing buffer dramatically speeds up insertion:
17808a75
VZ
1860 g_object_ref(m_buffer);
1861 GtkTextBuffer* buf_new = gtk_text_buffer_new(NULL);
17808a75
VZ
1862 gtk_text_view_set_buffer(GTK_TEXT_VIEW(m_text), buf_new);
1863 // gtk_text_view_set_buffer adds its own reference
1864 g_object_unref(buf_new);
385e8575
PC
1865 // These marks should be deleted when the buffer is changed,
1866 // but they are not (in GTK+ up to at least 3.0.1).
17808a75
VZ
1867 // Otherwise these anonymous marks start to build up in the buffer,
1868 // and Freeze takes longer and longer each time it is called.
385e8575
PC
1869 if (m_anonymousMarkList)
1870 {
1871 for (GSList* item = m_anonymousMarkList; item; item = item->next)
1872 {
1873 GtkTextMark* mark = static_cast<GtkTextMark*>(item->data);
1874 if (GTK_IS_TEXT_MARK(mark) && !gtk_text_mark_get_deleted(mark))
1875 gtk_text_buffer_delete_mark(m_buffer, mark);
1876 }
1877 g_slist_free(m_anonymousMarkList);
1878 m_anonymousMarkList = NULL;
1879 }
17808a75
VZ
1880 }
1881}
1882
1883void wxTextCtrl::DoThaw()
0cc7251e
VZ
1884{
1885 if ( HasFlag(wxTE_MULTILINE) )
1886 {
5f346ddc 1887 // reattach buffer:
385e8575 1888 gulong sig_id = g_signal_connect(m_buffer, "mark_set", G_CALLBACK(mark_set), &m_anonymousMarkList);
17808a75
VZ
1889 gtk_text_view_set_buffer(GTK_TEXT_VIEW(m_text), m_buffer);
1890 g_object_unref(m_buffer);
385e8575 1891 g_signal_handler_disconnect(m_buffer, sig_id);
5f346ddc 1892
17808a75 1893 if (m_showPositionOnThaw != NULL)
41b81aed 1894 {
17808a75
VZ
1895 gtk_text_view_scroll_mark_onscreen(
1896 GTK_TEXT_VIEW(m_text), m_showPositionOnThaw);
1897 m_showPositionOnThaw = NULL;
41b81aed 1898 }
5f346ddc
VS
1899
1900 // and thaw the window
1901 GTKThawWidget(m_text);
41b81aed 1902 }
5f346ddc
VS
1903
1904 wxWindow::DoThaw();
0cc7251e 1905}
9cd6d737 1906
9440c3d0
KH
1907// ----------------------------------------------------------------------------
1908// wxTextUrlEvent passing if style & wxTE_AUTO_URL
1909// ----------------------------------------------------------------------------
1910
9440c3d0
KH
1911// FIXME: when dragging on a link the sample gets an "Unknown event".
1912// This might be an excessive event from us or a buggy wxMouseEvent::Moving() or
1913// a buggy sample, or something else
1914void wxTextCtrl::OnUrlMouseEvent(wxMouseEvent& event)
1915{
1916 event.Skip();
75812722 1917 if( !HasFlag(wxTE_AUTO_URL) )
9440c3d0
KH
1918 return;
1919
1920 gint x, y;
1921 GtkTextIter start, end;
1922 GtkTextTag *tag = gtk_text_tag_table_lookup(gtk_text_buffer_get_tag_table(m_buffer),
1923 "wxUrl");
1924
1925 gtk_text_view_window_to_buffer_coords(GTK_TEXT_VIEW(m_text), GTK_TEXT_WINDOW_WIDGET,
1926 event.GetX(), event.GetY(), &x, &y);
1927
1928 gtk_text_view_get_iter_at_location(GTK_TEXT_VIEW(m_text), &end, x, y);
1929 if (!gtk_text_iter_has_tag(&end, tag))
1930 {
c2246a38 1931 SetCursor(wxCursor(wxCURSOR_IBEAM));
9440c3d0
KH
1932 return;
1933 }
1934
c2246a38 1935 SetCursor(wxCursor(wxCURSOR_HAND));
9440c3d0
KH
1936
1937 start = end;
1938 if(!gtk_text_iter_begins_tag(&start, tag))
1939 gtk_text_iter_backward_to_tag_toggle(&start, tag);
1940 if(!gtk_text_iter_ends_tag(&end, tag))
1941 gtk_text_iter_forward_to_tag_toggle(&end, tag);
1942
1943 // Native context menu is probably not desired on an URL.
1944 // Consider making this dependant on ProcessEvent(wxTextUrlEvent) return value
1945 if(event.GetEventType() == wxEVT_RIGHT_DOWN)
1946 event.Skip(false);
1947
1948 wxTextUrlEvent url_event(m_windowId, event,
1949 gtk_text_iter_get_offset(&start),
1950 gtk_text_iter_get_offset(&end));
1951
1952 InitCommandEvent(url_event);
1953 // Is that a good idea? Seems not (pleasure with gtk_text_view_start_selection_drag)
937013e0
VS
1954 //event.Skip(!HandleWindowEvent(url_event));
1955 HandleWindowEvent(url_event);
9440c3d0 1956}
9440c3d0 1957
8312c461
VZ
1958bool wxTextCtrl::GTKProcessEvent(wxEvent& event) const
1959{
1960 bool rc = wxTextCtrlBase::GTKProcessEvent(event);
1961
1962 // GtkTextView starts a drag operation when left mouse button is pressed
1963 // and ends it when it is released and if it doesn't get the release event
1964 // the next click on a control results in an assertion failure inside
1965 // gtk_text_view_start_selection_drag() which simply *kills* the program
1966 // without anything we can do about it, so always let GTK+ have this event
1967 return rc && (IsSingleLine() || event.GetEventType() != wxEVT_LEFT_UP);
1968}
1969
9d522606
RD
1970// static
1971wxVisualAttributes
1972wxTextCtrl::GetClassDefaultAttributes(wxWindowVariant WXUNUSED(variant))
1973{
1974 return GetDefaultAttributesFromGTKWidget(gtk_entry_new, true);
1975}
28fcfbfe
VZ
1976
1977#endif // wxUSE_TEXTCTRL