]>
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__ | |
612 | wrap = GTK_WRAP_WORD_CHAR; | |
613 | #else | |
614 | wrap = GTK_WRAP_WORD; | |
615 | #endif | |
616 | } | |
9ddb3948 VZ |
617 | |
618 | gtk_text_view_set_wrap_mode( GTK_TEXT_VIEW( m_text ), wrap ); | |
805dd538 | 619 | |
fab591c5 RR |
620 | if (!HasFlag(wxNO_BORDER)) |
621 | gtk_scrolled_window_set_shadow_type( GTK_SCROLLED_WINDOW(m_widget), GTK_SHADOW_IN ); | |
7d8268a1 | 622 | |
e327fddf KH |
623 | gtk_widget_add_events( GTK_WIDGET(m_text), GDK_ENTER_NOTIFY_MASK | GDK_LEAVE_NOTIFY_MASK ); |
624 | ||
055e633d | 625 | GTK_WIDGET_UNSET_FLAGS( m_widget, GTK_CAN_FOCUS ); |
c2110823 | 626 | #else // GTK+ 1 |
fab591c5 | 627 | // create our control ... |
2830bf19 RR |
628 | m_text = gtk_text_new( (GtkAdjustment *) NULL, (GtkAdjustment *) NULL ); |
629 | ||
fab591c5 | 630 | // ... and put into the upper left hand corner of the table |
7d8268a1 | 631 | bool bHasHScrollbar = false; |
2830bf19 | 632 | m_widget = gtk_table_new(bHasHScrollbar ? 2 : 1, 2, FALSE); |
5664fc32 | 633 | GTK_WIDGET_UNSET_FLAGS( m_widget, GTK_CAN_FOCUS ); |
2830bf19 | 634 | gtk_table_attach( GTK_TABLE(m_widget), m_text, 0, 1, 0, 1, |
41dee9d0 | 635 | (GtkAttachOptions)(GTK_FILL | GTK_EXPAND | GTK_SHRINK), |
f5368809 RR |
636 | (GtkAttachOptions)(GTK_FILL | GTK_EXPAND | GTK_SHRINK), |
637 | 0, 0); | |
bb69661b | 638 | |
fab591c5 | 639 | // always wrap words |
5c387335 | 640 | gtk_text_set_word_wrap( GTK_TEXT(m_text), TRUE ); |
bb69661b | 641 | |
fab591c5 | 642 | // finally, put the vertical scrollbar in the upper right corner |
ab46dc18 RR |
643 | m_vScrollbar = gtk_vscrollbar_new( GTK_TEXT(m_text)->vadj ); |
644 | GTK_WIDGET_UNSET_FLAGS( m_vScrollbar, GTK_CAN_FOCUS ); | |
ab46dc18 RR |
645 | gtk_table_attach(GTK_TABLE(m_widget), m_vScrollbar, 1, 2, 0, 1, |
646 | GTK_FILL, | |
647 | (GtkAttachOptions)(GTK_EXPAND | GTK_FILL | GTK_SHRINK), | |
648 | 0, 0); | |
c2110823 | 649 | #endif // GTK+ 2/1 |
2830bf19 RR |
650 | } |
651 | else | |
652 | { | |
fab591c5 | 653 | // a single-line text control: no need for scrollbars |
2830bf19 | 654 | m_widget = |
1c35b54e | 655 | m_text = gtk_entry_new(); |
44c5573d | 656 | |
7d8268a1 | 657 | #ifdef __WXGTK20__ |
02a6e358 RR |
658 | if (style & wxNO_BORDER) |
659 | g_object_set( GTK_ENTRY(m_text), "has-frame", FALSE, NULL ); | |
44c5573d | 660 | #endif |
2830bf19 | 661 | } |
484e45bf | 662 | |
db434467 | 663 | m_parent->DoAddChild( this ); |
eda40bfc | 664 | |
76fcf0f2 | 665 | m_focusWidget = m_text; |
db434467 | 666 | |
abdeb9e7 | 667 | PostCreation(size); |
484e45bf | 668 | |
2830bf19 | 669 | if (multi_line) |
2830bf19 | 670 | gtk_widget_show(m_text); |
13289f04 | 671 | |
fab591c5 | 672 | #ifndef __WXGTK20__ |
ab46dc18 RR |
673 | if (multi_line) |
674 | { | |
675 | gtk_signal_connect(GTK_OBJECT(GTK_TEXT(m_text)->vadj), "changed", | |
676 | (GtkSignalFunc) gtk_scrollbar_changed_callback, (gpointer) this ); | |
1c35b54e | 677 | |
1c35b54e VZ |
678 | // only initialize gs_gtk_text_draw once, starting from the next the |
679 | // klass::draw will already be wxgtk_text_draw | |
680 | if ( !gs_gtk_text_draw ) | |
681 | { | |
682 | GtkDrawCallback& | |
683 | draw = GTK_WIDGET_CLASS(GTK_OBJECT(m_text)->klass)->draw; | |
684 | ||
685 | gs_gtk_text_draw = draw; | |
686 | ||
687 | draw = wxgtk_text_draw; | |
688 | } | |
ab46dc18 | 689 | } |
fab591c5 | 690 | #endif // GTK+ 1.x |
3358d36e | 691 | |
7d8268a1 | 692 | if (!value.empty()) |
2830bf19 | 693 | { |
fab591c5 RR |
694 | #ifdef __WXGTK20__ |
695 | SetValue( value ); | |
696 | #else | |
3358d36e | 697 | |
9e691f46 | 698 | #if !GTK_CHECK_VERSION(1, 2, 0) |
3358d36e VZ |
699 | // if we don't realize it, GTK 1.0.6 dies with a SIGSEGV in |
700 | // gtk_editable_insert_text() | |
701 | gtk_widget_realize(m_text); | |
702 | #endif // GTK 1.0 | |
703 | ||
fab591c5 | 704 | gint tmp = 0; |
05939a81 | 705 | #if wxUSE_UNICODE |
3358d36e | 706 | wxWX2MBbuf val = value.mbc_str(); |
05939a81 | 707 | gtk_editable_insert_text( GTK_EDITABLE(m_text), val, strlen(val), &tmp ); |
fab591c5 | 708 | #else |
2830bf19 | 709 | gtk_editable_insert_text( GTK_EDITABLE(m_text), value, value.Length(), &tmp ); |
fab591c5 | 710 | #endif |
3358d36e | 711 | |
291a8f20 RR |
712 | if (multi_line) |
713 | { | |
fab591c5 | 714 | // Bring editable's cursor uptodate. Bug in GTK. |
9e691f46 | 715 | SET_EDITABLE_POS(m_text, gtk_text_get_point( GTK_TEXT(m_text) )); |
3358d36e | 716 | } |
a8bf1826 | 717 | |
fab591c5 | 718 | #endif |
2830bf19 | 719 | } |
484e45bf | 720 | |
2830bf19 RR |
721 | if (style & wxTE_PASSWORD) |
722 | { | |
723 | if (!multi_line) | |
724 | gtk_entry_set_visibility( GTK_ENTRY(m_text), FALSE ); | |
725 | } | |
8bbe427f | 726 | |
2830bf19 RR |
727 | if (style & wxTE_READONLY) |
728 | { | |
729 | if (!multi_line) | |
730 | gtk_entry_set_editable( GTK_ENTRY(m_text), FALSE ); | |
fab591c5 RR |
731 | #ifdef __WXGTK20__ |
732 | else | |
98a8daf4 VS |
733 | gtk_text_view_set_editable( GTK_TEXT_VIEW( m_text), FALSE); |
734 | #else | |
735 | } | |
736 | else | |
737 | { | |
738 | if (multi_line) | |
739 | gtk_text_set_editable( GTK_TEXT(m_text), 1 ); | |
740 | #endif | |
741 | } | |
742 | ||
c663fbea VS |
743 | #ifdef __WXGTK20__ |
744 | if (multi_line) | |
745 | { | |
746 | if (style & wxTE_RIGHT) | |
747 | gtk_text_view_set_justification( GTK_TEXT_VIEW(m_text), GTK_JUSTIFY_RIGHT ); | |
748 | else if (style & wxTE_CENTRE) | |
749 | gtk_text_view_set_justification( GTK_TEXT_VIEW(m_text), GTK_JUSTIFY_CENTER ); | |
750 | // Left justify (alignment) is the default and we don't need to apply GTK_JUSTIFY_LEFT | |
751 | } | |
c663fbea VS |
752 | else |
753 | { | |
77f70672 RR |
754 | #ifdef __WXGTK24__ |
755 | // gtk_entry_set_alignment was introduced in gtk+-2.3.5 | |
756 | if (!gtk_check_version(2,4,0)) | |
757 | { | |
758 | if (style & wxTE_RIGHT) | |
759 | gtk_entry_set_alignment( GTK_ENTRY(m_text), 1.0 ); | |
760 | else if (style & wxTE_CENTRE) | |
761 | gtk_entry_set_alignment( GTK_ENTRY(m_text), 0.5 ); | |
762 | } | |
763 | #endif | |
c663fbea | 764 | } |
c663fbea | 765 | #endif // __WXGTK20__ |
7d8268a1 | 766 | |
fab591c5 RR |
767 | // We want to be notified about text changes. |
768 | #ifdef __WXGTK20__ | |
769 | if (multi_line) | |
770 | { | |
41b81aed | 771 | g_signal_connect( G_OBJECT(m_buffer), "changed", |
fab591c5 | 772 | GTK_SIGNAL_FUNC(gtk_text_changed_callback), (gpointer)this); |
9440c3d0 KH |
773 | |
774 | // .. and handle URLs on multi-line controls with wxTE_AUTO_URL style | |
775 | if (style & wxTE_AUTO_URL) | |
776 | { | |
777 | GtkTextIter start, end; | |
778 | m_gdkHandCursor = gdk_cursor_new(GDK_HAND2); | |
779 | m_gdkXTermCursor = gdk_cursor_new(GDK_XTERM); | |
780 | ||
781 | // We create our wxUrl tag here for slight efficiency gain - we | |
782 | // don't have to check for the tag existance in callbacks, | |
783 | // hereby it's guaranteed to exist. | |
784 | gtk_text_buffer_create_tag(m_buffer, "wxUrl", | |
785 | "foreground", "blue", | |
786 | "underline", PANGO_UNDERLINE_SINGLE, | |
787 | NULL); | |
788 | ||
789 | // Check for URLs after each text change | |
790 | g_signal_connect_after( G_OBJECT(m_buffer), "insert_text", | |
791 | GTK_SIGNAL_FUNC(au_insert_text_callback), (gpointer)this); | |
792 | g_signal_connect_after( G_OBJECT(m_buffer), "delete_range", | |
793 | GTK_SIGNAL_FUNC(au_delete_range_callback), (gpointer)this); | |
794 | ||
795 | // Block all wxUrl tag applying unless we do it ourselves, in which case we | |
796 | // block this callback temporarily. This takes care of gtk+ internal | |
797 | // gtk_text_buffer_insert_range* calls that would copy our URL tag otherwise, | |
798 | // which is undesired because only a part of the URL might be copied. | |
799 | // The insert-text signal emitted inside it will take care of newly formed | |
800 | // or wholly copied URLs. | |
801 | g_signal_connect( G_OBJECT(m_buffer), "apply_tag", | |
802 | GTK_SIGNAL_FUNC(au_apply_tag_callback), NULL); | |
803 | ||
804 | // Check for URLs in the initial string passed to Create | |
805 | gtk_text_buffer_get_start_iter(m_buffer, &start); | |
806 | gtk_text_buffer_get_end_iter(m_buffer, &end); | |
807 | au_check_range(&start, &end); | |
808 | } | |
fab591c5 RR |
809 | } |
810 | else | |
811 | #endif | |
7d8268a1 | 812 | |
fab591c5 | 813 | { |
055e633d RR |
814 | gtk_signal_connect( GTK_OBJECT(m_text), "changed", |
815 | GTK_SIGNAL_FUNC(gtk_text_changed_callback), (gpointer)this); | |
fab591c5 | 816 | } |
ce16e5d7 | 817 | |
65045edd | 818 | m_cursor = wxCursor( wxCURSOR_IBEAM ); |
13111b2a | 819 | |
9d522606 | 820 | wxTextAttr attrDef(GetForegroundColour(), GetBackgroundColour(), GetFont()); |
17665a2b VZ |
821 | SetDefaultStyle( attrDef ); |
822 | ||
7d8268a1 | 823 | return true; |
2830bf19 | 824 | } |
484e45bf | 825 | |
9d522606 | 826 | |
2830bf19 RR |
827 | void wxTextCtrl::CalculateScrollbar() |
828 | { | |
fab591c5 | 829 | #ifndef __WXGTK20__ |
2830bf19 | 830 | if ((m_windowStyle & wxTE_MULTILINE) == 0) return; |
f96aa4d9 | 831 | |
2830bf19 | 832 | GtkAdjustment *adj = GTK_TEXT(m_text)->vadj; |
805dd538 | 833 | |
2830bf19 RR |
834 | if (adj->upper - adj->page_size < 0.8) |
835 | { | |
836 | if (m_vScrollbarVisible) | |
837 | { | |
034be888 | 838 | gtk_widget_hide( m_vScrollbar ); |
7d8268a1 | 839 | m_vScrollbarVisible = false; |
2830bf19 RR |
840 | } |
841 | } | |
842 | else | |
843 | { | |
844 | if (!m_vScrollbarVisible) | |
845 | { | |
034be888 | 846 | gtk_widget_show( m_vScrollbar ); |
7d8268a1 | 847 | m_vScrollbarVisible = true; |
2830bf19 RR |
848 | } |
849 | } | |
fab591c5 | 850 | #endif |
6de97a3b | 851 | } |
c801d85f | 852 | |
03f38c58 | 853 | wxString wxTextCtrl::GetValue() const |
c801d85f | 854 | { |
223d09f6 | 855 | wxCHECK_MSG( m_text != NULL, wxT(""), wxT("invalid text ctrl") ); |
8bbe427f | 856 | |
2830bf19 RR |
857 | wxString tmp; |
858 | if (m_windowStyle & wxTE_MULTILINE) | |
859 | { | |
fab591c5 | 860 | #ifdef __WXGTK20__ |
fab591c5 | 861 | GtkTextIter start; |
41b81aed | 862 | gtk_text_buffer_get_start_iter( m_buffer, &start ); |
fab591c5 | 863 | GtkTextIter end; |
41b81aed RR |
864 | gtk_text_buffer_get_end_iter( m_buffer, &end ); |
865 | gchar *text = gtk_text_buffer_get_text( m_buffer, &start, &end, TRUE ); | |
5b87f8bf | 866 | |
fab591c5 RR |
867 | #if wxUSE_UNICODE |
868 | wxWCharBuffer buffer( wxConvUTF8.cMB2WX( text ) ); | |
869 | #else | |
870 | wxCharBuffer buffer( wxConvLocal.cWC2WX( wxConvUTF8.cMB2WC( text ) ) ); | |
871 | #endif | |
39ccbf9a VZ |
872 | if ( buffer ) |
873 | tmp = buffer; | |
a8bf1826 | 874 | |
fab591c5 RR |
875 | g_free( text ); |
876 | #else | |
2830bf19 RR |
877 | gint len = gtk_text_get_length( GTK_TEXT(m_text) ); |
878 | char *text = gtk_editable_get_chars( GTK_EDITABLE(m_text), 0, len ); | |
fab591c5 | 879 | tmp = text; |
2830bf19 | 880 | g_free( text ); |
fab591c5 | 881 | #endif |
2830bf19 RR |
882 | } |
883 | else | |
884 | { | |
fab591c5 | 885 | tmp = wxGTK_CONV_BACK( gtk_entry_get_text( GTK_ENTRY(m_text) ) ); |
2830bf19 | 886 | } |
a8bf1826 | 887 | |
2830bf19 | 888 | return tmp; |
6de97a3b | 889 | } |
c801d85f KB |
890 | |
891 | void wxTextCtrl::SetValue( const wxString &value ) | |
892 | { | |
223d09f6 | 893 | wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") ); |
8bbe427f | 894 | |
2830bf19 RR |
895 | if (m_windowStyle & wxTE_MULTILINE) |
896 | { | |
fab591c5 RR |
897 | #ifdef __WXGTK20__ |
898 | ||
899 | #if wxUSE_UNICODE | |
900 | wxCharBuffer buffer( wxConvUTF8.cWX2MB( value) ); | |
901 | #else | |
902 | wxCharBuffer buffer( wxConvUTF8.cWC2MB( wxConvLocal.cWX2WC( value ) ) ); | |
a8bf1826 | 903 | #endif |
b6ae8db8 | 904 | if (gtk_text_buffer_get_char_count(m_buffer) != 0) |
ad68ed32 RR |
905 | IgnoreNextTextUpdate(); |
906 | ||
41b81aed | 907 | gtk_text_buffer_set_text( m_buffer, buffer, strlen(buffer) ); |
a8bf1826 | 908 | |
fab591c5 | 909 | #else |
2830bf19 RR |
910 | gint len = gtk_text_get_length( GTK_TEXT(m_text) ); |
911 | gtk_editable_delete_text( GTK_EDITABLE(m_text), 0, len ); | |
912 | len = 0; | |
01041145 | 913 | gtk_editable_insert_text( GTK_EDITABLE(m_text), value.mbc_str(), value.Length(), &len ); |
05939a81 | 914 | #endif |
2830bf19 RR |
915 | } |
916 | else | |
917 | { | |
fab591c5 | 918 | gtk_entry_set_text( GTK_ENTRY(m_text), wxGTK_CONV( value ) ); |
2830bf19 | 919 | } |
f6bcfd97 BP |
920 | |
921 | // GRG, Jun/2000: Changed this after a lot of discussion in | |
77ffb593 | 922 | // the lists. wxWidgets 2.2 will have a set of flags to |
f6bcfd97 BP |
923 | // customize this behaviour. |
924 | SetInsertionPoint(0); | |
a8bf1826 | 925 | |
7d8268a1 | 926 | m_modified = false; |
6de97a3b | 927 | } |
c801d85f KB |
928 | |
929 | void wxTextCtrl::WriteText( const wxString &text ) | |
930 | { | |
223d09f6 | 931 | wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") ); |
8bbe427f | 932 | |
17665a2b VZ |
933 | if ( text.empty() ) |
934 | return; | |
484e45bf | 935 | |
c04ec496 VZ |
936 | // gtk_text_changed_callback() will set m_modified to true but m_modified |
937 | // shouldn't be changed by the program writing to the text control itself, | |
938 | // so save the old value and restore when we're done | |
939 | bool oldModified = m_modified; | |
940 | ||
17665a2b | 941 | if ( m_windowStyle & wxTE_MULTILINE ) |
2830bf19 | 942 | { |
fab591c5 RR |
943 | #ifdef __WXGTK20__ |
944 | ||
945 | #if wxUSE_UNICODE | |
946 | wxCharBuffer buffer( wxConvUTF8.cWX2MB( text ) ); | |
947 | #else | |
948 | wxCharBuffer buffer( wxConvUTF8.cWC2MB( wxConvLocal.cWX2WC( text ) ) ); | |
a8bf1826 | 949 | #endif |
8e033d81 VZ |
950 | if ( !buffer ) |
951 | { | |
952 | // what else can we do? at least don't crash... | |
953 | return; | |
954 | } | |
955 | ||
e136b747 | 956 | // TODO: Call whatever is needed to delete the selection. |
41b81aed | 957 | wxGtkTextInsert( m_text, m_buffer, m_defaultStyle, buffer ); |
a8bf1826 | 958 | |
71aba833 VZ |
959 | GtkAdjustment *adj = gtk_scrolled_window_get_vadjustment( GTK_SCROLLED_WINDOW(m_widget) ); |
960 | // Scroll to cursor, but only if scrollbar thumb is at the very bottom | |
961 | if ( adj->value == adj->upper - adj->page_size ) | |
962 | { | |
963 | gtk_text_view_scroll_to_mark( GTK_TEXT_VIEW(m_text), | |
41b81aed | 964 | gtk_text_buffer_get_insert( m_buffer ), 0.0, FALSE, 0.0, 1.0 ); |
71aba833 | 965 | } |
a8bf1826 | 966 | #else // GTK 1.x |
ba3f6b44 | 967 | // After cursor movements, gtk_text_get_point() is wrong by one. |
9e691f46 | 968 | gtk_text_set_point( GTK_TEXT(m_text), GET_EDITABLE_POS(m_text) ); |
eda40bfc | 969 | |
41b2e0e6 VZ |
970 | // always use m_defaultStyle, even if it is empty as otherwise |
971 | // resetting the style and appending some more text wouldn't work: if | |
972 | // we don't specify the style explicitly, the old style would be used | |
2b5f62a0 | 973 | gtk_editable_delete_selection( GTK_EDITABLE(m_text) ); |
fab591c5 | 974 | wxGtkTextInsert(m_text, m_defaultStyle, text.c_str(), text.Len()); |
eda40bfc | 975 | |
07e9d4f0 VZ |
976 | // we called wxGtkTextInsert with correct font, no need to do anything |
977 | // in UpdateFontIfNeeded() any longer | |
978 | if ( !text.empty() ) | |
979 | { | |
7d8268a1 | 980 | SetUpdateFont(false); |
07e9d4f0 VZ |
981 | } |
982 | ||
ba3f6b44 | 983 | // Bring editable's cursor back uptodate. |
9e691f46 | 984 | SET_EDITABLE_POS(m_text, gtk_text_get_point( GTK_TEXT(m_text) )); |
a8bf1826 | 985 | #endif // GTK 1.x/2.0 |
2830bf19 | 986 | } |
17665a2b | 987 | else // single line |
2830bf19 | 988 | { |
2b5f62a0 VZ |
989 | // First remove the selection if there is one |
990 | gtk_editable_delete_selection( GTK_EDITABLE(m_text) ); | |
991 | ||
ba3f6b44 | 992 | // This moves the cursor pos to behind the inserted text. |
9e691f46 | 993 | gint len = GET_EDITABLE_POS(m_text); |
a8bf1826 | 994 | |
fab591c5 RR |
995 | #ifdef __WXGTK20__ |
996 | ||
997 | #if wxUSE_UNICODE | |
998 | wxCharBuffer buffer( wxConvUTF8.cWX2MB( text ) ); | |
999 | #else | |
1000 | wxCharBuffer buffer( wxConvUTF8.cWC2MB( wxConvLocal.cWX2WC( text ) ) ); | |
a8bf1826 | 1001 | #endif |
fab591c5 | 1002 | gtk_editable_insert_text( GTK_EDITABLE(m_text), buffer, strlen(buffer), &len ); |
a8bf1826 | 1003 | |
fab591c5 RR |
1004 | #else |
1005 | gtk_editable_insert_text( GTK_EDITABLE(m_text), text.c_str(), text.Len(), &len ); | |
1006 | #endif | |
3358d36e | 1007 | |
ba3f6b44 | 1008 | // Bring entry's cursor uptodate. |
9e691f46 | 1009 | gtk_entry_set_position( GTK_ENTRY(m_text), len ); |
2830bf19 | 1010 | } |
eda40bfc | 1011 | |
c04ec496 | 1012 | m_modified = oldModified; |
6de97a3b | 1013 | } |
c801d85f | 1014 | |
a6e21573 HH |
1015 | void wxTextCtrl::AppendText( const wxString &text ) |
1016 | { | |
ba3f6b44 RR |
1017 | SetInsertionPointEnd(); |
1018 | WriteText( text ); | |
1019 | } | |
2df7be7f | 1020 | |
ba3f6b44 RR |
1021 | wxString wxTextCtrl::GetLineText( long lineNo ) const |
1022 | { | |
a6e21573 HH |
1023 | if (m_windowStyle & wxTE_MULTILINE) |
1024 | { | |
fab591c5 | 1025 | #ifndef __WXGTK20__ |
ba3f6b44 RR |
1026 | gint len = gtk_text_get_length( GTK_TEXT(m_text) ); |
1027 | char *text = gtk_editable_get_chars( GTK_EDITABLE(m_text), 0, len ); | |
bb69661b | 1028 | |
ba3f6b44 RR |
1029 | if (text) |
1030 | { | |
1031 | wxString buf(wxT("")); | |
1032 | long i; | |
1033 | int currentLine = 0; | |
1034 | for (i = 0; currentLine != lineNo && text[i]; i++ ) | |
1035 | if (text[i] == '\n') | |
1036 | currentLine++; | |
1037 | // Now get the text | |
1038 | int j; | |
1039 | for (j = 0; text[i] && text[i] != '\n'; i++, j++ ) | |
1040 | buf += text[i]; | |
17665a2b | 1041 | |
ba3f6b44 RR |
1042 | g_free( text ); |
1043 | return buf; | |
bb69661b | 1044 | } |
ba3f6b44 | 1045 | else |
bb69661b | 1046 | { |
ba3f6b44 | 1047 | return wxEmptyString; |
bb69661b | 1048 | } |
905f2110 | 1049 | #else |
905f2110 | 1050 | GtkTextIter line; |
41b81aed | 1051 | gtk_text_buffer_get_iter_at_line(m_buffer,&line,lineNo); |
905f2110 | 1052 | GtkTextIter end; |
41b81aed RR |
1053 | gtk_text_buffer_get_end_iter(m_buffer,&end ); |
1054 | gchar *text = gtk_text_buffer_get_text(m_buffer,&line,&end,TRUE); | |
58192970 | 1055 | wxString result(wxGTK_CONV_BACK(text)); |
905f2110 JS |
1056 | g_free(text); |
1057 | return result.BeforeFirst(wxT('\n')); | |
1058 | #endif | |
a6e21573 | 1059 | } |
ba3f6b44 | 1060 | else |
a81258be | 1061 | { |
ba3f6b44 RR |
1062 | if (lineNo == 0) return GetValue(); |
1063 | return wxEmptyString; | |
a81258be | 1064 | } |
6de97a3b | 1065 | } |
c801d85f | 1066 | |
a81258be RR |
1067 | void wxTextCtrl::OnDropFiles( wxDropFilesEvent &WXUNUSED(event) ) |
1068 | { | |
ac0d36b5 HH |
1069 | /* If you implement this, don't forget to update the documentation! |
1070 | * (file docs/latex/wx/text.tex) */ | |
223d09f6 | 1071 | wxFAIL_MSG( wxT("wxTextCtrl::OnDropFiles not implemented") ); |
a81258be | 1072 | } |
112892b9 | 1073 | |
0efe5ba7 | 1074 | bool wxTextCtrl::PositionToXY(long pos, long *x, long *y ) const |
c801d85f | 1075 | { |
96385642 | 1076 | if ( m_windowStyle & wxTE_MULTILINE ) |
805dd538 | 1077 | { |
96385642 VZ |
1078 | wxString text = GetValue(); |
1079 | ||
6085b116 | 1080 | // cast to prevent warning. But pos really should've been unsigned. |
2829d9e3 | 1081 | if( (unsigned long)pos > text.Len() ) |
7d8268a1 | 1082 | return false; |
96385642 | 1083 | |
ac0d36b5 HH |
1084 | *x=0; // First Col |
1085 | *y=0; // First Line | |
2829d9e3 | 1086 | |
05939a81 OK |
1087 | const wxChar* stop = text.c_str() + pos; |
1088 | for ( const wxChar *p = text.c_str(); p < stop; p++ ) | |
96385642 | 1089 | { |
223d09f6 | 1090 | if (*p == wxT('\n')) |
96385642 VZ |
1091 | { |
1092 | (*y)++; | |
ac0d36b5 | 1093 | *x=0; |
96385642 VZ |
1094 | } |
1095 | else | |
1096 | (*x)++; | |
1097 | } | |
805dd538 | 1098 | } |
96385642 VZ |
1099 | else // single line control |
1100 | { | |
2829d9e3 | 1101 | if ( pos <= GTK_ENTRY(m_text)->text_length ) |
96385642 | 1102 | { |
ac0d36b5 | 1103 | *y = 0; |
96385642 VZ |
1104 | *x = pos; |
1105 | } | |
1106 | else | |
1107 | { | |
1108 | // index out of bounds | |
7d8268a1 | 1109 | return false; |
96385642 | 1110 | } |
8bbe427f | 1111 | } |
96385642 | 1112 | |
7d8268a1 | 1113 | return true; |
6de97a3b | 1114 | } |
c801d85f | 1115 | |
e3ca08dd | 1116 | long wxTextCtrl::XYToPosition(long x, long y ) const |
c801d85f | 1117 | { |
2830bf19 | 1118 | if (!(m_windowStyle & wxTE_MULTILINE)) return 0; |
805dd538 | 1119 | |
2830bf19 | 1120 | long pos=0; |
ac0d36b5 | 1121 | for( int i=0; i<y; i++ ) pos += GetLineLength(i) + 1; // one for '\n' |
8bbe427f | 1122 | |
3358d36e | 1123 | pos += x; |
2830bf19 | 1124 | return pos; |
6de97a3b | 1125 | } |
c801d85f | 1126 | |
a81258be | 1127 | int wxTextCtrl::GetLineLength(long lineNo) const |
c801d85f | 1128 | { |
a81258be RR |
1129 | wxString str = GetLineText (lineNo); |
1130 | return (int) str.Length(); | |
6de97a3b | 1131 | } |
c801d85f | 1132 | |
a81258be | 1133 | int wxTextCtrl::GetNumberOfLines() const |
c801d85f | 1134 | { |
2830bf19 | 1135 | if (m_windowStyle & wxTE_MULTILINE) |
a81258be | 1136 | { |
fab591c5 | 1137 | #ifdef __WXGTK20__ |
41b81aed | 1138 | return gtk_text_buffer_get_line_count( m_buffer ); |
fab591c5 | 1139 | #else |
2830bf19 RR |
1140 | gint len = gtk_text_get_length( GTK_TEXT(m_text) ); |
1141 | char *text = gtk_editable_get_chars( GTK_EDITABLE(m_text), 0, len ); | |
1142 | ||
1143 | if (text) | |
1144 | { | |
1145 | int currentLine = 0; | |
1146 | for (int i = 0; i < len; i++ ) | |
96385642 | 1147 | { |
2830bf19 | 1148 | if (text[i] == '\n') |
96385642 VZ |
1149 | currentLine++; |
1150 | } | |
2830bf19 | 1151 | g_free( text ); |
2829d9e3 VZ |
1152 | |
1153 | // currentLine is 0 based, add 1 to get number of lines | |
1154 | return currentLine + 1; | |
2830bf19 RR |
1155 | } |
1156 | else | |
96385642 | 1157 | { |
2830bf19 | 1158 | return 0; |
96385642 | 1159 | } |
fab591c5 | 1160 | #endif |
a81258be RR |
1161 | } |
1162 | else | |
2830bf19 | 1163 | { |
96385642 | 1164 | return 1; |
2830bf19 | 1165 | } |
6de97a3b | 1166 | } |
c801d85f | 1167 | |
debe6624 | 1168 | void wxTextCtrl::SetInsertionPoint( long pos ) |
c801d85f | 1169 | { |
223d09f6 | 1170 | wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") ); |
3358d36e | 1171 | |
74c5a810 | 1172 | if ( IsMultiLine() ) |
291a8f20 | 1173 | { |
fab591c5 | 1174 | #ifdef __WXGTK20__ |
fab591c5 | 1175 | GtkTextIter iter; |
41b81aed RR |
1176 | gtk_text_buffer_get_iter_at_offset( m_buffer, &iter, pos ); |
1177 | gtk_text_buffer_place_cursor( m_buffer, &iter ); | |
74c5a810 VZ |
1178 | gtk_text_view_scroll_mark_onscreen |
1179 | ( | |
1180 | GTK_TEXT_VIEW(m_text), | |
41b81aed | 1181 | gtk_text_buffer_get_insert( m_buffer ) |
74c5a810 VZ |
1182 | ); |
1183 | #else // GTK+ 1.x | |
291a8f20 RR |
1184 | gtk_signal_disconnect_by_func( GTK_OBJECT(m_text), |
1185 | GTK_SIGNAL_FUNC(gtk_text_changed_callback), (gpointer)this); | |
3358d36e | 1186 | |
291a8f20 | 1187 | /* we fake a set_point by inserting and deleting. as the user |
fab591c5 | 1188 | isn't supposed to get to know about this non-sense, we |
3358d36e VZ |
1189 | disconnect so that no events are sent to the user program. */ |
1190 | ||
291a8f20 RR |
1191 | gint tmp = (gint)pos; |
1192 | gtk_editable_insert_text( GTK_EDITABLE(m_text), " ", 1, &tmp ); | |
3358d36e VZ |
1193 | gtk_editable_delete_text( GTK_EDITABLE(m_text), tmp-1, tmp ); |
1194 | ||
291a8f20 RR |
1195 | gtk_signal_connect( GTK_OBJECT(m_text), "changed", |
1196 | GTK_SIGNAL_FUNC(gtk_text_changed_callback), (gpointer)this); | |
3358d36e | 1197 | |
fab591c5 | 1198 | // bring editable's cursor uptodate. Bug in GTK. |
9e691f46 | 1199 | SET_EDITABLE_POS(m_text, gtk_text_get_point( GTK_TEXT(m_text) )); |
74c5a810 | 1200 | #endif // GTK+ 2/1 |
ac0d36b5 | 1201 | } |
2830bf19 | 1202 | else |
291a8f20 | 1203 | { |
d59051dd | 1204 | gtk_entry_set_position( GTK_ENTRY(m_text), (int)pos ); |
3358d36e | 1205 | |
fab591c5 | 1206 | // Bring editable's cursor uptodate. Bug in GTK. |
9e691f46 | 1207 | SET_EDITABLE_POS(m_text, (guint32)pos); |
291a8f20 | 1208 | } |
6de97a3b | 1209 | } |
c801d85f | 1210 | |
03f38c58 | 1211 | void wxTextCtrl::SetInsertionPointEnd() |
c801d85f | 1212 | { |
223d09f6 | 1213 | wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") ); |
8bbe427f | 1214 | |
d59051dd | 1215 | if (m_windowStyle & wxTE_MULTILINE) |
fab591c5 RR |
1216 | { |
1217 | #ifdef __WXGTK20__ | |
fab591c5 | 1218 | GtkTextIter end; |
41b81aed RR |
1219 | gtk_text_buffer_get_end_iter( m_buffer, &end ); |
1220 | gtk_text_buffer_place_cursor( m_buffer, &end ); | |
fab591c5 | 1221 | #else |
d59051dd | 1222 | SetInsertionPoint(gtk_text_get_length(GTK_TEXT(m_text))); |
fab591c5 RR |
1223 | #endif |
1224 | } | |
d59051dd | 1225 | else |
fab591c5 | 1226 | { |
d59051dd | 1227 | gtk_entry_set_position( GTK_ENTRY(m_text), -1 ); |
fab591c5 | 1228 | } |
6de97a3b | 1229 | } |
c801d85f | 1230 | |
debe6624 | 1231 | void wxTextCtrl::SetEditable( bool editable ) |
c801d85f | 1232 | { |
223d09f6 | 1233 | wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") ); |
8bbe427f | 1234 | |
2830bf19 | 1235 | if (m_windowStyle & wxTE_MULTILINE) |
fab591c5 RR |
1236 | { |
1237 | #ifdef __WXGTK20__ | |
1238 | gtk_text_view_set_editable( GTK_TEXT_VIEW(m_text), editable ); | |
1239 | #else | |
2830bf19 | 1240 | gtk_text_set_editable( GTK_TEXT(m_text), editable ); |
fab591c5 RR |
1241 | #endif |
1242 | } | |
2830bf19 | 1243 | else |
fab591c5 | 1244 | { |
2830bf19 | 1245 | gtk_entry_set_editable( GTK_ENTRY(m_text), editable ); |
fab591c5 | 1246 | } |
6de97a3b | 1247 | } |
c801d85f | 1248 | |
68df5777 RR |
1249 | bool wxTextCtrl::Enable( bool enable ) |
1250 | { | |
1251 | if (!wxWindowBase::Enable(enable)) | |
1252 | { | |
1253 | // nothing to do | |
7d8268a1 | 1254 | return false; |
68df5777 | 1255 | } |
f6bcfd97 | 1256 | |
68df5777 RR |
1257 | if (m_windowStyle & wxTE_MULTILINE) |
1258 | { | |
fab591c5 RR |
1259 | #ifdef __WXGTK20__ |
1260 | SetEditable( enable ); | |
1261 | #else | |
68df5777 | 1262 | gtk_text_set_editable( GTK_TEXT(m_text), enable ); |
5abf8c9d | 1263 | OnParentEnable(enable); |
fab591c5 | 1264 | #endif |
68df5777 RR |
1265 | } |
1266 | else | |
1267 | { | |
1268 | gtk_widget_set_sensitive( m_text, enable ); | |
1269 | } | |
1270 | ||
7d8268a1 | 1271 | return true; |
68df5777 RR |
1272 | } |
1273 | ||
fdca68a6 JS |
1274 | // wxGTK-specific: called recursively by Enable, |
1275 | // to give widgets an oppprtunity to correct their colours after they | |
1276 | // have been changed by Enable | |
1277 | void wxTextCtrl::OnParentEnable( bool enable ) | |
1278 | { | |
1279 | // If we have a custom background colour, we use this colour in both | |
1280 | // disabled and enabled mode, or we end up with a different colour under the | |
1281 | // text. | |
1282 | wxColour oldColour = GetBackgroundColour(); | |
1283 | if (oldColour.Ok()) | |
1284 | { | |
1285 | // Need to set twice or it'll optimize the useful stuff out | |
1286 | if (oldColour == * wxWHITE) | |
1287 | SetBackgroundColour(*wxBLACK); | |
1288 | else | |
1289 | SetBackgroundColour(*wxWHITE); | |
1290 | SetBackgroundColour(oldColour); | |
1291 | } | |
1292 | } | |
1293 | ||
3a9fa0d6 VZ |
1294 | void wxTextCtrl::MarkDirty() |
1295 | { | |
7d8268a1 | 1296 | m_modified = true; |
3a9fa0d6 VZ |
1297 | } |
1298 | ||
0efe5ba7 VZ |
1299 | void wxTextCtrl::DiscardEdits() |
1300 | { | |
7d8268a1 | 1301 | m_modified = false; |
0efe5ba7 VZ |
1302 | } |
1303 | ||
ce2f50e3 VZ |
1304 | // ---------------------------------------------------------------------------- |
1305 | // max text length support | |
1306 | // ---------------------------------------------------------------------------- | |
1307 | ||
1308 | void wxTextCtrl::IgnoreNextTextUpdate() | |
1309 | { | |
7d8268a1 | 1310 | m_ignoreNextUpdate = true; |
ce2f50e3 VZ |
1311 | } |
1312 | ||
1313 | bool wxTextCtrl::IgnoreTextUpdate() | |
1314 | { | |
1315 | if ( m_ignoreNextUpdate ) | |
1316 | { | |
7d8268a1 | 1317 | m_ignoreNextUpdate = false; |
ce2f50e3 | 1318 | |
7d8268a1 | 1319 | return true; |
ce2f50e3 VZ |
1320 | } |
1321 | ||
7d8268a1 | 1322 | return false; |
ce2f50e3 VZ |
1323 | } |
1324 | ||
d7eee191 VZ |
1325 | void wxTextCtrl::SetMaxLength(unsigned long len) |
1326 | { | |
1327 | if ( !HasFlag(wxTE_MULTILINE) ) | |
1328 | { | |
1329 | gtk_entry_set_max_length(GTK_ENTRY(m_text), len); | |
ce2f50e3 VZ |
1330 | |
1331 | // there is a bug in GTK+ 1.2.x: "changed" signal is emitted even if | |
1332 | // we had tried to enter more text than allowed by max text length and | |
1333 | // the text wasn't really changed | |
1334 | // | |
1335 | // to detect this and generate TEXT_MAXLEN event instead of | |
1336 | // TEXT_CHANGED one in this case we also catch "insert_text" signal | |
1337 | // | |
1338 | // when max len is set to 0 we disconnect our handler as it means that | |
1339 | // we shouldn't check anything any more | |
1340 | if ( len ) | |
1341 | { | |
1342 | gtk_signal_connect( GTK_OBJECT(m_text), | |
1343 | "insert_text", | |
1344 | GTK_SIGNAL_FUNC(gtk_insert_text_callback), | |
1345 | (gpointer)this); | |
1346 | } | |
1347 | else // no checking | |
1348 | { | |
1349 | gtk_signal_disconnect_by_func | |
1350 | ( | |
1351 | GTK_OBJECT(m_text), | |
1352 | GTK_SIGNAL_FUNC(gtk_insert_text_callback), | |
1353 | (gpointer)this | |
1354 | ); | |
1355 | } | |
d7eee191 VZ |
1356 | } |
1357 | } | |
1358 | ||
debe6624 | 1359 | void wxTextCtrl::SetSelection( long from, long to ) |
c801d85f | 1360 | { |
223d09f6 | 1361 | wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") ); |
8bbe427f | 1362 | |
2b5f62a0 VZ |
1363 | if (from == -1 && to == -1) |
1364 | { | |
1365 | from = 0; | |
1366 | to = GetValue().Length(); | |
1367 | } | |
1368 | ||
fab591c5 | 1369 | #ifndef __WXGTK20__ |
a1f79c1e VZ |
1370 | if ( (m_windowStyle & wxTE_MULTILINE) && |
1371 | !GTK_TEXT(m_text)->line_start_cache ) | |
1372 | { | |
1373 | // tell the programmer that it didn't work | |
1374 | wxLogDebug(_T("Can't call SetSelection() before realizing the control")); | |
1375 | return; | |
1376 | } | |
fab591c5 | 1377 | #endif |
a1f79c1e | 1378 | |
fab591c5 RR |
1379 | if (m_windowStyle & wxTE_MULTILINE) |
1380 | { | |
1381 | #ifdef __WXGTK20__ | |
739e366a | 1382 | GtkTextIter fromi, toi; |
41b81aed RR |
1383 | gtk_text_buffer_get_iter_at_offset( m_buffer, &fromi, from ); |
1384 | gtk_text_buffer_get_iter_at_offset( m_buffer, &toi, to ); | |
739e366a | 1385 | |
41b81aed RR |
1386 | gtk_text_buffer_place_cursor( m_buffer, &toi ); |
1387 | gtk_text_buffer_move_mark_by_name( m_buffer, "selection_bound", &fromi ); | |
fab591c5 RR |
1388 | #else |
1389 | gtk_editable_select_region( GTK_EDITABLE(m_text), (gint)from, (gint)to ); | |
1390 | #endif | |
1391 | } | |
1392 | else | |
1393 | { | |
1394 | gtk_editable_select_region( GTK_EDITABLE(m_text), (gint)from, (gint)to ); | |
1395 | } | |
6de97a3b | 1396 | } |
c801d85f | 1397 | |
afbe906a | 1398 | void wxTextCtrl::ShowPosition( long pos ) |
c801d85f | 1399 | { |
afbe906a RR |
1400 | if (m_windowStyle & wxTE_MULTILINE) |
1401 | { | |
71aba833 | 1402 | #ifdef __WXGTK20__ |
71aba833 | 1403 | GtkTextIter iter; |
41b81aed | 1404 | gtk_text_buffer_get_start_iter( m_buffer, &iter ); |
71aba833 | 1405 | gtk_text_iter_set_offset( &iter, pos ); |
41b81aed | 1406 | GtkTextMark *mark = gtk_text_buffer_create_mark( m_buffer, NULL, &iter, TRUE ); |
71aba833 VZ |
1407 | gtk_text_view_scroll_to_mark( GTK_TEXT_VIEW(m_text), mark, 0.0, FALSE, 0.0, 0.0 ); |
1408 | #else // GTK 1.x | |
afbe906a RR |
1409 | GtkAdjustment *vp = GTK_TEXT(m_text)->vadj; |
1410 | float totalLines = (float) GetNumberOfLines(); | |
1411 | long posX; | |
1412 | long posY; | |
1413 | PositionToXY(pos, &posX, &posY); | |
1414 | float posLine = (float) posY; | |
1415 | float p = (posLine/totalLines)*(vp->upper - vp->lower) + vp->lower; | |
1416 | gtk_adjustment_set_value(GTK_TEXT(m_text)->vadj, p); | |
71aba833 | 1417 | #endif // GTK 1.x/2.x |
afbe906a | 1418 | } |
6de97a3b | 1419 | } |
c801d85f | 1420 | |
692c9b86 VZ |
1421 | #ifdef __WXGTK20__ |
1422 | ||
1423 | wxTextCtrlHitTestResult | |
1424 | wxTextCtrl::HitTest(const wxPoint& pt, long *pos) const | |
1425 | { | |
1426 | if ( !IsMultiLine() ) | |
1427 | { | |
1428 | // not supported | |
1429 | return wxTE_HT_UNKNOWN; | |
1430 | } | |
1431 | ||
1432 | int x, y; | |
1433 | gtk_text_view_window_to_buffer_coords | |
1434 | ( | |
1435 | GTK_TEXT_VIEW(m_text), | |
1436 | GTK_TEXT_WINDOW_TEXT, | |
1437 | pt.x, pt.y, | |
1438 | &x, &y | |
1439 | ); | |
1440 | ||
1441 | GtkTextIter iter; | |
1442 | gtk_text_view_get_iter_at_location(GTK_TEXT_VIEW(m_text), &iter, x, y); | |
1443 | if ( pos ) | |
1444 | *pos = gtk_text_iter_get_offset(&iter); | |
1445 | ||
1446 | return wxTE_HT_ON_TEXT; | |
1447 | } | |
1448 | ||
1449 | #endif // __WXGTK20__ | |
1450 | ||
03f38c58 | 1451 | long wxTextCtrl::GetInsertionPoint() const |
c801d85f | 1452 | { |
223d09f6 | 1453 | wxCHECK_MSG( m_text != NULL, 0, wxT("invalid text ctrl") ); |
8bbe427f | 1454 | |
fab591c5 RR |
1455 | #ifdef __WXGTK20__ |
1456 | if (m_windowStyle & wxTE_MULTILINE) | |
1457 | { | |
fab591c5 RR |
1458 | // There is no direct accessor for the cursor, but |
1459 | // internally, the cursor is the "mark" called | |
1460 | // "insert" in the text view's btree structure. | |
a8bf1826 | 1461 | |
41b81aed | 1462 | GtkTextMark *mark = gtk_text_buffer_get_insert( m_buffer ); |
fab591c5 | 1463 | GtkTextIter cursor; |
41b81aed | 1464 | gtk_text_buffer_get_iter_at_mark( m_buffer, &cursor, mark ); |
a8bf1826 | 1465 | |
fab591c5 RR |
1466 | return gtk_text_iter_get_offset( &cursor ); |
1467 | } | |
1468 | else | |
1469 | #endif | |
1470 | { | |
9e691f46 | 1471 | return (long) GET_EDITABLE_POS(m_text); |
fab591c5 | 1472 | } |
6de97a3b | 1473 | } |
c801d85f | 1474 | |
7d8268a1 | 1475 | wxTextPos wxTextCtrl::GetLastPosition() const |
c801d85f | 1476 | { |
223d09f6 | 1477 | wxCHECK_MSG( m_text != NULL, 0, wxT("invalid text ctrl") ); |
8bbe427f | 1478 | |
2830bf19 | 1479 | int pos = 0; |
a8bf1826 | 1480 | |
2830bf19 | 1481 | if (m_windowStyle & wxTE_MULTILINE) |
fab591c5 RR |
1482 | { |
1483 | #ifdef __WXGTK20__ | |
fab591c5 | 1484 | GtkTextIter end; |
41b81aed | 1485 | gtk_text_buffer_get_end_iter( m_buffer, &end ); |
a8bf1826 | 1486 | |
fab591c5 RR |
1487 | pos = gtk_text_iter_get_offset( &end ); |
1488 | #else | |
2830bf19 | 1489 | pos = gtk_text_get_length( GTK_TEXT(m_text) ); |
fab591c5 RR |
1490 | #endif |
1491 | } | |
2830bf19 | 1492 | else |
fab591c5 | 1493 | { |
2830bf19 | 1494 | pos = GTK_ENTRY(m_text)->text_length; |
fab591c5 | 1495 | } |
805dd538 | 1496 | |
ac0d36b5 | 1497 | return (long)pos; |
6de97a3b | 1498 | } |
c801d85f | 1499 | |
debe6624 | 1500 | void wxTextCtrl::Remove( long from, long to ) |
c801d85f | 1501 | { |
223d09f6 | 1502 | wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") ); |
8bbe427f | 1503 | |
581ee8a9 | 1504 | #ifdef __WXGTK20__ |
fdd55287 | 1505 | if (m_windowStyle & wxTE_MULTILINE) |
581ee8a9 | 1506 | { |
581ee8a9 | 1507 | GtkTextIter fromi, toi; |
41b81aed RR |
1508 | gtk_text_buffer_get_iter_at_offset( m_buffer, &fromi, from ); |
1509 | gtk_text_buffer_get_iter_at_offset( m_buffer, &toi, to ); | |
581ee8a9 | 1510 | |
41b81aed | 1511 | gtk_text_buffer_delete( m_buffer, &fromi, &toi ); |
581ee8a9 VZ |
1512 | } |
1513 | else // single line | |
fab591c5 | 1514 | #endif |
581ee8a9 | 1515 | gtk_editable_delete_text( GTK_EDITABLE(m_text), (gint)from, (gint)to ); |
6de97a3b | 1516 | } |
c801d85f | 1517 | |
debe6624 | 1518 | void wxTextCtrl::Replace( long from, long to, const wxString &value ) |
c801d85f | 1519 | { |
223d09f6 | 1520 | wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") ); |
8bbe427f | 1521 | |
581ee8a9 | 1522 | Remove( from, to ); |
bb69661b | 1523 | |
7d8268a1 | 1524 | if (!value.empty()) |
2df7be7f | 1525 | { |
581ee8a9 VZ |
1526 | #ifdef __WXGTK20__ |
1527 | SetInsertionPoint( from ); | |
1528 | WriteText( value ); | |
1529 | #else // GTK 1.x | |
2df7be7f | 1530 | gint pos = (gint)from; |
05939a81 | 1531 | #if wxUSE_UNICODE |
2df7be7f RR |
1532 | wxWX2MBbuf buf = value.mbc_str(); |
1533 | gtk_editable_insert_text( GTK_EDITABLE(m_text), buf, strlen(buf), &pos ); | |
05939a81 | 1534 | #else |
2df7be7f | 1535 | gtk_editable_insert_text( GTK_EDITABLE(m_text), value, value.Length(), &pos ); |
581ee8a9 VZ |
1536 | #endif // wxUSE_UNICODE |
1537 | #endif // GTK 1.x/2.x | |
2df7be7f | 1538 | } |
6de97a3b | 1539 | } |
c801d85f | 1540 | |
03f38c58 | 1541 | void wxTextCtrl::Cut() |
c801d85f | 1542 | { |
223d09f6 | 1543 | wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") ); |
8bbe427f | 1544 | |
bbde2e29 VS |
1545 | #ifdef __WXGTK20__ |
1546 | if (m_windowStyle & wxTE_MULTILINE) | |
1547 | g_signal_emit_by_name(m_text, "cut-clipboard"); | |
1548 | else | |
fab591c5 | 1549 | #endif |
bbde2e29 | 1550 | gtk_editable_cut_clipboard(GTK_EDITABLE(m_text) DUMMY_CLIPBOARD_ARG); |
6de97a3b | 1551 | } |
c801d85f | 1552 | |
03f38c58 | 1553 | void wxTextCtrl::Copy() |
c801d85f | 1554 | { |
223d09f6 | 1555 | wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") ); |
8bbe427f | 1556 | |
bbde2e29 VS |
1557 | #ifdef __WXGTK20__ |
1558 | if (m_windowStyle & wxTE_MULTILINE) | |
1559 | g_signal_emit_by_name(m_text, "copy-clipboard"); | |
1560 | else | |
fab591c5 | 1561 | #endif |
bbde2e29 | 1562 | gtk_editable_copy_clipboard(GTK_EDITABLE(m_text) DUMMY_CLIPBOARD_ARG); |
6de97a3b | 1563 | } |
c801d85f | 1564 | |
03f38c58 | 1565 | void wxTextCtrl::Paste() |
c801d85f | 1566 | { |
223d09f6 | 1567 | wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") ); |
8bbe427f | 1568 | |
bbde2e29 VS |
1569 | #ifdef __WXGTK20__ |
1570 | if (m_windowStyle & wxTE_MULTILINE) | |
1571 | g_signal_emit_by_name(m_text, "paste-clipboard"); | |
1572 | else | |
fab591c5 | 1573 | #endif |
bbde2e29 | 1574 | gtk_editable_paste_clipboard(GTK_EDITABLE(m_text) DUMMY_CLIPBOARD_ARG); |
6de97a3b | 1575 | } |
c801d85f | 1576 | |
ca8b28f2 JS |
1577 | // Undo/redo |
1578 | void wxTextCtrl::Undo() | |
1579 | { | |
1580 | // TODO | |
223d09f6 | 1581 | wxFAIL_MSG( wxT("wxTextCtrl::Undo not implemented") ); |
ca8b28f2 JS |
1582 | } |
1583 | ||
1584 | void wxTextCtrl::Redo() | |
1585 | { | |
1586 | // TODO | |
223d09f6 | 1587 | wxFAIL_MSG( wxT("wxTextCtrl::Redo not implemented") ); |
ca8b28f2 JS |
1588 | } |
1589 | ||
1590 | bool wxTextCtrl::CanUndo() const | |
1591 | { | |
1592 | // TODO | |
4855a477 | 1593 | //wxFAIL_MSG( wxT("wxTextCtrl::CanUndo not implemented") ); |
7d8268a1 | 1594 | return false; |
ca8b28f2 JS |
1595 | } |
1596 | ||
1597 | bool wxTextCtrl::CanRedo() const | |
1598 | { | |
1599 | // TODO | |
4855a477 | 1600 | //wxFAIL_MSG( wxT("wxTextCtrl::CanRedo not implemented") ); |
7d8268a1 | 1601 | return false; |
ca8b28f2 JS |
1602 | } |
1603 | ||
1604 | // If the return values from and to are the same, there is no | |
1605 | // selection. | |
2d4cc5b6 | 1606 | void wxTextCtrl::GetSelection(long* fromOut, long* toOut) const |
ca8b28f2 | 1607 | { |
223d09f6 | 1608 | wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") ); |
bb69661b | 1609 | |
5b87f8bf RD |
1610 | gint from = -1; |
1611 | gint to = -1; | |
7d8268a1 | 1612 | bool haveSelection = false; |
5b87f8bf | 1613 | |
fb47b99f | 1614 | #ifdef __WXGTK20__ |
5b87f8bf RD |
1615 | if (m_windowStyle & wxTE_MULTILINE) |
1616 | { | |
5b87f8bf | 1617 | GtkTextIter ifrom, ito; |
41b81aed | 1618 | if ( gtk_text_buffer_get_selection_bounds(m_buffer, &ifrom, &ito) ) |
5b87f8bf | 1619 | { |
7d8268a1 | 1620 | haveSelection = true; |
5b87f8bf RD |
1621 | from = gtk_text_iter_get_offset(&ifrom); |
1622 | to = gtk_text_iter_get_offset(&ito); | |
1623 | } | |
1624 | } | |
1625 | else // not multi-line | |
1626 | { | |
1627 | if ( gtk_editable_get_selection_bounds( GTK_EDITABLE(m_text), | |
1628 | &from, &to) ) | |
1629 | { | |
7d8268a1 | 1630 | haveSelection = true; |
5b87f8bf RD |
1631 | } |
1632 | } | |
1633 | #else // not GTK2 | |
1634 | if ( (GTK_EDITABLE(m_text)->has_selection) ) | |
1635 | { | |
7d8268a1 | 1636 | haveSelection = true; |
5b87f8bf RD |
1637 | from = (long) GTK_EDITABLE(m_text)->selection_start_pos; |
1638 | to = (long) GTK_EDITABLE(m_text)->selection_end_pos; | |
1639 | } | |
9e691f46 | 1640 | #endif |
2d4cc5b6 | 1641 | |
5b87f8bf RD |
1642 | if (! haveSelection ) |
1643 | from = to = GetInsertionPoint(); | |
1644 | ||
1645 | if ( from > to ) | |
1646 | { | |
1647 | // exchange them to be compatible with wxMSW | |
1648 | gint tmp = from; | |
1649 | from = to; | |
1650 | to = tmp; | |
1651 | } | |
bb69661b | 1652 | |
2d4cc5b6 VZ |
1653 | if ( fromOut ) |
1654 | *fromOut = from; | |
1655 | if ( toOut ) | |
1656 | *toOut = to; | |
ca8b28f2 JS |
1657 | } |
1658 | ||
5b87f8bf | 1659 | |
ca8b28f2 JS |
1660 | bool wxTextCtrl::IsEditable() const |
1661 | { | |
7d8268a1 | 1662 | wxCHECK_MSG( m_text != NULL, false, wxT("invalid text ctrl") ); |
05060eeb | 1663 | |
9e691f46 | 1664 | #ifdef __WXGTK20__ |
fdd55287 VZ |
1665 | if (m_windowStyle & wxTE_MULTILINE) |
1666 | { | |
1667 | return gtk_text_view_get_editable(GTK_TEXT_VIEW(m_text)); | |
1668 | } | |
1669 | else | |
1670 | { | |
1671 | return gtk_editable_get_editable(GTK_EDITABLE(m_text)); | |
1672 | } | |
9e691f46 | 1673 | #else |
05060eeb | 1674 | return GTK_EDITABLE(m_text)->editable; |
9e691f46 | 1675 | #endif |
ca8b28f2 JS |
1676 | } |
1677 | ||
0efe5ba7 VZ |
1678 | bool wxTextCtrl::IsModified() const |
1679 | { | |
1680 | return m_modified; | |
1681 | } | |
1682 | ||
03f38c58 | 1683 | void wxTextCtrl::Clear() |
c801d85f | 1684 | { |
223d09f6 | 1685 | SetValue( wxT("") ); |
6de97a3b | 1686 | } |
c801d85f | 1687 | |
903f689b | 1688 | void wxTextCtrl::OnChar( wxKeyEvent &key_event ) |
c801d85f | 1689 | { |
223d09f6 | 1690 | wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") ); |
805dd538 | 1691 | |
12a3f227 | 1692 | if ((key_event.GetKeyCode() == WXK_RETURN) && (m_windowStyle & wxPROCESS_ENTER)) |
2830bf19 RR |
1693 | { |
1694 | wxCommandEvent event(wxEVT_COMMAND_TEXT_ENTER, m_windowId); | |
1695 | event.SetEventObject(this); | |
f6bcfd97 | 1696 | event.SetString(GetValue()); |
2830bf19 RR |
1697 | if (GetEventHandler()->ProcessEvent(event)) return; |
1698 | } | |
903f689b | 1699 | |
12a3f227 | 1700 | if ((key_event.GetKeyCode() == WXK_RETURN) && !(m_windowStyle & wxTE_MULTILINE)) |
da048e3d | 1701 | { |
2b328fc9 RR |
1702 | // This will invoke the dialog default action, such |
1703 | // as the clicking the default button. | |
a8bf1826 | 1704 | |
da048e3d | 1705 | wxWindow *top_frame = m_parent; |
8487f887 | 1706 | while (top_frame->GetParent() && !(top_frame->IsTopLevel())) |
da048e3d | 1707 | top_frame = top_frame->GetParent(); |
a8bf1826 | 1708 | |
2b328fc9 | 1709 | if (top_frame && GTK_IS_WINDOW(top_frame->m_widget)) |
da048e3d | 1710 | { |
2b328fc9 RR |
1711 | GtkWindow *window = GTK_WINDOW(top_frame->m_widget); |
1712 | ||
1713 | if (window->default_widget) | |
1714 | { | |
1715 | gtk_widget_activate (window->default_widget); | |
1716 | return; | |
1717 | } | |
13111b2a | 1718 | } |
da048e3d RR |
1719 | } |
1720 | ||
2830bf19 | 1721 | key_event.Skip(); |
6de97a3b | 1722 | } |
c801d85f | 1723 | |
03f38c58 | 1724 | GtkWidget* wxTextCtrl::GetConnectWidget() |
e3e65dac | 1725 | { |
ae0bdb01 | 1726 | return GTK_WIDGET(m_text); |
6de97a3b | 1727 | } |
e3e65dac | 1728 | |
903f689b RR |
1729 | bool wxTextCtrl::IsOwnGtkWindow( GdkWindow *window ) |
1730 | { | |
ae0bdb01 | 1731 | if (m_windowStyle & wxTE_MULTILINE) |
fab591c5 RR |
1732 | { |
1733 | #ifdef __WXGTK20__ | |
1734 | return window == gtk_text_view_get_window( GTK_TEXT_VIEW( m_text ), GTK_TEXT_WINDOW_TEXT ); // pure guesswork | |
1735 | #else | |
ae0bdb01 | 1736 | return (window == GTK_TEXT(m_text)->text_area); |
fab591c5 RR |
1737 | #endif |
1738 | } | |
ae0bdb01 | 1739 | else |
fab591c5 | 1740 | { |
ae0bdb01 | 1741 | return (window == GTK_ENTRY(m_text)->text_area); |
fab591c5 | 1742 | } |
903f689b | 1743 | } |
e3e65dac | 1744 | |
bb69661b VZ |
1745 | // the font will change for subsequent text insertiongs |
1746 | bool wxTextCtrl::SetFont( const wxFont &font ) | |
868a2826 | 1747 | { |
7d8268a1 | 1748 | wxCHECK_MSG( m_text != NULL, false, wxT("invalid text ctrl") ); |
8bbe427f | 1749 | |
a66954a6 | 1750 | if ( !wxTextCtrlBase::SetFont(font) ) |
bb69661b VZ |
1751 | { |
1752 | // font didn't change, nothing to do | |
7d8268a1 | 1753 | return false; |
bb69661b VZ |
1754 | } |
1755 | ||
1756 | if ( m_windowStyle & wxTE_MULTILINE ) | |
1757 | { | |
7d8268a1 | 1758 | SetUpdateFont(true); |
bb69661b | 1759 | |
1ff4714d VZ |
1760 | m_defaultStyle.SetFont(font); |
1761 | ||
01041145 | 1762 | ChangeFontGlobally(); |
bb69661b VZ |
1763 | } |
1764 | ||
7d8268a1 | 1765 | return true; |
58614078 RR |
1766 | } |
1767 | ||
01041145 VZ |
1768 | void wxTextCtrl::ChangeFontGlobally() |
1769 | { | |
1770 | // this method is very inefficient and hence should be called as rarely as | |
1771 | // possible! | |
c04ec496 VZ |
1772 | // |
1773 | // TODO: it can be implemented much more efficiently for GTK2 | |
c04ec496 | 1774 | #ifndef __WXGTK20__ |
22800f32 JS |
1775 | wxASSERT_MSG( (m_windowStyle & wxTE_MULTILINE) && m_updateFont, |
1776 | ||
01041145 | 1777 | _T("shouldn't be called for single line controls") ); |
22800f32 JS |
1778 | #else |
1779 | wxASSERT_MSG( (m_windowStyle & wxTE_MULTILINE), | |
1780 | _T("shouldn't be called for single line controls") ); | |
1781 | #endif | |
01041145 VZ |
1782 | |
1783 | wxString value = GetValue(); | |
7d8268a1 | 1784 | if ( !value.empty() ) |
01041145 | 1785 | { |
7d8268a1 | 1786 | SetUpdateFont(false); |
572aeb77 | 1787 | |
01041145 VZ |
1788 | Clear(); |
1789 | AppendText(value); | |
01041145 VZ |
1790 | } |
1791 | } | |
1792 | ||
c04ec496 VZ |
1793 | #ifndef __WXGTK20__ |
1794 | ||
01041145 VZ |
1795 | void wxTextCtrl::UpdateFontIfNeeded() |
1796 | { | |
1797 | if ( m_updateFont ) | |
1798 | ChangeFontGlobally(); | |
1799 | } | |
1800 | ||
c04ec496 VZ |
1801 | #endif // GTK+ 1.x |
1802 | ||
17665a2b VZ |
1803 | bool wxTextCtrl::SetForegroundColour(const wxColour& colour) |
1804 | { | |
1805 | if ( !wxControl::SetForegroundColour(colour) ) | |
7d8268a1 | 1806 | return false; |
17665a2b VZ |
1807 | |
1808 | // update default fg colour too | |
1809 | m_defaultStyle.SetTextColour(colour); | |
1810 | ||
7d8268a1 | 1811 | return true; |
17665a2b VZ |
1812 | } |
1813 | ||
f03fc89f | 1814 | bool wxTextCtrl::SetBackgroundColour( const wxColour &colour ) |
68dda785 | 1815 | { |
7d8268a1 | 1816 | wxCHECK_MSG( m_text != NULL, false, wxT("invalid text ctrl") ); |
a81258be | 1817 | |
1f477433 | 1818 | if ( !wxControl::SetBackgroundColour( colour ) ) |
7d8268a1 | 1819 | return false; |
3358d36e | 1820 | |
c2094564 | 1821 | #ifndef __WXGTK20__ |
f03fc89f | 1822 | if (!m_widget->window) |
7d8268a1 | 1823 | return false; |
c2094564 | 1824 | #endif |
8bbe427f | 1825 | |
f03fc89f | 1826 | if (!m_backgroundColour.Ok()) |
7d8268a1 | 1827 | return false; |
8bbe427f | 1828 | |
ae0bdb01 RR |
1829 | if (m_windowStyle & wxTE_MULTILINE) |
1830 | { | |
1fc32b12 | 1831 | #ifndef __WXGTK20__ |
ae0bdb01 | 1832 | GdkWindow *window = GTK_TEXT(m_text)->text_area; |
f03fc89f | 1833 | if (!window) |
7d8268a1 | 1834 | return false; |
ae0bdb01 RR |
1835 | m_backgroundColour.CalcPixel( gdk_window_get_colormap( window ) ); |
1836 | gdk_window_set_background( window, m_backgroundColour.GetColor() ); | |
1837 | gdk_window_clear( window ); | |
fab591c5 | 1838 | #endif |
ae0bdb01 | 1839 | } |
f03fc89f | 1840 | |
17665a2b VZ |
1841 | // change active background color too |
1842 | m_defaultStyle.SetBackgroundColour( colour ); | |
1843 | ||
7d8268a1 | 1844 | return true; |
58614078 RR |
1845 | } |
1846 | ||
eda40bfc | 1847 | bool wxTextCtrl::SetStyle( long start, long end, const wxTextAttr& style ) |
17665a2b | 1848 | { |
17665a2b VZ |
1849 | if ( m_windowStyle & wxTE_MULTILINE ) |
1850 | { | |
1851 | if ( style.IsDefault() ) | |
1852 | { | |
1853 | // nothing to do | |
7d8268a1 | 1854 | return true; |
17665a2b | 1855 | } |
cc3da3f8 | 1856 | #ifdef __WXGTK20__ |
41b81aed | 1857 | gint l = gtk_text_buffer_get_char_count( m_buffer ); |
17665a2b | 1858 | |
7d8268a1 | 1859 | wxCHECK_MSG( start >= 0 && end <= l, false, |
cc3da3f8 RR |
1860 | _T("invalid range in wxTextCtrl::SetStyle") ); |
1861 | ||
1862 | GtkTextIter starti, endi; | |
41b81aed RR |
1863 | gtk_text_buffer_get_iter_at_offset( m_buffer, &starti, start ); |
1864 | gtk_text_buffer_get_iter_at_offset( m_buffer, &endi, end ); | |
cc3da3f8 RR |
1865 | |
1866 | // use the attributes from style which are set in it and fall back | |
1867 | // first to the default style and then to the text control default | |
1868 | // colours for the others | |
1869 | wxTextAttr attr = wxTextAttr::Combine(style, m_defaultStyle, this); | |
1870 | ||
41b81aed | 1871 | wxGtkTextApplyTagsFromAttr( m_buffer, attr, &starti, &endi ); |
cc3da3f8 | 1872 | |
7d8268a1 | 1873 | return true; |
cc3da3f8 RR |
1874 | #else |
1875 | // VERY dirty way to do that - removes the required text and re-adds it | |
1876 | // with styling (FIXME) | |
5b87f8bf | 1877 | |
17665a2b VZ |
1878 | gint l = gtk_text_get_length( GTK_TEXT(m_text) ); |
1879 | ||
7d8268a1 | 1880 | wxCHECK_MSG( start >= 0 && end <= l, false, |
17665a2b VZ |
1881 | _T("invalid range in wxTextCtrl::SetStyle") ); |
1882 | ||
1883 | gint old_pos = gtk_editable_get_position( GTK_EDITABLE(m_text) ); | |
1884 | char *text = gtk_editable_get_chars( GTK_EDITABLE(m_text), start, end ); | |
1885 | wxString tmp(text,*wxConvCurrent); | |
1886 | g_free( text ); | |
1887 | ||
1888 | gtk_editable_delete_text( GTK_EDITABLE(m_text), start, end ); | |
1889 | gtk_editable_set_position( GTK_EDITABLE(m_text), start ); | |
1890 | ||
1891 | #if wxUSE_UNICODE | |
1892 | wxWX2MBbuf buf = tmp.mbc_str(); | |
1893 | const char *txt = buf; | |
1894 | size_t txtlen = strlen(buf); | |
1895 | #else | |
1896 | const char *txt = tmp; | |
1897 | size_t txtlen = tmp.length(); | |
1898 | #endif | |
1899 | ||
eda40bfc VZ |
1900 | // use the attributes from style which are set in it and fall back |
1901 | // first to the default style and then to the text control default | |
1902 | // colours for the others | |
1903 | wxGtkTextInsert(m_text, | |
1904 | wxTextAttr::Combine(style, m_defaultStyle, this), | |
1905 | txt, | |
1906 | txtlen); | |
17665a2b VZ |
1907 | |
1908 | /* does not seem to help under GTK+ 1.2 !!! | |
1909 | gtk_editable_set_position( GTK_EDITABLE(m_text), old_pos ); */ | |
1910 | SetInsertionPoint( old_pos ); | |
fab591c5 | 1911 | #endif |
7d8268a1 | 1912 | return true; |
17665a2b VZ |
1913 | } |
1914 | else // singe line | |
1915 | { | |
1916 | // cannot do this for GTK+'s Entry widget | |
7d8268a1 | 1917 | return false; |
17665a2b VZ |
1918 | } |
1919 | } | |
1920 | ||
f40fdaa3 | 1921 | void wxTextCtrl::DoApplyWidgetStyle(GtkRcStyle *style) |
58614078 | 1922 | { |
f40fdaa3 | 1923 | gtk_widget_modify_style(m_text, style); |
68dda785 | 1924 | } |
f96aa4d9 | 1925 | |
e702ff0f JS |
1926 | void wxTextCtrl::OnCut(wxCommandEvent& WXUNUSED(event)) |
1927 | { | |
1928 | Cut(); | |
1929 | } | |
1930 | ||
1931 | void wxTextCtrl::OnCopy(wxCommandEvent& WXUNUSED(event)) | |
1932 | { | |
1933 | Copy(); | |
1934 | } | |
1935 | ||
1936 | void wxTextCtrl::OnPaste(wxCommandEvent& WXUNUSED(event)) | |
1937 | { | |
1938 | Paste(); | |
1939 | } | |
1940 | ||
1941 | void wxTextCtrl::OnUndo(wxCommandEvent& WXUNUSED(event)) | |
1942 | { | |
1943 | Undo(); | |
1944 | } | |
1945 | ||
1946 | void wxTextCtrl::OnRedo(wxCommandEvent& WXUNUSED(event)) | |
1947 | { | |
1948 | Redo(); | |
1949 | } | |
1950 | ||
1951 | void wxTextCtrl::OnUpdateCut(wxUpdateUIEvent& event) | |
1952 | { | |
1953 | event.Enable( CanCut() ); | |
1954 | } | |
1955 | ||
1956 | void wxTextCtrl::OnUpdateCopy(wxUpdateUIEvent& event) | |
1957 | { | |
1958 | event.Enable( CanCopy() ); | |
1959 | } | |
1960 | ||
1961 | void wxTextCtrl::OnUpdatePaste(wxUpdateUIEvent& event) | |
1962 | { | |
1963 | event.Enable( CanPaste() ); | |
1964 | } | |
1965 | ||
1966 | void wxTextCtrl::OnUpdateUndo(wxUpdateUIEvent& event) | |
1967 | { | |
1968 | event.Enable( CanUndo() ); | |
1969 | } | |
1970 | ||
1971 | void wxTextCtrl::OnUpdateRedo(wxUpdateUIEvent& event) | |
1972 | { | |
1973 | event.Enable( CanRedo() ); | |
1974 | } | |
65045edd RR |
1975 | |
1976 | void wxTextCtrl::OnInternalIdle() | |
1977 | { | |
1978 | wxCursor cursor = m_cursor; | |
1979 | if (g_globalCursor.Ok()) cursor = g_globalCursor; | |
1980 | ||
307f16e8 | 1981 | if (cursor.Ok()) |
65045edd | 1982 | { |
fab591c5 | 1983 | #ifndef __WXGTK20__ |
65045edd | 1984 | GdkWindow *window = (GdkWindow*) NULL; |
13111b2a | 1985 | if (HasFlag(wxTE_MULTILINE)) |
65045edd RR |
1986 | window = GTK_TEXT(m_text)->text_area; |
1987 | else | |
1988 | window = GTK_ENTRY(m_text)->text_area; | |
13111b2a | 1989 | |
65045edd RR |
1990 | if (window) |
1991 | gdk_window_set_cursor( window, cursor.GetCursor() ); | |
1992 | ||
1993 | if (!g_globalCursor.Ok()) | |
1994 | cursor = *wxSTANDARD_CURSOR; | |
1995 | ||
1996 | window = m_widget->window; | |
247e5b16 | 1997 | if ((window) && !(GTK_WIDGET_NO_WINDOW(m_widget))) |
65045edd | 1998 | gdk_window_set_cursor( window, cursor.GetCursor() ); |
fab591c5 | 1999 | #endif |
65045edd | 2000 | } |
26bf1ce0 | 2001 | |
d7fa7eaa RR |
2002 | if (g_delayedFocus == this) |
2003 | { | |
2004 | if (GTK_WIDGET_REALIZED(m_widget)) | |
2005 | { | |
2006 | gtk_widget_grab_focus( m_widget ); | |
2007 | g_delayedFocus = NULL; | |
2008 | } | |
2009 | } | |
2010 | ||
e39af974 JS |
2011 | if (wxUpdateUIEvent::CanUpdate(this)) |
2012 | UpdateWindowUI(wxUPDATE_UI_FROMIDLE); | |
65045edd | 2013 | } |
f68586e5 VZ |
2014 | |
2015 | wxSize wxTextCtrl::DoGetBestSize() const | |
2016 | { | |
2017 | // FIXME should be different for multi-line controls... | |
0279e844 | 2018 | wxSize ret( wxControl::DoGetBestSize() ); |
9f884528 RD |
2019 | wxSize best(80, ret.y); |
2020 | CacheBestSize(best); | |
2021 | return best; | |
f68586e5 | 2022 | } |
0cc7251e | 2023 | |
9cd6d737 VZ |
2024 | // ---------------------------------------------------------------------------- |
2025 | // freeze/thaw | |
2026 | // ---------------------------------------------------------------------------- | |
2027 | ||
0cc7251e VZ |
2028 | void wxTextCtrl::Freeze() |
2029 | { | |
2030 | if ( HasFlag(wxTE_MULTILINE) ) | |
2031 | { | |
41b81aed RR |
2032 | #ifdef __WXGTK20__ |
2033 | if ( !m_frozenness++ ) | |
2034 | { | |
2035 | // freeze textview updates and remove buffer | |
2036 | g_signal_connect( G_OBJECT(m_text), "expose_event", | |
2037 | GTK_SIGNAL_FUNC(gtk_text_exposed_callback), (gpointer)this); | |
2038 | g_signal_connect( G_OBJECT(m_widget), "expose_event", | |
2039 | GTK_SIGNAL_FUNC(gtk_text_exposed_callback), (gpointer)this); | |
2040 | gtk_widget_set_sensitive(m_widget, false); | |
2041 | g_object_ref(m_buffer); | |
2042 | gtk_text_view_set_buffer(GTK_TEXT_VIEW(m_text), gtk_text_buffer_new(NULL)); | |
0cc7251e | 2043 | } |
41b81aed RR |
2044 | #else |
2045 | gtk_text_freeze(GTK_TEXT(m_text)); | |
fab591c5 | 2046 | #endif |
41b81aed | 2047 | } |
0cc7251e VZ |
2048 | } |
2049 | ||
2050 | void wxTextCtrl::Thaw() | |
2051 | { | |
2052 | if ( HasFlag(wxTE_MULTILINE) ) | |
2053 | { | |
41b81aed RR |
2054 | #ifdef __WXGTK20__ |
2055 | wxASSERT_MSG( m_frozenness > 0, _T("Thaw() without matching Freeze()") ); | |
2056 | ||
2057 | if ( !--m_frozenness ) | |
2058 | { | |
2059 | // Reattach buffer and thaw textview updates | |
2060 | gtk_text_view_set_buffer(GTK_TEXT_VIEW(m_text), m_buffer); | |
2061 | g_object_unref(m_buffer); | |
2062 | gtk_widget_set_sensitive(m_widget, true); | |
2063 | g_signal_handlers_disconnect_by_func(m_widget, (gpointer)gtk_text_exposed_callback, this); | |
2064 | g_signal_handlers_disconnect_by_func(m_text, (gpointer)gtk_text_exposed_callback, this); | |
2065 | } | |
2066 | #else | |
817ec43a VZ |
2067 | GTK_TEXT(m_text)->vadj->value = 0.0; |
2068 | ||
0cc7251e | 2069 | gtk_text_thaw(GTK_TEXT(m_text)); |
fab591c5 | 2070 | #endif |
41b81aed | 2071 | } |
0cc7251e | 2072 | } |
9cd6d737 | 2073 | |
9440c3d0 KH |
2074 | // ---------------------------------------------------------------------------- |
2075 | // wxTextUrlEvent passing if style & wxTE_AUTO_URL | |
2076 | // ---------------------------------------------------------------------------- | |
2077 | ||
2078 | #ifdef __WXGTK20__ | |
2079 | ||
2080 | // FIXME: when dragging on a link the sample gets an "Unknown event". | |
2081 | // This might be an excessive event from us or a buggy wxMouseEvent::Moving() or | |
2082 | // a buggy sample, or something else | |
2083 | void wxTextCtrl::OnUrlMouseEvent(wxMouseEvent& event) | |
2084 | { | |
2085 | event.Skip(); | |
2086 | if(!(m_windowStyle & wxTE_AUTO_URL)) | |
2087 | return; | |
2088 | ||
2089 | gint x, y; | |
2090 | GtkTextIter start, end; | |
2091 | GtkTextTag *tag = gtk_text_tag_table_lookup(gtk_text_buffer_get_tag_table(m_buffer), | |
2092 | "wxUrl"); | |
2093 | ||
2094 | gtk_text_view_window_to_buffer_coords(GTK_TEXT_VIEW(m_text), GTK_TEXT_WINDOW_WIDGET, | |
2095 | event.GetX(), event.GetY(), &x, &y); | |
2096 | ||
2097 | gtk_text_view_get_iter_at_location(GTK_TEXT_VIEW(m_text), &end, x, y); | |
2098 | if (!gtk_text_iter_has_tag(&end, tag)) | |
2099 | { | |
2100 | gdk_window_set_cursor(gtk_text_view_get_window(GTK_TEXT_VIEW(m_text), | |
2101 | GTK_TEXT_WINDOW_TEXT), m_gdkXTermCursor); | |
2102 | return; | |
2103 | } | |
2104 | ||
2105 | gdk_window_set_cursor(gtk_text_view_get_window(GTK_TEXT_VIEW(m_text), | |
2106 | GTK_TEXT_WINDOW_TEXT), m_gdkHandCursor); | |
2107 | ||
2108 | start = end; | |
2109 | if(!gtk_text_iter_begins_tag(&start, tag)) | |
2110 | gtk_text_iter_backward_to_tag_toggle(&start, tag); | |
2111 | if(!gtk_text_iter_ends_tag(&end, tag)) | |
2112 | gtk_text_iter_forward_to_tag_toggle(&end, tag); | |
2113 | ||
2114 | // Native context menu is probably not desired on an URL. | |
2115 | // Consider making this dependant on ProcessEvent(wxTextUrlEvent) return value | |
2116 | if(event.GetEventType() == wxEVT_RIGHT_DOWN) | |
2117 | event.Skip(false); | |
2118 | ||
2119 | wxTextUrlEvent url_event(m_windowId, event, | |
2120 | gtk_text_iter_get_offset(&start), | |
2121 | gtk_text_iter_get_offset(&end)); | |
2122 | ||
2123 | InitCommandEvent(url_event); | |
2124 | // Is that a good idea? Seems not (pleasure with gtk_text_view_start_selection_drag) | |
2125 | //event.Skip(!GetEventHandler()->ProcessEvent(url_event)); | |
2126 | GetEventHandler()->ProcessEvent(url_event); | |
2127 | } | |
2128 | #endif // gtk2 | |
2129 | ||
9cd6d737 VZ |
2130 | // ---------------------------------------------------------------------------- |
2131 | // scrolling | |
2132 | // ---------------------------------------------------------------------------- | |
2133 | ||
2134 | GtkAdjustment *wxTextCtrl::GetVAdj() const | |
2135 | { | |
1ce52aa6 VZ |
2136 | if ( !IsMultiLine() ) |
2137 | return NULL; | |
2138 | ||
fab591c5 | 2139 | #ifdef __WXGTK20__ |
1ce52aa6 | 2140 | return gtk_scrolled_window_get_vadjustment(GTK_SCROLLED_WINDOW(m_widget)); |
fab591c5 | 2141 | #else |
1ce52aa6 | 2142 | return GTK_TEXT(m_text)->vadj; |
fab591c5 | 2143 | #endif |
9cd6d737 VZ |
2144 | } |
2145 | ||
2146 | bool wxTextCtrl::DoScroll(GtkAdjustment *adj, int diff) | |
2147 | { | |
2148 | float value = adj->value + diff; | |
2149 | ||
2150 | if ( value < 0 ) | |
2151 | value = 0; | |
2152 | ||
2153 | float upper = adj->upper - adj->page_size; | |
2154 | if ( value > upper ) | |
2155 | value = upper; | |
2156 | ||
2157 | // did we noticeably change the scroll position? | |
2158 | if ( fabs(adj->value - value) < 0.2 ) | |
2159 | { | |
2160 | // well, this is what Robert does in wxScrollBar, so it must be good... | |
7d8268a1 | 2161 | return false; |
9cd6d737 VZ |
2162 | } |
2163 | ||
2164 | adj->value = value; | |
2165 | ||
1ce52aa6 VZ |
2166 | #ifdef __WXGTK20__ |
2167 | gtk_adjustment_value_changed(GTK_ADJUSTMENT(adj)); | |
2168 | #else | |
9cd6d737 | 2169 | gtk_signal_emit_by_name(GTK_OBJECT(adj), "value_changed"); |
fab591c5 | 2170 | #endif |
1ce52aa6 | 2171 | |
7d8268a1 | 2172 | return true; |
9cd6d737 VZ |
2173 | } |
2174 | ||
2175 | bool wxTextCtrl::ScrollLines(int lines) | |
2176 | { | |
2177 | GtkAdjustment *adj = GetVAdj(); | |
2178 | if ( !adj ) | |
7d8268a1 | 2179 | return false; |
9cd6d737 | 2180 | |
1ce52aa6 VZ |
2181 | #ifdef __WXGTK20__ |
2182 | int diff = (int)ceil(lines*adj->step_increment); | |
2183 | #else | |
9cd6d737 | 2184 | // this is hardcoded to 10 in GTK+ 1.2 (great idea) |
1ce52aa6 | 2185 | int diff = 10*lines; |
fab591c5 | 2186 | #endif |
1ce52aa6 VZ |
2187 | |
2188 | return DoScroll(adj, diff); | |
9cd6d737 VZ |
2189 | } |
2190 | ||
2191 | bool wxTextCtrl::ScrollPages(int pages) | |
2192 | { | |
2193 | GtkAdjustment *adj = GetVAdj(); | |
2194 | if ( !adj ) | |
7d8268a1 | 2195 | return false; |
9cd6d737 | 2196 | |
817ec43a | 2197 | return DoScroll(adj, (int)ceil(pages*adj->page_increment)); |
9cd6d737 VZ |
2198 | } |
2199 | ||
9d522606 RD |
2200 | |
2201 | // static | |
2202 | wxVisualAttributes | |
2203 | wxTextCtrl::GetClassDefaultAttributes(wxWindowVariant WXUNUSED(variant)) | |
2204 | { | |
2205 | return GetDefaultAttributesFromGTKWidget(gtk_entry_new, true); | |
2206 | } |