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