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