]>
Commit | Line | Data |
---|---|---|
c801d85f KB |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: textctrl.cpp | |
3 | // Purpose: | |
4 | // Author: Robert Roebling | |
f96aa4d9 | 5 | // Id: $Id$ |
a81258be | 6 | // Copyright: (c) 1998 Robert Roebling, Vadim Zeitlin |
13289f04 | 7 | // Licence: wxWindows licence |
c801d85f KB |
8 | ///////////////////////////////////////////////////////////////////////////// |
9 | ||
10 | #ifdef __GNUG__ | |
11 | #pragma implementation "textctrl.h" | |
12 | #endif | |
13 | ||
14 | #include "wx/textctrl.h" | |
15 | #include "wx/utils.h" | |
ae0bdb01 RR |
16 | #include "wx/intl.h" |
17 | #include "wx/settings.h" | |
c801d85f | 18 | |
a81258be RR |
19 | #include <sys/types.h> |
20 | #include <sys/stat.h> | |
21 | #include <ctype.h> | |
22 | ||
83624f79 RR |
23 | #include "gdk/gdk.h" |
24 | #include "gtk/gtk.h" | |
b292e2f5 RR |
25 | #include "gdk/gdkkeysyms.h" |
26 | ||
27 | //----------------------------------------------------------------------------- | |
28 | // data | |
29 | //----------------------------------------------------------------------------- | |
30 | ||
31 | extern bool g_blockEventsOnDrag; | |
32 | ||
c801d85f | 33 | //----------------------------------------------------------------------------- |
2f2aa628 | 34 | // "changed" |
c801d85f KB |
35 | //----------------------------------------------------------------------------- |
36 | ||
805dd538 | 37 | static void |
2830bf19 | 38 | gtk_text_changed_callback( GtkWidget *WXUNUSED(widget), wxTextCtrl *win ) |
484e45bf | 39 | { |
2830bf19 | 40 | win->SetModified(); |
805dd538 | 41 | |
2830bf19 | 42 | win->CalculateScrollbar(); |
8bbe427f | 43 | |
2830bf19 | 44 | wxCommandEvent event( wxEVT_COMMAND_TEXT_UPDATED, win->m_windowId ); |
0c77152e | 45 | event.SetString( copystring(win->GetValue()) ); |
2830bf19 RR |
46 | event.SetEventObject( win ); |
47 | win->GetEventHandler()->ProcessEvent( event ); | |
0c77152e | 48 | delete[] event.GetString(); |
6de97a3b | 49 | } |
112892b9 | 50 | |
2830bf19 RR |
51 | //----------------------------------------------------------------------------- |
52 | // "size_allocate" | |
53 | //----------------------------------------------------------------------------- | |
54 | ||
805dd538 | 55 | static void |
2830bf19 RR |
56 | gtk_text_size_callback( GtkWidget *WXUNUSED(widget), GtkAllocation* WXUNUSED(alloc), wxTextCtrl *win ) |
57 | { | |
58 | win->CalculateScrollbar(); | |
59 | } | |
60 | ||
2f2aa628 RR |
61 | //----------------------------------------------------------------------------- |
62 | // wxTextCtrl | |
63 | //----------------------------------------------------------------------------- | |
64 | ||
65 | IMPLEMENT_DYNAMIC_CLASS(wxTextCtrl,wxControl) | |
66 | ||
c801d85f | 67 | BEGIN_EVENT_TABLE(wxTextCtrl, wxControl) |
2830bf19 | 68 | EVT_CHAR(wxTextCtrl::OnChar) |
c801d85f KB |
69 | END_EVENT_TABLE() |
70 | ||
f5abe911 | 71 | #ifndef NO_TEXT_WINDOW_STREAM |
03f38c58 | 72 | wxTextCtrl::wxTextCtrl() : streambuf() |
c801d85f | 73 | { |
2830bf19 | 74 | if (allocate()) setp(base(),ebuf()); |
13289f04 | 75 | |
2830bf19 | 76 | m_modified = FALSE; |
6de97a3b | 77 | } |
f5abe911 RR |
78 | #else |
79 | wxTextCtrl::wxTextCtrl() | |
80 | { | |
81 | m_modified = FALSE; | |
82 | } | |
83 | #endif | |
c801d85f | 84 | |
f5abe911 | 85 | #ifndef NO_TEXT_WINDOW_STREAM |
debe6624 | 86 | wxTextCtrl::wxTextCtrl( wxWindow *parent, wxWindowID id, const wxString &value, |
484e45bf | 87 | const wxPoint &pos, const wxSize &size, |
6de97a3b | 88 | int style, const wxValidator& validator, const wxString &name ) : streambuf() |
c801d85f | 89 | { |
2830bf19 | 90 | if (allocate()) setp(base(),ebuf()); |
13289f04 | 91 | |
2830bf19 RR |
92 | m_modified = FALSE; |
93 | Create( parent, id, value, pos, size, style, validator, name ); | |
6de97a3b | 94 | } |
f5abe911 RR |
95 | #else |
96 | wxTextCtrl::wxTextCtrl( wxWindow *parent, wxWindowID id, const wxString &value, | |
97 | const wxPoint &pos, const wxSize &size, | |
98 | int style, const wxValidator& validator, const wxString &name ) | |
99 | { | |
100 | m_modified = FALSE; | |
101 | Create( parent, id, value, pos, size, style, validator, name ); | |
102 | } | |
103 | #endif | |
c801d85f | 104 | |
debe6624 | 105 | bool wxTextCtrl::Create( wxWindow *parent, wxWindowID id, const wxString &value, |
484e45bf | 106 | const wxPoint &pos, const wxSize &size, |
6de97a3b | 107 | int style, const wxValidator& validator, const wxString &name ) |
c801d85f | 108 | { |
2830bf19 | 109 | m_needParent = TRUE; |
b292e2f5 | 110 | m_acceptsFocus = TRUE; |
484e45bf | 111 | |
2830bf19 | 112 | PreCreation( parent, id, pos, size, style, name ); |
6de97a3b | 113 | |
2830bf19 | 114 | SetValidator( validator ); |
805dd538 | 115 | |
2830bf19 | 116 | m_vScrollbarVisible = TRUE; |
13289f04 | 117 | |
2830bf19 RR |
118 | bool multi_line = (style & wxTE_MULTILINE) != 0; |
119 | if ( multi_line ) | |
120 | { | |
121 | // a multi-line edit control: create a vertical scrollbar by default and | |
122 | // horizontal if requested | |
123 | bool bHasHScrollbar = (style & wxHSCROLL) != 0; | |
805dd538 | 124 | |
2830bf19 RR |
125 | // create our control... |
126 | m_text = gtk_text_new( (GtkAdjustment *) NULL, (GtkAdjustment *) NULL ); | |
127 | ||
128 | // ... and put into the upper left hand corner of the table | |
129 | m_widget = gtk_table_new(bHasHScrollbar ? 2 : 1, 2, FALSE); | |
130 | gtk_table_attach( GTK_TABLE(m_widget), m_text, 0, 1, 0, 1, | |
41dee9d0 | 131 | (GtkAttachOptions)(GTK_FILL | GTK_EXPAND | GTK_SHRINK), |
f5368809 RR |
132 | (GtkAttachOptions)(GTK_FILL | GTK_EXPAND | GTK_SHRINK), |
133 | 0, 0); | |
13289f04 | 134 | |
2830bf19 RR |
135 | // put the horizontal scrollbar in the lower left hand corner |
136 | if (bHasHScrollbar) | |
137 | { | |
138 | GtkWidget *hscrollbar = gtk_hscrollbar_new(GTK_TEXT(m_text)->hadj); | |
139 | gtk_table_attach(GTK_TABLE(m_widget), hscrollbar, 0, 1, 1, 2, | |
f5368809 | 140 | (GtkAttachOptions)(GTK_EXPAND | GTK_FILL), |
13289f04 VZ |
141 | GTK_FILL, |
142 | 0, 0); | |
2830bf19 RR |
143 | gtk_widget_show(hscrollbar); |
144 | } | |
13289f04 | 145 | |
2830bf19 RR |
146 | // finally, put the vertical scrollbar in the upper right corner |
147 | m_vScrollbar = gtk_vscrollbar_new( GTK_TEXT(m_text)->vadj ); | |
148 | gtk_table_attach(GTK_TABLE(m_widget), m_vScrollbar, 1, 2, 0, 1, | |
13289f04 | 149 | GTK_FILL, |
f5368809 | 150 | (GtkAttachOptions)(GTK_EXPAND | GTK_FILL | GTK_SHRINK), |
13289f04 | 151 | 0, 0); |
2830bf19 | 152 | gtk_widget_show( m_vScrollbar ); |
805dd538 | 153 | |
2830bf19 RR |
154 | gtk_signal_connect( GTK_OBJECT(m_widget), "size_allocate", |
155 | GTK_SIGNAL_FUNC(gtk_text_size_callback), (gpointer)this ); | |
156 | } | |
157 | else | |
158 | { | |
159 | // a single-line text control: no need for scrollbars | |
160 | m_widget = | |
161 | m_text = gtk_entry_new(); | |
162 | } | |
484e45bf | 163 | |
2830bf19 RR |
164 | wxSize newSize = size; |
165 | if (newSize.x == -1) newSize.x = 80; | |
166 | if (newSize.y == -1) newSize.y = 26; | |
167 | SetSize( newSize.x, newSize.y ); | |
484e45bf | 168 | |
2830bf19 | 169 | m_parent->AddChild( this ); |
6ca41e57 | 170 | |
2830bf19 | 171 | (m_parent->m_insertCallback)( m_parent, this ); |
8bbe427f | 172 | |
2830bf19 | 173 | PostCreation(); |
484e45bf | 174 | |
2830bf19 RR |
175 | if (multi_line) |
176 | { | |
177 | gtk_widget_realize(m_text); | |
178 | gtk_widget_show(m_text); | |
179 | } | |
13289f04 | 180 | |
2830bf19 | 181 | // we want to be notified about text changes |
b292e2f5 RR |
182 | gtk_signal_connect( GTK_OBJECT(m_text), "changed", |
183 | GTK_SIGNAL_FUNC(gtk_text_changed_callback), (gpointer)this); | |
484e45bf | 184 | |
291a8f20 | 185 | if (!value.IsEmpty()) |
2830bf19 RR |
186 | { |
187 | gint tmp = 0; | |
188 | gtk_editable_insert_text( GTK_EDITABLE(m_text), value, value.Length(), &tmp ); | |
291a8f20 RR |
189 | |
190 | if (multi_line) | |
191 | { | |
192 | /* bring editable's cursor uptodate. bug in GTK. */ | |
193 | ||
194 | GTK_EDITABLE(m_text)->current_pos = gtk_text_get_point( GTK_TEXT(m_text) ); | |
195 | } | |
2830bf19 | 196 | } |
484e45bf | 197 | |
2830bf19 RR |
198 | if (style & wxTE_PASSWORD) |
199 | { | |
200 | if (!multi_line) | |
201 | gtk_entry_set_visibility( GTK_ENTRY(m_text), FALSE ); | |
202 | } | |
8bbe427f | 203 | |
2830bf19 RR |
204 | if (style & wxTE_READONLY) |
205 | { | |
206 | if (!multi_line) | |
207 | gtk_entry_set_editable( GTK_ENTRY(m_text), FALSE ); | |
208 | } | |
209 | else | |
210 | { | |
211 | if (multi_line) | |
212 | gtk_text_set_editable( GTK_TEXT(m_text), 1 ); | |
213 | } | |
805dd538 | 214 | |
2830bf19 | 215 | Show( TRUE ); |
805dd538 | 216 | |
2830bf19 RR |
217 | SetBackgroundColour( parent->GetBackgroundColour() ); |
218 | SetForegroundColour( parent->GetForegroundColour() ); | |
484e45bf | 219 | |
2830bf19 RR |
220 | return TRUE; |
221 | } | |
484e45bf | 222 | |
2830bf19 RR |
223 | void wxTextCtrl::CalculateScrollbar() |
224 | { | |
225 | if ((m_windowStyle & wxTE_MULTILINE) == 0) return; | |
f96aa4d9 | 226 | |
2830bf19 | 227 | GtkAdjustment *adj = GTK_TEXT(m_text)->vadj; |
805dd538 | 228 | |
2830bf19 RR |
229 | if (adj->upper - adj->page_size < 0.8) |
230 | { | |
231 | if (m_vScrollbarVisible) | |
232 | { | |
805dd538 VZ |
233 | gtk_widget_hide( m_vScrollbar ); |
234 | ||
235 | m_vScrollbarVisible = FALSE; | |
2830bf19 RR |
236 | } |
237 | } | |
238 | else | |
239 | { | |
240 | if (!m_vScrollbarVisible) | |
241 | { | |
805dd538 VZ |
242 | gtk_widget_show( m_vScrollbar ); |
243 | ||
244 | m_vScrollbarVisible = TRUE; | |
2830bf19 RR |
245 | } |
246 | } | |
6de97a3b | 247 | } |
c801d85f | 248 | |
03f38c58 | 249 | wxString wxTextCtrl::GetValue() const |
c801d85f | 250 | { |
2830bf19 | 251 | wxCHECK_MSG( m_text != NULL, "", "invalid text ctrl" ); |
8bbe427f | 252 | |
2830bf19 RR |
253 | wxString tmp; |
254 | if (m_windowStyle & wxTE_MULTILINE) | |
255 | { | |
256 | gint len = gtk_text_get_length( GTK_TEXT(m_text) ); | |
257 | char *text = gtk_editable_get_chars( GTK_EDITABLE(m_text), 0, len ); | |
258 | tmp = text; | |
259 | g_free( text ); | |
260 | } | |
261 | else | |
262 | { | |
263 | tmp = gtk_entry_get_text( GTK_ENTRY(m_text) ); | |
264 | } | |
265 | return tmp; | |
6de97a3b | 266 | } |
c801d85f KB |
267 | |
268 | void wxTextCtrl::SetValue( const wxString &value ) | |
269 | { | |
2830bf19 | 270 | wxCHECK_RET( m_text != NULL, "invalid text ctrl" ); |
8bbe427f | 271 | |
2830bf19 RR |
272 | wxString tmp = ""; |
273 | if (!value.IsNull()) tmp = value; | |
274 | if (m_windowStyle & wxTE_MULTILINE) | |
275 | { | |
276 | gint len = gtk_text_get_length( GTK_TEXT(m_text) ); | |
277 | gtk_editable_delete_text( GTK_EDITABLE(m_text), 0, len ); | |
278 | len = 0; | |
279 | gtk_editable_insert_text( GTK_EDITABLE(m_text), tmp, tmp.Length(), &len ); | |
280 | } | |
281 | else | |
282 | { | |
283 | gtk_entry_set_text( GTK_ENTRY(m_text), tmp ); | |
284 | } | |
6de97a3b | 285 | } |
c801d85f KB |
286 | |
287 | void wxTextCtrl::WriteText( const wxString &text ) | |
288 | { | |
2830bf19 | 289 | wxCHECK_RET( m_text != NULL, "invalid text ctrl" ); |
8bbe427f | 290 | |
2830bf19 | 291 | if (text.IsNull()) return; |
484e45bf | 292 | |
2830bf19 RR |
293 | if (m_windowStyle & wxTE_MULTILINE) |
294 | { | |
291a8f20 RR |
295 | /* this moves the cursor pos to behind the inserted text */ |
296 | ||
ac0d36b5 | 297 | gint len = GTK_EDITABLE(m_text)->current_pos; |
291a8f20 | 298 | |
2830bf19 | 299 | gtk_editable_insert_text( GTK_EDITABLE(m_text), text, text.Length(), &len ); |
291a8f20 RR |
300 | |
301 | /* bring editable's cursor uptodate. bug in GTK. */ | |
302 | ||
303 | GTK_EDITABLE(m_text)->current_pos = gtk_text_get_point( GTK_TEXT(m_text) ); | |
304 | ||
2830bf19 RR |
305 | } |
306 | else | |
307 | { | |
308 | gtk_entry_append_text( GTK_ENTRY(m_text), text ); | |
309 | } | |
6de97a3b | 310 | } |
c801d85f | 311 | |
a6e21573 HH |
312 | void wxTextCtrl::AppendText( const wxString &text ) |
313 | { | |
314 | wxCHECK_RET( m_text != NULL, "invalid text ctrl" ); | |
315 | ||
316 | if (m_windowStyle & wxTE_MULTILINE) | |
317 | { | |
318 | /* we'll insert at the last position */ | |
319 | gint len = gtk_text_get_length( GTK_TEXT(m_text) ); | |
320 | gtk_editable_insert_text( GTK_EDITABLE(m_text), text, text.Length(), &len ); | |
321 | GTK_EDITABLE(m_text)->current_pos = gtk_text_get_point( GTK_TEXT(m_text) ); | |
322 | } | |
323 | else | |
324 | { | |
325 | gtk_entry_append_text( GTK_ENTRY(m_text), text ); | |
326 | } | |
327 | } | |
328 | ||
a81258be | 329 | bool wxTextCtrl::LoadFile( const wxString &file ) |
c801d85f | 330 | { |
a81258be | 331 | wxCHECK_MSG( m_text != NULL, FALSE, "invalid text ctrl" ); |
8bbe427f | 332 | |
a81258be | 333 | if (!wxFileExists(file)) return FALSE; |
2ad3a34e | 334 | |
a81258be RR |
335 | Clear(); |
336 | ||
bbe0af5b | 337 | FILE *fp = (FILE*) NULL; |
a81258be | 338 | struct stat statb; |
8bbe427f | 339 | |
a81258be RR |
340 | if ((stat ((char*) (const char*) file, &statb) == -1) || (statb.st_mode & S_IFMT) != S_IFREG || |
341 | !(fp = fopen ((char*) (const char*) file, "r"))) | |
342 | { | |
343 | return FALSE; | |
344 | } | |
345 | else | |
346 | { | |
347 | gint len = statb.st_size; | |
348 | char *text; | |
349 | if (!(text = (char*)malloc ((unsigned) (len + 1)))) | |
350 | { | |
351 | fclose (fp); | |
352 | return FALSE; | |
353 | } | |
354 | if (fread (text, sizeof (char), len, fp) != (size_t) len) | |
805dd538 VZ |
355 | { |
356 | } | |
a81258be RR |
357 | fclose (fp); |
358 | ||
359 | text[len] = 0; | |
8bbe427f | 360 | |
a81258be RR |
361 | if (m_windowStyle & wxTE_MULTILINE) |
362 | { | |
435fe83e RR |
363 | gint pos = 0; |
364 | gtk_editable_insert_text( GTK_EDITABLE(m_text), text, len, &pos ); | |
a81258be RR |
365 | } |
366 | else | |
367 | { | |
368 | gtk_entry_set_text( GTK_ENTRY(m_text), text ); | |
369 | } | |
8bbe427f | 370 | |
a81258be RR |
371 | free (text); |
372 | m_modified = FALSE; | |
373 | return TRUE; | |
374 | } | |
112892b9 | 375 | return FALSE; |
6de97a3b | 376 | } |
c801d85f | 377 | |
a81258be | 378 | bool wxTextCtrl::SaveFile( const wxString &file ) |
c801d85f | 379 | { |
a81258be | 380 | wxCHECK_MSG( m_text != NULL, FALSE, "invalid text ctrl" ); |
8bbe427f | 381 | |
a81258be | 382 | if (file == "") return FALSE; |
8bbe427f | 383 | |
a81258be | 384 | FILE *fp; |
2ad3a34e | 385 | |
a81258be RR |
386 | if (!(fp = fopen ((char*) (const char*) file, "w"))) |
387 | { | |
388 | return FALSE; | |
389 | } | |
390 | else | |
391 | { | |
bbe0af5b | 392 | char *text = (char*) NULL; |
a81258be | 393 | gint len = 0; |
8bbe427f | 394 | |
a81258be RR |
395 | if (m_windowStyle & wxTE_MULTILINE) |
396 | { | |
397 | len = gtk_text_get_length( GTK_TEXT(m_text) ); | |
398 | text = gtk_editable_get_chars( GTK_EDITABLE(m_text), 0, len ); | |
399 | } | |
400 | else | |
401 | { | |
402 | text = gtk_entry_get_text( GTK_ENTRY(m_text) ); | |
403 | } | |
8bbe427f | 404 | |
a81258be | 405 | if (fwrite (text, sizeof (char), len, fp) != (size_t) len) |
96385642 VZ |
406 | { |
407 | // Did not write whole file | |
408 | } | |
8bbe427f | 409 | |
a81258be RR |
410 | // Make sure newline terminates the file |
411 | if (text[len - 1] != '\n') | |
96385642 | 412 | fputc ('\n', fp); |
a81258be RR |
413 | |
414 | fclose (fp); | |
8bbe427f | 415 | |
a81258be | 416 | if (m_windowStyle & wxTE_MULTILINE) g_free( text ); |
8bbe427f | 417 | |
a81258be RR |
418 | m_modified = FALSE; |
419 | return TRUE; | |
420 | } | |
421 | ||
422 | return TRUE; | |
6de97a3b | 423 | } |
c801d85f | 424 | |
debe6624 | 425 | wxString wxTextCtrl::GetLineText( long lineNo ) const |
c801d85f | 426 | { |
a81258be RR |
427 | if (m_windowStyle & wxTE_MULTILINE) |
428 | { | |
429 | gint len = gtk_text_get_length( GTK_TEXT(m_text) ); | |
430 | char *text = gtk_editable_get_chars( GTK_EDITABLE(m_text), 0, len ); | |
431 | ||
432 | if (text) | |
433 | { | |
434 | wxString buf(""); | |
435 | long i; | |
436 | int currentLine = 0; | |
437 | for (i = 0; currentLine != lineNo && text[i]; i++ ) | |
438 | if (text[i] == '\n') | |
439 | currentLine++; | |
440 | // Now get the text | |
441 | int j; | |
442 | for (j = 0; text[i] && text[i] != '\n'; i++, j++ ) | |
443 | buf += text[i]; | |
8bbe427f | 444 | |
a81258be RR |
445 | g_free( text ); |
446 | return buf; | |
447 | } | |
448 | else | |
449 | return wxEmptyString; | |
450 | } | |
451 | else | |
452 | { | |
453 | if (lineNo == 0) return GetValue(); | |
454 | return wxEmptyString; | |
455 | } | |
6de97a3b | 456 | } |
c801d85f | 457 | |
a81258be RR |
458 | void wxTextCtrl::OnDropFiles( wxDropFilesEvent &WXUNUSED(event) ) |
459 | { | |
ac0d36b5 HH |
460 | /* If you implement this, don't forget to update the documentation! |
461 | * (file docs/latex/wx/text.tex) */ | |
2830bf19 | 462 | wxFAIL_MSG( "wxTextCtrl::OnDropFiles not implemented" ); |
a81258be | 463 | } |
112892b9 | 464 | |
e3ca08dd | 465 | long wxTextCtrl::PositionToXY(long pos, long *x, long *y ) const |
c801d85f | 466 | { |
96385642 | 467 | if ( m_windowStyle & wxTE_MULTILINE ) |
805dd538 | 468 | { |
96385642 VZ |
469 | wxString text = GetValue(); |
470 | ||
6085b116 | 471 | // cast to prevent warning. But pos really should've been unsigned. |
2829d9e3 | 472 | if( (unsigned long)pos > text.Len() ) |
96385642 VZ |
473 | return FALSE; |
474 | ||
ac0d36b5 HH |
475 | *x=0; // First Col |
476 | *y=0; // First Line | |
2829d9e3 | 477 | |
6085b116 VZ |
478 | const char* stop = text.c_str() + pos; |
479 | for ( const char *p = text.c_str(); p < stop; p++ ) | |
96385642 VZ |
480 | { |
481 | if (*p == '\n') | |
482 | { | |
483 | (*y)++; | |
ac0d36b5 | 484 | *x=0; |
96385642 VZ |
485 | } |
486 | else | |
487 | (*x)++; | |
488 | } | |
805dd538 | 489 | } |
96385642 VZ |
490 | else // single line control |
491 | { | |
2829d9e3 | 492 | if ( pos <= GTK_ENTRY(m_text)->text_length ) |
96385642 | 493 | { |
ac0d36b5 | 494 | *y = 0; |
96385642 VZ |
495 | *x = pos; |
496 | } | |
497 | else | |
498 | { | |
499 | // index out of bounds | |
500 | return FALSE; | |
501 | } | |
8bbe427f | 502 | } |
96385642 VZ |
503 | |
504 | return TRUE; | |
6de97a3b | 505 | } |
c801d85f | 506 | |
e3ca08dd | 507 | long wxTextCtrl::XYToPosition(long x, long y ) const |
c801d85f | 508 | { |
2830bf19 | 509 | if (!(m_windowStyle & wxTE_MULTILINE)) return 0; |
805dd538 | 510 | |
2830bf19 | 511 | long pos=0; |
ac0d36b5 | 512 | for( int i=0; i<y; i++ ) pos += GetLineLength(i) + 1; // one for '\n' |
8bbe427f | 513 | |
ac0d36b5 | 514 | pos += x; |
2830bf19 | 515 | return pos; |
6de97a3b | 516 | } |
c801d85f | 517 | |
a81258be | 518 | int wxTextCtrl::GetLineLength(long lineNo) const |
c801d85f | 519 | { |
a81258be RR |
520 | wxString str = GetLineText (lineNo); |
521 | return (int) str.Length(); | |
6de97a3b | 522 | } |
c801d85f | 523 | |
a81258be | 524 | int wxTextCtrl::GetNumberOfLines() const |
c801d85f | 525 | { |
2830bf19 | 526 | if (m_windowStyle & wxTE_MULTILINE) |
a81258be | 527 | { |
2830bf19 RR |
528 | gint len = gtk_text_get_length( GTK_TEXT(m_text) ); |
529 | char *text = gtk_editable_get_chars( GTK_EDITABLE(m_text), 0, len ); | |
530 | ||
531 | if (text) | |
532 | { | |
533 | int currentLine = 0; | |
534 | for (int i = 0; i < len; i++ ) | |
96385642 | 535 | { |
2830bf19 | 536 | if (text[i] == '\n') |
96385642 VZ |
537 | currentLine++; |
538 | } | |
2830bf19 | 539 | g_free( text ); |
2829d9e3 VZ |
540 | |
541 | // currentLine is 0 based, add 1 to get number of lines | |
542 | return currentLine + 1; | |
2830bf19 RR |
543 | } |
544 | else | |
96385642 | 545 | { |
2830bf19 | 546 | return 0; |
96385642 | 547 | } |
a81258be RR |
548 | } |
549 | else | |
2830bf19 | 550 | { |
96385642 | 551 | return 1; |
2830bf19 | 552 | } |
6de97a3b | 553 | } |
c801d85f | 554 | |
debe6624 | 555 | void wxTextCtrl::SetInsertionPoint( long pos ) |
c801d85f | 556 | { |
2830bf19 | 557 | wxCHECK_RET( m_text != NULL, "invalid text ctrl" ); |
291a8f20 RR |
558 | |
559 | if (m_windowStyle & wxTE_MULTILINE) | |
560 | { | |
561 | /* seems to be broken in GTK 1.0.X: | |
562 | gtk_text_set_point( GTK_TEXT(m_text), (int)pos ); */ | |
563 | ||
564 | gtk_signal_disconnect_by_func( GTK_OBJECT(m_text), | |
565 | GTK_SIGNAL_FUNC(gtk_text_changed_callback), (gpointer)this); | |
566 | ||
567 | /* we fake a set_point by inserting and deleting. as the user | |
568 | isn't supposed to get to know about thos non-sense, we | |
569 | disconnect so that no events are sent to the user program. */ | |
570 | ||
571 | gint tmp = (gint)pos; | |
572 | gtk_editable_insert_text( GTK_EDITABLE(m_text), " ", 1, &tmp ); | |
573 | gtk_editable_delete_text( GTK_EDITABLE(m_text), tmp-1, tmp ); | |
574 | ||
575 | gtk_signal_connect( GTK_OBJECT(m_text), "changed", | |
576 | GTK_SIGNAL_FUNC(gtk_text_changed_callback), (gpointer)this); | |
577 | ||
578 | /* bring editable's cursor uptodate. another bug in GTK. */ | |
579 | ||
580 | GTK_EDITABLE(m_text)->current_pos = gtk_text_get_point( GTK_TEXT(m_text) ); | |
ac0d36b5 | 581 | } |
2830bf19 | 582 | else |
291a8f20 | 583 | { |
d59051dd | 584 | gtk_entry_set_position( GTK_ENTRY(m_text), (int)pos ); |
291a8f20 | 585 | } |
6de97a3b | 586 | } |
c801d85f | 587 | |
03f38c58 | 588 | void wxTextCtrl::SetInsertionPointEnd() |
c801d85f | 589 | { |
2830bf19 | 590 | wxCHECK_RET( m_text != NULL, "invalid text ctrl" ); |
8bbe427f | 591 | |
d59051dd VZ |
592 | if (m_windowStyle & wxTE_MULTILINE) |
593 | SetInsertionPoint(gtk_text_get_length(GTK_TEXT(m_text))); | |
594 | else | |
595 | gtk_entry_set_position( GTK_ENTRY(m_text), -1 ); | |
6de97a3b | 596 | } |
c801d85f | 597 | |
debe6624 | 598 | void wxTextCtrl::SetEditable( bool editable ) |
c801d85f | 599 | { |
2830bf19 | 600 | wxCHECK_RET( m_text != NULL, "invalid text ctrl" ); |
8bbe427f | 601 | |
2830bf19 RR |
602 | if (m_windowStyle & wxTE_MULTILINE) |
603 | gtk_text_set_editable( GTK_TEXT(m_text), editable ); | |
604 | else | |
605 | gtk_entry_set_editable( GTK_ENTRY(m_text), editable ); | |
6de97a3b | 606 | } |
c801d85f | 607 | |
debe6624 | 608 | void wxTextCtrl::SetSelection( long from, long to ) |
c801d85f | 609 | { |
2830bf19 | 610 | wxCHECK_RET( m_text != NULL, "invalid text ctrl" ); |
8bbe427f | 611 | |
2830bf19 | 612 | gtk_editable_select_region( GTK_EDITABLE(m_text), (gint)from, (gint)to ); |
6de97a3b | 613 | } |
c801d85f | 614 | |
debe6624 | 615 | void wxTextCtrl::ShowPosition( long WXUNUSED(pos) ) |
c801d85f | 616 | { |
2830bf19 | 617 | wxFAIL_MSG( "wxTextCtrl::ShowPosition not implemented" ); |
6de97a3b | 618 | } |
c801d85f | 619 | |
03f38c58 | 620 | long wxTextCtrl::GetInsertionPoint() const |
c801d85f | 621 | { |
2830bf19 | 622 | wxCHECK_MSG( m_text != NULL, 0, "invalid text ctrl" ); |
8bbe427f | 623 | |
2830bf19 | 624 | return (long) GTK_EDITABLE(m_text)->current_pos; |
6de97a3b | 625 | } |
c801d85f | 626 | |
03f38c58 | 627 | long wxTextCtrl::GetLastPosition() const |
c801d85f | 628 | { |
2830bf19 | 629 | wxCHECK_MSG( m_text != NULL, 0, "invalid text ctrl" ); |
8bbe427f | 630 | |
2830bf19 RR |
631 | int pos = 0; |
632 | if (m_windowStyle & wxTE_MULTILINE) | |
633 | pos = gtk_text_get_length( GTK_TEXT(m_text) ); | |
634 | else | |
635 | pos = GTK_ENTRY(m_text)->text_length; | |
805dd538 | 636 | |
ac0d36b5 | 637 | return (long)pos; |
6de97a3b | 638 | } |
c801d85f | 639 | |
debe6624 | 640 | void wxTextCtrl::Remove( long from, long to ) |
c801d85f | 641 | { |
2830bf19 | 642 | wxCHECK_RET( m_text != NULL, "invalid text ctrl" ); |
8bbe427f | 643 | |
2830bf19 | 644 | gtk_editable_delete_text( GTK_EDITABLE(m_text), (gint)from, (gint)to ); |
6de97a3b | 645 | } |
c801d85f | 646 | |
debe6624 | 647 | void wxTextCtrl::Replace( long from, long to, const wxString &value ) |
c801d85f | 648 | { |
2830bf19 | 649 | wxCHECK_RET( m_text != NULL, "invalid text ctrl" ); |
8bbe427f | 650 | |
2830bf19 RR |
651 | gtk_editable_delete_text( GTK_EDITABLE(m_text), (gint)from, (gint)to ); |
652 | if (value.IsNull()) return; | |
435fe83e | 653 | gint pos = (gint)from; |
2830bf19 | 654 | gtk_editable_insert_text( GTK_EDITABLE(m_text), value, value.Length(), &pos ); |
6de97a3b | 655 | } |
c801d85f | 656 | |
03f38c58 | 657 | void wxTextCtrl::Cut() |
c801d85f | 658 | { |
2830bf19 | 659 | wxCHECK_RET( m_text != NULL, "invalid text ctrl" ); |
8bbe427f | 660 | |
75ed1d15 | 661 | #if (GTK_MINOR_VERSION == 1) |
2830bf19 | 662 | gtk_editable_cut_clipboard( GTK_EDITABLE(m_text) ); |
75ed1d15 | 663 | #else |
2830bf19 | 664 | gtk_editable_cut_clipboard( GTK_EDITABLE(m_text), 0 ); |
75ed1d15 | 665 | #endif |
6de97a3b | 666 | } |
c801d85f | 667 | |
03f38c58 | 668 | void wxTextCtrl::Copy() |
c801d85f | 669 | { |
2830bf19 | 670 | wxCHECK_RET( m_text != NULL, "invalid text ctrl" ); |
8bbe427f | 671 | |
75ed1d15 | 672 | #if (GTK_MINOR_VERSION == 1) |
2830bf19 | 673 | gtk_editable_copy_clipboard( GTK_EDITABLE(m_text) ); |
75ed1d15 | 674 | #else |
2830bf19 | 675 | gtk_editable_copy_clipboard( GTK_EDITABLE(m_text), 0 ); |
75ed1d15 | 676 | #endif |
6de97a3b | 677 | } |
c801d85f | 678 | |
03f38c58 | 679 | void wxTextCtrl::Paste() |
c801d85f | 680 | { |
2830bf19 | 681 | wxCHECK_RET( m_text != NULL, "invalid text ctrl" ); |
8bbe427f | 682 | |
75ed1d15 | 683 | #if (GTK_MINOR_VERSION == 1) |
2830bf19 | 684 | gtk_editable_paste_clipboard( GTK_EDITABLE(m_text) ); |
75ed1d15 | 685 | #else |
2830bf19 | 686 | gtk_editable_paste_clipboard( GTK_EDITABLE(m_text), 0 ); |
75ed1d15 | 687 | #endif |
6de97a3b | 688 | } |
c801d85f | 689 | |
03f38c58 | 690 | void wxTextCtrl::Clear() |
c801d85f | 691 | { |
2830bf19 | 692 | SetValue( "" ); |
6de97a3b | 693 | } |
c801d85f | 694 | |
903f689b | 695 | void wxTextCtrl::OnChar( wxKeyEvent &key_event ) |
c801d85f | 696 | { |
2830bf19 | 697 | wxCHECK_RET( m_text != NULL, "invalid text ctrl" ); |
805dd538 | 698 | |
2830bf19 RR |
699 | if ((key_event.KeyCode() == WXK_RETURN) && (m_windowStyle & wxPROCESS_ENTER)) |
700 | { | |
701 | wxCommandEvent event(wxEVT_COMMAND_TEXT_ENTER, m_windowId); | |
702 | event.SetEventObject(this); | |
703 | if (GetEventHandler()->ProcessEvent(event)) return; | |
704 | } | |
903f689b | 705 | |
2830bf19 | 706 | key_event.Skip(); |
6de97a3b | 707 | } |
c801d85f | 708 | |
f5abe911 | 709 | #ifndef NO_TEXT_WINDOW_STREAM |
46dc76ba | 710 | int wxTextCtrl::overflow( int WXUNUSED(c) ) |
c801d85f | 711 | { |
2830bf19 RR |
712 | int len = pptr() - pbase(); |
713 | char *txt = new char[len+1]; | |
714 | strncpy(txt, pbase(), len); | |
715 | txt[len] = '\0'; | |
716 | (*this) << txt; | |
717 | setp(pbase(), epptr()); | |
718 | delete[] txt; | |
719 | return EOF; | |
6de97a3b | 720 | } |
c801d85f | 721 | |
03f38c58 | 722 | int wxTextCtrl::sync() |
c801d85f | 723 | { |
2830bf19 RR |
724 | int len = pptr() - pbase(); |
725 | char *txt = new char[len+1]; | |
726 | strncpy(txt, pbase(), len); | |
727 | txt[len] = '\0'; | |
728 | (*this) << txt; | |
729 | setp(pbase(), epptr()); | |
730 | delete[] txt; | |
731 | return 0; | |
6de97a3b | 732 | } |
c801d85f | 733 | |
03f38c58 | 734 | int wxTextCtrl::underflow() |
c801d85f | 735 | { |
2830bf19 | 736 | return EOF; |
6de97a3b | 737 | } |
c801d85f KB |
738 | |
739 | wxTextCtrl& wxTextCtrl::operator<<(const wxString& s) | |
740 | { | |
a6e21573 | 741 | AppendText(s); |
2830bf19 | 742 | return *this; |
c801d85f KB |
743 | } |
744 | ||
debe6624 | 745 | wxTextCtrl& wxTextCtrl::operator<<(float f) |
c801d85f | 746 | { |
2830bf19 RR |
747 | static char buf[100]; |
748 | sprintf(buf, "%.2f", f); | |
a6e21573 | 749 | AppendText(buf); |
2830bf19 | 750 | return *this; |
c801d85f KB |
751 | } |
752 | ||
debe6624 | 753 | wxTextCtrl& wxTextCtrl::operator<<(double d) |
c801d85f | 754 | { |
2830bf19 RR |
755 | static char buf[100]; |
756 | sprintf(buf, "%.2f", d); | |
a6e21573 | 757 | AppendText(buf); |
2830bf19 | 758 | return *this; |
c801d85f KB |
759 | } |
760 | ||
debe6624 | 761 | wxTextCtrl& wxTextCtrl::operator<<(int i) |
c801d85f | 762 | { |
2830bf19 RR |
763 | static char buf[100]; |
764 | sprintf(buf, "%i", i); | |
a6e21573 | 765 | AppendText(buf); |
2830bf19 | 766 | return *this; |
c801d85f KB |
767 | } |
768 | ||
debe6624 | 769 | wxTextCtrl& wxTextCtrl::operator<<(long i) |
c801d85f | 770 | { |
2830bf19 RR |
771 | static char buf[100]; |
772 | sprintf(buf, "%ld", i); | |
a6e21573 | 773 | AppendText(buf); |
2830bf19 | 774 | return *this; |
c801d85f KB |
775 | } |
776 | ||
777 | wxTextCtrl& wxTextCtrl::operator<<(const char c) | |
778 | { | |
2830bf19 | 779 | char buf[2]; |
c801d85f | 780 | |
2830bf19 RR |
781 | buf[0] = c; |
782 | buf[1] = 0; | |
a6e21573 | 783 | AppendText(buf); |
2830bf19 | 784 | return *this; |
c801d85f | 785 | } |
f5abe911 | 786 | #endif |
c801d85f | 787 | |
03f38c58 | 788 | GtkWidget* wxTextCtrl::GetConnectWidget() |
e3e65dac | 789 | { |
ae0bdb01 | 790 | return GTK_WIDGET(m_text); |
6de97a3b | 791 | } |
e3e65dac | 792 | |
903f689b RR |
793 | bool wxTextCtrl::IsOwnGtkWindow( GdkWindow *window ) |
794 | { | |
ae0bdb01 RR |
795 | if (m_windowStyle & wxTE_MULTILINE) |
796 | return (window == GTK_TEXT(m_text)->text_area); | |
797 | else | |
798 | return (window == GTK_ENTRY(m_text)->text_area); | |
903f689b | 799 | } |
e3e65dac | 800 | |
58614078 | 801 | void wxTextCtrl::SetFont( const wxFont &WXUNUSED(font) ) |
868a2826 | 802 | { |
ae0bdb01 | 803 | wxCHECK_RET( m_text != NULL, "invalid text ctrl" ); |
8bbe427f | 804 | |
ae0bdb01 | 805 | // doesn't work |
58614078 RR |
806 | } |
807 | ||
808 | void wxTextCtrl::SetForegroundColour( const wxColour &WXUNUSED(colour) ) | |
809 | { | |
ae0bdb01 | 810 | wxCHECK_RET( m_text != NULL, "invalid text ctrl" ); |
8bbe427f | 811 | |
ae0bdb01 | 812 | // doesn't work |
868a2826 | 813 | } |
e3e65dac | 814 | |
68dda785 VZ |
815 | void wxTextCtrl::SetBackgroundColour( const wxColour &colour ) |
816 | { | |
ae0bdb01 | 817 | wxCHECK_RET( m_text != NULL, "invalid text ctrl" ); |
a81258be | 818 | |
ae0bdb01 | 819 | wxControl::SetBackgroundColour( colour ); |
8bbe427f | 820 | |
ae0bdb01 | 821 | wxColour sysbg = wxSystemSettings::GetSystemColour( wxSYS_COLOUR_BTNFACE ); |
805dd538 VZ |
822 | if (sysbg.Red() == colour.Red() && |
823 | sysbg.Green() == colour.Green() && | |
ae0bdb01 RR |
824 | sysbg.Blue() == colour.Blue()) |
825 | { | |
826 | return; | |
805dd538 VZ |
827 | } |
828 | ||
ae0bdb01 | 829 | if (!m_backgroundColour.Ok()) return; |
8bbe427f | 830 | |
ae0bdb01 RR |
831 | if (m_windowStyle & wxTE_MULTILINE) |
832 | { | |
833 | GdkWindow *window = GTK_TEXT(m_text)->text_area; | |
834 | m_backgroundColour.CalcPixel( gdk_window_get_colormap( window ) ); | |
835 | gdk_window_set_background( window, m_backgroundColour.GetColor() ); | |
836 | gdk_window_clear( window ); | |
837 | } | |
58614078 RR |
838 | } |
839 | ||
840 | void wxTextCtrl::ApplyWidgetStyle() | |
841 | { | |
ae0bdb01 RR |
842 | if (m_windowStyle & wxTE_MULTILINE) |
843 | { | |
2830bf19 | 844 | // how ? |
805dd538 | 845 | } |
ae0bdb01 RR |
846 | else |
847 | { | |
848 | SetWidgetStyle(); | |
849 | gtk_widget_set_style( m_text, m_widgetStyle ); | |
850 | } | |
68dda785 | 851 | } |
f96aa4d9 | 852 |