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