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