]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: src/gtk/textctrl.cpp | |
3 | // Purpose: | |
4 | // Author: Robert Roebling | |
5 | // Id: $Id$ | |
6 | // Copyright: (c) 1998 Robert Roebling, Vadim Zeitlin, 2005 Mart Raudsepp | |
7 | // Licence: wxWindows licence | |
8 | ///////////////////////////////////////////////////////////////////////////// | |
9 | ||
10 | // For compilers that support precompilation, includes "wx.h". | |
11 | #include "wx/wxprec.h" | |
12 | ||
13 | #include "wx/textctrl.h" | |
14 | ||
15 | #ifndef WX_PRECOMP | |
16 | #include "wx/intl.h" | |
17 | #include "wx/log.h" | |
18 | #include "wx/utils.h" | |
19 | #include "wx/settings.h" | |
20 | #include "wx/math.h" | |
21 | #endif | |
22 | ||
23 | #include "wx/strconv.h" | |
24 | #include "wx/fontutil.h" // for wxNativeFontInfo (GetNativeFontInfo()) | |
25 | ||
26 | #include <sys/types.h> | |
27 | #include <sys/stat.h> | |
28 | #include <ctype.h> | |
29 | ||
30 | #include "wx/gtk/private.h" | |
31 | ||
32 | // ---------------------------------------------------------------------------- | |
33 | // helpers | |
34 | // ---------------------------------------------------------------------------- | |
35 | ||
36 | extern "C" { | |
37 | static void wxGtkOnRemoveTag(GtkTextBuffer *buffer, | |
38 | GtkTextTag *tag, | |
39 | GtkTextIter *start, | |
40 | GtkTextIter *end, | |
41 | char *prefix) | |
42 | { | |
43 | gchar *name; | |
44 | g_object_get (tag, "name", &name, NULL); | |
45 | ||
46 | if (!name || strncmp(name, prefix, strlen(prefix))) | |
47 | // anonymous tag or not starting with prefix - don't remove | |
48 | g_signal_stop_emission_by_name (buffer, "remove_tag"); | |
49 | ||
50 | g_free(name); | |
51 | } | |
52 | } | |
53 | ||
54 | static void wxGtkTextApplyTagsFromAttr(GtkWidget *text, | |
55 | GtkTextBuffer *text_buffer, | |
56 | const wxTextAttr& attr, | |
57 | GtkTextIter *start, | |
58 | GtkTextIter *end) | |
59 | { | |
60 | static gchar buf[1024]; | |
61 | GtkTextTag *tag; | |
62 | ||
63 | gulong remove_handler_id = g_signal_connect (text_buffer, "remove_tag", | |
64 | G_CALLBACK (wxGtkOnRemoveTag), gpointer("WX")); | |
65 | gtk_text_buffer_remove_all_tags(text_buffer, start, end); | |
66 | g_signal_handler_disconnect (text_buffer, remove_handler_id); | |
67 | ||
68 | if (attr.HasFont()) | |
69 | { | |
70 | PangoFontDescription *font_description = attr.GetFont().GetNativeFontInfo()->description; | |
71 | wxGtkString font_string(pango_font_description_to_string(font_description)); | |
72 | g_snprintf(buf, sizeof(buf), "WXFONT %s", font_string.c_str()); | |
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); | |
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 | } | |
93 | } | |
94 | ||
95 | if (attr.HasTextColour()) | |
96 | { | |
97 | const GdkColor *colFg = attr.GetTextColour().GetColor(); | |
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 | { | |
110 | const GdkColor *colBg = attr.GetBackgroundColour().GetColor(); | |
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 | } | |
120 | ||
121 | if (attr.HasAlignment()) | |
122 | { | |
123 | GtkTextIter para_start, para_end = *end; | |
124 | gtk_text_buffer_get_iter_at_line( text_buffer, | |
125 | ¶_start, | |
126 | gtk_text_iter_get_line(start) ); | |
127 | gtk_text_iter_forward_line(¶_end); | |
128 | ||
129 | remove_handler_id = g_signal_connect (text_buffer, "remove_tag", | |
130 | G_CALLBACK(wxGtkOnRemoveTag), | |
131 | gpointer("WXALIGNMENT")); | |
132 | gtk_text_buffer_remove_all_tags( text_buffer, ¶_start, ¶_end ); | |
133 | g_signal_handler_disconnect (text_buffer, remove_handler_id); | |
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, ¶_start, ¶_end ); | |
157 | } | |
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 | ¶_start, | |
167 | gtk_text_iter_get_line(start) ); | |
168 | gtk_text_iter_forward_line(¶_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, ¶_start, ¶_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, ¶_start, ¶_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 | ¶_start, | |
220 | gtk_text_iter_get_line(start) ); | |
221 | gtk_text_iter_forward_line(¶_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, ¶_start, ¶_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, ¶_start, ¶_end); | |
260 | } | |
261 | } | |
262 | ||
263 | static void wxGtkTextInsert(GtkWidget *text, | |
264 | GtkTextBuffer *text_buffer, | |
265 | const wxTextAttr& attr, | |
266 | const wxCharBuffer& buffer) | |
267 | ||
268 | { | |
269 | gint start_offset; | |
270 | GtkTextIter iter, start; | |
271 | ||
272 | gtk_text_buffer_get_iter_at_mark( text_buffer, &iter, | |
273 | gtk_text_buffer_get_insert (text_buffer) ); | |
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); | |
278 | ||
279 | wxGtkTextApplyTagsFromAttr(text, text_buffer, attr, &start, &iter); | |
280 | } | |
281 | ||
282 | // ---------------------------------------------------------------------------- | |
283 | // "insert_text" for GtkEntry | |
284 | // ---------------------------------------------------------------------------- | |
285 | ||
286 | extern "C" { | |
287 | static void | |
288 | gtk_insert_text_callback(GtkEditable *editable, | |
289 | const gchar *new_text, | |
290 | gint new_text_length, | |
291 | gint *position, | |
292 | wxTextCtrl *win) | |
293 | { | |
294 | if (g_isIdle) | |
295 | wxapp_install_idle_handler(); | |
296 | ||
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 | |
309 | g_signal_stop_emission_by_name (editable, "insert_text"); | |
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 | } | |
322 | } | |
323 | ||
324 | // Implementation of wxTE_AUTO_URL for wxGTK2 by Mart Raudsepp, | |
325 | ||
326 | extern "C" { | |
327 | static void | |
328 | au_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")) | |
335 | g_signal_stop_emission_by_name (buffer, "apply_tag"); | |
336 | } | |
337 | } | |
338 | ||
339 | //----------------------------------------------------------------------------- | |
340 | // GtkTextCharPredicates for gtk_text_iter_*_find_char | |
341 | //----------------------------------------------------------------------------- | |
342 | ||
343 | extern "C" { | |
344 | static gboolean | |
345 | pred_whitespace (gunichar ch, gpointer user_data) | |
346 | { | |
347 | return g_unichar_isspace(ch); | |
348 | } | |
349 | } | |
350 | ||
351 | extern "C" { | |
352 | static gboolean | |
353 | pred_non_whitespace (gunichar ch, gpointer user_data) | |
354 | { | |
355 | return !g_unichar_isspace(ch); | |
356 | } | |
357 | } | |
358 | ||
359 | extern "C" { | |
360 | static gboolean | |
361 | pred_nonpunct (gunichar ch, gpointer user_data) | |
362 | { | |
363 | return !g_unichar_ispunct(ch); | |
364 | } | |
365 | } | |
366 | ||
367 | extern "C" { | |
368 | static gboolean | |
369 | pred_nonpunct_or_slash (gunichar ch, gpointer user_data) | |
370 | { | |
371 | return !g_unichar_ispunct(ch) || ch == '/'; | |
372 | } | |
373 | } | |
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. | |
381 | extern "C" { | |
382 | static void | |
383 | au_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); | |
405 | ||
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 | { | |
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); | |
435 | ||
436 | g_signal_handler_block (buffer, signal_id); | |
437 | gtk_text_buffer_apply_tag(buffer, tag, &start, &end); | |
438 | g_signal_handler_unblock (buffer, signal_id); | |
439 | } | |
440 | } | |
441 | } | |
442 | ||
443 | extern "C" { | |
444 | static void | |
445 | au_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 | } | |
470 | } | |
471 | ||
472 | //----------------------------------------------------------------------------- | |
473 | // "insert-text" for GtkTextBuffer | |
474 | //----------------------------------------------------------------------------- | |
475 | ||
476 | extern "C" { | |
477 | static void | |
478 | au_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 | } | |
502 | } | |
503 | ||
504 | //----------------------------------------------------------------------------- | |
505 | // "delete-range" for GtkTextBuffer | |
506 | //----------------------------------------------------------------------------- | |
507 | ||
508 | extern "C" { | |
509 | static void | |
510 | au_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 | } | |
527 | } | |
528 | ||
529 | ||
530 | //----------------------------------------------------------------------------- | |
531 | // "changed" | |
532 | //----------------------------------------------------------------------------- | |
533 | ||
534 | extern "C" { | |
535 | static void | |
536 | gtk_text_changed_callback( GtkWidget *widget, wxTextCtrl *win ) | |
537 | { | |
538 | if ( win->IgnoreTextUpdate() ) | |
539 | return; | |
540 | ||
541 | if (!win->m_hasVMT) return; | |
542 | ||
543 | if (g_isIdle) | |
544 | wxapp_install_idle_handler(); | |
545 | ||
546 | if ( win->MarkDirtyOnChange() ) | |
547 | win->MarkDirty(); | |
548 | ||
549 | win->SendTextUpdatedEvent(); | |
550 | } | |
551 | } | |
552 | ||
553 | //----------------------------------------------------------------------------- | |
554 | // clipboard events: "copy-clipboard", "cut-clipboard", "paste-clipboard" | |
555 | //----------------------------------------------------------------------------- | |
556 | ||
557 | // common part of the event handlers below | |
558 | static void | |
559 | handle_text_clipboard_callback( GtkWidget *widget, wxTextCtrl *win, | |
560 | wxEventType eventType, const gchar * signal_name) | |
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 | |
568 | g_signal_stop_emission_by_name (widget, signal_name); | |
569 | } | |
570 | } | |
571 | ||
572 | extern "C" { | |
573 | static void | |
574 | gtk_copy_clipboard_callback( GtkWidget *widget, wxTextCtrl *win ) | |
575 | { | |
576 | handle_text_clipboard_callback( | |
577 | widget, win, wxEVT_COMMAND_TEXT_COPY, "copy-clipboard" ); | |
578 | } | |
579 | ||
580 | static void | |
581 | gtk_cut_clipboard_callback( GtkWidget *widget, wxTextCtrl *win ) | |
582 | { | |
583 | handle_text_clipboard_callback( | |
584 | widget, win, wxEVT_COMMAND_TEXT_CUT, "cut-clipboard" ); | |
585 | } | |
586 | ||
587 | static void | |
588 | gtk_paste_clipboard_callback( GtkWidget *widget, wxTextCtrl *win ) | |
589 | { | |
590 | handle_text_clipboard_callback( | |
591 | widget, win, wxEVT_COMMAND_TEXT_PASTE, "paste-clipboard" ); | |
592 | } | |
593 | } | |
594 | ||
595 | //----------------------------------------------------------------------------- | |
596 | // "expose_event" from scrolled window and textview | |
597 | //----------------------------------------------------------------------------- | |
598 | ||
599 | extern "C" { | |
600 | static gboolean | |
601 | gtk_text_exposed_callback( GtkWidget *widget, GdkEventExpose *event, wxTextCtrl *win ) | |
602 | { | |
603 | return TRUE; | |
604 | } | |
605 | } | |
606 | ||
607 | ||
608 | //----------------------------------------------------------------------------- | |
609 | // wxTextCtrl | |
610 | //----------------------------------------------------------------------------- | |
611 | ||
612 | IMPLEMENT_DYNAMIC_CLASS(wxTextCtrl, wxTextCtrlBase) | |
613 | ||
614 | BEGIN_EVENT_TABLE(wxTextCtrl, wxTextCtrlBase) | |
615 | EVT_CHAR(wxTextCtrl::OnChar) | |
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) | |
628 | ||
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) | |
638 | END_EVENT_TABLE() | |
639 | ||
640 | void wxTextCtrl::Init() | |
641 | { | |
642 | m_dontMarkDirty = | |
643 | m_modified = false; | |
644 | ||
645 | m_countUpdatesToIgnore = 0; | |
646 | ||
647 | SetUpdateFont(false); | |
648 | ||
649 | m_text = NULL; | |
650 | m_freezeCount = 0; | |
651 | m_showPositionOnThaw = NULL; | |
652 | m_gdkHandCursor = NULL; | |
653 | m_gdkXTermCursor = NULL; | |
654 | } | |
655 | ||
656 | wxTextCtrl::~wxTextCtrl() | |
657 | { | |
658 | if(m_gdkHandCursor) | |
659 | gdk_cursor_unref(m_gdkHandCursor); | |
660 | if(m_gdkXTermCursor) | |
661 | gdk_cursor_unref(m_gdkXTermCursor); | |
662 | } | |
663 | ||
664 | wxTextCtrl::wxTextCtrl( wxWindow *parent, | |
665 | wxWindowID id, | |
666 | const wxString &value, | |
667 | const wxPoint &pos, | |
668 | const wxSize &size, | |
669 | long style, | |
670 | const wxValidator& validator, | |
671 | const wxString &name ) | |
672 | { | |
673 | Init(); | |
674 | ||
675 | Create( parent, id, value, pos, size, style, validator, name ); | |
676 | } | |
677 | ||
678 | bool wxTextCtrl::Create( wxWindow *parent, | |
679 | wxWindowID id, | |
680 | const wxString &value, | |
681 | const wxPoint &pos, | |
682 | const wxSize &size, | |
683 | long style, | |
684 | const wxValidator& validator, | |
685 | const wxString &name ) | |
686 | { | |
687 | m_needParent = true; | |
688 | ||
689 | if (!PreCreation( parent, pos, size ) || | |
690 | !CreateBase( parent, id, pos, size, style, validator, name )) | |
691 | { | |
692 | wxFAIL_MSG( wxT("wxTextCtrl creation failed") ); | |
693 | return false; | |
694 | } | |
695 | ||
696 | bool multi_line = (style & wxTE_MULTILINE) != 0; | |
697 | ||
698 | if (multi_line) | |
699 | { | |
700 | // Create view | |
701 | m_text = gtk_text_view_new(); | |
702 | ||
703 | m_buffer = gtk_text_view_get_buffer( GTK_TEXT_VIEW(m_text) ); | |
704 | ||
705 | // create "ShowPosition" marker | |
706 | GtkTextIter iter; | |
707 | gtk_text_buffer_get_start_iter(m_buffer, &iter); | |
708 | gtk_text_buffer_create_mark(m_buffer, "ShowPosition", &iter, true); | |
709 | ||
710 | // create scrolled window | |
711 | m_widget = gtk_scrolled_window_new( NULL, NULL ); | |
712 | gtk_scrolled_window_set_policy( GTK_SCROLLED_WINDOW( m_widget ), | |
713 | GTK_POLICY_AUTOMATIC, | |
714 | style & wxTE_NO_VSCROLL | |
715 | ? GTK_POLICY_NEVER | |
716 | : GTK_POLICY_AUTOMATIC ); | |
717 | // for ScrollLines/Pages | |
718 | m_scrollBar[1] = (GtkRange*)((GtkScrolledWindow*)m_widget)->vscrollbar; | |
719 | ||
720 | // Insert view into scrolled window | |
721 | gtk_container_add( GTK_CONTAINER(m_widget), m_text ); | |
722 | ||
723 | GTKSetWrapMode(); | |
724 | ||
725 | GtkScrolledWindowSetBorder(m_widget, style); | |
726 | ||
727 | gtk_widget_add_events( GTK_WIDGET(m_text), GDK_ENTER_NOTIFY_MASK | GDK_LEAVE_NOTIFY_MASK ); | |
728 | ||
729 | GTK_WIDGET_UNSET_FLAGS( m_widget, GTK_CAN_FOCUS ); | |
730 | } | |
731 | else | |
732 | { | |
733 | // a single-line text control: no need for scrollbars | |
734 | m_widget = | |
735 | m_text = gtk_entry_new(); | |
736 | ||
737 | if (style & wxNO_BORDER) | |
738 | g_object_set (m_text, "has-frame", FALSE, NULL); | |
739 | } | |
740 | ||
741 | m_parent->DoAddChild( this ); | |
742 | ||
743 | m_focusWidget = m_text; | |
744 | ||
745 | PostCreation(size); | |
746 | ||
747 | if (multi_line) | |
748 | { | |
749 | gtk_widget_show(m_text); | |
750 | } | |
751 | ||
752 | if (!value.empty()) | |
753 | { | |
754 | SetValue( value ); | |
755 | } | |
756 | ||
757 | if (style & wxTE_PASSWORD) | |
758 | GTKSetVisibility(); | |
759 | ||
760 | if (style & wxTE_READONLY) | |
761 | GTKSetEditable(); | |
762 | ||
763 | // left justification (alignment) is the default anyhow | |
764 | if ( style & (wxTE_RIGHT | wxTE_CENTRE) ) | |
765 | GTKSetJustification(); | |
766 | ||
767 | // We want to be notified about text changes. | |
768 | if (multi_line) | |
769 | { | |
770 | g_signal_connect (m_buffer, "changed", | |
771 | G_CALLBACK (gtk_text_changed_callback), this); | |
772 | ||
773 | // .. and handle URLs on multi-line controls with wxTE_AUTO_URL style | |
774 | if (style & wxTE_AUTO_URL) | |
775 | { | |
776 | GtkTextIter start, end; | |
777 | m_gdkHandCursor = gdk_cursor_new(GDK_HAND2); | |
778 | m_gdkXTermCursor = gdk_cursor_new(GDK_XTERM); | |
779 | ||
780 | // We create our wxUrl tag here for slight efficiency gain - we | |
781 | // don't have to check for the tag existance in callbacks, | |
782 | // hereby it's guaranteed to exist. | |
783 | gtk_text_buffer_create_tag(m_buffer, "wxUrl", | |
784 | "foreground", "blue", | |
785 | "underline", PANGO_UNDERLINE_SINGLE, | |
786 | NULL); | |
787 | ||
788 | // Check for URLs after each text change | |
789 | g_signal_connect_after (m_buffer, "insert_text", | |
790 | G_CALLBACK (au_insert_text_callback), this); | |
791 | g_signal_connect_after (m_buffer, "delete_range", | |
792 | G_CALLBACK (au_delete_range_callback), this); | |
793 | ||
794 | // Block all wxUrl tag applying unless we do it ourselves, in which case we | |
795 | // block this callback temporarily. This takes care of gtk+ internal | |
796 | // gtk_text_buffer_insert_range* calls that would copy our URL tag otherwise, | |
797 | // which is undesired because only a part of the URL might be copied. | |
798 | // The insert-text signal emitted inside it will take care of newly formed | |
799 | // or wholly copied URLs. | |
800 | g_signal_connect (m_buffer, "apply_tag", | |
801 | G_CALLBACK (au_apply_tag_callback), NULL); | |
802 | ||
803 | // Check for URLs in the initial string passed to Create | |
804 | gtk_text_buffer_get_start_iter(m_buffer, &start); | |
805 | gtk_text_buffer_get_end_iter(m_buffer, &end); | |
806 | au_check_range(&start, &end); | |
807 | } | |
808 | } | |
809 | else | |
810 | { | |
811 | g_signal_connect (m_text, "changed", | |
812 | G_CALLBACK (gtk_text_changed_callback), this); | |
813 | } | |
814 | ||
815 | g_signal_connect (m_text, "copy-clipboard", | |
816 | G_CALLBACK (gtk_copy_clipboard_callback), this); | |
817 | g_signal_connect (m_text, "cut-clipboard", | |
818 | G_CALLBACK (gtk_cut_clipboard_callback), this); | |
819 | g_signal_connect (m_text, "paste-clipboard", | |
820 | G_CALLBACK (gtk_paste_clipboard_callback), this); | |
821 | ||
822 | m_cursor = wxCursor( wxCURSOR_IBEAM ); | |
823 | ||
824 | wxTextAttr attrDef(GetForegroundColour(), GetBackgroundColour(), GetFont()); | |
825 | SetDefaultStyle( attrDef ); | |
826 | ||
827 | return true; | |
828 | } | |
829 | ||
830 | // ---------------------------------------------------------------------------- | |
831 | // flags handling | |
832 | // ---------------------------------------------------------------------------- | |
833 | ||
834 | void wxTextCtrl::GTKSetEditable() | |
835 | { | |
836 | gboolean editable = !HasFlag(wxTE_READONLY); | |
837 | if ( IsSingleLine() ) | |
838 | gtk_editable_set_editable(GTK_EDITABLE(m_text), editable); | |
839 | else | |
840 | gtk_text_view_set_editable(GTK_TEXT_VIEW(m_text), editable); | |
841 | } | |
842 | ||
843 | void wxTextCtrl::GTKSetVisibility() | |
844 | { | |
845 | // VZ: shouldn't we assert if wxTE_PASSWORD is set for multiline control? | |
846 | if ( IsSingleLine() ) | |
847 | gtk_entry_set_visibility(GTK_ENTRY(m_text), !HasFlag(wxTE_PASSWORD)); | |
848 | } | |
849 | ||
850 | void wxTextCtrl::GTKSetWrapMode() | |
851 | { | |
852 | // no wrapping in single line controls | |
853 | if ( !IsMultiLine() ) | |
854 | return; | |
855 | ||
856 | // translate wx wrapping style to GTK+ | |
857 | GtkWrapMode wrap; | |
858 | if ( HasFlag( wxTE_DONTWRAP ) ) | |
859 | wrap = GTK_WRAP_NONE; | |
860 | else if ( HasFlag( wxTE_CHARWRAP ) ) | |
861 | wrap = GTK_WRAP_CHAR; | |
862 | else if ( HasFlag( wxTE_WORDWRAP ) ) | |
863 | wrap = GTK_WRAP_WORD; | |
864 | else // HasFlag(wxTE_BESTWRAP) always true as wxTE_BESTWRAP == 0 | |
865 | { | |
866 | // GTK_WRAP_WORD_CHAR seems to be new in GTK+ 2.4 | |
867 | #ifdef __WXGTK24__ | |
868 | if ( !gtk_check_version(2,4,0) ) | |
869 | { | |
870 | wrap = GTK_WRAP_WORD_CHAR; | |
871 | } | |
872 | else | |
873 | #endif // __WXGTK24__ | |
874 | wrap = GTK_WRAP_WORD; | |
875 | } | |
876 | ||
877 | gtk_text_view_set_wrap_mode( GTK_TEXT_VIEW( m_text ), wrap ); | |
878 | } | |
879 | ||
880 | void wxTextCtrl::GTKSetJustification() | |
881 | { | |
882 | if ( IsMultiLine() ) | |
883 | { | |
884 | GtkJustification just; | |
885 | if ( HasFlag(wxTE_RIGHT) ) | |
886 | just = GTK_JUSTIFY_RIGHT; | |
887 | else if ( HasFlag(wxTE_CENTRE) ) | |
888 | just = GTK_JUSTIFY_CENTER; | |
889 | else // wxTE_LEFT == 0 | |
890 | just = GTK_JUSTIFY_LEFT; | |
891 | ||
892 | gtk_text_view_set_justification(GTK_TEXT_VIEW(m_text), just); | |
893 | } | |
894 | else // single line | |
895 | { | |
896 | #ifdef __WXGTK24__ | |
897 | // gtk_entry_set_alignment was introduced in gtk+-2.3.5 | |
898 | if (!gtk_check_version(2,4,0)) | |
899 | { | |
900 | gfloat align; | |
901 | if ( HasFlag(wxTE_RIGHT) ) | |
902 | align = 1.0; | |
903 | else if ( HasFlag(wxTE_CENTRE) ) | |
904 | align = 0.5; | |
905 | else // single line | |
906 | align = 0.0; | |
907 | ||
908 | gtk_entry_set_alignment(GTK_ENTRY(m_text), align); | |
909 | } | |
910 | #endif // __WXGTK24__ | |
911 | } | |
912 | ||
913 | } | |
914 | ||
915 | void wxTextCtrl::SetWindowStyleFlag(long style) | |
916 | { | |
917 | long styleOld = GetWindowStyleFlag(); | |
918 | ||
919 | wxTextCtrlBase::SetWindowStyleFlag(style); | |
920 | ||
921 | if ( (style & wxTE_READONLY) != (styleOld & wxTE_READONLY) ) | |
922 | GTKSetEditable(); | |
923 | ||
924 | if ( (style & wxTE_PASSWORD) != (styleOld & wxTE_PASSWORD) ) | |
925 | GTKSetVisibility(); | |
926 | ||
927 | static const long flagsWrap = wxTE_WORDWRAP | wxTE_CHARWRAP | wxTE_DONTWRAP; | |
928 | if ( (style & flagsWrap) != (styleOld & flagsWrap) ) | |
929 | GTKSetWrapMode(); | |
930 | ||
931 | static const long flagsAlign = wxTE_LEFT | wxTE_CENTRE | wxTE_RIGHT; | |
932 | if ( (style & flagsAlign) != (styleOld & flagsAlign) ) | |
933 | GTKSetJustification(); | |
934 | } | |
935 | ||
936 | // ---------------------------------------------------------------------------- | |
937 | // control value | |
938 | // ---------------------------------------------------------------------------- | |
939 | ||
940 | wxString wxTextCtrl::GetValue() const | |
941 | { | |
942 | wxCHECK_MSG( m_text != NULL, wxEmptyString, wxT("invalid text ctrl") ); | |
943 | ||
944 | wxString tmp; | |
945 | if ( IsMultiLine() ) | |
946 | { | |
947 | GtkTextIter start; | |
948 | gtk_text_buffer_get_start_iter( m_buffer, &start ); | |
949 | GtkTextIter end; | |
950 | gtk_text_buffer_get_end_iter( m_buffer, &end ); | |
951 | wxGtkString text(gtk_text_buffer_get_text(m_buffer, &start, &end, true)); | |
952 | ||
953 | const wxWxCharBuffer buf = wxGTK_CONV_BACK(text); | |
954 | if ( buf ) | |
955 | tmp = buf; | |
956 | } | |
957 | else | |
958 | { | |
959 | const gchar *text = gtk_entry_get_text( GTK_ENTRY(m_text) ); | |
960 | const wxWxCharBuffer buf = wxGTK_CONV_BACK( text ); | |
961 | if ( buf ) | |
962 | tmp = buf; | |
963 | } | |
964 | ||
965 | return tmp; | |
966 | } | |
967 | ||
968 | wxFontEncoding wxTextCtrl::GetTextEncoding() const | |
969 | { | |
970 | // GTK+ uses UTF-8 internally, we need to convert to it but from which | |
971 | // encoding? | |
972 | ||
973 | // first check the default text style (we intentionally don't check the | |
974 | // style for the current position as it doesn't make sense for SetValue()) | |
975 | const wxTextAttr& style = GetDefaultStyle(); | |
976 | wxFontEncoding enc = style.HasFont() ? style.GetFont().GetEncoding() | |
977 | : wxFONTENCODING_SYSTEM; | |
978 | ||
979 | // fall back to the controls font if no style | |
980 | if ( enc == wxFONTENCODING_SYSTEM && m_hasFont ) | |
981 | enc = GetFont().GetEncoding(); | |
982 | ||
983 | return enc; | |
984 | } | |
985 | ||
986 | bool wxTextCtrl::IsEmpty() const | |
987 | { | |
988 | if ( IsMultiLine() ) | |
989 | return gtk_text_buffer_get_char_count(m_buffer) == 0; | |
990 | ||
991 | return wxTextCtrlBase::IsEmpty(); | |
992 | } | |
993 | ||
994 | void wxTextCtrl::DoSetValue( const wxString &value, int flags ) | |
995 | { | |
996 | wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") ); | |
997 | ||
998 | // the control won't be modified any more as we programmatically replace | |
999 | // all the existing text, so reset the flag and don't set it again (and do | |
1000 | // it now, before the text event handler is ran so that IsModified() called | |
1001 | // from there returns the expected value) | |
1002 | m_modified = false; | |
1003 | DontMarkDirtyOnNextChange(); | |
1004 | ||
1005 | wxFontEncoding enc = m_defaultStyle.HasFont() | |
1006 | ? m_defaultStyle.GetFont().GetEncoding() | |
1007 | : wxFONTENCODING_SYSTEM; | |
1008 | if ( enc == wxFONTENCODING_SYSTEM ) | |
1009 | enc = GetTextEncoding(); | |
1010 | ||
1011 | const wxCharBuffer buffer(wxGTK_CONV_ENC(value, enc)); | |
1012 | if ( !buffer ) | |
1013 | { | |
1014 | // see comment in WriteText() as to why we must warn the user about | |
1015 | // this | |
1016 | wxLogWarning(_("Failed to set text in the text control.")); | |
1017 | return; | |
1018 | } | |
1019 | ||
1020 | // if the control is not empty, two "changed" signals are emitted, | |
1021 | // otherwise only one and we need to ignore either both or one of them | |
1022 | int ignore = flags & SetValue_SendEvent ? 0 : 1; | |
1023 | if ( !IsEmpty() ) | |
1024 | ignore++; | |
1025 | ||
1026 | if ( ignore ) | |
1027 | IgnoreNextTextUpdate(ignore); | |
1028 | ||
1029 | if ( IsMultiLine() ) | |
1030 | { | |
1031 | gtk_text_buffer_set_text( m_buffer, buffer, strlen(buffer) ); | |
1032 | ||
1033 | if ( !m_defaultStyle.IsDefault() ) | |
1034 | { | |
1035 | GtkTextIter start, end; | |
1036 | gtk_text_buffer_get_bounds( m_buffer, &start, &end ); | |
1037 | wxGtkTextApplyTagsFromAttr(m_widget, m_buffer, m_defaultStyle, | |
1038 | &start, &end); | |
1039 | } | |
1040 | } | |
1041 | else // single line | |
1042 | { | |
1043 | gtk_entry_set_text( GTK_ENTRY(m_text), buffer ); | |
1044 | } | |
1045 | ||
1046 | // if, for whatever reason, the callback wasn't called the expected number | |
1047 | // of times, still reset the flags to the default values | |
1048 | m_dontMarkDirty = false; | |
1049 | m_countUpdatesToIgnore = 0; | |
1050 | ||
1051 | ||
1052 | // GRG, Jun/2000: Changed this after a lot of discussion in | |
1053 | // the lists. wxWidgets 2.2 will have a set of flags to | |
1054 | // customize this behaviour. | |
1055 | SetInsertionPoint(0); | |
1056 | } | |
1057 | ||
1058 | void wxTextCtrl::WriteText( const wxString &text ) | |
1059 | { | |
1060 | wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") ); | |
1061 | ||
1062 | if ( text.empty() ) | |
1063 | return; | |
1064 | ||
1065 | // check if we have a specific style for the current position | |
1066 | wxFontEncoding enc = wxFONTENCODING_SYSTEM; | |
1067 | wxTextAttr style; | |
1068 | if ( GetStyle(GetInsertionPoint(), style) && style.HasFont() ) | |
1069 | { | |
1070 | enc = style.GetFont().GetEncoding(); | |
1071 | } | |
1072 | ||
1073 | if ( enc == wxFONTENCODING_SYSTEM ) | |
1074 | enc = GetTextEncoding(); | |
1075 | ||
1076 | const wxCharBuffer buffer(wxGTK_CONV_ENC(text, enc)); | |
1077 | if ( !buffer ) | |
1078 | { | |
1079 | // we must log an error here as losing the text like this can be a | |
1080 | // serious problem (e.g. imagine the document edited by user being | |
1081 | // empty instead of containing the correct text) | |
1082 | wxLogWarning(_("Failed to insert text in the control.")); | |
1083 | return; | |
1084 | } | |
1085 | ||
1086 | // we're changing the text programmatically | |
1087 | DontMarkDirtyOnNextChange(); | |
1088 | ||
1089 | if ( IsMultiLine() ) | |
1090 | { | |
1091 | // First remove the selection if there is one | |
1092 | // TODO: Is there an easier GTK specific way to do this? | |
1093 | long from, to; | |
1094 | GetSelection(&from, &to); | |
1095 | if (from != to) | |
1096 | Remove(from, to); | |
1097 | ||
1098 | // Insert the text | |
1099 | wxGtkTextInsert( m_text, m_buffer, m_defaultStyle, buffer ); | |
1100 | ||
1101 | GtkAdjustment *adj = gtk_scrolled_window_get_vadjustment( GTK_SCROLLED_WINDOW(m_widget) ); | |
1102 | // Scroll to cursor, but only if scrollbar thumb is at the very bottom | |
1103 | // won't work when frozen, text view is not using m_buffer then | |
1104 | if (!IsFrozen() && wxIsSameDouble(adj->value, adj->upper - adj->page_size)) | |
1105 | { | |
1106 | gtk_text_view_scroll_to_mark( GTK_TEXT_VIEW(m_text), | |
1107 | gtk_text_buffer_get_insert( m_buffer ), 0.0, FALSE, 0.0, 1.0 ); | |
1108 | } | |
1109 | } | |
1110 | else // single line | |
1111 | { | |
1112 | // First remove the selection if there is one | |
1113 | gtk_editable_delete_selection( GTK_EDITABLE(m_text) ); | |
1114 | ||
1115 | // This moves the cursor pos to behind the inserted text. | |
1116 | gint len = gtk_editable_get_position(GTK_EDITABLE(m_text)); | |
1117 | ||
1118 | gtk_editable_insert_text( GTK_EDITABLE(m_text), buffer, strlen(buffer), &len ); | |
1119 | ||
1120 | // Bring entry's cursor uptodate. | |
1121 | gtk_editable_set_position( GTK_EDITABLE(m_text), len ); | |
1122 | } | |
1123 | } | |
1124 | ||
1125 | void wxTextCtrl::AppendText( const wxString &text ) | |
1126 | { | |
1127 | SetInsertionPointEnd(); | |
1128 | WriteText( text ); | |
1129 | } | |
1130 | ||
1131 | wxString wxTextCtrl::GetLineText( long lineNo ) const | |
1132 | { | |
1133 | wxString result; | |
1134 | if ( IsMultiLine() ) | |
1135 | { | |
1136 | GtkTextIter line; | |
1137 | gtk_text_buffer_get_iter_at_line(m_buffer,&line,lineNo); | |
1138 | GtkTextIter end = line; | |
1139 | gtk_text_iter_forward_to_line_end(&end); | |
1140 | wxGtkString text(gtk_text_buffer_get_text(m_buffer, &line, &end, true)); | |
1141 | result = wxGTK_CONV_BACK(text); | |
1142 | } | |
1143 | else | |
1144 | { | |
1145 | if (lineNo == 0) | |
1146 | result = GetValue(); | |
1147 | } | |
1148 | return result; | |
1149 | } | |
1150 | ||
1151 | void wxTextCtrl::OnDropFiles( wxDropFilesEvent &WXUNUSED(event) ) | |
1152 | { | |
1153 | /* If you implement this, don't forget to update the documentation! | |
1154 | * (file docs/latex/wx/text.tex) */ | |
1155 | wxFAIL_MSG( wxT("wxTextCtrl::OnDropFiles not implemented") ); | |
1156 | } | |
1157 | ||
1158 | bool wxTextCtrl::PositionToXY(long pos, long *x, long *y ) const | |
1159 | { | |
1160 | if ( IsMultiLine() ) | |
1161 | { | |
1162 | GtkTextIter iter; | |
1163 | ||
1164 | if (pos > GetLastPosition()) | |
1165 | return false; | |
1166 | ||
1167 | gtk_text_buffer_get_iter_at_offset(m_buffer, &iter, pos); | |
1168 | ||
1169 | if ( y ) | |
1170 | *y = gtk_text_iter_get_line(&iter); | |
1171 | if ( x ) | |
1172 | *x = gtk_text_iter_get_line_offset(&iter); | |
1173 | } | |
1174 | else // single line control | |
1175 | { | |
1176 | if ( pos <= GTK_ENTRY(m_text)->text_length ) | |
1177 | { | |
1178 | if ( y ) | |
1179 | *y = 0; | |
1180 | if ( x ) | |
1181 | *x = pos; | |
1182 | } | |
1183 | else | |
1184 | { | |
1185 | // index out of bounds | |
1186 | return false; | |
1187 | } | |
1188 | } | |
1189 | ||
1190 | return true; | |
1191 | } | |
1192 | ||
1193 | long wxTextCtrl::XYToPosition(long x, long y ) const | |
1194 | { | |
1195 | if ( IsSingleLine() ) | |
1196 | return 0; | |
1197 | ||
1198 | GtkTextIter iter; | |
1199 | if (y >= gtk_text_buffer_get_line_count (m_buffer)) | |
1200 | return -1; | |
1201 | ||
1202 | gtk_text_buffer_get_iter_at_line(m_buffer, &iter, y); | |
1203 | if (x >= gtk_text_iter_get_chars_in_line (&iter)) | |
1204 | return -1; | |
1205 | ||
1206 | return gtk_text_iter_get_offset(&iter) + x; | |
1207 | } | |
1208 | ||
1209 | int wxTextCtrl::GetLineLength(long lineNo) const | |
1210 | { | |
1211 | if ( IsMultiLine() ) | |
1212 | { | |
1213 | int last_line = gtk_text_buffer_get_line_count( m_buffer ) - 1; | |
1214 | if (lineNo > last_line) | |
1215 | return -1; | |
1216 | ||
1217 | GtkTextIter iter; | |
1218 | gtk_text_buffer_get_iter_at_line(m_buffer, &iter, lineNo); | |
1219 | // get_chars_in_line return includes paragraph delimiters, so need to subtract 1 IF it is not the last line | |
1220 | return gtk_text_iter_get_chars_in_line(&iter) - ((lineNo == last_line) ? 0 : 1); | |
1221 | } | |
1222 | else | |
1223 | { | |
1224 | wxString str = GetLineText (lineNo); | |
1225 | return (int) str.length(); | |
1226 | } | |
1227 | } | |
1228 | ||
1229 | int wxTextCtrl::GetNumberOfLines() const | |
1230 | { | |
1231 | if ( IsMultiLine() ) | |
1232 | { | |
1233 | return gtk_text_buffer_get_line_count( m_buffer ); | |
1234 | } | |
1235 | else // single line | |
1236 | { | |
1237 | return 1; | |
1238 | } | |
1239 | } | |
1240 | ||
1241 | void wxTextCtrl::SetInsertionPoint( long pos ) | |
1242 | { | |
1243 | wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") ); | |
1244 | ||
1245 | if ( IsMultiLine() ) | |
1246 | { | |
1247 | GtkTextIter iter; | |
1248 | gtk_text_buffer_get_iter_at_offset( m_buffer, &iter, pos ); | |
1249 | gtk_text_buffer_place_cursor( m_buffer, &iter ); | |
1250 | GtkTextMark* mark = gtk_text_buffer_get_insert(m_buffer); | |
1251 | if (IsFrozen()) | |
1252 | // defer until Thaw, text view is not using m_buffer now | |
1253 | m_showPositionOnThaw = mark; | |
1254 | else | |
1255 | gtk_text_view_scroll_mark_onscreen(GTK_TEXT_VIEW(m_text), mark); | |
1256 | } | |
1257 | else | |
1258 | { | |
1259 | // FIXME: Is the editable's cursor really uptodate without double set_position in GTK2? | |
1260 | gtk_editable_set_position(GTK_EDITABLE(m_text), int(pos)); | |
1261 | } | |
1262 | } | |
1263 | ||
1264 | void wxTextCtrl::SetInsertionPointEnd() | |
1265 | { | |
1266 | SetInsertionPoint(-1); | |
1267 | } | |
1268 | ||
1269 | void wxTextCtrl::SetEditable( bool editable ) | |
1270 | { | |
1271 | wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") ); | |
1272 | ||
1273 | if ( IsMultiLine() ) | |
1274 | { | |
1275 | gtk_text_view_set_editable( GTK_TEXT_VIEW(m_text), editable ); | |
1276 | } | |
1277 | else | |
1278 | { | |
1279 | gtk_editable_set_editable( GTK_EDITABLE(m_text), editable ); | |
1280 | } | |
1281 | } | |
1282 | ||
1283 | bool wxTextCtrl::Enable( bool enable ) | |
1284 | { | |
1285 | if (!wxWindowBase::Enable(enable)) | |
1286 | { | |
1287 | // nothing to do | |
1288 | return false; | |
1289 | } | |
1290 | ||
1291 | if ( IsMultiLine() ) | |
1292 | { | |
1293 | SetEditable( enable ); | |
1294 | } | |
1295 | else | |
1296 | { | |
1297 | gtk_widget_set_sensitive( m_text, enable ); | |
1298 | } | |
1299 | ||
1300 | return true; | |
1301 | } | |
1302 | ||
1303 | // wxGTK-specific: called recursively by Enable, | |
1304 | // to give widgets an opportunity to correct their colours after they | |
1305 | // have been changed by Enable | |
1306 | void wxTextCtrl::OnEnabled( bool enable ) | |
1307 | { | |
1308 | // If we have a custom background colour, we use this colour in both | |
1309 | // disabled and enabled mode, or we end up with a different colour under the | |
1310 | // text. | |
1311 | wxColour oldColour = GetBackgroundColour(); | |
1312 | if (oldColour.Ok()) | |
1313 | { | |
1314 | // Need to set twice or it'll optimize the useful stuff out | |
1315 | if (oldColour == * wxWHITE) | |
1316 | SetBackgroundColour(*wxBLACK); | |
1317 | else | |
1318 | SetBackgroundColour(*wxWHITE); | |
1319 | SetBackgroundColour(oldColour); | |
1320 | } | |
1321 | } | |
1322 | ||
1323 | void wxTextCtrl::MarkDirty() | |
1324 | { | |
1325 | m_modified = true; | |
1326 | } | |
1327 | ||
1328 | void wxTextCtrl::DiscardEdits() | |
1329 | { | |
1330 | m_modified = false; | |
1331 | } | |
1332 | ||
1333 | // ---------------------------------------------------------------------------- | |
1334 | // max text length support | |
1335 | // ---------------------------------------------------------------------------- | |
1336 | ||
1337 | bool wxTextCtrl::IgnoreTextUpdate() | |
1338 | { | |
1339 | if ( m_countUpdatesToIgnore > 0 ) | |
1340 | { | |
1341 | m_countUpdatesToIgnore--; | |
1342 | ||
1343 | return true; | |
1344 | } | |
1345 | ||
1346 | return false; | |
1347 | } | |
1348 | ||
1349 | bool wxTextCtrl::MarkDirtyOnChange() | |
1350 | { | |
1351 | if ( m_dontMarkDirty ) | |
1352 | { | |
1353 | m_dontMarkDirty = false; | |
1354 | ||
1355 | return false; | |
1356 | } | |
1357 | ||
1358 | return true; | |
1359 | } | |
1360 | ||
1361 | void wxTextCtrl::SetMaxLength(unsigned long len) | |
1362 | { | |
1363 | if ( !HasFlag(wxTE_MULTILINE) ) | |
1364 | { | |
1365 | gtk_entry_set_max_length(GTK_ENTRY(m_text), len); | |
1366 | ||
1367 | // there is a bug in GTK+ 1.2.x: "changed" signal is emitted even if | |
1368 | // we had tried to enter more text than allowed by max text length and | |
1369 | // the text wasn't really changed | |
1370 | // | |
1371 | // to detect this and generate TEXT_MAXLEN event instead of | |
1372 | // TEXT_CHANGED one in this case we also catch "insert_text" signal | |
1373 | // | |
1374 | // when max len is set to 0 we disconnect our handler as it means that | |
1375 | // we shouldn't check anything any more | |
1376 | if ( len ) | |
1377 | { | |
1378 | g_signal_connect (m_text, "insert_text", | |
1379 | G_CALLBACK (gtk_insert_text_callback), this); | |
1380 | } | |
1381 | else // no checking | |
1382 | { | |
1383 | g_signal_handlers_disconnect_by_func (m_text, | |
1384 | (gpointer) gtk_insert_text_callback, this); | |
1385 | } | |
1386 | } | |
1387 | } | |
1388 | ||
1389 | void wxTextCtrl::SetSelection( long from, long to ) | |
1390 | { | |
1391 | wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") ); | |
1392 | ||
1393 | if (from == -1 && to == -1) | |
1394 | { | |
1395 | from = 0; | |
1396 | to = GetValue().length(); | |
1397 | } | |
1398 | ||
1399 | if ( IsMultiLine() ) | |
1400 | { | |
1401 | GtkTextIter fromi, toi; | |
1402 | gtk_text_buffer_get_iter_at_offset( m_buffer, &fromi, from ); | |
1403 | gtk_text_buffer_get_iter_at_offset( m_buffer, &toi, to ); | |
1404 | ||
1405 | gtk_text_buffer_place_cursor( m_buffer, &toi ); | |
1406 | gtk_text_buffer_move_mark_by_name( m_buffer, "selection_bound", &fromi ); | |
1407 | } | |
1408 | else | |
1409 | { | |
1410 | gtk_editable_select_region( GTK_EDITABLE(m_text), (gint)from, (gint)to ); | |
1411 | } | |
1412 | } | |
1413 | ||
1414 | void wxTextCtrl::ShowPosition( long pos ) | |
1415 | { | |
1416 | if (IsMultiLine()) | |
1417 | { | |
1418 | GtkTextIter iter; | |
1419 | gtk_text_buffer_get_iter_at_offset(m_buffer, &iter, int(pos)); | |
1420 | GtkTextMark* mark = gtk_text_buffer_get_mark(m_buffer, "ShowPosition"); | |
1421 | gtk_text_buffer_move_mark(m_buffer, mark, &iter); | |
1422 | if (IsFrozen()) | |
1423 | // defer until Thaw, text view is not using m_buffer now | |
1424 | m_showPositionOnThaw = mark; | |
1425 | else | |
1426 | gtk_text_view_scroll_mark_onscreen(GTK_TEXT_VIEW(m_text), mark); | |
1427 | } | |
1428 | } | |
1429 | ||
1430 | wxTextCtrlHitTestResult | |
1431 | wxTextCtrl::HitTest(const wxPoint& pt, long *pos) const | |
1432 | { | |
1433 | if ( !IsMultiLine() ) | |
1434 | { | |
1435 | // not supported | |
1436 | return wxTE_HT_UNKNOWN; | |
1437 | } | |
1438 | ||
1439 | int x, y; | |
1440 | gtk_text_view_window_to_buffer_coords | |
1441 | ( | |
1442 | GTK_TEXT_VIEW(m_text), | |
1443 | GTK_TEXT_WINDOW_TEXT, | |
1444 | pt.x, pt.y, | |
1445 | &x, &y | |
1446 | ); | |
1447 | ||
1448 | GtkTextIter iter; | |
1449 | gtk_text_view_get_iter_at_location(GTK_TEXT_VIEW(m_text), &iter, x, y); | |
1450 | if ( pos ) | |
1451 | *pos = gtk_text_iter_get_offset(&iter); | |
1452 | ||
1453 | return wxTE_HT_ON_TEXT; | |
1454 | } | |
1455 | ||
1456 | long wxTextCtrl::GetInsertionPoint() const | |
1457 | { | |
1458 | wxCHECK_MSG( m_text != NULL, 0, wxT("invalid text ctrl") ); | |
1459 | ||
1460 | if ( IsMultiLine() ) | |
1461 | { | |
1462 | // There is no direct accessor for the cursor, but | |
1463 | // internally, the cursor is the "mark" called | |
1464 | // "insert" in the text view's btree structure. | |
1465 | ||
1466 | GtkTextMark *mark = gtk_text_buffer_get_insert( m_buffer ); | |
1467 | GtkTextIter cursor; | |
1468 | gtk_text_buffer_get_iter_at_mark( m_buffer, &cursor, mark ); | |
1469 | ||
1470 | return gtk_text_iter_get_offset( &cursor ); | |
1471 | } | |
1472 | else | |
1473 | { | |
1474 | return (long) gtk_editable_get_position(GTK_EDITABLE(m_text)); | |
1475 | } | |
1476 | } | |
1477 | ||
1478 | wxTextPos wxTextCtrl::GetLastPosition() const | |
1479 | { | |
1480 | wxCHECK_MSG( m_text != NULL, 0, wxT("invalid text ctrl") ); | |
1481 | ||
1482 | int pos = 0; | |
1483 | ||
1484 | if ( IsMultiLine() ) | |
1485 | { | |
1486 | GtkTextIter end; | |
1487 | gtk_text_buffer_get_end_iter( m_buffer, &end ); | |
1488 | ||
1489 | pos = gtk_text_iter_get_offset( &end ); | |
1490 | } | |
1491 | else | |
1492 | { | |
1493 | pos = GTK_ENTRY(m_text)->text_length; | |
1494 | } | |
1495 | ||
1496 | return (long)pos; | |
1497 | } | |
1498 | ||
1499 | void wxTextCtrl::Remove( long from, long to ) | |
1500 | { | |
1501 | wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") ); | |
1502 | ||
1503 | if ( IsMultiLine() ) | |
1504 | { | |
1505 | GtkTextIter fromi, toi; | |
1506 | gtk_text_buffer_get_iter_at_offset( m_buffer, &fromi, from ); | |
1507 | gtk_text_buffer_get_iter_at_offset( m_buffer, &toi, to ); | |
1508 | ||
1509 | gtk_text_buffer_delete( m_buffer, &fromi, &toi ); | |
1510 | } | |
1511 | else // single line | |
1512 | gtk_editable_delete_text( GTK_EDITABLE(m_text), (gint)from, (gint)to ); | |
1513 | } | |
1514 | ||
1515 | void wxTextCtrl::Replace( long from, long to, const wxString &value ) | |
1516 | { | |
1517 | wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") ); | |
1518 | ||
1519 | Remove( from, to ); | |
1520 | ||
1521 | if (!value.empty()) | |
1522 | { | |
1523 | SetInsertionPoint( from ); | |
1524 | WriteText( value ); | |
1525 | } | |
1526 | } | |
1527 | ||
1528 | void wxTextCtrl::Cut() | |
1529 | { | |
1530 | wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") ); | |
1531 | ||
1532 | if ( IsMultiLine() ) | |
1533 | g_signal_emit_by_name (m_text, "cut-clipboard"); | |
1534 | else | |
1535 | gtk_editable_cut_clipboard(GTK_EDITABLE(m_text)); | |
1536 | } | |
1537 | ||
1538 | void wxTextCtrl::Copy() | |
1539 | { | |
1540 | wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") ); | |
1541 | ||
1542 | if ( IsMultiLine() ) | |
1543 | g_signal_emit_by_name (m_text, "copy-clipboard"); | |
1544 | else | |
1545 | gtk_editable_copy_clipboard(GTK_EDITABLE(m_text)); | |
1546 | } | |
1547 | ||
1548 | void wxTextCtrl::Paste() | |
1549 | { | |
1550 | wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") ); | |
1551 | ||
1552 | if ( IsMultiLine() ) | |
1553 | g_signal_emit_by_name (m_text, "paste-clipboard"); | |
1554 | else | |
1555 | gtk_editable_paste_clipboard(GTK_EDITABLE(m_text)); | |
1556 | } | |
1557 | ||
1558 | // Undo/redo | |
1559 | void wxTextCtrl::Undo() | |
1560 | { | |
1561 | // TODO | |
1562 | wxFAIL_MSG( wxT("wxTextCtrl::Undo not implemented") ); | |
1563 | } | |
1564 | ||
1565 | void wxTextCtrl::Redo() | |
1566 | { | |
1567 | // TODO | |
1568 | wxFAIL_MSG( wxT("wxTextCtrl::Redo not implemented") ); | |
1569 | } | |
1570 | ||
1571 | bool wxTextCtrl::CanUndo() const | |
1572 | { | |
1573 | // TODO | |
1574 | //wxFAIL_MSG( wxT("wxTextCtrl::CanUndo not implemented") ); | |
1575 | return false; | |
1576 | } | |
1577 | ||
1578 | bool wxTextCtrl::CanRedo() const | |
1579 | { | |
1580 | // TODO | |
1581 | //wxFAIL_MSG( wxT("wxTextCtrl::CanRedo not implemented") ); | |
1582 | return false; | |
1583 | } | |
1584 | ||
1585 | // If the return values from and to are the same, there is no | |
1586 | // selection. | |
1587 | void wxTextCtrl::GetSelection(long* fromOut, long* toOut) const | |
1588 | { | |
1589 | wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") ); | |
1590 | ||
1591 | gint from = -1; | |
1592 | gint to = -1; | |
1593 | bool haveSelection = false; | |
1594 | ||
1595 | if ( IsMultiLine() ) | |
1596 | { | |
1597 | GtkTextIter ifrom, ito; | |
1598 | if ( gtk_text_buffer_get_selection_bounds(m_buffer, &ifrom, &ito) ) | |
1599 | { | |
1600 | haveSelection = true; | |
1601 | from = gtk_text_iter_get_offset(&ifrom); | |
1602 | to = gtk_text_iter_get_offset(&ito); | |
1603 | } | |
1604 | } | |
1605 | else // not multi-line | |
1606 | { | |
1607 | if ( gtk_editable_get_selection_bounds( GTK_EDITABLE(m_text), | |
1608 | &from, &to) ) | |
1609 | { | |
1610 | haveSelection = true; | |
1611 | } | |
1612 | } | |
1613 | ||
1614 | if (! haveSelection ) | |
1615 | from = to = GetInsertionPoint(); | |
1616 | ||
1617 | if ( from > to ) | |
1618 | { | |
1619 | // exchange them to be compatible with wxMSW | |
1620 | gint tmp = from; | |
1621 | from = to; | |
1622 | to = tmp; | |
1623 | } | |
1624 | ||
1625 | if ( fromOut ) | |
1626 | *fromOut = from; | |
1627 | if ( toOut ) | |
1628 | *toOut = to; | |
1629 | } | |
1630 | ||
1631 | ||
1632 | bool wxTextCtrl::IsEditable() const | |
1633 | { | |
1634 | wxCHECK_MSG( m_text != NULL, false, wxT("invalid text ctrl") ); | |
1635 | ||
1636 | if ( IsMultiLine() ) | |
1637 | { | |
1638 | return gtk_text_view_get_editable(GTK_TEXT_VIEW(m_text)); | |
1639 | } | |
1640 | else | |
1641 | { | |
1642 | return gtk_editable_get_editable(GTK_EDITABLE(m_text)); | |
1643 | } | |
1644 | } | |
1645 | ||
1646 | bool wxTextCtrl::IsModified() const | |
1647 | { | |
1648 | return m_modified; | |
1649 | } | |
1650 | ||
1651 | void wxTextCtrl::Clear() | |
1652 | { | |
1653 | SetValue( wxEmptyString ); | |
1654 | } | |
1655 | ||
1656 | void wxTextCtrl::OnChar( wxKeyEvent &key_event ) | |
1657 | { | |
1658 | wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") ); | |
1659 | ||
1660 | if ( key_event.GetKeyCode() == WXK_RETURN ) | |
1661 | { | |
1662 | if ( HasFlag(wxTE_PROCESS_ENTER) ) | |
1663 | { | |
1664 | wxCommandEvent event(wxEVT_COMMAND_TEXT_ENTER, m_windowId); | |
1665 | event.SetEventObject(this); | |
1666 | event.SetString(GetValue()); | |
1667 | if ( GetEventHandler()->ProcessEvent(event) ) | |
1668 | return; | |
1669 | } | |
1670 | ||
1671 | // FIXME: this is not the right place to do it, wxDialog::OnCharHook() | |
1672 | // probably is | |
1673 | if ( IsSingleLine() ) | |
1674 | { | |
1675 | // This will invoke the dialog default action, such | |
1676 | // as the clicking the default button. | |
1677 | ||
1678 | wxWindow *top_frame = m_parent; | |
1679 | while (top_frame->GetParent() && !(top_frame->IsTopLevel())) | |
1680 | top_frame = top_frame->GetParent(); | |
1681 | ||
1682 | if (top_frame && GTK_IS_WINDOW(top_frame->m_widget)) | |
1683 | { | |
1684 | GtkWindow *window = GTK_WINDOW(top_frame->m_widget); | |
1685 | ||
1686 | if (window->default_widget) | |
1687 | { | |
1688 | gtk_widget_activate (window->default_widget); | |
1689 | return; | |
1690 | } | |
1691 | } | |
1692 | } | |
1693 | } | |
1694 | ||
1695 | key_event.Skip(); | |
1696 | } | |
1697 | ||
1698 | GtkWidget* wxTextCtrl::GetConnectWidget() | |
1699 | { | |
1700 | return GTK_WIDGET(m_text); | |
1701 | } | |
1702 | ||
1703 | GdkWindow *wxTextCtrl::GTKGetWindow(wxArrayGdkWindows& WXUNUSED(windows)) const | |
1704 | { | |
1705 | if ( IsMultiLine() ) | |
1706 | { | |
1707 | return gtk_text_view_get_window(GTK_TEXT_VIEW(m_text), | |
1708 | GTK_TEXT_WINDOW_TEXT ); | |
1709 | } | |
1710 | else | |
1711 | { | |
1712 | return GTK_ENTRY(m_text)->text_area; | |
1713 | } | |
1714 | } | |
1715 | ||
1716 | // the font will change for subsequent text insertiongs | |
1717 | bool wxTextCtrl::SetFont( const wxFont &font ) | |
1718 | { | |
1719 | wxCHECK_MSG( m_text != NULL, false, wxT("invalid text ctrl") ); | |
1720 | ||
1721 | if ( !wxTextCtrlBase::SetFont(font) ) | |
1722 | { | |
1723 | // font didn't change, nothing to do | |
1724 | return false; | |
1725 | } | |
1726 | ||
1727 | if ( IsMultiLine() ) | |
1728 | { | |
1729 | SetUpdateFont(true); | |
1730 | ||
1731 | m_defaultStyle.SetFont(font); | |
1732 | ||
1733 | ChangeFontGlobally(); | |
1734 | } | |
1735 | ||
1736 | return true; | |
1737 | } | |
1738 | ||
1739 | void wxTextCtrl::ChangeFontGlobally() | |
1740 | { | |
1741 | // this method is very inefficient and hence should be called as rarely as | |
1742 | // possible! | |
1743 | // | |
1744 | // TODO: it can be implemented much more efficiently for GTK2 | |
1745 | wxASSERT_MSG( IsMultiLine(), | |
1746 | _T("shouldn't be called for single line controls") ); | |
1747 | ||
1748 | wxString value = GetValue(); | |
1749 | if ( !value.empty() ) | |
1750 | { | |
1751 | SetUpdateFont(false); | |
1752 | ||
1753 | Clear(); | |
1754 | AppendText(value); | |
1755 | } | |
1756 | } | |
1757 | ||
1758 | bool wxTextCtrl::SetForegroundColour(const wxColour& colour) | |
1759 | { | |
1760 | if ( !wxControl::SetForegroundColour(colour) ) | |
1761 | return false; | |
1762 | ||
1763 | // update default fg colour too | |
1764 | m_defaultStyle.SetTextColour(colour); | |
1765 | ||
1766 | return true; | |
1767 | } | |
1768 | ||
1769 | bool wxTextCtrl::SetBackgroundColour( const wxColour &colour ) | |
1770 | { | |
1771 | wxCHECK_MSG( m_text != NULL, false, wxT("invalid text ctrl") ); | |
1772 | ||
1773 | if ( !wxControl::SetBackgroundColour( colour ) ) | |
1774 | return false; | |
1775 | ||
1776 | if (!m_backgroundColour.Ok()) | |
1777 | return false; | |
1778 | ||
1779 | // change active background color too | |
1780 | m_defaultStyle.SetBackgroundColour( colour ); | |
1781 | ||
1782 | return true; | |
1783 | } | |
1784 | ||
1785 | bool wxTextCtrl::SetStyle( long start, long end, const wxTextAttr& style ) | |
1786 | { | |
1787 | if ( IsMultiLine() ) | |
1788 | { | |
1789 | if ( style.IsDefault() ) | |
1790 | { | |
1791 | // nothing to do | |
1792 | return true; | |
1793 | } | |
1794 | ||
1795 | gint l = gtk_text_buffer_get_char_count( m_buffer ); | |
1796 | ||
1797 | wxCHECK_MSG( start >= 0 && end <= l, false, | |
1798 | _T("invalid range in wxTextCtrl::SetStyle") ); | |
1799 | ||
1800 | GtkTextIter starti, endi; | |
1801 | gtk_text_buffer_get_iter_at_offset( m_buffer, &starti, start ); | |
1802 | gtk_text_buffer_get_iter_at_offset( m_buffer, &endi, end ); | |
1803 | ||
1804 | // use the attributes from style which are set in it and fall back | |
1805 | // first to the default style and then to the text control default | |
1806 | // colours for the others | |
1807 | wxTextAttr attr = wxTextAttr::Combine(style, m_defaultStyle, this); | |
1808 | ||
1809 | wxGtkTextApplyTagsFromAttr( m_widget, m_buffer, attr, &starti, &endi ); | |
1810 | ||
1811 | return true; | |
1812 | } | |
1813 | ||
1814 | // else single line | |
1815 | // cannot do this for GTK+'s Entry widget | |
1816 | return false; | |
1817 | } | |
1818 | ||
1819 | void wxTextCtrl::DoApplyWidgetStyle(GtkRcStyle *style) | |
1820 | { | |
1821 | gtk_widget_modify_style(m_text, style); | |
1822 | } | |
1823 | ||
1824 | void wxTextCtrl::OnCut(wxCommandEvent& WXUNUSED(event)) | |
1825 | { | |
1826 | Cut(); | |
1827 | } | |
1828 | ||
1829 | void wxTextCtrl::OnCopy(wxCommandEvent& WXUNUSED(event)) | |
1830 | { | |
1831 | Copy(); | |
1832 | } | |
1833 | ||
1834 | void wxTextCtrl::OnPaste(wxCommandEvent& WXUNUSED(event)) | |
1835 | { | |
1836 | Paste(); | |
1837 | } | |
1838 | ||
1839 | void wxTextCtrl::OnUndo(wxCommandEvent& WXUNUSED(event)) | |
1840 | { | |
1841 | Undo(); | |
1842 | } | |
1843 | ||
1844 | void wxTextCtrl::OnRedo(wxCommandEvent& WXUNUSED(event)) | |
1845 | { | |
1846 | Redo(); | |
1847 | } | |
1848 | ||
1849 | void wxTextCtrl::OnUpdateCut(wxUpdateUIEvent& event) | |
1850 | { | |
1851 | event.Enable( CanCut() ); | |
1852 | } | |
1853 | ||
1854 | void wxTextCtrl::OnUpdateCopy(wxUpdateUIEvent& event) | |
1855 | { | |
1856 | event.Enable( CanCopy() ); | |
1857 | } | |
1858 | ||
1859 | void wxTextCtrl::OnUpdatePaste(wxUpdateUIEvent& event) | |
1860 | { | |
1861 | event.Enable( CanPaste() ); | |
1862 | } | |
1863 | ||
1864 | void wxTextCtrl::OnUpdateUndo(wxUpdateUIEvent& event) | |
1865 | { | |
1866 | event.Enable( CanUndo() ); | |
1867 | } | |
1868 | ||
1869 | void wxTextCtrl::OnUpdateRedo(wxUpdateUIEvent& event) | |
1870 | { | |
1871 | event.Enable( CanRedo() ); | |
1872 | } | |
1873 | ||
1874 | wxSize wxTextCtrl::DoGetBestSize() const | |
1875 | { | |
1876 | // FIXME should be different for multi-line controls... | |
1877 | wxSize ret( wxControl::DoGetBestSize() ); | |
1878 | wxSize best(80, ret.y); | |
1879 | CacheBestSize(best); | |
1880 | return best; | |
1881 | } | |
1882 | ||
1883 | // ---------------------------------------------------------------------------- | |
1884 | // freeze/thaw | |
1885 | // ---------------------------------------------------------------------------- | |
1886 | ||
1887 | void wxTextCtrl::Freeze() | |
1888 | { | |
1889 | wxCHECK_RET(m_text != NULL, wxT("invalid text ctrl")); | |
1890 | ||
1891 | if ( HasFlag(wxTE_MULTILINE) ) | |
1892 | { | |
1893 | if (m_freezeCount++ == 0) | |
1894 | { | |
1895 | // freeze textview updates and remove buffer | |
1896 | g_signal_connect (m_text, "expose_event", | |
1897 | G_CALLBACK (gtk_text_exposed_callback), this); | |
1898 | g_signal_connect (m_widget, "expose_event", | |
1899 | G_CALLBACK (gtk_text_exposed_callback), this); | |
1900 | gtk_widget_set_sensitive(m_widget, false); | |
1901 | g_object_ref(m_buffer); | |
1902 | GtkTextBuffer* buf_new = gtk_text_buffer_new(NULL); | |
1903 | GtkTextMark* mark = GTK_TEXT_VIEW(m_text)->first_para_mark; | |
1904 | gtk_text_view_set_buffer(GTK_TEXT_VIEW(m_text), buf_new); | |
1905 | // gtk_text_view_set_buffer adds its own reference | |
1906 | g_object_unref(buf_new); | |
1907 | // This mark should be deleted when the buffer is changed, | |
1908 | // but it's not (in GTK+ up to at least 2.10.6). | |
1909 | // Otherwise these anonymous marks start to build up in the buffer, | |
1910 | // and Freeze takes longer and longer each time it is called. | |
1911 | if (GTK_IS_TEXT_MARK(mark) && !gtk_text_mark_get_deleted(mark)) | |
1912 | gtk_text_buffer_delete_mark(m_buffer, mark); | |
1913 | } | |
1914 | } | |
1915 | } | |
1916 | ||
1917 | void wxTextCtrl::Thaw() | |
1918 | { | |
1919 | if ( HasFlag(wxTE_MULTILINE) ) | |
1920 | { | |
1921 | wxCHECK_RET(m_freezeCount != 0, _T("Thaw() without matching Freeze()")); | |
1922 | ||
1923 | if (--m_freezeCount == 0) | |
1924 | { | |
1925 | // Reattach buffer and thaw textview updates | |
1926 | gtk_text_view_set_buffer(GTK_TEXT_VIEW(m_text), m_buffer); | |
1927 | g_object_unref(m_buffer); | |
1928 | gtk_widget_set_sensitive(m_widget, true); | |
1929 | g_signal_handlers_disconnect_by_func (m_widget, | |
1930 | (gpointer) gtk_text_exposed_callback, this); | |
1931 | g_signal_handlers_disconnect_by_func (m_text, | |
1932 | (gpointer) gtk_text_exposed_callback, this); | |
1933 | if (m_showPositionOnThaw != NULL) | |
1934 | { | |
1935 | gtk_text_view_scroll_mark_onscreen( | |
1936 | GTK_TEXT_VIEW(m_text), m_showPositionOnThaw); | |
1937 | m_showPositionOnThaw = NULL; | |
1938 | } | |
1939 | } | |
1940 | } | |
1941 | } | |
1942 | ||
1943 | // ---------------------------------------------------------------------------- | |
1944 | // wxTextUrlEvent passing if style & wxTE_AUTO_URL | |
1945 | // ---------------------------------------------------------------------------- | |
1946 | ||
1947 | // FIXME: when dragging on a link the sample gets an "Unknown event". | |
1948 | // This might be an excessive event from us or a buggy wxMouseEvent::Moving() or | |
1949 | // a buggy sample, or something else | |
1950 | void wxTextCtrl::OnUrlMouseEvent(wxMouseEvent& event) | |
1951 | { | |
1952 | event.Skip(); | |
1953 | if( !HasFlag(wxTE_AUTO_URL) ) | |
1954 | return; | |
1955 | ||
1956 | gint x, y; | |
1957 | GtkTextIter start, end; | |
1958 | GtkTextTag *tag = gtk_text_tag_table_lookup(gtk_text_buffer_get_tag_table(m_buffer), | |
1959 | "wxUrl"); | |
1960 | ||
1961 | gtk_text_view_window_to_buffer_coords(GTK_TEXT_VIEW(m_text), GTK_TEXT_WINDOW_WIDGET, | |
1962 | event.GetX(), event.GetY(), &x, &y); | |
1963 | ||
1964 | gtk_text_view_get_iter_at_location(GTK_TEXT_VIEW(m_text), &end, x, y); | |
1965 | if (!gtk_text_iter_has_tag(&end, tag)) | |
1966 | { | |
1967 | gdk_window_set_cursor(gtk_text_view_get_window(GTK_TEXT_VIEW(m_text), | |
1968 | GTK_TEXT_WINDOW_TEXT), m_gdkXTermCursor); | |
1969 | return; | |
1970 | } | |
1971 | ||
1972 | gdk_window_set_cursor(gtk_text_view_get_window(GTK_TEXT_VIEW(m_text), | |
1973 | GTK_TEXT_WINDOW_TEXT), m_gdkHandCursor); | |
1974 | ||
1975 | start = end; | |
1976 | if(!gtk_text_iter_begins_tag(&start, tag)) | |
1977 | gtk_text_iter_backward_to_tag_toggle(&start, tag); | |
1978 | if(!gtk_text_iter_ends_tag(&end, tag)) | |
1979 | gtk_text_iter_forward_to_tag_toggle(&end, tag); | |
1980 | ||
1981 | // Native context menu is probably not desired on an URL. | |
1982 | // Consider making this dependant on ProcessEvent(wxTextUrlEvent) return value | |
1983 | if(event.GetEventType() == wxEVT_RIGHT_DOWN) | |
1984 | event.Skip(false); | |
1985 | ||
1986 | wxTextUrlEvent url_event(m_windowId, event, | |
1987 | gtk_text_iter_get_offset(&start), | |
1988 | gtk_text_iter_get_offset(&end)); | |
1989 | ||
1990 | InitCommandEvent(url_event); | |
1991 | // Is that a good idea? Seems not (pleasure with gtk_text_view_start_selection_drag) | |
1992 | //event.Skip(!GetEventHandler()->ProcessEvent(url_event)); | |
1993 | GetEventHandler()->ProcessEvent(url_event); | |
1994 | } | |
1995 | ||
1996 | bool wxTextCtrl::GTKProcessEvent(wxEvent& event) const | |
1997 | { | |
1998 | bool rc = wxTextCtrlBase::GTKProcessEvent(event); | |
1999 | ||
2000 | // GtkTextView starts a drag operation when left mouse button is pressed | |
2001 | // and ends it when it is released and if it doesn't get the release event | |
2002 | // the next click on a control results in an assertion failure inside | |
2003 | // gtk_text_view_start_selection_drag() which simply *kills* the program | |
2004 | // without anything we can do about it, so always let GTK+ have this event | |
2005 | return rc && (IsSingleLine() || event.GetEventType() != wxEVT_LEFT_UP); | |
2006 | } | |
2007 | ||
2008 | // static | |
2009 | wxVisualAttributes | |
2010 | wxTextCtrl::GetClassDefaultAttributes(wxWindowVariant WXUNUSED(variant)) | |
2011 | { | |
2012 | return GetDefaultAttributesFromGTKWidget(gtk_entry_new, true); | |
2013 | } |