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