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