]>
Commit | Line | Data |
---|---|---|
c801d85f KB |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: textctrl.cpp | |
3 | // Purpose: | |
4 | // Author: Robert Roebling | |
f96aa4d9 | 5 | // Id: $Id$ |
a81258be | 6 | // Copyright: (c) 1998 Robert Roebling, Vadim Zeitlin |
65571936 | 7 | // Licence: wxWindows licence |
c801d85f KB |
8 | ///////////////////////////////////////////////////////////////////////////// |
9 | ||
14f355c2 VS |
10 | // For compilers that support precompilation, includes "wx.h". |
11 | #include "wx/wxprec.h" | |
12 | ||
c801d85f KB |
13 | #include "wx/textctrl.h" |
14 | #include "wx/utils.h" | |
ae0bdb01 | 15 | #include "wx/intl.h" |
a1f79c1e | 16 | #include "wx/log.h" |
ae0bdb01 | 17 | #include "wx/settings.h" |
fc71ef6e | 18 | #include "wx/panel.h" |
fab591c5 | 19 | #include "wx/strconv.h" |
cc3da3f8 | 20 | #include "wx/fontutil.h" // for wxNativeFontInfo (GetNativeFontInfo()) |
c801d85f | 21 | |
a81258be RR |
22 | #include <sys/types.h> |
23 | #include <sys/stat.h> | |
24 | #include <ctype.h> | |
463c4d71 | 25 | #include "wx/math.h" |
a81258be | 26 | |
9e691f46 VZ |
27 | #include "wx/gtk/private.h" |
28 | #include <gdk/gdkkeysyms.h> | |
b292e2f5 | 29 | |
acfd422a RR |
30 | //----------------------------------------------------------------------------- |
31 | // idle system | |
32 | //----------------------------------------------------------------------------- | |
33 | ||
34 | extern void wxapp_install_idle_handler(); | |
35 | extern bool g_isIdle; | |
36 | ||
b292e2f5 RR |
37 | //----------------------------------------------------------------------------- |
38 | // data | |
39 | //----------------------------------------------------------------------------- | |
40 | ||
65045edd | 41 | extern wxCursor g_globalCursor; |
d7fa7eaa | 42 | extern wxWindowGTK *g_delayedFocus; |
b292e2f5 | 43 | |
eda40bfc VZ |
44 | // ---------------------------------------------------------------------------- |
45 | // helpers | |
46 | // ---------------------------------------------------------------------------- | |
47 | ||
cc3da3f8 | 48 | #ifdef __WXGTK20__ |
418cf02e JS |
49 | extern "C" { |
50 | static void wxGtkOnRemoveTag(GtkTextBuffer *buffer, | |
51 | GtkTextTag *tag, | |
52 | GtkTextIter *start, | |
53 | GtkTextIter *end, | |
50aee613 | 54 | char *prefix) |
418cf02e JS |
55 | { |
56 | gchar *name; | |
57 | g_object_get (tag, "name", &name, NULL); | |
58 | ||
50aee613 MR |
59 | if (!name || strncmp(name, prefix, strlen(prefix))) |
60 | // anonymous tag or not starting with prefix - don't remove | |
418cf02e JS |
61 | g_signal_stop_emission_by_name(buffer, "remove_tag"); |
62 | ||
63 | g_free(name); | |
64 | } | |
65 | } | |
66 | ||
67 | extern "C" { | |
25497324 KH |
68 | static void wxGtkTextApplyTagsFromAttr(GtkTextBuffer *text_buffer, |
69 | const wxTextAttr& attr, | |
70 | GtkTextIter *start, | |
71 | GtkTextIter *end) | |
72 | { | |
73 | static gchar buf[1024]; | |
74 | GtkTextTag *tag; | |
75 | ||
418cf02e | 76 | gulong remove_handler_id = g_signal_connect( text_buffer, "remove_tag", |
50aee613 | 77 | G_CALLBACK(wxGtkOnRemoveTag), gpointer("WX")); |
418cf02e JS |
78 | gtk_text_buffer_remove_all_tags(text_buffer, start, end); |
79 | g_signal_handler_disconnect( text_buffer, remove_handler_id ); | |
80 | ||
25497324 KH |
81 | if (attr.HasFont()) |
82 | { | |
83 | char *font_string; | |
84 | PangoFontDescription *font_description = attr.GetFont().GetNativeFontInfo()->description; | |
85 | font_string = pango_font_description_to_string(font_description); | |
86 | g_snprintf(buf, sizeof(buf), "WXFONT %s", font_string); | |
87 | tag = gtk_text_tag_table_lookup( gtk_text_buffer_get_tag_table( text_buffer ), | |
88 | buf ); | |
89 | if (!tag) | |
90 | tag = gtk_text_buffer_create_tag( text_buffer, buf, | |
91 | "font-desc", font_description, | |
92 | NULL ); | |
93 | gtk_text_buffer_apply_tag (text_buffer, tag, start, end); | |
94 | g_free (font_string); | |
95 | } | |
96 | ||
97 | if (attr.HasTextColour()) | |
98 | { | |
99 | GdkColor *colFg = attr.GetTextColour().GetColor(); | |
100 | g_snprintf(buf, sizeof(buf), "WXFORECOLOR %d %d %d", | |
101 | colFg->red, colFg->green, colFg->blue); | |
102 | tag = gtk_text_tag_table_lookup( gtk_text_buffer_get_tag_table( text_buffer ), | |
103 | buf ); | |
104 | if (!tag) | |
105 | tag = gtk_text_buffer_create_tag( text_buffer, buf, | |
106 | "foreground-gdk", colFg, NULL ); | |
107 | gtk_text_buffer_apply_tag (text_buffer, tag, start, end); | |
108 | } | |
109 | ||
110 | if (attr.HasBackgroundColour()) | |
111 | { | |
112 | GdkColor *colBg = attr.GetBackgroundColour().GetColor(); | |
113 | g_snprintf(buf, sizeof(buf), "WXBACKCOLOR %d %d %d", | |
114 | colBg->red, colBg->green, colBg->blue); | |
115 | tag = gtk_text_tag_table_lookup( gtk_text_buffer_get_tag_table( text_buffer ), | |
116 | buf ); | |
117 | if (!tag) | |
118 | tag = gtk_text_buffer_create_tag( text_buffer, buf, | |
119 | "background-gdk", colBg, NULL ); | |
120 | gtk_text_buffer_apply_tag (text_buffer, tag, start, end); | |
121 | } | |
50aee613 MR |
122 | |
123 | if (attr.HasAlignment()) | |
124 | { | |
125 | GtkTextIter para_start, para_end = *end; | |
126 | gtk_text_buffer_get_iter_at_line( text_buffer, | |
127 | ¶_start, | |
128 | gtk_text_iter_get_line(start) ); | |
129 | gtk_text_iter_forward_line(¶_end); | |
130 | ||
131 | remove_handler_id = g_signal_connect( text_buffer, "remove_tag", | |
132 | G_CALLBACK(wxGtkOnRemoveTag), | |
133 | gpointer("WXALIGNMENT")); | |
134 | gtk_text_buffer_remove_all_tags( text_buffer, ¶_start, ¶_end ); | |
135 | g_signal_handler_disconnect( text_buffer, remove_handler_id ); | |
136 | ||
137 | GtkJustification align; | |
138 | switch (attr.GetAlignment()) | |
139 | { | |
140 | default: | |
141 | align = GTK_JUSTIFY_LEFT; | |
142 | break; | |
143 | case wxTEXT_ALIGNMENT_RIGHT: | |
144 | align = GTK_JUSTIFY_RIGHT; | |
145 | break; | |
146 | case wxTEXT_ALIGNMENT_CENTER: | |
147 | align = GTK_JUSTIFY_CENTER; | |
148 | break; | |
149 | // gtk+ doesn't support justify as of gtk+-2.7.4 | |
150 | } | |
151 | ||
152 | g_snprintf(buf, sizeof(buf), "WXALIGNMENT %d", align); | |
153 | tag = gtk_text_tag_table_lookup( gtk_text_buffer_get_tag_table( text_buffer ), | |
154 | buf ); | |
155 | if (!tag) | |
156 | tag = gtk_text_buffer_create_tag( text_buffer, buf, | |
157 | "justification", align, NULL ); | |
158 | gtk_text_buffer_apply_tag( text_buffer, tag, ¶_start, ¶_end ); | |
159 | } | |
25497324 | 160 | } |
418cf02e | 161 | } |
25497324 | 162 | |
418cf02e | 163 | extern "C" { |
cc3da3f8 RR |
164 | static void wxGtkTextInsert(GtkWidget *text, |
165 | GtkTextBuffer *text_buffer, | |
166 | const wxTextAttr& attr, | |
fbfb8bcc | 167 | const wxCharBuffer& buffer) |
cc3da3f8 RR |
168 | |
169 | { | |
25497324 KH |
170 | gint start_offset; |
171 | GtkTextIter iter, start; | |
cc3da3f8 | 172 | |
a61bbf87 JS |
173 | gtk_text_buffer_get_iter_at_mark( text_buffer, &iter, |
174 | gtk_text_buffer_get_insert (text_buffer) ); | |
25497324 KH |
175 | start_offset = gtk_text_iter_get_offset (&iter); |
176 | gtk_text_buffer_insert( text_buffer, &iter, buffer, strlen(buffer) ); | |
177 | ||
178 | gtk_text_buffer_get_iter_at_offset (text_buffer, &start, start_offset); | |
a61bbf87 | 179 | |
25497324 | 180 | wxGtkTextApplyTagsFromAttr(text_buffer, attr, &start, &iter); |
cc3da3f8 | 181 | } |
418cf02e | 182 | } |
cc3da3f8 | 183 | #else |
418cf02e | 184 | extern "C" { |
eda40bfc VZ |
185 | static void wxGtkTextInsert(GtkWidget *text, |
186 | const wxTextAttr& attr, | |
187 | const char *txt, | |
188 | size_t len) | |
189 | { | |
190 | GdkFont *font = attr.HasFont() ? attr.GetFont().GetInternalFont() | |
191 | : NULL; | |
192 | ||
193 | GdkColor *colFg = attr.HasTextColour() ? attr.GetTextColour().GetColor() | |
194 | : NULL; | |
195 | ||
196 | GdkColor *colBg = attr.HasBackgroundColour() | |
197 | ? attr.GetBackgroundColour().GetColor() | |
198 | : NULL; | |
199 | ||
200 | gtk_text_insert( GTK_TEXT(text), font, colFg, colBg, txt, len ); | |
201 | } | |
418cf02e | 202 | } |
a8bf1826 | 203 | #endif // GTK 1.x |
eda40bfc | 204 | |
ce2f50e3 VZ |
205 | // ---------------------------------------------------------------------------- |
206 | // "insert_text" for GtkEntry | |
207 | // ---------------------------------------------------------------------------- | |
208 | ||
865bb325 | 209 | extern "C" { |
ce2f50e3 VZ |
210 | static void |
211 | gtk_insert_text_callback(GtkEditable *editable, | |
212 | const gchar *new_text, | |
213 | gint new_text_length, | |
214 | gint *position, | |
215 | wxTextCtrl *win) | |
216 | { | |
76fcf0f2 RR |
217 | if (g_isIdle) |
218 | wxapp_install_idle_handler(); | |
219 | ||
ce2f50e3 VZ |
220 | // we should only be called if we have a max len limit at all |
221 | GtkEntry *entry = GTK_ENTRY (editable); | |
222 | ||
223 | wxCHECK_RET( entry->text_max_length, _T("shouldn't be called") ); | |
224 | ||
225 | // check that we don't overflow the max length limit | |
226 | // | |
227 | // FIXME: this doesn't work when we paste a string which is going to be | |
228 | // truncated | |
229 | if ( entry->text_length == entry->text_max_length ) | |
230 | { | |
231 | // we don't need to run the base class version at all | |
232 | gtk_signal_emit_stop_by_name(GTK_OBJECT(editable), "insert_text"); | |
233 | ||
234 | // remember that the next changed signal is to be ignored to avoid | |
235 | // generating a dummy wxEVT_COMMAND_TEXT_UPDATED event | |
236 | win->IgnoreNextTextUpdate(); | |
237 | ||
238 | // and generate the correct one ourselves | |
239 | wxCommandEvent event(wxEVT_COMMAND_TEXT_MAXLEN, win->GetId()); | |
240 | event.SetEventObject(win); | |
241 | event.SetString(win->GetValue()); | |
242 | win->GetEventHandler()->ProcessEvent( event ); | |
243 | } | |
244 | } | |
865bb325 | 245 | } |
ce2f50e3 | 246 | |
9440c3d0 KH |
247 | #ifdef __WXGTK20__ |
248 | // Implementation of wxTE_AUTO_URL for wxGTK2 by Mart Raudsepp, | |
249 | ||
865bb325 | 250 | extern "C" { |
9440c3d0 KH |
251 | static void |
252 | au_apply_tag_callback(GtkTextBuffer *buffer, | |
253 | GtkTextTag *tag, | |
254 | GtkTextIter *start, | |
255 | GtkTextIter *end, | |
256 | gpointer textctrl) | |
257 | { | |
258 | if(tag == gtk_text_tag_table_lookup(gtk_text_buffer_get_tag_table(buffer), "wxUrl")) | |
259 | g_signal_stop_emission_by_name(buffer, "apply_tag"); | |
260 | } | |
865bb325 | 261 | } |
9440c3d0 KH |
262 | |
263 | //----------------------------------------------------------------------------- | |
264 | // GtkTextCharPredicates for gtk_text_iter_*_find_char | |
265 | //----------------------------------------------------------------------------- | |
266 | ||
865bb325 | 267 | extern "C" { |
9440c3d0 KH |
268 | static gboolean |
269 | pred_whitespace (gunichar ch, gpointer user_data) | |
270 | { | |
271 | return g_unichar_isspace(ch); | |
272 | } | |
865bb325 | 273 | } |
9440c3d0 | 274 | |
865bb325 | 275 | extern "C" { |
9440c3d0 KH |
276 | static gboolean |
277 | pred_non_whitespace (gunichar ch, gpointer user_data) | |
278 | { | |
279 | return !g_unichar_isspace(ch); | |
280 | } | |
865bb325 | 281 | } |
9440c3d0 | 282 | |
865bb325 | 283 | extern "C" { |
9440c3d0 KH |
284 | static gboolean |
285 | pred_nonpunct (gunichar ch, gpointer user_data) | |
286 | { | |
287 | return !g_unichar_ispunct(ch); | |
288 | } | |
865bb325 | 289 | } |
9440c3d0 | 290 | |
865bb325 | 291 | extern "C" { |
9440c3d0 KH |
292 | static gboolean |
293 | pred_nonpunct_or_slash (gunichar ch, gpointer user_data) | |
294 | { | |
295 | return !g_unichar_ispunct(ch) || ch == '/'; | |
296 | } | |
865bb325 | 297 | } |
9440c3d0 KH |
298 | |
299 | //----------------------------------------------------------------------------- | |
300 | // Check for links between s and e and correct tags as necessary | |
301 | //----------------------------------------------------------------------------- | |
302 | ||
303 | // This function should be made match better while being efficient at one point. | |
304 | // Most probably with a row of regular expressions. | |
865bb325 | 305 | extern "C" { |
9440c3d0 KH |
306 | static void |
307 | au_check_word( GtkTextIter *s, GtkTextIter *e ) | |
308 | { | |
309 | static const char *URIPrefixes[] = | |
310 | { | |
311 | "http://", | |
312 | "ftp://", | |
313 | "www.", | |
314 | "ftp.", | |
315 | "mailto://", | |
316 | "https://", | |
317 | "file://", | |
318 | "nntp://", | |
319 | "news://", | |
320 | "telnet://", | |
321 | "mms://", | |
322 | "gopher://", | |
323 | "prospero://", | |
324 | "wais://", | |
325 | }; | |
326 | ||
327 | GtkTextIter start = *s, end = *e; | |
328 | GtkTextBuffer *buffer = gtk_text_iter_get_buffer(s); | |
418cf02e | 329 | |
9440c3d0 KH |
330 | // Get our special link tag |
331 | GtkTextTag *tag = gtk_text_tag_table_lookup(gtk_text_buffer_get_tag_table(buffer), "wxUrl"); | |
332 | ||
333 | // Get rid of punctuation from beginning and end. | |
334 | // Might want to move this to au_check_range if an improved link checking doesn't | |
335 | // use some intelligent punctuation checking itself (beware of undesired iter modifications). | |
336 | if(g_unichar_ispunct( gtk_text_iter_get_char( &start ) ) ) | |
337 | gtk_text_iter_forward_find_char( &start, pred_nonpunct, NULL, e ); | |
338 | ||
339 | gtk_text_iter_backward_find_char( &end, pred_nonpunct_or_slash, NULL, &start ); | |
340 | gtk_text_iter_forward_char(&end); | |
341 | ||
342 | gchar* text = gtk_text_iter_get_text( &start, &end ); | |
343 | size_t len = strlen(text), prefix_len; | |
344 | size_t n; | |
345 | ||
346 | for( n = 0; n < WXSIZEOF(URIPrefixes); ++n ) | |
347 | { | |
348 | prefix_len = strlen(URIPrefixes[n]); | |
349 | if((len > prefix_len) && !strncasecmp(text, URIPrefixes[n], prefix_len)) | |
350 | break; | |
351 | } | |
352 | ||
353 | if(n < WXSIZEOF(URIPrefixes)) | |
354 | { | |
355 | gulong signal_id = g_signal_handler_find(buffer, | |
356 | (GSignalMatchType) (G_SIGNAL_MATCH_FUNC), | |
357 | 0, 0, NULL, | |
358 | (gpointer)au_apply_tag_callback, NULL); | |
359 | ||
360 | g_signal_handler_block(buffer, signal_id); | |
361 | gtk_text_buffer_apply_tag(buffer, tag, &start, &end); | |
362 | g_signal_handler_unblock(buffer, signal_id); | |
363 | } | |
364 | } | |
865bb325 | 365 | } |
9440c3d0 | 366 | |
865bb325 | 367 | extern "C" { |
9440c3d0 KH |
368 | static void |
369 | au_check_range(GtkTextIter *s, | |
370 | GtkTextIter *range_end) | |
371 | { | |
372 | GtkTextIter range_start = *s; | |
373 | GtkTextIter word_end; | |
374 | GtkTextBuffer *buffer = gtk_text_iter_get_buffer(s); | |
375 | GtkTextTag *tag = gtk_text_tag_table_lookup(gtk_text_buffer_get_tag_table(buffer), "wxUrl"); | |
376 | ||
377 | gtk_text_buffer_remove_tag(buffer, tag, s, range_end); | |
378 | ||
379 | if(g_unichar_isspace(gtk_text_iter_get_char(&range_start))) | |
380 | gtk_text_iter_forward_find_char(&range_start, pred_non_whitespace, NULL, range_end); | |
381 | ||
382 | while(!gtk_text_iter_equal(&range_start, range_end)) | |
383 | { | |
384 | word_end = range_start; | |
385 | gtk_text_iter_forward_find_char(&word_end, pred_whitespace, NULL, range_end); | |
386 | ||
387 | // Now we should have a word delimited by range_start and word_end, correct link tags | |
388 | au_check_word(&range_start, &word_end); | |
389 | ||
390 | range_start = word_end; | |
391 | gtk_text_iter_forward_find_char(&range_start, pred_non_whitespace, NULL, range_end); | |
392 | } | |
393 | } | |
865bb325 | 394 | } |
9440c3d0 KH |
395 | |
396 | //----------------------------------------------------------------------------- | |
397 | // "insert-text" for GtkTextBuffer | |
398 | //----------------------------------------------------------------------------- | |
399 | ||
865bb325 | 400 | extern "C" { |
9440c3d0 KH |
401 | static void |
402 | au_insert_text_callback(GtkTextBuffer *buffer, | |
403 | GtkTextIter *end, | |
404 | gchar *text, | |
405 | gint len, | |
406 | wxTextCtrl *win) | |
407 | { | |
408 | if (!len || !(win->GetWindowStyleFlag() & wxTE_AUTO_URL) ) | |
409 | return; | |
410 | ||
411 | GtkTextIter start = *end; | |
412 | gtk_text_iter_backward_chars(&start, g_utf8_strlen(text, len)); | |
413 | ||
414 | GtkTextIter line_start = start; | |
415 | GtkTextIter line_end = *end; | |
416 | GtkTextIter words_start = start; | |
417 | GtkTextIter words_end = *end; | |
418 | ||
419 | gtk_text_iter_set_line(&line_start, gtk_text_iter_get_line(&start)); | |
420 | gtk_text_iter_forward_to_line_end(&line_end); | |
421 | gtk_text_iter_backward_find_char(&words_start, pred_whitespace, NULL, &line_start); | |
422 | gtk_text_iter_forward_find_char(&words_end, pred_whitespace, NULL, &line_end); | |
423 | ||
424 | au_check_range(&words_start, &words_end); | |
425 | } | |
865bb325 | 426 | } |
9440c3d0 KH |
427 | |
428 | //----------------------------------------------------------------------------- | |
429 | // "delete-range" for GtkTextBuffer | |
430 | //----------------------------------------------------------------------------- | |
431 | ||
865bb325 | 432 | extern "C" { |
9440c3d0 KH |
433 | static void |
434 | au_delete_range_callback(GtkTextBuffer *buffer, | |
435 | GtkTextIter *start, | |
436 | GtkTextIter *end, | |
437 | wxTextCtrl *win) | |
438 | { | |
439 | if( !(win->GetWindowStyleFlag() & wxTE_AUTO_URL) ) | |
440 | return; | |
441 | ||
442 | GtkTextIter line_start = *start, line_end = *end; | |
443 | ||
444 | gtk_text_iter_set_line(&line_start, gtk_text_iter_get_line(start)); | |
445 | gtk_text_iter_forward_to_line_end(&line_end); | |
446 | gtk_text_iter_backward_find_char(start, pred_whitespace, NULL, &line_start); | |
447 | gtk_text_iter_forward_find_char(end, pred_whitespace, NULL, &line_end); | |
448 | ||
449 | au_check_range(start, end); | |
450 | } | |
865bb325 | 451 | } |
9440c3d0 KH |
452 | |
453 | ||
454 | #endif | |
455 | ||
c801d85f | 456 | //----------------------------------------------------------------------------- |
2f2aa628 | 457 | // "changed" |
c801d85f KB |
458 | //----------------------------------------------------------------------------- |
459 | ||
865bb325 | 460 | extern "C" { |
805dd538 | 461 | static void |
ba3f6b44 | 462 | gtk_text_changed_callback( GtkWidget *widget, wxTextCtrl *win ) |
484e45bf | 463 | { |
ce2f50e3 VZ |
464 | if ( win->IgnoreTextUpdate() ) |
465 | return; | |
466 | ||
a2053b27 | 467 | if (!win->m_hasVMT) return; |
805dd538 | 468 | |
bb69661b | 469 | if (g_isIdle) |
3c679789 | 470 | wxapp_install_idle_handler(); |
a8bf1826 | 471 | |
034be888 | 472 | win->SetModified(); |
c04ec496 | 473 | #ifndef __WXGTK20__ |
01041145 | 474 | win->UpdateFontIfNeeded(); |
c04ec496 | 475 | #endif // !__WXGTK20__ |
a8bf1826 | 476 | |
f03fc89f | 477 | wxCommandEvent event( wxEVT_COMMAND_TEXT_UPDATED, win->GetId() ); |
2830bf19 RR |
478 | event.SetEventObject( win ); |
479 | win->GetEventHandler()->ProcessEvent( event ); | |
6de97a3b | 480 | } |
865bb325 | 481 | } |
112892b9 | 482 | |
41b81aed RR |
483 | //----------------------------------------------------------------------------- |
484 | // "expose_event" from scrolled window and textview | |
485 | //----------------------------------------------------------------------------- | |
486 | ||
487 | #ifdef __WXGTK20__ | |
865bb325 | 488 | extern "C" { |
41b81aed RR |
489 | static gboolean |
490 | gtk_text_exposed_callback( GtkWidget *widget, GdkEventExpose *event, wxTextCtrl *win ) | |
491 | { | |
492 | return TRUE; | |
493 | } | |
865bb325 | 494 | } |
41b81aed RR |
495 | #endif |
496 | ||
2830bf19 | 497 | //----------------------------------------------------------------------------- |
034be888 | 498 | // "changed" from vertical scrollbar |
2830bf19 RR |
499 | //----------------------------------------------------------------------------- |
500 | ||
fab591c5 | 501 | #ifndef __WXGTK20__ |
865bb325 | 502 | extern "C" { |
805dd538 | 503 | static void |
034be888 | 504 | gtk_scrollbar_changed_callback( GtkWidget *WXUNUSED(widget), wxTextCtrl *win ) |
2830bf19 | 505 | { |
3c679789 | 506 | if (!win->m_hasVMT) return; |
bb69661b VZ |
507 | |
508 | if (g_isIdle) | |
3c679789 | 509 | wxapp_install_idle_handler(); |
acfd422a | 510 | |
2830bf19 RR |
511 | win->CalculateScrollbar(); |
512 | } | |
865bb325 | 513 | } |
fab591c5 | 514 | #endif |
2830bf19 | 515 | |
1c35b54e VZ |
516 | // ---------------------------------------------------------------------------- |
517 | // redraw callback for multiline text | |
518 | // ---------------------------------------------------------------------------- | |
519 | ||
520 | #ifndef __WXGTK20__ | |
521 | ||
522 | // redrawing a GtkText from inside a wxYield() call results in crashes (the | |
523 | // text sample shows it in its "Add lines" command which shows wxProgressDialog | |
524 | // which implicitly calls wxYield()) so we override GtkText::draw() and simply | |
525 | // don't do anything if we're inside wxYield() | |
526 | ||
527 | extern bool wxIsInsideYield; | |
528 | ||
2e08b1a3 VZ |
529 | extern "C" { |
530 | typedef void (*GtkDrawCallback)(GtkWidget *widget, GdkRectangle *rect); | |
531 | } | |
1c35b54e VZ |
532 | |
533 | static GtkDrawCallback gs_gtk_text_draw = NULL; | |
534 | ||
865bb325 VZ |
535 | extern "C" { |
536 | static void wxgtk_text_draw( GtkWidget *widget, GdkRectangle *rect) | |
1c35b54e VZ |
537 | { |
538 | if ( !wxIsInsideYield ) | |
539 | { | |
540 | wxCHECK_RET( gs_gtk_text_draw != wxgtk_text_draw, | |
541 | _T("infinite recursion in wxgtk_text_draw aborted") ); | |
542 | ||
543 | gs_gtk_text_draw(widget, rect); | |
544 | } | |
545 | } | |
865bb325 | 546 | } |
1c35b54e VZ |
547 | |
548 | #endif // __WXGTK20__ | |
549 | ||
2f2aa628 RR |
550 | //----------------------------------------------------------------------------- |
551 | // wxTextCtrl | |
552 | //----------------------------------------------------------------------------- | |
553 | ||
554 | IMPLEMENT_DYNAMIC_CLASS(wxTextCtrl,wxControl) | |
555 | ||
c801d85f | 556 | BEGIN_EVENT_TABLE(wxTextCtrl, wxControl) |
2830bf19 | 557 | EVT_CHAR(wxTextCtrl::OnChar) |
e702ff0f JS |
558 | |
559 | EVT_MENU(wxID_CUT, wxTextCtrl::OnCut) | |
560 | EVT_MENU(wxID_COPY, wxTextCtrl::OnCopy) | |
561 | EVT_MENU(wxID_PASTE, wxTextCtrl::OnPaste) | |
562 | EVT_MENU(wxID_UNDO, wxTextCtrl::OnUndo) | |
563 | EVT_MENU(wxID_REDO, wxTextCtrl::OnRedo) | |
564 | ||
565 | EVT_UPDATE_UI(wxID_CUT, wxTextCtrl::OnUpdateCut) | |
566 | EVT_UPDATE_UI(wxID_COPY, wxTextCtrl::OnUpdateCopy) | |
567 | EVT_UPDATE_UI(wxID_PASTE, wxTextCtrl::OnUpdatePaste) | |
568 | EVT_UPDATE_UI(wxID_UNDO, wxTextCtrl::OnUpdateUndo) | |
569 | EVT_UPDATE_UI(wxID_REDO, wxTextCtrl::OnUpdateRedo) | |
9440c3d0 KH |
570 | |
571 | #ifdef __WXGTK20__ | |
572 | // wxTE_AUTO_URL wxTextUrl support. Currently only creates | |
573 | // wxTextUrlEvent in the same cases as wxMSW, more can be added here. | |
574 | EVT_MOTION (wxTextCtrl::OnUrlMouseEvent) | |
575 | EVT_LEFT_DOWN (wxTextCtrl::OnUrlMouseEvent) | |
576 | EVT_LEFT_UP (wxTextCtrl::OnUrlMouseEvent) | |
577 | EVT_LEFT_DCLICK (wxTextCtrl::OnUrlMouseEvent) | |
578 | EVT_RIGHT_DOWN (wxTextCtrl::OnUrlMouseEvent) | |
579 | EVT_RIGHT_UP (wxTextCtrl::OnUrlMouseEvent) | |
580 | EVT_RIGHT_DCLICK(wxTextCtrl::OnUrlMouseEvent) | |
581 | #endif | |
c801d85f KB |
582 | END_EVENT_TABLE() |
583 | ||
01041145 | 584 | void wxTextCtrl::Init() |
f5abe911 | 585 | { |
ce2f50e3 | 586 | m_ignoreNextUpdate = |
7d8268a1 WS |
587 | m_modified = false; |
588 | SetUpdateFont(false); | |
3ca6a5f0 BP |
589 | m_text = |
590 | m_vScrollbar = (GtkWidget *)NULL; | |
41b81aed RR |
591 | #ifdef __WXGTK20__ |
592 | m_frozenness = 0; | |
9440c3d0 KH |
593 | m_gdkHandCursor = NULL; |
594 | m_gdkXTermCursor = NULL; | |
595 | #endif | |
596 | } | |
597 | ||
598 | wxTextCtrl::~wxTextCtrl() | |
599 | { | |
600 | #ifdef __WXGTK20__ | |
601 | if(m_gdkHandCursor) | |
602 | gdk_cursor_unref(m_gdkHandCursor); | |
603 | if(m_gdkXTermCursor) | |
604 | gdk_cursor_unref(m_gdkXTermCursor); | |
7d8268a1 | 605 | #endif |
f5abe911 | 606 | } |
13289f04 | 607 | |
13111b2a VZ |
608 | wxTextCtrl::wxTextCtrl( wxWindow *parent, |
609 | wxWindowID id, | |
610 | const wxString &value, | |
611 | const wxPoint &pos, | |
612 | const wxSize &size, | |
613 | long style, | |
614 | const wxValidator& validator, | |
615 | const wxString &name ) | |
f5abe911 | 616 | { |
01041145 VZ |
617 | Init(); |
618 | ||
f5abe911 RR |
619 | Create( parent, id, value, pos, size, style, validator, name ); |
620 | } | |
c801d85f | 621 | |
13111b2a VZ |
622 | bool wxTextCtrl::Create( wxWindow *parent, |
623 | wxWindowID id, | |
624 | const wxString &value, | |
625 | const wxPoint &pos, | |
626 | const wxSize &size, | |
627 | long style, | |
628 | const wxValidator& validator, | |
629 | const wxString &name ) | |
c801d85f | 630 | { |
7d8268a1 WS |
631 | m_needParent = true; |
632 | m_acceptsFocus = true; | |
484e45bf | 633 | |
4dcaf11a RR |
634 | if (!PreCreation( parent, pos, size ) || |
635 | !CreateBase( parent, id, pos, size, style, validator, name )) | |
636 | { | |
223d09f6 | 637 | wxFAIL_MSG( wxT("wxTextCtrl creation failed") ); |
7d8268a1 | 638 | return false; |
4dcaf11a | 639 | } |
6de97a3b | 640 | |
805dd538 | 641 | |
7d8268a1 | 642 | m_vScrollbarVisible = false; |
13289f04 | 643 | |
2830bf19 | 644 | bool multi_line = (style & wxTE_MULTILINE) != 0; |
a8bf1826 | 645 | |
ab46dc18 | 646 | if (multi_line) |
2830bf19 | 647 | { |
fab591c5 RR |
648 | #ifdef __WXGTK20__ |
649 | // Create view | |
650 | m_text = gtk_text_view_new(); | |
a8bf1826 | 651 | |
41b81aed | 652 | m_buffer = gtk_text_view_get_buffer( GTK_TEXT_VIEW(m_text) ); |
a8bf1826 | 653 | |
fab591c5 RR |
654 | // create scrolled window |
655 | m_widget = gtk_scrolled_window_new( NULL, NULL ); | |
656 | gtk_scrolled_window_set_policy( GTK_SCROLLED_WINDOW( m_widget ), | |
657 | GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC ); | |
a8bf1826 | 658 | |
fab591c5 RR |
659 | // Insert view into scrolled window |
660 | gtk_container_add( GTK_CONTAINER(m_widget), m_text ); | |
a8bf1826 | 661 | |
c2110823 | 662 | // translate wx wrapping style to GTK+ |
9ddb3948 | 663 | GtkWrapMode wrap; |
c2110823 | 664 | if ( HasFlag( wxTE_DONTWRAP ) ) |
9ddb3948 | 665 | wrap = GTK_WRAP_NONE; |
c4590236 | 666 | else if ( HasFlag( wxTE_CHARWRAP ) ) |
9ddb3948 | 667 | wrap = GTK_WRAP_CHAR; |
c4590236 | 668 | else if ( HasFlag( wxTE_WORDWRAP ) ) |
9ddb3948 | 669 | wrap = GTK_WRAP_WORD; |
c4590236 VZ |
670 | else // HasFlag(wxTE_BESTWRAP) always true as wxTE_BESTWRAP == 0 |
671 | { | |
672 | // GTK_WRAP_WORD_CHAR seems to be new in GTK+ 2.4 | |
673 | #ifdef __WXGTK24__ | |
c79146df VZ |
674 | if ( !gtk_check_version(2,4,0) ) |
675 | { | |
676 | wrap = GTK_WRAP_WORD_CHAR; | |
677 | } | |
678 | else | |
c4590236 | 679 | #endif |
34b8f3ef | 680 | wrap = GTK_WRAP_WORD; |
c4590236 | 681 | } |
9ddb3948 VZ |
682 | |
683 | gtk_text_view_set_wrap_mode( GTK_TEXT_VIEW( m_text ), wrap ); | |
805dd538 | 684 | |
fab591c5 RR |
685 | if (!HasFlag(wxNO_BORDER)) |
686 | gtk_scrolled_window_set_shadow_type( GTK_SCROLLED_WINDOW(m_widget), GTK_SHADOW_IN ); | |
7d8268a1 | 687 | |
e327fddf KH |
688 | gtk_widget_add_events( GTK_WIDGET(m_text), GDK_ENTER_NOTIFY_MASK | GDK_LEAVE_NOTIFY_MASK ); |
689 | ||
055e633d | 690 | GTK_WIDGET_UNSET_FLAGS( m_widget, GTK_CAN_FOCUS ); |
c2110823 | 691 | #else // GTK+ 1 |
fab591c5 | 692 | // create our control ... |
2830bf19 RR |
693 | m_text = gtk_text_new( (GtkAdjustment *) NULL, (GtkAdjustment *) NULL ); |
694 | ||
fab591c5 | 695 | // ... and put into the upper left hand corner of the table |
7d8268a1 | 696 | bool bHasHScrollbar = false; |
2830bf19 | 697 | m_widget = gtk_table_new(bHasHScrollbar ? 2 : 1, 2, FALSE); |
5664fc32 | 698 | GTK_WIDGET_UNSET_FLAGS( m_widget, GTK_CAN_FOCUS ); |
2830bf19 | 699 | gtk_table_attach( GTK_TABLE(m_widget), m_text, 0, 1, 0, 1, |
41dee9d0 | 700 | (GtkAttachOptions)(GTK_FILL | GTK_EXPAND | GTK_SHRINK), |
f5368809 RR |
701 | (GtkAttachOptions)(GTK_FILL | GTK_EXPAND | GTK_SHRINK), |
702 | 0, 0); | |
bb69661b | 703 | |
fab591c5 | 704 | // always wrap words |
5c387335 | 705 | gtk_text_set_word_wrap( GTK_TEXT(m_text), TRUE ); |
bb69661b | 706 | |
fab591c5 | 707 | // finally, put the vertical scrollbar in the upper right corner |
ab46dc18 RR |
708 | m_vScrollbar = gtk_vscrollbar_new( GTK_TEXT(m_text)->vadj ); |
709 | GTK_WIDGET_UNSET_FLAGS( m_vScrollbar, GTK_CAN_FOCUS ); | |
ab46dc18 RR |
710 | gtk_table_attach(GTK_TABLE(m_widget), m_vScrollbar, 1, 2, 0, 1, |
711 | GTK_FILL, | |
712 | (GtkAttachOptions)(GTK_EXPAND | GTK_FILL | GTK_SHRINK), | |
713 | 0, 0); | |
c2110823 | 714 | #endif // GTK+ 2/1 |
2830bf19 RR |
715 | } |
716 | else | |
717 | { | |
fab591c5 | 718 | // a single-line text control: no need for scrollbars |
2830bf19 | 719 | m_widget = |
1c35b54e | 720 | m_text = gtk_entry_new(); |
44c5573d | 721 | |
7d8268a1 | 722 | #ifdef __WXGTK20__ |
02a6e358 RR |
723 | if (style & wxNO_BORDER) |
724 | g_object_set( GTK_ENTRY(m_text), "has-frame", FALSE, NULL ); | |
44c5573d | 725 | #endif |
2830bf19 | 726 | } |
484e45bf | 727 | |
db434467 | 728 | m_parent->DoAddChild( this ); |
eda40bfc | 729 | |
76fcf0f2 | 730 | m_focusWidget = m_text; |
db434467 | 731 | |
abdeb9e7 | 732 | PostCreation(size); |
484e45bf | 733 | |
2830bf19 | 734 | if (multi_line) |
2830bf19 | 735 | gtk_widget_show(m_text); |
13289f04 | 736 | |
fab591c5 | 737 | #ifndef __WXGTK20__ |
ab46dc18 RR |
738 | if (multi_line) |
739 | { | |
740 | gtk_signal_connect(GTK_OBJECT(GTK_TEXT(m_text)->vadj), "changed", | |
741 | (GtkSignalFunc) gtk_scrollbar_changed_callback, (gpointer) this ); | |
1c35b54e | 742 | |
1c35b54e VZ |
743 | // only initialize gs_gtk_text_draw once, starting from the next the |
744 | // klass::draw will already be wxgtk_text_draw | |
745 | if ( !gs_gtk_text_draw ) | |
746 | { | |
747 | GtkDrawCallback& | |
748 | draw = GTK_WIDGET_CLASS(GTK_OBJECT(m_text)->klass)->draw; | |
749 | ||
750 | gs_gtk_text_draw = draw; | |
751 | ||
752 | draw = wxgtk_text_draw; | |
753 | } | |
ab46dc18 | 754 | } |
fab591c5 | 755 | #endif // GTK+ 1.x |
3358d36e | 756 | |
7d8268a1 | 757 | if (!value.empty()) |
2830bf19 | 758 | { |
fab591c5 RR |
759 | #ifdef __WXGTK20__ |
760 | SetValue( value ); | |
761 | #else | |
3358d36e | 762 | |
9e691f46 | 763 | #if !GTK_CHECK_VERSION(1, 2, 0) |
3358d36e VZ |
764 | // if we don't realize it, GTK 1.0.6 dies with a SIGSEGV in |
765 | // gtk_editable_insert_text() | |
766 | gtk_widget_realize(m_text); | |
767 | #endif // GTK 1.0 | |
768 | ||
fab591c5 | 769 | gint tmp = 0; |
05939a81 | 770 | #if wxUSE_UNICODE |
3358d36e | 771 | wxWX2MBbuf val = value.mbc_str(); |
05939a81 | 772 | gtk_editable_insert_text( GTK_EDITABLE(m_text), val, strlen(val), &tmp ); |
fab591c5 | 773 | #else |
2830bf19 | 774 | gtk_editable_insert_text( GTK_EDITABLE(m_text), value, value.Length(), &tmp ); |
fab591c5 | 775 | #endif |
3358d36e | 776 | |
291a8f20 RR |
777 | if (multi_line) |
778 | { | |
fab591c5 | 779 | // Bring editable's cursor uptodate. Bug in GTK. |
9e691f46 | 780 | SET_EDITABLE_POS(m_text, gtk_text_get_point( GTK_TEXT(m_text) )); |
3358d36e | 781 | } |
a8bf1826 | 782 | |
fab591c5 | 783 | #endif |
2830bf19 | 784 | } |
484e45bf | 785 | |
2830bf19 RR |
786 | if (style & wxTE_PASSWORD) |
787 | { | |
788 | if (!multi_line) | |
789 | gtk_entry_set_visibility( GTK_ENTRY(m_text), FALSE ); | |
790 | } | |
8bbe427f | 791 | |
2830bf19 RR |
792 | if (style & wxTE_READONLY) |
793 | { | |
794 | if (!multi_line) | |
795 | gtk_entry_set_editable( GTK_ENTRY(m_text), FALSE ); | |
fab591c5 RR |
796 | #ifdef __WXGTK20__ |
797 | else | |
98a8daf4 VS |
798 | gtk_text_view_set_editable( GTK_TEXT_VIEW( m_text), FALSE); |
799 | #else | |
800 | } | |
801 | else | |
802 | { | |
803 | if (multi_line) | |
804 | gtk_text_set_editable( GTK_TEXT(m_text), 1 ); | |
805 | #endif | |
806 | } | |
807 | ||
c663fbea VS |
808 | #ifdef __WXGTK20__ |
809 | if (multi_line) | |
810 | { | |
811 | if (style & wxTE_RIGHT) | |
812 | gtk_text_view_set_justification( GTK_TEXT_VIEW(m_text), GTK_JUSTIFY_RIGHT ); | |
813 | else if (style & wxTE_CENTRE) | |
814 | gtk_text_view_set_justification( GTK_TEXT_VIEW(m_text), GTK_JUSTIFY_CENTER ); | |
815 | // Left justify (alignment) is the default and we don't need to apply GTK_JUSTIFY_LEFT | |
816 | } | |
c663fbea VS |
817 | else |
818 | { | |
77f70672 RR |
819 | #ifdef __WXGTK24__ |
820 | // gtk_entry_set_alignment was introduced in gtk+-2.3.5 | |
821 | if (!gtk_check_version(2,4,0)) | |
822 | { | |
823 | if (style & wxTE_RIGHT) | |
824 | gtk_entry_set_alignment( GTK_ENTRY(m_text), 1.0 ); | |
825 | else if (style & wxTE_CENTRE) | |
826 | gtk_entry_set_alignment( GTK_ENTRY(m_text), 0.5 ); | |
827 | } | |
828 | #endif | |
c663fbea | 829 | } |
c663fbea | 830 | #endif // __WXGTK20__ |
7d8268a1 | 831 | |
fab591c5 RR |
832 | // We want to be notified about text changes. |
833 | #ifdef __WXGTK20__ | |
834 | if (multi_line) | |
835 | { | |
41b81aed | 836 | g_signal_connect( G_OBJECT(m_buffer), "changed", |
fab591c5 | 837 | GTK_SIGNAL_FUNC(gtk_text_changed_callback), (gpointer)this); |
9440c3d0 KH |
838 | |
839 | // .. and handle URLs on multi-line controls with wxTE_AUTO_URL style | |
840 | if (style & wxTE_AUTO_URL) | |
841 | { | |
842 | GtkTextIter start, end; | |
843 | m_gdkHandCursor = gdk_cursor_new(GDK_HAND2); | |
844 | m_gdkXTermCursor = gdk_cursor_new(GDK_XTERM); | |
845 | ||
846 | // We create our wxUrl tag here for slight efficiency gain - we | |
847 | // don't have to check for the tag existance in callbacks, | |
848 | // hereby it's guaranteed to exist. | |
849 | gtk_text_buffer_create_tag(m_buffer, "wxUrl", | |
850 | "foreground", "blue", | |
851 | "underline", PANGO_UNDERLINE_SINGLE, | |
852 | NULL); | |
853 | ||
854 | // Check for URLs after each text change | |
855 | g_signal_connect_after( G_OBJECT(m_buffer), "insert_text", | |
856 | GTK_SIGNAL_FUNC(au_insert_text_callback), (gpointer)this); | |
857 | g_signal_connect_after( G_OBJECT(m_buffer), "delete_range", | |
858 | GTK_SIGNAL_FUNC(au_delete_range_callback), (gpointer)this); | |
859 | ||
860 | // Block all wxUrl tag applying unless we do it ourselves, in which case we | |
861 | // block this callback temporarily. This takes care of gtk+ internal | |
862 | // gtk_text_buffer_insert_range* calls that would copy our URL tag otherwise, | |
863 | // which is undesired because only a part of the URL might be copied. | |
864 | // The insert-text signal emitted inside it will take care of newly formed | |
865 | // or wholly copied URLs. | |
866 | g_signal_connect( G_OBJECT(m_buffer), "apply_tag", | |
867 | GTK_SIGNAL_FUNC(au_apply_tag_callback), NULL); | |
868 | ||
869 | // Check for URLs in the initial string passed to Create | |
870 | gtk_text_buffer_get_start_iter(m_buffer, &start); | |
871 | gtk_text_buffer_get_end_iter(m_buffer, &end); | |
872 | au_check_range(&start, &end); | |
873 | } | |
fab591c5 RR |
874 | } |
875 | else | |
876 | #endif | |
7d8268a1 | 877 | |
fab591c5 | 878 | { |
055e633d RR |
879 | gtk_signal_connect( GTK_OBJECT(m_text), "changed", |
880 | GTK_SIGNAL_FUNC(gtk_text_changed_callback), (gpointer)this); | |
fab591c5 | 881 | } |
ce16e5d7 | 882 | |
65045edd | 883 | m_cursor = wxCursor( wxCURSOR_IBEAM ); |
13111b2a | 884 | |
9d522606 | 885 | wxTextAttr attrDef(GetForegroundColour(), GetBackgroundColour(), GetFont()); |
17665a2b VZ |
886 | SetDefaultStyle( attrDef ); |
887 | ||
7d8268a1 | 888 | return true; |
2830bf19 | 889 | } |
484e45bf | 890 | |
9d522606 | 891 | |
2830bf19 RR |
892 | void wxTextCtrl::CalculateScrollbar() |
893 | { | |
fab591c5 | 894 | #ifndef __WXGTK20__ |
2830bf19 | 895 | if ((m_windowStyle & wxTE_MULTILINE) == 0) return; |
f96aa4d9 | 896 | |
2830bf19 | 897 | GtkAdjustment *adj = GTK_TEXT(m_text)->vadj; |
805dd538 | 898 | |
2830bf19 RR |
899 | if (adj->upper - adj->page_size < 0.8) |
900 | { | |
901 | if (m_vScrollbarVisible) | |
902 | { | |
034be888 | 903 | gtk_widget_hide( m_vScrollbar ); |
7d8268a1 | 904 | m_vScrollbarVisible = false; |
2830bf19 RR |
905 | } |
906 | } | |
907 | else | |
908 | { | |
909 | if (!m_vScrollbarVisible) | |
910 | { | |
034be888 | 911 | gtk_widget_show( m_vScrollbar ); |
7d8268a1 | 912 | m_vScrollbarVisible = true; |
2830bf19 RR |
913 | } |
914 | } | |
fab591c5 | 915 | #endif |
6de97a3b | 916 | } |
c801d85f | 917 | |
03f38c58 | 918 | wxString wxTextCtrl::GetValue() const |
c801d85f | 919 | { |
902725ee | 920 | wxCHECK_MSG( m_text != NULL, wxEmptyString, wxT("invalid text ctrl") ); |
8bbe427f | 921 | |
2830bf19 RR |
922 | wxString tmp; |
923 | if (m_windowStyle & wxTE_MULTILINE) | |
924 | { | |
fab591c5 | 925 | #ifdef __WXGTK20__ |
fab591c5 | 926 | GtkTextIter start; |
41b81aed | 927 | gtk_text_buffer_get_start_iter( m_buffer, &start ); |
fab591c5 | 928 | GtkTextIter end; |
41b81aed RR |
929 | gtk_text_buffer_get_end_iter( m_buffer, &end ); |
930 | gchar *text = gtk_text_buffer_get_text( m_buffer, &start, &end, TRUE ); | |
5b87f8bf | 931 | |
fab591c5 RR |
932 | #if wxUSE_UNICODE |
933 | wxWCharBuffer buffer( wxConvUTF8.cMB2WX( text ) ); | |
934 | #else | |
935 | wxCharBuffer buffer( wxConvLocal.cWC2WX( wxConvUTF8.cMB2WC( text ) ) ); | |
936 | #endif | |
39ccbf9a VZ |
937 | if ( buffer ) |
938 | tmp = buffer; | |
a8bf1826 | 939 | |
fab591c5 RR |
940 | g_free( text ); |
941 | #else | |
2830bf19 RR |
942 | gint len = gtk_text_get_length( GTK_TEXT(m_text) ); |
943 | char *text = gtk_editable_get_chars( GTK_EDITABLE(m_text), 0, len ); | |
fab591c5 | 944 | tmp = text; |
2830bf19 | 945 | g_free( text ); |
fab591c5 | 946 | #endif |
2830bf19 RR |
947 | } |
948 | else | |
949 | { | |
fab591c5 | 950 | tmp = wxGTK_CONV_BACK( gtk_entry_get_text( GTK_ENTRY(m_text) ) ); |
2830bf19 | 951 | } |
a8bf1826 | 952 | |
2830bf19 | 953 | return tmp; |
6de97a3b | 954 | } |
c801d85f KB |
955 | |
956 | void wxTextCtrl::SetValue( const wxString &value ) | |
957 | { | |
223d09f6 | 958 | wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") ); |
8bbe427f | 959 | |
2830bf19 RR |
960 | if (m_windowStyle & wxTE_MULTILINE) |
961 | { | |
fab591c5 RR |
962 | #ifdef __WXGTK20__ |
963 | ||
964 | #if wxUSE_UNICODE | |
965 | wxCharBuffer buffer( wxConvUTF8.cWX2MB( value) ); | |
966 | #else | |
967 | wxCharBuffer buffer( wxConvUTF8.cWC2MB( wxConvLocal.cWX2WC( value ) ) ); | |
a8bf1826 | 968 | #endif |
b6ae8db8 | 969 | if (gtk_text_buffer_get_char_count(m_buffer) != 0) |
ad68ed32 RR |
970 | IgnoreNextTextUpdate(); |
971 | ||
430ae62e JS |
972 | if ( !buffer ) |
973 | { | |
974 | // what else can we do? at least don't crash... | |
975 | return; | |
976 | } | |
418cf02e | 977 | |
41b81aed | 978 | gtk_text_buffer_set_text( m_buffer, buffer, strlen(buffer) ); |
a8bf1826 | 979 | |
fab591c5 | 980 | #else |
2830bf19 RR |
981 | gint len = gtk_text_get_length( GTK_TEXT(m_text) ); |
982 | gtk_editable_delete_text( GTK_EDITABLE(m_text), 0, len ); | |
983 | len = 0; | |
01041145 | 984 | gtk_editable_insert_text( GTK_EDITABLE(m_text), value.mbc_str(), value.Length(), &len ); |
05939a81 | 985 | #endif |
2830bf19 RR |
986 | } |
987 | else | |
988 | { | |
fab591c5 | 989 | gtk_entry_set_text( GTK_ENTRY(m_text), wxGTK_CONV( value ) ); |
2830bf19 | 990 | } |
f6bcfd97 BP |
991 | |
992 | // GRG, Jun/2000: Changed this after a lot of discussion in | |
77ffb593 | 993 | // the lists. wxWidgets 2.2 will have a set of flags to |
f6bcfd97 BP |
994 | // customize this behaviour. |
995 | SetInsertionPoint(0); | |
a8bf1826 | 996 | |
7d8268a1 | 997 | m_modified = false; |
6de97a3b | 998 | } |
c801d85f KB |
999 | |
1000 | void wxTextCtrl::WriteText( const wxString &text ) | |
1001 | { | |
223d09f6 | 1002 | wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") ); |
8bbe427f | 1003 | |
17665a2b VZ |
1004 | if ( text.empty() ) |
1005 | return; | |
484e45bf | 1006 | |
c04ec496 VZ |
1007 | // gtk_text_changed_callback() will set m_modified to true but m_modified |
1008 | // shouldn't be changed by the program writing to the text control itself, | |
1009 | // so save the old value and restore when we're done | |
1010 | bool oldModified = m_modified; | |
1011 | ||
17665a2b | 1012 | if ( m_windowStyle & wxTE_MULTILINE ) |
2830bf19 | 1013 | { |
fab591c5 RR |
1014 | #ifdef __WXGTK20__ |
1015 | ||
1016 | #if wxUSE_UNICODE | |
1017 | wxCharBuffer buffer( wxConvUTF8.cWX2MB( text ) ); | |
1018 | #else | |
1019 | wxCharBuffer buffer( wxConvUTF8.cWC2MB( wxConvLocal.cWX2WC( text ) ) ); | |
a8bf1826 | 1020 | #endif |
8e033d81 VZ |
1021 | if ( !buffer ) |
1022 | { | |
1023 | // what else can we do? at least don't crash... | |
1024 | return; | |
1025 | } | |
1026 | ||
e136b747 | 1027 | // TODO: Call whatever is needed to delete the selection. |
41b81aed | 1028 | wxGtkTextInsert( m_text, m_buffer, m_defaultStyle, buffer ); |
a8bf1826 | 1029 | |
71aba833 VZ |
1030 | GtkAdjustment *adj = gtk_scrolled_window_get_vadjustment( GTK_SCROLLED_WINDOW(m_widget) ); |
1031 | // Scroll to cursor, but only if scrollbar thumb is at the very bottom | |
1032 | if ( adj->value == adj->upper - adj->page_size ) | |
1033 | { | |
1034 | gtk_text_view_scroll_to_mark( GTK_TEXT_VIEW(m_text), | |
41b81aed | 1035 | gtk_text_buffer_get_insert( m_buffer ), 0.0, FALSE, 0.0, 1.0 ); |
71aba833 | 1036 | } |
a8bf1826 | 1037 | #else // GTK 1.x |
ba3f6b44 | 1038 | // After cursor movements, gtk_text_get_point() is wrong by one. |
9e691f46 | 1039 | gtk_text_set_point( GTK_TEXT(m_text), GET_EDITABLE_POS(m_text) ); |
eda40bfc | 1040 | |
41b2e0e6 VZ |
1041 | // always use m_defaultStyle, even if it is empty as otherwise |
1042 | // resetting the style and appending some more text wouldn't work: if | |
1043 | // we don't specify the style explicitly, the old style would be used | |
2b5f62a0 | 1044 | gtk_editable_delete_selection( GTK_EDITABLE(m_text) ); |
fab591c5 | 1045 | wxGtkTextInsert(m_text, m_defaultStyle, text.c_str(), text.Len()); |
eda40bfc | 1046 | |
07e9d4f0 VZ |
1047 | // we called wxGtkTextInsert with correct font, no need to do anything |
1048 | // in UpdateFontIfNeeded() any longer | |
1049 | if ( !text.empty() ) | |
1050 | { | |
7d8268a1 | 1051 | SetUpdateFont(false); |
07e9d4f0 VZ |
1052 | } |
1053 | ||
ba3f6b44 | 1054 | // Bring editable's cursor back uptodate. |
9e691f46 | 1055 | SET_EDITABLE_POS(m_text, gtk_text_get_point( GTK_TEXT(m_text) )); |
a8bf1826 | 1056 | #endif // GTK 1.x/2.0 |
2830bf19 | 1057 | } |
17665a2b | 1058 | else // single line |
2830bf19 | 1059 | { |
2b5f62a0 VZ |
1060 | // First remove the selection if there is one |
1061 | gtk_editable_delete_selection( GTK_EDITABLE(m_text) ); | |
1062 | ||
ba3f6b44 | 1063 | // This moves the cursor pos to behind the inserted text. |
9e691f46 | 1064 | gint len = GET_EDITABLE_POS(m_text); |
a8bf1826 | 1065 | |
fab591c5 RR |
1066 | #ifdef __WXGTK20__ |
1067 | ||
1068 | #if wxUSE_UNICODE | |
1069 | wxCharBuffer buffer( wxConvUTF8.cWX2MB( text ) ); | |
1070 | #else | |
1071 | wxCharBuffer buffer( wxConvUTF8.cWC2MB( wxConvLocal.cWX2WC( text ) ) ); | |
a8bf1826 | 1072 | #endif |
82b76851 JS |
1073 | if ( !buffer ) |
1074 | { | |
1075 | // what else can we do? at least don't crash... | |
1076 | return; | |
1077 | } | |
1078 | ||
fab591c5 | 1079 | gtk_editable_insert_text( GTK_EDITABLE(m_text), buffer, strlen(buffer), &len ); |
a8bf1826 | 1080 | |
fab591c5 RR |
1081 | #else |
1082 | gtk_editable_insert_text( GTK_EDITABLE(m_text), text.c_str(), text.Len(), &len ); | |
1083 | #endif | |
3358d36e | 1084 | |
ba3f6b44 | 1085 | // Bring entry's cursor uptodate. |
9e691f46 | 1086 | gtk_entry_set_position( GTK_ENTRY(m_text), len ); |
2830bf19 | 1087 | } |
eda40bfc | 1088 | |
c04ec496 | 1089 | m_modified = oldModified; |
6de97a3b | 1090 | } |
c801d85f | 1091 | |
a6e21573 HH |
1092 | void wxTextCtrl::AppendText( const wxString &text ) |
1093 | { | |
ba3f6b44 RR |
1094 | SetInsertionPointEnd(); |
1095 | WriteText( text ); | |
1096 | } | |
2df7be7f | 1097 | |
ba3f6b44 RR |
1098 | wxString wxTextCtrl::GetLineText( long lineNo ) const |
1099 | { | |
a6e21573 HH |
1100 | if (m_windowStyle & wxTE_MULTILINE) |
1101 | { | |
fab591c5 | 1102 | #ifndef __WXGTK20__ |
ba3f6b44 RR |
1103 | gint len = gtk_text_get_length( GTK_TEXT(m_text) ); |
1104 | char *text = gtk_editable_get_chars( GTK_EDITABLE(m_text), 0, len ); | |
bb69661b | 1105 | |
ba3f6b44 RR |
1106 | if (text) |
1107 | { | |
902725ee | 1108 | wxString buf; |
ba3f6b44 RR |
1109 | long i; |
1110 | int currentLine = 0; | |
1111 | for (i = 0; currentLine != lineNo && text[i]; i++ ) | |
1112 | if (text[i] == '\n') | |
1113 | currentLine++; | |
1114 | // Now get the text | |
1115 | int j; | |
1116 | for (j = 0; text[i] && text[i] != '\n'; i++, j++ ) | |
1117 | buf += text[i]; | |
17665a2b | 1118 | |
ba3f6b44 RR |
1119 | g_free( text ); |
1120 | return buf; | |
bb69661b | 1121 | } |
ba3f6b44 | 1122 | else |
bb69661b | 1123 | { |
ba3f6b44 | 1124 | return wxEmptyString; |
bb69661b | 1125 | } |
905f2110 | 1126 | #else |
905f2110 | 1127 | GtkTextIter line; |
41b81aed | 1128 | gtk_text_buffer_get_iter_at_line(m_buffer,&line,lineNo); |
8c6785f0 MR |
1129 | GtkTextIter end = line; |
1130 | gtk_text_iter_forward_to_line_end(&end); | |
41b81aed | 1131 | gchar *text = gtk_text_buffer_get_text(m_buffer,&line,&end,TRUE); |
58192970 | 1132 | wxString result(wxGTK_CONV_BACK(text)); |
905f2110 | 1133 | g_free(text); |
8c6785f0 | 1134 | return result; |
905f2110 | 1135 | #endif |
a6e21573 | 1136 | } |
ba3f6b44 | 1137 | else |
a81258be | 1138 | { |
ba3f6b44 RR |
1139 | if (lineNo == 0) return GetValue(); |
1140 | return wxEmptyString; | |
a81258be | 1141 | } |
6de97a3b | 1142 | } |
c801d85f | 1143 | |
a81258be RR |
1144 | void wxTextCtrl::OnDropFiles( wxDropFilesEvent &WXUNUSED(event) ) |
1145 | { | |
ac0d36b5 HH |
1146 | /* If you implement this, don't forget to update the documentation! |
1147 | * (file docs/latex/wx/text.tex) */ | |
223d09f6 | 1148 | wxFAIL_MSG( wxT("wxTextCtrl::OnDropFiles not implemented") ); |
a81258be | 1149 | } |
112892b9 | 1150 | |
0efe5ba7 | 1151 | bool wxTextCtrl::PositionToXY(long pos, long *x, long *y ) const |
c801d85f | 1152 | { |
96385642 | 1153 | if ( m_windowStyle & wxTE_MULTILINE ) |
805dd538 | 1154 | { |
f29a481a MR |
1155 | #ifdef __WXGTK20__ |
1156 | GtkTextIter iter; | |
1157 | gtk_text_buffer_get_iter_at_offset(m_buffer, &iter, pos); | |
1158 | if (gtk_text_iter_is_end(&iter)) | |
1159 | return false; | |
1160 | ||
1161 | *y = gtk_text_iter_get_line(&iter); | |
1162 | *x = gtk_text_iter_get_line_offset(&iter); | |
1163 | #else | |
96385642 VZ |
1164 | wxString text = GetValue(); |
1165 | ||
6085b116 | 1166 | // cast to prevent warning. But pos really should've been unsigned. |
2829d9e3 | 1167 | if( (unsigned long)pos > text.Len() ) |
7d8268a1 | 1168 | return false; |
96385642 | 1169 | |
ac0d36b5 HH |
1170 | *x=0; // First Col |
1171 | *y=0; // First Line | |
2829d9e3 | 1172 | |
05939a81 OK |
1173 | const wxChar* stop = text.c_str() + pos; |
1174 | for ( const wxChar *p = text.c_str(); p < stop; p++ ) | |
96385642 | 1175 | { |
223d09f6 | 1176 | if (*p == wxT('\n')) |
96385642 VZ |
1177 | { |
1178 | (*y)++; | |
ac0d36b5 | 1179 | *x=0; |
96385642 VZ |
1180 | } |
1181 | else | |
1182 | (*x)++; | |
1183 | } | |
f29a481a | 1184 | #endif |
805dd538 | 1185 | } |
96385642 VZ |
1186 | else // single line control |
1187 | { | |
2829d9e3 | 1188 | if ( pos <= GTK_ENTRY(m_text)->text_length ) |
96385642 | 1189 | { |
ac0d36b5 | 1190 | *y = 0; |
96385642 VZ |
1191 | *x = pos; |
1192 | } | |
1193 | else | |
1194 | { | |
1195 | // index out of bounds | |
7d8268a1 | 1196 | return false; |
96385642 | 1197 | } |
8bbe427f | 1198 | } |
96385642 | 1199 | |
7d8268a1 | 1200 | return true; |
6de97a3b | 1201 | } |
c801d85f | 1202 | |
e3ca08dd | 1203 | long wxTextCtrl::XYToPosition(long x, long y ) const |
c801d85f | 1204 | { |
2830bf19 | 1205 | if (!(m_windowStyle & wxTE_MULTILINE)) return 0; |
805dd538 | 1206 | |
f29a481a MR |
1207 | #ifdef __WXGTK20__ |
1208 | GtkTextIter iter; | |
21d23b88 MR |
1209 | if (y >= gtk_text_buffer_get_line_count (m_buffer)) |
1210 | return -1; | |
1211 | ||
1212 | gtk_text_buffer_get_iter_at_line(m_buffer, &iter, y); | |
1213 | if (x >= gtk_text_iter_get_chars_in_line (&iter)) | |
1214 | return -1; | |
1215 | ||
1216 | return gtk_text_iter_get_offset(&iter) + x; | |
f29a481a | 1217 | #else |
2830bf19 | 1218 | long pos=0; |
ac0d36b5 | 1219 | for( int i=0; i<y; i++ ) pos += GetLineLength(i) + 1; // one for '\n' |
8bbe427f | 1220 | |
3358d36e | 1221 | pos += x; |
2830bf19 | 1222 | return pos; |
f29a481a | 1223 | #endif |
6de97a3b | 1224 | } |
c801d85f | 1225 | |
a81258be | 1226 | int wxTextCtrl::GetLineLength(long lineNo) const |
c801d85f | 1227 | { |
f29a481a MR |
1228 | #ifdef __WXGTK20__ |
1229 | if (m_windowStyle & wxTE_MULTILINE) | |
1230 | { | |
1231 | int last_line = gtk_text_buffer_get_line_count( m_buffer ) - 1; | |
1232 | if (lineNo > last_line) | |
1233 | return -1; | |
1234 | ||
1235 | GtkTextIter iter; | |
1236 | gtk_text_buffer_get_iter_at_line(m_buffer, &iter, lineNo); | |
1237 | // get_chars_in_line return includes paragraph delimiters, so need to subtract 1 IF it is not the last line | |
1238 | return gtk_text_iter_get_chars_in_line(&iter) - ((lineNo == last_line) ? 0 : 1); | |
1239 | } | |
1240 | else | |
1241 | #endif | |
1242 | { | |
1243 | wxString str = GetLineText (lineNo); | |
1244 | return (int) str.Length(); | |
1245 | } | |
6de97a3b | 1246 | } |
c801d85f | 1247 | |
a81258be | 1248 | int wxTextCtrl::GetNumberOfLines() const |
c801d85f | 1249 | { |
2830bf19 | 1250 | if (m_windowStyle & wxTE_MULTILINE) |
a81258be | 1251 | { |
fab591c5 | 1252 | #ifdef __WXGTK20__ |
41b81aed | 1253 | return gtk_text_buffer_get_line_count( m_buffer ); |
fab591c5 | 1254 | #else |
2830bf19 RR |
1255 | gint len = gtk_text_get_length( GTK_TEXT(m_text) ); |
1256 | char *text = gtk_editable_get_chars( GTK_EDITABLE(m_text), 0, len ); | |
1257 | ||
1258 | if (text) | |
1259 | { | |
1260 | int currentLine = 0; | |
1261 | for (int i = 0; i < len; i++ ) | |
96385642 | 1262 | { |
2830bf19 | 1263 | if (text[i] == '\n') |
96385642 VZ |
1264 | currentLine++; |
1265 | } | |
2830bf19 | 1266 | g_free( text ); |
2829d9e3 VZ |
1267 | |
1268 | // currentLine is 0 based, add 1 to get number of lines | |
1269 | return currentLine + 1; | |
2830bf19 RR |
1270 | } |
1271 | else | |
96385642 | 1272 | { |
2830bf19 | 1273 | return 0; |
96385642 | 1274 | } |
fab591c5 | 1275 | #endif |
a81258be RR |
1276 | } |
1277 | else | |
2830bf19 | 1278 | { |
96385642 | 1279 | return 1; |
2830bf19 | 1280 | } |
6de97a3b | 1281 | } |
c801d85f | 1282 | |
debe6624 | 1283 | void wxTextCtrl::SetInsertionPoint( long pos ) |
c801d85f | 1284 | { |
223d09f6 | 1285 | wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") ); |
3358d36e | 1286 | |
74c5a810 | 1287 | if ( IsMultiLine() ) |
291a8f20 | 1288 | { |
fab591c5 | 1289 | #ifdef __WXGTK20__ |
fab591c5 | 1290 | GtkTextIter iter; |
41b81aed RR |
1291 | gtk_text_buffer_get_iter_at_offset( m_buffer, &iter, pos ); |
1292 | gtk_text_buffer_place_cursor( m_buffer, &iter ); | |
74c5a810 VZ |
1293 | gtk_text_view_scroll_mark_onscreen |
1294 | ( | |
1295 | GTK_TEXT_VIEW(m_text), | |
41b81aed | 1296 | gtk_text_buffer_get_insert( m_buffer ) |
74c5a810 VZ |
1297 | ); |
1298 | #else // GTK+ 1.x | |
291a8f20 RR |
1299 | gtk_signal_disconnect_by_func( GTK_OBJECT(m_text), |
1300 | GTK_SIGNAL_FUNC(gtk_text_changed_callback), (gpointer)this); | |
3358d36e | 1301 | |
291a8f20 | 1302 | /* we fake a set_point by inserting and deleting. as the user |
fab591c5 | 1303 | isn't supposed to get to know about this non-sense, we |
3358d36e VZ |
1304 | disconnect so that no events are sent to the user program. */ |
1305 | ||
291a8f20 RR |
1306 | gint tmp = (gint)pos; |
1307 | gtk_editable_insert_text( GTK_EDITABLE(m_text), " ", 1, &tmp ); | |
3358d36e VZ |
1308 | gtk_editable_delete_text( GTK_EDITABLE(m_text), tmp-1, tmp ); |
1309 | ||
291a8f20 RR |
1310 | gtk_signal_connect( GTK_OBJECT(m_text), "changed", |
1311 | GTK_SIGNAL_FUNC(gtk_text_changed_callback), (gpointer)this); | |
3358d36e | 1312 | |
fab591c5 | 1313 | // bring editable's cursor uptodate. Bug in GTK. |
9e691f46 | 1314 | SET_EDITABLE_POS(m_text, gtk_text_get_point( GTK_TEXT(m_text) )); |
74c5a810 | 1315 | #endif // GTK+ 2/1 |
ac0d36b5 | 1316 | } |
2830bf19 | 1317 | else |
291a8f20 | 1318 | { |
d59051dd | 1319 | gtk_entry_set_position( GTK_ENTRY(m_text), (int)pos ); |
3358d36e | 1320 | |
fab591c5 | 1321 | // Bring editable's cursor uptodate. Bug in GTK. |
9e691f46 | 1322 | SET_EDITABLE_POS(m_text, (guint32)pos); |
291a8f20 | 1323 | } |
6de97a3b | 1324 | } |
c801d85f | 1325 | |
03f38c58 | 1326 | void wxTextCtrl::SetInsertionPointEnd() |
c801d85f | 1327 | { |
223d09f6 | 1328 | wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") ); |
8bbe427f | 1329 | |
d59051dd | 1330 | if (m_windowStyle & wxTE_MULTILINE) |
fab591c5 RR |
1331 | { |
1332 | #ifdef __WXGTK20__ | |
fab591c5 | 1333 | GtkTextIter end; |
41b81aed RR |
1334 | gtk_text_buffer_get_end_iter( m_buffer, &end ); |
1335 | gtk_text_buffer_place_cursor( m_buffer, &end ); | |
fab591c5 | 1336 | #else |
d59051dd | 1337 | SetInsertionPoint(gtk_text_get_length(GTK_TEXT(m_text))); |
fab591c5 RR |
1338 | #endif |
1339 | } | |
d59051dd | 1340 | else |
fab591c5 | 1341 | { |
d59051dd | 1342 | gtk_entry_set_position( GTK_ENTRY(m_text), -1 ); |
fab591c5 | 1343 | } |
6de97a3b | 1344 | } |
c801d85f | 1345 | |
debe6624 | 1346 | void wxTextCtrl::SetEditable( bool editable ) |
c801d85f | 1347 | { |
223d09f6 | 1348 | wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") ); |
8bbe427f | 1349 | |
2830bf19 | 1350 | if (m_windowStyle & wxTE_MULTILINE) |
fab591c5 RR |
1351 | { |
1352 | #ifdef __WXGTK20__ | |
1353 | gtk_text_view_set_editable( GTK_TEXT_VIEW(m_text), editable ); | |
1354 | #else | |
2830bf19 | 1355 | gtk_text_set_editable( GTK_TEXT(m_text), editable ); |
fab591c5 RR |
1356 | #endif |
1357 | } | |
2830bf19 | 1358 | else |
fab591c5 | 1359 | { |
2830bf19 | 1360 | gtk_entry_set_editable( GTK_ENTRY(m_text), editable ); |
fab591c5 | 1361 | } |
6de97a3b | 1362 | } |
c801d85f | 1363 | |
68df5777 RR |
1364 | bool wxTextCtrl::Enable( bool enable ) |
1365 | { | |
1366 | if (!wxWindowBase::Enable(enable)) | |
1367 | { | |
1368 | // nothing to do | |
7d8268a1 | 1369 | return false; |
68df5777 | 1370 | } |
f6bcfd97 | 1371 | |
68df5777 RR |
1372 | if (m_windowStyle & wxTE_MULTILINE) |
1373 | { | |
fab591c5 RR |
1374 | #ifdef __WXGTK20__ |
1375 | SetEditable( enable ); | |
1376 | #else | |
68df5777 | 1377 | gtk_text_set_editable( GTK_TEXT(m_text), enable ); |
5abf8c9d | 1378 | OnParentEnable(enable); |
fab591c5 | 1379 | #endif |
68df5777 RR |
1380 | } |
1381 | else | |
1382 | { | |
1383 | gtk_widget_set_sensitive( m_text, enable ); | |
1384 | } | |
1385 | ||
7d8268a1 | 1386 | return true; |
68df5777 RR |
1387 | } |
1388 | ||
fdca68a6 JS |
1389 | // wxGTK-specific: called recursively by Enable, |
1390 | // to give widgets an oppprtunity to correct their colours after they | |
1391 | // have been changed by Enable | |
1392 | void wxTextCtrl::OnParentEnable( bool enable ) | |
1393 | { | |
1394 | // If we have a custom background colour, we use this colour in both | |
1395 | // disabled and enabled mode, or we end up with a different colour under the | |
1396 | // text. | |
1397 | wxColour oldColour = GetBackgroundColour(); | |
1398 | if (oldColour.Ok()) | |
1399 | { | |
1400 | // Need to set twice or it'll optimize the useful stuff out | |
1401 | if (oldColour == * wxWHITE) | |
1402 | SetBackgroundColour(*wxBLACK); | |
1403 | else | |
1404 | SetBackgroundColour(*wxWHITE); | |
1405 | SetBackgroundColour(oldColour); | |
1406 | } | |
1407 | } | |
1408 | ||
3a9fa0d6 VZ |
1409 | void wxTextCtrl::MarkDirty() |
1410 | { | |
7d8268a1 | 1411 | m_modified = true; |
3a9fa0d6 VZ |
1412 | } |
1413 | ||
0efe5ba7 VZ |
1414 | void wxTextCtrl::DiscardEdits() |
1415 | { | |
7d8268a1 | 1416 | m_modified = false; |
0efe5ba7 VZ |
1417 | } |
1418 | ||
ce2f50e3 VZ |
1419 | // ---------------------------------------------------------------------------- |
1420 | // max text length support | |
1421 | // ---------------------------------------------------------------------------- | |
1422 | ||
1423 | void wxTextCtrl::IgnoreNextTextUpdate() | |
1424 | { | |
7d8268a1 | 1425 | m_ignoreNextUpdate = true; |
ce2f50e3 VZ |
1426 | } |
1427 | ||
1428 | bool wxTextCtrl::IgnoreTextUpdate() | |
1429 | { | |
1430 | if ( m_ignoreNextUpdate ) | |
1431 | { | |
7d8268a1 | 1432 | m_ignoreNextUpdate = false; |
ce2f50e3 | 1433 | |
7d8268a1 | 1434 | return true; |
ce2f50e3 VZ |
1435 | } |
1436 | ||
7d8268a1 | 1437 | return false; |
ce2f50e3 VZ |
1438 | } |
1439 | ||
d7eee191 VZ |
1440 | void wxTextCtrl::SetMaxLength(unsigned long len) |
1441 | { | |
1442 | if ( !HasFlag(wxTE_MULTILINE) ) | |
1443 | { | |
1444 | gtk_entry_set_max_length(GTK_ENTRY(m_text), len); | |
ce2f50e3 VZ |
1445 | |
1446 | // there is a bug in GTK+ 1.2.x: "changed" signal is emitted even if | |
1447 | // we had tried to enter more text than allowed by max text length and | |
1448 | // the text wasn't really changed | |
1449 | // | |
1450 | // to detect this and generate TEXT_MAXLEN event instead of | |
1451 | // TEXT_CHANGED one in this case we also catch "insert_text" signal | |
1452 | // | |
1453 | // when max len is set to 0 we disconnect our handler as it means that | |
1454 | // we shouldn't check anything any more | |
1455 | if ( len ) | |
1456 | { | |
1457 | gtk_signal_connect( GTK_OBJECT(m_text), | |
1458 | "insert_text", | |
1459 | GTK_SIGNAL_FUNC(gtk_insert_text_callback), | |
1460 | (gpointer)this); | |
1461 | } | |
1462 | else // no checking | |
1463 | { | |
1464 | gtk_signal_disconnect_by_func | |
1465 | ( | |
1466 | GTK_OBJECT(m_text), | |
1467 | GTK_SIGNAL_FUNC(gtk_insert_text_callback), | |
1468 | (gpointer)this | |
1469 | ); | |
1470 | } | |
d7eee191 VZ |
1471 | } |
1472 | } | |
1473 | ||
debe6624 | 1474 | void wxTextCtrl::SetSelection( long from, long to ) |
c801d85f | 1475 | { |
223d09f6 | 1476 | wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") ); |
8bbe427f | 1477 | |
2b5f62a0 VZ |
1478 | if (from == -1 && to == -1) |
1479 | { | |
1480 | from = 0; | |
1481 | to = GetValue().Length(); | |
1482 | } | |
1483 | ||
fab591c5 | 1484 | #ifndef __WXGTK20__ |
a1f79c1e VZ |
1485 | if ( (m_windowStyle & wxTE_MULTILINE) && |
1486 | !GTK_TEXT(m_text)->line_start_cache ) | |
1487 | { | |
1488 | // tell the programmer that it didn't work | |
1489 | wxLogDebug(_T("Can't call SetSelection() before realizing the control")); | |
1490 | return; | |
1491 | } | |
fab591c5 | 1492 | #endif |
a1f79c1e | 1493 | |
fab591c5 RR |
1494 | if (m_windowStyle & wxTE_MULTILINE) |
1495 | { | |
1496 | #ifdef __WXGTK20__ | |
739e366a | 1497 | GtkTextIter fromi, toi; |
41b81aed RR |
1498 | gtk_text_buffer_get_iter_at_offset( m_buffer, &fromi, from ); |
1499 | gtk_text_buffer_get_iter_at_offset( m_buffer, &toi, to ); | |
739e366a | 1500 | |
41b81aed RR |
1501 | gtk_text_buffer_place_cursor( m_buffer, &toi ); |
1502 | gtk_text_buffer_move_mark_by_name( m_buffer, "selection_bound", &fromi ); | |
fab591c5 RR |
1503 | #else |
1504 | gtk_editable_select_region( GTK_EDITABLE(m_text), (gint)from, (gint)to ); | |
1505 | #endif | |
1506 | } | |
1507 | else | |
1508 | { | |
1509 | gtk_editable_select_region( GTK_EDITABLE(m_text), (gint)from, (gint)to ); | |
1510 | } | |
6de97a3b | 1511 | } |
c801d85f | 1512 | |
afbe906a | 1513 | void wxTextCtrl::ShowPosition( long pos ) |
c801d85f | 1514 | { |
afbe906a RR |
1515 | if (m_windowStyle & wxTE_MULTILINE) |
1516 | { | |
71aba833 | 1517 | #ifdef __WXGTK20__ |
71aba833 | 1518 | GtkTextIter iter; |
41b81aed | 1519 | gtk_text_buffer_get_start_iter( m_buffer, &iter ); |
71aba833 | 1520 | gtk_text_iter_set_offset( &iter, pos ); |
41b81aed | 1521 | GtkTextMark *mark = gtk_text_buffer_create_mark( m_buffer, NULL, &iter, TRUE ); |
71aba833 VZ |
1522 | gtk_text_view_scroll_to_mark( GTK_TEXT_VIEW(m_text), mark, 0.0, FALSE, 0.0, 0.0 ); |
1523 | #else // GTK 1.x | |
afbe906a RR |
1524 | GtkAdjustment *vp = GTK_TEXT(m_text)->vadj; |
1525 | float totalLines = (float) GetNumberOfLines(); | |
1526 | long posX; | |
1527 | long posY; | |
1528 | PositionToXY(pos, &posX, &posY); | |
1529 | float posLine = (float) posY; | |
1530 | float p = (posLine/totalLines)*(vp->upper - vp->lower) + vp->lower; | |
1531 | gtk_adjustment_set_value(GTK_TEXT(m_text)->vadj, p); | |
71aba833 | 1532 | #endif // GTK 1.x/2.x |
afbe906a | 1533 | } |
6de97a3b | 1534 | } |
c801d85f | 1535 | |
692c9b86 VZ |
1536 | #ifdef __WXGTK20__ |
1537 | ||
1538 | wxTextCtrlHitTestResult | |
1539 | wxTextCtrl::HitTest(const wxPoint& pt, long *pos) const | |
1540 | { | |
1541 | if ( !IsMultiLine() ) | |
1542 | { | |
1543 | // not supported | |
1544 | return wxTE_HT_UNKNOWN; | |
1545 | } | |
1546 | ||
1547 | int x, y; | |
1548 | gtk_text_view_window_to_buffer_coords | |
1549 | ( | |
1550 | GTK_TEXT_VIEW(m_text), | |
1551 | GTK_TEXT_WINDOW_TEXT, | |
1552 | pt.x, pt.y, | |
1553 | &x, &y | |
1554 | ); | |
1555 | ||
1556 | GtkTextIter iter; | |
1557 | gtk_text_view_get_iter_at_location(GTK_TEXT_VIEW(m_text), &iter, x, y); | |
1558 | if ( pos ) | |
1559 | *pos = gtk_text_iter_get_offset(&iter); | |
1560 | ||
1561 | return wxTE_HT_ON_TEXT; | |
1562 | } | |
1563 | ||
1564 | #endif // __WXGTK20__ | |
1565 | ||
03f38c58 | 1566 | long wxTextCtrl::GetInsertionPoint() const |
c801d85f | 1567 | { |
223d09f6 | 1568 | wxCHECK_MSG( m_text != NULL, 0, wxT("invalid text ctrl") ); |
8bbe427f | 1569 | |
fab591c5 RR |
1570 | #ifdef __WXGTK20__ |
1571 | if (m_windowStyle & wxTE_MULTILINE) | |
1572 | { | |
fab591c5 RR |
1573 | // There is no direct accessor for the cursor, but |
1574 | // internally, the cursor is the "mark" called | |
1575 | // "insert" in the text view's btree structure. | |
a8bf1826 | 1576 | |
41b81aed | 1577 | GtkTextMark *mark = gtk_text_buffer_get_insert( m_buffer ); |
fab591c5 | 1578 | GtkTextIter cursor; |
41b81aed | 1579 | gtk_text_buffer_get_iter_at_mark( m_buffer, &cursor, mark ); |
a8bf1826 | 1580 | |
fab591c5 RR |
1581 | return gtk_text_iter_get_offset( &cursor ); |
1582 | } | |
1583 | else | |
1584 | #endif | |
1585 | { | |
0a164d4c | 1586 | return (long) GET_EDITABLE_POS(m_text); |
fab591c5 | 1587 | } |
6de97a3b | 1588 | } |
c801d85f | 1589 | |
7d8268a1 | 1590 | wxTextPos wxTextCtrl::GetLastPosition() const |
c801d85f | 1591 | { |
223d09f6 | 1592 | wxCHECK_MSG( m_text != NULL, 0, wxT("invalid text ctrl") ); |
8bbe427f | 1593 | |
2830bf19 | 1594 | int pos = 0; |
a8bf1826 | 1595 | |
2830bf19 | 1596 | if (m_windowStyle & wxTE_MULTILINE) |
fab591c5 RR |
1597 | { |
1598 | #ifdef __WXGTK20__ | |
fab591c5 | 1599 | GtkTextIter end; |
41b81aed | 1600 | gtk_text_buffer_get_end_iter( m_buffer, &end ); |
a8bf1826 | 1601 | |
fab591c5 RR |
1602 | pos = gtk_text_iter_get_offset( &end ); |
1603 | #else | |
2830bf19 | 1604 | pos = gtk_text_get_length( GTK_TEXT(m_text) ); |
fab591c5 RR |
1605 | #endif |
1606 | } | |
2830bf19 | 1607 | else |
fab591c5 | 1608 | { |
2830bf19 | 1609 | pos = GTK_ENTRY(m_text)->text_length; |
fab591c5 | 1610 | } |
805dd538 | 1611 | |
ac0d36b5 | 1612 | return (long)pos; |
6de97a3b | 1613 | } |
c801d85f | 1614 | |
debe6624 | 1615 | void wxTextCtrl::Remove( long from, long to ) |
c801d85f | 1616 | { |
223d09f6 | 1617 | wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") ); |
8bbe427f | 1618 | |
581ee8a9 | 1619 | #ifdef __WXGTK20__ |
fdd55287 | 1620 | if (m_windowStyle & wxTE_MULTILINE) |
581ee8a9 | 1621 | { |
581ee8a9 | 1622 | GtkTextIter fromi, toi; |
41b81aed RR |
1623 | gtk_text_buffer_get_iter_at_offset( m_buffer, &fromi, from ); |
1624 | gtk_text_buffer_get_iter_at_offset( m_buffer, &toi, to ); | |
581ee8a9 | 1625 | |
41b81aed | 1626 | gtk_text_buffer_delete( m_buffer, &fromi, &toi ); |
581ee8a9 VZ |
1627 | } |
1628 | else // single line | |
fab591c5 | 1629 | #endif |
581ee8a9 | 1630 | gtk_editable_delete_text( GTK_EDITABLE(m_text), (gint)from, (gint)to ); |
6de97a3b | 1631 | } |
c801d85f | 1632 | |
debe6624 | 1633 | void wxTextCtrl::Replace( long from, long to, const wxString &value ) |
c801d85f | 1634 | { |
223d09f6 | 1635 | wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") ); |
8bbe427f | 1636 | |
581ee8a9 | 1637 | Remove( from, to ); |
bb69661b | 1638 | |
7d8268a1 | 1639 | if (!value.empty()) |
2df7be7f | 1640 | { |
581ee8a9 VZ |
1641 | #ifdef __WXGTK20__ |
1642 | SetInsertionPoint( from ); | |
1643 | WriteText( value ); | |
1644 | #else // GTK 1.x | |
2df7be7f | 1645 | gint pos = (gint)from; |
05939a81 | 1646 | #if wxUSE_UNICODE |
2df7be7f RR |
1647 | wxWX2MBbuf buf = value.mbc_str(); |
1648 | gtk_editable_insert_text( GTK_EDITABLE(m_text), buf, strlen(buf), &pos ); | |
05939a81 | 1649 | #else |
2df7be7f | 1650 | gtk_editable_insert_text( GTK_EDITABLE(m_text), value, value.Length(), &pos ); |
581ee8a9 VZ |
1651 | #endif // wxUSE_UNICODE |
1652 | #endif // GTK 1.x/2.x | |
2df7be7f | 1653 | } |
6de97a3b | 1654 | } |
c801d85f | 1655 | |
03f38c58 | 1656 | void wxTextCtrl::Cut() |
c801d85f | 1657 | { |
223d09f6 | 1658 | wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") ); |
8bbe427f | 1659 | |
bbde2e29 VS |
1660 | #ifdef __WXGTK20__ |
1661 | if (m_windowStyle & wxTE_MULTILINE) | |
1662 | g_signal_emit_by_name(m_text, "cut-clipboard"); | |
1663 | else | |
fab591c5 | 1664 | #endif |
bbde2e29 | 1665 | gtk_editable_cut_clipboard(GTK_EDITABLE(m_text) DUMMY_CLIPBOARD_ARG); |
6de97a3b | 1666 | } |
c801d85f | 1667 | |
03f38c58 | 1668 | void wxTextCtrl::Copy() |
c801d85f | 1669 | { |
223d09f6 | 1670 | wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") ); |
8bbe427f | 1671 | |
bbde2e29 VS |
1672 | #ifdef __WXGTK20__ |
1673 | if (m_windowStyle & wxTE_MULTILINE) | |
1674 | g_signal_emit_by_name(m_text, "copy-clipboard"); | |
1675 | else | |
fab591c5 | 1676 | #endif |
bbde2e29 | 1677 | gtk_editable_copy_clipboard(GTK_EDITABLE(m_text) DUMMY_CLIPBOARD_ARG); |
6de97a3b | 1678 | } |
c801d85f | 1679 | |
03f38c58 | 1680 | void wxTextCtrl::Paste() |
c801d85f | 1681 | { |
223d09f6 | 1682 | wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") ); |
8bbe427f | 1683 | |
bbde2e29 VS |
1684 | #ifdef __WXGTK20__ |
1685 | if (m_windowStyle & wxTE_MULTILINE) | |
1686 | g_signal_emit_by_name(m_text, "paste-clipboard"); | |
1687 | else | |
fab591c5 | 1688 | #endif |
bbde2e29 | 1689 | gtk_editable_paste_clipboard(GTK_EDITABLE(m_text) DUMMY_CLIPBOARD_ARG); |
6de97a3b | 1690 | } |
c801d85f | 1691 | |
ca8b28f2 JS |
1692 | // Undo/redo |
1693 | void wxTextCtrl::Undo() | |
1694 | { | |
1695 | // TODO | |
223d09f6 | 1696 | wxFAIL_MSG( wxT("wxTextCtrl::Undo not implemented") ); |
ca8b28f2 JS |
1697 | } |
1698 | ||
1699 | void wxTextCtrl::Redo() | |
1700 | { | |
1701 | // TODO | |
223d09f6 | 1702 | wxFAIL_MSG( wxT("wxTextCtrl::Redo not implemented") ); |
ca8b28f2 JS |
1703 | } |
1704 | ||
1705 | bool wxTextCtrl::CanUndo() const | |
1706 | { | |
1707 | // TODO | |
4855a477 | 1708 | //wxFAIL_MSG( wxT("wxTextCtrl::CanUndo not implemented") ); |
7d8268a1 | 1709 | return false; |
ca8b28f2 JS |
1710 | } |
1711 | ||
1712 | bool wxTextCtrl::CanRedo() const | |
1713 | { | |
1714 | // TODO | |
4855a477 | 1715 | //wxFAIL_MSG( wxT("wxTextCtrl::CanRedo not implemented") ); |
7d8268a1 | 1716 | return false; |
ca8b28f2 JS |
1717 | } |
1718 | ||
1719 | // If the return values from and to are the same, there is no | |
1720 | // selection. | |
2d4cc5b6 | 1721 | void wxTextCtrl::GetSelection(long* fromOut, long* toOut) const |
ca8b28f2 | 1722 | { |
223d09f6 | 1723 | wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") ); |
bb69661b | 1724 | |
5b87f8bf RD |
1725 | gint from = -1; |
1726 | gint to = -1; | |
7d8268a1 | 1727 | bool haveSelection = false; |
5b87f8bf | 1728 | |
fb47b99f | 1729 | #ifdef __WXGTK20__ |
5b87f8bf RD |
1730 | if (m_windowStyle & wxTE_MULTILINE) |
1731 | { | |
5b87f8bf | 1732 | GtkTextIter ifrom, ito; |
41b81aed | 1733 | if ( gtk_text_buffer_get_selection_bounds(m_buffer, &ifrom, &ito) ) |
5b87f8bf | 1734 | { |
7d8268a1 | 1735 | haveSelection = true; |
5b87f8bf RD |
1736 | from = gtk_text_iter_get_offset(&ifrom); |
1737 | to = gtk_text_iter_get_offset(&ito); | |
1738 | } | |
1739 | } | |
1740 | else // not multi-line | |
1741 | { | |
1742 | if ( gtk_editable_get_selection_bounds( GTK_EDITABLE(m_text), | |
1743 | &from, &to) ) | |
1744 | { | |
7d8268a1 | 1745 | haveSelection = true; |
5b87f8bf RD |
1746 | } |
1747 | } | |
1748 | #else // not GTK2 | |
1749 | if ( (GTK_EDITABLE(m_text)->has_selection) ) | |
1750 | { | |
7d8268a1 | 1751 | haveSelection = true; |
5b87f8bf RD |
1752 | from = (long) GTK_EDITABLE(m_text)->selection_start_pos; |
1753 | to = (long) GTK_EDITABLE(m_text)->selection_end_pos; | |
1754 | } | |
9e691f46 | 1755 | #endif |
2d4cc5b6 | 1756 | |
5b87f8bf RD |
1757 | if (! haveSelection ) |
1758 | from = to = GetInsertionPoint(); | |
1759 | ||
1760 | if ( from > to ) | |
1761 | { | |
1762 | // exchange them to be compatible with wxMSW | |
1763 | gint tmp = from; | |
1764 | from = to; | |
1765 | to = tmp; | |
1766 | } | |
bb69661b | 1767 | |
2d4cc5b6 VZ |
1768 | if ( fromOut ) |
1769 | *fromOut = from; | |
1770 | if ( toOut ) | |
1771 | *toOut = to; | |
ca8b28f2 JS |
1772 | } |
1773 | ||
5b87f8bf | 1774 | |
ca8b28f2 JS |
1775 | bool wxTextCtrl::IsEditable() const |
1776 | { | |
7d8268a1 | 1777 | wxCHECK_MSG( m_text != NULL, false, wxT("invalid text ctrl") ); |
05060eeb | 1778 | |
9e691f46 | 1779 | #ifdef __WXGTK20__ |
fdd55287 VZ |
1780 | if (m_windowStyle & wxTE_MULTILINE) |
1781 | { | |
1782 | return gtk_text_view_get_editable(GTK_TEXT_VIEW(m_text)); | |
1783 | } | |
1784 | else | |
1785 | { | |
1786 | return gtk_editable_get_editable(GTK_EDITABLE(m_text)); | |
1787 | } | |
9e691f46 | 1788 | #else |
05060eeb | 1789 | return GTK_EDITABLE(m_text)->editable; |
9e691f46 | 1790 | #endif |
ca8b28f2 JS |
1791 | } |
1792 | ||
0efe5ba7 VZ |
1793 | bool wxTextCtrl::IsModified() const |
1794 | { | |
1795 | return m_modified; | |
1796 | } | |
1797 | ||
03f38c58 | 1798 | void wxTextCtrl::Clear() |
c801d85f | 1799 | { |
902725ee | 1800 | SetValue( wxEmptyString ); |
6de97a3b | 1801 | } |
c801d85f | 1802 | |
903f689b | 1803 | void wxTextCtrl::OnChar( wxKeyEvent &key_event ) |
c801d85f | 1804 | { |
223d09f6 | 1805 | wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") ); |
805dd538 | 1806 | |
12a3f227 | 1807 | if ((key_event.GetKeyCode() == WXK_RETURN) && (m_windowStyle & wxPROCESS_ENTER)) |
2830bf19 RR |
1808 | { |
1809 | wxCommandEvent event(wxEVT_COMMAND_TEXT_ENTER, m_windowId); | |
1810 | event.SetEventObject(this); | |
f6bcfd97 | 1811 | event.SetString(GetValue()); |
2830bf19 RR |
1812 | if (GetEventHandler()->ProcessEvent(event)) return; |
1813 | } | |
903f689b | 1814 | |
12a3f227 | 1815 | if ((key_event.GetKeyCode() == WXK_RETURN) && !(m_windowStyle & wxTE_MULTILINE)) |
da048e3d | 1816 | { |
2b328fc9 RR |
1817 | // This will invoke the dialog default action, such |
1818 | // as the clicking the default button. | |
a8bf1826 | 1819 | |
da048e3d | 1820 | wxWindow *top_frame = m_parent; |
8487f887 | 1821 | while (top_frame->GetParent() && !(top_frame->IsTopLevel())) |
da048e3d | 1822 | top_frame = top_frame->GetParent(); |
a8bf1826 | 1823 | |
2b328fc9 | 1824 | if (top_frame && GTK_IS_WINDOW(top_frame->m_widget)) |
da048e3d | 1825 | { |
2b328fc9 RR |
1826 | GtkWindow *window = GTK_WINDOW(top_frame->m_widget); |
1827 | ||
1828 | if (window->default_widget) | |
1829 | { | |
1830 | gtk_widget_activate (window->default_widget); | |
1831 | return; | |
1832 | } | |
13111b2a | 1833 | } |
da048e3d RR |
1834 | } |
1835 | ||
2830bf19 | 1836 | key_event.Skip(); |
6de97a3b | 1837 | } |
c801d85f | 1838 | |
03f38c58 | 1839 | GtkWidget* wxTextCtrl::GetConnectWidget() |
e3e65dac | 1840 | { |
ae0bdb01 | 1841 | return GTK_WIDGET(m_text); |
6de97a3b | 1842 | } |
e3e65dac | 1843 | |
903f689b RR |
1844 | bool wxTextCtrl::IsOwnGtkWindow( GdkWindow *window ) |
1845 | { | |
ae0bdb01 | 1846 | if (m_windowStyle & wxTE_MULTILINE) |
fab591c5 RR |
1847 | { |
1848 | #ifdef __WXGTK20__ | |
1849 | return window == gtk_text_view_get_window( GTK_TEXT_VIEW( m_text ), GTK_TEXT_WINDOW_TEXT ); // pure guesswork | |
1850 | #else | |
ae0bdb01 | 1851 | return (window == GTK_TEXT(m_text)->text_area); |
fab591c5 RR |
1852 | #endif |
1853 | } | |
ae0bdb01 | 1854 | else |
fab591c5 | 1855 | { |
ae0bdb01 | 1856 | return (window == GTK_ENTRY(m_text)->text_area); |
fab591c5 | 1857 | } |
903f689b | 1858 | } |
e3e65dac | 1859 | |
bb69661b VZ |
1860 | // the font will change for subsequent text insertiongs |
1861 | bool wxTextCtrl::SetFont( const wxFont &font ) | |
868a2826 | 1862 | { |
7d8268a1 | 1863 | wxCHECK_MSG( m_text != NULL, false, wxT("invalid text ctrl") ); |
8bbe427f | 1864 | |
a66954a6 | 1865 | if ( !wxTextCtrlBase::SetFont(font) ) |
bb69661b VZ |
1866 | { |
1867 | // font didn't change, nothing to do | |
7d8268a1 | 1868 | return false; |
bb69661b VZ |
1869 | } |
1870 | ||
1871 | if ( m_windowStyle & wxTE_MULTILINE ) | |
1872 | { | |
7d8268a1 | 1873 | SetUpdateFont(true); |
bb69661b | 1874 | |
1ff4714d VZ |
1875 | m_defaultStyle.SetFont(font); |
1876 | ||
01041145 | 1877 | ChangeFontGlobally(); |
bb69661b VZ |
1878 | } |
1879 | ||
7d8268a1 | 1880 | return true; |
58614078 RR |
1881 | } |
1882 | ||
01041145 VZ |
1883 | void wxTextCtrl::ChangeFontGlobally() |
1884 | { | |
1885 | // this method is very inefficient and hence should be called as rarely as | |
1886 | // possible! | |
c04ec496 VZ |
1887 | // |
1888 | // TODO: it can be implemented much more efficiently for GTK2 | |
c04ec496 | 1889 | #ifndef __WXGTK20__ |
22800f32 JS |
1890 | wxASSERT_MSG( (m_windowStyle & wxTE_MULTILINE) && m_updateFont, |
1891 | ||
01041145 | 1892 | _T("shouldn't be called for single line controls") ); |
22800f32 JS |
1893 | #else |
1894 | wxASSERT_MSG( (m_windowStyle & wxTE_MULTILINE), | |
1895 | _T("shouldn't be called for single line controls") ); | |
1896 | #endif | |
01041145 VZ |
1897 | |
1898 | wxString value = GetValue(); | |
7d8268a1 | 1899 | if ( !value.empty() ) |
01041145 | 1900 | { |
7d8268a1 | 1901 | SetUpdateFont(false); |
572aeb77 | 1902 | |
01041145 VZ |
1903 | Clear(); |
1904 | AppendText(value); | |
01041145 VZ |
1905 | } |
1906 | } | |
1907 | ||
c04ec496 VZ |
1908 | #ifndef __WXGTK20__ |
1909 | ||
01041145 VZ |
1910 | void wxTextCtrl::UpdateFontIfNeeded() |
1911 | { | |
1912 | if ( m_updateFont ) | |
1913 | ChangeFontGlobally(); | |
1914 | } | |
1915 | ||
c04ec496 VZ |
1916 | #endif // GTK+ 1.x |
1917 | ||
17665a2b VZ |
1918 | bool wxTextCtrl::SetForegroundColour(const wxColour& colour) |
1919 | { | |
1920 | if ( !wxControl::SetForegroundColour(colour) ) | |
7d8268a1 | 1921 | return false; |
17665a2b VZ |
1922 | |
1923 | // update default fg colour too | |
1924 | m_defaultStyle.SetTextColour(colour); | |
1925 | ||
7d8268a1 | 1926 | return true; |
17665a2b VZ |
1927 | } |
1928 | ||
f03fc89f | 1929 | bool wxTextCtrl::SetBackgroundColour( const wxColour &colour ) |
68dda785 | 1930 | { |
7d8268a1 | 1931 | wxCHECK_MSG( m_text != NULL, false, wxT("invalid text ctrl") ); |
a81258be | 1932 | |
1f477433 | 1933 | if ( !wxControl::SetBackgroundColour( colour ) ) |
7d8268a1 | 1934 | return false; |
3358d36e | 1935 | |
c2094564 | 1936 | #ifndef __WXGTK20__ |
f03fc89f | 1937 | if (!m_widget->window) |
7d8268a1 | 1938 | return false; |
c2094564 | 1939 | #endif |
8bbe427f | 1940 | |
f03fc89f | 1941 | if (!m_backgroundColour.Ok()) |
7d8268a1 | 1942 | return false; |
8bbe427f | 1943 | |
ae0bdb01 RR |
1944 | if (m_windowStyle & wxTE_MULTILINE) |
1945 | { | |
1fc32b12 | 1946 | #ifndef __WXGTK20__ |
ae0bdb01 | 1947 | GdkWindow *window = GTK_TEXT(m_text)->text_area; |
f03fc89f | 1948 | if (!window) |
7d8268a1 | 1949 | return false; |
ae0bdb01 RR |
1950 | m_backgroundColour.CalcPixel( gdk_window_get_colormap( window ) ); |
1951 | gdk_window_set_background( window, m_backgroundColour.GetColor() ); | |
1952 | gdk_window_clear( window ); | |
fab591c5 | 1953 | #endif |
ae0bdb01 | 1954 | } |
f03fc89f | 1955 | |
17665a2b VZ |
1956 | // change active background color too |
1957 | m_defaultStyle.SetBackgroundColour( colour ); | |
1958 | ||
7d8268a1 | 1959 | return true; |
58614078 RR |
1960 | } |
1961 | ||
eda40bfc | 1962 | bool wxTextCtrl::SetStyle( long start, long end, const wxTextAttr& style ) |
17665a2b | 1963 | { |
17665a2b VZ |
1964 | if ( m_windowStyle & wxTE_MULTILINE ) |
1965 | { | |
1966 | if ( style.IsDefault() ) | |
1967 | { | |
1968 | // nothing to do | |
7d8268a1 | 1969 | return true; |
17665a2b | 1970 | } |
902725ee | 1971 | |
cc3da3f8 | 1972 | #ifdef __WXGTK20__ |
41b81aed | 1973 | gint l = gtk_text_buffer_get_char_count( m_buffer ); |
17665a2b | 1974 | |
7d8268a1 | 1975 | wxCHECK_MSG( start >= 0 && end <= l, false, |
cc3da3f8 RR |
1976 | _T("invalid range in wxTextCtrl::SetStyle") ); |
1977 | ||
1978 | GtkTextIter starti, endi; | |
41b81aed RR |
1979 | gtk_text_buffer_get_iter_at_offset( m_buffer, &starti, start ); |
1980 | gtk_text_buffer_get_iter_at_offset( m_buffer, &endi, end ); | |
cc3da3f8 RR |
1981 | |
1982 | // use the attributes from style which are set in it and fall back | |
1983 | // first to the default style and then to the text control default | |
1984 | // colours for the others | |
1985 | wxTextAttr attr = wxTextAttr::Combine(style, m_defaultStyle, this); | |
1986 | ||
41b81aed | 1987 | wxGtkTextApplyTagsFromAttr( m_buffer, attr, &starti, &endi ); |
cc3da3f8 RR |
1988 | #else |
1989 | // VERY dirty way to do that - removes the required text and re-adds it | |
1990 | // with styling (FIXME) | |
5b87f8bf | 1991 | |
17665a2b VZ |
1992 | gint l = gtk_text_get_length( GTK_TEXT(m_text) ); |
1993 | ||
7d8268a1 | 1994 | wxCHECK_MSG( start >= 0 && end <= l, false, |
17665a2b VZ |
1995 | _T("invalid range in wxTextCtrl::SetStyle") ); |
1996 | ||
1997 | gint old_pos = gtk_editable_get_position( GTK_EDITABLE(m_text) ); | |
1998 | char *text = gtk_editable_get_chars( GTK_EDITABLE(m_text), start, end ); | |
1999 | wxString tmp(text,*wxConvCurrent); | |
2000 | g_free( text ); | |
2001 | ||
2002 | gtk_editable_delete_text( GTK_EDITABLE(m_text), start, end ); | |
2003 | gtk_editable_set_position( GTK_EDITABLE(m_text), start ); | |
2004 | ||
902725ee | 2005 | #if wxUSE_UNICODE |
17665a2b VZ |
2006 | wxWX2MBbuf buf = tmp.mbc_str(); |
2007 | const char *txt = buf; | |
2008 | size_t txtlen = strlen(buf); | |
902725ee | 2009 | #else |
17665a2b VZ |
2010 | const char *txt = tmp; |
2011 | size_t txtlen = tmp.length(); | |
902725ee | 2012 | #endif |
17665a2b | 2013 | |
eda40bfc VZ |
2014 | // use the attributes from style which are set in it and fall back |
2015 | // first to the default style and then to the text control default | |
2016 | // colours for the others | |
2017 | wxGtkTextInsert(m_text, | |
2018 | wxTextAttr::Combine(style, m_defaultStyle, this), | |
2019 | txt, | |
2020 | txtlen); | |
17665a2b VZ |
2021 | |
2022 | /* does not seem to help under GTK+ 1.2 !!! | |
2023 | gtk_editable_set_position( GTK_EDITABLE(m_text), old_pos ); */ | |
2024 | SetInsertionPoint( old_pos ); | |
fab591c5 | 2025 | #endif |
902725ee | 2026 | |
7d8268a1 | 2027 | return true; |
17665a2b | 2028 | } |
902725ee WS |
2029 | |
2030 | // else single line | |
2031 | // cannot do this for GTK+'s Entry widget | |
2032 | return false; | |
17665a2b VZ |
2033 | } |
2034 | ||
f40fdaa3 | 2035 | void wxTextCtrl::DoApplyWidgetStyle(GtkRcStyle *style) |
58614078 | 2036 | { |
f40fdaa3 | 2037 | gtk_widget_modify_style(m_text, style); |
68dda785 | 2038 | } |
f96aa4d9 | 2039 | |
e702ff0f JS |
2040 | void wxTextCtrl::OnCut(wxCommandEvent& WXUNUSED(event)) |
2041 | { | |
2042 | Cut(); | |
2043 | } | |
2044 | ||
2045 | void wxTextCtrl::OnCopy(wxCommandEvent& WXUNUSED(event)) | |
2046 | { | |
2047 | Copy(); | |
2048 | } | |
2049 | ||
2050 | void wxTextCtrl::OnPaste(wxCommandEvent& WXUNUSED(event)) | |
2051 | { | |
2052 | Paste(); | |
2053 | } | |
2054 | ||
2055 | void wxTextCtrl::OnUndo(wxCommandEvent& WXUNUSED(event)) | |
2056 | { | |
2057 | Undo(); | |
2058 | } | |
2059 | ||
2060 | void wxTextCtrl::OnRedo(wxCommandEvent& WXUNUSED(event)) | |
2061 | { | |
2062 | Redo(); | |
2063 | } | |
2064 | ||
2065 | void wxTextCtrl::OnUpdateCut(wxUpdateUIEvent& event) | |
2066 | { | |
2067 | event.Enable( CanCut() ); | |
2068 | } | |
2069 | ||
2070 | void wxTextCtrl::OnUpdateCopy(wxUpdateUIEvent& event) | |
2071 | { | |
2072 | event.Enable( CanCopy() ); | |
2073 | } | |
2074 | ||
2075 | void wxTextCtrl::OnUpdatePaste(wxUpdateUIEvent& event) | |
2076 | { | |
2077 | event.Enable( CanPaste() ); | |
2078 | } | |
2079 | ||
2080 | void wxTextCtrl::OnUpdateUndo(wxUpdateUIEvent& event) | |
2081 | { | |
2082 | event.Enable( CanUndo() ); | |
2083 | } | |
2084 | ||
2085 | void wxTextCtrl::OnUpdateRedo(wxUpdateUIEvent& event) | |
2086 | { | |
2087 | event.Enable( CanRedo() ); | |
2088 | } | |
65045edd RR |
2089 | |
2090 | void wxTextCtrl::OnInternalIdle() | |
2091 | { | |
2092 | wxCursor cursor = m_cursor; | |
2093 | if (g_globalCursor.Ok()) cursor = g_globalCursor; | |
2094 | ||
307f16e8 | 2095 | if (cursor.Ok()) |
65045edd | 2096 | { |
fab591c5 | 2097 | #ifndef __WXGTK20__ |
65045edd | 2098 | GdkWindow *window = (GdkWindow*) NULL; |
13111b2a | 2099 | if (HasFlag(wxTE_MULTILINE)) |
65045edd RR |
2100 | window = GTK_TEXT(m_text)->text_area; |
2101 | else | |
2102 | window = GTK_ENTRY(m_text)->text_area; | |
13111b2a | 2103 | |
65045edd RR |
2104 | if (window) |
2105 | gdk_window_set_cursor( window, cursor.GetCursor() ); | |
2106 | ||
2107 | if (!g_globalCursor.Ok()) | |
2108 | cursor = *wxSTANDARD_CURSOR; | |
2109 | ||
2110 | window = m_widget->window; | |
247e5b16 | 2111 | if ((window) && !(GTK_WIDGET_NO_WINDOW(m_widget))) |
65045edd | 2112 | gdk_window_set_cursor( window, cursor.GetCursor() ); |
fab591c5 | 2113 | #endif |
65045edd | 2114 | } |
26bf1ce0 | 2115 | |
d7fa7eaa RR |
2116 | if (g_delayedFocus == this) |
2117 | { | |
2118 | if (GTK_WIDGET_REALIZED(m_widget)) | |
2119 | { | |
2120 | gtk_widget_grab_focus( m_widget ); | |
2121 | g_delayedFocus = NULL; | |
2122 | } | |
2123 | } | |
2124 | ||
e39af974 JS |
2125 | if (wxUpdateUIEvent::CanUpdate(this)) |
2126 | UpdateWindowUI(wxUPDATE_UI_FROMIDLE); | |
65045edd | 2127 | } |
f68586e5 VZ |
2128 | |
2129 | wxSize wxTextCtrl::DoGetBestSize() const | |
2130 | { | |
2131 | // FIXME should be different for multi-line controls... | |
0279e844 | 2132 | wxSize ret( wxControl::DoGetBestSize() ); |
9f884528 RD |
2133 | wxSize best(80, ret.y); |
2134 | CacheBestSize(best); | |
2135 | return best; | |
f68586e5 | 2136 | } |
0cc7251e | 2137 | |
9cd6d737 VZ |
2138 | // ---------------------------------------------------------------------------- |
2139 | // freeze/thaw | |
2140 | // ---------------------------------------------------------------------------- | |
2141 | ||
0cc7251e VZ |
2142 | void wxTextCtrl::Freeze() |
2143 | { | |
2144 | if ( HasFlag(wxTE_MULTILINE) ) | |
2145 | { | |
41b81aed RR |
2146 | #ifdef __WXGTK20__ |
2147 | if ( !m_frozenness++ ) | |
2148 | { | |
2149 | // freeze textview updates and remove buffer | |
2150 | g_signal_connect( G_OBJECT(m_text), "expose_event", | |
2151 | GTK_SIGNAL_FUNC(gtk_text_exposed_callback), (gpointer)this); | |
2152 | g_signal_connect( G_OBJECT(m_widget), "expose_event", | |
2153 | GTK_SIGNAL_FUNC(gtk_text_exposed_callback), (gpointer)this); | |
2154 | gtk_widget_set_sensitive(m_widget, false); | |
2155 | g_object_ref(m_buffer); | |
2156 | gtk_text_view_set_buffer(GTK_TEXT_VIEW(m_text), gtk_text_buffer_new(NULL)); | |
0a164d4c | 2157 | } |
41b81aed RR |
2158 | #else |
2159 | gtk_text_freeze(GTK_TEXT(m_text)); | |
fab591c5 | 2160 | #endif |
41b81aed | 2161 | } |
0cc7251e VZ |
2162 | } |
2163 | ||
2164 | void wxTextCtrl::Thaw() | |
2165 | { | |
2166 | if ( HasFlag(wxTE_MULTILINE) ) | |
2167 | { | |
41b81aed RR |
2168 | #ifdef __WXGTK20__ |
2169 | wxASSERT_MSG( m_frozenness > 0, _T("Thaw() without matching Freeze()") ); | |
2170 | ||
2171 | if ( !--m_frozenness ) | |
2172 | { | |
2173 | // Reattach buffer and thaw textview updates | |
2174 | gtk_text_view_set_buffer(GTK_TEXT_VIEW(m_text), m_buffer); | |
2175 | g_object_unref(m_buffer); | |
2176 | gtk_widget_set_sensitive(m_widget, true); | |
2177 | g_signal_handlers_disconnect_by_func(m_widget, (gpointer)gtk_text_exposed_callback, this); | |
2178 | g_signal_handlers_disconnect_by_func(m_text, (gpointer)gtk_text_exposed_callback, this); | |
2179 | } | |
2180 | #else | |
817ec43a VZ |
2181 | GTK_TEXT(m_text)->vadj->value = 0.0; |
2182 | ||
0cc7251e | 2183 | gtk_text_thaw(GTK_TEXT(m_text)); |
fab591c5 | 2184 | #endif |
41b81aed | 2185 | } |
0cc7251e | 2186 | } |
9cd6d737 | 2187 | |
9440c3d0 KH |
2188 | // ---------------------------------------------------------------------------- |
2189 | // wxTextUrlEvent passing if style & wxTE_AUTO_URL | |
2190 | // ---------------------------------------------------------------------------- | |
2191 | ||
2192 | #ifdef __WXGTK20__ | |
2193 | ||
2194 | // FIXME: when dragging on a link the sample gets an "Unknown event". | |
2195 | // This might be an excessive event from us or a buggy wxMouseEvent::Moving() or | |
2196 | // a buggy sample, or something else | |
2197 | void wxTextCtrl::OnUrlMouseEvent(wxMouseEvent& event) | |
2198 | { | |
2199 | event.Skip(); | |
2200 | if(!(m_windowStyle & wxTE_AUTO_URL)) | |
2201 | return; | |
2202 | ||
2203 | gint x, y; | |
2204 | GtkTextIter start, end; | |
2205 | GtkTextTag *tag = gtk_text_tag_table_lookup(gtk_text_buffer_get_tag_table(m_buffer), | |
2206 | "wxUrl"); | |
2207 | ||
2208 | gtk_text_view_window_to_buffer_coords(GTK_TEXT_VIEW(m_text), GTK_TEXT_WINDOW_WIDGET, | |
2209 | event.GetX(), event.GetY(), &x, &y); | |
2210 | ||
2211 | gtk_text_view_get_iter_at_location(GTK_TEXT_VIEW(m_text), &end, x, y); | |
2212 | if (!gtk_text_iter_has_tag(&end, tag)) | |
2213 | { | |
2214 | gdk_window_set_cursor(gtk_text_view_get_window(GTK_TEXT_VIEW(m_text), | |
2215 | GTK_TEXT_WINDOW_TEXT), m_gdkXTermCursor); | |
2216 | return; | |
2217 | } | |
2218 | ||
2219 | gdk_window_set_cursor(gtk_text_view_get_window(GTK_TEXT_VIEW(m_text), | |
2220 | GTK_TEXT_WINDOW_TEXT), m_gdkHandCursor); | |
2221 | ||
2222 | start = end; | |
2223 | if(!gtk_text_iter_begins_tag(&start, tag)) | |
2224 | gtk_text_iter_backward_to_tag_toggle(&start, tag); | |
2225 | if(!gtk_text_iter_ends_tag(&end, tag)) | |
2226 | gtk_text_iter_forward_to_tag_toggle(&end, tag); | |
2227 | ||
2228 | // Native context menu is probably not desired on an URL. | |
2229 | // Consider making this dependant on ProcessEvent(wxTextUrlEvent) return value | |
2230 | if(event.GetEventType() == wxEVT_RIGHT_DOWN) | |
2231 | event.Skip(false); | |
2232 | ||
2233 | wxTextUrlEvent url_event(m_windowId, event, | |
2234 | gtk_text_iter_get_offset(&start), | |
2235 | gtk_text_iter_get_offset(&end)); | |
2236 | ||
2237 | InitCommandEvent(url_event); | |
2238 | // Is that a good idea? Seems not (pleasure with gtk_text_view_start_selection_drag) | |
2239 | //event.Skip(!GetEventHandler()->ProcessEvent(url_event)); | |
2240 | GetEventHandler()->ProcessEvent(url_event); | |
2241 | } | |
2242 | #endif // gtk2 | |
2243 | ||
9cd6d737 VZ |
2244 | // ---------------------------------------------------------------------------- |
2245 | // scrolling | |
2246 | // ---------------------------------------------------------------------------- | |
2247 | ||
2248 | GtkAdjustment *wxTextCtrl::GetVAdj() const | |
2249 | { | |
1ce52aa6 VZ |
2250 | if ( !IsMultiLine() ) |
2251 | return NULL; | |
2252 | ||
fab591c5 | 2253 | #ifdef __WXGTK20__ |
1ce52aa6 | 2254 | return gtk_scrolled_window_get_vadjustment(GTK_SCROLLED_WINDOW(m_widget)); |
fab591c5 | 2255 | #else |
1ce52aa6 | 2256 | return GTK_TEXT(m_text)->vadj; |
fab591c5 | 2257 | #endif |
9cd6d737 VZ |
2258 | } |
2259 | ||
2260 | bool wxTextCtrl::DoScroll(GtkAdjustment *adj, int diff) | |
2261 | { | |
2262 | float value = adj->value + diff; | |
2263 | ||
2264 | if ( value < 0 ) | |
2265 | value = 0; | |
2266 | ||
2267 | float upper = adj->upper - adj->page_size; | |
2268 | if ( value > upper ) | |
2269 | value = upper; | |
2270 | ||
2271 | // did we noticeably change the scroll position? | |
2272 | if ( fabs(adj->value - value) < 0.2 ) | |
2273 | { | |
2274 | // well, this is what Robert does in wxScrollBar, so it must be good... | |
7d8268a1 | 2275 | return false; |
9cd6d737 VZ |
2276 | } |
2277 | ||
2278 | adj->value = value; | |
2279 | ||
1ce52aa6 VZ |
2280 | #ifdef __WXGTK20__ |
2281 | gtk_adjustment_value_changed(GTK_ADJUSTMENT(adj)); | |
2282 | #else | |
9cd6d737 | 2283 | gtk_signal_emit_by_name(GTK_OBJECT(adj), "value_changed"); |
fab591c5 | 2284 | #endif |
1ce52aa6 | 2285 | |
7d8268a1 | 2286 | return true; |
9cd6d737 VZ |
2287 | } |
2288 | ||
2289 | bool wxTextCtrl::ScrollLines(int lines) | |
2290 | { | |
2291 | GtkAdjustment *adj = GetVAdj(); | |
2292 | if ( !adj ) | |
7d8268a1 | 2293 | return false; |
9cd6d737 | 2294 | |
1ce52aa6 VZ |
2295 | #ifdef __WXGTK20__ |
2296 | int diff = (int)ceil(lines*adj->step_increment); | |
2297 | #else | |
9cd6d737 | 2298 | // this is hardcoded to 10 in GTK+ 1.2 (great idea) |
1ce52aa6 | 2299 | int diff = 10*lines; |
fab591c5 | 2300 | #endif |
1ce52aa6 VZ |
2301 | |
2302 | return DoScroll(adj, diff); | |
9cd6d737 VZ |
2303 | } |
2304 | ||
2305 | bool wxTextCtrl::ScrollPages(int pages) | |
2306 | { | |
2307 | GtkAdjustment *adj = GetVAdj(); | |
2308 | if ( !adj ) | |
7d8268a1 | 2309 | return false; |
9cd6d737 | 2310 | |
817ec43a | 2311 | return DoScroll(adj, (int)ceil(pages*adj->page_increment)); |
9cd6d737 VZ |
2312 | } |
2313 | ||
9d522606 RD |
2314 | |
2315 | // static | |
2316 | wxVisualAttributes | |
2317 | wxTextCtrl::GetClassDefaultAttributes(wxWindowVariant WXUNUSED(variant)) | |
2318 | { | |
2319 | return GetDefaultAttributesFromGTKWidget(gtk_entry_new, true); | |
2320 | } |