]>
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> | |
817ec43a | 29 | #include <math.h> // for fabs |
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 | ||
147 | static void | |
148 | gtk_insert_text_callback(GtkEditable *editable, | |
149 | const gchar *new_text, | |
150 | gint new_text_length, | |
151 | gint *position, | |
152 | wxTextCtrl *win) | |
153 | { | |
76fcf0f2 RR |
154 | if (g_isIdle) |
155 | wxapp_install_idle_handler(); | |
156 | ||
ce2f50e3 VZ |
157 | // we should only be called if we have a max len limit at all |
158 | GtkEntry *entry = GTK_ENTRY (editable); | |
159 | ||
160 | wxCHECK_RET( entry->text_max_length, _T("shouldn't be called") ); | |
161 | ||
162 | // check that we don't overflow the max length limit | |
163 | // | |
164 | // FIXME: this doesn't work when we paste a string which is going to be | |
165 | // truncated | |
166 | if ( entry->text_length == entry->text_max_length ) | |
167 | { | |
168 | // we don't need to run the base class version at all | |
169 | gtk_signal_emit_stop_by_name(GTK_OBJECT(editable), "insert_text"); | |
170 | ||
171 | // remember that the next changed signal is to be ignored to avoid | |
172 | // generating a dummy wxEVT_COMMAND_TEXT_UPDATED event | |
173 | win->IgnoreNextTextUpdate(); | |
174 | ||
175 | // and generate the correct one ourselves | |
176 | wxCommandEvent event(wxEVT_COMMAND_TEXT_MAXLEN, win->GetId()); | |
177 | event.SetEventObject(win); | |
178 | event.SetString(win->GetValue()); | |
179 | win->GetEventHandler()->ProcessEvent( event ); | |
180 | } | |
181 | } | |
182 | ||
c801d85f | 183 | //----------------------------------------------------------------------------- |
2f2aa628 | 184 | // "changed" |
c801d85f KB |
185 | //----------------------------------------------------------------------------- |
186 | ||
805dd538 | 187 | static void |
ba3f6b44 | 188 | gtk_text_changed_callback( GtkWidget *widget, wxTextCtrl *win ) |
484e45bf | 189 | { |
ce2f50e3 VZ |
190 | if ( win->IgnoreTextUpdate() ) |
191 | return; | |
192 | ||
a2053b27 | 193 | if (!win->m_hasVMT) return; |
805dd538 | 194 | |
bb69661b | 195 | if (g_isIdle) |
3c679789 | 196 | wxapp_install_idle_handler(); |
a8bf1826 | 197 | |
034be888 | 198 | win->SetModified(); |
c04ec496 | 199 | #ifndef __WXGTK20__ |
01041145 | 200 | win->UpdateFontIfNeeded(); |
c04ec496 | 201 | #endif // !__WXGTK20__ |
a8bf1826 | 202 | |
f03fc89f | 203 | wxCommandEvent event( wxEVT_COMMAND_TEXT_UPDATED, win->GetId() ); |
2830bf19 | 204 | event.SetEventObject( win ); |
ce2f50e3 | 205 | event.SetString( win->GetValue() ); |
2830bf19 | 206 | win->GetEventHandler()->ProcessEvent( event ); |
6de97a3b | 207 | } |
112892b9 | 208 | |
41b81aed RR |
209 | //----------------------------------------------------------------------------- |
210 | // "expose_event" from scrolled window and textview | |
211 | //----------------------------------------------------------------------------- | |
212 | ||
213 | #ifdef __WXGTK20__ | |
214 | static gboolean | |
215 | gtk_text_exposed_callback( GtkWidget *widget, GdkEventExpose *event, wxTextCtrl *win ) | |
216 | { | |
217 | return TRUE; | |
218 | } | |
219 | #endif | |
220 | ||
2830bf19 | 221 | //----------------------------------------------------------------------------- |
034be888 | 222 | // "changed" from vertical scrollbar |
2830bf19 RR |
223 | //----------------------------------------------------------------------------- |
224 | ||
fab591c5 | 225 | #ifndef __WXGTK20__ |
805dd538 | 226 | static void |
034be888 | 227 | gtk_scrollbar_changed_callback( GtkWidget *WXUNUSED(widget), wxTextCtrl *win ) |
2830bf19 | 228 | { |
3c679789 | 229 | if (!win->m_hasVMT) return; |
bb69661b VZ |
230 | |
231 | if (g_isIdle) | |
3c679789 | 232 | wxapp_install_idle_handler(); |
acfd422a | 233 | |
2830bf19 RR |
234 | win->CalculateScrollbar(); |
235 | } | |
fab591c5 | 236 | #endif |
2830bf19 | 237 | |
1c35b54e VZ |
238 | // ---------------------------------------------------------------------------- |
239 | // redraw callback for multiline text | |
240 | // ---------------------------------------------------------------------------- | |
241 | ||
242 | #ifndef __WXGTK20__ | |
243 | ||
244 | // redrawing a GtkText from inside a wxYield() call results in crashes (the | |
245 | // text sample shows it in its "Add lines" command which shows wxProgressDialog | |
246 | // which implicitly calls wxYield()) so we override GtkText::draw() and simply | |
247 | // don't do anything if we're inside wxYield() | |
248 | ||
249 | extern bool wxIsInsideYield; | |
250 | ||
2e08b1a3 VZ |
251 | extern "C" { |
252 | typedef void (*GtkDrawCallback)(GtkWidget *widget, GdkRectangle *rect); | |
253 | } | |
1c35b54e VZ |
254 | |
255 | static GtkDrawCallback gs_gtk_text_draw = NULL; | |
256 | ||
257 | extern "C" | |
258 | void wxgtk_text_draw( GtkWidget *widget, GdkRectangle *rect) | |
259 | { | |
260 | if ( !wxIsInsideYield ) | |
261 | { | |
262 | wxCHECK_RET( gs_gtk_text_draw != wxgtk_text_draw, | |
263 | _T("infinite recursion in wxgtk_text_draw aborted") ); | |
264 | ||
265 | gs_gtk_text_draw(widget, rect); | |
266 | } | |
267 | } | |
268 | ||
269 | #endif // __WXGTK20__ | |
270 | ||
2f2aa628 RR |
271 | //----------------------------------------------------------------------------- |
272 | // wxTextCtrl | |
273 | //----------------------------------------------------------------------------- | |
274 | ||
275 | IMPLEMENT_DYNAMIC_CLASS(wxTextCtrl,wxControl) | |
276 | ||
c801d85f | 277 | BEGIN_EVENT_TABLE(wxTextCtrl, wxControl) |
2830bf19 | 278 | EVT_CHAR(wxTextCtrl::OnChar) |
e702ff0f JS |
279 | |
280 | EVT_MENU(wxID_CUT, wxTextCtrl::OnCut) | |
281 | EVT_MENU(wxID_COPY, wxTextCtrl::OnCopy) | |
282 | EVT_MENU(wxID_PASTE, wxTextCtrl::OnPaste) | |
283 | EVT_MENU(wxID_UNDO, wxTextCtrl::OnUndo) | |
284 | EVT_MENU(wxID_REDO, wxTextCtrl::OnRedo) | |
285 | ||
286 | EVT_UPDATE_UI(wxID_CUT, wxTextCtrl::OnUpdateCut) | |
287 | EVT_UPDATE_UI(wxID_COPY, wxTextCtrl::OnUpdateCopy) | |
288 | EVT_UPDATE_UI(wxID_PASTE, wxTextCtrl::OnUpdatePaste) | |
289 | EVT_UPDATE_UI(wxID_UNDO, wxTextCtrl::OnUpdateUndo) | |
290 | EVT_UPDATE_UI(wxID_REDO, wxTextCtrl::OnUpdateRedo) | |
c801d85f KB |
291 | END_EVENT_TABLE() |
292 | ||
01041145 | 293 | void wxTextCtrl::Init() |
f5abe911 | 294 | { |
ce2f50e3 | 295 | m_ignoreNextUpdate = |
f5abe911 | 296 | m_modified = FALSE; |
c04ec496 | 297 | SetUpdateFont(FALSE); |
3ca6a5f0 BP |
298 | m_text = |
299 | m_vScrollbar = (GtkWidget *)NULL; | |
41b81aed RR |
300 | #ifdef __WXGTK20__ |
301 | m_frozenness = 0; | |
302 | #endif | |
f5abe911 | 303 | } |
13289f04 | 304 | |
13111b2a VZ |
305 | wxTextCtrl::wxTextCtrl( wxWindow *parent, |
306 | wxWindowID id, | |
307 | const wxString &value, | |
308 | const wxPoint &pos, | |
309 | const wxSize &size, | |
310 | long style, | |
311 | const wxValidator& validator, | |
312 | const wxString &name ) | |
f5abe911 | 313 | { |
01041145 VZ |
314 | Init(); |
315 | ||
f5abe911 RR |
316 | Create( parent, id, value, pos, size, style, validator, name ); |
317 | } | |
c801d85f | 318 | |
13111b2a VZ |
319 | bool wxTextCtrl::Create( wxWindow *parent, |
320 | wxWindowID id, | |
321 | const wxString &value, | |
322 | const wxPoint &pos, | |
323 | const wxSize &size, | |
324 | long style, | |
325 | const wxValidator& validator, | |
326 | const wxString &name ) | |
c801d85f | 327 | { |
2830bf19 | 328 | m_needParent = TRUE; |
b292e2f5 | 329 | m_acceptsFocus = TRUE; |
484e45bf | 330 | |
4dcaf11a RR |
331 | if (!PreCreation( parent, pos, size ) || |
332 | !CreateBase( parent, id, pos, size, style, validator, name )) | |
333 | { | |
223d09f6 | 334 | wxFAIL_MSG( wxT("wxTextCtrl creation failed") ); |
13111b2a | 335 | return FALSE; |
4dcaf11a | 336 | } |
6de97a3b | 337 | |
805dd538 | 338 | |
034be888 | 339 | m_vScrollbarVisible = FALSE; |
13289f04 | 340 | |
2830bf19 | 341 | bool multi_line = (style & wxTE_MULTILINE) != 0; |
a8bf1826 | 342 | |
ab46dc18 | 343 | if (multi_line) |
2830bf19 | 344 | { |
fab591c5 RR |
345 | #ifdef __WXGTK20__ |
346 | // Create view | |
347 | m_text = gtk_text_view_new(); | |
a8bf1826 | 348 | |
41b81aed | 349 | m_buffer = gtk_text_view_get_buffer( GTK_TEXT_VIEW(m_text) ); |
a8bf1826 | 350 | |
fab591c5 RR |
351 | // create scrolled window |
352 | m_widget = gtk_scrolled_window_new( NULL, NULL ); | |
353 | gtk_scrolled_window_set_policy( GTK_SCROLLED_WINDOW( m_widget ), | |
354 | GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC ); | |
a8bf1826 | 355 | |
fab591c5 RR |
356 | // Insert view into scrolled window |
357 | gtk_container_add( GTK_CONTAINER(m_widget), m_text ); | |
a8bf1826 | 358 | |
fab591c5 | 359 | // Global settings which can be overridden by tags, I guess. |
9d522606 | 360 | if (HasFlag( wxHSCROLL ) || HasFlag( wxTE_DONTWRAP )) |
fab591c5 RR |
361 | gtk_text_view_set_wrap_mode( GTK_TEXT_VIEW( m_text ), GTK_WRAP_NONE ); |
362 | else | |
363 | gtk_text_view_set_wrap_mode( GTK_TEXT_VIEW( m_text ), GTK_WRAP_WORD ); | |
805dd538 | 364 | |
fab591c5 RR |
365 | if (!HasFlag(wxNO_BORDER)) |
366 | gtk_scrolled_window_set_shadow_type( GTK_SCROLLED_WINDOW(m_widget), GTK_SHADOW_IN ); | |
055e633d RR |
367 | |
368 | GTK_WIDGET_UNSET_FLAGS( m_widget, GTK_CAN_FOCUS ); | |
fab591c5 RR |
369 | #else |
370 | // create our control ... | |
2830bf19 RR |
371 | m_text = gtk_text_new( (GtkAdjustment *) NULL, (GtkAdjustment *) NULL ); |
372 | ||
fab591c5 RR |
373 | // ... and put into the upper left hand corner of the table |
374 | bool bHasHScrollbar = FALSE; | |
2830bf19 | 375 | m_widget = gtk_table_new(bHasHScrollbar ? 2 : 1, 2, FALSE); |
5664fc32 | 376 | GTK_WIDGET_UNSET_FLAGS( m_widget, GTK_CAN_FOCUS ); |
2830bf19 | 377 | gtk_table_attach( GTK_TABLE(m_widget), m_text, 0, 1, 0, 1, |
41dee9d0 | 378 | (GtkAttachOptions)(GTK_FILL | GTK_EXPAND | GTK_SHRINK), |
f5368809 RR |
379 | (GtkAttachOptions)(GTK_FILL | GTK_EXPAND | GTK_SHRINK), |
380 | 0, 0); | |
bb69661b | 381 | |
fab591c5 | 382 | // always wrap words |
5c387335 | 383 | gtk_text_set_word_wrap( GTK_TEXT(m_text), TRUE ); |
bb69661b | 384 | |
fab591c5 | 385 | // finally, put the vertical scrollbar in the upper right corner |
ab46dc18 RR |
386 | m_vScrollbar = gtk_vscrollbar_new( GTK_TEXT(m_text)->vadj ); |
387 | GTK_WIDGET_UNSET_FLAGS( m_vScrollbar, GTK_CAN_FOCUS ); | |
ab46dc18 RR |
388 | gtk_table_attach(GTK_TABLE(m_widget), m_vScrollbar, 1, 2, 0, 1, |
389 | GTK_FILL, | |
390 | (GtkAttachOptions)(GTK_EXPAND | GTK_FILL | GTK_SHRINK), | |
391 | 0, 0); | |
fab591c5 | 392 | #endif |
2830bf19 RR |
393 | } |
394 | else | |
395 | { | |
fab591c5 | 396 | // a single-line text control: no need for scrollbars |
2830bf19 | 397 | m_widget = |
1c35b54e | 398 | m_text = gtk_entry_new(); |
2830bf19 | 399 | } |
484e45bf | 400 | |
db434467 | 401 | m_parent->DoAddChild( this ); |
eda40bfc | 402 | |
76fcf0f2 | 403 | m_focusWidget = m_text; |
db434467 | 404 | |
abdeb9e7 | 405 | PostCreation(size); |
484e45bf | 406 | |
2830bf19 | 407 | if (multi_line) |
2830bf19 | 408 | gtk_widget_show(m_text); |
13289f04 | 409 | |
fab591c5 | 410 | #ifndef __WXGTK20__ |
ab46dc18 RR |
411 | if (multi_line) |
412 | { | |
413 | gtk_signal_connect(GTK_OBJECT(GTK_TEXT(m_text)->vadj), "changed", | |
414 | (GtkSignalFunc) gtk_scrollbar_changed_callback, (gpointer) this ); | |
1c35b54e | 415 | |
1c35b54e VZ |
416 | // only initialize gs_gtk_text_draw once, starting from the next the |
417 | // klass::draw will already be wxgtk_text_draw | |
418 | if ( !gs_gtk_text_draw ) | |
419 | { | |
420 | GtkDrawCallback& | |
421 | draw = GTK_WIDGET_CLASS(GTK_OBJECT(m_text)->klass)->draw; | |
422 | ||
423 | gs_gtk_text_draw = draw; | |
424 | ||
425 | draw = wxgtk_text_draw; | |
426 | } | |
ab46dc18 | 427 | } |
fab591c5 | 428 | #endif // GTK+ 1.x |
3358d36e | 429 | |
291a8f20 | 430 | if (!value.IsEmpty()) |
2830bf19 | 431 | { |
fab591c5 RR |
432 | #ifdef __WXGTK20__ |
433 | SetValue( value ); | |
434 | #else | |
3358d36e | 435 | |
9e691f46 | 436 | #if !GTK_CHECK_VERSION(1, 2, 0) |
3358d36e VZ |
437 | // if we don't realize it, GTK 1.0.6 dies with a SIGSEGV in |
438 | // gtk_editable_insert_text() | |
439 | gtk_widget_realize(m_text); | |
440 | #endif // GTK 1.0 | |
441 | ||
fab591c5 | 442 | gint tmp = 0; |
05939a81 | 443 | #if wxUSE_UNICODE |
3358d36e | 444 | wxWX2MBbuf val = value.mbc_str(); |
05939a81 | 445 | gtk_editable_insert_text( GTK_EDITABLE(m_text), val, strlen(val), &tmp ); |
fab591c5 | 446 | #else |
2830bf19 | 447 | gtk_editable_insert_text( GTK_EDITABLE(m_text), value, value.Length(), &tmp ); |
fab591c5 | 448 | #endif |
3358d36e | 449 | |
291a8f20 RR |
450 | if (multi_line) |
451 | { | |
fab591c5 | 452 | // Bring editable's cursor uptodate. Bug in GTK. |
9e691f46 | 453 | SET_EDITABLE_POS(m_text, gtk_text_get_point( GTK_TEXT(m_text) )); |
3358d36e | 454 | } |
a8bf1826 | 455 | |
fab591c5 | 456 | #endif |
2830bf19 | 457 | } |
484e45bf | 458 | |
2830bf19 RR |
459 | if (style & wxTE_PASSWORD) |
460 | { | |
461 | if (!multi_line) | |
462 | gtk_entry_set_visibility( GTK_ENTRY(m_text), FALSE ); | |
463 | } | |
8bbe427f | 464 | |
2830bf19 RR |
465 | if (style & wxTE_READONLY) |
466 | { | |
467 | if (!multi_line) | |
468 | gtk_entry_set_editable( GTK_ENTRY(m_text), FALSE ); | |
fab591c5 RR |
469 | #ifdef __WXGTK20__ |
470 | else | |
98a8daf4 VS |
471 | gtk_text_view_set_editable( GTK_TEXT_VIEW( m_text), FALSE); |
472 | #else | |
473 | } | |
474 | else | |
475 | { | |
476 | if (multi_line) | |
477 | gtk_text_set_editable( GTK_TEXT(m_text), 1 ); | |
478 | #endif | |
479 | } | |
480 | ||
c663fbea VS |
481 | #ifdef __WXGTK20__ |
482 | if (multi_line) | |
483 | { | |
484 | if (style & wxTE_RIGHT) | |
485 | gtk_text_view_set_justification( GTK_TEXT_VIEW(m_text), GTK_JUSTIFY_RIGHT ); | |
486 | else if (style & wxTE_CENTRE) | |
487 | gtk_text_view_set_justification( GTK_TEXT_VIEW(m_text), GTK_JUSTIFY_CENTER ); | |
488 | // Left justify (alignment) is the default and we don't need to apply GTK_JUSTIFY_LEFT | |
489 | } | |
490 | // gtk_entry_set_alignment was introduced in gtk+-2.3.5 | |
491 | #if GTK_CHECK_VERSION(2, 3, 5) | |
492 | else | |
493 | { | |
494 | if (style & wxTE_RIGHT) | |
495 | gtk_entry_set_alignment( GTK_ENTRY(m_text), 1.0 ); | |
496 | else if (style & wxTE_CENTRE) | |
497 | gtk_entry_set_alignment( GTK_ENTRY(m_text), 0.5 ); | |
498 | } | |
499 | #endif // gtk+-2.3.5 | |
500 | #endif // __WXGTK20__ | |
9d522606 | 501 | |
fab591c5 RR |
502 | // We want to be notified about text changes. |
503 | #ifdef __WXGTK20__ | |
504 | if (multi_line) | |
505 | { | |
41b81aed | 506 | g_signal_connect( G_OBJECT(m_buffer), "changed", |
fab591c5 RR |
507 | GTK_SIGNAL_FUNC(gtk_text_changed_callback), (gpointer)this); |
508 | } | |
509 | else | |
510 | #endif | |
9d522606 | 511 | |
fab591c5 | 512 | { |
055e633d RR |
513 | gtk_signal_connect( GTK_OBJECT(m_text), "changed", |
514 | GTK_SIGNAL_FUNC(gtk_text_changed_callback), (gpointer)this); | |
fab591c5 | 515 | } |
ce16e5d7 | 516 | |
65045edd | 517 | m_cursor = wxCursor( wxCURSOR_IBEAM ); |
13111b2a | 518 | |
9d522606 | 519 | wxTextAttr attrDef(GetForegroundColour(), GetBackgroundColour(), GetFont()); |
17665a2b VZ |
520 | SetDefaultStyle( attrDef ); |
521 | ||
2830bf19 RR |
522 | return TRUE; |
523 | } | |
484e45bf | 524 | |
9d522606 | 525 | |
2830bf19 RR |
526 | void wxTextCtrl::CalculateScrollbar() |
527 | { | |
fab591c5 | 528 | #ifndef __WXGTK20__ |
2830bf19 | 529 | if ((m_windowStyle & wxTE_MULTILINE) == 0) return; |
f96aa4d9 | 530 | |
2830bf19 | 531 | GtkAdjustment *adj = GTK_TEXT(m_text)->vadj; |
805dd538 | 532 | |
2830bf19 RR |
533 | if (adj->upper - adj->page_size < 0.8) |
534 | { | |
535 | if (m_vScrollbarVisible) | |
536 | { | |
034be888 | 537 | gtk_widget_hide( m_vScrollbar ); |
034be888 | 538 | m_vScrollbarVisible = FALSE; |
2830bf19 RR |
539 | } |
540 | } | |
541 | else | |
542 | { | |
543 | if (!m_vScrollbarVisible) | |
544 | { | |
034be888 | 545 | gtk_widget_show( m_vScrollbar ); |
034be888 | 546 | m_vScrollbarVisible = TRUE; |
2830bf19 RR |
547 | } |
548 | } | |
fab591c5 | 549 | #endif |
6de97a3b | 550 | } |
c801d85f | 551 | |
03f38c58 | 552 | wxString wxTextCtrl::GetValue() const |
c801d85f | 553 | { |
223d09f6 | 554 | wxCHECK_MSG( m_text != NULL, wxT(""), wxT("invalid text ctrl") ); |
8bbe427f | 555 | |
2830bf19 RR |
556 | wxString tmp; |
557 | if (m_windowStyle & wxTE_MULTILINE) | |
558 | { | |
fab591c5 | 559 | #ifdef __WXGTK20__ |
fab591c5 | 560 | GtkTextIter start; |
41b81aed | 561 | gtk_text_buffer_get_start_iter( m_buffer, &start ); |
fab591c5 | 562 | GtkTextIter end; |
41b81aed RR |
563 | gtk_text_buffer_get_end_iter( m_buffer, &end ); |
564 | gchar *text = gtk_text_buffer_get_text( m_buffer, &start, &end, TRUE ); | |
5b87f8bf | 565 | |
fab591c5 RR |
566 | #if wxUSE_UNICODE |
567 | wxWCharBuffer buffer( wxConvUTF8.cMB2WX( text ) ); | |
568 | #else | |
569 | wxCharBuffer buffer( wxConvLocal.cWC2WX( wxConvUTF8.cMB2WC( text ) ) ); | |
570 | #endif | |
39ccbf9a VZ |
571 | if ( buffer ) |
572 | tmp = buffer; | |
a8bf1826 | 573 | |
fab591c5 RR |
574 | g_free( text ); |
575 | #else | |
2830bf19 RR |
576 | gint len = gtk_text_get_length( GTK_TEXT(m_text) ); |
577 | char *text = gtk_editable_get_chars( GTK_EDITABLE(m_text), 0, len ); | |
fab591c5 | 578 | tmp = text; |
2830bf19 | 579 | g_free( text ); |
fab591c5 | 580 | #endif |
2830bf19 RR |
581 | } |
582 | else | |
583 | { | |
fab591c5 | 584 | tmp = wxGTK_CONV_BACK( gtk_entry_get_text( GTK_ENTRY(m_text) ) ); |
2830bf19 | 585 | } |
a8bf1826 | 586 | |
2830bf19 | 587 | return tmp; |
6de97a3b | 588 | } |
c801d85f KB |
589 | |
590 | void wxTextCtrl::SetValue( const wxString &value ) | |
591 | { | |
223d09f6 | 592 | wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") ); |
8bbe427f | 593 | |
2830bf19 RR |
594 | if (m_windowStyle & wxTE_MULTILINE) |
595 | { | |
fab591c5 RR |
596 | #ifdef __WXGTK20__ |
597 | ||
598 | #if wxUSE_UNICODE | |
599 | wxCharBuffer buffer( wxConvUTF8.cWX2MB( value) ); | |
600 | #else | |
601 | wxCharBuffer buffer( wxConvUTF8.cWC2MB( wxConvLocal.cWX2WC( value ) ) ); | |
a8bf1826 | 602 | #endif |
b6ae8db8 | 603 | if (gtk_text_buffer_get_char_count(m_buffer) != 0) |
ad68ed32 RR |
604 | IgnoreNextTextUpdate(); |
605 | ||
41b81aed | 606 | gtk_text_buffer_set_text( m_buffer, buffer, strlen(buffer) ); |
a8bf1826 | 607 | |
fab591c5 | 608 | #else |
2830bf19 RR |
609 | gint len = gtk_text_get_length( GTK_TEXT(m_text) ); |
610 | gtk_editable_delete_text( GTK_EDITABLE(m_text), 0, len ); | |
611 | len = 0; | |
01041145 | 612 | gtk_editable_insert_text( GTK_EDITABLE(m_text), value.mbc_str(), value.Length(), &len ); |
05939a81 | 613 | #endif |
2830bf19 RR |
614 | } |
615 | else | |
616 | { | |
fab591c5 | 617 | gtk_entry_set_text( GTK_ENTRY(m_text), wxGTK_CONV( value ) ); |
2830bf19 | 618 | } |
f6bcfd97 BP |
619 | |
620 | // GRG, Jun/2000: Changed this after a lot of discussion in | |
77ffb593 | 621 | // the lists. wxWidgets 2.2 will have a set of flags to |
f6bcfd97 BP |
622 | // customize this behaviour. |
623 | SetInsertionPoint(0); | |
a8bf1826 | 624 | |
f6bcfd97 | 625 | m_modified = FALSE; |
6de97a3b | 626 | } |
c801d85f KB |
627 | |
628 | void wxTextCtrl::WriteText( const wxString &text ) | |
629 | { | |
223d09f6 | 630 | wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") ); |
8bbe427f | 631 | |
17665a2b VZ |
632 | if ( text.empty() ) |
633 | return; | |
484e45bf | 634 | |
c04ec496 VZ |
635 | // gtk_text_changed_callback() will set m_modified to true but m_modified |
636 | // shouldn't be changed by the program writing to the text control itself, | |
637 | // so save the old value and restore when we're done | |
638 | bool oldModified = m_modified; | |
639 | ||
17665a2b | 640 | if ( m_windowStyle & wxTE_MULTILINE ) |
2830bf19 | 641 | { |
fab591c5 RR |
642 | #ifdef __WXGTK20__ |
643 | ||
644 | #if wxUSE_UNICODE | |
645 | wxCharBuffer buffer( wxConvUTF8.cWX2MB( text ) ); | |
646 | #else | |
647 | wxCharBuffer buffer( wxConvUTF8.cWC2MB( wxConvLocal.cWX2WC( text ) ) ); | |
a8bf1826 | 648 | #endif |
8e033d81 VZ |
649 | if ( !buffer ) |
650 | { | |
651 | // what else can we do? at least don't crash... | |
652 | return; | |
653 | } | |
654 | ||
e136b747 | 655 | // TODO: Call whatever is needed to delete the selection. |
41b81aed | 656 | wxGtkTextInsert( m_text, m_buffer, m_defaultStyle, buffer ); |
a8bf1826 | 657 | |
71aba833 VZ |
658 | GtkAdjustment *adj = gtk_scrolled_window_get_vadjustment( GTK_SCROLLED_WINDOW(m_widget) ); |
659 | // Scroll to cursor, but only if scrollbar thumb is at the very bottom | |
660 | if ( adj->value == adj->upper - adj->page_size ) | |
661 | { | |
662 | gtk_text_view_scroll_to_mark( GTK_TEXT_VIEW(m_text), | |
41b81aed | 663 | gtk_text_buffer_get_insert( m_buffer ), 0.0, FALSE, 0.0, 1.0 ); |
71aba833 | 664 | } |
a8bf1826 | 665 | #else // GTK 1.x |
ba3f6b44 | 666 | // After cursor movements, gtk_text_get_point() is wrong by one. |
9e691f46 | 667 | gtk_text_set_point( GTK_TEXT(m_text), GET_EDITABLE_POS(m_text) ); |
eda40bfc | 668 | |
41b2e0e6 VZ |
669 | // always use m_defaultStyle, even if it is empty as otherwise |
670 | // resetting the style and appending some more text wouldn't work: if | |
671 | // we don't specify the style explicitly, the old style would be used | |
2b5f62a0 | 672 | gtk_editable_delete_selection( GTK_EDITABLE(m_text) ); |
fab591c5 | 673 | wxGtkTextInsert(m_text, m_defaultStyle, text.c_str(), text.Len()); |
eda40bfc | 674 | |
07e9d4f0 VZ |
675 | // we called wxGtkTextInsert with correct font, no need to do anything |
676 | // in UpdateFontIfNeeded() any longer | |
677 | if ( !text.empty() ) | |
678 | { | |
c04ec496 | 679 | SetUpdateFont(FALSE); |
07e9d4f0 VZ |
680 | } |
681 | ||
ba3f6b44 | 682 | // Bring editable's cursor back uptodate. |
9e691f46 | 683 | SET_EDITABLE_POS(m_text, gtk_text_get_point( GTK_TEXT(m_text) )); |
a8bf1826 | 684 | #endif // GTK 1.x/2.0 |
2830bf19 | 685 | } |
17665a2b | 686 | else // single line |
2830bf19 | 687 | { |
2b5f62a0 VZ |
688 | // First remove the selection if there is one |
689 | gtk_editable_delete_selection( GTK_EDITABLE(m_text) ); | |
690 | ||
ba3f6b44 | 691 | // This moves the cursor pos to behind the inserted text. |
9e691f46 | 692 | gint len = GET_EDITABLE_POS(m_text); |
a8bf1826 | 693 | |
fab591c5 RR |
694 | #ifdef __WXGTK20__ |
695 | ||
696 | #if wxUSE_UNICODE | |
697 | wxCharBuffer buffer( wxConvUTF8.cWX2MB( text ) ); | |
698 | #else | |
699 | wxCharBuffer buffer( wxConvUTF8.cWC2MB( wxConvLocal.cWX2WC( text ) ) ); | |
a8bf1826 | 700 | #endif |
fab591c5 | 701 | gtk_editable_insert_text( GTK_EDITABLE(m_text), buffer, strlen(buffer), &len ); |
a8bf1826 | 702 | |
fab591c5 RR |
703 | #else |
704 | gtk_editable_insert_text( GTK_EDITABLE(m_text), text.c_str(), text.Len(), &len ); | |
705 | #endif | |
3358d36e | 706 | |
ba3f6b44 | 707 | // Bring entry's cursor uptodate. |
9e691f46 | 708 | gtk_entry_set_position( GTK_ENTRY(m_text), len ); |
2830bf19 | 709 | } |
eda40bfc | 710 | |
c04ec496 | 711 | m_modified = oldModified; |
6de97a3b | 712 | } |
c801d85f | 713 | |
a6e21573 HH |
714 | void wxTextCtrl::AppendText( const wxString &text ) |
715 | { | |
ba3f6b44 RR |
716 | SetInsertionPointEnd(); |
717 | WriteText( text ); | |
718 | } | |
2df7be7f | 719 | |
ba3f6b44 RR |
720 | wxString wxTextCtrl::GetLineText( long lineNo ) const |
721 | { | |
a6e21573 HH |
722 | if (m_windowStyle & wxTE_MULTILINE) |
723 | { | |
fab591c5 | 724 | #ifndef __WXGTK20__ |
ba3f6b44 RR |
725 | gint len = gtk_text_get_length( GTK_TEXT(m_text) ); |
726 | char *text = gtk_editable_get_chars( GTK_EDITABLE(m_text), 0, len ); | |
bb69661b | 727 | |
ba3f6b44 RR |
728 | if (text) |
729 | { | |
730 | wxString buf(wxT("")); | |
731 | long i; | |
732 | int currentLine = 0; | |
733 | for (i = 0; currentLine != lineNo && text[i]; i++ ) | |
734 | if (text[i] == '\n') | |
735 | currentLine++; | |
736 | // Now get the text | |
737 | int j; | |
738 | for (j = 0; text[i] && text[i] != '\n'; i++, j++ ) | |
739 | buf += text[i]; | |
17665a2b | 740 | |
ba3f6b44 RR |
741 | g_free( text ); |
742 | return buf; | |
bb69661b | 743 | } |
ba3f6b44 | 744 | else |
bb69661b | 745 | { |
ba3f6b44 | 746 | return wxEmptyString; |
bb69661b | 747 | } |
905f2110 | 748 | #else |
905f2110 | 749 | GtkTextIter line; |
41b81aed | 750 | gtk_text_buffer_get_iter_at_line(m_buffer,&line,lineNo); |
905f2110 | 751 | GtkTextIter end; |
41b81aed RR |
752 | gtk_text_buffer_get_end_iter(m_buffer,&end ); |
753 | gchar *text = gtk_text_buffer_get_text(m_buffer,&line,&end,TRUE); | |
58192970 | 754 | wxString result(wxGTK_CONV_BACK(text)); |
905f2110 JS |
755 | g_free(text); |
756 | return result.BeforeFirst(wxT('\n')); | |
757 | #endif | |
a6e21573 | 758 | } |
ba3f6b44 | 759 | else |
a81258be | 760 | { |
ba3f6b44 RR |
761 | if (lineNo == 0) return GetValue(); |
762 | return wxEmptyString; | |
a81258be | 763 | } |
6de97a3b | 764 | } |
c801d85f | 765 | |
a81258be RR |
766 | void wxTextCtrl::OnDropFiles( wxDropFilesEvent &WXUNUSED(event) ) |
767 | { | |
ac0d36b5 HH |
768 | /* If you implement this, don't forget to update the documentation! |
769 | * (file docs/latex/wx/text.tex) */ | |
223d09f6 | 770 | wxFAIL_MSG( wxT("wxTextCtrl::OnDropFiles not implemented") ); |
a81258be | 771 | } |
112892b9 | 772 | |
0efe5ba7 | 773 | bool wxTextCtrl::PositionToXY(long pos, long *x, long *y ) const |
c801d85f | 774 | { |
96385642 | 775 | if ( m_windowStyle & wxTE_MULTILINE ) |
805dd538 | 776 | { |
96385642 VZ |
777 | wxString text = GetValue(); |
778 | ||
6085b116 | 779 | // cast to prevent warning. But pos really should've been unsigned. |
2829d9e3 | 780 | if( (unsigned long)pos > text.Len() ) |
96385642 VZ |
781 | return FALSE; |
782 | ||
ac0d36b5 HH |
783 | *x=0; // First Col |
784 | *y=0; // First Line | |
2829d9e3 | 785 | |
05939a81 OK |
786 | const wxChar* stop = text.c_str() + pos; |
787 | for ( const wxChar *p = text.c_str(); p < stop; p++ ) | |
96385642 | 788 | { |
223d09f6 | 789 | if (*p == wxT('\n')) |
96385642 VZ |
790 | { |
791 | (*y)++; | |
ac0d36b5 | 792 | *x=0; |
96385642 VZ |
793 | } |
794 | else | |
795 | (*x)++; | |
796 | } | |
805dd538 | 797 | } |
96385642 VZ |
798 | else // single line control |
799 | { | |
2829d9e3 | 800 | if ( pos <= GTK_ENTRY(m_text)->text_length ) |
96385642 | 801 | { |
ac0d36b5 | 802 | *y = 0; |
96385642 VZ |
803 | *x = pos; |
804 | } | |
805 | else | |
806 | { | |
807 | // index out of bounds | |
808 | return FALSE; | |
809 | } | |
8bbe427f | 810 | } |
96385642 VZ |
811 | |
812 | return TRUE; | |
6de97a3b | 813 | } |
c801d85f | 814 | |
e3ca08dd | 815 | long wxTextCtrl::XYToPosition(long x, long y ) const |
c801d85f | 816 | { |
2830bf19 | 817 | if (!(m_windowStyle & wxTE_MULTILINE)) return 0; |
805dd538 | 818 | |
2830bf19 | 819 | long pos=0; |
ac0d36b5 | 820 | for( int i=0; i<y; i++ ) pos += GetLineLength(i) + 1; // one for '\n' |
8bbe427f | 821 | |
3358d36e | 822 | pos += x; |
2830bf19 | 823 | return pos; |
6de97a3b | 824 | } |
c801d85f | 825 | |
a81258be | 826 | int wxTextCtrl::GetLineLength(long lineNo) const |
c801d85f | 827 | { |
a81258be RR |
828 | wxString str = GetLineText (lineNo); |
829 | return (int) str.Length(); | |
6de97a3b | 830 | } |
c801d85f | 831 | |
a81258be | 832 | int wxTextCtrl::GetNumberOfLines() const |
c801d85f | 833 | { |
2830bf19 | 834 | if (m_windowStyle & wxTE_MULTILINE) |
a81258be | 835 | { |
fab591c5 | 836 | #ifdef __WXGTK20__ |
41b81aed | 837 | return gtk_text_buffer_get_line_count( m_buffer ); |
fab591c5 | 838 | #else |
2830bf19 RR |
839 | gint len = gtk_text_get_length( GTK_TEXT(m_text) ); |
840 | char *text = gtk_editable_get_chars( GTK_EDITABLE(m_text), 0, len ); | |
841 | ||
842 | if (text) | |
843 | { | |
844 | int currentLine = 0; | |
845 | for (int i = 0; i < len; i++ ) | |
96385642 | 846 | { |
2830bf19 | 847 | if (text[i] == '\n') |
96385642 VZ |
848 | currentLine++; |
849 | } | |
2830bf19 | 850 | g_free( text ); |
2829d9e3 VZ |
851 | |
852 | // currentLine is 0 based, add 1 to get number of lines | |
853 | return currentLine + 1; | |
2830bf19 RR |
854 | } |
855 | else | |
96385642 | 856 | { |
2830bf19 | 857 | return 0; |
96385642 | 858 | } |
fab591c5 | 859 | #endif |
a81258be RR |
860 | } |
861 | else | |
2830bf19 | 862 | { |
96385642 | 863 | return 1; |
2830bf19 | 864 | } |
6de97a3b | 865 | } |
c801d85f | 866 | |
debe6624 | 867 | void wxTextCtrl::SetInsertionPoint( long pos ) |
c801d85f | 868 | { |
223d09f6 | 869 | wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") ); |
3358d36e | 870 | |
74c5a810 | 871 | if ( IsMultiLine() ) |
291a8f20 | 872 | { |
fab591c5 | 873 | #ifdef __WXGTK20__ |
fab591c5 | 874 | GtkTextIter iter; |
41b81aed RR |
875 | gtk_text_buffer_get_iter_at_offset( m_buffer, &iter, pos ); |
876 | gtk_text_buffer_place_cursor( m_buffer, &iter ); | |
74c5a810 VZ |
877 | gtk_text_view_scroll_mark_onscreen |
878 | ( | |
879 | GTK_TEXT_VIEW(m_text), | |
41b81aed | 880 | gtk_text_buffer_get_insert( m_buffer ) |
74c5a810 VZ |
881 | ); |
882 | #else // GTK+ 1.x | |
291a8f20 RR |
883 | gtk_signal_disconnect_by_func( GTK_OBJECT(m_text), |
884 | GTK_SIGNAL_FUNC(gtk_text_changed_callback), (gpointer)this); | |
3358d36e | 885 | |
291a8f20 | 886 | /* we fake a set_point by inserting and deleting. as the user |
fab591c5 | 887 | isn't supposed to get to know about this non-sense, we |
3358d36e VZ |
888 | disconnect so that no events are sent to the user program. */ |
889 | ||
291a8f20 RR |
890 | gint tmp = (gint)pos; |
891 | gtk_editable_insert_text( GTK_EDITABLE(m_text), " ", 1, &tmp ); | |
3358d36e VZ |
892 | gtk_editable_delete_text( GTK_EDITABLE(m_text), tmp-1, tmp ); |
893 | ||
291a8f20 RR |
894 | gtk_signal_connect( GTK_OBJECT(m_text), "changed", |
895 | GTK_SIGNAL_FUNC(gtk_text_changed_callback), (gpointer)this); | |
3358d36e | 896 | |
fab591c5 | 897 | // bring editable's cursor uptodate. Bug in GTK. |
9e691f46 | 898 | SET_EDITABLE_POS(m_text, gtk_text_get_point( GTK_TEXT(m_text) )); |
74c5a810 | 899 | #endif // GTK+ 2/1 |
ac0d36b5 | 900 | } |
2830bf19 | 901 | else |
291a8f20 | 902 | { |
d59051dd | 903 | gtk_entry_set_position( GTK_ENTRY(m_text), (int)pos ); |
3358d36e | 904 | |
fab591c5 | 905 | // Bring editable's cursor uptodate. Bug in GTK. |
9e691f46 | 906 | SET_EDITABLE_POS(m_text, (guint32)pos); |
291a8f20 | 907 | } |
6de97a3b | 908 | } |
c801d85f | 909 | |
03f38c58 | 910 | void wxTextCtrl::SetInsertionPointEnd() |
c801d85f | 911 | { |
223d09f6 | 912 | wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") ); |
8bbe427f | 913 | |
d59051dd | 914 | if (m_windowStyle & wxTE_MULTILINE) |
fab591c5 RR |
915 | { |
916 | #ifdef __WXGTK20__ | |
fab591c5 | 917 | GtkTextIter end; |
41b81aed RR |
918 | gtk_text_buffer_get_end_iter( m_buffer, &end ); |
919 | gtk_text_buffer_place_cursor( m_buffer, &end ); | |
fab591c5 | 920 | #else |
d59051dd | 921 | SetInsertionPoint(gtk_text_get_length(GTK_TEXT(m_text))); |
fab591c5 RR |
922 | #endif |
923 | } | |
d59051dd | 924 | else |
fab591c5 | 925 | { |
d59051dd | 926 | gtk_entry_set_position( GTK_ENTRY(m_text), -1 ); |
fab591c5 | 927 | } |
6de97a3b | 928 | } |
c801d85f | 929 | |
debe6624 | 930 | void wxTextCtrl::SetEditable( bool editable ) |
c801d85f | 931 | { |
223d09f6 | 932 | wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") ); |
8bbe427f | 933 | |
2830bf19 | 934 | if (m_windowStyle & wxTE_MULTILINE) |
fab591c5 RR |
935 | { |
936 | #ifdef __WXGTK20__ | |
937 | gtk_text_view_set_editable( GTK_TEXT_VIEW(m_text), editable ); | |
938 | #else | |
2830bf19 | 939 | gtk_text_set_editable( GTK_TEXT(m_text), editable ); |
fab591c5 RR |
940 | #endif |
941 | } | |
2830bf19 | 942 | else |
fab591c5 | 943 | { |
2830bf19 | 944 | gtk_entry_set_editable( GTK_ENTRY(m_text), editable ); |
fab591c5 | 945 | } |
6de97a3b | 946 | } |
c801d85f | 947 | |
68df5777 RR |
948 | bool wxTextCtrl::Enable( bool enable ) |
949 | { | |
950 | if (!wxWindowBase::Enable(enable)) | |
951 | { | |
952 | // nothing to do | |
953 | return FALSE; | |
954 | } | |
f6bcfd97 | 955 | |
68df5777 RR |
956 | if (m_windowStyle & wxTE_MULTILINE) |
957 | { | |
fab591c5 RR |
958 | #ifdef __WXGTK20__ |
959 | SetEditable( enable ); | |
960 | #else | |
68df5777 | 961 | gtk_text_set_editable( GTK_TEXT(m_text), enable ); |
5abf8c9d | 962 | OnParentEnable(enable); |
fab591c5 | 963 | #endif |
68df5777 RR |
964 | } |
965 | else | |
966 | { | |
967 | gtk_widget_set_sensitive( m_text, enable ); | |
968 | } | |
969 | ||
970 | return TRUE; | |
971 | } | |
972 | ||
fdca68a6 JS |
973 | // wxGTK-specific: called recursively by Enable, |
974 | // to give widgets an oppprtunity to correct their colours after they | |
975 | // have been changed by Enable | |
976 | void wxTextCtrl::OnParentEnable( bool enable ) | |
977 | { | |
978 | // If we have a custom background colour, we use this colour in both | |
979 | // disabled and enabled mode, or we end up with a different colour under the | |
980 | // text. | |
981 | wxColour oldColour = GetBackgroundColour(); | |
982 | if (oldColour.Ok()) | |
983 | { | |
984 | // Need to set twice or it'll optimize the useful stuff out | |
985 | if (oldColour == * wxWHITE) | |
986 | SetBackgroundColour(*wxBLACK); | |
987 | else | |
988 | SetBackgroundColour(*wxWHITE); | |
989 | SetBackgroundColour(oldColour); | |
990 | } | |
991 | } | |
992 | ||
3a9fa0d6 VZ |
993 | void wxTextCtrl::MarkDirty() |
994 | { | |
995 | m_modified = TRUE; | |
996 | } | |
997 | ||
0efe5ba7 VZ |
998 | void wxTextCtrl::DiscardEdits() |
999 | { | |
1000 | m_modified = FALSE; | |
1001 | } | |
1002 | ||
ce2f50e3 VZ |
1003 | // ---------------------------------------------------------------------------- |
1004 | // max text length support | |
1005 | // ---------------------------------------------------------------------------- | |
1006 | ||
1007 | void wxTextCtrl::IgnoreNextTextUpdate() | |
1008 | { | |
1009 | m_ignoreNextUpdate = TRUE; | |
1010 | } | |
1011 | ||
1012 | bool wxTextCtrl::IgnoreTextUpdate() | |
1013 | { | |
1014 | if ( m_ignoreNextUpdate ) | |
1015 | { | |
1016 | m_ignoreNextUpdate = FALSE; | |
1017 | ||
1018 | return TRUE; | |
1019 | } | |
1020 | ||
1021 | return FALSE; | |
1022 | } | |
1023 | ||
d7eee191 VZ |
1024 | void wxTextCtrl::SetMaxLength(unsigned long len) |
1025 | { | |
1026 | if ( !HasFlag(wxTE_MULTILINE) ) | |
1027 | { | |
1028 | gtk_entry_set_max_length(GTK_ENTRY(m_text), len); | |
ce2f50e3 VZ |
1029 | |
1030 | // there is a bug in GTK+ 1.2.x: "changed" signal is emitted even if | |
1031 | // we had tried to enter more text than allowed by max text length and | |
1032 | // the text wasn't really changed | |
1033 | // | |
1034 | // to detect this and generate TEXT_MAXLEN event instead of | |
1035 | // TEXT_CHANGED one in this case we also catch "insert_text" signal | |
1036 | // | |
1037 | // when max len is set to 0 we disconnect our handler as it means that | |
1038 | // we shouldn't check anything any more | |
1039 | if ( len ) | |
1040 | { | |
1041 | gtk_signal_connect( GTK_OBJECT(m_text), | |
1042 | "insert_text", | |
1043 | GTK_SIGNAL_FUNC(gtk_insert_text_callback), | |
1044 | (gpointer)this); | |
1045 | } | |
1046 | else // no checking | |
1047 | { | |
1048 | gtk_signal_disconnect_by_func | |
1049 | ( | |
1050 | GTK_OBJECT(m_text), | |
1051 | GTK_SIGNAL_FUNC(gtk_insert_text_callback), | |
1052 | (gpointer)this | |
1053 | ); | |
1054 | } | |
d7eee191 VZ |
1055 | } |
1056 | } | |
1057 | ||
debe6624 | 1058 | void wxTextCtrl::SetSelection( long from, long to ) |
c801d85f | 1059 | { |
223d09f6 | 1060 | wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") ); |
8bbe427f | 1061 | |
2b5f62a0 VZ |
1062 | if (from == -1 && to == -1) |
1063 | { | |
1064 | from = 0; | |
1065 | to = GetValue().Length(); | |
1066 | } | |
1067 | ||
fab591c5 | 1068 | #ifndef __WXGTK20__ |
a1f79c1e VZ |
1069 | if ( (m_windowStyle & wxTE_MULTILINE) && |
1070 | !GTK_TEXT(m_text)->line_start_cache ) | |
1071 | { | |
1072 | // tell the programmer that it didn't work | |
1073 | wxLogDebug(_T("Can't call SetSelection() before realizing the control")); | |
1074 | return; | |
1075 | } | |
fab591c5 | 1076 | #endif |
a1f79c1e | 1077 | |
fab591c5 RR |
1078 | if (m_windowStyle & wxTE_MULTILINE) |
1079 | { | |
1080 | #ifdef __WXGTK20__ | |
739e366a | 1081 | GtkTextIter fromi, toi; |
41b81aed RR |
1082 | gtk_text_buffer_get_iter_at_offset( m_buffer, &fromi, from ); |
1083 | gtk_text_buffer_get_iter_at_offset( m_buffer, &toi, to ); | |
739e366a | 1084 | |
41b81aed RR |
1085 | gtk_text_buffer_place_cursor( m_buffer, &toi ); |
1086 | gtk_text_buffer_move_mark_by_name( m_buffer, "selection_bound", &fromi ); | |
fab591c5 RR |
1087 | #else |
1088 | gtk_editable_select_region( GTK_EDITABLE(m_text), (gint)from, (gint)to ); | |
1089 | #endif | |
1090 | } | |
1091 | else | |
1092 | { | |
1093 | gtk_editable_select_region( GTK_EDITABLE(m_text), (gint)from, (gint)to ); | |
1094 | } | |
6de97a3b | 1095 | } |
c801d85f | 1096 | |
afbe906a | 1097 | void wxTextCtrl::ShowPosition( long pos ) |
c801d85f | 1098 | { |
afbe906a RR |
1099 | if (m_windowStyle & wxTE_MULTILINE) |
1100 | { | |
71aba833 | 1101 | #ifdef __WXGTK20__ |
71aba833 | 1102 | GtkTextIter iter; |
41b81aed | 1103 | gtk_text_buffer_get_start_iter( m_buffer, &iter ); |
71aba833 | 1104 | gtk_text_iter_set_offset( &iter, pos ); |
41b81aed | 1105 | GtkTextMark *mark = gtk_text_buffer_create_mark( m_buffer, NULL, &iter, TRUE ); |
71aba833 VZ |
1106 | gtk_text_view_scroll_to_mark( GTK_TEXT_VIEW(m_text), mark, 0.0, FALSE, 0.0, 0.0 ); |
1107 | #else // GTK 1.x | |
afbe906a RR |
1108 | GtkAdjustment *vp = GTK_TEXT(m_text)->vadj; |
1109 | float totalLines = (float) GetNumberOfLines(); | |
1110 | long posX; | |
1111 | long posY; | |
1112 | PositionToXY(pos, &posX, &posY); | |
1113 | float posLine = (float) posY; | |
1114 | float p = (posLine/totalLines)*(vp->upper - vp->lower) + vp->lower; | |
1115 | gtk_adjustment_set_value(GTK_TEXT(m_text)->vadj, p); | |
71aba833 | 1116 | #endif // GTK 1.x/2.x |
afbe906a | 1117 | } |
6de97a3b | 1118 | } |
c801d85f | 1119 | |
692c9b86 VZ |
1120 | #ifdef __WXGTK20__ |
1121 | ||
1122 | wxTextCtrlHitTestResult | |
1123 | wxTextCtrl::HitTest(const wxPoint& pt, long *pos) const | |
1124 | { | |
1125 | if ( !IsMultiLine() ) | |
1126 | { | |
1127 | // not supported | |
1128 | return wxTE_HT_UNKNOWN; | |
1129 | } | |
1130 | ||
1131 | int x, y; | |
1132 | gtk_text_view_window_to_buffer_coords | |
1133 | ( | |
1134 | GTK_TEXT_VIEW(m_text), | |
1135 | GTK_TEXT_WINDOW_TEXT, | |
1136 | pt.x, pt.y, | |
1137 | &x, &y | |
1138 | ); | |
1139 | ||
1140 | GtkTextIter iter; | |
1141 | gtk_text_view_get_iter_at_location(GTK_TEXT_VIEW(m_text), &iter, x, y); | |
1142 | if ( pos ) | |
1143 | *pos = gtk_text_iter_get_offset(&iter); | |
1144 | ||
1145 | return wxTE_HT_ON_TEXT; | |
1146 | } | |
1147 | ||
1148 | #endif // __WXGTK20__ | |
1149 | ||
03f38c58 | 1150 | long wxTextCtrl::GetInsertionPoint() const |
c801d85f | 1151 | { |
223d09f6 | 1152 | wxCHECK_MSG( m_text != NULL, 0, wxT("invalid text ctrl") ); |
8bbe427f | 1153 | |
fab591c5 RR |
1154 | #ifdef __WXGTK20__ |
1155 | if (m_windowStyle & wxTE_MULTILINE) | |
1156 | { | |
fab591c5 RR |
1157 | // There is no direct accessor for the cursor, but |
1158 | // internally, the cursor is the "mark" called | |
1159 | // "insert" in the text view's btree structure. | |
a8bf1826 | 1160 | |
41b81aed | 1161 | GtkTextMark *mark = gtk_text_buffer_get_insert( m_buffer ); |
fab591c5 | 1162 | GtkTextIter cursor; |
41b81aed | 1163 | gtk_text_buffer_get_iter_at_mark( m_buffer, &cursor, mark ); |
a8bf1826 | 1164 | |
fab591c5 RR |
1165 | return gtk_text_iter_get_offset( &cursor ); |
1166 | } | |
1167 | else | |
1168 | #endif | |
1169 | { | |
9e691f46 | 1170 | return (long) GET_EDITABLE_POS(m_text); |
fab591c5 | 1171 | } |
6de97a3b | 1172 | } |
c801d85f | 1173 | |
03f38c58 | 1174 | long wxTextCtrl::GetLastPosition() const |
c801d85f | 1175 | { |
223d09f6 | 1176 | wxCHECK_MSG( m_text != NULL, 0, wxT("invalid text ctrl") ); |
8bbe427f | 1177 | |
2830bf19 | 1178 | int pos = 0; |
a8bf1826 | 1179 | |
2830bf19 | 1180 | if (m_windowStyle & wxTE_MULTILINE) |
fab591c5 RR |
1181 | { |
1182 | #ifdef __WXGTK20__ | |
fab591c5 | 1183 | GtkTextIter end; |
41b81aed | 1184 | gtk_text_buffer_get_end_iter( m_buffer, &end ); |
a8bf1826 | 1185 | |
fab591c5 RR |
1186 | pos = gtk_text_iter_get_offset( &end ); |
1187 | #else | |
2830bf19 | 1188 | pos = gtk_text_get_length( GTK_TEXT(m_text) ); |
fab591c5 RR |
1189 | #endif |
1190 | } | |
2830bf19 | 1191 | else |
fab591c5 | 1192 | { |
2830bf19 | 1193 | pos = GTK_ENTRY(m_text)->text_length; |
fab591c5 | 1194 | } |
805dd538 | 1195 | |
ac0d36b5 | 1196 | return (long)pos; |
6de97a3b | 1197 | } |
c801d85f | 1198 | |
debe6624 | 1199 | void wxTextCtrl::Remove( long from, long to ) |
c801d85f | 1200 | { |
223d09f6 | 1201 | wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") ); |
8bbe427f | 1202 | |
581ee8a9 | 1203 | #ifdef __WXGTK20__ |
fdd55287 | 1204 | if (m_windowStyle & wxTE_MULTILINE) |
581ee8a9 | 1205 | { |
581ee8a9 | 1206 | GtkTextIter fromi, toi; |
41b81aed RR |
1207 | gtk_text_buffer_get_iter_at_offset( m_buffer, &fromi, from ); |
1208 | gtk_text_buffer_get_iter_at_offset( m_buffer, &toi, to ); | |
581ee8a9 | 1209 | |
41b81aed | 1210 | gtk_text_buffer_delete( m_buffer, &fromi, &toi ); |
581ee8a9 VZ |
1211 | } |
1212 | else // single line | |
fab591c5 | 1213 | #endif |
581ee8a9 | 1214 | gtk_editable_delete_text( GTK_EDITABLE(m_text), (gint)from, (gint)to ); |
6de97a3b | 1215 | } |
c801d85f | 1216 | |
debe6624 | 1217 | void wxTextCtrl::Replace( long from, long to, const wxString &value ) |
c801d85f | 1218 | { |
223d09f6 | 1219 | wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") ); |
8bbe427f | 1220 | |
581ee8a9 | 1221 | Remove( from, to ); |
bb69661b | 1222 | |
2df7be7f RR |
1223 | if (!value.IsEmpty()) |
1224 | { | |
581ee8a9 VZ |
1225 | #ifdef __WXGTK20__ |
1226 | SetInsertionPoint( from ); | |
1227 | WriteText( value ); | |
1228 | #else // GTK 1.x | |
2df7be7f | 1229 | gint pos = (gint)from; |
05939a81 | 1230 | #if wxUSE_UNICODE |
2df7be7f RR |
1231 | wxWX2MBbuf buf = value.mbc_str(); |
1232 | gtk_editable_insert_text( GTK_EDITABLE(m_text), buf, strlen(buf), &pos ); | |
05939a81 | 1233 | #else |
2df7be7f | 1234 | gtk_editable_insert_text( GTK_EDITABLE(m_text), value, value.Length(), &pos ); |
581ee8a9 VZ |
1235 | #endif // wxUSE_UNICODE |
1236 | #endif // GTK 1.x/2.x | |
2df7be7f | 1237 | } |
6de97a3b | 1238 | } |
c801d85f | 1239 | |
03f38c58 | 1240 | void wxTextCtrl::Cut() |
c801d85f | 1241 | { |
223d09f6 | 1242 | wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") ); |
8bbe427f | 1243 | |
bbde2e29 VS |
1244 | #ifdef __WXGTK20__ |
1245 | if (m_windowStyle & wxTE_MULTILINE) | |
1246 | g_signal_emit_by_name(m_text, "cut-clipboard"); | |
1247 | else | |
fab591c5 | 1248 | #endif |
bbde2e29 | 1249 | gtk_editable_cut_clipboard(GTK_EDITABLE(m_text) DUMMY_CLIPBOARD_ARG); |
6de97a3b | 1250 | } |
c801d85f | 1251 | |
03f38c58 | 1252 | void wxTextCtrl::Copy() |
c801d85f | 1253 | { |
223d09f6 | 1254 | wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") ); |
8bbe427f | 1255 | |
bbde2e29 VS |
1256 | #ifdef __WXGTK20__ |
1257 | if (m_windowStyle & wxTE_MULTILINE) | |
1258 | g_signal_emit_by_name(m_text, "copy-clipboard"); | |
1259 | else | |
fab591c5 | 1260 | #endif |
bbde2e29 | 1261 | gtk_editable_copy_clipboard(GTK_EDITABLE(m_text) DUMMY_CLIPBOARD_ARG); |
6de97a3b | 1262 | } |
c801d85f | 1263 | |
03f38c58 | 1264 | void wxTextCtrl::Paste() |
c801d85f | 1265 | { |
223d09f6 | 1266 | wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") ); |
8bbe427f | 1267 | |
bbde2e29 VS |
1268 | #ifdef __WXGTK20__ |
1269 | if (m_windowStyle & wxTE_MULTILINE) | |
1270 | g_signal_emit_by_name(m_text, "paste-clipboard"); | |
1271 | else | |
fab591c5 | 1272 | #endif |
bbde2e29 | 1273 | gtk_editable_paste_clipboard(GTK_EDITABLE(m_text) DUMMY_CLIPBOARD_ARG); |
6de97a3b | 1274 | } |
c801d85f | 1275 | |
ca8b28f2 JS |
1276 | // Undo/redo |
1277 | void wxTextCtrl::Undo() | |
1278 | { | |
1279 | // TODO | |
223d09f6 | 1280 | wxFAIL_MSG( wxT("wxTextCtrl::Undo not implemented") ); |
ca8b28f2 JS |
1281 | } |
1282 | ||
1283 | void wxTextCtrl::Redo() | |
1284 | { | |
1285 | // TODO | |
223d09f6 | 1286 | wxFAIL_MSG( wxT("wxTextCtrl::Redo not implemented") ); |
ca8b28f2 JS |
1287 | } |
1288 | ||
1289 | bool wxTextCtrl::CanUndo() const | |
1290 | { | |
1291 | // TODO | |
4855a477 | 1292 | //wxFAIL_MSG( wxT("wxTextCtrl::CanUndo not implemented") ); |
ca8b28f2 JS |
1293 | return FALSE; |
1294 | } | |
1295 | ||
1296 | bool wxTextCtrl::CanRedo() const | |
1297 | { | |
1298 | // TODO | |
4855a477 | 1299 | //wxFAIL_MSG( wxT("wxTextCtrl::CanRedo not implemented") ); |
ca8b28f2 JS |
1300 | return FALSE; |
1301 | } | |
1302 | ||
1303 | // If the return values from and to are the same, there is no | |
1304 | // selection. | |
2d4cc5b6 | 1305 | void wxTextCtrl::GetSelection(long* fromOut, long* toOut) const |
ca8b28f2 | 1306 | { |
223d09f6 | 1307 | wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") ); |
bb69661b | 1308 | |
5b87f8bf RD |
1309 | gint from = -1; |
1310 | gint to = -1; | |
1311 | bool haveSelection = FALSE; | |
1312 | ||
fb47b99f | 1313 | #ifdef __WXGTK20__ |
5b87f8bf RD |
1314 | if (m_windowStyle & wxTE_MULTILINE) |
1315 | { | |
5b87f8bf | 1316 | GtkTextIter ifrom, ito; |
41b81aed | 1317 | if ( gtk_text_buffer_get_selection_bounds(m_buffer, &ifrom, &ito) ) |
5b87f8bf RD |
1318 | { |
1319 | haveSelection = TRUE; | |
1320 | from = gtk_text_iter_get_offset(&ifrom); | |
1321 | to = gtk_text_iter_get_offset(&ito); | |
1322 | } | |
1323 | } | |
1324 | else // not multi-line | |
1325 | { | |
1326 | if ( gtk_editable_get_selection_bounds( GTK_EDITABLE(m_text), | |
1327 | &from, &to) ) | |
1328 | { | |
1329 | haveSelection = TRUE; | |
1330 | } | |
1331 | } | |
1332 | #else // not GTK2 | |
1333 | if ( (GTK_EDITABLE(m_text)->has_selection) ) | |
1334 | { | |
1335 | haveSelection = TRUE; | |
1336 | from = (long) GTK_EDITABLE(m_text)->selection_start_pos; | |
1337 | to = (long) GTK_EDITABLE(m_text)->selection_end_pos; | |
1338 | } | |
9e691f46 | 1339 | #endif |
2d4cc5b6 | 1340 | |
5b87f8bf RD |
1341 | if (! haveSelection ) |
1342 | from = to = GetInsertionPoint(); | |
1343 | ||
1344 | if ( from > to ) | |
1345 | { | |
1346 | // exchange them to be compatible with wxMSW | |
1347 | gint tmp = from; | |
1348 | from = to; | |
1349 | to = tmp; | |
1350 | } | |
bb69661b | 1351 | |
2d4cc5b6 VZ |
1352 | if ( fromOut ) |
1353 | *fromOut = from; | |
1354 | if ( toOut ) | |
1355 | *toOut = to; | |
ca8b28f2 JS |
1356 | } |
1357 | ||
5b87f8bf | 1358 | |
ca8b28f2 JS |
1359 | bool wxTextCtrl::IsEditable() const |
1360 | { | |
223d09f6 | 1361 | wxCHECK_MSG( m_text != NULL, FALSE, wxT("invalid text ctrl") ); |
05060eeb | 1362 | |
9e691f46 | 1363 | #ifdef __WXGTK20__ |
fdd55287 VZ |
1364 | if (m_windowStyle & wxTE_MULTILINE) |
1365 | { | |
1366 | return gtk_text_view_get_editable(GTK_TEXT_VIEW(m_text)); | |
1367 | } | |
1368 | else | |
1369 | { | |
1370 | return gtk_editable_get_editable(GTK_EDITABLE(m_text)); | |
1371 | } | |
9e691f46 | 1372 | #else |
05060eeb | 1373 | return GTK_EDITABLE(m_text)->editable; |
9e691f46 | 1374 | #endif |
ca8b28f2 JS |
1375 | } |
1376 | ||
0efe5ba7 VZ |
1377 | bool wxTextCtrl::IsModified() const |
1378 | { | |
1379 | return m_modified; | |
1380 | } | |
1381 | ||
03f38c58 | 1382 | void wxTextCtrl::Clear() |
c801d85f | 1383 | { |
223d09f6 | 1384 | SetValue( wxT("") ); |
6de97a3b | 1385 | } |
c801d85f | 1386 | |
903f689b | 1387 | void wxTextCtrl::OnChar( wxKeyEvent &key_event ) |
c801d85f | 1388 | { |
223d09f6 | 1389 | wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") ); |
805dd538 | 1390 | |
12a3f227 | 1391 | if ((key_event.GetKeyCode() == WXK_RETURN) && (m_windowStyle & wxPROCESS_ENTER)) |
2830bf19 RR |
1392 | { |
1393 | wxCommandEvent event(wxEVT_COMMAND_TEXT_ENTER, m_windowId); | |
1394 | event.SetEventObject(this); | |
f6bcfd97 | 1395 | event.SetString(GetValue()); |
2830bf19 RR |
1396 | if (GetEventHandler()->ProcessEvent(event)) return; |
1397 | } | |
903f689b | 1398 | |
12a3f227 | 1399 | if ((key_event.GetKeyCode() == WXK_RETURN) && !(m_windowStyle & wxTE_MULTILINE)) |
da048e3d | 1400 | { |
2b328fc9 RR |
1401 | // This will invoke the dialog default action, such |
1402 | // as the clicking the default button. | |
a8bf1826 | 1403 | |
da048e3d | 1404 | wxWindow *top_frame = m_parent; |
8487f887 | 1405 | while (top_frame->GetParent() && !(top_frame->IsTopLevel())) |
da048e3d | 1406 | top_frame = top_frame->GetParent(); |
a8bf1826 | 1407 | |
2b328fc9 | 1408 | if (top_frame && GTK_IS_WINDOW(top_frame->m_widget)) |
da048e3d | 1409 | { |
2b328fc9 RR |
1410 | GtkWindow *window = GTK_WINDOW(top_frame->m_widget); |
1411 | ||
1412 | if (window->default_widget) | |
1413 | { | |
1414 | gtk_widget_activate (window->default_widget); | |
1415 | return; | |
1416 | } | |
13111b2a | 1417 | } |
da048e3d RR |
1418 | } |
1419 | ||
2830bf19 | 1420 | key_event.Skip(); |
6de97a3b | 1421 | } |
c801d85f | 1422 | |
03f38c58 | 1423 | GtkWidget* wxTextCtrl::GetConnectWidget() |
e3e65dac | 1424 | { |
ae0bdb01 | 1425 | return GTK_WIDGET(m_text); |
6de97a3b | 1426 | } |
e3e65dac | 1427 | |
903f689b RR |
1428 | bool wxTextCtrl::IsOwnGtkWindow( GdkWindow *window ) |
1429 | { | |
ae0bdb01 | 1430 | if (m_windowStyle & wxTE_MULTILINE) |
fab591c5 RR |
1431 | { |
1432 | #ifdef __WXGTK20__ | |
1433 | return window == gtk_text_view_get_window( GTK_TEXT_VIEW( m_text ), GTK_TEXT_WINDOW_TEXT ); // pure guesswork | |
1434 | #else | |
ae0bdb01 | 1435 | return (window == GTK_TEXT(m_text)->text_area); |
fab591c5 RR |
1436 | #endif |
1437 | } | |
ae0bdb01 | 1438 | else |
fab591c5 | 1439 | { |
ae0bdb01 | 1440 | return (window == GTK_ENTRY(m_text)->text_area); |
fab591c5 | 1441 | } |
903f689b | 1442 | } |
e3e65dac | 1443 | |
bb69661b VZ |
1444 | // the font will change for subsequent text insertiongs |
1445 | bool wxTextCtrl::SetFont( const wxFont &font ) | |
868a2826 | 1446 | { |
223d09f6 | 1447 | wxCHECK_MSG( m_text != NULL, FALSE, wxT("invalid text ctrl") ); |
8bbe427f | 1448 | |
a66954a6 | 1449 | if ( !wxTextCtrlBase::SetFont(font) ) |
bb69661b VZ |
1450 | { |
1451 | // font didn't change, nothing to do | |
1452 | return FALSE; | |
1453 | } | |
1454 | ||
1455 | if ( m_windowStyle & wxTE_MULTILINE ) | |
1456 | { | |
c04ec496 | 1457 | SetUpdateFont(TRUE); |
bb69661b | 1458 | |
1ff4714d VZ |
1459 | m_defaultStyle.SetFont(font); |
1460 | ||
01041145 | 1461 | ChangeFontGlobally(); |
bb69661b VZ |
1462 | } |
1463 | ||
1464 | return TRUE; | |
58614078 RR |
1465 | } |
1466 | ||
01041145 VZ |
1467 | void wxTextCtrl::ChangeFontGlobally() |
1468 | { | |
1469 | // this method is very inefficient and hence should be called as rarely as | |
1470 | // possible! | |
c04ec496 VZ |
1471 | // |
1472 | // TODO: it can be implemented much more efficiently for GTK2 | |
c04ec496 | 1473 | #ifndef __WXGTK20__ |
22800f32 JS |
1474 | wxASSERT_MSG( (m_windowStyle & wxTE_MULTILINE) && m_updateFont, |
1475 | ||
01041145 | 1476 | _T("shouldn't be called for single line controls") ); |
22800f32 JS |
1477 | #else |
1478 | wxASSERT_MSG( (m_windowStyle & wxTE_MULTILINE), | |
1479 | _T("shouldn't be called for single line controls") ); | |
1480 | #endif | |
01041145 VZ |
1481 | |
1482 | wxString value = GetValue(); | |
1483 | if ( !value.IsEmpty() ) | |
1484 | { | |
c04ec496 | 1485 | SetUpdateFont(FALSE); |
572aeb77 | 1486 | |
01041145 VZ |
1487 | Clear(); |
1488 | AppendText(value); | |
01041145 VZ |
1489 | } |
1490 | } | |
1491 | ||
c04ec496 VZ |
1492 | #ifndef __WXGTK20__ |
1493 | ||
01041145 VZ |
1494 | void wxTextCtrl::UpdateFontIfNeeded() |
1495 | { | |
1496 | if ( m_updateFont ) | |
1497 | ChangeFontGlobally(); | |
1498 | } | |
1499 | ||
c04ec496 VZ |
1500 | #endif // GTK+ 1.x |
1501 | ||
17665a2b VZ |
1502 | bool wxTextCtrl::SetForegroundColour(const wxColour& colour) |
1503 | { | |
1504 | if ( !wxControl::SetForegroundColour(colour) ) | |
1505 | return FALSE; | |
1506 | ||
1507 | // update default fg colour too | |
1508 | m_defaultStyle.SetTextColour(colour); | |
1509 | ||
1510 | return TRUE; | |
1511 | } | |
1512 | ||
f03fc89f | 1513 | bool wxTextCtrl::SetBackgroundColour( const wxColour &colour ) |
68dda785 | 1514 | { |
223d09f6 | 1515 | wxCHECK_MSG( m_text != NULL, FALSE, wxT("invalid text ctrl") ); |
a81258be | 1516 | |
1f477433 VZ |
1517 | if ( !wxControl::SetBackgroundColour( colour ) ) |
1518 | return FALSE; | |
3358d36e | 1519 | |
c2094564 | 1520 | #ifndef __WXGTK20__ |
f03fc89f VZ |
1521 | if (!m_widget->window) |
1522 | return FALSE; | |
c2094564 | 1523 | #endif |
8bbe427f | 1524 | |
f03fc89f VZ |
1525 | if (!m_backgroundColour.Ok()) |
1526 | return FALSE; | |
8bbe427f | 1527 | |
ae0bdb01 RR |
1528 | if (m_windowStyle & wxTE_MULTILINE) |
1529 | { | |
1fc32b12 | 1530 | #ifndef __WXGTK20__ |
ae0bdb01 | 1531 | GdkWindow *window = GTK_TEXT(m_text)->text_area; |
f03fc89f VZ |
1532 | if (!window) |
1533 | return FALSE; | |
ae0bdb01 RR |
1534 | m_backgroundColour.CalcPixel( gdk_window_get_colormap( window ) ); |
1535 | gdk_window_set_background( window, m_backgroundColour.GetColor() ); | |
1536 | gdk_window_clear( window ); | |
fab591c5 | 1537 | #endif |
ae0bdb01 | 1538 | } |
f03fc89f | 1539 | |
17665a2b VZ |
1540 | // change active background color too |
1541 | m_defaultStyle.SetBackgroundColour( colour ); | |
1542 | ||
f03fc89f | 1543 | return TRUE; |
58614078 RR |
1544 | } |
1545 | ||
eda40bfc | 1546 | bool wxTextCtrl::SetStyle( long start, long end, const wxTextAttr& style ) |
17665a2b | 1547 | { |
17665a2b VZ |
1548 | if ( m_windowStyle & wxTE_MULTILINE ) |
1549 | { | |
1550 | if ( style.IsDefault() ) | |
1551 | { | |
1552 | // nothing to do | |
1553 | return TRUE; | |
1554 | } | |
cc3da3f8 | 1555 | #ifdef __WXGTK20__ |
41b81aed | 1556 | gint l = gtk_text_buffer_get_char_count( m_buffer ); |
17665a2b | 1557 | |
cc3da3f8 RR |
1558 | wxCHECK_MSG( start >= 0 && end <= l, FALSE, |
1559 | _T("invalid range in wxTextCtrl::SetStyle") ); | |
1560 | ||
1561 | GtkTextIter starti, endi; | |
41b81aed RR |
1562 | gtk_text_buffer_get_iter_at_offset( m_buffer, &starti, start ); |
1563 | gtk_text_buffer_get_iter_at_offset( m_buffer, &endi, end ); | |
cc3da3f8 RR |
1564 | |
1565 | // use the attributes from style which are set in it and fall back | |
1566 | // first to the default style and then to the text control default | |
1567 | // colours for the others | |
1568 | wxTextAttr attr = wxTextAttr::Combine(style, m_defaultStyle, this); | |
1569 | ||
41b81aed | 1570 | wxGtkTextApplyTagsFromAttr( m_buffer, attr, &starti, &endi ); |
cc3da3f8 RR |
1571 | |
1572 | return TRUE; | |
1573 | #else | |
1574 | // VERY dirty way to do that - removes the required text and re-adds it | |
1575 | // with styling (FIXME) | |
5b87f8bf | 1576 | |
17665a2b VZ |
1577 | gint l = gtk_text_get_length( GTK_TEXT(m_text) ); |
1578 | ||
1579 | wxCHECK_MSG( start >= 0 && end <= l, FALSE, | |
1580 | _T("invalid range in wxTextCtrl::SetStyle") ); | |
1581 | ||
1582 | gint old_pos = gtk_editable_get_position( GTK_EDITABLE(m_text) ); | |
1583 | char *text = gtk_editable_get_chars( GTK_EDITABLE(m_text), start, end ); | |
1584 | wxString tmp(text,*wxConvCurrent); | |
1585 | g_free( text ); | |
1586 | ||
1587 | gtk_editable_delete_text( GTK_EDITABLE(m_text), start, end ); | |
1588 | gtk_editable_set_position( GTK_EDITABLE(m_text), start ); | |
1589 | ||
1590 | #if wxUSE_UNICODE | |
1591 | wxWX2MBbuf buf = tmp.mbc_str(); | |
1592 | const char *txt = buf; | |
1593 | size_t txtlen = strlen(buf); | |
1594 | #else | |
1595 | const char *txt = tmp; | |
1596 | size_t txtlen = tmp.length(); | |
1597 | #endif | |
1598 | ||
eda40bfc VZ |
1599 | // use the attributes from style which are set in it and fall back |
1600 | // first to the default style and then to the text control default | |
1601 | // colours for the others | |
1602 | wxGtkTextInsert(m_text, | |
1603 | wxTextAttr::Combine(style, m_defaultStyle, this), | |
1604 | txt, | |
1605 | txtlen); | |
17665a2b VZ |
1606 | |
1607 | /* does not seem to help under GTK+ 1.2 !!! | |
1608 | gtk_editable_set_position( GTK_EDITABLE(m_text), old_pos ); */ | |
1609 | SetInsertionPoint( old_pos ); | |
fab591c5 | 1610 | #endif |
17665a2b VZ |
1611 | return TRUE; |
1612 | } | |
1613 | else // singe line | |
1614 | { | |
1615 | // cannot do this for GTK+'s Entry widget | |
1616 | return FALSE; | |
1617 | } | |
1618 | } | |
1619 | ||
f40fdaa3 | 1620 | void wxTextCtrl::DoApplyWidgetStyle(GtkRcStyle *style) |
58614078 | 1621 | { |
f40fdaa3 | 1622 | gtk_widget_modify_style(m_text, style); |
68dda785 | 1623 | } |
f96aa4d9 | 1624 | |
e702ff0f JS |
1625 | void wxTextCtrl::OnCut(wxCommandEvent& WXUNUSED(event)) |
1626 | { | |
1627 | Cut(); | |
1628 | } | |
1629 | ||
1630 | void wxTextCtrl::OnCopy(wxCommandEvent& WXUNUSED(event)) | |
1631 | { | |
1632 | Copy(); | |
1633 | } | |
1634 | ||
1635 | void wxTextCtrl::OnPaste(wxCommandEvent& WXUNUSED(event)) | |
1636 | { | |
1637 | Paste(); | |
1638 | } | |
1639 | ||
1640 | void wxTextCtrl::OnUndo(wxCommandEvent& WXUNUSED(event)) | |
1641 | { | |
1642 | Undo(); | |
1643 | } | |
1644 | ||
1645 | void wxTextCtrl::OnRedo(wxCommandEvent& WXUNUSED(event)) | |
1646 | { | |
1647 | Redo(); | |
1648 | } | |
1649 | ||
1650 | void wxTextCtrl::OnUpdateCut(wxUpdateUIEvent& event) | |
1651 | { | |
1652 | event.Enable( CanCut() ); | |
1653 | } | |
1654 | ||
1655 | void wxTextCtrl::OnUpdateCopy(wxUpdateUIEvent& event) | |
1656 | { | |
1657 | event.Enable( CanCopy() ); | |
1658 | } | |
1659 | ||
1660 | void wxTextCtrl::OnUpdatePaste(wxUpdateUIEvent& event) | |
1661 | { | |
1662 | event.Enable( CanPaste() ); | |
1663 | } | |
1664 | ||
1665 | void wxTextCtrl::OnUpdateUndo(wxUpdateUIEvent& event) | |
1666 | { | |
1667 | event.Enable( CanUndo() ); | |
1668 | } | |
1669 | ||
1670 | void wxTextCtrl::OnUpdateRedo(wxUpdateUIEvent& event) | |
1671 | { | |
1672 | event.Enable( CanRedo() ); | |
1673 | } | |
65045edd RR |
1674 | |
1675 | void wxTextCtrl::OnInternalIdle() | |
1676 | { | |
1677 | wxCursor cursor = m_cursor; | |
1678 | if (g_globalCursor.Ok()) cursor = g_globalCursor; | |
1679 | ||
307f16e8 | 1680 | if (cursor.Ok()) |
65045edd | 1681 | { |
fab591c5 | 1682 | #ifndef __WXGTK20__ |
65045edd | 1683 | GdkWindow *window = (GdkWindow*) NULL; |
13111b2a | 1684 | if (HasFlag(wxTE_MULTILINE)) |
65045edd RR |
1685 | window = GTK_TEXT(m_text)->text_area; |
1686 | else | |
1687 | window = GTK_ENTRY(m_text)->text_area; | |
13111b2a | 1688 | |
65045edd RR |
1689 | if (window) |
1690 | gdk_window_set_cursor( window, cursor.GetCursor() ); | |
1691 | ||
1692 | if (!g_globalCursor.Ok()) | |
1693 | cursor = *wxSTANDARD_CURSOR; | |
1694 | ||
1695 | window = m_widget->window; | |
247e5b16 | 1696 | if ((window) && !(GTK_WIDGET_NO_WINDOW(m_widget))) |
65045edd | 1697 | gdk_window_set_cursor( window, cursor.GetCursor() ); |
fab591c5 | 1698 | #endif |
65045edd | 1699 | } |
26bf1ce0 | 1700 | |
d7fa7eaa RR |
1701 | if (g_delayedFocus == this) |
1702 | { | |
1703 | if (GTK_WIDGET_REALIZED(m_widget)) | |
1704 | { | |
1705 | gtk_widget_grab_focus( m_widget ); | |
1706 | g_delayedFocus = NULL; | |
1707 | } | |
1708 | } | |
1709 | ||
e39af974 JS |
1710 | if (wxUpdateUIEvent::CanUpdate(this)) |
1711 | UpdateWindowUI(wxUPDATE_UI_FROMIDLE); | |
65045edd | 1712 | } |
f68586e5 VZ |
1713 | |
1714 | wxSize wxTextCtrl::DoGetBestSize() const | |
1715 | { | |
1716 | // FIXME should be different for multi-line controls... | |
0279e844 | 1717 | wxSize ret( wxControl::DoGetBestSize() ); |
9f884528 RD |
1718 | wxSize best(80, ret.y); |
1719 | CacheBestSize(best); | |
1720 | return best; | |
f68586e5 | 1721 | } |
0cc7251e | 1722 | |
9cd6d737 VZ |
1723 | // ---------------------------------------------------------------------------- |
1724 | // freeze/thaw | |
1725 | // ---------------------------------------------------------------------------- | |
1726 | ||
0cc7251e VZ |
1727 | void wxTextCtrl::Freeze() |
1728 | { | |
1729 | if ( HasFlag(wxTE_MULTILINE) ) | |
1730 | { | |
41b81aed RR |
1731 | #ifdef __WXGTK20__ |
1732 | if ( !m_frozenness++ ) | |
1733 | { | |
1734 | // freeze textview updates and remove buffer | |
1735 | g_signal_connect( G_OBJECT(m_text), "expose_event", | |
1736 | GTK_SIGNAL_FUNC(gtk_text_exposed_callback), (gpointer)this); | |
1737 | g_signal_connect( G_OBJECT(m_widget), "expose_event", | |
1738 | GTK_SIGNAL_FUNC(gtk_text_exposed_callback), (gpointer)this); | |
1739 | gtk_widget_set_sensitive(m_widget, false); | |
1740 | g_object_ref(m_buffer); | |
1741 | gtk_text_view_set_buffer(GTK_TEXT_VIEW(m_text), gtk_text_buffer_new(NULL)); | |
0cc7251e | 1742 | } |
41b81aed RR |
1743 | #else |
1744 | gtk_text_freeze(GTK_TEXT(m_text)); | |
fab591c5 | 1745 | #endif |
41b81aed | 1746 | } |
0cc7251e VZ |
1747 | } |
1748 | ||
1749 | void wxTextCtrl::Thaw() | |
1750 | { | |
1751 | if ( HasFlag(wxTE_MULTILINE) ) | |
1752 | { | |
41b81aed RR |
1753 | #ifdef __WXGTK20__ |
1754 | wxASSERT_MSG( m_frozenness > 0, _T("Thaw() without matching Freeze()") ); | |
1755 | ||
1756 | if ( !--m_frozenness ) | |
1757 | { | |
1758 | // Reattach buffer and thaw textview updates | |
1759 | gtk_text_view_set_buffer(GTK_TEXT_VIEW(m_text), m_buffer); | |
1760 | g_object_unref(m_buffer); | |
1761 | gtk_widget_set_sensitive(m_widget, true); | |
1762 | g_signal_handlers_disconnect_by_func(m_widget, (gpointer)gtk_text_exposed_callback, this); | |
1763 | g_signal_handlers_disconnect_by_func(m_text, (gpointer)gtk_text_exposed_callback, this); | |
1764 | } | |
1765 | #else | |
817ec43a VZ |
1766 | GTK_TEXT(m_text)->vadj->value = 0.0; |
1767 | ||
0cc7251e | 1768 | gtk_text_thaw(GTK_TEXT(m_text)); |
fab591c5 | 1769 | #endif |
41b81aed | 1770 | } |
0cc7251e | 1771 | } |
9cd6d737 VZ |
1772 | |
1773 | // ---------------------------------------------------------------------------- | |
1774 | // scrolling | |
1775 | // ---------------------------------------------------------------------------- | |
1776 | ||
1777 | GtkAdjustment *wxTextCtrl::GetVAdj() const | |
1778 | { | |
1ce52aa6 VZ |
1779 | if ( !IsMultiLine() ) |
1780 | return NULL; | |
1781 | ||
fab591c5 | 1782 | #ifdef __WXGTK20__ |
1ce52aa6 | 1783 | return gtk_scrolled_window_get_vadjustment(GTK_SCROLLED_WINDOW(m_widget)); |
fab591c5 | 1784 | #else |
1ce52aa6 | 1785 | return GTK_TEXT(m_text)->vadj; |
fab591c5 | 1786 | #endif |
9cd6d737 VZ |
1787 | } |
1788 | ||
1789 | bool wxTextCtrl::DoScroll(GtkAdjustment *adj, int diff) | |
1790 | { | |
1791 | float value = adj->value + diff; | |
1792 | ||
1793 | if ( value < 0 ) | |
1794 | value = 0; | |
1795 | ||
1796 | float upper = adj->upper - adj->page_size; | |
1797 | if ( value > upper ) | |
1798 | value = upper; | |
1799 | ||
1800 | // did we noticeably change the scroll position? | |
1801 | if ( fabs(adj->value - value) < 0.2 ) | |
1802 | { | |
1803 | // well, this is what Robert does in wxScrollBar, so it must be good... | |
1804 | return FALSE; | |
1805 | } | |
1806 | ||
1807 | adj->value = value; | |
1808 | ||
1ce52aa6 VZ |
1809 | #ifdef __WXGTK20__ |
1810 | gtk_adjustment_value_changed(GTK_ADJUSTMENT(adj)); | |
1811 | #else | |
9cd6d737 | 1812 | gtk_signal_emit_by_name(GTK_OBJECT(adj), "value_changed"); |
fab591c5 | 1813 | #endif |
1ce52aa6 | 1814 | |
9cd6d737 VZ |
1815 | return TRUE; |
1816 | } | |
1817 | ||
1818 | bool wxTextCtrl::ScrollLines(int lines) | |
1819 | { | |
1820 | GtkAdjustment *adj = GetVAdj(); | |
1821 | if ( !adj ) | |
1822 | return FALSE; | |
1823 | ||
1ce52aa6 VZ |
1824 | #ifdef __WXGTK20__ |
1825 | int diff = (int)ceil(lines*adj->step_increment); | |
1826 | #else | |
9cd6d737 | 1827 | // this is hardcoded to 10 in GTK+ 1.2 (great idea) |
1ce52aa6 | 1828 | int diff = 10*lines; |
fab591c5 | 1829 | #endif |
1ce52aa6 VZ |
1830 | |
1831 | return DoScroll(adj, diff); | |
9cd6d737 VZ |
1832 | } |
1833 | ||
1834 | bool wxTextCtrl::ScrollPages(int pages) | |
1835 | { | |
1836 | GtkAdjustment *adj = GetVAdj(); | |
1837 | if ( !adj ) | |
1838 | return FALSE; | |
1839 | ||
817ec43a | 1840 | return DoScroll(adj, (int)ceil(pages*adj->page_increment)); |
9cd6d737 VZ |
1841 | } |
1842 | ||
9d522606 RD |
1843 | |
1844 | // static | |
1845 | wxVisualAttributes | |
1846 | wxTextCtrl::GetClassDefaultAttributes(wxWindowVariant WXUNUSED(variant)) | |
1847 | { | |
1848 | return GetDefaultAttributesFromGTKWidget(gtk_entry_new, true); | |
1849 | } |