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