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