implemented Remove() and Replace() for GTK2 (patch 705051 from Nerijus)
[wxWidgets.git] / src / gtk1 / textctrl.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: textctrl.cpp
3 // Purpose:
4 // Author: Robert Roebling
5 // Id: $Id$
6 // Copyright: (c) 1998 Robert Roebling, Vadim Zeitlin
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
9
10 #ifdef __GNUG__
11 #pragma implementation "textctrl.h"
12 #endif
13
14 #include "wx/textctrl.h"
15 #include "wx/utils.h"
16 #include "wx/intl.h"
17 #include "wx/log.h"
18 #include "wx/settings.h"
19 #include "wx/panel.h"
20 #include "wx/strconv.h"
21 #include "wx/fontutil.h" // for wxNativeFontInfo (GetNativeFontInfo())
22
23 #include <sys/types.h>
24 #include <sys/stat.h>
25 #include <ctype.h>
26 #include <math.h> // for fabs
27
28 #include "wx/gtk/private.h"
29 #include <gdk/gdkkeysyms.h>
30
31 //-----------------------------------------------------------------------------
32 // idle system
33 //-----------------------------------------------------------------------------
34
35 extern void wxapp_install_idle_handler();
36 extern bool g_isIdle;
37
38 //-----------------------------------------------------------------------------
39 // data
40 //-----------------------------------------------------------------------------
41
42 extern bool g_blockEventsOnDrag;
43 extern wxCursor g_globalCursor;
44 extern wxWindowGTK *g_delayedFocus;
45
46 // ----------------------------------------------------------------------------
47 // helpers
48 // ----------------------------------------------------------------------------
49
50 #ifdef __WXGTK20__
51 static 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
92 static 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 }
109 #endif // GTK 1.x
110
111 // ----------------------------------------------------------------------------
112 // "insert_text" for GtkEntry
113 // ----------------------------------------------------------------------------
114
115 static void
116 gtk_insert_text_callback(GtkEditable *editable,
117 const gchar *new_text,
118 gint new_text_length,
119 gint *position,
120 wxTextCtrl *win)
121 {
122 if (g_isIdle)
123 wxapp_install_idle_handler();
124
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
151 //-----------------------------------------------------------------------------
152 // "changed"
153 //-----------------------------------------------------------------------------
154
155 static void
156 gtk_text_changed_callback( GtkWidget *widget, wxTextCtrl *win )
157 {
158 if ( win->IgnoreTextUpdate() )
159 return;
160
161 if (!win->m_hasVMT) return;
162
163 if (g_isIdle)
164 wxapp_install_idle_handler();
165
166 win->SetModified();
167 win->UpdateFontIfNeeded();
168
169 wxCommandEvent event( wxEVT_COMMAND_TEXT_UPDATED, win->GetId() );
170 event.SetEventObject( win );
171 event.SetString( win->GetValue() );
172 win->GetEventHandler()->ProcessEvent( event );
173 }
174
175 //-----------------------------------------------------------------------------
176 // "changed" from vertical scrollbar
177 //-----------------------------------------------------------------------------
178
179 #ifndef __WXGTK20__
180 static void
181 gtk_scrollbar_changed_callback( GtkWidget *WXUNUSED(widget), wxTextCtrl *win )
182 {
183 if (!win->m_hasVMT) return;
184
185 if (g_isIdle)
186 wxapp_install_idle_handler();
187
188 win->CalculateScrollbar();
189 }
190 #endif
191
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
203 extern bool wxIsInsideYield;
204
205 extern "C" {
206 typedef void (*GtkDrawCallback)(GtkWidget *widget, GdkRectangle *rect);
207 }
208
209 static GtkDrawCallback gs_gtk_text_draw = NULL;
210
211 extern "C"
212 void 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
225 //-----------------------------------------------------------------------------
226 // wxTextCtrl
227 //-----------------------------------------------------------------------------
228
229 IMPLEMENT_DYNAMIC_CLASS(wxTextCtrl,wxControl)
230
231 BEGIN_EVENT_TABLE(wxTextCtrl, wxControl)
232 EVT_CHAR(wxTextCtrl::OnChar)
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)
245 END_EVENT_TABLE()
246
247 void wxTextCtrl::Init()
248 {
249 m_ignoreNextUpdate =
250 m_modified = FALSE;
251 m_updateFont = FALSE;
252 m_text =
253 m_vScrollbar = (GtkWidget *)NULL;
254 }
255
256 wxTextCtrl::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 )
264 {
265 Init();
266
267 Create( parent, id, value, pos, size, style, validator, name );
268 }
269
270 bool 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 )
278 {
279 m_needParent = TRUE;
280 m_acceptsFocus = TRUE;
281
282 if (!PreCreation( parent, pos, size ) ||
283 !CreateBase( parent, id, pos, size, style, validator, name ))
284 {
285 wxFAIL_MSG( wxT("wxTextCtrl creation failed") );
286 return FALSE;
287 }
288
289
290 m_vScrollbarVisible = FALSE;
291
292 bool multi_line = (style & wxTE_MULTILINE) != 0;
293
294 #ifdef __WXGTK20__
295 GtkTextBuffer *buffer = NULL;
296 #endif
297
298 if (multi_line)
299 {
300 #ifdef __WXGTK20__
301 // Create view
302 m_text = gtk_text_view_new();
303
304 buffer = gtk_text_view_get_buffer( GTK_TEXT_VIEW(m_text) );
305
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 );
310
311 // Insert view into scrolled window
312 gtk_container_add( GTK_CONTAINER(m_widget), m_text );
313
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 );
319
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 ...
324 m_text = gtk_text_new( (GtkAdjustment *) NULL, (GtkAdjustment *) NULL );
325
326 // ... and put into the upper left hand corner of the table
327 bool bHasHScrollbar = FALSE;
328 m_widget = gtk_table_new(bHasHScrollbar ? 2 : 1, 2, FALSE);
329 GTK_WIDGET_UNSET_FLAGS( m_widget, GTK_CAN_FOCUS );
330 gtk_table_attach( GTK_TABLE(m_widget), m_text, 0, 1, 0, 1,
331 (GtkAttachOptions)(GTK_FILL | GTK_EXPAND | GTK_SHRINK),
332 (GtkAttachOptions)(GTK_FILL | GTK_EXPAND | GTK_SHRINK),
333 0, 0);
334
335 // always wrap words
336 gtk_text_set_word_wrap( GTK_TEXT(m_text), TRUE );
337
338 // finally, put the vertical scrollbar in the upper right corner
339 m_vScrollbar = gtk_vscrollbar_new( GTK_TEXT(m_text)->vadj );
340 GTK_WIDGET_UNSET_FLAGS( m_vScrollbar, GTK_CAN_FOCUS );
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);
345 #endif
346 }
347 else
348 {
349 // a single-line text control: no need for scrollbars
350 m_widget =
351 m_text = gtk_entry_new();
352 }
353
354 m_parent->DoAddChild( this );
355
356 m_focusWidget = m_text;
357
358 PostCreation();
359
360 SetFont( parent->GetFont() );
361
362 wxSize size_best( DoGetBestSize() );
363 wxSize new_size( size );
364 if (new_size.x == -1)
365 new_size.x = size_best.x;
366 if (new_size.y == -1)
367 new_size.y = size_best.y;
368 if ((new_size.x != size.x) || (new_size.y != size.y))
369 SetSize( new_size.x, new_size.y );
370
371 if (multi_line)
372 gtk_widget_show(m_text);
373
374 #ifndef __WXGTK20__
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 );
379
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 }
391 }
392 #endif // GTK+ 1.x
393
394 if (!value.IsEmpty())
395 {
396 #ifdef __WXGTK20__
397 SetValue( value );
398 #else
399
400 #if !GTK_CHECK_VERSION(1, 2, 0)
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
406 gint tmp = 0;
407 #if wxUSE_UNICODE
408 wxWX2MBbuf val = value.mbc_str();
409 gtk_editable_insert_text( GTK_EDITABLE(m_text), val, strlen(val), &tmp );
410 #else
411 gtk_editable_insert_text( GTK_EDITABLE(m_text), value, value.Length(), &tmp );
412 #endif
413
414 if (multi_line)
415 {
416 // Bring editable's cursor uptodate. Bug in GTK.
417 SET_EDITABLE_POS(m_text, gtk_text_get_point( GTK_TEXT(m_text) ));
418 }
419
420 #endif
421 }
422
423 if (style & wxTE_PASSWORD)
424 {
425 if (!multi_line)
426 gtk_entry_set_visibility( GTK_ENTRY(m_text), FALSE );
427 }
428
429 if (style & wxTE_READONLY)
430 {
431 if (!multi_line)
432 gtk_entry_set_editable( GTK_ENTRY(m_text), FALSE );
433 #ifdef __WXGTK20__
434 else
435 gtk_text_view_set_editable( GTK_TEXT_VIEW( m_text), FALSE);
436 }
437 #else
438 }
439 else
440 {
441 if (multi_line)
442 gtk_text_set_editable( GTK_TEXT(m_text), 1 );
443 }
444 #endif
445
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 {
456 gtk_signal_connect( GTK_OBJECT(m_text), "changed",
457 GTK_SIGNAL_FUNC(gtk_text_changed_callback), (gpointer)this);
458 }
459
460 // we don't set a valid background colour, because the window
461 // manager should use a default one
462 m_backgroundColour = wxColour();
463
464 wxColour colFg = parent->GetForegroundColour();
465 SetForegroundColour( colFg );
466
467 m_cursor = wxCursor( wxCURSOR_IBEAM );
468
469 wxTextAttr attrDef( colFg, m_backgroundColour, parent->GetFont() );
470 SetDefaultStyle( attrDef );
471
472 Show( TRUE );
473
474 return TRUE;
475 }
476
477 void wxTextCtrl::CalculateScrollbar()
478 {
479 #ifndef __WXGTK20__
480 if ((m_windowStyle & wxTE_MULTILINE) == 0) return;
481
482 GtkAdjustment *adj = GTK_TEXT(m_text)->vadj;
483
484 if (adj->upper - adj->page_size < 0.8)
485 {
486 if (m_vScrollbarVisible)
487 {
488 gtk_widget_hide( m_vScrollbar );
489 m_vScrollbarVisible = FALSE;
490 }
491 }
492 else
493 {
494 if (!m_vScrollbarVisible)
495 {
496 gtk_widget_show( m_vScrollbar );
497 m_vScrollbarVisible = TRUE;
498 }
499 }
500 #endif
501 }
502
503 wxString wxTextCtrl::GetValue() const
504 {
505 wxCHECK_MSG( m_text != NULL, wxT(""), wxT("invalid text ctrl") );
506
507 wxString tmp;
508 if (m_windowStyle & wxTE_MULTILINE)
509 {
510 #ifdef __WXGTK20__
511 GtkTextBuffer *text_buffer = gtk_text_view_get_buffer( GTK_TEXT_VIEW(m_text) );
512
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 );
518
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;
525
526 g_free( text );
527 #else
528 gint len = gtk_text_get_length( GTK_TEXT(m_text) );
529 char *text = gtk_editable_get_chars( GTK_EDITABLE(m_text), 0, len );
530 tmp = text;
531 g_free( text );
532 #endif
533 }
534 else
535 {
536 tmp = wxGTK_CONV_BACK( gtk_entry_get_text( GTK_ENTRY(m_text) ) );
537 }
538
539 return tmp;
540 }
541
542 void wxTextCtrl::SetValue( const wxString &value )
543 {
544 wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") );
545
546 if (m_windowStyle & wxTE_MULTILINE)
547 {
548 #ifdef __WXGTK20__
549
550 #if wxUSE_UNICODE
551 wxCharBuffer buffer( wxConvUTF8.cWX2MB( value) );
552 #else
553 wxCharBuffer buffer( wxConvUTF8.cWC2MB( wxConvLocal.cWX2WC( value ) ) );
554 #endif
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) );
557
558 #else
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;
562 gtk_editable_insert_text( GTK_EDITABLE(m_text), value.mbc_str(), value.Length(), &len );
563 #endif
564 }
565 else
566 {
567 gtk_entry_set_text( GTK_ENTRY(m_text), wxGTK_CONV( value ) );
568 }
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);
574
575 m_modified = FALSE;
576 }
577
578 void wxTextCtrl::WriteText( const wxString &text )
579 {
580 wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") );
581
582 if ( text.empty() )
583 return;
584
585 if ( m_windowStyle & wxTE_MULTILINE )
586 {
587 #ifdef __WXGTK20__
588
589 #if wxUSE_UNICODE
590 wxCharBuffer buffer( wxConvUTF8.cWX2MB( text ) );
591 #else
592 wxCharBuffer buffer( wxConvUTF8.cWC2MB( wxConvLocal.cWX2WC( text ) ) );
593 #endif
594 GtkTextBuffer *text_buffer = gtk_text_view_get_buffer( GTK_TEXT_VIEW(m_text) );
595
596 // TODO: Call whatever is needed to delete the selection.
597 wxGtkTextInsert( m_text, text_buffer, m_defaultStyle, buffer );
598
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 );
603 #else // GTK 1.x
604 // After cursor movements, gtk_text_get_point() is wrong by one.
605 gtk_text_set_point( GTK_TEXT(m_text), GET_EDITABLE_POS(m_text) );
606
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
610 gtk_editable_delete_selection( GTK_EDITABLE(m_text) );
611 wxGtkTextInsert(m_text, m_defaultStyle, text.c_str(), text.Len());
612
613 // Bring editable's cursor back uptodate.
614 SET_EDITABLE_POS(m_text, gtk_text_get_point( GTK_TEXT(m_text) ));
615 #endif // GTK 1.x/2.0
616 }
617 else // single line
618 {
619 // First remove the selection if there is one
620 gtk_editable_delete_selection( GTK_EDITABLE(m_text) );
621
622 // This moves the cursor pos to behind the inserted text.
623 gint len = GET_EDITABLE_POS(m_text);
624
625 #ifdef __WXGTK20__
626
627 #if wxUSE_UNICODE
628 wxCharBuffer buffer( wxConvUTF8.cWX2MB( text ) );
629 #else
630 wxCharBuffer buffer( wxConvUTF8.cWC2MB( wxConvLocal.cWX2WC( text ) ) );
631 #endif
632 gtk_editable_insert_text( GTK_EDITABLE(m_text), buffer, strlen(buffer), &len );
633
634 #else
635 gtk_editable_insert_text( GTK_EDITABLE(m_text), text.c_str(), text.Len(), &len );
636 #endif
637
638 // Bring entry's cursor uptodate.
639 gtk_entry_set_position( GTK_ENTRY(m_text), len );
640 }
641
642 m_modified = TRUE;
643 }
644
645 void wxTextCtrl::AppendText( const wxString &text )
646 {
647 SetInsertionPointEnd();
648 WriteText( text );
649 }
650
651 wxString wxTextCtrl::GetLineText( long lineNo ) const
652 {
653 if (m_windowStyle & wxTE_MULTILINE)
654 {
655 #ifndef __WXGTK20__
656 gint len = gtk_text_get_length( GTK_TEXT(m_text) );
657 char *text = gtk_editable_get_chars( GTK_EDITABLE(m_text), 0, len );
658
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];
671
672 g_free( text );
673 return buf;
674 }
675 else
676 #endif
677 {
678 return wxEmptyString;
679 }
680 }
681 else
682 {
683 if (lineNo == 0) return GetValue();
684 return wxEmptyString;
685 }
686 }
687
688 void wxTextCtrl::OnDropFiles( wxDropFilesEvent &WXUNUSED(event) )
689 {
690 /* If you implement this, don't forget to update the documentation!
691 * (file docs/latex/wx/text.tex) */
692 wxFAIL_MSG( wxT("wxTextCtrl::OnDropFiles not implemented") );
693 }
694
695 bool wxTextCtrl::PositionToXY(long pos, long *x, long *y ) const
696 {
697 if ( m_windowStyle & wxTE_MULTILINE )
698 {
699 wxString text = GetValue();
700
701 // cast to prevent warning. But pos really should've been unsigned.
702 if( (unsigned long)pos > text.Len() )
703 return FALSE;
704
705 *x=0; // First Col
706 *y=0; // First Line
707
708 const wxChar* stop = text.c_str() + pos;
709 for ( const wxChar *p = text.c_str(); p < stop; p++ )
710 {
711 if (*p == wxT('\n'))
712 {
713 (*y)++;
714 *x=0;
715 }
716 else
717 (*x)++;
718 }
719 }
720 else // single line control
721 {
722 if ( pos <= GTK_ENTRY(m_text)->text_length )
723 {
724 *y = 0;
725 *x = pos;
726 }
727 else
728 {
729 // index out of bounds
730 return FALSE;
731 }
732 }
733
734 return TRUE;
735 }
736
737 long wxTextCtrl::XYToPosition(long x, long y ) const
738 {
739 if (!(m_windowStyle & wxTE_MULTILINE)) return 0;
740
741 long pos=0;
742 for( int i=0; i<y; i++ ) pos += GetLineLength(i) + 1; // one for '\n'
743
744 pos += x;
745 return pos;
746 }
747
748 int wxTextCtrl::GetLineLength(long lineNo) const
749 {
750 wxString str = GetLineText (lineNo);
751 return (int) str.Length();
752 }
753
754 int wxTextCtrl::GetNumberOfLines() const
755 {
756 if (m_windowStyle & wxTE_MULTILINE)
757 {
758 #ifdef __WXGTK20__
759 GtkTextBuffer *buffer = gtk_text_view_get_buffer( GTK_TEXT_VIEW(m_text) );
760
761 return gtk_text_buffer_get_line_count( buffer );
762 #else
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++ )
770 {
771 if (text[i] == '\n')
772 currentLine++;
773 }
774 g_free( text );
775
776 // currentLine is 0 based, add 1 to get number of lines
777 return currentLine + 1;
778 }
779 else
780 {
781 return 0;
782 }
783 #endif
784 }
785 else
786 {
787 return 1;
788 }
789 }
790
791 void wxTextCtrl::SetInsertionPoint( long pos )
792 {
793 wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") );
794
795 if (m_windowStyle & wxTE_MULTILINE)
796 {
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
803 gtk_signal_disconnect_by_func( GTK_OBJECT(m_text),
804 GTK_SIGNAL_FUNC(gtk_text_changed_callback), (gpointer)this);
805
806 /* we fake a set_point by inserting and deleting. as the user
807 isn't supposed to get to know about this non-sense, we
808 disconnect so that no events are sent to the user program. */
809
810 gint tmp = (gint)pos;
811 gtk_editable_insert_text( GTK_EDITABLE(m_text), " ", 1, &tmp );
812 gtk_editable_delete_text( GTK_EDITABLE(m_text), tmp-1, tmp );
813
814 gtk_signal_connect( GTK_OBJECT(m_text), "changed",
815 GTK_SIGNAL_FUNC(gtk_text_changed_callback), (gpointer)this);
816
817 // bring editable's cursor uptodate. Bug in GTK.
818 SET_EDITABLE_POS(m_text, gtk_text_get_point( GTK_TEXT(m_text) ));
819 #endif
820 }
821 else
822 {
823 gtk_entry_set_position( GTK_ENTRY(m_text), (int)pos );
824
825 // Bring editable's cursor uptodate. Bug in GTK.
826 SET_EDITABLE_POS(m_text, (guint32)pos);
827 }
828 }
829
830 void wxTextCtrl::SetInsertionPointEnd()
831 {
832 wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") );
833
834 if (m_windowStyle & wxTE_MULTILINE)
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
842 SetInsertionPoint(gtk_text_get_length(GTK_TEXT(m_text)));
843 #endif
844 }
845 else
846 {
847 gtk_entry_set_position( GTK_ENTRY(m_text), -1 );
848 }
849 }
850
851 void wxTextCtrl::SetEditable( bool editable )
852 {
853 wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") );
854
855 if (m_windowStyle & wxTE_MULTILINE)
856 {
857 #ifdef __WXGTK20__
858 gtk_text_view_set_editable( GTK_TEXT_VIEW(m_text), editable );
859 #else
860 gtk_text_set_editable( GTK_TEXT(m_text), editable );
861 #endif
862 }
863 else
864 {
865 gtk_entry_set_editable( GTK_ENTRY(m_text), editable );
866 }
867 }
868
869 bool wxTextCtrl::Enable( bool enable )
870 {
871 if (!wxWindowBase::Enable(enable))
872 {
873 // nothing to do
874 return FALSE;
875 }
876
877 if (m_windowStyle & wxTE_MULTILINE)
878 {
879 #ifdef __WXGTK20__
880 SetEditable( enable );
881 #else
882 gtk_text_set_editable( GTK_TEXT(m_text), enable );
883 OnParentEnable(enable);
884 #endif
885 }
886 else
887 {
888 gtk_widget_set_sensitive( m_text, enable );
889 }
890
891 return TRUE;
892 }
893
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
897 void 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
914 void wxTextCtrl::DiscardEdits()
915 {
916 m_modified = FALSE;
917 }
918
919 // ----------------------------------------------------------------------------
920 // max text length support
921 // ----------------------------------------------------------------------------
922
923 void wxTextCtrl::IgnoreNextTextUpdate()
924 {
925 m_ignoreNextUpdate = TRUE;
926 }
927
928 bool wxTextCtrl::IgnoreTextUpdate()
929 {
930 if ( m_ignoreNextUpdate )
931 {
932 m_ignoreNextUpdate = FALSE;
933
934 return TRUE;
935 }
936
937 return FALSE;
938 }
939
940 void wxTextCtrl::SetMaxLength(unsigned long len)
941 {
942 if ( !HasFlag(wxTE_MULTILINE) )
943 {
944 gtk_entry_set_max_length(GTK_ENTRY(m_text), len);
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 }
971 }
972 }
973
974 void wxTextCtrl::SetSelection( long from, long to )
975 {
976 wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") );
977
978 if (from == -1 && to == -1)
979 {
980 from = 0;
981 to = GetValue().Length();
982 }
983
984 #ifndef __WXGTK20__
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 }
992 #endif
993
994 if (m_windowStyle & wxTE_MULTILINE)
995 {
996 #ifdef __WXGTK20__
997 // ????
998 #else
999 gtk_editable_select_region( GTK_EDITABLE(m_text), (gint)from, (gint)to );
1000 #endif
1001 }
1002 else
1003 {
1004 gtk_editable_select_region( GTK_EDITABLE(m_text), (gint)from, (gint)to );
1005 }
1006 }
1007
1008 void wxTextCtrl::ShowPosition( long pos )
1009 {
1010 #ifndef __WXGTK20__
1011 if (m_windowStyle & wxTE_MULTILINE)
1012 {
1013 GtkAdjustment *vp = GTK_TEXT(m_text)->vadj;
1014 float totalLines = (float) GetNumberOfLines();
1015 long posX;
1016 long posY;
1017 PositionToXY(pos, &posX, &posY);
1018 float posLine = (float) posY;
1019 float p = (posLine/totalLines)*(vp->upper - vp->lower) + vp->lower;
1020 gtk_adjustment_set_value(GTK_TEXT(m_text)->vadj, p);
1021 }
1022 #endif
1023 }
1024
1025 long wxTextCtrl::GetInsertionPoint() const
1026 {
1027 wxCHECK_MSG( m_text != NULL, 0, wxT("invalid text ctrl") );
1028
1029 #ifdef __WXGTK20__
1030 if (m_windowStyle & wxTE_MULTILINE)
1031 {
1032 GtkTextBuffer *text_buffer = gtk_text_view_get_buffer( GTK_TEXT_VIEW(m_text) );
1033
1034 // There is no direct accessor for the cursor, but
1035 // internally, the cursor is the "mark" called
1036 // "insert" in the text view's btree structure.
1037
1038 GtkTextMark *mark = gtk_text_buffer_get_insert( text_buffer );
1039 GtkTextIter cursor;
1040 gtk_text_buffer_get_iter_at_mark( text_buffer, &cursor, mark );
1041
1042 return gtk_text_iter_get_offset( &cursor );
1043 }
1044 else
1045 #endif
1046 {
1047 return (long) GET_EDITABLE_POS(m_text);
1048 }
1049 }
1050
1051 long wxTextCtrl::GetLastPosition() const
1052 {
1053 wxCHECK_MSG( m_text != NULL, 0, wxT("invalid text ctrl") );
1054
1055 int pos = 0;
1056
1057 if (m_windowStyle & wxTE_MULTILINE)
1058 {
1059 #ifdef __WXGTK20__
1060 GtkTextBuffer *text_buffer = gtk_text_view_get_buffer( GTK_TEXT_VIEW(m_text) );
1061 GtkTextIter end;
1062 gtk_text_buffer_get_end_iter( text_buffer, &end );
1063
1064 pos = gtk_text_iter_get_offset( &end );
1065 #else
1066 pos = gtk_text_get_length( GTK_TEXT(m_text) );
1067 #endif
1068 }
1069 else
1070 {
1071 pos = GTK_ENTRY(m_text)->text_length;
1072 }
1073
1074 return (long)pos;
1075 }
1076
1077 void wxTextCtrl::Remove( long from, long to )
1078 {
1079 wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") );
1080
1081 #ifdef __WXGTK20__
1082 if ( m_windowStyle & wxTE_MULTILINE )
1083 {
1084 GtkTextBuffer *
1085 text_buffer = gtk_text_view_get_buffer( GTK_TEXT_VIEW(m_text) );
1086
1087 GtkTextIter fromi, toi;
1088 gtk_text_buffer_get_iter_at_offset( text_buffer, &fromi, from );
1089 gtk_text_buffer_get_iter_at_offset( text_buffer, &toi, to );
1090
1091 gtk_text_buffer_delete( text_buffer, &fromi, &toi );
1092 }
1093 else // single line
1094 #endif
1095 gtk_editable_delete_text( GTK_EDITABLE(m_text), (gint)from, (gint)to );
1096 }
1097
1098 void wxTextCtrl::Replace( long from, long to, const wxString &value )
1099 {
1100 wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") );
1101
1102 Remove( from, to );
1103
1104 if (!value.IsEmpty())
1105 {
1106 #ifdef __WXGTK20__
1107 SetInsertionPoint( from );
1108 WriteText( value );
1109 #else // GTK 1.x
1110 gint pos = (gint)from;
1111 #if wxUSE_UNICODE
1112 wxWX2MBbuf buf = value.mbc_str();
1113 gtk_editable_insert_text( GTK_EDITABLE(m_text), buf, strlen(buf), &pos );
1114 #else
1115 gtk_editable_insert_text( GTK_EDITABLE(m_text), value, value.Length(), &pos );
1116 #endif // wxUSE_UNICODE
1117 #endif // GTK 1.x/2.x
1118 }
1119 }
1120
1121 void wxTextCtrl::Cut()
1122 {
1123 wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") );
1124
1125 #ifndef __WXGTK20__
1126 gtk_editable_cut_clipboard( GTK_EDITABLE(m_text) DUMMY_CLIPBOARD_ARG );
1127 #endif
1128 }
1129
1130 void wxTextCtrl::Copy()
1131 {
1132 wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") );
1133
1134 #ifndef __WXGTK20__
1135 gtk_editable_copy_clipboard( GTK_EDITABLE(m_text) DUMMY_CLIPBOARD_ARG );
1136 #endif
1137 }
1138
1139 void wxTextCtrl::Paste()
1140 {
1141 wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") );
1142
1143 #ifndef __WXGTK20__
1144 gtk_editable_paste_clipboard( GTK_EDITABLE(m_text) DUMMY_CLIPBOARD_ARG );
1145 #endif
1146 }
1147
1148 // Undo/redo
1149 void wxTextCtrl::Undo()
1150 {
1151 // TODO
1152 wxFAIL_MSG( wxT("wxTextCtrl::Undo not implemented") );
1153 }
1154
1155 void wxTextCtrl::Redo()
1156 {
1157 // TODO
1158 wxFAIL_MSG( wxT("wxTextCtrl::Redo not implemented") );
1159 }
1160
1161 bool wxTextCtrl::CanUndo() const
1162 {
1163 // TODO
1164 //wxFAIL_MSG( wxT("wxTextCtrl::CanUndo not implemented") );
1165 return FALSE;
1166 }
1167
1168 bool wxTextCtrl::CanRedo() const
1169 {
1170 // TODO
1171 //wxFAIL_MSG( wxT("wxTextCtrl::CanRedo not implemented") );
1172 return FALSE;
1173 }
1174
1175 // If the return values from and to are the same, there is no
1176 // selection.
1177 void wxTextCtrl::GetSelection(long* fromOut, long* toOut) const
1178 {
1179 wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") );
1180
1181 gint from, to;
1182 #ifdef __WXGTK20__
1183 if ( !gtk_editable_get_selection_bounds(GTK_EDITABLE(m_text), &from, &to) )
1184 #else
1185 if ( !(GTK_EDITABLE(m_text)->has_selection) )
1186 #endif
1187 {
1188 from =
1189 to = GetInsertionPoint();
1190 }
1191 else // got selection
1192 {
1193 #ifndef __WXGTK20__
1194 from = (long) GTK_EDITABLE(m_text)->selection_start_pos;
1195 to = (long) GTK_EDITABLE(m_text)->selection_end_pos;
1196 #endif
1197
1198 if ( from > to )
1199 {
1200 // exchange them to be compatible with wxMSW
1201 gint tmp = from;
1202 from = to;
1203 to = tmp;
1204 }
1205 }
1206
1207 if ( fromOut )
1208 *fromOut = from;
1209 if ( toOut )
1210 *toOut = to;
1211 }
1212
1213 bool wxTextCtrl::IsEditable() const
1214 {
1215 wxCHECK_MSG( m_text != NULL, FALSE, wxT("invalid text ctrl") );
1216
1217 #ifdef __WXGTK20__
1218 return gtk_editable_get_editable(GTK_EDITABLE(m_text));
1219 #else
1220 return GTK_EDITABLE(m_text)->editable;
1221 #endif
1222 }
1223
1224 bool wxTextCtrl::IsModified() const
1225 {
1226 return m_modified;
1227 }
1228
1229 void wxTextCtrl::Clear()
1230 {
1231 SetValue( wxT("") );
1232 }
1233
1234 void wxTextCtrl::OnChar( wxKeyEvent &key_event )
1235 {
1236 wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") );
1237
1238 if ((key_event.GetKeyCode() == WXK_RETURN) && (m_windowStyle & wxPROCESS_ENTER))
1239 {
1240 wxCommandEvent event(wxEVT_COMMAND_TEXT_ENTER, m_windowId);
1241 event.SetEventObject(this);
1242 event.SetString(GetValue());
1243 if (GetEventHandler()->ProcessEvent(event)) return;
1244 }
1245
1246 if ((key_event.GetKeyCode() == WXK_RETURN) && !(m_windowStyle & wxTE_MULTILINE))
1247 {
1248 // This will invoke the dialog default action, such
1249 // as the clicking the default button.
1250
1251 wxWindow *top_frame = m_parent;
1252 while (top_frame->GetParent() && !(top_frame->IsTopLevel()))
1253 top_frame = top_frame->GetParent();
1254
1255 if (top_frame && GTK_IS_WINDOW(top_frame->m_widget))
1256 {
1257 GtkWindow *window = GTK_WINDOW(top_frame->m_widget);
1258
1259 if (window->default_widget)
1260 {
1261 gtk_widget_activate (window->default_widget);
1262 return;
1263 }
1264 }
1265 }
1266
1267 key_event.Skip();
1268 }
1269
1270 GtkWidget* wxTextCtrl::GetConnectWidget()
1271 {
1272 return GTK_WIDGET(m_text);
1273 }
1274
1275 bool wxTextCtrl::IsOwnGtkWindow( GdkWindow *window )
1276 {
1277 if (m_windowStyle & wxTE_MULTILINE)
1278 {
1279 #ifdef __WXGTK20__
1280 return window == gtk_text_view_get_window( GTK_TEXT_VIEW( m_text ), GTK_TEXT_WINDOW_TEXT ); // pure guesswork
1281 #else
1282 return (window == GTK_TEXT(m_text)->text_area);
1283 #endif
1284 }
1285 else
1286 {
1287 return (window == GTK_ENTRY(m_text)->text_area);
1288 }
1289 }
1290
1291 // the font will change for subsequent text insertiongs
1292 bool wxTextCtrl::SetFont( const wxFont &font )
1293 {
1294 wxCHECK_MSG( m_text != NULL, FALSE, wxT("invalid text ctrl") );
1295
1296 if ( !wxTextCtrlBase::SetFont(font) )
1297 {
1298 // font didn't change, nothing to do
1299 return FALSE;
1300 }
1301
1302 if ( m_windowStyle & wxTE_MULTILINE )
1303 {
1304 m_updateFont = TRUE;
1305
1306 m_defaultStyle.SetFont(font);
1307
1308 ChangeFontGlobally();
1309 }
1310
1311 return TRUE;
1312 }
1313
1314 void wxTextCtrl::ChangeFontGlobally()
1315 {
1316 // this method is very inefficient and hence should be called as rarely as
1317 // possible!
1318 wxASSERT_MSG( (m_windowStyle & wxTE_MULTILINE) && m_updateFont,
1319 _T("shouldn't be called for single line controls") );
1320
1321 wxString value = GetValue();
1322 if ( !value.IsEmpty() )
1323 {
1324 m_updateFont = FALSE;
1325
1326 Clear();
1327 AppendText(value);
1328 }
1329 }
1330
1331 void wxTextCtrl::UpdateFontIfNeeded()
1332 {
1333 if ( m_updateFont )
1334 ChangeFontGlobally();
1335 }
1336
1337 bool wxTextCtrl::SetForegroundColour(const wxColour& colour)
1338 {
1339 if ( !wxControl::SetForegroundColour(colour) )
1340 return FALSE;
1341
1342 // update default fg colour too
1343 m_defaultStyle.SetTextColour(colour);
1344
1345 return TRUE;
1346 }
1347
1348 bool wxTextCtrl::SetBackgroundColour( const wxColour &colour )
1349 {
1350 wxCHECK_MSG( m_text != NULL, FALSE, wxT("invalid text ctrl") );
1351
1352 if ( !wxControl::SetBackgroundColour( colour ) )
1353 return FALSE;
1354
1355 if (!m_widget->window)
1356 return FALSE;
1357
1358 wxColour sysbg = wxSystemSettings::GetColour( wxSYS_COLOUR_BTNFACE );
1359 if (sysbg.Red() == colour.Red() &&
1360 sysbg.Green() == colour.Green() &&
1361 sysbg.Blue() == colour.Blue())
1362 {
1363 return FALSE; // FIXME or TRUE?
1364 }
1365
1366 if (!m_backgroundColour.Ok())
1367 return FALSE;
1368
1369 if (m_windowStyle & wxTE_MULTILINE)
1370 {
1371 #ifndef __WXGTK20__
1372 GdkWindow *window = GTK_TEXT(m_text)->text_area;
1373 if (!window)
1374 return FALSE;
1375 m_backgroundColour.CalcPixel( gdk_window_get_colormap( window ) );
1376 gdk_window_set_background( window, m_backgroundColour.GetColor() );
1377 gdk_window_clear( window );
1378 #endif
1379 }
1380
1381 // change active background color too
1382 m_defaultStyle.SetBackgroundColour( colour );
1383
1384 return TRUE;
1385 }
1386
1387 bool wxTextCtrl::SetStyle( long start, long end, const wxTextAttr& style )
1388 {
1389 if ( m_windowStyle & wxTE_MULTILINE )
1390 {
1391 if ( style.IsDefault() )
1392 {
1393 // nothing to do
1394 return TRUE;
1395 }
1396 #ifdef __WXGTK20__
1397 GtkTextBuffer *text_buffer = gtk_text_view_get_buffer( GTK_TEXT_VIEW(m_text) );
1398 gint l = gtk_text_buffer_get_char_count( text_buffer );
1399
1400 wxCHECK_MSG( start >= 0 && end <= l, FALSE,
1401 _T("invalid range in wxTextCtrl::SetStyle") );
1402
1403 GtkTextIter starti, endi;
1404 gtk_text_buffer_get_iter_at_offset( text_buffer, &starti, start );
1405 gtk_text_buffer_get_iter_at_offset( text_buffer, &endi, end );
1406
1407 // use the attributes from style which are set in it and fall back
1408 // first to the default style and then to the text control default
1409 // colours for the others
1410 wxTextAttr attr = wxTextAttr::Combine(style, m_defaultStyle, this);
1411
1412 PangoFontDescription *font_description = attr.HasFont()
1413 ? attr.GetFont().GetNativeFontInfo()->description
1414 : NULL;
1415
1416 GdkColor *colFg = attr.HasTextColour() ? attr.GetTextColour().GetColor()
1417 : NULL;
1418
1419 GdkColor *colBg = attr.HasBackgroundColour()
1420 ? attr.GetBackgroundColour().GetColor()
1421 : NULL;
1422
1423 GtkTextTag *tag;
1424 tag = gtk_text_buffer_create_tag( text_buffer, NULL, "font-desc", font_description,
1425 "foreground-gdk", colFg,
1426 "background-gdk", colBg, NULL );
1427 gtk_text_buffer_apply_tag( text_buffer, tag, &starti, &endi );
1428
1429 return TRUE;
1430 #else
1431 // VERY dirty way to do that - removes the required text and re-adds it
1432 // with styling (FIXME)
1433
1434 gint l = gtk_text_get_length( GTK_TEXT(m_text) );
1435
1436 wxCHECK_MSG( start >= 0 && end <= l, FALSE,
1437 _T("invalid range in wxTextCtrl::SetStyle") );
1438
1439 gint old_pos = gtk_editable_get_position( GTK_EDITABLE(m_text) );
1440 char *text = gtk_editable_get_chars( GTK_EDITABLE(m_text), start, end );
1441 wxString tmp(text,*wxConvCurrent);
1442 g_free( text );
1443
1444 gtk_editable_delete_text( GTK_EDITABLE(m_text), start, end );
1445 gtk_editable_set_position( GTK_EDITABLE(m_text), start );
1446
1447 #if wxUSE_UNICODE
1448 wxWX2MBbuf buf = tmp.mbc_str();
1449 const char *txt = buf;
1450 size_t txtlen = strlen(buf);
1451 #else
1452 const char *txt = tmp;
1453 size_t txtlen = tmp.length();
1454 #endif
1455
1456 // use the attributes from style which are set in it and fall back
1457 // first to the default style and then to the text control default
1458 // colours for the others
1459 wxGtkTextInsert(m_text,
1460 wxTextAttr::Combine(style, m_defaultStyle, this),
1461 txt,
1462 txtlen);
1463
1464 /* does not seem to help under GTK+ 1.2 !!!
1465 gtk_editable_set_position( GTK_EDITABLE(m_text), old_pos ); */
1466 SetInsertionPoint( old_pos );
1467 #endif
1468 return TRUE;
1469 }
1470 else // singe line
1471 {
1472 // cannot do this for GTK+'s Entry widget
1473 return FALSE;
1474 }
1475 }
1476
1477 void wxTextCtrl::ApplyWidgetStyle()
1478 {
1479 if (m_windowStyle & wxTE_MULTILINE)
1480 {
1481 // how ?
1482 }
1483 else
1484 {
1485 SetWidgetStyle();
1486 gtk_widget_set_style( m_text, m_widgetStyle );
1487 }
1488 }
1489
1490 void wxTextCtrl::OnCut(wxCommandEvent& WXUNUSED(event))
1491 {
1492 Cut();
1493 }
1494
1495 void wxTextCtrl::OnCopy(wxCommandEvent& WXUNUSED(event))
1496 {
1497 Copy();
1498 }
1499
1500 void wxTextCtrl::OnPaste(wxCommandEvent& WXUNUSED(event))
1501 {
1502 Paste();
1503 }
1504
1505 void wxTextCtrl::OnUndo(wxCommandEvent& WXUNUSED(event))
1506 {
1507 Undo();
1508 }
1509
1510 void wxTextCtrl::OnRedo(wxCommandEvent& WXUNUSED(event))
1511 {
1512 Redo();
1513 }
1514
1515 void wxTextCtrl::OnUpdateCut(wxUpdateUIEvent& event)
1516 {
1517 event.Enable( CanCut() );
1518 }
1519
1520 void wxTextCtrl::OnUpdateCopy(wxUpdateUIEvent& event)
1521 {
1522 event.Enable( CanCopy() );
1523 }
1524
1525 void wxTextCtrl::OnUpdatePaste(wxUpdateUIEvent& event)
1526 {
1527 event.Enable( CanPaste() );
1528 }
1529
1530 void wxTextCtrl::OnUpdateUndo(wxUpdateUIEvent& event)
1531 {
1532 event.Enable( CanUndo() );
1533 }
1534
1535 void wxTextCtrl::OnUpdateRedo(wxUpdateUIEvent& event)
1536 {
1537 event.Enable( CanRedo() );
1538 }
1539
1540 void wxTextCtrl::OnInternalIdle()
1541 {
1542 wxCursor cursor = m_cursor;
1543 if (g_globalCursor.Ok()) cursor = g_globalCursor;
1544
1545 if (cursor.Ok())
1546 {
1547 #ifndef __WXGTK20__
1548 GdkWindow *window = (GdkWindow*) NULL;
1549 if (HasFlag(wxTE_MULTILINE))
1550 window = GTK_TEXT(m_text)->text_area;
1551 else
1552 window = GTK_ENTRY(m_text)->text_area;
1553
1554 if (window)
1555 gdk_window_set_cursor( window, cursor.GetCursor() );
1556
1557 if (!g_globalCursor.Ok())
1558 cursor = *wxSTANDARD_CURSOR;
1559
1560 window = m_widget->window;
1561 if ((window) && !(GTK_WIDGET_NO_WINDOW(m_widget)))
1562 gdk_window_set_cursor( window, cursor.GetCursor() );
1563 #endif
1564 }
1565
1566 if (g_delayedFocus == this)
1567 {
1568 if (GTK_WIDGET_REALIZED(m_widget))
1569 {
1570 gtk_widget_grab_focus( m_widget );
1571 g_delayedFocus = NULL;
1572 }
1573 }
1574
1575 UpdateWindowUI();
1576 }
1577
1578 wxSize wxTextCtrl::DoGetBestSize() const
1579 {
1580 // FIXME should be different for multi-line controls...
1581 wxSize ret( wxControl::DoGetBestSize() );
1582 return wxSize(80, ret.y);
1583 }
1584
1585 // ----------------------------------------------------------------------------
1586 // freeze/thaw
1587 // ----------------------------------------------------------------------------
1588
1589 void wxTextCtrl::Freeze()
1590 {
1591 #ifndef __WXGTK20__
1592 if ( HasFlag(wxTE_MULTILINE) )
1593 {
1594 gtk_text_freeze(GTK_TEXT(m_text));
1595 }
1596 #endif
1597 }
1598
1599 void wxTextCtrl::Thaw()
1600 {
1601 #ifndef __WXGTK20__
1602 if ( HasFlag(wxTE_MULTILINE) )
1603 {
1604 GTK_TEXT(m_text)->vadj->value = 0.0;
1605
1606 gtk_text_thaw(GTK_TEXT(m_text));
1607 }
1608 #endif
1609 }
1610
1611 // ----------------------------------------------------------------------------
1612 // scrolling
1613 // ----------------------------------------------------------------------------
1614
1615 GtkAdjustment *wxTextCtrl::GetVAdj() const
1616 {
1617 #ifdef __WXGTK20__
1618 return NULL;
1619 #else
1620 return HasFlag(wxTE_MULTILINE) ? GTK_TEXT(m_text)->vadj : NULL;
1621 #endif
1622 }
1623
1624 bool wxTextCtrl::DoScroll(GtkAdjustment *adj, int diff)
1625 {
1626 #ifndef __WXGTK20__
1627 float value = adj->value + diff;
1628
1629 if ( value < 0 )
1630 value = 0;
1631
1632 float upper = adj->upper - adj->page_size;
1633 if ( value > upper )
1634 value = upper;
1635
1636 // did we noticeably change the scroll position?
1637 if ( fabs(adj->value - value) < 0.2 )
1638 {
1639 // well, this is what Robert does in wxScrollBar, so it must be good...
1640 return FALSE;
1641 }
1642
1643 adj->value = value;
1644
1645 gtk_signal_emit_by_name(GTK_OBJECT(adj), "value_changed");
1646
1647 #endif
1648 return TRUE;
1649 }
1650
1651 bool wxTextCtrl::ScrollLines(int lines)
1652 {
1653 #ifdef __WXGTK20__
1654 return FALSE;
1655 #else
1656 GtkAdjustment *adj = GetVAdj();
1657 if ( !adj )
1658 return FALSE;
1659
1660 // this is hardcoded to 10 in GTK+ 1.2 (great idea)
1661 static const int KEY_SCROLL_PIXELS = 10;
1662
1663 return DoScroll(adj, lines*KEY_SCROLL_PIXELS);
1664 #endif
1665 }
1666
1667 bool wxTextCtrl::ScrollPages(int pages)
1668 {
1669 #ifdef __WXGTK20__
1670 return FALSE;
1671 #else
1672 GtkAdjustment *adj = GetVAdj();
1673 if ( !adj )
1674 return FALSE;
1675
1676 return DoScroll(adj, (int)ceil(pages*adj->page_increment));
1677 #endif
1678 }
1679