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