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