1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Robert Roebling
6 // Copyright: (c) 1998 Robert Roebling, Vadim Zeitlin
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
10 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
11 #pragma implementation "textctrl.h"
14 // For compilers that support precompilation, includes "wx.h".
15 #include "wx/wxprec.h"
17 #include "wx/textctrl.h"
21 #include "wx/settings.h"
23 #include "wx/strconv.h"
24 #include "wx/fontutil.h" // for wxNativeFontInfo (GetNativeFontInfo())
26 #include <sys/types.h>
31 #include "wx/gtk/private.h"
32 #include <gdk/gdkkeysyms.h>
34 //-----------------------------------------------------------------------------
36 //-----------------------------------------------------------------------------
38 extern void wxapp_install_idle_handler();
41 //-----------------------------------------------------------------------------
43 //-----------------------------------------------------------------------------
45 extern bool g_blockEventsOnDrag
;
46 extern wxCursor g_globalCursor
;
47 extern wxWindowGTK
*g_delayedFocus
;
49 // ----------------------------------------------------------------------------
51 // ----------------------------------------------------------------------------
54 static void wxGtkTextApplyTagsFromAttr(GtkTextBuffer
*text_buffer
,
55 const wxTextAttr
& attr
,
59 static gchar buf
[1024];
65 PangoFontDescription
*font_description
= attr
.GetFont().GetNativeFontInfo()->description
;
66 font_string
= pango_font_description_to_string(font_description
);
67 g_snprintf(buf
, sizeof(buf
), "WXFONT %s", font_string
);
68 tag
= gtk_text_tag_table_lookup( gtk_text_buffer_get_tag_table( text_buffer
),
71 tag
= gtk_text_buffer_create_tag( text_buffer
, buf
,
72 "font-desc", font_description
,
74 gtk_text_buffer_apply_tag (text_buffer
, tag
, start
, end
);
78 if (attr
.HasTextColour())
80 GdkColor
*colFg
= attr
.GetTextColour().GetColor();
81 g_snprintf(buf
, sizeof(buf
), "WXFORECOLOR %d %d %d",
82 colFg
->red
, colFg
->green
, colFg
->blue
);
83 tag
= gtk_text_tag_table_lookup( gtk_text_buffer_get_tag_table( text_buffer
),
86 tag
= gtk_text_buffer_create_tag( text_buffer
, buf
,
87 "foreground-gdk", colFg
, NULL
);
88 gtk_text_buffer_apply_tag (text_buffer
, tag
, start
, end
);
91 if (attr
.HasBackgroundColour())
93 GdkColor
*colBg
= attr
.GetBackgroundColour().GetColor();
94 g_snprintf(buf
, sizeof(buf
), "WXBACKCOLOR %d %d %d",
95 colBg
->red
, colBg
->green
, colBg
->blue
);
96 tag
= gtk_text_tag_table_lookup( gtk_text_buffer_get_tag_table( text_buffer
),
99 tag
= gtk_text_buffer_create_tag( text_buffer
, buf
,
100 "background-gdk", colBg
, NULL
);
101 gtk_text_buffer_apply_tag (text_buffer
, tag
, start
, end
);
105 static void wxGtkTextInsert(GtkWidget
*text
,
106 GtkTextBuffer
*text_buffer
,
107 const wxTextAttr
& attr
,
112 GtkTextIter iter
, start
;
114 gtk_text_buffer_get_iter_at_mark( text_buffer
, &iter
,
115 gtk_text_buffer_get_insert (text_buffer
) );
116 start_offset
= gtk_text_iter_get_offset (&iter
);
117 gtk_text_buffer_insert( text_buffer
, &iter
, buffer
, strlen(buffer
) );
119 gtk_text_buffer_get_iter_at_offset (text_buffer
, &start
, start_offset
);
121 wxGtkTextApplyTagsFromAttr(text_buffer
, attr
, &start
, &iter
);
124 static void wxGtkTextInsert(GtkWidget
*text
,
125 const wxTextAttr
& attr
,
129 GdkFont
*font
= attr
.HasFont() ? attr
.GetFont().GetInternalFont()
132 GdkColor
*colFg
= attr
.HasTextColour() ? attr
.GetTextColour().GetColor()
135 GdkColor
*colBg
= attr
.HasBackgroundColour()
136 ? attr
.GetBackgroundColour().GetColor()
139 gtk_text_insert( GTK_TEXT(text
), font
, colFg
, colBg
, txt
, len
);
143 // ----------------------------------------------------------------------------
144 // "insert_text" for GtkEntry
145 // ----------------------------------------------------------------------------
149 gtk_insert_text_callback(GtkEditable
*editable
,
150 const gchar
*new_text
,
151 gint new_text_length
,
156 wxapp_install_idle_handler();
158 // we should only be called if we have a max len limit at all
159 GtkEntry
*entry
= GTK_ENTRY (editable
);
161 wxCHECK_RET( entry
->text_max_length
, _T("shouldn't be called") );
163 // check that we don't overflow the max length limit
165 // FIXME: this doesn't work when we paste a string which is going to be
167 if ( entry
->text_length
== entry
->text_max_length
)
169 // we don't need to run the base class version at all
170 gtk_signal_emit_stop_by_name(GTK_OBJECT(editable
), "insert_text");
172 // remember that the next changed signal is to be ignored to avoid
173 // generating a dummy wxEVT_COMMAND_TEXT_UPDATED event
174 win
->IgnoreNextTextUpdate();
176 // and generate the correct one ourselves
177 wxCommandEvent
event(wxEVT_COMMAND_TEXT_MAXLEN
, win
->GetId());
178 event
.SetEventObject(win
);
179 event
.SetString(win
->GetValue());
180 win
->GetEventHandler()->ProcessEvent( event
);
186 // Implementation of wxTE_AUTO_URL for wxGTK2 by Mart Raudsepp,
190 au_apply_tag_callback(GtkTextBuffer
*buffer
,
196 if(tag
== gtk_text_tag_table_lookup(gtk_text_buffer_get_tag_table(buffer
), "wxUrl"))
197 g_signal_stop_emission_by_name(buffer
, "apply_tag");
201 //-----------------------------------------------------------------------------
202 // GtkTextCharPredicates for gtk_text_iter_*_find_char
203 //-----------------------------------------------------------------------------
207 pred_whitespace (gunichar ch
, gpointer user_data
)
209 return g_unichar_isspace(ch
);
215 pred_non_whitespace (gunichar ch
, gpointer user_data
)
217 return !g_unichar_isspace(ch
);
223 pred_nonpunct (gunichar ch
, gpointer user_data
)
225 return !g_unichar_ispunct(ch
);
231 pred_nonpunct_or_slash (gunichar ch
, gpointer user_data
)
233 return !g_unichar_ispunct(ch
) || ch
== '/';
237 //-----------------------------------------------------------------------------
238 // Check for links between s and e and correct tags as necessary
239 //-----------------------------------------------------------------------------
241 // This function should be made match better while being efficient at one point.
242 // Most probably with a row of regular expressions.
245 au_check_word( GtkTextIter
*s
, GtkTextIter
*e
)
247 static const char *URIPrefixes
[] =
265 GtkTextIter start
= *s
, end
= *e
;
266 GtkTextBuffer
*buffer
= gtk_text_iter_get_buffer(s
);
268 // Get our special link tag
269 GtkTextTag
*tag
= gtk_text_tag_table_lookup(gtk_text_buffer_get_tag_table(buffer
), "wxUrl");
271 // Get rid of punctuation from beginning and end.
272 // Might want to move this to au_check_range if an improved link checking doesn't
273 // use some intelligent punctuation checking itself (beware of undesired iter modifications).
274 if(g_unichar_ispunct( gtk_text_iter_get_char( &start
) ) )
275 gtk_text_iter_forward_find_char( &start
, pred_nonpunct
, NULL
, e
);
277 gtk_text_iter_backward_find_char( &end
, pred_nonpunct_or_slash
, NULL
, &start
);
278 gtk_text_iter_forward_char(&end
);
280 gchar
* text
= gtk_text_iter_get_text( &start
, &end
);
281 size_t len
= strlen(text
), prefix_len
;
284 for( n
= 0; n
< WXSIZEOF(URIPrefixes
); ++n
)
286 prefix_len
= strlen(URIPrefixes
[n
]);
287 if((len
> prefix_len
) && !strncasecmp(text
, URIPrefixes
[n
], prefix_len
))
291 if(n
< WXSIZEOF(URIPrefixes
))
293 gulong signal_id
= g_signal_handler_find(buffer
,
294 (GSignalMatchType
) (G_SIGNAL_MATCH_FUNC
),
296 (gpointer
)au_apply_tag_callback
, NULL
);
298 g_signal_handler_block(buffer
, signal_id
);
299 gtk_text_buffer_apply_tag(buffer
, tag
, &start
, &end
);
300 g_signal_handler_unblock(buffer
, signal_id
);
307 au_check_range(GtkTextIter
*s
,
308 GtkTextIter
*range_end
)
310 GtkTextIter range_start
= *s
;
311 GtkTextIter word_end
;
312 GtkTextBuffer
*buffer
= gtk_text_iter_get_buffer(s
);
313 GtkTextTag
*tag
= gtk_text_tag_table_lookup(gtk_text_buffer_get_tag_table(buffer
), "wxUrl");
315 gtk_text_buffer_remove_tag(buffer
, tag
, s
, range_end
);
317 if(g_unichar_isspace(gtk_text_iter_get_char(&range_start
)))
318 gtk_text_iter_forward_find_char(&range_start
, pred_non_whitespace
, NULL
, range_end
);
320 while(!gtk_text_iter_equal(&range_start
, range_end
))
322 word_end
= range_start
;
323 gtk_text_iter_forward_find_char(&word_end
, pred_whitespace
, NULL
, range_end
);
325 // Now we should have a word delimited by range_start and word_end, correct link tags
326 au_check_word(&range_start
, &word_end
);
328 range_start
= word_end
;
329 gtk_text_iter_forward_find_char(&range_start
, pred_non_whitespace
, NULL
, range_end
);
334 //-----------------------------------------------------------------------------
335 // "insert-text" for GtkTextBuffer
336 //-----------------------------------------------------------------------------
340 au_insert_text_callback(GtkTextBuffer
*buffer
,
346 if (!len
|| !(win
->GetWindowStyleFlag() & wxTE_AUTO_URL
) )
349 GtkTextIter start
= *end
;
350 gtk_text_iter_backward_chars(&start
, g_utf8_strlen(text
, len
));
352 GtkTextIter line_start
= start
;
353 GtkTextIter line_end
= *end
;
354 GtkTextIter words_start
= start
;
355 GtkTextIter words_end
= *end
;
357 gtk_text_iter_set_line(&line_start
, gtk_text_iter_get_line(&start
));
358 gtk_text_iter_forward_to_line_end(&line_end
);
359 gtk_text_iter_backward_find_char(&words_start
, pred_whitespace
, NULL
, &line_start
);
360 gtk_text_iter_forward_find_char(&words_end
, pred_whitespace
, NULL
, &line_end
);
362 au_check_range(&words_start
, &words_end
);
366 //-----------------------------------------------------------------------------
367 // "delete-range" for GtkTextBuffer
368 //-----------------------------------------------------------------------------
372 au_delete_range_callback(GtkTextBuffer
*buffer
,
377 if( !(win
->GetWindowStyleFlag() & wxTE_AUTO_URL
) )
380 GtkTextIter line_start
= *start
, line_end
= *end
;
382 gtk_text_iter_set_line(&line_start
, gtk_text_iter_get_line(start
));
383 gtk_text_iter_forward_to_line_end(&line_end
);
384 gtk_text_iter_backward_find_char(start
, pred_whitespace
, NULL
, &line_start
);
385 gtk_text_iter_forward_find_char(end
, pred_whitespace
, NULL
, &line_end
);
387 au_check_range(start
, end
);
394 //-----------------------------------------------------------------------------
396 //-----------------------------------------------------------------------------
400 gtk_text_changed_callback( GtkWidget
*widget
, wxTextCtrl
*win
)
402 if ( win
->IgnoreTextUpdate() )
405 if (!win
->m_hasVMT
) return;
408 wxapp_install_idle_handler();
412 win
->UpdateFontIfNeeded();
413 #endif // !__WXGTK20__
415 wxCommandEvent
event( wxEVT_COMMAND_TEXT_UPDATED
, win
->GetId() );
416 event
.SetEventObject( win
);
417 win
->GetEventHandler()->ProcessEvent( event
);
421 //-----------------------------------------------------------------------------
422 // "expose_event" from scrolled window and textview
423 //-----------------------------------------------------------------------------
428 gtk_text_exposed_callback( GtkWidget
*widget
, GdkEventExpose
*event
, wxTextCtrl
*win
)
435 //-----------------------------------------------------------------------------
436 // "changed" from vertical scrollbar
437 //-----------------------------------------------------------------------------
442 gtk_scrollbar_changed_callback( GtkWidget
*WXUNUSED(widget
), wxTextCtrl
*win
)
444 if (!win
->m_hasVMT
) return;
447 wxapp_install_idle_handler();
449 win
->CalculateScrollbar();
454 // ----------------------------------------------------------------------------
455 // redraw callback for multiline text
456 // ----------------------------------------------------------------------------
460 // redrawing a GtkText from inside a wxYield() call results in crashes (the
461 // text sample shows it in its "Add lines" command which shows wxProgressDialog
462 // which implicitly calls wxYield()) so we override GtkText::draw() and simply
463 // don't do anything if we're inside wxYield()
465 extern bool wxIsInsideYield
;
468 typedef void (*GtkDrawCallback
)(GtkWidget
*widget
, GdkRectangle
*rect
);
471 static GtkDrawCallback gs_gtk_text_draw
= NULL
;
474 static void wxgtk_text_draw( GtkWidget
*widget
, GdkRectangle
*rect
)
476 if ( !wxIsInsideYield
)
478 wxCHECK_RET( gs_gtk_text_draw
!= wxgtk_text_draw
,
479 _T("infinite recursion in wxgtk_text_draw aborted") );
481 gs_gtk_text_draw(widget
, rect
);
486 #endif // __WXGTK20__
488 //-----------------------------------------------------------------------------
490 //-----------------------------------------------------------------------------
492 IMPLEMENT_DYNAMIC_CLASS(wxTextCtrl
,wxControl
)
494 BEGIN_EVENT_TABLE(wxTextCtrl
, wxControl
)
495 EVT_CHAR(wxTextCtrl::OnChar
)
497 EVT_MENU(wxID_CUT
, wxTextCtrl::OnCut
)
498 EVT_MENU(wxID_COPY
, wxTextCtrl::OnCopy
)
499 EVT_MENU(wxID_PASTE
, wxTextCtrl::OnPaste
)
500 EVT_MENU(wxID_UNDO
, wxTextCtrl::OnUndo
)
501 EVT_MENU(wxID_REDO
, wxTextCtrl::OnRedo
)
503 EVT_UPDATE_UI(wxID_CUT
, wxTextCtrl::OnUpdateCut
)
504 EVT_UPDATE_UI(wxID_COPY
, wxTextCtrl::OnUpdateCopy
)
505 EVT_UPDATE_UI(wxID_PASTE
, wxTextCtrl::OnUpdatePaste
)
506 EVT_UPDATE_UI(wxID_UNDO
, wxTextCtrl::OnUpdateUndo
)
507 EVT_UPDATE_UI(wxID_REDO
, wxTextCtrl::OnUpdateRedo
)
510 // wxTE_AUTO_URL wxTextUrl support. Currently only creates
511 // wxTextUrlEvent in the same cases as wxMSW, more can be added here.
512 EVT_MOTION (wxTextCtrl::OnUrlMouseEvent
)
513 EVT_LEFT_DOWN (wxTextCtrl::OnUrlMouseEvent
)
514 EVT_LEFT_UP (wxTextCtrl::OnUrlMouseEvent
)
515 EVT_LEFT_DCLICK (wxTextCtrl::OnUrlMouseEvent
)
516 EVT_RIGHT_DOWN (wxTextCtrl::OnUrlMouseEvent
)
517 EVT_RIGHT_UP (wxTextCtrl::OnUrlMouseEvent
)
518 EVT_RIGHT_DCLICK(wxTextCtrl::OnUrlMouseEvent
)
522 void wxTextCtrl::Init()
526 SetUpdateFont(false);
528 m_vScrollbar
= (GtkWidget
*)NULL
;
531 m_gdkHandCursor
= NULL
;
532 m_gdkXTermCursor
= NULL
;
536 wxTextCtrl::~wxTextCtrl()
540 gdk_cursor_unref(m_gdkHandCursor
);
542 gdk_cursor_unref(m_gdkXTermCursor
);
546 wxTextCtrl::wxTextCtrl( wxWindow
*parent
,
548 const wxString
&value
,
552 const wxValidator
& validator
,
553 const wxString
&name
)
557 Create( parent
, id
, value
, pos
, size
, style
, validator
, name
);
560 bool wxTextCtrl::Create( wxWindow
*parent
,
562 const wxString
&value
,
566 const wxValidator
& validator
,
567 const wxString
&name
)
570 m_acceptsFocus
= true;
572 if (!PreCreation( parent
, pos
, size
) ||
573 !CreateBase( parent
, id
, pos
, size
, style
, validator
, name
))
575 wxFAIL_MSG( wxT("wxTextCtrl creation failed") );
580 m_vScrollbarVisible
= false;
582 bool multi_line
= (style
& wxTE_MULTILINE
) != 0;
588 m_text
= gtk_text_view_new();
590 m_buffer
= gtk_text_view_get_buffer( GTK_TEXT_VIEW(m_text
) );
592 // create scrolled window
593 m_widget
= gtk_scrolled_window_new( NULL
, NULL
);
594 gtk_scrolled_window_set_policy( GTK_SCROLLED_WINDOW( m_widget
),
595 GTK_POLICY_AUTOMATIC
, GTK_POLICY_AUTOMATIC
);
597 // Insert view into scrolled window
598 gtk_container_add( GTK_CONTAINER(m_widget
), m_text
);
600 // translate wx wrapping style to GTK+
602 if ( HasFlag( wxTE_DONTWRAP
) )
603 wrap
= GTK_WRAP_NONE
;
604 else if ( HasFlag( wxTE_CHARWRAP
) )
605 wrap
= GTK_WRAP_CHAR
;
606 else if ( HasFlag( wxTE_WORDWRAP
) )
607 wrap
= GTK_WRAP_WORD
;
608 else // HasFlag(wxTE_BESTWRAP) always true as wxTE_BESTWRAP == 0
610 // GTK_WRAP_WORD_CHAR seems to be new in GTK+ 2.4
612 if ( !gtk_check_version(2,4,0) )
614 wrap
= GTK_WRAP_WORD_CHAR
;
618 wrap
= GTK_WRAP_WORD
;
621 gtk_text_view_set_wrap_mode( GTK_TEXT_VIEW( m_text
), wrap
);
623 if (!HasFlag(wxNO_BORDER
))
624 gtk_scrolled_window_set_shadow_type( GTK_SCROLLED_WINDOW(m_widget
), GTK_SHADOW_IN
);
626 gtk_widget_add_events( GTK_WIDGET(m_text
), GDK_ENTER_NOTIFY_MASK
| GDK_LEAVE_NOTIFY_MASK
);
628 GTK_WIDGET_UNSET_FLAGS( m_widget
, GTK_CAN_FOCUS
);
630 // create our control ...
631 m_text
= gtk_text_new( (GtkAdjustment
*) NULL
, (GtkAdjustment
*) NULL
);
633 // ... and put into the upper left hand corner of the table
634 bool bHasHScrollbar
= false;
635 m_widget
= gtk_table_new(bHasHScrollbar
? 2 : 1, 2, FALSE
);
636 GTK_WIDGET_UNSET_FLAGS( m_widget
, GTK_CAN_FOCUS
);
637 gtk_table_attach( GTK_TABLE(m_widget
), m_text
, 0, 1, 0, 1,
638 (GtkAttachOptions
)(GTK_FILL
| GTK_EXPAND
| GTK_SHRINK
),
639 (GtkAttachOptions
)(GTK_FILL
| GTK_EXPAND
| GTK_SHRINK
),
643 gtk_text_set_word_wrap( GTK_TEXT(m_text
), TRUE
);
645 // finally, put the vertical scrollbar in the upper right corner
646 m_vScrollbar
= gtk_vscrollbar_new( GTK_TEXT(m_text
)->vadj
);
647 GTK_WIDGET_UNSET_FLAGS( m_vScrollbar
, GTK_CAN_FOCUS
);
648 gtk_table_attach(GTK_TABLE(m_widget
), m_vScrollbar
, 1, 2, 0, 1,
650 (GtkAttachOptions
)(GTK_EXPAND
| GTK_FILL
| GTK_SHRINK
),
656 // a single-line text control: no need for scrollbars
658 m_text
= gtk_entry_new();
661 if (style
& wxNO_BORDER
)
662 g_object_set( GTK_ENTRY(m_text
), "has-frame", FALSE
, NULL
);
666 m_parent
->DoAddChild( this );
668 m_focusWidget
= m_text
;
673 gtk_widget_show(m_text
);
678 gtk_signal_connect(GTK_OBJECT(GTK_TEXT(m_text
)->vadj
), "changed",
679 (GtkSignalFunc
) gtk_scrollbar_changed_callback
, (gpointer
) this );
681 // only initialize gs_gtk_text_draw once, starting from the next the
682 // klass::draw will already be wxgtk_text_draw
683 if ( !gs_gtk_text_draw
)
686 draw
= GTK_WIDGET_CLASS(GTK_OBJECT(m_text
)->klass
)->draw
;
688 gs_gtk_text_draw
= draw
;
690 draw
= wxgtk_text_draw
;
701 #if !GTK_CHECK_VERSION(1, 2, 0)
702 // if we don't realize it, GTK 1.0.6 dies with a SIGSEGV in
703 // gtk_editable_insert_text()
704 gtk_widget_realize(m_text
);
709 wxWX2MBbuf val
= value
.mbc_str();
710 gtk_editable_insert_text( GTK_EDITABLE(m_text
), val
, strlen(val
), &tmp
);
712 gtk_editable_insert_text( GTK_EDITABLE(m_text
), value
, value
.Length(), &tmp
);
717 // Bring editable's cursor uptodate. Bug in GTK.
718 SET_EDITABLE_POS(m_text
, gtk_text_get_point( GTK_TEXT(m_text
) ));
724 if (style
& wxTE_PASSWORD
)
727 gtk_entry_set_visibility( GTK_ENTRY(m_text
), FALSE
);
730 if (style
& wxTE_READONLY
)
733 gtk_entry_set_editable( GTK_ENTRY(m_text
), FALSE
);
736 gtk_text_view_set_editable( GTK_TEXT_VIEW( m_text
), FALSE
);
742 gtk_text_set_editable( GTK_TEXT(m_text
), 1 );
749 if (style
& wxTE_RIGHT
)
750 gtk_text_view_set_justification( GTK_TEXT_VIEW(m_text
), GTK_JUSTIFY_RIGHT
);
751 else if (style
& wxTE_CENTRE
)
752 gtk_text_view_set_justification( GTK_TEXT_VIEW(m_text
), GTK_JUSTIFY_CENTER
);
753 // Left justify (alignment) is the default and we don't need to apply GTK_JUSTIFY_LEFT
758 // gtk_entry_set_alignment was introduced in gtk+-2.3.5
759 if (!gtk_check_version(2,4,0))
761 if (style
& wxTE_RIGHT
)
762 gtk_entry_set_alignment( GTK_ENTRY(m_text
), 1.0 );
763 else if (style
& wxTE_CENTRE
)
764 gtk_entry_set_alignment( GTK_ENTRY(m_text
), 0.5 );
768 #endif // __WXGTK20__
770 // We want to be notified about text changes.
774 g_signal_connect( G_OBJECT(m_buffer
), "changed",
775 GTK_SIGNAL_FUNC(gtk_text_changed_callback
), (gpointer
)this);
777 // .. and handle URLs on multi-line controls with wxTE_AUTO_URL style
778 if (style
& wxTE_AUTO_URL
)
780 GtkTextIter start
, end
;
781 m_gdkHandCursor
= gdk_cursor_new(GDK_HAND2
);
782 m_gdkXTermCursor
= gdk_cursor_new(GDK_XTERM
);
784 // We create our wxUrl tag here for slight efficiency gain - we
785 // don't have to check for the tag existance in callbacks,
786 // hereby it's guaranteed to exist.
787 gtk_text_buffer_create_tag(m_buffer
, "wxUrl",
788 "foreground", "blue",
789 "underline", PANGO_UNDERLINE_SINGLE
,
792 // Check for URLs after each text change
793 g_signal_connect_after( G_OBJECT(m_buffer
), "insert_text",
794 GTK_SIGNAL_FUNC(au_insert_text_callback
), (gpointer
)this);
795 g_signal_connect_after( G_OBJECT(m_buffer
), "delete_range",
796 GTK_SIGNAL_FUNC(au_delete_range_callback
), (gpointer
)this);
798 // Block all wxUrl tag applying unless we do it ourselves, in which case we
799 // block this callback temporarily. This takes care of gtk+ internal
800 // gtk_text_buffer_insert_range* calls that would copy our URL tag otherwise,
801 // which is undesired because only a part of the URL might be copied.
802 // The insert-text signal emitted inside it will take care of newly formed
803 // or wholly copied URLs.
804 g_signal_connect( G_OBJECT(m_buffer
), "apply_tag",
805 GTK_SIGNAL_FUNC(au_apply_tag_callback
), NULL
);
807 // Check for URLs in the initial string passed to Create
808 gtk_text_buffer_get_start_iter(m_buffer
, &start
);
809 gtk_text_buffer_get_end_iter(m_buffer
, &end
);
810 au_check_range(&start
, &end
);
817 gtk_signal_connect( GTK_OBJECT(m_text
), "changed",
818 GTK_SIGNAL_FUNC(gtk_text_changed_callback
), (gpointer
)this);
821 m_cursor
= wxCursor( wxCURSOR_IBEAM
);
823 wxTextAttr
attrDef(GetForegroundColour(), GetBackgroundColour(), GetFont());
824 SetDefaultStyle( attrDef
);
830 void wxTextCtrl::CalculateScrollbar()
833 if ((m_windowStyle
& wxTE_MULTILINE
) == 0) return;
835 GtkAdjustment
*adj
= GTK_TEXT(m_text
)->vadj
;
837 if (adj
->upper
- adj
->page_size
< 0.8)
839 if (m_vScrollbarVisible
)
841 gtk_widget_hide( m_vScrollbar
);
842 m_vScrollbarVisible
= false;
847 if (!m_vScrollbarVisible
)
849 gtk_widget_show( m_vScrollbar
);
850 m_vScrollbarVisible
= true;
856 wxString
wxTextCtrl::GetValue() const
858 wxCHECK_MSG( m_text
!= NULL
, wxT(""), wxT("invalid text ctrl") );
861 if (m_windowStyle
& wxTE_MULTILINE
)
865 gtk_text_buffer_get_start_iter( m_buffer
, &start
);
867 gtk_text_buffer_get_end_iter( m_buffer
, &end
);
868 gchar
*text
= gtk_text_buffer_get_text( m_buffer
, &start
, &end
, TRUE
);
871 wxWCharBuffer
buffer( wxConvUTF8
.cMB2WX( text
) );
873 wxCharBuffer
buffer( wxConvLocal
.cWC2WX( wxConvUTF8
.cMB2WC( text
) ) );
880 gint len
= gtk_text_get_length( GTK_TEXT(m_text
) );
881 char *text
= gtk_editable_get_chars( GTK_EDITABLE(m_text
), 0, len
);
888 tmp
= wxGTK_CONV_BACK( gtk_entry_get_text( GTK_ENTRY(m_text
) ) );
894 void wxTextCtrl::SetValue( const wxString
&value
)
896 wxCHECK_RET( m_text
!= NULL
, wxT("invalid text ctrl") );
898 if (m_windowStyle
& wxTE_MULTILINE
)
903 wxCharBuffer
buffer( wxConvUTF8
.cWX2MB( value
) );
905 wxCharBuffer
buffer( wxConvUTF8
.cWC2MB( wxConvLocal
.cWX2WC( value
) ) );
907 if (gtk_text_buffer_get_char_count(m_buffer
) != 0)
908 IgnoreNextTextUpdate();
910 gtk_text_buffer_set_text( m_buffer
, buffer
, strlen(buffer
) );
913 gint len
= gtk_text_get_length( GTK_TEXT(m_text
) );
914 gtk_editable_delete_text( GTK_EDITABLE(m_text
), 0, len
);
916 gtk_editable_insert_text( GTK_EDITABLE(m_text
), value
.mbc_str(), value
.Length(), &len
);
921 gtk_entry_set_text( GTK_ENTRY(m_text
), wxGTK_CONV( value
) );
924 // GRG, Jun/2000: Changed this after a lot of discussion in
925 // the lists. wxWidgets 2.2 will have a set of flags to
926 // customize this behaviour.
927 SetInsertionPoint(0);
932 void wxTextCtrl::WriteText( const wxString
&text
)
934 wxCHECK_RET( m_text
!= NULL
, wxT("invalid text ctrl") );
939 // gtk_text_changed_callback() will set m_modified to true but m_modified
940 // shouldn't be changed by the program writing to the text control itself,
941 // so save the old value and restore when we're done
942 bool oldModified
= m_modified
;
944 if ( m_windowStyle
& wxTE_MULTILINE
)
949 wxCharBuffer
buffer( wxConvUTF8
.cWX2MB( text
) );
951 wxCharBuffer
buffer( wxConvUTF8
.cWC2MB( wxConvLocal
.cWX2WC( text
) ) );
955 // what else can we do? at least don't crash...
959 // TODO: Call whatever is needed to delete the selection.
960 wxGtkTextInsert( m_text
, m_buffer
, m_defaultStyle
, buffer
);
962 GtkAdjustment
*adj
= gtk_scrolled_window_get_vadjustment( GTK_SCROLLED_WINDOW(m_widget
) );
963 // Scroll to cursor, but only if scrollbar thumb is at the very bottom
964 if ( adj
->value
== adj
->upper
- adj
->page_size
)
966 gtk_text_view_scroll_to_mark( GTK_TEXT_VIEW(m_text
),
967 gtk_text_buffer_get_insert( m_buffer
), 0.0, FALSE
, 0.0, 1.0 );
970 // After cursor movements, gtk_text_get_point() is wrong by one.
971 gtk_text_set_point( GTK_TEXT(m_text
), GET_EDITABLE_POS(m_text
) );
973 // always use m_defaultStyle, even if it is empty as otherwise
974 // resetting the style and appending some more text wouldn't work: if
975 // we don't specify the style explicitly, the old style would be used
976 gtk_editable_delete_selection( GTK_EDITABLE(m_text
) );
977 wxGtkTextInsert(m_text
, m_defaultStyle
, text
.c_str(), text
.Len());
979 // we called wxGtkTextInsert with correct font, no need to do anything
980 // in UpdateFontIfNeeded() any longer
983 SetUpdateFont(false);
986 // Bring editable's cursor back uptodate.
987 SET_EDITABLE_POS(m_text
, gtk_text_get_point( GTK_TEXT(m_text
) ));
988 #endif // GTK 1.x/2.0
992 // First remove the selection if there is one
993 gtk_editable_delete_selection( GTK_EDITABLE(m_text
) );
995 // This moves the cursor pos to behind the inserted text.
996 gint len
= GET_EDITABLE_POS(m_text
);
1001 wxCharBuffer
buffer( wxConvUTF8
.cWX2MB( text
) );
1003 wxCharBuffer
buffer( wxConvUTF8
.cWC2MB( wxConvLocal
.cWX2WC( text
) ) );
1005 gtk_editable_insert_text( GTK_EDITABLE(m_text
), buffer
, strlen(buffer
), &len
);
1008 gtk_editable_insert_text( GTK_EDITABLE(m_text
), text
.c_str(), text
.Len(), &len
);
1011 // Bring entry's cursor uptodate.
1012 gtk_entry_set_position( GTK_ENTRY(m_text
), len
);
1015 m_modified
= oldModified
;
1018 void wxTextCtrl::AppendText( const wxString
&text
)
1020 SetInsertionPointEnd();
1024 wxString
wxTextCtrl::GetLineText( long lineNo
) const
1026 if (m_windowStyle
& wxTE_MULTILINE
)
1029 gint len
= gtk_text_get_length( GTK_TEXT(m_text
) );
1030 char *text
= gtk_editable_get_chars( GTK_EDITABLE(m_text
), 0, len
);
1034 wxString
buf(wxT(""));
1036 int currentLine
= 0;
1037 for (i
= 0; currentLine
!= lineNo
&& text
[i
]; i
++ )
1038 if (text
[i
] == '\n')
1042 for (j
= 0; text
[i
] && text
[i
] != '\n'; i
++, j
++ )
1050 return wxEmptyString
;
1054 gtk_text_buffer_get_iter_at_line(m_buffer
,&line
,lineNo
);
1056 gtk_text_buffer_get_end_iter(m_buffer
,&end
);
1057 gchar
*text
= gtk_text_buffer_get_text(m_buffer
,&line
,&end
,TRUE
);
1058 wxString
result(wxGTK_CONV_BACK(text
));
1060 return result
.BeforeFirst(wxT('\n'));
1065 if (lineNo
== 0) return GetValue();
1066 return wxEmptyString
;
1070 void wxTextCtrl::OnDropFiles( wxDropFilesEvent
&WXUNUSED(event
) )
1072 /* If you implement this, don't forget to update the documentation!
1073 * (file docs/latex/wx/text.tex) */
1074 wxFAIL_MSG( wxT("wxTextCtrl::OnDropFiles not implemented") );
1077 bool wxTextCtrl::PositionToXY(long pos
, long *x
, long *y
) const
1079 if ( m_windowStyle
& wxTE_MULTILINE
)
1081 wxString text
= GetValue();
1083 // cast to prevent warning. But pos really should've been unsigned.
1084 if( (unsigned long)pos
> text
.Len() )
1090 const wxChar
* stop
= text
.c_str() + pos
;
1091 for ( const wxChar
*p
= text
.c_str(); p
< stop
; p
++ )
1093 if (*p
== wxT('\n'))
1102 else // single line control
1104 if ( pos
<= GTK_ENTRY(m_text
)->text_length
)
1111 // index out of bounds
1119 long wxTextCtrl::XYToPosition(long x
, long y
) const
1121 if (!(m_windowStyle
& wxTE_MULTILINE
)) return 0;
1124 for( int i
=0; i
<y
; i
++ ) pos
+= GetLineLength(i
) + 1; // one for '\n'
1130 int wxTextCtrl::GetLineLength(long lineNo
) const
1132 wxString str
= GetLineText (lineNo
);
1133 return (int) str
.Length();
1136 int wxTextCtrl::GetNumberOfLines() const
1138 if (m_windowStyle
& wxTE_MULTILINE
)
1141 return gtk_text_buffer_get_line_count( m_buffer
);
1143 gint len
= gtk_text_get_length( GTK_TEXT(m_text
) );
1144 char *text
= gtk_editable_get_chars( GTK_EDITABLE(m_text
), 0, len
);
1148 int currentLine
= 0;
1149 for (int i
= 0; i
< len
; i
++ )
1151 if (text
[i
] == '\n')
1156 // currentLine is 0 based, add 1 to get number of lines
1157 return currentLine
+ 1;
1171 void wxTextCtrl::SetInsertionPoint( long pos
)
1173 wxCHECK_RET( m_text
!= NULL
, wxT("invalid text ctrl") );
1175 if ( IsMultiLine() )
1179 gtk_text_buffer_get_iter_at_offset( m_buffer
, &iter
, pos
);
1180 gtk_text_buffer_place_cursor( m_buffer
, &iter
);
1181 gtk_text_view_scroll_mark_onscreen
1183 GTK_TEXT_VIEW(m_text
),
1184 gtk_text_buffer_get_insert( m_buffer
)
1187 gtk_signal_disconnect_by_func( GTK_OBJECT(m_text
),
1188 GTK_SIGNAL_FUNC(gtk_text_changed_callback
), (gpointer
)this);
1190 /* we fake a set_point by inserting and deleting. as the user
1191 isn't supposed to get to know about this non-sense, we
1192 disconnect so that no events are sent to the user program. */
1194 gint tmp
= (gint
)pos
;
1195 gtk_editable_insert_text( GTK_EDITABLE(m_text
), " ", 1, &tmp
);
1196 gtk_editable_delete_text( GTK_EDITABLE(m_text
), tmp
-1, tmp
);
1198 gtk_signal_connect( GTK_OBJECT(m_text
), "changed",
1199 GTK_SIGNAL_FUNC(gtk_text_changed_callback
), (gpointer
)this);
1201 // bring editable's cursor uptodate. Bug in GTK.
1202 SET_EDITABLE_POS(m_text
, gtk_text_get_point( GTK_TEXT(m_text
) ));
1207 gtk_entry_set_position( GTK_ENTRY(m_text
), (int)pos
);
1209 // Bring editable's cursor uptodate. Bug in GTK.
1210 SET_EDITABLE_POS(m_text
, (guint32
)pos
);
1214 void wxTextCtrl::SetInsertionPointEnd()
1216 wxCHECK_RET( m_text
!= NULL
, wxT("invalid text ctrl") );
1218 if (m_windowStyle
& wxTE_MULTILINE
)
1222 gtk_text_buffer_get_end_iter( m_buffer
, &end
);
1223 gtk_text_buffer_place_cursor( m_buffer
, &end
);
1225 SetInsertionPoint(gtk_text_get_length(GTK_TEXT(m_text
)));
1230 gtk_entry_set_position( GTK_ENTRY(m_text
), -1 );
1234 void wxTextCtrl::SetEditable( bool editable
)
1236 wxCHECK_RET( m_text
!= NULL
, wxT("invalid text ctrl") );
1238 if (m_windowStyle
& wxTE_MULTILINE
)
1241 gtk_text_view_set_editable( GTK_TEXT_VIEW(m_text
), editable
);
1243 gtk_text_set_editable( GTK_TEXT(m_text
), editable
);
1248 gtk_entry_set_editable( GTK_ENTRY(m_text
), editable
);
1252 bool wxTextCtrl::Enable( bool enable
)
1254 if (!wxWindowBase::Enable(enable
))
1260 if (m_windowStyle
& wxTE_MULTILINE
)
1263 SetEditable( enable
);
1265 gtk_text_set_editable( GTK_TEXT(m_text
), enable
);
1266 OnParentEnable(enable
);
1271 gtk_widget_set_sensitive( m_text
, enable
);
1277 // wxGTK-specific: called recursively by Enable,
1278 // to give widgets an oppprtunity to correct their colours after they
1279 // have been changed by Enable
1280 void wxTextCtrl::OnParentEnable( bool enable
)
1282 // If we have a custom background colour, we use this colour in both
1283 // disabled and enabled mode, or we end up with a different colour under the
1285 wxColour oldColour
= GetBackgroundColour();
1288 // Need to set twice or it'll optimize the useful stuff out
1289 if (oldColour
== * wxWHITE
)
1290 SetBackgroundColour(*wxBLACK
);
1292 SetBackgroundColour(*wxWHITE
);
1293 SetBackgroundColour(oldColour
);
1297 void wxTextCtrl::MarkDirty()
1302 void wxTextCtrl::DiscardEdits()
1307 // ----------------------------------------------------------------------------
1308 // max text length support
1309 // ----------------------------------------------------------------------------
1311 void wxTextCtrl::IgnoreNextTextUpdate()
1313 m_ignoreNextUpdate
= true;
1316 bool wxTextCtrl::IgnoreTextUpdate()
1318 if ( m_ignoreNextUpdate
)
1320 m_ignoreNextUpdate
= false;
1328 void wxTextCtrl::SetMaxLength(unsigned long len
)
1330 if ( !HasFlag(wxTE_MULTILINE
) )
1332 gtk_entry_set_max_length(GTK_ENTRY(m_text
), len
);
1334 // there is a bug in GTK+ 1.2.x: "changed" signal is emitted even if
1335 // we had tried to enter more text than allowed by max text length and
1336 // the text wasn't really changed
1338 // to detect this and generate TEXT_MAXLEN event instead of
1339 // TEXT_CHANGED one in this case we also catch "insert_text" signal
1341 // when max len is set to 0 we disconnect our handler as it means that
1342 // we shouldn't check anything any more
1345 gtk_signal_connect( GTK_OBJECT(m_text
),
1347 GTK_SIGNAL_FUNC(gtk_insert_text_callback
),
1352 gtk_signal_disconnect_by_func
1355 GTK_SIGNAL_FUNC(gtk_insert_text_callback
),
1362 void wxTextCtrl::SetSelection( long from
, long to
)
1364 wxCHECK_RET( m_text
!= NULL
, wxT("invalid text ctrl") );
1366 if (from
== -1 && to
== -1)
1369 to
= GetValue().Length();
1373 if ( (m_windowStyle
& wxTE_MULTILINE
) &&
1374 !GTK_TEXT(m_text
)->line_start_cache
)
1376 // tell the programmer that it didn't work
1377 wxLogDebug(_T("Can't call SetSelection() before realizing the control"));
1382 if (m_windowStyle
& wxTE_MULTILINE
)
1385 GtkTextIter fromi
, toi
;
1386 gtk_text_buffer_get_iter_at_offset( m_buffer
, &fromi
, from
);
1387 gtk_text_buffer_get_iter_at_offset( m_buffer
, &toi
, to
);
1389 gtk_text_buffer_place_cursor( m_buffer
, &toi
);
1390 gtk_text_buffer_move_mark_by_name( m_buffer
, "selection_bound", &fromi
);
1392 gtk_editable_select_region( GTK_EDITABLE(m_text
), (gint
)from
, (gint
)to
);
1397 gtk_editable_select_region( GTK_EDITABLE(m_text
), (gint
)from
, (gint
)to
);
1401 void wxTextCtrl::ShowPosition( long pos
)
1403 if (m_windowStyle
& wxTE_MULTILINE
)
1407 gtk_text_buffer_get_start_iter( m_buffer
, &iter
);
1408 gtk_text_iter_set_offset( &iter
, pos
);
1409 GtkTextMark
*mark
= gtk_text_buffer_create_mark( m_buffer
, NULL
, &iter
, TRUE
);
1410 gtk_text_view_scroll_to_mark( GTK_TEXT_VIEW(m_text
), mark
, 0.0, FALSE
, 0.0, 0.0 );
1412 GtkAdjustment
*vp
= GTK_TEXT(m_text
)->vadj
;
1413 float totalLines
= (float) GetNumberOfLines();
1416 PositionToXY(pos
, &posX
, &posY
);
1417 float posLine
= (float) posY
;
1418 float p
= (posLine
/totalLines
)*(vp
->upper
- vp
->lower
) + vp
->lower
;
1419 gtk_adjustment_set_value(GTK_TEXT(m_text
)->vadj
, p
);
1420 #endif // GTK 1.x/2.x
1426 wxTextCtrlHitTestResult
1427 wxTextCtrl::HitTest(const wxPoint
& pt
, long *pos
) const
1429 if ( !IsMultiLine() )
1432 return wxTE_HT_UNKNOWN
;
1436 gtk_text_view_window_to_buffer_coords
1438 GTK_TEXT_VIEW(m_text
),
1439 GTK_TEXT_WINDOW_TEXT
,
1445 gtk_text_view_get_iter_at_location(GTK_TEXT_VIEW(m_text
), &iter
, x
, y
);
1447 *pos
= gtk_text_iter_get_offset(&iter
);
1449 return wxTE_HT_ON_TEXT
;
1452 #endif // __WXGTK20__
1454 long wxTextCtrl::GetInsertionPoint() const
1456 wxCHECK_MSG( m_text
!= NULL
, 0, wxT("invalid text ctrl") );
1459 if (m_windowStyle
& wxTE_MULTILINE
)
1461 // There is no direct accessor for the cursor, but
1462 // internally, the cursor is the "mark" called
1463 // "insert" in the text view's btree structure.
1465 GtkTextMark
*mark
= gtk_text_buffer_get_insert( m_buffer
);
1467 gtk_text_buffer_get_iter_at_mark( m_buffer
, &cursor
, mark
);
1469 return gtk_text_iter_get_offset( &cursor
);
1474 return (long) GET_EDITABLE_POS(m_text
);
1478 wxTextPos
wxTextCtrl::GetLastPosition() const
1480 wxCHECK_MSG( m_text
!= NULL
, 0, wxT("invalid text ctrl") );
1484 if (m_windowStyle
& wxTE_MULTILINE
)
1488 gtk_text_buffer_get_end_iter( m_buffer
, &end
);
1490 pos
= gtk_text_iter_get_offset( &end
);
1492 pos
= gtk_text_get_length( GTK_TEXT(m_text
) );
1497 pos
= GTK_ENTRY(m_text
)->text_length
;
1503 void wxTextCtrl::Remove( long from
, long to
)
1505 wxCHECK_RET( m_text
!= NULL
, wxT("invalid text ctrl") );
1508 if (m_windowStyle
& wxTE_MULTILINE
)
1510 GtkTextIter fromi
, toi
;
1511 gtk_text_buffer_get_iter_at_offset( m_buffer
, &fromi
, from
);
1512 gtk_text_buffer_get_iter_at_offset( m_buffer
, &toi
, to
);
1514 gtk_text_buffer_delete( m_buffer
, &fromi
, &toi
);
1518 gtk_editable_delete_text( GTK_EDITABLE(m_text
), (gint
)from
, (gint
)to
);
1521 void wxTextCtrl::Replace( long from
, long to
, const wxString
&value
)
1523 wxCHECK_RET( m_text
!= NULL
, wxT("invalid text ctrl") );
1530 SetInsertionPoint( from
);
1533 gint pos
= (gint
)from
;
1535 wxWX2MBbuf buf
= value
.mbc_str();
1536 gtk_editable_insert_text( GTK_EDITABLE(m_text
), buf
, strlen(buf
), &pos
);
1538 gtk_editable_insert_text( GTK_EDITABLE(m_text
), value
, value
.Length(), &pos
);
1539 #endif // wxUSE_UNICODE
1540 #endif // GTK 1.x/2.x
1544 void wxTextCtrl::Cut()
1546 wxCHECK_RET( m_text
!= NULL
, wxT("invalid text ctrl") );
1549 if (m_windowStyle
& wxTE_MULTILINE
)
1550 g_signal_emit_by_name(m_text
, "cut-clipboard");
1553 gtk_editable_cut_clipboard(GTK_EDITABLE(m_text
) DUMMY_CLIPBOARD_ARG
);
1556 void wxTextCtrl::Copy()
1558 wxCHECK_RET( m_text
!= NULL
, wxT("invalid text ctrl") );
1561 if (m_windowStyle
& wxTE_MULTILINE
)
1562 g_signal_emit_by_name(m_text
, "copy-clipboard");
1565 gtk_editable_copy_clipboard(GTK_EDITABLE(m_text
) DUMMY_CLIPBOARD_ARG
);
1568 void wxTextCtrl::Paste()
1570 wxCHECK_RET( m_text
!= NULL
, wxT("invalid text ctrl") );
1573 if (m_windowStyle
& wxTE_MULTILINE
)
1574 g_signal_emit_by_name(m_text
, "paste-clipboard");
1577 gtk_editable_paste_clipboard(GTK_EDITABLE(m_text
) DUMMY_CLIPBOARD_ARG
);
1581 void wxTextCtrl::Undo()
1584 wxFAIL_MSG( wxT("wxTextCtrl::Undo not implemented") );
1587 void wxTextCtrl::Redo()
1590 wxFAIL_MSG( wxT("wxTextCtrl::Redo not implemented") );
1593 bool wxTextCtrl::CanUndo() const
1596 //wxFAIL_MSG( wxT("wxTextCtrl::CanUndo not implemented") );
1600 bool wxTextCtrl::CanRedo() const
1603 //wxFAIL_MSG( wxT("wxTextCtrl::CanRedo not implemented") );
1607 // If the return values from and to are the same, there is no
1609 void wxTextCtrl::GetSelection(long* fromOut
, long* toOut
) const
1611 wxCHECK_RET( m_text
!= NULL
, wxT("invalid text ctrl") );
1615 bool haveSelection
= false;
1618 if (m_windowStyle
& wxTE_MULTILINE
)
1620 GtkTextIter ifrom
, ito
;
1621 if ( gtk_text_buffer_get_selection_bounds(m_buffer
, &ifrom
, &ito
) )
1623 haveSelection
= true;
1624 from
= gtk_text_iter_get_offset(&ifrom
);
1625 to
= gtk_text_iter_get_offset(&ito
);
1628 else // not multi-line
1630 if ( gtk_editable_get_selection_bounds( GTK_EDITABLE(m_text
),
1633 haveSelection
= true;
1637 if ( (GTK_EDITABLE(m_text
)->has_selection
) )
1639 haveSelection
= true;
1640 from
= (long) GTK_EDITABLE(m_text
)->selection_start_pos
;
1641 to
= (long) GTK_EDITABLE(m_text
)->selection_end_pos
;
1645 if (! haveSelection
)
1646 from
= to
= GetInsertionPoint();
1650 // exchange them to be compatible with wxMSW
1663 bool wxTextCtrl::IsEditable() const
1665 wxCHECK_MSG( m_text
!= NULL
, false, wxT("invalid text ctrl") );
1668 if (m_windowStyle
& wxTE_MULTILINE
)
1670 return gtk_text_view_get_editable(GTK_TEXT_VIEW(m_text
));
1674 return gtk_editable_get_editable(GTK_EDITABLE(m_text
));
1677 return GTK_EDITABLE(m_text
)->editable
;
1681 bool wxTextCtrl::IsModified() const
1686 void wxTextCtrl::Clear()
1688 SetValue( wxT("") );
1691 void wxTextCtrl::OnChar( wxKeyEvent
&key_event
)
1693 wxCHECK_RET( m_text
!= NULL
, wxT("invalid text ctrl") );
1695 if ((key_event
.GetKeyCode() == WXK_RETURN
) && (m_windowStyle
& wxPROCESS_ENTER
))
1697 wxCommandEvent
event(wxEVT_COMMAND_TEXT_ENTER
, m_windowId
);
1698 event
.SetEventObject(this);
1699 event
.SetString(GetValue());
1700 if (GetEventHandler()->ProcessEvent(event
)) return;
1703 if ((key_event
.GetKeyCode() == WXK_RETURN
) && !(m_windowStyle
& wxTE_MULTILINE
))
1705 // This will invoke the dialog default action, such
1706 // as the clicking the default button.
1708 wxWindow
*top_frame
= m_parent
;
1709 while (top_frame
->GetParent() && !(top_frame
->IsTopLevel()))
1710 top_frame
= top_frame
->GetParent();
1712 if (top_frame
&& GTK_IS_WINDOW(top_frame
->m_widget
))
1714 GtkWindow
*window
= GTK_WINDOW(top_frame
->m_widget
);
1716 if (window
->default_widget
)
1718 gtk_widget_activate (window
->default_widget
);
1727 GtkWidget
* wxTextCtrl::GetConnectWidget()
1729 return GTK_WIDGET(m_text
);
1732 bool wxTextCtrl::IsOwnGtkWindow( GdkWindow
*window
)
1734 if (m_windowStyle
& wxTE_MULTILINE
)
1737 return window
== gtk_text_view_get_window( GTK_TEXT_VIEW( m_text
), GTK_TEXT_WINDOW_TEXT
); // pure guesswork
1739 return (window
== GTK_TEXT(m_text
)->text_area
);
1744 return (window
== GTK_ENTRY(m_text
)->text_area
);
1748 // the font will change for subsequent text insertiongs
1749 bool wxTextCtrl::SetFont( const wxFont
&font
)
1751 wxCHECK_MSG( m_text
!= NULL
, false, wxT("invalid text ctrl") );
1753 if ( !wxTextCtrlBase::SetFont(font
) )
1755 // font didn't change, nothing to do
1759 if ( m_windowStyle
& wxTE_MULTILINE
)
1761 SetUpdateFont(true);
1763 m_defaultStyle
.SetFont(font
);
1765 ChangeFontGlobally();
1771 void wxTextCtrl::ChangeFontGlobally()
1773 // this method is very inefficient and hence should be called as rarely as
1776 // TODO: it can be implemented much more efficiently for GTK2
1778 wxASSERT_MSG( (m_windowStyle
& wxTE_MULTILINE
) && m_updateFont
,
1780 _T("shouldn't be called for single line controls") );
1782 wxASSERT_MSG( (m_windowStyle
& wxTE_MULTILINE
),
1783 _T("shouldn't be called for single line controls") );
1786 wxString value
= GetValue();
1787 if ( !value
.empty() )
1789 SetUpdateFont(false);
1798 void wxTextCtrl::UpdateFontIfNeeded()
1801 ChangeFontGlobally();
1806 bool wxTextCtrl::SetForegroundColour(const wxColour
& colour
)
1808 if ( !wxControl::SetForegroundColour(colour
) )
1811 // update default fg colour too
1812 m_defaultStyle
.SetTextColour(colour
);
1817 bool wxTextCtrl::SetBackgroundColour( const wxColour
&colour
)
1819 wxCHECK_MSG( m_text
!= NULL
, false, wxT("invalid text ctrl") );
1821 if ( !wxControl::SetBackgroundColour( colour
) )
1825 if (!m_widget
->window
)
1829 if (!m_backgroundColour
.Ok())
1832 if (m_windowStyle
& wxTE_MULTILINE
)
1835 GdkWindow
*window
= GTK_TEXT(m_text
)->text_area
;
1838 m_backgroundColour
.CalcPixel( gdk_window_get_colormap( window
) );
1839 gdk_window_set_background( window
, m_backgroundColour
.GetColor() );
1840 gdk_window_clear( window
);
1844 // change active background color too
1845 m_defaultStyle
.SetBackgroundColour( colour
);
1850 bool wxTextCtrl::SetStyle( long start
, long end
, const wxTextAttr
& style
)
1852 if ( m_windowStyle
& wxTE_MULTILINE
)
1854 if ( style
.IsDefault() )
1860 gint l
= gtk_text_buffer_get_char_count( m_buffer
);
1862 wxCHECK_MSG( start
>= 0 && end
<= l
, false,
1863 _T("invalid range in wxTextCtrl::SetStyle") );
1865 GtkTextIter starti
, endi
;
1866 gtk_text_buffer_get_iter_at_offset( m_buffer
, &starti
, start
);
1867 gtk_text_buffer_get_iter_at_offset( m_buffer
, &endi
, end
);
1869 // use the attributes from style which are set in it and fall back
1870 // first to the default style and then to the text control default
1871 // colours for the others
1872 wxTextAttr attr
= wxTextAttr::Combine(style
, m_defaultStyle
, this);
1874 wxGtkTextApplyTagsFromAttr( m_buffer
, attr
, &starti
, &endi
);
1878 // VERY dirty way to do that - removes the required text and re-adds it
1879 // with styling (FIXME)
1881 gint l
= gtk_text_get_length( GTK_TEXT(m_text
) );
1883 wxCHECK_MSG( start
>= 0 && end
<= l
, false,
1884 _T("invalid range in wxTextCtrl::SetStyle") );
1886 gint old_pos
= gtk_editable_get_position( GTK_EDITABLE(m_text
) );
1887 char *text
= gtk_editable_get_chars( GTK_EDITABLE(m_text
), start
, end
);
1888 wxString
tmp(text
,*wxConvCurrent
);
1891 gtk_editable_delete_text( GTK_EDITABLE(m_text
), start
, end
);
1892 gtk_editable_set_position( GTK_EDITABLE(m_text
), start
);
1895 wxWX2MBbuf buf
= tmp
.mbc_str();
1896 const char *txt
= buf
;
1897 size_t txtlen
= strlen(buf
);
1899 const char *txt
= tmp
;
1900 size_t txtlen
= tmp
.length();
1903 // use the attributes from style which are set in it and fall back
1904 // first to the default style and then to the text control default
1905 // colours for the others
1906 wxGtkTextInsert(m_text
,
1907 wxTextAttr::Combine(style
, m_defaultStyle
, this),
1911 /* does not seem to help under GTK+ 1.2 !!!
1912 gtk_editable_set_position( GTK_EDITABLE(m_text), old_pos ); */
1913 SetInsertionPoint( old_pos
);
1919 // cannot do this for GTK+'s Entry widget
1924 void wxTextCtrl::DoApplyWidgetStyle(GtkRcStyle
*style
)
1926 gtk_widget_modify_style(m_text
, style
);
1929 void wxTextCtrl::OnCut(wxCommandEvent
& WXUNUSED(event
))
1934 void wxTextCtrl::OnCopy(wxCommandEvent
& WXUNUSED(event
))
1939 void wxTextCtrl::OnPaste(wxCommandEvent
& WXUNUSED(event
))
1944 void wxTextCtrl::OnUndo(wxCommandEvent
& WXUNUSED(event
))
1949 void wxTextCtrl::OnRedo(wxCommandEvent
& WXUNUSED(event
))
1954 void wxTextCtrl::OnUpdateCut(wxUpdateUIEvent
& event
)
1956 event
.Enable( CanCut() );
1959 void wxTextCtrl::OnUpdateCopy(wxUpdateUIEvent
& event
)
1961 event
.Enable( CanCopy() );
1964 void wxTextCtrl::OnUpdatePaste(wxUpdateUIEvent
& event
)
1966 event
.Enable( CanPaste() );
1969 void wxTextCtrl::OnUpdateUndo(wxUpdateUIEvent
& event
)
1971 event
.Enable( CanUndo() );
1974 void wxTextCtrl::OnUpdateRedo(wxUpdateUIEvent
& event
)
1976 event
.Enable( CanRedo() );
1979 void wxTextCtrl::OnInternalIdle()
1981 wxCursor cursor
= m_cursor
;
1982 if (g_globalCursor
.Ok()) cursor
= g_globalCursor
;
1987 GdkWindow
*window
= (GdkWindow
*) NULL
;
1988 if (HasFlag(wxTE_MULTILINE
))
1989 window
= GTK_TEXT(m_text
)->text_area
;
1991 window
= GTK_ENTRY(m_text
)->text_area
;
1994 gdk_window_set_cursor( window
, cursor
.GetCursor() );
1996 if (!g_globalCursor
.Ok())
1997 cursor
= *wxSTANDARD_CURSOR
;
1999 window
= m_widget
->window
;
2000 if ((window
) && !(GTK_WIDGET_NO_WINDOW(m_widget
)))
2001 gdk_window_set_cursor( window
, cursor
.GetCursor() );
2005 if (g_delayedFocus
== this)
2007 if (GTK_WIDGET_REALIZED(m_widget
))
2009 gtk_widget_grab_focus( m_widget
);
2010 g_delayedFocus
= NULL
;
2014 if (wxUpdateUIEvent::CanUpdate(this))
2015 UpdateWindowUI(wxUPDATE_UI_FROMIDLE
);
2018 wxSize
wxTextCtrl::DoGetBestSize() const
2020 // FIXME should be different for multi-line controls...
2021 wxSize
ret( wxControl::DoGetBestSize() );
2022 wxSize
best(80, ret
.y
);
2023 CacheBestSize(best
);
2027 // ----------------------------------------------------------------------------
2029 // ----------------------------------------------------------------------------
2031 void wxTextCtrl::Freeze()
2033 if ( HasFlag(wxTE_MULTILINE
) )
2036 if ( !m_frozenness
++ )
2038 // freeze textview updates and remove buffer
2039 g_signal_connect( G_OBJECT(m_text
), "expose_event",
2040 GTK_SIGNAL_FUNC(gtk_text_exposed_callback
), (gpointer
)this);
2041 g_signal_connect( G_OBJECT(m_widget
), "expose_event",
2042 GTK_SIGNAL_FUNC(gtk_text_exposed_callback
), (gpointer
)this);
2043 gtk_widget_set_sensitive(m_widget
, false);
2044 g_object_ref(m_buffer
);
2045 gtk_text_view_set_buffer(GTK_TEXT_VIEW(m_text
), gtk_text_buffer_new(NULL
));
2048 gtk_text_freeze(GTK_TEXT(m_text
));
2053 void wxTextCtrl::Thaw()
2055 if ( HasFlag(wxTE_MULTILINE
) )
2058 wxASSERT_MSG( m_frozenness
> 0, _T("Thaw() without matching Freeze()") );
2060 if ( !--m_frozenness
)
2062 // Reattach buffer and thaw textview updates
2063 gtk_text_view_set_buffer(GTK_TEXT_VIEW(m_text
), m_buffer
);
2064 g_object_unref(m_buffer
);
2065 gtk_widget_set_sensitive(m_widget
, true);
2066 g_signal_handlers_disconnect_by_func(m_widget
, (gpointer
)gtk_text_exposed_callback
, this);
2067 g_signal_handlers_disconnect_by_func(m_text
, (gpointer
)gtk_text_exposed_callback
, this);
2070 GTK_TEXT(m_text
)->vadj
->value
= 0.0;
2072 gtk_text_thaw(GTK_TEXT(m_text
));
2077 // ----------------------------------------------------------------------------
2078 // wxTextUrlEvent passing if style & wxTE_AUTO_URL
2079 // ----------------------------------------------------------------------------
2083 // FIXME: when dragging on a link the sample gets an "Unknown event".
2084 // This might be an excessive event from us or a buggy wxMouseEvent::Moving() or
2085 // a buggy sample, or something else
2086 void wxTextCtrl::OnUrlMouseEvent(wxMouseEvent
& event
)
2089 if(!(m_windowStyle
& wxTE_AUTO_URL
))
2093 GtkTextIter start
, end
;
2094 GtkTextTag
*tag
= gtk_text_tag_table_lookup(gtk_text_buffer_get_tag_table(m_buffer
),
2097 gtk_text_view_window_to_buffer_coords(GTK_TEXT_VIEW(m_text
), GTK_TEXT_WINDOW_WIDGET
,
2098 event
.GetX(), event
.GetY(), &x
, &y
);
2100 gtk_text_view_get_iter_at_location(GTK_TEXT_VIEW(m_text
), &end
, x
, y
);
2101 if (!gtk_text_iter_has_tag(&end
, tag
))
2103 gdk_window_set_cursor(gtk_text_view_get_window(GTK_TEXT_VIEW(m_text
),
2104 GTK_TEXT_WINDOW_TEXT
), m_gdkXTermCursor
);
2108 gdk_window_set_cursor(gtk_text_view_get_window(GTK_TEXT_VIEW(m_text
),
2109 GTK_TEXT_WINDOW_TEXT
), m_gdkHandCursor
);
2112 if(!gtk_text_iter_begins_tag(&start
, tag
))
2113 gtk_text_iter_backward_to_tag_toggle(&start
, tag
);
2114 if(!gtk_text_iter_ends_tag(&end
, tag
))
2115 gtk_text_iter_forward_to_tag_toggle(&end
, tag
);
2117 // Native context menu is probably not desired on an URL.
2118 // Consider making this dependant on ProcessEvent(wxTextUrlEvent) return value
2119 if(event
.GetEventType() == wxEVT_RIGHT_DOWN
)
2122 wxTextUrlEvent
url_event(m_windowId
, event
,
2123 gtk_text_iter_get_offset(&start
),
2124 gtk_text_iter_get_offset(&end
));
2126 InitCommandEvent(url_event
);
2127 // Is that a good idea? Seems not (pleasure with gtk_text_view_start_selection_drag)
2128 //event.Skip(!GetEventHandler()->ProcessEvent(url_event));
2129 GetEventHandler()->ProcessEvent(url_event
);
2133 // ----------------------------------------------------------------------------
2135 // ----------------------------------------------------------------------------
2137 GtkAdjustment
*wxTextCtrl::GetVAdj() const
2139 if ( !IsMultiLine() )
2143 return gtk_scrolled_window_get_vadjustment(GTK_SCROLLED_WINDOW(m_widget
));
2145 return GTK_TEXT(m_text
)->vadj
;
2149 bool wxTextCtrl::DoScroll(GtkAdjustment
*adj
, int diff
)
2151 float value
= adj
->value
+ diff
;
2156 float upper
= adj
->upper
- adj
->page_size
;
2157 if ( value
> upper
)
2160 // did we noticeably change the scroll position?
2161 if ( fabs(adj
->value
- value
) < 0.2 )
2163 // well, this is what Robert does in wxScrollBar, so it must be good...
2170 gtk_adjustment_value_changed(GTK_ADJUSTMENT(adj
));
2172 gtk_signal_emit_by_name(GTK_OBJECT(adj
), "value_changed");
2178 bool wxTextCtrl::ScrollLines(int lines
)
2180 GtkAdjustment
*adj
= GetVAdj();
2185 int diff
= (int)ceil(lines
*adj
->step_increment
);
2187 // this is hardcoded to 10 in GTK+ 1.2 (great idea)
2188 int diff
= 10*lines
;
2191 return DoScroll(adj
, diff
);
2194 bool wxTextCtrl::ScrollPages(int pages
)
2196 GtkAdjustment
*adj
= GetVAdj();
2200 return DoScroll(adj
, (int)ceil(pages
*adj
->page_increment
));
2206 wxTextCtrl::GetClassDefaultAttributes(wxWindowVariant
WXUNUSED(variant
))
2208 return GetDefaultAttributesFromGTKWidget(gtk_entry_new
, true);