]> git.saurik.com Git - wxWidgets.git/blame - src/gtk/textctrl.cpp
added wxUSE_STDPATHS
[wxWidgets.git] / src / gtk / textctrl.cpp
CommitLineData
c801d85f
KB
1/////////////////////////////////////////////////////////////////////////////
2// Name: textctrl.cpp
3// Purpose:
4// Author: Robert Roebling
f96aa4d9 5// Id: $Id$
a81258be 6// Copyright: (c) 1998 Robert Roebling, Vadim Zeitlin
65571936 7// Licence: wxWindows licence
c801d85f
KB
8/////////////////////////////////////////////////////////////////////////////
9
14f355c2 10#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
c801d85f
KB
11#pragma implementation "textctrl.h"
12#endif
13
14f355c2
VS
14// For compilers that support precompilation, includes "wx.h".
15#include "wx/wxprec.h"
16
c801d85f
KB
17#include "wx/textctrl.h"
18#include "wx/utils.h"
ae0bdb01 19#include "wx/intl.h"
a1f79c1e 20#include "wx/log.h"
ae0bdb01 21#include "wx/settings.h"
fc71ef6e 22#include "wx/panel.h"
fab591c5 23#include "wx/strconv.h"
cc3da3f8 24#include "wx/fontutil.h" // for wxNativeFontInfo (GetNativeFontInfo())
c801d85f 25
a81258be
RR
26#include <sys/types.h>
27#include <sys/stat.h>
28#include <ctype.h>
463c4d71 29#include "wx/math.h"
a81258be 30
9e691f46
VZ
31#include "wx/gtk/private.h"
32#include <gdk/gdkkeysyms.h>
b292e2f5 33
acfd422a
RR
34//-----------------------------------------------------------------------------
35// idle system
36//-----------------------------------------------------------------------------
37
38extern void wxapp_install_idle_handler();
39extern bool g_isIdle;
40
b292e2f5
RR
41//-----------------------------------------------------------------------------
42// data
43//-----------------------------------------------------------------------------
44
65045edd
RR
45extern bool g_blockEventsOnDrag;
46extern wxCursor g_globalCursor;
d7fa7eaa 47extern wxWindowGTK *g_delayedFocus;
b292e2f5 48
eda40bfc
VZ
49// ----------------------------------------------------------------------------
50// helpers
51// ----------------------------------------------------------------------------
52
cc3da3f8 53#ifdef __WXGTK20__
25497324
KH
54static void wxGtkTextApplyTagsFromAttr(GtkTextBuffer *text_buffer,
55 const wxTextAttr& attr,
56 GtkTextIter *start,
57 GtkTextIter *end)
58{
59 static gchar buf[1024];
60 GtkTextTag *tag;
61
62 if (attr.HasFont())
63 {
64 char *font_string;
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 ),
69 buf );
70 if (!tag)
71 tag = gtk_text_buffer_create_tag( text_buffer, buf,
72 "font-desc", font_description,
73 NULL );
74 gtk_text_buffer_apply_tag (text_buffer, tag, start, end);
75 g_free (font_string);
76 }
77
78 if (attr.HasTextColour())
79 {
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 ),
84 buf );
85 if (!tag)
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);
89 }
90
91 if (attr.HasBackgroundColour())
92 {
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 ),
97 buf );
98 if (!tag)
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);
102 }
103}
104
cc3da3f8
RR
105static void wxGtkTextInsert(GtkWidget *text,
106 GtkTextBuffer *text_buffer,
107 const wxTextAttr& attr,
108 wxCharBuffer buffer)
109
110{
25497324
KH
111 gint start_offset;
112 GtkTextIter iter, start;
cc3da3f8 113
a61bbf87
JS
114 gtk_text_buffer_get_iter_at_mark( text_buffer, &iter,
115 gtk_text_buffer_get_insert (text_buffer) );
25497324
KH
116 start_offset = gtk_text_iter_get_offset (&iter);
117 gtk_text_buffer_insert( text_buffer, &iter, buffer, strlen(buffer) );
118
119 gtk_text_buffer_get_iter_at_offset (text_buffer, &start, start_offset);
a61bbf87 120
25497324 121 wxGtkTextApplyTagsFromAttr(text_buffer, attr, &start, &iter);
cc3da3f8
RR
122}
123#else
eda40bfc
VZ
124static void wxGtkTextInsert(GtkWidget *text,
125 const wxTextAttr& attr,
126 const char *txt,
127 size_t len)
128{
129 GdkFont *font = attr.HasFont() ? attr.GetFont().GetInternalFont()
130 : NULL;
131
132 GdkColor *colFg = attr.HasTextColour() ? attr.GetTextColour().GetColor()
133 : NULL;
134
135 GdkColor *colBg = attr.HasBackgroundColour()
136 ? attr.GetBackgroundColour().GetColor()
137 : NULL;
138
139 gtk_text_insert( GTK_TEXT(text), font, colFg, colBg, txt, len );
140}
a8bf1826 141#endif // GTK 1.x
eda40bfc 142
ce2f50e3
VZ
143// ----------------------------------------------------------------------------
144// "insert_text" for GtkEntry
145// ----------------------------------------------------------------------------
146
147static void
148gtk_insert_text_callback(GtkEditable *editable,
149 const gchar *new_text,
150 gint new_text_length,
151 gint *position,
152 wxTextCtrl *win)
153{
76fcf0f2
RR
154 if (g_isIdle)
155 wxapp_install_idle_handler();
156
ce2f50e3
VZ
157 // we should only be called if we have a max len limit at all
158 GtkEntry *entry = GTK_ENTRY (editable);
159
160 wxCHECK_RET( entry->text_max_length, _T("shouldn't be called") );
161
162 // check that we don't overflow the max length limit
163 //
164 // FIXME: this doesn't work when we paste a string which is going to be
165 // truncated
166 if ( entry->text_length == entry->text_max_length )
167 {
168 // we don't need to run the base class version at all
169 gtk_signal_emit_stop_by_name(GTK_OBJECT(editable), "insert_text");
170
171 // remember that the next changed signal is to be ignored to avoid
172 // generating a dummy wxEVT_COMMAND_TEXT_UPDATED event
173 win->IgnoreNextTextUpdate();
174
175 // and generate the correct one ourselves
176 wxCommandEvent event(wxEVT_COMMAND_TEXT_MAXLEN, win->GetId());
177 event.SetEventObject(win);
178 event.SetString(win->GetValue());
179 win->GetEventHandler()->ProcessEvent( event );
180 }
181}
182
9440c3d0
KH
183#ifdef __WXGTK20__
184// Implementation of wxTE_AUTO_URL for wxGTK2 by Mart Raudsepp,
185
186static void
187au_apply_tag_callback(GtkTextBuffer *buffer,
188 GtkTextTag *tag,
189 GtkTextIter *start,
190 GtkTextIter *end,
191 gpointer textctrl)
192{
193 if(tag == gtk_text_tag_table_lookup(gtk_text_buffer_get_tag_table(buffer), "wxUrl"))
194 g_signal_stop_emission_by_name(buffer, "apply_tag");
195}
196
197//-----------------------------------------------------------------------------
198// GtkTextCharPredicates for gtk_text_iter_*_find_char
199//-----------------------------------------------------------------------------
200
201static gboolean
202pred_whitespace (gunichar ch, gpointer user_data)
203{
204 return g_unichar_isspace(ch);
205}
206
207static gboolean
208pred_non_whitespace (gunichar ch, gpointer user_data)
209{
210 return !g_unichar_isspace(ch);
211}
212
213static gboolean
214pred_nonpunct (gunichar ch, gpointer user_data)
215{
216 return !g_unichar_ispunct(ch);
217}
218
219static gboolean
220pred_nonpunct_or_slash (gunichar ch, gpointer user_data)
221{
222 return !g_unichar_ispunct(ch) || ch == '/';
223}
224
225//-----------------------------------------------------------------------------
226// Check for links between s and e and correct tags as necessary
227//-----------------------------------------------------------------------------
228
229// This function should be made match better while being efficient at one point.
230// Most probably with a row of regular expressions.
231static void
232au_check_word( GtkTextIter *s, GtkTextIter *e )
233{
234 static const char *URIPrefixes[] =
235 {
236 "http://",
237 "ftp://",
238 "www.",
239 "ftp.",
240 "mailto://",
241 "https://",
242 "file://",
243 "nntp://",
244 "news://",
245 "telnet://",
246 "mms://",
247 "gopher://",
248 "prospero://",
249 "wais://",
250 };
251
252 GtkTextIter start = *s, end = *e;
253 GtkTextBuffer *buffer = gtk_text_iter_get_buffer(s);
254
255 // Get our special link tag
256 GtkTextTag *tag = gtk_text_tag_table_lookup(gtk_text_buffer_get_tag_table(buffer), "wxUrl");
257
258 // Get rid of punctuation from beginning and end.
259 // Might want to move this to au_check_range if an improved link checking doesn't
260 // use some intelligent punctuation checking itself (beware of undesired iter modifications).
261 if(g_unichar_ispunct( gtk_text_iter_get_char( &start ) ) )
262 gtk_text_iter_forward_find_char( &start, pred_nonpunct, NULL, e );
263
264 gtk_text_iter_backward_find_char( &end, pred_nonpunct_or_slash, NULL, &start );
265 gtk_text_iter_forward_char(&end);
266
267 gchar* text = gtk_text_iter_get_text( &start, &end );
268 size_t len = strlen(text), prefix_len;
269 size_t n;
270
271 for( n = 0; n < WXSIZEOF(URIPrefixes); ++n )
272 {
273 prefix_len = strlen(URIPrefixes[n]);
274 if((len > prefix_len) && !strncasecmp(text, URIPrefixes[n], prefix_len))
275 break;
276 }
277
278 if(n < WXSIZEOF(URIPrefixes))
279 {
280 gulong signal_id = g_signal_handler_find(buffer,
281 (GSignalMatchType) (G_SIGNAL_MATCH_FUNC),
282 0, 0, NULL,
283 (gpointer)au_apply_tag_callback, NULL);
284
285 g_signal_handler_block(buffer, signal_id);
286 gtk_text_buffer_apply_tag(buffer, tag, &start, &end);
287 g_signal_handler_unblock(buffer, signal_id);
288 }
289}
290
291static void
292au_check_range(GtkTextIter *s,
293 GtkTextIter *range_end)
294{
295 GtkTextIter range_start = *s;
296 GtkTextIter word_end;
297 GtkTextBuffer *buffer = gtk_text_iter_get_buffer(s);
298 GtkTextTag *tag = gtk_text_tag_table_lookup(gtk_text_buffer_get_tag_table(buffer), "wxUrl");
299
300 gtk_text_buffer_remove_tag(buffer, tag, s, range_end);
301
302 if(g_unichar_isspace(gtk_text_iter_get_char(&range_start)))
303 gtk_text_iter_forward_find_char(&range_start, pred_non_whitespace, NULL, range_end);
304
305 while(!gtk_text_iter_equal(&range_start, range_end))
306 {
307 word_end = range_start;
308 gtk_text_iter_forward_find_char(&word_end, pred_whitespace, NULL, range_end);
309
310 // Now we should have a word delimited by range_start and word_end, correct link tags
311 au_check_word(&range_start, &word_end);
312
313 range_start = word_end;
314 gtk_text_iter_forward_find_char(&range_start, pred_non_whitespace, NULL, range_end);
315 }
316}
317
318//-----------------------------------------------------------------------------
319// "insert-text" for GtkTextBuffer
320//-----------------------------------------------------------------------------
321
322static void
323au_insert_text_callback(GtkTextBuffer *buffer,
324 GtkTextIter *end,
325 gchar *text,
326 gint len,
327 wxTextCtrl *win)
328{
329 if (!len || !(win->GetWindowStyleFlag() & wxTE_AUTO_URL) )
330 return;
331
332 GtkTextIter start = *end;
333 gtk_text_iter_backward_chars(&start, g_utf8_strlen(text, len));
334
335 GtkTextIter line_start = start;
336 GtkTextIter line_end = *end;
337 GtkTextIter words_start = start;
338 GtkTextIter words_end = *end;
339
340 gtk_text_iter_set_line(&line_start, gtk_text_iter_get_line(&start));
341 gtk_text_iter_forward_to_line_end(&line_end);
342 gtk_text_iter_backward_find_char(&words_start, pred_whitespace, NULL, &line_start);
343 gtk_text_iter_forward_find_char(&words_end, pred_whitespace, NULL, &line_end);
344
345 au_check_range(&words_start, &words_end);
346}
347
348//-----------------------------------------------------------------------------
349// "delete-range" for GtkTextBuffer
350//-----------------------------------------------------------------------------
351
352static void
353au_delete_range_callback(GtkTextBuffer *buffer,
354 GtkTextIter *start,
355 GtkTextIter *end,
356 wxTextCtrl *win)
357{
358 if( !(win->GetWindowStyleFlag() & wxTE_AUTO_URL) )
359 return;
360
361 GtkTextIter line_start = *start, line_end = *end;
362
363 gtk_text_iter_set_line(&line_start, gtk_text_iter_get_line(start));
364 gtk_text_iter_forward_to_line_end(&line_end);
365 gtk_text_iter_backward_find_char(start, pred_whitespace, NULL, &line_start);
366 gtk_text_iter_forward_find_char(end, pred_whitespace, NULL, &line_end);
367
368 au_check_range(start, end);
369}
370
371
372#endif
373
c801d85f 374//-----------------------------------------------------------------------------
2f2aa628 375// "changed"
c801d85f
KB
376//-----------------------------------------------------------------------------
377
805dd538 378static void
ba3f6b44 379gtk_text_changed_callback( GtkWidget *widget, wxTextCtrl *win )
484e45bf 380{
ce2f50e3
VZ
381 if ( win->IgnoreTextUpdate() )
382 return;
383
a2053b27 384 if (!win->m_hasVMT) return;
805dd538 385
bb69661b 386 if (g_isIdle)
3c679789 387 wxapp_install_idle_handler();
a8bf1826 388
034be888 389 win->SetModified();
c04ec496 390#ifndef __WXGTK20__
01041145 391 win->UpdateFontIfNeeded();
c04ec496 392#endif // !__WXGTK20__
a8bf1826 393
f03fc89f 394 wxCommandEvent event( wxEVT_COMMAND_TEXT_UPDATED, win->GetId() );
2830bf19
RR
395 event.SetEventObject( win );
396 win->GetEventHandler()->ProcessEvent( event );
6de97a3b 397}
112892b9 398
41b81aed
RR
399//-----------------------------------------------------------------------------
400// "expose_event" from scrolled window and textview
401//-----------------------------------------------------------------------------
402
403#ifdef __WXGTK20__
404static gboolean
405gtk_text_exposed_callback( GtkWidget *widget, GdkEventExpose *event, wxTextCtrl *win )
406{
407 return TRUE;
408}
409#endif
410
2830bf19 411//-----------------------------------------------------------------------------
034be888 412// "changed" from vertical scrollbar
2830bf19
RR
413//-----------------------------------------------------------------------------
414
fab591c5 415#ifndef __WXGTK20__
805dd538 416static void
034be888 417gtk_scrollbar_changed_callback( GtkWidget *WXUNUSED(widget), wxTextCtrl *win )
2830bf19 418{
3c679789 419 if (!win->m_hasVMT) return;
bb69661b
VZ
420
421 if (g_isIdle)
3c679789 422 wxapp_install_idle_handler();
acfd422a 423
2830bf19
RR
424 win->CalculateScrollbar();
425}
fab591c5 426#endif
2830bf19 427
1c35b54e
VZ
428// ----------------------------------------------------------------------------
429// redraw callback for multiline text
430// ----------------------------------------------------------------------------
431
432#ifndef __WXGTK20__
433
434// redrawing a GtkText from inside a wxYield() call results in crashes (the
435// text sample shows it in its "Add lines" command which shows wxProgressDialog
436// which implicitly calls wxYield()) so we override GtkText::draw() and simply
437// don't do anything if we're inside wxYield()
438
439extern bool wxIsInsideYield;
440
2e08b1a3
VZ
441extern "C" {
442 typedef void (*GtkDrawCallback)(GtkWidget *widget, GdkRectangle *rect);
443}
1c35b54e
VZ
444
445static GtkDrawCallback gs_gtk_text_draw = NULL;
446
447extern "C"
448void wxgtk_text_draw( GtkWidget *widget, GdkRectangle *rect)
449{
450 if ( !wxIsInsideYield )
451 {
452 wxCHECK_RET( gs_gtk_text_draw != wxgtk_text_draw,
453 _T("infinite recursion in wxgtk_text_draw aborted") );
454
455 gs_gtk_text_draw(widget, rect);
456 }
457}
458
459#endif // __WXGTK20__
460
2f2aa628
RR
461//-----------------------------------------------------------------------------
462// wxTextCtrl
463//-----------------------------------------------------------------------------
464
465IMPLEMENT_DYNAMIC_CLASS(wxTextCtrl,wxControl)
466
c801d85f 467BEGIN_EVENT_TABLE(wxTextCtrl, wxControl)
2830bf19 468 EVT_CHAR(wxTextCtrl::OnChar)
e702ff0f
JS
469
470 EVT_MENU(wxID_CUT, wxTextCtrl::OnCut)
471 EVT_MENU(wxID_COPY, wxTextCtrl::OnCopy)
472 EVT_MENU(wxID_PASTE, wxTextCtrl::OnPaste)
473 EVT_MENU(wxID_UNDO, wxTextCtrl::OnUndo)
474 EVT_MENU(wxID_REDO, wxTextCtrl::OnRedo)
475
476 EVT_UPDATE_UI(wxID_CUT, wxTextCtrl::OnUpdateCut)
477 EVT_UPDATE_UI(wxID_COPY, wxTextCtrl::OnUpdateCopy)
478 EVT_UPDATE_UI(wxID_PASTE, wxTextCtrl::OnUpdatePaste)
479 EVT_UPDATE_UI(wxID_UNDO, wxTextCtrl::OnUpdateUndo)
480 EVT_UPDATE_UI(wxID_REDO, wxTextCtrl::OnUpdateRedo)
9440c3d0
KH
481
482#ifdef __WXGTK20__
483 // wxTE_AUTO_URL wxTextUrl support. Currently only creates
484 // wxTextUrlEvent in the same cases as wxMSW, more can be added here.
485 EVT_MOTION (wxTextCtrl::OnUrlMouseEvent)
486 EVT_LEFT_DOWN (wxTextCtrl::OnUrlMouseEvent)
487 EVT_LEFT_UP (wxTextCtrl::OnUrlMouseEvent)
488 EVT_LEFT_DCLICK (wxTextCtrl::OnUrlMouseEvent)
489 EVT_RIGHT_DOWN (wxTextCtrl::OnUrlMouseEvent)
490 EVT_RIGHT_UP (wxTextCtrl::OnUrlMouseEvent)
491 EVT_RIGHT_DCLICK(wxTextCtrl::OnUrlMouseEvent)
492#endif
c801d85f
KB
493END_EVENT_TABLE()
494
01041145 495void wxTextCtrl::Init()
f5abe911 496{
ce2f50e3 497 m_ignoreNextUpdate =
7d8268a1
WS
498 m_modified = false;
499 SetUpdateFont(false);
3ca6a5f0
BP
500 m_text =
501 m_vScrollbar = (GtkWidget *)NULL;
41b81aed
RR
502#ifdef __WXGTK20__
503 m_frozenness = 0;
9440c3d0
KH
504 m_gdkHandCursor = NULL;
505 m_gdkXTermCursor = NULL;
506#endif
507}
508
509wxTextCtrl::~wxTextCtrl()
510{
511#ifdef __WXGTK20__
512 if(m_gdkHandCursor)
513 gdk_cursor_unref(m_gdkHandCursor);
514 if(m_gdkXTermCursor)
515 gdk_cursor_unref(m_gdkXTermCursor);
7d8268a1 516#endif
f5abe911 517}
13289f04 518
13111b2a
VZ
519wxTextCtrl::wxTextCtrl( wxWindow *parent,
520 wxWindowID id,
521 const wxString &value,
522 const wxPoint &pos,
523 const wxSize &size,
524 long style,
525 const wxValidator& validator,
526 const wxString &name )
f5abe911 527{
01041145
VZ
528 Init();
529
f5abe911
RR
530 Create( parent, id, value, pos, size, style, validator, name );
531}
c801d85f 532
13111b2a
VZ
533bool wxTextCtrl::Create( wxWindow *parent,
534 wxWindowID id,
535 const wxString &value,
536 const wxPoint &pos,
537 const wxSize &size,
538 long style,
539 const wxValidator& validator,
540 const wxString &name )
c801d85f 541{
7d8268a1
WS
542 m_needParent = true;
543 m_acceptsFocus = true;
484e45bf 544
4dcaf11a
RR
545 if (!PreCreation( parent, pos, size ) ||
546 !CreateBase( parent, id, pos, size, style, validator, name ))
547 {
223d09f6 548 wxFAIL_MSG( wxT("wxTextCtrl creation failed") );
7d8268a1 549 return false;
4dcaf11a 550 }
6de97a3b 551
805dd538 552
7d8268a1 553 m_vScrollbarVisible = false;
13289f04 554
2830bf19 555 bool multi_line = (style & wxTE_MULTILINE) != 0;
a8bf1826 556
ab46dc18 557 if (multi_line)
2830bf19 558 {
fab591c5
RR
559#ifdef __WXGTK20__
560 // Create view
561 m_text = gtk_text_view_new();
a8bf1826 562
41b81aed 563 m_buffer = gtk_text_view_get_buffer( GTK_TEXT_VIEW(m_text) );
a8bf1826 564
fab591c5
RR
565 // create scrolled window
566 m_widget = gtk_scrolled_window_new( NULL, NULL );
567 gtk_scrolled_window_set_policy( GTK_SCROLLED_WINDOW( m_widget ),
568 GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC );
a8bf1826 569
fab591c5
RR
570 // Insert view into scrolled window
571 gtk_container_add( GTK_CONTAINER(m_widget), m_text );
a8bf1826 572
fab591c5 573 // Global settings which can be overridden by tags, I guess.
9d522606 574 if (HasFlag( wxHSCROLL ) || HasFlag( wxTE_DONTWRAP ))
fab591c5
RR
575 gtk_text_view_set_wrap_mode( GTK_TEXT_VIEW( m_text ), GTK_WRAP_NONE );
576 else
577 gtk_text_view_set_wrap_mode( GTK_TEXT_VIEW( m_text ), GTK_WRAP_WORD );
805dd538 578
fab591c5
RR
579 if (!HasFlag(wxNO_BORDER))
580 gtk_scrolled_window_set_shadow_type( GTK_SCROLLED_WINDOW(m_widget), GTK_SHADOW_IN );
7d8268a1 581
e327fddf
KH
582 gtk_widget_add_events( GTK_WIDGET(m_text), GDK_ENTER_NOTIFY_MASK | GDK_LEAVE_NOTIFY_MASK );
583
055e633d 584 GTK_WIDGET_UNSET_FLAGS( m_widget, GTK_CAN_FOCUS );
fab591c5
RR
585#else
586 // create our control ...
2830bf19
RR
587 m_text = gtk_text_new( (GtkAdjustment *) NULL, (GtkAdjustment *) NULL );
588
fab591c5 589 // ... and put into the upper left hand corner of the table
7d8268a1 590 bool bHasHScrollbar = false;
2830bf19 591 m_widget = gtk_table_new(bHasHScrollbar ? 2 : 1, 2, FALSE);
5664fc32 592 GTK_WIDGET_UNSET_FLAGS( m_widget, GTK_CAN_FOCUS );
2830bf19 593 gtk_table_attach( GTK_TABLE(m_widget), m_text, 0, 1, 0, 1,
41dee9d0 594 (GtkAttachOptions)(GTK_FILL | GTK_EXPAND | GTK_SHRINK),
f5368809
RR
595 (GtkAttachOptions)(GTK_FILL | GTK_EXPAND | GTK_SHRINK),
596 0, 0);
bb69661b 597
fab591c5 598 // always wrap words
5c387335 599 gtk_text_set_word_wrap( GTK_TEXT(m_text), TRUE );
bb69661b 600
fab591c5 601 // finally, put the vertical scrollbar in the upper right corner
ab46dc18
RR
602 m_vScrollbar = gtk_vscrollbar_new( GTK_TEXT(m_text)->vadj );
603 GTK_WIDGET_UNSET_FLAGS( m_vScrollbar, GTK_CAN_FOCUS );
ab46dc18
RR
604 gtk_table_attach(GTK_TABLE(m_widget), m_vScrollbar, 1, 2, 0, 1,
605 GTK_FILL,
606 (GtkAttachOptions)(GTK_EXPAND | GTK_FILL | GTK_SHRINK),
607 0, 0);
fab591c5 608#endif
2830bf19
RR
609 }
610 else
611 {
fab591c5 612 // a single-line text control: no need for scrollbars
2830bf19 613 m_widget =
1c35b54e 614 m_text = gtk_entry_new();
44c5573d 615
7d8268a1 616#ifdef __WXGTK20__
02a6e358
RR
617 if (style & wxNO_BORDER)
618 g_object_set( GTK_ENTRY(m_text), "has-frame", FALSE, NULL );
44c5573d 619#endif
2830bf19 620 }
484e45bf 621
db434467 622 m_parent->DoAddChild( this );
eda40bfc 623
76fcf0f2 624 m_focusWidget = m_text;
db434467 625
abdeb9e7 626 PostCreation(size);
484e45bf 627
2830bf19 628 if (multi_line)
2830bf19 629 gtk_widget_show(m_text);
13289f04 630
fab591c5 631#ifndef __WXGTK20__
ab46dc18
RR
632 if (multi_line)
633 {
634 gtk_signal_connect(GTK_OBJECT(GTK_TEXT(m_text)->vadj), "changed",
635 (GtkSignalFunc) gtk_scrollbar_changed_callback, (gpointer) this );
1c35b54e 636
1c35b54e
VZ
637 // only initialize gs_gtk_text_draw once, starting from the next the
638 // klass::draw will already be wxgtk_text_draw
639 if ( !gs_gtk_text_draw )
640 {
641 GtkDrawCallback&
642 draw = GTK_WIDGET_CLASS(GTK_OBJECT(m_text)->klass)->draw;
643
644 gs_gtk_text_draw = draw;
645
646 draw = wxgtk_text_draw;
647 }
ab46dc18 648 }
fab591c5 649#endif // GTK+ 1.x
3358d36e 650
7d8268a1 651 if (!value.empty())
2830bf19 652 {
fab591c5
RR
653#ifdef __WXGTK20__
654 SetValue( value );
655#else
3358d36e 656
9e691f46 657#if !GTK_CHECK_VERSION(1, 2, 0)
3358d36e
VZ
658 // if we don't realize it, GTK 1.0.6 dies with a SIGSEGV in
659 // gtk_editable_insert_text()
660 gtk_widget_realize(m_text);
661#endif // GTK 1.0
662
fab591c5 663 gint tmp = 0;
05939a81 664#if wxUSE_UNICODE
3358d36e 665 wxWX2MBbuf val = value.mbc_str();
05939a81 666 gtk_editable_insert_text( GTK_EDITABLE(m_text), val, strlen(val), &tmp );
fab591c5 667#else
2830bf19 668 gtk_editable_insert_text( GTK_EDITABLE(m_text), value, value.Length(), &tmp );
fab591c5 669#endif
3358d36e 670
291a8f20
RR
671 if (multi_line)
672 {
fab591c5 673 // Bring editable's cursor uptodate. Bug in GTK.
9e691f46 674 SET_EDITABLE_POS(m_text, gtk_text_get_point( GTK_TEXT(m_text) ));
3358d36e 675 }
a8bf1826 676
fab591c5 677#endif
2830bf19 678 }
484e45bf 679
2830bf19
RR
680 if (style & wxTE_PASSWORD)
681 {
682 if (!multi_line)
683 gtk_entry_set_visibility( GTK_ENTRY(m_text), FALSE );
684 }
8bbe427f 685
2830bf19
RR
686 if (style & wxTE_READONLY)
687 {
688 if (!multi_line)
689 gtk_entry_set_editable( GTK_ENTRY(m_text), FALSE );
fab591c5
RR
690#ifdef __WXGTK20__
691 else
98a8daf4
VS
692 gtk_text_view_set_editable( GTK_TEXT_VIEW( m_text), FALSE);
693#else
694 }
695 else
696 {
697 if (multi_line)
698 gtk_text_set_editable( GTK_TEXT(m_text), 1 );
699#endif
700 }
701
c663fbea
VS
702#ifdef __WXGTK20__
703 if (multi_line)
704 {
705 if (style & wxTE_RIGHT)
706 gtk_text_view_set_justification( GTK_TEXT_VIEW(m_text), GTK_JUSTIFY_RIGHT );
707 else if (style & wxTE_CENTRE)
708 gtk_text_view_set_justification( GTK_TEXT_VIEW(m_text), GTK_JUSTIFY_CENTER );
709 // Left justify (alignment) is the default and we don't need to apply GTK_JUSTIFY_LEFT
710 }
c663fbea
VS
711 else
712 {
77f70672
RR
713#ifdef __WXGTK24__
714 // gtk_entry_set_alignment was introduced in gtk+-2.3.5
715 if (!gtk_check_version(2,4,0))
716 {
717 if (style & wxTE_RIGHT)
718 gtk_entry_set_alignment( GTK_ENTRY(m_text), 1.0 );
719 else if (style & wxTE_CENTRE)
720 gtk_entry_set_alignment( GTK_ENTRY(m_text), 0.5 );
721 }
722#endif
c663fbea 723 }
c663fbea 724#endif // __WXGTK20__
7d8268a1 725
fab591c5
RR
726 // We want to be notified about text changes.
727#ifdef __WXGTK20__
728 if (multi_line)
729 {
41b81aed 730 g_signal_connect( G_OBJECT(m_buffer), "changed",
fab591c5 731 GTK_SIGNAL_FUNC(gtk_text_changed_callback), (gpointer)this);
9440c3d0
KH
732
733 // .. and handle URLs on multi-line controls with wxTE_AUTO_URL style
734 if (style & wxTE_AUTO_URL)
735 {
736 GtkTextIter start, end;
737 m_gdkHandCursor = gdk_cursor_new(GDK_HAND2);
738 m_gdkXTermCursor = gdk_cursor_new(GDK_XTERM);
739
740 // We create our wxUrl tag here for slight efficiency gain - we
741 // don't have to check for the tag existance in callbacks,
742 // hereby it's guaranteed to exist.
743 gtk_text_buffer_create_tag(m_buffer, "wxUrl",
744 "foreground", "blue",
745 "underline", PANGO_UNDERLINE_SINGLE,
746 NULL);
747
748 // Check for URLs after each text change
749 g_signal_connect_after( G_OBJECT(m_buffer), "insert_text",
750 GTK_SIGNAL_FUNC(au_insert_text_callback), (gpointer)this);
751 g_signal_connect_after( G_OBJECT(m_buffer), "delete_range",
752 GTK_SIGNAL_FUNC(au_delete_range_callback), (gpointer)this);
753
754 // Block all wxUrl tag applying unless we do it ourselves, in which case we
755 // block this callback temporarily. This takes care of gtk+ internal
756 // gtk_text_buffer_insert_range* calls that would copy our URL tag otherwise,
757 // which is undesired because only a part of the URL might be copied.
758 // The insert-text signal emitted inside it will take care of newly formed
759 // or wholly copied URLs.
760 g_signal_connect( G_OBJECT(m_buffer), "apply_tag",
761 GTK_SIGNAL_FUNC(au_apply_tag_callback), NULL);
762
763 // Check for URLs in the initial string passed to Create
764 gtk_text_buffer_get_start_iter(m_buffer, &start);
765 gtk_text_buffer_get_end_iter(m_buffer, &end);
766 au_check_range(&start, &end);
767 }
fab591c5
RR
768 }
769 else
770#endif
7d8268a1 771
fab591c5 772 {
055e633d
RR
773 gtk_signal_connect( GTK_OBJECT(m_text), "changed",
774 GTK_SIGNAL_FUNC(gtk_text_changed_callback), (gpointer)this);
fab591c5 775 }
ce16e5d7 776
65045edd 777 m_cursor = wxCursor( wxCURSOR_IBEAM );
13111b2a 778
9d522606 779 wxTextAttr attrDef(GetForegroundColour(), GetBackgroundColour(), GetFont());
17665a2b
VZ
780 SetDefaultStyle( attrDef );
781
7d8268a1 782 return true;
2830bf19 783}
484e45bf 784
9d522606 785
2830bf19
RR
786void wxTextCtrl::CalculateScrollbar()
787{
fab591c5 788#ifndef __WXGTK20__
2830bf19 789 if ((m_windowStyle & wxTE_MULTILINE) == 0) return;
f96aa4d9 790
2830bf19 791 GtkAdjustment *adj = GTK_TEXT(m_text)->vadj;
805dd538 792
2830bf19
RR
793 if (adj->upper - adj->page_size < 0.8)
794 {
795 if (m_vScrollbarVisible)
796 {
034be888 797 gtk_widget_hide( m_vScrollbar );
7d8268a1 798 m_vScrollbarVisible = false;
2830bf19
RR
799 }
800 }
801 else
802 {
803 if (!m_vScrollbarVisible)
804 {
034be888 805 gtk_widget_show( m_vScrollbar );
7d8268a1 806 m_vScrollbarVisible = true;
2830bf19
RR
807 }
808 }
fab591c5 809#endif
6de97a3b 810}
c801d85f 811
03f38c58 812wxString wxTextCtrl::GetValue() const
c801d85f 813{
223d09f6 814 wxCHECK_MSG( m_text != NULL, wxT(""), wxT("invalid text ctrl") );
8bbe427f 815
2830bf19
RR
816 wxString tmp;
817 if (m_windowStyle & wxTE_MULTILINE)
818 {
fab591c5 819#ifdef __WXGTK20__
fab591c5 820 GtkTextIter start;
41b81aed 821 gtk_text_buffer_get_start_iter( m_buffer, &start );
fab591c5 822 GtkTextIter end;
41b81aed
RR
823 gtk_text_buffer_get_end_iter( m_buffer, &end );
824 gchar *text = gtk_text_buffer_get_text( m_buffer, &start, &end, TRUE );
5b87f8bf 825
fab591c5
RR
826#if wxUSE_UNICODE
827 wxWCharBuffer buffer( wxConvUTF8.cMB2WX( text ) );
828#else
829 wxCharBuffer buffer( wxConvLocal.cWC2WX( wxConvUTF8.cMB2WC( text ) ) );
830#endif
39ccbf9a
VZ
831 if ( buffer )
832 tmp = buffer;
a8bf1826 833
fab591c5
RR
834 g_free( text );
835#else
2830bf19
RR
836 gint len = gtk_text_get_length( GTK_TEXT(m_text) );
837 char *text = gtk_editable_get_chars( GTK_EDITABLE(m_text), 0, len );
fab591c5 838 tmp = text;
2830bf19 839 g_free( text );
fab591c5 840#endif
2830bf19
RR
841 }
842 else
843 {
fab591c5 844 tmp = wxGTK_CONV_BACK( gtk_entry_get_text( GTK_ENTRY(m_text) ) );
2830bf19 845 }
a8bf1826 846
2830bf19 847 return tmp;
6de97a3b 848}
c801d85f
KB
849
850void wxTextCtrl::SetValue( const wxString &value )
851{
223d09f6 852 wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") );
8bbe427f 853
2830bf19
RR
854 if (m_windowStyle & wxTE_MULTILINE)
855 {
fab591c5
RR
856#ifdef __WXGTK20__
857
858#if wxUSE_UNICODE
859 wxCharBuffer buffer( wxConvUTF8.cWX2MB( value) );
860#else
861 wxCharBuffer buffer( wxConvUTF8.cWC2MB( wxConvLocal.cWX2WC( value ) ) );
a8bf1826 862#endif
b6ae8db8 863 if (gtk_text_buffer_get_char_count(m_buffer) != 0)
ad68ed32
RR
864 IgnoreNextTextUpdate();
865
41b81aed 866 gtk_text_buffer_set_text( m_buffer, buffer, strlen(buffer) );
a8bf1826 867
fab591c5 868#else
2830bf19
RR
869 gint len = gtk_text_get_length( GTK_TEXT(m_text) );
870 gtk_editable_delete_text( GTK_EDITABLE(m_text), 0, len );
871 len = 0;
01041145 872 gtk_editable_insert_text( GTK_EDITABLE(m_text), value.mbc_str(), value.Length(), &len );
05939a81 873#endif
2830bf19
RR
874 }
875 else
876 {
fab591c5 877 gtk_entry_set_text( GTK_ENTRY(m_text), wxGTK_CONV( value ) );
2830bf19 878 }
f6bcfd97
BP
879
880 // GRG, Jun/2000: Changed this after a lot of discussion in
77ffb593 881 // the lists. wxWidgets 2.2 will have a set of flags to
f6bcfd97
BP
882 // customize this behaviour.
883 SetInsertionPoint(0);
a8bf1826 884
7d8268a1 885 m_modified = false;
6de97a3b 886}
c801d85f
KB
887
888void wxTextCtrl::WriteText( const wxString &text )
889{
223d09f6 890 wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") );
8bbe427f 891
17665a2b
VZ
892 if ( text.empty() )
893 return;
484e45bf 894
c04ec496
VZ
895 // gtk_text_changed_callback() will set m_modified to true but m_modified
896 // shouldn't be changed by the program writing to the text control itself,
897 // so save the old value and restore when we're done
898 bool oldModified = m_modified;
899
17665a2b 900 if ( m_windowStyle & wxTE_MULTILINE )
2830bf19 901 {
fab591c5
RR
902#ifdef __WXGTK20__
903
904#if wxUSE_UNICODE
905 wxCharBuffer buffer( wxConvUTF8.cWX2MB( text ) );
906#else
907 wxCharBuffer buffer( wxConvUTF8.cWC2MB( wxConvLocal.cWX2WC( text ) ) );
a8bf1826 908#endif
8e033d81
VZ
909 if ( !buffer )
910 {
911 // what else can we do? at least don't crash...
912 return;
913 }
914
e136b747 915 // TODO: Call whatever is needed to delete the selection.
41b81aed 916 wxGtkTextInsert( m_text, m_buffer, m_defaultStyle, buffer );
a8bf1826 917
71aba833
VZ
918 GtkAdjustment *adj = gtk_scrolled_window_get_vadjustment( GTK_SCROLLED_WINDOW(m_widget) );
919 // Scroll to cursor, but only if scrollbar thumb is at the very bottom
920 if ( adj->value == adj->upper - adj->page_size )
921 {
922 gtk_text_view_scroll_to_mark( GTK_TEXT_VIEW(m_text),
41b81aed 923 gtk_text_buffer_get_insert( m_buffer ), 0.0, FALSE, 0.0, 1.0 );
71aba833 924 }
a8bf1826 925#else // GTK 1.x
ba3f6b44 926 // After cursor movements, gtk_text_get_point() is wrong by one.
9e691f46 927 gtk_text_set_point( GTK_TEXT(m_text), GET_EDITABLE_POS(m_text) );
eda40bfc 928
41b2e0e6
VZ
929 // always use m_defaultStyle, even if it is empty as otherwise
930 // resetting the style and appending some more text wouldn't work: if
931 // we don't specify the style explicitly, the old style would be used
2b5f62a0 932 gtk_editable_delete_selection( GTK_EDITABLE(m_text) );
fab591c5 933 wxGtkTextInsert(m_text, m_defaultStyle, text.c_str(), text.Len());
eda40bfc 934
07e9d4f0
VZ
935 // we called wxGtkTextInsert with correct font, no need to do anything
936 // in UpdateFontIfNeeded() any longer
937 if ( !text.empty() )
938 {
7d8268a1 939 SetUpdateFont(false);
07e9d4f0
VZ
940 }
941
ba3f6b44 942 // Bring editable's cursor back uptodate.
9e691f46 943 SET_EDITABLE_POS(m_text, gtk_text_get_point( GTK_TEXT(m_text) ));
a8bf1826 944#endif // GTK 1.x/2.0
2830bf19 945 }
17665a2b 946 else // single line
2830bf19 947 {
2b5f62a0
VZ
948 // First remove the selection if there is one
949 gtk_editable_delete_selection( GTK_EDITABLE(m_text) );
950
ba3f6b44 951 // This moves the cursor pos to behind the inserted text.
9e691f46 952 gint len = GET_EDITABLE_POS(m_text);
a8bf1826 953
fab591c5
RR
954#ifdef __WXGTK20__
955
956#if wxUSE_UNICODE
957 wxCharBuffer buffer( wxConvUTF8.cWX2MB( text ) );
958#else
959 wxCharBuffer buffer( wxConvUTF8.cWC2MB( wxConvLocal.cWX2WC( text ) ) );
a8bf1826 960#endif
fab591c5 961 gtk_editable_insert_text( GTK_EDITABLE(m_text), buffer, strlen(buffer), &len );
a8bf1826 962
fab591c5
RR
963#else
964 gtk_editable_insert_text( GTK_EDITABLE(m_text), text.c_str(), text.Len(), &len );
965#endif
3358d36e 966
ba3f6b44 967 // Bring entry's cursor uptodate.
9e691f46 968 gtk_entry_set_position( GTK_ENTRY(m_text), len );
2830bf19 969 }
eda40bfc 970
c04ec496 971 m_modified = oldModified;
6de97a3b 972}
c801d85f 973
a6e21573
HH
974void wxTextCtrl::AppendText( const wxString &text )
975{
ba3f6b44
RR
976 SetInsertionPointEnd();
977 WriteText( text );
978}
2df7be7f 979
ba3f6b44
RR
980wxString wxTextCtrl::GetLineText( long lineNo ) const
981{
a6e21573
HH
982 if (m_windowStyle & wxTE_MULTILINE)
983 {
fab591c5 984#ifndef __WXGTK20__
ba3f6b44
RR
985 gint len = gtk_text_get_length( GTK_TEXT(m_text) );
986 char *text = gtk_editable_get_chars( GTK_EDITABLE(m_text), 0, len );
bb69661b 987
ba3f6b44
RR
988 if (text)
989 {
990 wxString buf(wxT(""));
991 long i;
992 int currentLine = 0;
993 for (i = 0; currentLine != lineNo && text[i]; i++ )
994 if (text[i] == '\n')
995 currentLine++;
996 // Now get the text
997 int j;
998 for (j = 0; text[i] && text[i] != '\n'; i++, j++ )
999 buf += text[i];
17665a2b 1000
ba3f6b44
RR
1001 g_free( text );
1002 return buf;
bb69661b 1003 }
ba3f6b44 1004 else
bb69661b 1005 {
ba3f6b44 1006 return wxEmptyString;
bb69661b 1007 }
905f2110 1008#else
905f2110 1009 GtkTextIter line;
41b81aed 1010 gtk_text_buffer_get_iter_at_line(m_buffer,&line,lineNo);
905f2110 1011 GtkTextIter end;
41b81aed
RR
1012 gtk_text_buffer_get_end_iter(m_buffer,&end );
1013 gchar *text = gtk_text_buffer_get_text(m_buffer,&line,&end,TRUE);
58192970 1014 wxString result(wxGTK_CONV_BACK(text));
905f2110
JS
1015 g_free(text);
1016 return result.BeforeFirst(wxT('\n'));
1017#endif
a6e21573 1018 }
ba3f6b44 1019 else
a81258be 1020 {
ba3f6b44
RR
1021 if (lineNo == 0) return GetValue();
1022 return wxEmptyString;
a81258be 1023 }
6de97a3b 1024}
c801d85f 1025
a81258be
RR
1026void wxTextCtrl::OnDropFiles( wxDropFilesEvent &WXUNUSED(event) )
1027{
ac0d36b5
HH
1028 /* If you implement this, don't forget to update the documentation!
1029 * (file docs/latex/wx/text.tex) */
223d09f6 1030 wxFAIL_MSG( wxT("wxTextCtrl::OnDropFiles not implemented") );
a81258be 1031}
112892b9 1032
0efe5ba7 1033bool wxTextCtrl::PositionToXY(long pos, long *x, long *y ) const
c801d85f 1034{
96385642 1035 if ( m_windowStyle & wxTE_MULTILINE )
805dd538 1036 {
96385642
VZ
1037 wxString text = GetValue();
1038
6085b116 1039 // cast to prevent warning. But pos really should've been unsigned.
2829d9e3 1040 if( (unsigned long)pos > text.Len() )
7d8268a1 1041 return false;
96385642 1042
ac0d36b5
HH
1043 *x=0; // First Col
1044 *y=0; // First Line
2829d9e3 1045
05939a81
OK
1046 const wxChar* stop = text.c_str() + pos;
1047 for ( const wxChar *p = text.c_str(); p < stop; p++ )
96385642 1048 {
223d09f6 1049 if (*p == wxT('\n'))
96385642
VZ
1050 {
1051 (*y)++;
ac0d36b5 1052 *x=0;
96385642
VZ
1053 }
1054 else
1055 (*x)++;
1056 }
805dd538 1057 }
96385642
VZ
1058 else // single line control
1059 {
2829d9e3 1060 if ( pos <= GTK_ENTRY(m_text)->text_length )
96385642 1061 {
ac0d36b5 1062 *y = 0;
96385642
VZ
1063 *x = pos;
1064 }
1065 else
1066 {
1067 // index out of bounds
7d8268a1 1068 return false;
96385642 1069 }
8bbe427f 1070 }
96385642 1071
7d8268a1 1072 return true;
6de97a3b 1073}
c801d85f 1074
e3ca08dd 1075long wxTextCtrl::XYToPosition(long x, long y ) const
c801d85f 1076{
2830bf19 1077 if (!(m_windowStyle & wxTE_MULTILINE)) return 0;
805dd538 1078
2830bf19 1079 long pos=0;
ac0d36b5 1080 for( int i=0; i<y; i++ ) pos += GetLineLength(i) + 1; // one for '\n'
8bbe427f 1081
3358d36e 1082 pos += x;
2830bf19 1083 return pos;
6de97a3b 1084}
c801d85f 1085
a81258be 1086int wxTextCtrl::GetLineLength(long lineNo) const
c801d85f 1087{
a81258be
RR
1088 wxString str = GetLineText (lineNo);
1089 return (int) str.Length();
6de97a3b 1090}
c801d85f 1091
a81258be 1092int wxTextCtrl::GetNumberOfLines() const
c801d85f 1093{
2830bf19 1094 if (m_windowStyle & wxTE_MULTILINE)
a81258be 1095 {
fab591c5 1096#ifdef __WXGTK20__
41b81aed 1097 return gtk_text_buffer_get_line_count( m_buffer );
fab591c5 1098#else
2830bf19
RR
1099 gint len = gtk_text_get_length( GTK_TEXT(m_text) );
1100 char *text = gtk_editable_get_chars( GTK_EDITABLE(m_text), 0, len );
1101
1102 if (text)
1103 {
1104 int currentLine = 0;
1105 for (int i = 0; i < len; i++ )
96385642 1106 {
2830bf19 1107 if (text[i] == '\n')
96385642
VZ
1108 currentLine++;
1109 }
2830bf19 1110 g_free( text );
2829d9e3
VZ
1111
1112 // currentLine is 0 based, add 1 to get number of lines
1113 return currentLine + 1;
2830bf19
RR
1114 }
1115 else
96385642 1116 {
2830bf19 1117 return 0;
96385642 1118 }
fab591c5 1119#endif
a81258be
RR
1120 }
1121 else
2830bf19 1122 {
96385642 1123 return 1;
2830bf19 1124 }
6de97a3b 1125}
c801d85f 1126
debe6624 1127void wxTextCtrl::SetInsertionPoint( long pos )
c801d85f 1128{
223d09f6 1129 wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") );
3358d36e 1130
74c5a810 1131 if ( IsMultiLine() )
291a8f20 1132 {
fab591c5 1133#ifdef __WXGTK20__
fab591c5 1134 GtkTextIter iter;
41b81aed
RR
1135 gtk_text_buffer_get_iter_at_offset( m_buffer, &iter, pos );
1136 gtk_text_buffer_place_cursor( m_buffer, &iter );
74c5a810
VZ
1137 gtk_text_view_scroll_mark_onscreen
1138 (
1139 GTK_TEXT_VIEW(m_text),
41b81aed 1140 gtk_text_buffer_get_insert( m_buffer )
74c5a810
VZ
1141 );
1142#else // GTK+ 1.x
291a8f20
RR
1143 gtk_signal_disconnect_by_func( GTK_OBJECT(m_text),
1144 GTK_SIGNAL_FUNC(gtk_text_changed_callback), (gpointer)this);
3358d36e 1145
291a8f20 1146 /* we fake a set_point by inserting and deleting. as the user
fab591c5 1147 isn't supposed to get to know about this non-sense, we
3358d36e
VZ
1148 disconnect so that no events are sent to the user program. */
1149
291a8f20
RR
1150 gint tmp = (gint)pos;
1151 gtk_editable_insert_text( GTK_EDITABLE(m_text), " ", 1, &tmp );
3358d36e
VZ
1152 gtk_editable_delete_text( GTK_EDITABLE(m_text), tmp-1, tmp );
1153
291a8f20
RR
1154 gtk_signal_connect( GTK_OBJECT(m_text), "changed",
1155 GTK_SIGNAL_FUNC(gtk_text_changed_callback), (gpointer)this);
3358d36e 1156
fab591c5 1157 // bring editable's cursor uptodate. Bug in GTK.
9e691f46 1158 SET_EDITABLE_POS(m_text, gtk_text_get_point( GTK_TEXT(m_text) ));
74c5a810 1159#endif // GTK+ 2/1
ac0d36b5 1160 }
2830bf19 1161 else
291a8f20 1162 {
d59051dd 1163 gtk_entry_set_position( GTK_ENTRY(m_text), (int)pos );
3358d36e 1164
fab591c5 1165 // Bring editable's cursor uptodate. Bug in GTK.
9e691f46 1166 SET_EDITABLE_POS(m_text, (guint32)pos);
291a8f20 1167 }
6de97a3b 1168}
c801d85f 1169
03f38c58 1170void wxTextCtrl::SetInsertionPointEnd()
c801d85f 1171{
223d09f6 1172 wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") );
8bbe427f 1173
d59051dd 1174 if (m_windowStyle & wxTE_MULTILINE)
fab591c5
RR
1175 {
1176#ifdef __WXGTK20__
fab591c5 1177 GtkTextIter end;
41b81aed
RR
1178 gtk_text_buffer_get_end_iter( m_buffer, &end );
1179 gtk_text_buffer_place_cursor( m_buffer, &end );
fab591c5 1180#else
d59051dd 1181 SetInsertionPoint(gtk_text_get_length(GTK_TEXT(m_text)));
fab591c5
RR
1182#endif
1183 }
d59051dd 1184 else
fab591c5 1185 {
d59051dd 1186 gtk_entry_set_position( GTK_ENTRY(m_text), -1 );
fab591c5 1187 }
6de97a3b 1188}
c801d85f 1189
debe6624 1190void wxTextCtrl::SetEditable( bool editable )
c801d85f 1191{
223d09f6 1192 wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") );
8bbe427f 1193
2830bf19 1194 if (m_windowStyle & wxTE_MULTILINE)
fab591c5
RR
1195 {
1196#ifdef __WXGTK20__
1197 gtk_text_view_set_editable( GTK_TEXT_VIEW(m_text), editable );
1198#else
2830bf19 1199 gtk_text_set_editable( GTK_TEXT(m_text), editable );
fab591c5
RR
1200#endif
1201 }
2830bf19 1202 else
fab591c5 1203 {
2830bf19 1204 gtk_entry_set_editable( GTK_ENTRY(m_text), editable );
fab591c5 1205 }
6de97a3b 1206}
c801d85f 1207
68df5777
RR
1208bool wxTextCtrl::Enable( bool enable )
1209{
1210 if (!wxWindowBase::Enable(enable))
1211 {
1212 // nothing to do
7d8268a1 1213 return false;
68df5777 1214 }
f6bcfd97 1215
68df5777
RR
1216 if (m_windowStyle & wxTE_MULTILINE)
1217 {
fab591c5
RR
1218#ifdef __WXGTK20__
1219 SetEditable( enable );
1220#else
68df5777 1221 gtk_text_set_editable( GTK_TEXT(m_text), enable );
5abf8c9d 1222 OnParentEnable(enable);
fab591c5 1223#endif
68df5777
RR
1224 }
1225 else
1226 {
1227 gtk_widget_set_sensitive( m_text, enable );
1228 }
1229
7d8268a1 1230 return true;
68df5777
RR
1231}
1232
fdca68a6
JS
1233// wxGTK-specific: called recursively by Enable,
1234// to give widgets an oppprtunity to correct their colours after they
1235// have been changed by Enable
1236void wxTextCtrl::OnParentEnable( bool enable )
1237{
1238 // If we have a custom background colour, we use this colour in both
1239 // disabled and enabled mode, or we end up with a different colour under the
1240 // text.
1241 wxColour oldColour = GetBackgroundColour();
1242 if (oldColour.Ok())
1243 {
1244 // Need to set twice or it'll optimize the useful stuff out
1245 if (oldColour == * wxWHITE)
1246 SetBackgroundColour(*wxBLACK);
1247 else
1248 SetBackgroundColour(*wxWHITE);
1249 SetBackgroundColour(oldColour);
1250 }
1251}
1252
3a9fa0d6
VZ
1253void wxTextCtrl::MarkDirty()
1254{
7d8268a1 1255 m_modified = true;
3a9fa0d6
VZ
1256}
1257
0efe5ba7
VZ
1258void wxTextCtrl::DiscardEdits()
1259{
7d8268a1 1260 m_modified = false;
0efe5ba7
VZ
1261}
1262
ce2f50e3
VZ
1263// ----------------------------------------------------------------------------
1264// max text length support
1265// ----------------------------------------------------------------------------
1266
1267void wxTextCtrl::IgnoreNextTextUpdate()
1268{
7d8268a1 1269 m_ignoreNextUpdate = true;
ce2f50e3
VZ
1270}
1271
1272bool wxTextCtrl::IgnoreTextUpdate()
1273{
1274 if ( m_ignoreNextUpdate )
1275 {
7d8268a1 1276 m_ignoreNextUpdate = false;
ce2f50e3 1277
7d8268a1 1278 return true;
ce2f50e3
VZ
1279 }
1280
7d8268a1 1281 return false;
ce2f50e3
VZ
1282}
1283
d7eee191
VZ
1284void wxTextCtrl::SetMaxLength(unsigned long len)
1285{
1286 if ( !HasFlag(wxTE_MULTILINE) )
1287 {
1288 gtk_entry_set_max_length(GTK_ENTRY(m_text), len);
ce2f50e3
VZ
1289
1290 // there is a bug in GTK+ 1.2.x: "changed" signal is emitted even if
1291 // we had tried to enter more text than allowed by max text length and
1292 // the text wasn't really changed
1293 //
1294 // to detect this and generate TEXT_MAXLEN event instead of
1295 // TEXT_CHANGED one in this case we also catch "insert_text" signal
1296 //
1297 // when max len is set to 0 we disconnect our handler as it means that
1298 // we shouldn't check anything any more
1299 if ( len )
1300 {
1301 gtk_signal_connect( GTK_OBJECT(m_text),
1302 "insert_text",
1303 GTK_SIGNAL_FUNC(gtk_insert_text_callback),
1304 (gpointer)this);
1305 }
1306 else // no checking
1307 {
1308 gtk_signal_disconnect_by_func
1309 (
1310 GTK_OBJECT(m_text),
1311 GTK_SIGNAL_FUNC(gtk_insert_text_callback),
1312 (gpointer)this
1313 );
1314 }
d7eee191
VZ
1315 }
1316}
1317
debe6624 1318void wxTextCtrl::SetSelection( long from, long to )
c801d85f 1319{
223d09f6 1320 wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") );
8bbe427f 1321
2b5f62a0
VZ
1322 if (from == -1 && to == -1)
1323 {
1324 from = 0;
1325 to = GetValue().Length();
1326 }
1327
fab591c5 1328#ifndef __WXGTK20__
a1f79c1e
VZ
1329 if ( (m_windowStyle & wxTE_MULTILINE) &&
1330 !GTK_TEXT(m_text)->line_start_cache )
1331 {
1332 // tell the programmer that it didn't work
1333 wxLogDebug(_T("Can't call SetSelection() before realizing the control"));
1334 return;
1335 }
fab591c5 1336#endif
a1f79c1e 1337
fab591c5
RR
1338 if (m_windowStyle & wxTE_MULTILINE)
1339 {
1340#ifdef __WXGTK20__
739e366a 1341 GtkTextIter fromi, toi;
41b81aed
RR
1342 gtk_text_buffer_get_iter_at_offset( m_buffer, &fromi, from );
1343 gtk_text_buffer_get_iter_at_offset( m_buffer, &toi, to );
739e366a 1344
41b81aed
RR
1345 gtk_text_buffer_place_cursor( m_buffer, &toi );
1346 gtk_text_buffer_move_mark_by_name( m_buffer, "selection_bound", &fromi );
fab591c5
RR
1347#else
1348 gtk_editable_select_region( GTK_EDITABLE(m_text), (gint)from, (gint)to );
1349#endif
1350 }
1351 else
1352 {
1353 gtk_editable_select_region( GTK_EDITABLE(m_text), (gint)from, (gint)to );
1354 }
6de97a3b 1355}
c801d85f 1356
afbe906a 1357void wxTextCtrl::ShowPosition( long pos )
c801d85f 1358{
afbe906a
RR
1359 if (m_windowStyle & wxTE_MULTILINE)
1360 {
71aba833 1361#ifdef __WXGTK20__
71aba833 1362 GtkTextIter iter;
41b81aed 1363 gtk_text_buffer_get_start_iter( m_buffer, &iter );
71aba833 1364 gtk_text_iter_set_offset( &iter, pos );
41b81aed 1365 GtkTextMark *mark = gtk_text_buffer_create_mark( m_buffer, NULL, &iter, TRUE );
71aba833
VZ
1366 gtk_text_view_scroll_to_mark( GTK_TEXT_VIEW(m_text), mark, 0.0, FALSE, 0.0, 0.0 );
1367#else // GTK 1.x
afbe906a
RR
1368 GtkAdjustment *vp = GTK_TEXT(m_text)->vadj;
1369 float totalLines = (float) GetNumberOfLines();
1370 long posX;
1371 long posY;
1372 PositionToXY(pos, &posX, &posY);
1373 float posLine = (float) posY;
1374 float p = (posLine/totalLines)*(vp->upper - vp->lower) + vp->lower;
1375 gtk_adjustment_set_value(GTK_TEXT(m_text)->vadj, p);
71aba833 1376#endif // GTK 1.x/2.x
afbe906a 1377 }
6de97a3b 1378}
c801d85f 1379
692c9b86
VZ
1380#ifdef __WXGTK20__
1381
1382wxTextCtrlHitTestResult
1383wxTextCtrl::HitTest(const wxPoint& pt, long *pos) const
1384{
1385 if ( !IsMultiLine() )
1386 {
1387 // not supported
1388 return wxTE_HT_UNKNOWN;
1389 }
1390
1391 int x, y;
1392 gtk_text_view_window_to_buffer_coords
1393 (
1394 GTK_TEXT_VIEW(m_text),
1395 GTK_TEXT_WINDOW_TEXT,
1396 pt.x, pt.y,
1397 &x, &y
1398 );
1399
1400 GtkTextIter iter;
1401 gtk_text_view_get_iter_at_location(GTK_TEXT_VIEW(m_text), &iter, x, y);
1402 if ( pos )
1403 *pos = gtk_text_iter_get_offset(&iter);
1404
1405 return wxTE_HT_ON_TEXT;
1406}
1407
1408#endif // __WXGTK20__
1409
03f38c58 1410long wxTextCtrl::GetInsertionPoint() const
c801d85f 1411{
223d09f6 1412 wxCHECK_MSG( m_text != NULL, 0, wxT("invalid text ctrl") );
8bbe427f 1413
fab591c5
RR
1414#ifdef __WXGTK20__
1415 if (m_windowStyle & wxTE_MULTILINE)
1416 {
fab591c5
RR
1417 // There is no direct accessor for the cursor, but
1418 // internally, the cursor is the "mark" called
1419 // "insert" in the text view's btree structure.
a8bf1826 1420
41b81aed 1421 GtkTextMark *mark = gtk_text_buffer_get_insert( m_buffer );
fab591c5 1422 GtkTextIter cursor;
41b81aed 1423 gtk_text_buffer_get_iter_at_mark( m_buffer, &cursor, mark );
a8bf1826 1424
fab591c5
RR
1425 return gtk_text_iter_get_offset( &cursor );
1426 }
1427 else
1428#endif
1429 {
9e691f46 1430 return (long) GET_EDITABLE_POS(m_text);
fab591c5 1431 }
6de97a3b 1432}
c801d85f 1433
7d8268a1 1434wxTextPos wxTextCtrl::GetLastPosition() const
c801d85f 1435{
223d09f6 1436 wxCHECK_MSG( m_text != NULL, 0, wxT("invalid text ctrl") );
8bbe427f 1437
2830bf19 1438 int pos = 0;
a8bf1826 1439
2830bf19 1440 if (m_windowStyle & wxTE_MULTILINE)
fab591c5
RR
1441 {
1442#ifdef __WXGTK20__
fab591c5 1443 GtkTextIter end;
41b81aed 1444 gtk_text_buffer_get_end_iter( m_buffer, &end );
a8bf1826 1445
fab591c5
RR
1446 pos = gtk_text_iter_get_offset( &end );
1447#else
2830bf19 1448 pos = gtk_text_get_length( GTK_TEXT(m_text) );
fab591c5
RR
1449#endif
1450 }
2830bf19 1451 else
fab591c5 1452 {
2830bf19 1453 pos = GTK_ENTRY(m_text)->text_length;
fab591c5 1454 }
805dd538 1455
ac0d36b5 1456 return (long)pos;
6de97a3b 1457}
c801d85f 1458
debe6624 1459void wxTextCtrl::Remove( long from, long to )
c801d85f 1460{
223d09f6 1461 wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") );
8bbe427f 1462
581ee8a9 1463#ifdef __WXGTK20__
fdd55287 1464 if (m_windowStyle & wxTE_MULTILINE)
581ee8a9 1465 {
581ee8a9 1466 GtkTextIter fromi, toi;
41b81aed
RR
1467 gtk_text_buffer_get_iter_at_offset( m_buffer, &fromi, from );
1468 gtk_text_buffer_get_iter_at_offset( m_buffer, &toi, to );
581ee8a9 1469
41b81aed 1470 gtk_text_buffer_delete( m_buffer, &fromi, &toi );
581ee8a9
VZ
1471 }
1472 else // single line
fab591c5 1473#endif
581ee8a9 1474 gtk_editable_delete_text( GTK_EDITABLE(m_text), (gint)from, (gint)to );
6de97a3b 1475}
c801d85f 1476
debe6624 1477void wxTextCtrl::Replace( long from, long to, const wxString &value )
c801d85f 1478{
223d09f6 1479 wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") );
8bbe427f 1480
581ee8a9 1481 Remove( from, to );
bb69661b 1482
7d8268a1 1483 if (!value.empty())
2df7be7f 1484 {
581ee8a9
VZ
1485#ifdef __WXGTK20__
1486 SetInsertionPoint( from );
1487 WriteText( value );
1488#else // GTK 1.x
2df7be7f 1489 gint pos = (gint)from;
05939a81 1490#if wxUSE_UNICODE
2df7be7f
RR
1491 wxWX2MBbuf buf = value.mbc_str();
1492 gtk_editable_insert_text( GTK_EDITABLE(m_text), buf, strlen(buf), &pos );
05939a81 1493#else
2df7be7f 1494 gtk_editable_insert_text( GTK_EDITABLE(m_text), value, value.Length(), &pos );
581ee8a9
VZ
1495#endif // wxUSE_UNICODE
1496#endif // GTK 1.x/2.x
2df7be7f 1497 }
6de97a3b 1498}
c801d85f 1499
03f38c58 1500void wxTextCtrl::Cut()
c801d85f 1501{
223d09f6 1502 wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") );
8bbe427f 1503
bbde2e29
VS
1504#ifdef __WXGTK20__
1505 if (m_windowStyle & wxTE_MULTILINE)
1506 g_signal_emit_by_name(m_text, "cut-clipboard");
1507 else
fab591c5 1508#endif
bbde2e29 1509 gtk_editable_cut_clipboard(GTK_EDITABLE(m_text) DUMMY_CLIPBOARD_ARG);
6de97a3b 1510}
c801d85f 1511
03f38c58 1512void wxTextCtrl::Copy()
c801d85f 1513{
223d09f6 1514 wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") );
8bbe427f 1515
bbde2e29
VS
1516#ifdef __WXGTK20__
1517 if (m_windowStyle & wxTE_MULTILINE)
1518 g_signal_emit_by_name(m_text, "copy-clipboard");
1519 else
fab591c5 1520#endif
bbde2e29 1521 gtk_editable_copy_clipboard(GTK_EDITABLE(m_text) DUMMY_CLIPBOARD_ARG);
6de97a3b 1522}
c801d85f 1523
03f38c58 1524void wxTextCtrl::Paste()
c801d85f 1525{
223d09f6 1526 wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") );
8bbe427f 1527
bbde2e29
VS
1528#ifdef __WXGTK20__
1529 if (m_windowStyle & wxTE_MULTILINE)
1530 g_signal_emit_by_name(m_text, "paste-clipboard");
1531 else
fab591c5 1532#endif
bbde2e29 1533 gtk_editable_paste_clipboard(GTK_EDITABLE(m_text) DUMMY_CLIPBOARD_ARG);
6de97a3b 1534}
c801d85f 1535
ca8b28f2
JS
1536// Undo/redo
1537void wxTextCtrl::Undo()
1538{
1539 // TODO
223d09f6 1540 wxFAIL_MSG( wxT("wxTextCtrl::Undo not implemented") );
ca8b28f2
JS
1541}
1542
1543void wxTextCtrl::Redo()
1544{
1545 // TODO
223d09f6 1546 wxFAIL_MSG( wxT("wxTextCtrl::Redo not implemented") );
ca8b28f2
JS
1547}
1548
1549bool wxTextCtrl::CanUndo() const
1550{
1551 // TODO
4855a477 1552 //wxFAIL_MSG( wxT("wxTextCtrl::CanUndo not implemented") );
7d8268a1 1553 return false;
ca8b28f2
JS
1554}
1555
1556bool wxTextCtrl::CanRedo() const
1557{
1558 // TODO
4855a477 1559 //wxFAIL_MSG( wxT("wxTextCtrl::CanRedo not implemented") );
7d8268a1 1560 return false;
ca8b28f2
JS
1561}
1562
1563// If the return values from and to are the same, there is no
1564// selection.
2d4cc5b6 1565void wxTextCtrl::GetSelection(long* fromOut, long* toOut) const
ca8b28f2 1566{
223d09f6 1567 wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") );
bb69661b 1568
5b87f8bf
RD
1569 gint from = -1;
1570 gint to = -1;
7d8268a1 1571 bool haveSelection = false;
5b87f8bf 1572
fb47b99f 1573#ifdef __WXGTK20__
5b87f8bf
RD
1574 if (m_windowStyle & wxTE_MULTILINE)
1575 {
5b87f8bf 1576 GtkTextIter ifrom, ito;
41b81aed 1577 if ( gtk_text_buffer_get_selection_bounds(m_buffer, &ifrom, &ito) )
5b87f8bf 1578 {
7d8268a1 1579 haveSelection = true;
5b87f8bf
RD
1580 from = gtk_text_iter_get_offset(&ifrom);
1581 to = gtk_text_iter_get_offset(&ito);
1582 }
1583 }
1584 else // not multi-line
1585 {
1586 if ( gtk_editable_get_selection_bounds( GTK_EDITABLE(m_text),
1587 &from, &to) )
1588 {
7d8268a1 1589 haveSelection = true;
5b87f8bf
RD
1590 }
1591 }
1592#else // not GTK2
1593 if ( (GTK_EDITABLE(m_text)->has_selection) )
1594 {
7d8268a1 1595 haveSelection = true;
5b87f8bf
RD
1596 from = (long) GTK_EDITABLE(m_text)->selection_start_pos;
1597 to = (long) GTK_EDITABLE(m_text)->selection_end_pos;
1598 }
9e691f46 1599#endif
2d4cc5b6 1600
5b87f8bf
RD
1601 if (! haveSelection )
1602 from = to = GetInsertionPoint();
1603
1604 if ( from > to )
1605 {
1606 // exchange them to be compatible with wxMSW
1607 gint tmp = from;
1608 from = to;
1609 to = tmp;
1610 }
bb69661b 1611
2d4cc5b6
VZ
1612 if ( fromOut )
1613 *fromOut = from;
1614 if ( toOut )
1615 *toOut = to;
ca8b28f2
JS
1616}
1617
5b87f8bf 1618
ca8b28f2
JS
1619bool wxTextCtrl::IsEditable() const
1620{
7d8268a1 1621 wxCHECK_MSG( m_text != NULL, false, wxT("invalid text ctrl") );
05060eeb 1622
9e691f46 1623#ifdef __WXGTK20__
fdd55287
VZ
1624 if (m_windowStyle & wxTE_MULTILINE)
1625 {
1626 return gtk_text_view_get_editable(GTK_TEXT_VIEW(m_text));
1627 }
1628 else
1629 {
1630 return gtk_editable_get_editable(GTK_EDITABLE(m_text));
1631 }
9e691f46 1632#else
05060eeb 1633 return GTK_EDITABLE(m_text)->editable;
9e691f46 1634#endif
ca8b28f2
JS
1635}
1636
0efe5ba7
VZ
1637bool wxTextCtrl::IsModified() const
1638{
1639 return m_modified;
1640}
1641
03f38c58 1642void wxTextCtrl::Clear()
c801d85f 1643{
223d09f6 1644 SetValue( wxT("") );
6de97a3b 1645}
c801d85f 1646
903f689b 1647void wxTextCtrl::OnChar( wxKeyEvent &key_event )
c801d85f 1648{
223d09f6 1649 wxCHECK_RET( m_text != NULL, wxT("invalid text ctrl") );
805dd538 1650
12a3f227 1651 if ((key_event.GetKeyCode() == WXK_RETURN) && (m_windowStyle & wxPROCESS_ENTER))
2830bf19
RR
1652 {
1653 wxCommandEvent event(wxEVT_COMMAND_TEXT_ENTER, m_windowId);
1654 event.SetEventObject(this);
f6bcfd97 1655 event.SetString(GetValue());
2830bf19
RR
1656 if (GetEventHandler()->ProcessEvent(event)) return;
1657 }
903f689b 1658
12a3f227 1659 if ((key_event.GetKeyCode() == WXK_RETURN) && !(m_windowStyle & wxTE_MULTILINE))
da048e3d 1660 {
2b328fc9
RR
1661 // This will invoke the dialog default action, such
1662 // as the clicking the default button.
a8bf1826 1663
da048e3d 1664 wxWindow *top_frame = m_parent;
8487f887 1665 while (top_frame->GetParent() && !(top_frame->IsTopLevel()))
da048e3d 1666 top_frame = top_frame->GetParent();
a8bf1826 1667
2b328fc9 1668 if (top_frame && GTK_IS_WINDOW(top_frame->m_widget))
da048e3d 1669 {
2b328fc9
RR
1670 GtkWindow *window = GTK_WINDOW(top_frame->m_widget);
1671
1672 if (window->default_widget)
1673 {
1674 gtk_widget_activate (window->default_widget);
1675 return;
1676 }
13111b2a 1677 }
da048e3d
RR
1678 }
1679
2830bf19 1680 key_event.Skip();
6de97a3b 1681}
c801d85f 1682
03f38c58 1683GtkWidget* wxTextCtrl::GetConnectWidget()
e3e65dac 1684{
ae0bdb01 1685 return GTK_WIDGET(m_text);
6de97a3b 1686}
e3e65dac 1687
903f689b
RR
1688bool wxTextCtrl::IsOwnGtkWindow( GdkWindow *window )
1689{
ae0bdb01 1690 if (m_windowStyle & wxTE_MULTILINE)
fab591c5
RR
1691 {
1692#ifdef __WXGTK20__
1693 return window == gtk_text_view_get_window( GTK_TEXT_VIEW( m_text ), GTK_TEXT_WINDOW_TEXT ); // pure guesswork
1694#else
ae0bdb01 1695 return (window == GTK_TEXT(m_text)->text_area);
fab591c5
RR
1696#endif
1697 }
ae0bdb01 1698 else
fab591c5 1699 {
ae0bdb01 1700 return (window == GTK_ENTRY(m_text)->text_area);
fab591c5 1701 }
903f689b 1702}
e3e65dac 1703
bb69661b
VZ
1704// the font will change for subsequent text insertiongs
1705bool wxTextCtrl::SetFont( const wxFont &font )
868a2826 1706{
7d8268a1 1707 wxCHECK_MSG( m_text != NULL, false, wxT("invalid text ctrl") );
8bbe427f 1708
a66954a6 1709 if ( !wxTextCtrlBase::SetFont(font) )
bb69661b
VZ
1710 {
1711 // font didn't change, nothing to do
7d8268a1 1712 return false;
bb69661b
VZ
1713 }
1714
1715 if ( m_windowStyle & wxTE_MULTILINE )
1716 {
7d8268a1 1717 SetUpdateFont(true);
bb69661b 1718
1ff4714d
VZ
1719 m_defaultStyle.SetFont(font);
1720
01041145 1721 ChangeFontGlobally();
bb69661b
VZ
1722 }
1723
7d8268a1 1724 return true;
58614078
RR
1725}
1726
01041145
VZ
1727void wxTextCtrl::ChangeFontGlobally()
1728{
1729 // this method is very inefficient and hence should be called as rarely as
1730 // possible!
c04ec496
VZ
1731 //
1732 // TODO: it can be implemented much more efficiently for GTK2
c04ec496 1733#ifndef __WXGTK20__
22800f32
JS
1734 wxASSERT_MSG( (m_windowStyle & wxTE_MULTILINE) && m_updateFont,
1735
01041145 1736 _T("shouldn't be called for single line controls") );
22800f32
JS
1737#else
1738 wxASSERT_MSG( (m_windowStyle & wxTE_MULTILINE),
1739 _T("shouldn't be called for single line controls") );
1740#endif
01041145
VZ
1741
1742 wxString value = GetValue();
7d8268a1 1743 if ( !value.empty() )
01041145 1744 {
7d8268a1 1745 SetUpdateFont(false);
572aeb77 1746
01041145
VZ
1747 Clear();
1748 AppendText(value);
01041145
VZ
1749 }
1750}
1751
c04ec496
VZ
1752#ifndef __WXGTK20__
1753
01041145
VZ
1754void wxTextCtrl::UpdateFontIfNeeded()
1755{
1756 if ( m_updateFont )
1757 ChangeFontGlobally();
1758}
1759
c04ec496
VZ
1760#endif // GTK+ 1.x
1761
17665a2b
VZ
1762bool wxTextCtrl::SetForegroundColour(const wxColour& colour)
1763{
1764 if ( !wxControl::SetForegroundColour(colour) )
7d8268a1 1765 return false;
17665a2b
VZ
1766
1767 // update default fg colour too
1768 m_defaultStyle.SetTextColour(colour);
1769
7d8268a1 1770 return true;
17665a2b
VZ
1771}
1772
f03fc89f 1773bool wxTextCtrl::SetBackgroundColour( const wxColour &colour )
68dda785 1774{
7d8268a1 1775 wxCHECK_MSG( m_text != NULL, false, wxT("invalid text ctrl") );
a81258be 1776
1f477433 1777 if ( !wxControl::SetBackgroundColour( colour ) )
7d8268a1 1778 return false;
3358d36e 1779
c2094564 1780#ifndef __WXGTK20__
f03fc89f 1781 if (!m_widget->window)
7d8268a1 1782 return false;
c2094564 1783#endif
8bbe427f 1784
f03fc89f 1785 if (!m_backgroundColour.Ok())
7d8268a1 1786 return false;
8bbe427f 1787
ae0bdb01
RR
1788 if (m_windowStyle & wxTE_MULTILINE)
1789 {
1fc32b12 1790#ifndef __WXGTK20__
ae0bdb01 1791 GdkWindow *window = GTK_TEXT(m_text)->text_area;
f03fc89f 1792 if (!window)
7d8268a1 1793 return false;
ae0bdb01
RR
1794 m_backgroundColour.CalcPixel( gdk_window_get_colormap( window ) );
1795 gdk_window_set_background( window, m_backgroundColour.GetColor() );
1796 gdk_window_clear( window );
fab591c5 1797#endif
ae0bdb01 1798 }
f03fc89f 1799
17665a2b
VZ
1800 // change active background color too
1801 m_defaultStyle.SetBackgroundColour( colour );
1802
7d8268a1 1803 return true;
58614078
RR
1804}
1805
eda40bfc 1806bool wxTextCtrl::SetStyle( long start, long end, const wxTextAttr& style )
17665a2b 1807{
17665a2b
VZ
1808 if ( m_windowStyle & wxTE_MULTILINE )
1809 {
1810 if ( style.IsDefault() )
1811 {
1812 // nothing to do
7d8268a1 1813 return true;
17665a2b 1814 }
cc3da3f8 1815#ifdef __WXGTK20__
41b81aed 1816 gint l = gtk_text_buffer_get_char_count( m_buffer );
17665a2b 1817
7d8268a1 1818 wxCHECK_MSG( start >= 0 && end <= l, false,
cc3da3f8
RR
1819 _T("invalid range in wxTextCtrl::SetStyle") );
1820
1821 GtkTextIter starti, endi;
41b81aed
RR
1822 gtk_text_buffer_get_iter_at_offset( m_buffer, &starti, start );
1823 gtk_text_buffer_get_iter_at_offset( m_buffer, &endi, end );
cc3da3f8
RR
1824
1825 // use the attributes from style which are set in it and fall back
1826 // first to the default style and then to the text control default
1827 // colours for the others
1828 wxTextAttr attr = wxTextAttr::Combine(style, m_defaultStyle, this);
1829
41b81aed 1830 wxGtkTextApplyTagsFromAttr( m_buffer, attr, &starti, &endi );
cc3da3f8 1831
7d8268a1 1832 return true;
cc3da3f8
RR
1833#else
1834 // VERY dirty way to do that - removes the required text and re-adds it
1835 // with styling (FIXME)
5b87f8bf 1836
17665a2b
VZ
1837 gint l = gtk_text_get_length( GTK_TEXT(m_text) );
1838
7d8268a1 1839 wxCHECK_MSG( start >= 0 && end <= l, false,
17665a2b
VZ
1840 _T("invalid range in wxTextCtrl::SetStyle") );
1841
1842 gint old_pos = gtk_editable_get_position( GTK_EDITABLE(m_text) );
1843 char *text = gtk_editable_get_chars( GTK_EDITABLE(m_text), start, end );
1844 wxString tmp(text,*wxConvCurrent);
1845 g_free( text );
1846
1847 gtk_editable_delete_text( GTK_EDITABLE(m_text), start, end );
1848 gtk_editable_set_position( GTK_EDITABLE(m_text), start );
1849
1850#if wxUSE_UNICODE
1851 wxWX2MBbuf buf = tmp.mbc_str();
1852 const char *txt = buf;
1853 size_t txtlen = strlen(buf);
1854#else
1855 const char *txt = tmp;
1856 size_t txtlen = tmp.length();
1857#endif
1858
eda40bfc
VZ
1859 // use the attributes from style which are set in it and fall back
1860 // first to the default style and then to the text control default
1861 // colours for the others
1862 wxGtkTextInsert(m_text,
1863 wxTextAttr::Combine(style, m_defaultStyle, this),
1864 txt,
1865 txtlen);
17665a2b
VZ
1866
1867 /* does not seem to help under GTK+ 1.2 !!!
1868 gtk_editable_set_position( GTK_EDITABLE(m_text), old_pos ); */
1869 SetInsertionPoint( old_pos );
fab591c5 1870#endif
7d8268a1 1871 return true;
17665a2b
VZ
1872 }
1873 else // singe line
1874 {
1875 // cannot do this for GTK+'s Entry widget
7d8268a1 1876 return false;
17665a2b
VZ
1877 }
1878}
1879
f40fdaa3 1880void wxTextCtrl::DoApplyWidgetStyle(GtkRcStyle *style)
58614078 1881{
f40fdaa3 1882 gtk_widget_modify_style(m_text, style);
68dda785 1883}
f96aa4d9 1884
e702ff0f
JS
1885void wxTextCtrl::OnCut(wxCommandEvent& WXUNUSED(event))
1886{
1887 Cut();
1888}
1889
1890void wxTextCtrl::OnCopy(wxCommandEvent& WXUNUSED(event))
1891{
1892 Copy();
1893}
1894
1895void wxTextCtrl::OnPaste(wxCommandEvent& WXUNUSED(event))
1896{
1897 Paste();
1898}
1899
1900void wxTextCtrl::OnUndo(wxCommandEvent& WXUNUSED(event))
1901{
1902 Undo();
1903}
1904
1905void wxTextCtrl::OnRedo(wxCommandEvent& WXUNUSED(event))
1906{
1907 Redo();
1908}
1909
1910void wxTextCtrl::OnUpdateCut(wxUpdateUIEvent& event)
1911{
1912 event.Enable( CanCut() );
1913}
1914
1915void wxTextCtrl::OnUpdateCopy(wxUpdateUIEvent& event)
1916{
1917 event.Enable( CanCopy() );
1918}
1919
1920void wxTextCtrl::OnUpdatePaste(wxUpdateUIEvent& event)
1921{
1922 event.Enable( CanPaste() );
1923}
1924
1925void wxTextCtrl::OnUpdateUndo(wxUpdateUIEvent& event)
1926{
1927 event.Enable( CanUndo() );
1928}
1929
1930void wxTextCtrl::OnUpdateRedo(wxUpdateUIEvent& event)
1931{
1932 event.Enable( CanRedo() );
1933}
65045edd
RR
1934
1935void wxTextCtrl::OnInternalIdle()
1936{
1937 wxCursor cursor = m_cursor;
1938 if (g_globalCursor.Ok()) cursor = g_globalCursor;
1939
307f16e8 1940 if (cursor.Ok())
65045edd 1941 {
fab591c5 1942#ifndef __WXGTK20__
65045edd 1943 GdkWindow *window = (GdkWindow*) NULL;
13111b2a 1944 if (HasFlag(wxTE_MULTILINE))
65045edd
RR
1945 window = GTK_TEXT(m_text)->text_area;
1946 else
1947 window = GTK_ENTRY(m_text)->text_area;
13111b2a 1948
65045edd
RR
1949 if (window)
1950 gdk_window_set_cursor( window, cursor.GetCursor() );
1951
1952 if (!g_globalCursor.Ok())
1953 cursor = *wxSTANDARD_CURSOR;
1954
1955 window = m_widget->window;
247e5b16 1956 if ((window) && !(GTK_WIDGET_NO_WINDOW(m_widget)))
65045edd 1957 gdk_window_set_cursor( window, cursor.GetCursor() );
fab591c5 1958#endif
65045edd 1959 }
26bf1ce0 1960
d7fa7eaa
RR
1961 if (g_delayedFocus == this)
1962 {
1963 if (GTK_WIDGET_REALIZED(m_widget))
1964 {
1965 gtk_widget_grab_focus( m_widget );
1966 g_delayedFocus = NULL;
1967 }
1968 }
1969
e39af974
JS
1970 if (wxUpdateUIEvent::CanUpdate(this))
1971 UpdateWindowUI(wxUPDATE_UI_FROMIDLE);
65045edd 1972}
f68586e5
VZ
1973
1974wxSize wxTextCtrl::DoGetBestSize() const
1975{
1976 // FIXME should be different for multi-line controls...
0279e844 1977 wxSize ret( wxControl::DoGetBestSize() );
9f884528
RD
1978 wxSize best(80, ret.y);
1979 CacheBestSize(best);
1980 return best;
f68586e5 1981}
0cc7251e 1982
9cd6d737
VZ
1983// ----------------------------------------------------------------------------
1984// freeze/thaw
1985// ----------------------------------------------------------------------------
1986
0cc7251e
VZ
1987void wxTextCtrl::Freeze()
1988{
1989 if ( HasFlag(wxTE_MULTILINE) )
1990 {
41b81aed
RR
1991#ifdef __WXGTK20__
1992 if ( !m_frozenness++ )
1993 {
1994 // freeze textview updates and remove buffer
1995 g_signal_connect( G_OBJECT(m_text), "expose_event",
1996 GTK_SIGNAL_FUNC(gtk_text_exposed_callback), (gpointer)this);
1997 g_signal_connect( G_OBJECT(m_widget), "expose_event",
1998 GTK_SIGNAL_FUNC(gtk_text_exposed_callback), (gpointer)this);
1999 gtk_widget_set_sensitive(m_widget, false);
2000 g_object_ref(m_buffer);
2001 gtk_text_view_set_buffer(GTK_TEXT_VIEW(m_text), gtk_text_buffer_new(NULL));
0cc7251e 2002 }
41b81aed
RR
2003#else
2004 gtk_text_freeze(GTK_TEXT(m_text));
fab591c5 2005#endif
41b81aed 2006 }
0cc7251e
VZ
2007}
2008
2009void wxTextCtrl::Thaw()
2010{
2011 if ( HasFlag(wxTE_MULTILINE) )
2012 {
41b81aed
RR
2013#ifdef __WXGTK20__
2014 wxASSERT_MSG( m_frozenness > 0, _T("Thaw() without matching Freeze()") );
2015
2016 if ( !--m_frozenness )
2017 {
2018 // Reattach buffer and thaw textview updates
2019 gtk_text_view_set_buffer(GTK_TEXT_VIEW(m_text), m_buffer);
2020 g_object_unref(m_buffer);
2021 gtk_widget_set_sensitive(m_widget, true);
2022 g_signal_handlers_disconnect_by_func(m_widget, (gpointer)gtk_text_exposed_callback, this);
2023 g_signal_handlers_disconnect_by_func(m_text, (gpointer)gtk_text_exposed_callback, this);
2024 }
2025#else
817ec43a
VZ
2026 GTK_TEXT(m_text)->vadj->value = 0.0;
2027
0cc7251e 2028 gtk_text_thaw(GTK_TEXT(m_text));
fab591c5 2029#endif
41b81aed 2030 }
0cc7251e 2031}
9cd6d737 2032
9440c3d0
KH
2033// ----------------------------------------------------------------------------
2034// wxTextUrlEvent passing if style & wxTE_AUTO_URL
2035// ----------------------------------------------------------------------------
2036
2037#ifdef __WXGTK20__
2038
2039// FIXME: when dragging on a link the sample gets an "Unknown event".
2040// This might be an excessive event from us or a buggy wxMouseEvent::Moving() or
2041// a buggy sample, or something else
2042void wxTextCtrl::OnUrlMouseEvent(wxMouseEvent& event)
2043{
2044 event.Skip();
2045 if(!(m_windowStyle & wxTE_AUTO_URL))
2046 return;
2047
2048 gint x, y;
2049 GtkTextIter start, end;
2050 GtkTextTag *tag = gtk_text_tag_table_lookup(gtk_text_buffer_get_tag_table(m_buffer),
2051 "wxUrl");
2052
2053 gtk_text_view_window_to_buffer_coords(GTK_TEXT_VIEW(m_text), GTK_TEXT_WINDOW_WIDGET,
2054 event.GetX(), event.GetY(), &x, &y);
2055
2056 gtk_text_view_get_iter_at_location(GTK_TEXT_VIEW(m_text), &end, x, y);
2057 if (!gtk_text_iter_has_tag(&end, tag))
2058 {
2059 gdk_window_set_cursor(gtk_text_view_get_window(GTK_TEXT_VIEW(m_text),
2060 GTK_TEXT_WINDOW_TEXT), m_gdkXTermCursor);
2061 return;
2062 }
2063
2064 gdk_window_set_cursor(gtk_text_view_get_window(GTK_TEXT_VIEW(m_text),
2065 GTK_TEXT_WINDOW_TEXT), m_gdkHandCursor);
2066
2067 start = end;
2068 if(!gtk_text_iter_begins_tag(&start, tag))
2069 gtk_text_iter_backward_to_tag_toggle(&start, tag);
2070 if(!gtk_text_iter_ends_tag(&end, tag))
2071 gtk_text_iter_forward_to_tag_toggle(&end, tag);
2072
2073 // Native context menu is probably not desired on an URL.
2074 // Consider making this dependant on ProcessEvent(wxTextUrlEvent) return value
2075 if(event.GetEventType() == wxEVT_RIGHT_DOWN)
2076 event.Skip(false);
2077
2078 wxTextUrlEvent url_event(m_windowId, event,
2079 gtk_text_iter_get_offset(&start),
2080 gtk_text_iter_get_offset(&end));
2081
2082 InitCommandEvent(url_event);
2083 // Is that a good idea? Seems not (pleasure with gtk_text_view_start_selection_drag)
2084 //event.Skip(!GetEventHandler()->ProcessEvent(url_event));
2085 GetEventHandler()->ProcessEvent(url_event);
2086}
2087#endif // gtk2
2088
9cd6d737
VZ
2089// ----------------------------------------------------------------------------
2090// scrolling
2091// ----------------------------------------------------------------------------
2092
2093GtkAdjustment *wxTextCtrl::GetVAdj() const
2094{
1ce52aa6
VZ
2095 if ( !IsMultiLine() )
2096 return NULL;
2097
fab591c5 2098#ifdef __WXGTK20__
1ce52aa6 2099 return gtk_scrolled_window_get_vadjustment(GTK_SCROLLED_WINDOW(m_widget));
fab591c5 2100#else
1ce52aa6 2101 return GTK_TEXT(m_text)->vadj;
fab591c5 2102#endif
9cd6d737
VZ
2103}
2104
2105bool wxTextCtrl::DoScroll(GtkAdjustment *adj, int diff)
2106{
2107 float value = adj->value + diff;
2108
2109 if ( value < 0 )
2110 value = 0;
2111
2112 float upper = adj->upper - adj->page_size;
2113 if ( value > upper )
2114 value = upper;
2115
2116 // did we noticeably change the scroll position?
2117 if ( fabs(adj->value - value) < 0.2 )
2118 {
2119 // well, this is what Robert does in wxScrollBar, so it must be good...
7d8268a1 2120 return false;
9cd6d737
VZ
2121 }
2122
2123 adj->value = value;
2124
1ce52aa6
VZ
2125#ifdef __WXGTK20__
2126 gtk_adjustment_value_changed(GTK_ADJUSTMENT(adj));
2127#else
9cd6d737 2128 gtk_signal_emit_by_name(GTK_OBJECT(adj), "value_changed");
fab591c5 2129#endif
1ce52aa6 2130
7d8268a1 2131 return true;
9cd6d737
VZ
2132}
2133
2134bool wxTextCtrl::ScrollLines(int lines)
2135{
2136 GtkAdjustment *adj = GetVAdj();
2137 if ( !adj )
7d8268a1 2138 return false;
9cd6d737 2139
1ce52aa6
VZ
2140#ifdef __WXGTK20__
2141 int diff = (int)ceil(lines*adj->step_increment);
2142#else
9cd6d737 2143 // this is hardcoded to 10 in GTK+ 1.2 (great idea)
1ce52aa6 2144 int diff = 10*lines;
fab591c5 2145#endif
1ce52aa6
VZ
2146
2147 return DoScroll(adj, diff);
9cd6d737
VZ
2148}
2149
2150bool wxTextCtrl::ScrollPages(int pages)
2151{
2152 GtkAdjustment *adj = GetVAdj();
2153 if ( !adj )
7d8268a1 2154 return false;
9cd6d737 2155
817ec43a 2156 return DoScroll(adj, (int)ceil(pages*adj->page_increment));
9cd6d737
VZ
2157}
2158
9d522606
RD
2159
2160// static
2161wxVisualAttributes
2162wxTextCtrl::GetClassDefaultAttributes(wxWindowVariant WXUNUSED(variant))
2163{
2164 return GetDefaultAttributesFromGTKWidget(gtk_entry_new, true);
2165}