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