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