]>
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 | ||
2830bf19 RR |
37 | static void |
38 | gtk_text_changed_callback( GtkWidget *WXUNUSED(widget), wxTextCtrl *win ) | |
484e45bf | 39 | { |
2830bf19 RR |
40 | win->SetModified(); |
41 | ||
42 | win->CalculateScrollbar(); | |
8bbe427f | 43 | |
2830bf19 RR |
44 | wxCommandEvent event( wxEVT_COMMAND_TEXT_UPDATED, win->m_windowId ); |
45 | wxString val( win->GetValue() ); | |
46 | if (!val.IsNull()) event.m_commandString = WXSTRINGCAST val; | |
47 | event.SetEventObject( win ); | |
48 | win->GetEventHandler()->ProcessEvent( event ); | |
6de97a3b | 49 | } |
112892b9 | 50 | |
2830bf19 RR |
51 | //----------------------------------------------------------------------------- |
52 | // "size_allocate" | |
53 | //----------------------------------------------------------------------------- | |
54 | ||
55 | static void | |
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 RR |
114 | SetValidator( validator ); |
115 | ||
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; | |
124 | ||
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 RR |
152 | gtk_widget_show( m_vScrollbar ); |
153 | ||
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 | |
2830bf19 RR |
185 | if (!value.IsNull()) |
186 | { | |
187 | gint tmp = 0; | |
188 | gtk_editable_insert_text( GTK_EDITABLE(m_text), value, value.Length(), &tmp ); | |
189 | SetInsertionPointEnd(); | |
190 | } | |
484e45bf | 191 | |
2830bf19 RR |
192 | if (style & wxTE_PASSWORD) |
193 | { | |
194 | if (!multi_line) | |
195 | gtk_entry_set_visibility( GTK_ENTRY(m_text), FALSE ); | |
196 | } | |
8bbe427f | 197 | |
2830bf19 RR |
198 | if (style & wxTE_READONLY) |
199 | { | |
200 | if (!multi_line) | |
201 | gtk_entry_set_editable( GTK_ENTRY(m_text), FALSE ); | |
202 | } | |
203 | else | |
204 | { | |
205 | if (multi_line) | |
206 | gtk_text_set_editable( GTK_TEXT(m_text), 1 ); | |
207 | } | |
208 | ||
209 | Show( TRUE ); | |
210 | ||
211 | SetBackgroundColour( parent->GetBackgroundColour() ); | |
212 | SetForegroundColour( parent->GetForegroundColour() ); | |
484e45bf | 213 | |
2830bf19 RR |
214 | return TRUE; |
215 | } | |
484e45bf | 216 | |
2830bf19 RR |
217 | void wxTextCtrl::CalculateScrollbar() |
218 | { | |
219 | if ((m_windowStyle & wxTE_MULTILINE) == 0) return; | |
f96aa4d9 | 220 | |
2830bf19 RR |
221 | GtkAdjustment *adj = GTK_TEXT(m_text)->vadj; |
222 | ||
223 | if (adj->upper - adj->page_size < 0.8) | |
224 | { | |
225 | if (m_vScrollbarVisible) | |
226 | { | |
227 | gtk_widget_hide( m_vScrollbar ); | |
228 | ||
229 | m_vScrollbarVisible = FALSE; | |
230 | } | |
231 | } | |
232 | else | |
233 | { | |
234 | if (!m_vScrollbarVisible) | |
235 | { | |
236 | gtk_widget_show( m_vScrollbar ); | |
237 | ||
238 | m_vScrollbarVisible = TRUE; | |
239 | } | |
240 | } | |
6de97a3b | 241 | } |
c801d85f | 242 | |
03f38c58 | 243 | wxString wxTextCtrl::GetValue() const |
c801d85f | 244 | { |
2830bf19 | 245 | wxCHECK_MSG( m_text != NULL, "", "invalid text ctrl" ); |
8bbe427f | 246 | |
2830bf19 RR |
247 | wxString tmp; |
248 | if (m_windowStyle & wxTE_MULTILINE) | |
249 | { | |
250 | gint len = gtk_text_get_length( GTK_TEXT(m_text) ); | |
251 | char *text = gtk_editable_get_chars( GTK_EDITABLE(m_text), 0, len ); | |
252 | tmp = text; | |
253 | g_free( text ); | |
254 | } | |
255 | else | |
256 | { | |
257 | tmp = gtk_entry_get_text( GTK_ENTRY(m_text) ); | |
258 | } | |
259 | return tmp; | |
6de97a3b | 260 | } |
c801d85f KB |
261 | |
262 | void wxTextCtrl::SetValue( const wxString &value ) | |
263 | { | |
2830bf19 | 264 | wxCHECK_RET( m_text != NULL, "invalid text ctrl" ); |
8bbe427f | 265 | |
2830bf19 RR |
266 | wxString tmp = ""; |
267 | if (!value.IsNull()) tmp = value; | |
268 | if (m_windowStyle & wxTE_MULTILINE) | |
269 | { | |
270 | gint len = gtk_text_get_length( GTK_TEXT(m_text) ); | |
271 | gtk_editable_delete_text( GTK_EDITABLE(m_text), 0, len ); | |
272 | len = 0; | |
273 | gtk_editable_insert_text( GTK_EDITABLE(m_text), tmp, tmp.Length(), &len ); | |
274 | } | |
275 | else | |
276 | { | |
277 | gtk_entry_set_text( GTK_ENTRY(m_text), tmp ); | |
278 | } | |
6de97a3b | 279 | } |
c801d85f KB |
280 | |
281 | void wxTextCtrl::WriteText( const wxString &text ) | |
282 | { | |
2830bf19 | 283 | wxCHECK_RET( m_text != NULL, "invalid text ctrl" ); |
8bbe427f | 284 | |
2830bf19 | 285 | if (text.IsNull()) return; |
484e45bf | 286 | |
2830bf19 RR |
287 | if (m_windowStyle & wxTE_MULTILINE) |
288 | { | |
289 | gint len = gtk_text_get_length( GTK_TEXT(m_text) ); | |
290 | gtk_editable_insert_text( GTK_EDITABLE(m_text), text, text.Length(), &len ); | |
291 | } | |
292 | else | |
293 | { | |
294 | gtk_entry_append_text( GTK_ENTRY(m_text), text ); | |
295 | } | |
6de97a3b | 296 | } |
c801d85f | 297 | |
a81258be | 298 | bool wxTextCtrl::LoadFile( const wxString &file ) |
c801d85f | 299 | { |
a81258be | 300 | wxCHECK_MSG( m_text != NULL, FALSE, "invalid text ctrl" ); |
8bbe427f | 301 | |
a81258be | 302 | if (!wxFileExists(file)) return FALSE; |
2ad3a34e | 303 | |
a81258be RR |
304 | Clear(); |
305 | ||
bbe0af5b | 306 | FILE *fp = (FILE*) NULL; |
a81258be | 307 | struct stat statb; |
8bbe427f | 308 | |
a81258be RR |
309 | if ((stat ((char*) (const char*) file, &statb) == -1) || (statb.st_mode & S_IFMT) != S_IFREG || |
310 | !(fp = fopen ((char*) (const char*) file, "r"))) | |
311 | { | |
312 | return FALSE; | |
313 | } | |
314 | else | |
315 | { | |
316 | gint len = statb.st_size; | |
317 | char *text; | |
318 | if (!(text = (char*)malloc ((unsigned) (len + 1)))) | |
319 | { | |
320 | fclose (fp); | |
321 | return FALSE; | |
322 | } | |
323 | if (fread (text, sizeof (char), len, fp) != (size_t) len) | |
324 | { | |
325 | } | |
326 | fclose (fp); | |
327 | ||
328 | text[len] = 0; | |
8bbe427f | 329 | |
a81258be RR |
330 | if (m_windowStyle & wxTE_MULTILINE) |
331 | { | |
435fe83e RR |
332 | gint pos = 0; |
333 | gtk_editable_insert_text( GTK_EDITABLE(m_text), text, len, &pos ); | |
a81258be RR |
334 | } |
335 | else | |
336 | { | |
337 | gtk_entry_set_text( GTK_ENTRY(m_text), text ); | |
338 | } | |
8bbe427f | 339 | |
a81258be RR |
340 | free (text); |
341 | m_modified = FALSE; | |
342 | return TRUE; | |
343 | } | |
112892b9 | 344 | return FALSE; |
6de97a3b | 345 | } |
c801d85f | 346 | |
a81258be | 347 | bool wxTextCtrl::SaveFile( const wxString &file ) |
c801d85f | 348 | { |
a81258be | 349 | wxCHECK_MSG( m_text != NULL, FALSE, "invalid text ctrl" ); |
8bbe427f | 350 | |
a81258be | 351 | if (file == "") return FALSE; |
8bbe427f | 352 | |
a81258be | 353 | FILE *fp; |
2ad3a34e | 354 | |
a81258be RR |
355 | if (!(fp = fopen ((char*) (const char*) file, "w"))) |
356 | { | |
357 | return FALSE; | |
358 | } | |
359 | else | |
360 | { | |
bbe0af5b | 361 | char *text = (char*) NULL; |
a81258be | 362 | gint len = 0; |
8bbe427f | 363 | |
a81258be RR |
364 | if (m_windowStyle & wxTE_MULTILINE) |
365 | { | |
366 | len = gtk_text_get_length( GTK_TEXT(m_text) ); | |
367 | text = gtk_editable_get_chars( GTK_EDITABLE(m_text), 0, len ); | |
368 | } | |
369 | else | |
370 | { | |
371 | text = gtk_entry_get_text( GTK_ENTRY(m_text) ); | |
372 | } | |
8bbe427f | 373 | |
a81258be RR |
374 | if (fwrite (text, sizeof (char), len, fp) != (size_t) len) |
375 | { | |
376 | // Did not write whole file | |
377 | } | |
8bbe427f | 378 | |
a81258be RR |
379 | // Make sure newline terminates the file |
380 | if (text[len - 1] != '\n') | |
381 | fputc ('\n', fp); | |
382 | ||
383 | fclose (fp); | |
8bbe427f | 384 | |
a81258be | 385 | if (m_windowStyle & wxTE_MULTILINE) g_free( text ); |
8bbe427f | 386 | |
a81258be RR |
387 | m_modified = FALSE; |
388 | return TRUE; | |
389 | } | |
390 | ||
391 | return TRUE; | |
6de97a3b | 392 | } |
c801d85f | 393 | |
debe6624 | 394 | wxString wxTextCtrl::GetLineText( long lineNo ) const |
c801d85f | 395 | { |
a81258be RR |
396 | if (m_windowStyle & wxTE_MULTILINE) |
397 | { | |
398 | gint len = gtk_text_get_length( GTK_TEXT(m_text) ); | |
399 | char *text = gtk_editable_get_chars( GTK_EDITABLE(m_text), 0, len ); | |
400 | ||
401 | if (text) | |
402 | { | |
403 | wxString buf(""); | |
404 | long i; | |
405 | int currentLine = 0; | |
406 | for (i = 0; currentLine != lineNo && text[i]; i++ ) | |
407 | if (text[i] == '\n') | |
408 | currentLine++; | |
409 | // Now get the text | |
410 | int j; | |
411 | for (j = 0; text[i] && text[i] != '\n'; i++, j++ ) | |
412 | buf += text[i]; | |
8bbe427f | 413 | |
a81258be RR |
414 | g_free( text ); |
415 | return buf; | |
416 | } | |
417 | else | |
418 | return wxEmptyString; | |
419 | } | |
420 | else | |
421 | { | |
422 | if (lineNo == 0) return GetValue(); | |
423 | return wxEmptyString; | |
424 | } | |
6de97a3b | 425 | } |
c801d85f | 426 | |
a81258be RR |
427 | void wxTextCtrl::OnDropFiles( wxDropFilesEvent &WXUNUSED(event) ) |
428 | { | |
2830bf19 | 429 | wxFAIL_MSG( "wxTextCtrl::OnDropFiles not implemented" ); |
a81258be | 430 | } |
112892b9 | 431 | |
e3ca08dd | 432 | long wxTextCtrl::PositionToXY(long pos, long *x, long *y ) const |
c801d85f | 433 | { |
e3ca08dd MR |
434 | if (!(m_windowStyle & wxTE_MULTILINE)) |
435 | return 0; | |
436 | gint len = gtk_text_get_length( GTK_TEXT(m_text) ); | |
437 | char *text = gtk_editable_get_chars( GTK_EDITABLE(m_text), 0, len ); | |
438 | if(!text) | |
439 | return 0; | |
440 | if( pos >= len) | |
441 | return pos=len-1; | |
8bbe427f | 442 | |
e3ca08dd MR |
443 | *x=1; // Col 1 |
444 | *y=1; // Line 1 | |
445 | for (int i = 0; i < pos; i++ ) | |
446 | { | |
447 | if (text[i] == '\n') | |
448 | { | |
449 | (*y)++; | |
450 | *x=1; | |
451 | } | |
452 | else | |
453 | (*x)++; | |
8bbe427f | 454 | } |
e3ca08dd MR |
455 | g_free( text ); |
456 | return 1; | |
6de97a3b | 457 | } |
c801d85f | 458 | |
e3ca08dd | 459 | long wxTextCtrl::XYToPosition(long x, long y ) const |
c801d85f | 460 | { |
2830bf19 RR |
461 | if (!(m_windowStyle & wxTE_MULTILINE)) return 0; |
462 | ||
463 | long pos=0; | |
8bbe427f | 464 | |
2830bf19 RR |
465 | for( int i=1; i<y; i++ ) pos += GetLineLength(i); |
466 | ||
467 | pos +=x-1; // Pos start with 0 | |
468 | return pos; | |
6de97a3b | 469 | } |
c801d85f | 470 | |
a81258be | 471 | int wxTextCtrl::GetLineLength(long lineNo) const |
c801d85f | 472 | { |
a81258be RR |
473 | wxString str = GetLineText (lineNo); |
474 | return (int) str.Length(); | |
6de97a3b | 475 | } |
c801d85f | 476 | |
a81258be | 477 | int wxTextCtrl::GetNumberOfLines() const |
c801d85f | 478 | { |
2830bf19 | 479 | if (m_windowStyle & wxTE_MULTILINE) |
a81258be | 480 | { |
2830bf19 RR |
481 | gint len = gtk_text_get_length( GTK_TEXT(m_text) ); |
482 | char *text = gtk_editable_get_chars( GTK_EDITABLE(m_text), 0, len ); | |
483 | ||
484 | if (text) | |
485 | { | |
486 | int currentLine = 0; | |
487 | for (int i = 0; i < len; i++ ) | |
488 | { | |
489 | if (text[i] == '\n') | |
490 | currentLine++; | |
491 | } | |
492 | g_free( text ); | |
493 | return currentLine; | |
494 | } | |
495 | else | |
496 | { | |
497 | return 0; | |
498 | } | |
a81258be RR |
499 | } |
500 | else | |
2830bf19 RR |
501 | { |
502 | return 1; | |
503 | } | |
6de97a3b | 504 | } |
c801d85f | 505 | |
debe6624 | 506 | void wxTextCtrl::SetInsertionPoint( long pos ) |
c801d85f | 507 | { |
2830bf19 | 508 | wxCHECK_RET( m_text != NULL, "invalid text ctrl" ); |
8bbe427f | 509 | |
2830bf19 RR |
510 | int tmp = (int) pos; |
511 | if (m_windowStyle & wxTE_MULTILINE) | |
512 | gtk_text_set_point( GTK_TEXT(m_text), tmp ); | |
513 | else | |
514 | gtk_entry_set_position( GTK_ENTRY(m_text), tmp ); | |
6de97a3b | 515 | } |
c801d85f | 516 | |
03f38c58 | 517 | void wxTextCtrl::SetInsertionPointEnd() |
c801d85f | 518 | { |
2830bf19 | 519 | wxCHECK_RET( m_text != NULL, "invalid text ctrl" ); |
8bbe427f | 520 | |
2830bf19 RR |
521 | int pos = 0; |
522 | if (m_windowStyle & wxTE_MULTILINE) | |
523 | pos = gtk_text_get_length( GTK_TEXT(m_text) ); | |
524 | else | |
525 | pos = GTK_ENTRY(m_text)->text_length; | |
526 | ||
527 | SetInsertionPoint((pos-1)>0 ? (pos-1):0); | |
6de97a3b | 528 | } |
c801d85f | 529 | |
debe6624 | 530 | void wxTextCtrl::SetEditable( bool editable ) |
c801d85f | 531 | { |
2830bf19 | 532 | wxCHECK_RET( m_text != NULL, "invalid text ctrl" ); |
8bbe427f | 533 | |
2830bf19 RR |
534 | if (m_windowStyle & wxTE_MULTILINE) |
535 | gtk_text_set_editable( GTK_TEXT(m_text), editable ); | |
536 | else | |
537 | gtk_entry_set_editable( GTK_ENTRY(m_text), editable ); | |
6de97a3b | 538 | } |
c801d85f | 539 | |
debe6624 | 540 | void wxTextCtrl::SetSelection( long from, long to ) |
c801d85f | 541 | { |
2830bf19 | 542 | wxCHECK_RET( m_text != NULL, "invalid text ctrl" ); |
8bbe427f | 543 | |
2830bf19 | 544 | gtk_editable_select_region( GTK_EDITABLE(m_text), (gint)from, (gint)to ); |
6de97a3b | 545 | } |
c801d85f | 546 | |
debe6624 | 547 | void wxTextCtrl::ShowPosition( long WXUNUSED(pos) ) |
c801d85f | 548 | { |
2830bf19 | 549 | wxFAIL_MSG( "wxTextCtrl::ShowPosition not implemented" ); |
6de97a3b | 550 | } |
c801d85f | 551 | |
03f38c58 | 552 | long wxTextCtrl::GetInsertionPoint() const |
c801d85f | 553 | { |
2830bf19 | 554 | wxCHECK_MSG( m_text != NULL, 0, "invalid text ctrl" ); |
8bbe427f | 555 | |
2830bf19 | 556 | return (long) GTK_EDITABLE(m_text)->current_pos; |
6de97a3b | 557 | } |
c801d85f | 558 | |
03f38c58 | 559 | long wxTextCtrl::GetLastPosition() const |
c801d85f | 560 | { |
2830bf19 | 561 | wxCHECK_MSG( m_text != NULL, 0, "invalid text ctrl" ); |
8bbe427f | 562 | |
2830bf19 RR |
563 | int pos = 0; |
564 | if (m_windowStyle & wxTE_MULTILINE) | |
565 | pos = gtk_text_get_length( GTK_TEXT(m_text) ); | |
566 | else | |
567 | pos = GTK_ENTRY(m_text)->text_length; | |
568 | ||
569 | return (long)pos-1; | |
6de97a3b | 570 | } |
c801d85f | 571 | |
debe6624 | 572 | void wxTextCtrl::Remove( long from, long to ) |
c801d85f | 573 | { |
2830bf19 | 574 | wxCHECK_RET( m_text != NULL, "invalid text ctrl" ); |
8bbe427f | 575 | |
2830bf19 | 576 | gtk_editable_delete_text( GTK_EDITABLE(m_text), (gint)from, (gint)to ); |
6de97a3b | 577 | } |
c801d85f | 578 | |
debe6624 | 579 | void wxTextCtrl::Replace( long from, long to, const wxString &value ) |
c801d85f | 580 | { |
2830bf19 | 581 | wxCHECK_RET( m_text != NULL, "invalid text ctrl" ); |
8bbe427f | 582 | |
2830bf19 RR |
583 | gtk_editable_delete_text( GTK_EDITABLE(m_text), (gint)from, (gint)to ); |
584 | if (value.IsNull()) return; | |
435fe83e | 585 | gint pos = (gint)from; |
2830bf19 | 586 | gtk_editable_insert_text( GTK_EDITABLE(m_text), value, value.Length(), &pos ); |
6de97a3b | 587 | } |
c801d85f | 588 | |
03f38c58 | 589 | void wxTextCtrl::Cut() |
c801d85f | 590 | { |
2830bf19 | 591 | wxCHECK_RET( m_text != NULL, "invalid text ctrl" ); |
8bbe427f | 592 | |
75ed1d15 | 593 | #if (GTK_MINOR_VERSION == 1) |
2830bf19 | 594 | gtk_editable_cut_clipboard( GTK_EDITABLE(m_text) ); |
75ed1d15 | 595 | #else |
2830bf19 | 596 | gtk_editable_cut_clipboard( GTK_EDITABLE(m_text), 0 ); |
75ed1d15 | 597 | #endif |
6de97a3b | 598 | } |
c801d85f | 599 | |
03f38c58 | 600 | void wxTextCtrl::Copy() |
c801d85f | 601 | { |
2830bf19 | 602 | wxCHECK_RET( m_text != NULL, "invalid text ctrl" ); |
8bbe427f | 603 | |
75ed1d15 | 604 | #if (GTK_MINOR_VERSION == 1) |
2830bf19 | 605 | gtk_editable_copy_clipboard( GTK_EDITABLE(m_text) ); |
75ed1d15 | 606 | #else |
2830bf19 | 607 | gtk_editable_copy_clipboard( GTK_EDITABLE(m_text), 0 ); |
75ed1d15 | 608 | #endif |
6de97a3b | 609 | } |
c801d85f | 610 | |
03f38c58 | 611 | void wxTextCtrl::Paste() |
c801d85f | 612 | { |
2830bf19 | 613 | wxCHECK_RET( m_text != NULL, "invalid text ctrl" ); |
8bbe427f | 614 | |
75ed1d15 | 615 | #if (GTK_MINOR_VERSION == 1) |
2830bf19 | 616 | gtk_editable_paste_clipboard( GTK_EDITABLE(m_text) ); |
75ed1d15 | 617 | #else |
2830bf19 | 618 | gtk_editable_paste_clipboard( GTK_EDITABLE(m_text), 0 ); |
75ed1d15 | 619 | #endif |
6de97a3b | 620 | } |
c801d85f | 621 | |
03f38c58 | 622 | void wxTextCtrl::Clear() |
c801d85f | 623 | { |
2830bf19 | 624 | SetValue( "" ); |
6de97a3b | 625 | } |
c801d85f | 626 | |
903f689b | 627 | void wxTextCtrl::OnChar( wxKeyEvent &key_event ) |
c801d85f | 628 | { |
2830bf19 RR |
629 | wxCHECK_RET( m_text != NULL, "invalid text ctrl" ); |
630 | ||
631 | if ((key_event.KeyCode() == WXK_RETURN) && (m_windowStyle & wxPROCESS_ENTER)) | |
632 | { | |
633 | wxCommandEvent event(wxEVT_COMMAND_TEXT_ENTER, m_windowId); | |
634 | event.SetEventObject(this); | |
635 | if (GetEventHandler()->ProcessEvent(event)) return; | |
636 | } | |
903f689b | 637 | |
2830bf19 | 638 | key_event.Skip(); |
6de97a3b | 639 | } |
c801d85f | 640 | |
f5abe911 | 641 | #ifndef NO_TEXT_WINDOW_STREAM |
46dc76ba | 642 | int wxTextCtrl::overflow( int WXUNUSED(c) ) |
c801d85f | 643 | { |
2830bf19 RR |
644 | int len = pptr() - pbase(); |
645 | char *txt = new char[len+1]; | |
646 | strncpy(txt, pbase(), len); | |
647 | txt[len] = '\0'; | |
648 | (*this) << txt; | |
649 | setp(pbase(), epptr()); | |
650 | delete[] txt; | |
651 | return EOF; | |
6de97a3b | 652 | } |
c801d85f | 653 | |
03f38c58 | 654 | int wxTextCtrl::sync() |
c801d85f | 655 | { |
2830bf19 RR |
656 | int len = pptr() - pbase(); |
657 | char *txt = new char[len+1]; | |
658 | strncpy(txt, pbase(), len); | |
659 | txt[len] = '\0'; | |
660 | (*this) << txt; | |
661 | setp(pbase(), epptr()); | |
662 | delete[] txt; | |
663 | return 0; | |
6de97a3b | 664 | } |
c801d85f | 665 | |
03f38c58 | 666 | int wxTextCtrl::underflow() |
c801d85f | 667 | { |
2830bf19 | 668 | return EOF; |
6de97a3b | 669 | } |
c801d85f KB |
670 | |
671 | wxTextCtrl& wxTextCtrl::operator<<(const wxString& s) | |
672 | { | |
2830bf19 RR |
673 | WriteText(s); |
674 | return *this; | |
c801d85f KB |
675 | } |
676 | ||
debe6624 | 677 | wxTextCtrl& wxTextCtrl::operator<<(float f) |
c801d85f | 678 | { |
2830bf19 RR |
679 | static char buf[100]; |
680 | sprintf(buf, "%.2f", f); | |
681 | WriteText(buf); | |
682 | return *this; | |
c801d85f KB |
683 | } |
684 | ||
debe6624 | 685 | wxTextCtrl& wxTextCtrl::operator<<(double d) |
c801d85f | 686 | { |
2830bf19 RR |
687 | static char buf[100]; |
688 | sprintf(buf, "%.2f", d); | |
689 | WriteText(buf); | |
690 | return *this; | |
c801d85f KB |
691 | } |
692 | ||
debe6624 | 693 | wxTextCtrl& wxTextCtrl::operator<<(int i) |
c801d85f | 694 | { |
2830bf19 RR |
695 | static char buf[100]; |
696 | sprintf(buf, "%i", i); | |
697 | WriteText(buf); | |
698 | return *this; | |
c801d85f KB |
699 | } |
700 | ||
debe6624 | 701 | wxTextCtrl& wxTextCtrl::operator<<(long i) |
c801d85f | 702 | { |
2830bf19 RR |
703 | static char buf[100]; |
704 | sprintf(buf, "%ld", i); | |
705 | WriteText(buf); | |
706 | return *this; | |
c801d85f KB |
707 | } |
708 | ||
709 | wxTextCtrl& wxTextCtrl::operator<<(const char c) | |
710 | { | |
2830bf19 | 711 | char buf[2]; |
c801d85f | 712 | |
2830bf19 RR |
713 | buf[0] = c; |
714 | buf[1] = 0; | |
715 | WriteText(buf); | |
716 | return *this; | |
c801d85f | 717 | } |
f5abe911 | 718 | #endif |
c801d85f | 719 | |
03f38c58 | 720 | GtkWidget* wxTextCtrl::GetConnectWidget() |
e3e65dac | 721 | { |
ae0bdb01 | 722 | return GTK_WIDGET(m_text); |
6de97a3b | 723 | } |
e3e65dac | 724 | |
903f689b RR |
725 | bool wxTextCtrl::IsOwnGtkWindow( GdkWindow *window ) |
726 | { | |
ae0bdb01 RR |
727 | if (m_windowStyle & wxTE_MULTILINE) |
728 | return (window == GTK_TEXT(m_text)->text_area); | |
729 | else | |
730 | return (window == GTK_ENTRY(m_text)->text_area); | |
903f689b | 731 | } |
e3e65dac | 732 | |
58614078 | 733 | void wxTextCtrl::SetFont( const wxFont &WXUNUSED(font) ) |
868a2826 | 734 | { |
ae0bdb01 | 735 | wxCHECK_RET( m_text != NULL, "invalid text ctrl" ); |
8bbe427f | 736 | |
ae0bdb01 | 737 | // doesn't work |
58614078 RR |
738 | } |
739 | ||
740 | void wxTextCtrl::SetForegroundColour( const wxColour &WXUNUSED(colour) ) | |
741 | { | |
ae0bdb01 | 742 | wxCHECK_RET( m_text != NULL, "invalid text ctrl" ); |
8bbe427f | 743 | |
ae0bdb01 | 744 | // doesn't work |
868a2826 | 745 | } |
e3e65dac | 746 | |
68dda785 VZ |
747 | void wxTextCtrl::SetBackgroundColour( const wxColour &colour ) |
748 | { | |
ae0bdb01 | 749 | wxCHECK_RET( m_text != NULL, "invalid text ctrl" ); |
a81258be | 750 | |
ae0bdb01 | 751 | wxControl::SetBackgroundColour( colour ); |
8bbe427f | 752 | |
ae0bdb01 RR |
753 | wxColour sysbg = wxSystemSettings::GetSystemColour( wxSYS_COLOUR_BTNFACE ); |
754 | if (sysbg.Red() == colour.Red() && | |
755 | sysbg.Green() == colour.Green() && | |
756 | sysbg.Blue() == colour.Blue()) | |
757 | { | |
758 | return; | |
759 | } | |
760 | ||
761 | if (!m_backgroundColour.Ok()) return; | |
8bbe427f | 762 | |
ae0bdb01 RR |
763 | if (m_windowStyle & wxTE_MULTILINE) |
764 | { | |
765 | GdkWindow *window = GTK_TEXT(m_text)->text_area; | |
766 | m_backgroundColour.CalcPixel( gdk_window_get_colormap( window ) ); | |
767 | gdk_window_set_background( window, m_backgroundColour.GetColor() ); | |
768 | gdk_window_clear( window ); | |
769 | } | |
58614078 RR |
770 | } |
771 | ||
772 | void wxTextCtrl::ApplyWidgetStyle() | |
773 | { | |
ae0bdb01 RR |
774 | if (m_windowStyle & wxTE_MULTILINE) |
775 | { | |
2830bf19 | 776 | // how ? |
ae0bdb01 RR |
777 | } |
778 | else | |
779 | { | |
780 | SetWidgetStyle(); | |
781 | gtk_widget_set_style( m_text, m_widgetStyle ); | |
782 | } | |
68dda785 | 783 | } |
f96aa4d9 | 784 |