]>
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 |
13289f04 | 7 | // Licence: wxWindows licence |
c801d85f KB |
8 | ///////////////////////////////////////////////////////////////////////////// |
9 | ||
10 | #ifdef __GNUG__ | |
11 | #pragma implementation "textctrl.h" | |
12 | #endif | |
13 | ||
14 | #include "wx/textctrl.h" | |
15 | #include "wx/utils.h" | |
ae0bdb01 RR |
16 | #include "wx/intl.h" |
17 | #include "wx/settings.h" | |
c801d85f | 18 | |
a81258be RR |
19 | #include <sys/types.h> |
20 | #include <sys/stat.h> | |
21 | #include <ctype.h> | |
22 | ||
83624f79 RR |
23 | #include "gdk/gdk.h" |
24 | #include "gtk/gtk.h" | |
b292e2f5 RR |
25 | #include "gdk/gdkkeysyms.h" |
26 | ||
acfd422a RR |
27 | //----------------------------------------------------------------------------- |
28 | // idle system | |
29 | //----------------------------------------------------------------------------- | |
30 | ||
31 | extern void wxapp_install_idle_handler(); | |
32 | extern bool g_isIdle; | |
33 | ||
b292e2f5 RR |
34 | //----------------------------------------------------------------------------- |
35 | // data | |
36 | //----------------------------------------------------------------------------- | |
37 | ||
65045edd RR |
38 | extern bool g_blockEventsOnDrag; |
39 | extern wxCursor g_globalCursor; | |
b292e2f5 | 40 | |
c801d85f | 41 | //----------------------------------------------------------------------------- |
2f2aa628 | 42 | // "changed" |
c801d85f KB |
43 | //----------------------------------------------------------------------------- |
44 | ||
805dd538 | 45 | static void |
2830bf19 | 46 | gtk_text_changed_callback( GtkWidget *WXUNUSED(widget), wxTextCtrl *win ) |
484e45bf | 47 | { |
a2053b27 | 48 | if (!win->m_hasVMT) return; |
805dd538 | 49 | |
bb69661b | 50 | if (g_isIdle) |
3c679789 RR |
51 | wxapp_install_idle_handler(); |
52 | ||
034be888 | 53 | win->SetModified(); |
8bbe427f | 54 | |
f03fc89f | 55 | wxCommandEvent event( wxEVT_COMMAND_TEXT_UPDATED, win->GetId() ); |
8a85884a | 56 | event.SetString( win->GetValue() ); |
2830bf19 RR |
57 | event.SetEventObject( win ); |
58 | win->GetEventHandler()->ProcessEvent( event ); | |
6de97a3b | 59 | } |
112892b9 | 60 | |
2830bf19 | 61 | //----------------------------------------------------------------------------- |
034be888 | 62 | // "changed" from vertical scrollbar |
2830bf19 RR |
63 | //----------------------------------------------------------------------------- |
64 | ||
805dd538 | 65 | static void |
034be888 | 66 | gtk_scrollbar_changed_callback( GtkWidget *WXUNUSED(widget), wxTextCtrl *win ) |
2830bf19 | 67 | { |
3c679789 | 68 | if (!win->m_hasVMT) return; |
bb69661b VZ |
69 | |
70 | if (g_isIdle) | |
3c679789 | 71 | wxapp_install_idle_handler(); |
acfd422a | 72 | |
2830bf19 RR |
73 | win->CalculateScrollbar(); |
74 | } | |
75 | ||
2f2aa628 RR |
76 | //----------------------------------------------------------------------------- |
77 | // wxTextCtrl | |
78 | //----------------------------------------------------------------------------- | |
79 | ||
80 | IMPLEMENT_DYNAMIC_CLASS(wxTextCtrl,wxControl) | |
81 | ||
c801d85f | 82 | BEGIN_EVENT_TABLE(wxTextCtrl, wxControl) |
2830bf19 | 83 | EVT_CHAR(wxTextCtrl::OnChar) |
e702ff0f JS |
84 | |
85 | EVT_MENU(wxID_CUT, wxTextCtrl::OnCut) | |
86 | EVT_MENU(wxID_COPY, wxTextCtrl::OnCopy) | |
87 | EVT_MENU(wxID_PASTE, wxTextCtrl::OnPaste) | |
88 | EVT_MENU(wxID_UNDO, wxTextCtrl::OnUndo) | |
89 | EVT_MENU(wxID_REDO, wxTextCtrl::OnRedo) | |
90 | ||
91 | EVT_UPDATE_UI(wxID_CUT, wxTextCtrl::OnUpdateCut) | |
92 | EVT_UPDATE_UI(wxID_COPY, wxTextCtrl::OnUpdateCopy) | |
93 | EVT_UPDATE_UI(wxID_PASTE, wxTextCtrl::OnUpdatePaste) | |
94 | EVT_UPDATE_UI(wxID_UNDO, wxTextCtrl::OnUpdateUndo) | |
95 | EVT_UPDATE_UI(wxID_REDO, wxTextCtrl::OnUpdateRedo) | |
c801d85f KB |
96 | END_EVENT_TABLE() |
97 | ||
f5abe911 RR |
98 | wxTextCtrl::wxTextCtrl() |
99 | { | |
100 | m_modified = FALSE; | |
101 | } | |
13289f04 | 102 | |
13111b2a VZ |
103 | wxTextCtrl::wxTextCtrl( wxWindow *parent, |
104 | wxWindowID id, | |
105 | const wxString &value, | |
106 | const wxPoint &pos, | |
107 | const wxSize &size, | |
108 | long style, | |
109 | const wxValidator& validator, | |
110 | const wxString &name ) | |
f5abe911 RR |
111 | { |
112 | m_modified = FALSE; | |
113 | Create( parent, id, value, pos, size, style, validator, name ); | |
114 | } | |
c801d85f | 115 | |
13111b2a VZ |
116 | bool wxTextCtrl::Create( wxWindow *parent, |
117 | wxWindowID id, | |
118 | const wxString &value, | |
119 | const wxPoint &pos, | |
120 | const wxSize &size, | |
121 | long style, | |
122 | const wxValidator& validator, | |
123 | const wxString &name ) | |
c801d85f | 124 | { |
2830bf19 | 125 | m_needParent = TRUE; |
b292e2f5 | 126 | m_acceptsFocus = TRUE; |
484e45bf | 127 | |
4dcaf11a RR |
128 | if (!PreCreation( parent, pos, size ) || |
129 | !CreateBase( parent, id, pos, size, style, validator, name )) | |
130 | { | |
223d09f6 | 131 | wxFAIL_MSG( wxT("wxTextCtrl creation failed") ); |
13111b2a | 132 | return FALSE; |
4dcaf11a | 133 | } |
6de97a3b | 134 | |
805dd538 | 135 | |
034be888 | 136 | m_vScrollbarVisible = FALSE; |
13289f04 | 137 | |
2830bf19 | 138 | bool multi_line = (style & wxTE_MULTILINE) != 0; |
ab46dc18 | 139 | if (multi_line) |
2830bf19 | 140 | { |
7d6d2cd4 | 141 | #if (GTK_MINOR_VERSION > 2) |
034be888 RR |
142 | /* a multi-line edit control: create a vertical scrollbar by default and |
143 | horizontal if requested */ | |
2830bf19 | 144 | bool bHasHScrollbar = (style & wxHSCROLL) != 0; |
7d6d2cd4 RR |
145 | #else |
146 | bool bHasHScrollbar = FALSE; | |
147 | #endif | |
805dd538 | 148 | |
034be888 | 149 | /* create our control ... */ |
2830bf19 RR |
150 | m_text = gtk_text_new( (GtkAdjustment *) NULL, (GtkAdjustment *) NULL ); |
151 | ||
034be888 | 152 | /* ... and put into the upper left hand corner of the table */ |
2830bf19 | 153 | m_widget = gtk_table_new(bHasHScrollbar ? 2 : 1, 2, FALSE); |
5664fc32 | 154 | GTK_WIDGET_UNSET_FLAGS( m_widget, GTK_CAN_FOCUS ); |
2830bf19 | 155 | gtk_table_attach( GTK_TABLE(m_widget), m_text, 0, 1, 0, 1, |
41dee9d0 | 156 | (GtkAttachOptions)(GTK_FILL | GTK_EXPAND | GTK_SHRINK), |
f5368809 RR |
157 | (GtkAttachOptions)(GTK_FILL | GTK_EXPAND | GTK_SHRINK), |
158 | 0, 0); | |
bb69661b | 159 | |
5c387335 RR |
160 | /* always wrap words */ |
161 | gtk_text_set_word_wrap( GTK_TEXT(m_text), TRUE ); | |
bb69661b | 162 | |
7d6d2cd4 | 163 | #if (GTK_MINOR_VERSION > 2) |
034be888 | 164 | /* put the horizontal scrollbar in the lower left hand corner */ |
2830bf19 RR |
165 | if (bHasHScrollbar) |
166 | { | |
167 | GtkWidget *hscrollbar = gtk_hscrollbar_new(GTK_TEXT(m_text)->hadj); | |
5664fc32 | 168 | GTK_WIDGET_UNSET_FLAGS( hscrollbar, GTK_CAN_FOCUS ); |
2830bf19 | 169 | gtk_table_attach(GTK_TABLE(m_widget), hscrollbar, 0, 1, 1, 2, |
8ce63e9d | 170 | (GtkAttachOptions)(GTK_EXPAND | GTK_FILL | GTK_SHRINK), |
13289f04 VZ |
171 | GTK_FILL, |
172 | 0, 0); | |
2830bf19 | 173 | gtk_widget_show(hscrollbar); |
13289f04 | 174 | |
3358d36e VZ |
175 | /* don't wrap lines, otherwise we wouldn't need the scrollbar */ |
176 | gtk_text_set_line_wrap( GTK_TEXT(m_text), FALSE ); | |
5c387335 | 177 | } |
7d6d2cd4 | 178 | #endif |
bb69661b | 179 | |
ab46dc18 RR |
180 | /* finally, put the vertical scrollbar in the upper right corner */ |
181 | m_vScrollbar = gtk_vscrollbar_new( GTK_TEXT(m_text)->vadj ); | |
182 | GTK_WIDGET_UNSET_FLAGS( m_vScrollbar, GTK_CAN_FOCUS ); | |
ab46dc18 RR |
183 | gtk_table_attach(GTK_TABLE(m_widget), m_vScrollbar, 1, 2, 0, 1, |
184 | GTK_FILL, | |
185 | (GtkAttachOptions)(GTK_EXPAND | GTK_FILL | GTK_SHRINK), | |
186 | 0, 0); | |
2830bf19 RR |
187 | } |
188 | else | |
189 | { | |
034be888 | 190 | /* a single-line text control: no need for scrollbars */ |
2830bf19 RR |
191 | m_widget = |
192 | m_text = gtk_entry_new(); | |
193 | } | |
484e45bf | 194 | |
db434467 RR |
195 | m_parent->DoAddChild( this ); |
196 | ||
197 | PostCreation(); | |
198 | ||
199 | SetFont( parent->GetFont() ); | |
200 | ||
201 | wxSize size_best( DoGetBestSize() ); | |
202 | wxSize new_size( size ); | |
0279e844 | 203 | if (new_size.x == -1) |
db434467 | 204 | new_size.x = size_best.x; |
0279e844 | 205 | if (new_size.y == -1) |
db434467 | 206 | new_size.y = size_best.y; |
0279e844 RR |
207 | if ((new_size.x != size.x) || (new_size.y != size.y)) |
208 | SetSize( new_size.x, new_size.y ); | |
484e45bf | 209 | |
2830bf19 | 210 | if (multi_line) |
2830bf19 | 211 | gtk_widget_show(m_text); |
13289f04 | 212 | |
034be888 | 213 | /* we want to be notified about text changes */ |
b292e2f5 RR |
214 | gtk_signal_connect( GTK_OBJECT(m_text), "changed", |
215 | GTK_SIGNAL_FUNC(gtk_text_changed_callback), (gpointer)this); | |
484e45bf | 216 | |
ab46dc18 RR |
217 | if (multi_line) |
218 | { | |
219 | gtk_signal_connect(GTK_OBJECT(GTK_TEXT(m_text)->vadj), "changed", | |
220 | (GtkSignalFunc) gtk_scrollbar_changed_callback, (gpointer) this ); | |
221 | } | |
3358d36e | 222 | |
291a8f20 | 223 | if (!value.IsEmpty()) |
2830bf19 RR |
224 | { |
225 | gint tmp = 0; | |
3358d36e VZ |
226 | |
227 | #if GTK_MINOR_VERSION == 0 | |
228 | // if we don't realize it, GTK 1.0.6 dies with a SIGSEGV in | |
229 | // gtk_editable_insert_text() | |
230 | gtk_widget_realize(m_text); | |
231 | #endif // GTK 1.0 | |
232 | ||
05939a81 | 233 | #if wxUSE_UNICODE |
3358d36e | 234 | wxWX2MBbuf val = value.mbc_str(); |
05939a81 | 235 | gtk_editable_insert_text( GTK_EDITABLE(m_text), val, strlen(val), &tmp ); |
3358d36e | 236 | #else // !Unicode |
2830bf19 | 237 | gtk_editable_insert_text( GTK_EDITABLE(m_text), value, value.Length(), &tmp ); |
3358d36e VZ |
238 | #endif // Unicode/!Unicode |
239 | ||
291a8f20 RR |
240 | if (multi_line) |
241 | { | |
3358d36e VZ |
242 | /* bring editable's cursor uptodate. bug in GTK. */ |
243 | ||
244 | GTK_EDITABLE(m_text)->current_pos = gtk_text_get_point( GTK_TEXT(m_text) ); | |
245 | } | |
2830bf19 | 246 | } |
484e45bf | 247 | |
2830bf19 RR |
248 | if (style & wxTE_PASSWORD) |
249 | { | |
250 | if (!multi_line) | |
251 | gtk_entry_set_visibility( GTK_ENTRY(m_text), FALSE ); | |
252 | } | |
8bbe427f | 253 | |
2830bf19 RR |
254 | if (style & wxTE_READONLY) |
255 | { | |
256 | if (!multi_line) | |
257 | gtk_entry_set_editable( GTK_ENTRY(m_text), FALSE ); | |
258 | } | |
259 | else | |
260 | { | |
261 | if (multi_line) | |
262 | gtk_text_set_editable( GTK_TEXT(m_text), 1 ); | |
263 | } | |
3358d36e | 264 | |
012a03e0 | 265 | SetBackgroundColour( wxSystemSettings::GetSystemColour(wxSYS_COLOUR_WINDOW) ); |
034be888 | 266 | SetForegroundColour( parent->GetForegroundColour() ); |
805dd538 | 267 | |
65045edd | 268 | m_cursor = wxCursor( wxCURSOR_IBEAM ); |
13111b2a | 269 | |
2830bf19 | 270 | Show( TRUE ); |
805dd538 | 271 | |
2830bf19 RR |
272 | return TRUE; |
273 | } | |
484e45bf | 274 | |
2830bf19 RR |
275 | void wxTextCtrl::CalculateScrollbar() |
276 | { | |
277 | if ((m_windowStyle & wxTE_MULTILINE) == 0) return; | |
f96aa4d9 | 278 | |
2830bf19 | 279 | GtkAdjustment *adj = GTK_TEXT(m_text)->vadj; |
805dd538 | 280 | |
2830bf19 RR |
281 | if (adj->upper - adj->page_size < 0.8) |
282 | { | |
283 | if (m_vScrollbarVisible) | |
284 | { | |
034be888 | 285 | gtk_widget_hide( m_vScrollbar ); |
034be888 | 286 | m_vScrollbarVisible = FALSE; |
2830bf19 RR |
287 | } |
288 | } | |
289 | else | |
290 | { | |
291 | if (!m_vScrollbarVisible) | |
292 | { | |
034be888 | 293 | gtk_widget_show( m_vScrollbar ); |
034be888 | 294 | m_vScrollbarVisible = TRUE; |
2830bf19 RR |
295 | } |
296 | } | |
6de97a3b | 297 | } |
c801d85f | 298 | |
03f38c58 | 299 | wxString wxTextCtrl::GetValue() const |
c801d85f | 300 | { |
223d09f6 | 301 | wxCHECK_MSG( m_text != NULL, wxT(""), wxT("invalid text ctrl") ); |
8bbe427f | 302 | |
2830bf19 RR |
303 | wxString tmp; |
304 | if (m_windowStyle & wxTE_MULTILINE) | |
305 | { | |
306 | gint len = gtk_text_get_length( GTK_TEXT(m_text) ); | |
307 | char *text = gtk_editable_get_chars( GTK_EDITABLE(m_text), 0, len ); | |
dcf924a3 | 308 | tmp = wxString(text,*wxConvCurrent); |
2830bf19 RR |
309 | g_free( text ); |
310 | } | |
311 | else | |
312 | { | |
dcf924a3 | 313 | tmp = wxString(gtk_entry_get_text( GTK_ENTRY(m_text) ),*wxConvCurrent); |
2830bf19 RR |
314 | } |
315 | return tmp; | |
6de97a3b | 316 | } |
c801d85f KB |
317 | |
318 | void wxTextCtrl::SetValue( const wxString &value ) | |
319 | { | |
223d09f6 | 320 | wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") ); |
8bbe427f | 321 | |
223d09f6 | 322 | wxString tmp = wxT(""); |
2830bf19 RR |
323 | if (!value.IsNull()) tmp = value; |
324 | if (m_windowStyle & wxTE_MULTILINE) | |
325 | { | |
326 | gint len = gtk_text_get_length( GTK_TEXT(m_text) ); | |
327 | gtk_editable_delete_text( GTK_EDITABLE(m_text), 0, len ); | |
328 | len = 0; | |
05939a81 | 329 | #if wxUSE_UNICODE |
3358d36e | 330 | wxWX2MBbuf tmpbuf = tmp.mbc_str(); |
05939a81 OK |
331 | gtk_editable_insert_text( GTK_EDITABLE(m_text), tmpbuf, strlen(tmpbuf), &len ); |
332 | #else | |
333 | gtk_editable_insert_text( GTK_EDITABLE(m_text), tmp.mbc_str(), tmp.Length(), &len ); | |
334 | #endif | |
2830bf19 RR |
335 | } |
336 | else | |
337 | { | |
05939a81 | 338 | gtk_entry_set_text( GTK_ENTRY(m_text), tmp.mbc_str() ); |
2830bf19 | 339 | } |
6de97a3b | 340 | } |
c801d85f KB |
341 | |
342 | void wxTextCtrl::WriteText( const wxString &text ) | |
343 | { | |
223d09f6 | 344 | wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") ); |
8bbe427f | 345 | |
2df7be7f | 346 | if (text.IsEmpty()) return; |
484e45bf | 347 | |
2830bf19 RR |
348 | if (m_windowStyle & wxTE_MULTILINE) |
349 | { | |
291a8f20 | 350 | /* this moves the cursor pos to behind the inserted text */ |
3358d36e | 351 | gint len = GTK_EDITABLE(m_text)->current_pos; |
13111b2a | 352 | |
05939a81 | 353 | #if wxUSE_UNICODE |
3358d36e | 354 | wxWX2MBbuf buf = text.mbc_str(); |
05939a81 OK |
355 | gtk_editable_insert_text( GTK_EDITABLE(m_text), buf, strlen(buf), &len ); |
356 | #else | |
2830bf19 | 357 | gtk_editable_insert_text( GTK_EDITABLE(m_text), text, text.Length(), &len ); |
05939a81 | 358 | #endif |
3358d36e VZ |
359 | |
360 | /* bring editable's cursor uptodate. bug in GTK. */ | |
361 | GTK_EDITABLE(m_text)->current_pos = gtk_text_get_point( GTK_TEXT(m_text) ); | |
2830bf19 RR |
362 | } |
363 | else | |
364 | { | |
c46554be | 365 | /* this moves the cursor pos to behind the inserted text */ |
3358d36e | 366 | gint len = GTK_EDITABLE(m_text)->current_pos; |
05939a81 | 367 | #if wxUSE_UNICODE |
3358d36e | 368 | wxWX2MBbuf buf = text.mbc_str(); |
05939a81 OK |
369 | gtk_editable_insert_text( GTK_EDITABLE(m_text), buf, strlen(buf), &len ); |
370 | #else | |
c46554be | 371 | gtk_editable_insert_text( GTK_EDITABLE(m_text), text, text.Length(), &len ); |
05939a81 | 372 | #endif |
3358d36e VZ |
373 | |
374 | /* bring editable's cursor uptodate. bug in GTK. */ | |
375 | GTK_EDITABLE(m_text)->current_pos += text.Len(); | |
376 | ||
377 | /* bring entry's cursor uptodate. bug in GTK. */ | |
378 | gtk_entry_set_position( GTK_ENTRY(m_text), GTK_EDITABLE(m_text)->current_pos ); | |
2830bf19 | 379 | } |
6de97a3b | 380 | } |
c801d85f | 381 | |
a6e21573 HH |
382 | void wxTextCtrl::AppendText( const wxString &text ) |
383 | { | |
223d09f6 | 384 | wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") ); |
a6e21573 | 385 | |
2df7be7f RR |
386 | if (text.IsEmpty()) return; |
387 | ||
a6e21573 HH |
388 | if (m_windowStyle & wxTE_MULTILINE) |
389 | { | |
bb69661b VZ |
390 | bool hasSpecialAttributes = m_font.Ok() || |
391 | m_foregroundColour.Ok() || | |
392 | m_backgroundColour.Ok(); | |
393 | if ( hasSpecialAttributes ) | |
394 | { | |
395 | gtk_text_insert( GTK_TEXT(m_text), | |
396 | m_font.GetInternalFont(), | |
397 | m_foregroundColour.GetColor(), | |
398 | m_backgroundColour.GetColor(), | |
c980c992 | 399 | text.mbc_str(), text.length()); |
bb69661b VZ |
400 | |
401 | } | |
402 | else | |
403 | { | |
404 | /* we'll insert at the last position */ | |
405 | gint len = gtk_text_get_length( GTK_TEXT(m_text) ); | |
05939a81 | 406 | #if wxUSE_UNICODE |
bb69661b VZ |
407 | wxWX2MBbuf buf = text.mbc_str(); |
408 | gtk_editable_insert_text( GTK_EDITABLE(m_text), buf, strlen(buf), &len ); | |
05939a81 | 409 | #else |
bb69661b | 410 | gtk_editable_insert_text( GTK_EDITABLE(m_text), text, text.Length(), &len ); |
05939a81 | 411 | #endif |
bb69661b | 412 | } |
3358d36e VZ |
413 | |
414 | /* bring editable's cursor uptodate. bug in GTK. */ | |
415 | GTK_EDITABLE(m_text)->current_pos = gtk_text_get_point( GTK_TEXT(m_text) ); | |
a6e21573 HH |
416 | } |
417 | else | |
418 | { | |
05939a81 | 419 | gtk_entry_append_text( GTK_ENTRY(m_text), text.mbc_str() ); |
a6e21573 HH |
420 | } |
421 | } | |
422 | ||
debe6624 | 423 | wxString wxTextCtrl::GetLineText( long lineNo ) const |
c801d85f | 424 | { |
a81258be RR |
425 | if (m_windowStyle & wxTE_MULTILINE) |
426 | { | |
427 | gint len = gtk_text_get_length( GTK_TEXT(m_text) ); | |
428 | char *text = gtk_editable_get_chars( GTK_EDITABLE(m_text), 0, len ); | |
429 | ||
430 | if (text) | |
431 | { | |
223d09f6 | 432 | wxString buf(wxT("")); |
a81258be RR |
433 | long i; |
434 | int currentLine = 0; | |
435 | for (i = 0; currentLine != lineNo && text[i]; i++ ) | |
436 | if (text[i] == '\n') | |
437 | currentLine++; | |
438 | // Now get the text | |
439 | int j; | |
440 | for (j = 0; text[i] && text[i] != '\n'; i++, j++ ) | |
441 | buf += text[i]; | |
8bbe427f | 442 | |
a81258be RR |
443 | g_free( text ); |
444 | return buf; | |
445 | } | |
446 | else | |
447 | return wxEmptyString; | |
448 | } | |
449 | else | |
450 | { | |
451 | if (lineNo == 0) return GetValue(); | |
452 | return wxEmptyString; | |
453 | } | |
6de97a3b | 454 | } |
c801d85f | 455 | |
a81258be RR |
456 | void wxTextCtrl::OnDropFiles( wxDropFilesEvent &WXUNUSED(event) ) |
457 | { | |
ac0d36b5 HH |
458 | /* If you implement this, don't forget to update the documentation! |
459 | * (file docs/latex/wx/text.tex) */ | |
223d09f6 | 460 | wxFAIL_MSG( wxT("wxTextCtrl::OnDropFiles not implemented") ); |
a81258be | 461 | } |
112892b9 | 462 | |
0efe5ba7 | 463 | bool wxTextCtrl::PositionToXY(long pos, long *x, long *y ) const |
c801d85f | 464 | { |
96385642 | 465 | if ( m_windowStyle & wxTE_MULTILINE ) |
805dd538 | 466 | { |
96385642 VZ |
467 | wxString text = GetValue(); |
468 | ||
6085b116 | 469 | // cast to prevent warning. But pos really should've been unsigned. |
2829d9e3 | 470 | if( (unsigned long)pos > text.Len() ) |
96385642 VZ |
471 | return FALSE; |
472 | ||
ac0d36b5 HH |
473 | *x=0; // First Col |
474 | *y=0; // First Line | |
2829d9e3 | 475 | |
05939a81 OK |
476 | const wxChar* stop = text.c_str() + pos; |
477 | for ( const wxChar *p = text.c_str(); p < stop; p++ ) | |
96385642 | 478 | { |
223d09f6 | 479 | if (*p == wxT('\n')) |
96385642 VZ |
480 | { |
481 | (*y)++; | |
ac0d36b5 | 482 | *x=0; |
96385642 VZ |
483 | } |
484 | else | |
485 | (*x)++; | |
486 | } | |
805dd538 | 487 | } |
96385642 VZ |
488 | else // single line control |
489 | { | |
2829d9e3 | 490 | if ( pos <= GTK_ENTRY(m_text)->text_length ) |
96385642 | 491 | { |
ac0d36b5 | 492 | *y = 0; |
96385642 VZ |
493 | *x = pos; |
494 | } | |
495 | else | |
496 | { | |
497 | // index out of bounds | |
498 | return FALSE; | |
499 | } | |
8bbe427f | 500 | } |
96385642 VZ |
501 | |
502 | return TRUE; | |
6de97a3b | 503 | } |
c801d85f | 504 | |
e3ca08dd | 505 | long wxTextCtrl::XYToPosition(long x, long y ) const |
c801d85f | 506 | { |
2830bf19 | 507 | if (!(m_windowStyle & wxTE_MULTILINE)) return 0; |
805dd538 | 508 | |
2830bf19 | 509 | long pos=0; |
ac0d36b5 | 510 | for( int i=0; i<y; i++ ) pos += GetLineLength(i) + 1; // one for '\n' |
8bbe427f | 511 | |
3358d36e | 512 | pos += x; |
2830bf19 | 513 | return pos; |
6de97a3b | 514 | } |
c801d85f | 515 | |
a81258be | 516 | int wxTextCtrl::GetLineLength(long lineNo) const |
c801d85f | 517 | { |
a81258be RR |
518 | wxString str = GetLineText (lineNo); |
519 | return (int) str.Length(); | |
6de97a3b | 520 | } |
c801d85f | 521 | |
a81258be | 522 | int wxTextCtrl::GetNumberOfLines() const |
c801d85f | 523 | { |
2830bf19 | 524 | if (m_windowStyle & wxTE_MULTILINE) |
a81258be | 525 | { |
2830bf19 RR |
526 | gint len = gtk_text_get_length( GTK_TEXT(m_text) ); |
527 | char *text = gtk_editable_get_chars( GTK_EDITABLE(m_text), 0, len ); | |
528 | ||
529 | if (text) | |
530 | { | |
531 | int currentLine = 0; | |
532 | for (int i = 0; i < len; i++ ) | |
96385642 | 533 | { |
2830bf19 | 534 | if (text[i] == '\n') |
96385642 VZ |
535 | currentLine++; |
536 | } | |
2830bf19 | 537 | g_free( text ); |
2829d9e3 VZ |
538 | |
539 | // currentLine is 0 based, add 1 to get number of lines | |
540 | return currentLine + 1; | |
2830bf19 RR |
541 | } |
542 | else | |
96385642 | 543 | { |
2830bf19 | 544 | return 0; |
96385642 | 545 | } |
a81258be RR |
546 | } |
547 | else | |
2830bf19 | 548 | { |
96385642 | 549 | return 1; |
2830bf19 | 550 | } |
6de97a3b | 551 | } |
c801d85f | 552 | |
debe6624 | 553 | void wxTextCtrl::SetInsertionPoint( long pos ) |
c801d85f | 554 | { |
223d09f6 | 555 | wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") ); |
3358d36e VZ |
556 | |
557 | if (m_windowStyle & wxTE_MULTILINE) | |
291a8f20 RR |
558 | { |
559 | /* seems to be broken in GTK 1.0.X: | |
3358d36e VZ |
560 | gtk_text_set_point( GTK_TEXT(m_text), (int)pos ); */ |
561 | ||
291a8f20 RR |
562 | gtk_signal_disconnect_by_func( GTK_OBJECT(m_text), |
563 | GTK_SIGNAL_FUNC(gtk_text_changed_callback), (gpointer)this); | |
3358d36e | 564 | |
291a8f20 | 565 | /* we fake a set_point by inserting and deleting. as the user |
3358d36e VZ |
566 | isn't supposed to get to know about thos non-sense, we |
567 | disconnect so that no events are sent to the user program. */ | |
568 | ||
291a8f20 RR |
569 | gint tmp = (gint)pos; |
570 | gtk_editable_insert_text( GTK_EDITABLE(m_text), " ", 1, &tmp ); | |
3358d36e VZ |
571 | gtk_editable_delete_text( GTK_EDITABLE(m_text), tmp-1, tmp ); |
572 | ||
291a8f20 RR |
573 | gtk_signal_connect( GTK_OBJECT(m_text), "changed", |
574 | GTK_SIGNAL_FUNC(gtk_text_changed_callback), (gpointer)this); | |
3358d36e VZ |
575 | |
576 | /* bring editable's cursor uptodate. another bug in GTK. */ | |
577 | ||
578 | GTK_EDITABLE(m_text)->current_pos = gtk_text_get_point( GTK_TEXT(m_text) ); | |
ac0d36b5 | 579 | } |
2830bf19 | 580 | else |
291a8f20 | 581 | { |
d59051dd | 582 | gtk_entry_set_position( GTK_ENTRY(m_text), (int)pos ); |
3358d36e VZ |
583 | |
584 | /* bring editable's cursor uptodate. bug in GTK. */ | |
585 | ||
b02da6b1 | 586 | GTK_EDITABLE(m_text)->current_pos = (guint32)pos; |
291a8f20 | 587 | } |
6de97a3b | 588 | } |
c801d85f | 589 | |
03f38c58 | 590 | void wxTextCtrl::SetInsertionPointEnd() |
c801d85f | 591 | { |
223d09f6 | 592 | wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") ); |
8bbe427f | 593 | |
d59051dd VZ |
594 | if (m_windowStyle & wxTE_MULTILINE) |
595 | SetInsertionPoint(gtk_text_get_length(GTK_TEXT(m_text))); | |
596 | else | |
597 | gtk_entry_set_position( GTK_ENTRY(m_text), -1 ); | |
6de97a3b | 598 | } |
c801d85f | 599 | |
debe6624 | 600 | void wxTextCtrl::SetEditable( bool editable ) |
c801d85f | 601 | { |
223d09f6 | 602 | wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") ); |
8bbe427f | 603 | |
2830bf19 RR |
604 | if (m_windowStyle & wxTE_MULTILINE) |
605 | gtk_text_set_editable( GTK_TEXT(m_text), editable ); | |
606 | else | |
607 | gtk_entry_set_editable( GTK_ENTRY(m_text), editable ); | |
6de97a3b | 608 | } |
c801d85f | 609 | |
0efe5ba7 VZ |
610 | void wxTextCtrl::DiscardEdits() |
611 | { | |
612 | m_modified = FALSE; | |
613 | } | |
614 | ||
debe6624 | 615 | void wxTextCtrl::SetSelection( long from, long to ) |
c801d85f | 616 | { |
223d09f6 | 617 | wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") ); |
8bbe427f | 618 | |
2830bf19 | 619 | gtk_editable_select_region( GTK_EDITABLE(m_text), (gint)from, (gint)to ); |
6de97a3b | 620 | } |
c801d85f | 621 | |
910f1f8c | 622 | void wxTextCtrl::ShowPosition( long WXUNUSED(pos) ) |
c801d85f | 623 | { |
910f1f8c | 624 | // SetInsertionPoint( pos ); |
6de97a3b | 625 | } |
c801d85f | 626 | |
03f38c58 | 627 | long wxTextCtrl::GetInsertionPoint() const |
c801d85f | 628 | { |
223d09f6 | 629 | wxCHECK_MSG( m_text != NULL, 0, wxT("invalid text ctrl") ); |
8bbe427f | 630 | |
2830bf19 | 631 | return (long) GTK_EDITABLE(m_text)->current_pos; |
6de97a3b | 632 | } |
c801d85f | 633 | |
03f38c58 | 634 | long wxTextCtrl::GetLastPosition() const |
c801d85f | 635 | { |
223d09f6 | 636 | wxCHECK_MSG( m_text != NULL, 0, wxT("invalid text ctrl") ); |
8bbe427f | 637 | |
2830bf19 RR |
638 | int pos = 0; |
639 | if (m_windowStyle & wxTE_MULTILINE) | |
640 | pos = gtk_text_get_length( GTK_TEXT(m_text) ); | |
641 | else | |
642 | pos = GTK_ENTRY(m_text)->text_length; | |
805dd538 | 643 | |
ac0d36b5 | 644 | return (long)pos; |
6de97a3b | 645 | } |
c801d85f | 646 | |
debe6624 | 647 | void wxTextCtrl::Remove( long from, long to ) |
c801d85f | 648 | { |
223d09f6 | 649 | wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") ); |
8bbe427f | 650 | |
2830bf19 | 651 | gtk_editable_delete_text( GTK_EDITABLE(m_text), (gint)from, (gint)to ); |
6de97a3b | 652 | } |
c801d85f | 653 | |
debe6624 | 654 | void wxTextCtrl::Replace( long from, long to, const wxString &value ) |
c801d85f | 655 | { |
223d09f6 | 656 | wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") ); |
8bbe427f | 657 | |
2830bf19 | 658 | gtk_editable_delete_text( GTK_EDITABLE(m_text), (gint)from, (gint)to ); |
bb69661b | 659 | |
2df7be7f RR |
660 | if (!value.IsEmpty()) |
661 | { | |
662 | gint pos = (gint)from; | |
05939a81 | 663 | #if wxUSE_UNICODE |
2df7be7f RR |
664 | wxWX2MBbuf buf = value.mbc_str(); |
665 | gtk_editable_insert_text( GTK_EDITABLE(m_text), buf, strlen(buf), &pos ); | |
05939a81 | 666 | #else |
2df7be7f | 667 | gtk_editable_insert_text( GTK_EDITABLE(m_text), value, value.Length(), &pos ); |
05939a81 | 668 | #endif |
2df7be7f | 669 | } |
6de97a3b | 670 | } |
c801d85f | 671 | |
03f38c58 | 672 | void wxTextCtrl::Cut() |
c801d85f | 673 | { |
223d09f6 | 674 | wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") ); |
8bbe427f | 675 | |
d345e841 | 676 | #if (GTK_MINOR_VERSION > 0) |
2830bf19 | 677 | gtk_editable_cut_clipboard( GTK_EDITABLE(m_text) ); |
75ed1d15 | 678 | #else |
2830bf19 | 679 | gtk_editable_cut_clipboard( GTK_EDITABLE(m_text), 0 ); |
75ed1d15 | 680 | #endif |
6de97a3b | 681 | } |
c801d85f | 682 | |
03f38c58 | 683 | void wxTextCtrl::Copy() |
c801d85f | 684 | { |
223d09f6 | 685 | wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") ); |
8bbe427f | 686 | |
d345e841 | 687 | #if (GTK_MINOR_VERSION > 0) |
2830bf19 | 688 | gtk_editable_copy_clipboard( GTK_EDITABLE(m_text) ); |
75ed1d15 | 689 | #else |
2830bf19 | 690 | gtk_editable_copy_clipboard( GTK_EDITABLE(m_text), 0 ); |
75ed1d15 | 691 | #endif |
6de97a3b | 692 | } |
c801d85f | 693 | |
03f38c58 | 694 | void wxTextCtrl::Paste() |
c801d85f | 695 | { |
223d09f6 | 696 | wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") ); |
8bbe427f | 697 | |
d345e841 | 698 | #if (GTK_MINOR_VERSION > 0) |
2830bf19 | 699 | gtk_editable_paste_clipboard( GTK_EDITABLE(m_text) ); |
75ed1d15 | 700 | #else |
2830bf19 | 701 | gtk_editable_paste_clipboard( GTK_EDITABLE(m_text), 0 ); |
75ed1d15 | 702 | #endif |
6de97a3b | 703 | } |
c801d85f | 704 | |
ca8b28f2 JS |
705 | bool wxTextCtrl::CanCopy() const |
706 | { | |
707 | // Can copy if there's a selection | |
708 | long from, to; | |
709 | GetSelection(& from, & to); | |
710 | return (from != to) ; | |
711 | } | |
712 | ||
713 | bool wxTextCtrl::CanCut() const | |
714 | { | |
715 | // Can cut if there's a selection | |
716 | long from, to; | |
717 | GetSelection(& from, & to); | |
718 | return (from != to) ; | |
719 | } | |
720 | ||
721 | bool wxTextCtrl::CanPaste() const | |
722 | { | |
723 | return IsEditable() ; | |
724 | } | |
725 | ||
726 | // Undo/redo | |
727 | void wxTextCtrl::Undo() | |
728 | { | |
729 | // TODO | |
223d09f6 | 730 | wxFAIL_MSG( wxT("wxTextCtrl::Undo not implemented") ); |
ca8b28f2 JS |
731 | } |
732 | ||
733 | void wxTextCtrl::Redo() | |
734 | { | |
735 | // TODO | |
223d09f6 | 736 | wxFAIL_MSG( wxT("wxTextCtrl::Redo not implemented") ); |
ca8b28f2 JS |
737 | } |
738 | ||
739 | bool wxTextCtrl::CanUndo() const | |
740 | { | |
741 | // TODO | |
223d09f6 | 742 | wxFAIL_MSG( wxT("wxTextCtrl::CanUndo not implemented") ); |
ca8b28f2 JS |
743 | return FALSE; |
744 | } | |
745 | ||
746 | bool wxTextCtrl::CanRedo() const | |
747 | { | |
748 | // TODO | |
223d09f6 | 749 | wxFAIL_MSG( wxT("wxTextCtrl::CanRedo not implemented") ); |
ca8b28f2 JS |
750 | return FALSE; |
751 | } | |
752 | ||
753 | // If the return values from and to are the same, there is no | |
754 | // selection. | |
755 | void wxTextCtrl::GetSelection(long* from, long* to) const | |
756 | { | |
223d09f6 | 757 | wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") ); |
bb69661b | 758 | |
05060eeb RR |
759 | if (!(GTK_EDITABLE(m_text)->has_selection)) |
760 | { | |
761 | if (from) *from = 0; | |
bb69661b VZ |
762 | if (to) *to = 0; |
763 | return; | |
05060eeb | 764 | } |
bb69661b | 765 | |
05060eeb RR |
766 | if (from) *from = (long) GTK_EDITABLE(m_text)->selection_start_pos; |
767 | if (to) *to = (long) GTK_EDITABLE(m_text)->selection_end_pos; | |
ca8b28f2 JS |
768 | } |
769 | ||
770 | bool wxTextCtrl::IsEditable() const | |
771 | { | |
223d09f6 | 772 | wxCHECK_MSG( m_text != NULL, FALSE, wxT("invalid text ctrl") ); |
05060eeb RR |
773 | |
774 | return GTK_EDITABLE(m_text)->editable; | |
ca8b28f2 JS |
775 | } |
776 | ||
0efe5ba7 VZ |
777 | bool wxTextCtrl::IsModified() const |
778 | { | |
779 | return m_modified; | |
780 | } | |
781 | ||
03f38c58 | 782 | void wxTextCtrl::Clear() |
c801d85f | 783 | { |
223d09f6 | 784 | SetValue( wxT("") ); |
6de97a3b | 785 | } |
c801d85f | 786 | |
903f689b | 787 | void wxTextCtrl::OnChar( wxKeyEvent &key_event ) |
c801d85f | 788 | { |
223d09f6 | 789 | wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") ); |
805dd538 | 790 | |
2830bf19 RR |
791 | if ((key_event.KeyCode() == WXK_RETURN) && (m_windowStyle & wxPROCESS_ENTER)) |
792 | { | |
793 | wxCommandEvent event(wxEVT_COMMAND_TEXT_ENTER, m_windowId); | |
794 | event.SetEventObject(this); | |
795 | if (GetEventHandler()->ProcessEvent(event)) return; | |
796 | } | |
903f689b | 797 | |
da048e3d RR |
798 | if ((key_event.KeyCode() == WXK_RETURN) && !(m_windowStyle & wxTE_MULTILINE)) |
799 | { | |
800 | wxWindow *top_frame = m_parent; | |
8487f887 | 801 | while (top_frame->GetParent() && !(top_frame->IsTopLevel())) |
da048e3d | 802 | top_frame = top_frame->GetParent(); |
13111b2a VZ |
803 | GtkWindow *window = GTK_WINDOW(top_frame->m_widget); |
804 | ||
805 | if (window->default_widget) | |
da048e3d RR |
806 | { |
807 | gtk_widget_activate (window->default_widget); | |
13111b2a VZ |
808 | return; |
809 | } | |
da048e3d RR |
810 | } |
811 | ||
2830bf19 | 812 | key_event.Skip(); |
6de97a3b | 813 | } |
c801d85f | 814 | |
03f38c58 | 815 | GtkWidget* wxTextCtrl::GetConnectWidget() |
e3e65dac | 816 | { |
ae0bdb01 | 817 | return GTK_WIDGET(m_text); |
6de97a3b | 818 | } |
e3e65dac | 819 | |
903f689b RR |
820 | bool wxTextCtrl::IsOwnGtkWindow( GdkWindow *window ) |
821 | { | |
ae0bdb01 RR |
822 | if (m_windowStyle & wxTE_MULTILINE) |
823 | return (window == GTK_TEXT(m_text)->text_area); | |
824 | else | |
825 | return (window == GTK_ENTRY(m_text)->text_area); | |
903f689b | 826 | } |
e3e65dac | 827 | |
bb69661b VZ |
828 | // the font will change for subsequent text insertiongs |
829 | bool wxTextCtrl::SetFont( const wxFont &font ) | |
868a2826 | 830 | { |
223d09f6 | 831 | wxCHECK_MSG( m_text != NULL, FALSE, wxT("invalid text ctrl") ); |
8bbe427f | 832 | |
bb69661b VZ |
833 | if ( !wxWindowBase::SetFont(font) ) |
834 | { | |
835 | // font didn't change, nothing to do | |
836 | return FALSE; | |
837 | } | |
838 | ||
839 | if ( m_windowStyle & wxTE_MULTILINE ) | |
840 | { | |
841 | // for compatibility with other ports: the font is a global controls | |
842 | // characteristic, so change the font globally | |
843 | wxString value = GetValue(); | |
844 | if ( !value.IsEmpty() ) | |
845 | { | |
846 | Clear(); | |
847 | ||
848 | AppendText(value); | |
849 | } | |
850 | } | |
851 | ||
852 | return TRUE; | |
58614078 RR |
853 | } |
854 | ||
f03fc89f | 855 | bool wxTextCtrl::SetForegroundColour( const wxColour &WXUNUSED(colour) ) |
58614078 | 856 | { |
223d09f6 | 857 | wxCHECK_MSG( m_text != NULL, FALSE, wxT("invalid text ctrl") ); |
8bbe427f | 858 | |
ae0bdb01 | 859 | // doesn't work |
f03fc89f | 860 | return FALSE; |
868a2826 | 861 | } |
e3e65dac | 862 | |
f03fc89f | 863 | bool wxTextCtrl::SetBackgroundColour( const wxColour &colour ) |
68dda785 | 864 | { |
223d09f6 | 865 | wxCHECK_MSG( m_text != NULL, FALSE, wxT("invalid text ctrl") ); |
a81258be | 866 | |
ae0bdb01 | 867 | wxControl::SetBackgroundColour( colour ); |
3358d36e | 868 | |
f03fc89f VZ |
869 | if (!m_widget->window) |
870 | return FALSE; | |
8bbe427f | 871 | |
ae0bdb01 | 872 | wxColour sysbg = wxSystemSettings::GetSystemColour( wxSYS_COLOUR_BTNFACE ); |
805dd538 VZ |
873 | if (sysbg.Red() == colour.Red() && |
874 | sysbg.Green() == colour.Green() && | |
ae0bdb01 RR |
875 | sysbg.Blue() == colour.Blue()) |
876 | { | |
f03fc89f | 877 | return FALSE; // FIXME or TRUE? |
805dd538 VZ |
878 | } |
879 | ||
f03fc89f VZ |
880 | if (!m_backgroundColour.Ok()) |
881 | return FALSE; | |
8bbe427f | 882 | |
ae0bdb01 RR |
883 | if (m_windowStyle & wxTE_MULTILINE) |
884 | { | |
885 | GdkWindow *window = GTK_TEXT(m_text)->text_area; | |
f03fc89f VZ |
886 | if (!window) |
887 | return FALSE; | |
ae0bdb01 RR |
888 | m_backgroundColour.CalcPixel( gdk_window_get_colormap( window ) ); |
889 | gdk_window_set_background( window, m_backgroundColour.GetColor() ); | |
890 | gdk_window_clear( window ); | |
891 | } | |
f03fc89f VZ |
892 | |
893 | return TRUE; | |
58614078 RR |
894 | } |
895 | ||
896 | void wxTextCtrl::ApplyWidgetStyle() | |
897 | { | |
ae0bdb01 RR |
898 | if (m_windowStyle & wxTE_MULTILINE) |
899 | { | |
2830bf19 | 900 | // how ? |
805dd538 | 901 | } |
ae0bdb01 RR |
902 | else |
903 | { | |
904 | SetWidgetStyle(); | |
905 | gtk_widget_set_style( m_text, m_widgetStyle ); | |
906 | } | |
68dda785 | 907 | } |
f96aa4d9 | 908 | |
e702ff0f JS |
909 | void wxTextCtrl::OnCut(wxCommandEvent& WXUNUSED(event)) |
910 | { | |
911 | Cut(); | |
912 | } | |
913 | ||
914 | void wxTextCtrl::OnCopy(wxCommandEvent& WXUNUSED(event)) | |
915 | { | |
916 | Copy(); | |
917 | } | |
918 | ||
919 | void wxTextCtrl::OnPaste(wxCommandEvent& WXUNUSED(event)) | |
920 | { | |
921 | Paste(); | |
922 | } | |
923 | ||
924 | void wxTextCtrl::OnUndo(wxCommandEvent& WXUNUSED(event)) | |
925 | { | |
926 | Undo(); | |
927 | } | |
928 | ||
929 | void wxTextCtrl::OnRedo(wxCommandEvent& WXUNUSED(event)) | |
930 | { | |
931 | Redo(); | |
932 | } | |
933 | ||
934 | void wxTextCtrl::OnUpdateCut(wxUpdateUIEvent& event) | |
935 | { | |
936 | event.Enable( CanCut() ); | |
937 | } | |
938 | ||
939 | void wxTextCtrl::OnUpdateCopy(wxUpdateUIEvent& event) | |
940 | { | |
941 | event.Enable( CanCopy() ); | |
942 | } | |
943 | ||
944 | void wxTextCtrl::OnUpdatePaste(wxUpdateUIEvent& event) | |
945 | { | |
946 | event.Enable( CanPaste() ); | |
947 | } | |
948 | ||
949 | void wxTextCtrl::OnUpdateUndo(wxUpdateUIEvent& event) | |
950 | { | |
951 | event.Enable( CanUndo() ); | |
952 | } | |
953 | ||
954 | void wxTextCtrl::OnUpdateRedo(wxUpdateUIEvent& event) | |
955 | { | |
956 | event.Enable( CanRedo() ); | |
957 | } | |
65045edd RR |
958 | |
959 | void wxTextCtrl::OnInternalIdle() | |
960 | { | |
961 | wxCursor cursor = m_cursor; | |
962 | if (g_globalCursor.Ok()) cursor = g_globalCursor; | |
963 | ||
307f16e8 | 964 | if (cursor.Ok()) |
65045edd | 965 | { |
65045edd | 966 | GdkWindow *window = (GdkWindow*) NULL; |
13111b2a | 967 | if (HasFlag(wxTE_MULTILINE)) |
65045edd RR |
968 | window = GTK_TEXT(m_text)->text_area; |
969 | else | |
970 | window = GTK_ENTRY(m_text)->text_area; | |
13111b2a | 971 | |
65045edd RR |
972 | if (window) |
973 | gdk_window_set_cursor( window, cursor.GetCursor() ); | |
974 | ||
975 | if (!g_globalCursor.Ok()) | |
976 | cursor = *wxSTANDARD_CURSOR; | |
977 | ||
978 | window = m_widget->window; | |
247e5b16 | 979 | if ((window) && !(GTK_WIDGET_NO_WINDOW(m_widget))) |
65045edd RR |
980 | gdk_window_set_cursor( window, cursor.GetCursor() ); |
981 | } | |
26bf1ce0 VZ |
982 | |
983 | UpdateWindowUI(); | |
65045edd | 984 | } |
f68586e5 VZ |
985 | |
986 | wxSize wxTextCtrl::DoGetBestSize() const | |
987 | { | |
988 | // FIXME should be different for multi-line controls... | |
0279e844 RR |
989 | wxSize ret( wxControl::DoGetBestSize() ); |
990 | return wxSize(80, ret.y); | |
f68586e5 | 991 | } |