]> git.saurik.com Git - wxWidgets.git/blame - src/stubs/textctrl.cpp
Replaced tabs and cleaned up indentations.
[wxWidgets.git] / src / stubs / textctrl.cpp
CommitLineData
93cf77c0
JS
1/////////////////////////////////////////////////////////////////////////////
2// Name: textctrl.cpp
3// Purpose: wxTextCtrl
4// Author: AUTHOR
5// Modified by:
6// Created: ??/??/98
7// RCS-ID: $Id$
8// Copyright: (c) AUTHOR
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
12#ifdef __GNUG__
13#pragma implementation "textctrl.h"
14#endif
15
16#include <sys/types.h>
17#include <sys/stat.h>
18#include <fstream.h>
19
20#include "wx/textctrl.h"
21#include "wx/settings.h"
34138703
JS
22#include "wx/filefn.h"
23#include "wx/utils.h"
93cf77c0
JS
24
25#if defined(__BORLANDC__) && !defined(__WIN32__)
26#include <alloc.h>
27#else
28#ifndef __GNUWIN32__
29#include <malloc.h>
30#endif
31#endif
32
93cf77c0
JS
33IMPLEMENT_DYNAMIC_CLASS(wxTextCtrl, wxControl)
34
35BEGIN_EVENT_TABLE(wxTextCtrl, wxControl)
93cf77c0 36 EVT_DROP_FILES(wxTextCtrl::OnDropFiles)
e702ff0f
JS
37 EVT_MENU(wxID_CUT, wxTextCtrl::OnCut)
38 EVT_MENU(wxID_COPY, wxTextCtrl::OnCopy)
39 EVT_MENU(wxID_PASTE, wxTextCtrl::OnPaste)
40 EVT_MENU(wxID_UNDO, wxTextCtrl::OnUndo)
41 EVT_MENU(wxID_REDO, wxTextCtrl::OnRedo)
42
43 EVT_UPDATE_UI(wxID_CUT, wxTextCtrl::OnUpdateCut)
44 EVT_UPDATE_UI(wxID_COPY, wxTextCtrl::OnUpdateCopy)
45 EVT_UPDATE_UI(wxID_PASTE, wxTextCtrl::OnUpdatePaste)
46 EVT_UPDATE_UI(wxID_UNDO, wxTextCtrl::OnUpdateUndo)
47 EVT_UPDATE_UI(wxID_REDO, wxTextCtrl::OnUpdateRedo)
93cf77c0 48END_EVENT_TABLE()
93cf77c0
JS
49
50// Text item
51wxTextCtrl::wxTextCtrl()
52#ifndef NO_TEXT_WINDOW_STREAM
53 :streambuf()
54#endif
55{
56 m_fileName = "";
57}
58
59bool wxTextCtrl::Create(wxWindow *parent, wxWindowID id,
60 const wxString& value,
61 const wxPoint& pos,
62 const wxSize& size, long style,
63 const wxValidator& validator,
64 const wxString& name)
65{
66 m_fileName = "";
67 SetName(name);
68 SetValidator(validator);
69 if (parent) parent->AddChild(this);
70
71 m_windowStyle = style;
72
73 if ( id == -1 )
74 m_windowId = (int)NewControlId();
75 else
76 m_windowId = id;
77
78 return TRUE;
79}
80
81wxString wxTextCtrl::GetValue() const
82{
83 // TODO
84 return wxString("");
85}
86
87void wxTextCtrl::SetValue(const wxString& value)
88{
89 // TODO
90}
91
92void wxTextCtrl::SetSize(int x, int y, int width, int height, int sizeFlags)
93{
94 // TODO
95}
96
97// Clipboard operations
98void wxTextCtrl::Copy()
99{
100 // TODO
101}
102
103void wxTextCtrl::Cut()
104{
105 // TODO
106}
107
108void wxTextCtrl::Paste()
109{
110 // TODO
111}
112
113void wxTextCtrl::SetEditable(bool editable)
114{
115 // TODO
116}
117
118void wxTextCtrl::SetInsertionPoint(long pos)
119{
120 // TODO
121}
122
123void wxTextCtrl::SetInsertionPointEnd()
124{
125 long pos = GetLastPosition();
126 SetInsertionPoint(pos);
127}
128
129long wxTextCtrl::GetInsertionPoint() const
130{
131 // TODO
132 return 0;
133}
134
135long wxTextCtrl::GetLastPosition() const
136{
137 // TODO
138 return 0;
139}
140
141void wxTextCtrl::Replace(long from, long to, const wxString& value)
142{
143 // TODO
93cf77c0
JS
144}
145
146void wxTextCtrl::Remove(long from, long to)
147{
148 // TODO
149}
150
151void wxTextCtrl::SetSelection(long from, long to)
152{
153 // TODO
154}
155
156bool wxTextCtrl::LoadFile(const wxString& file)
157{
158 if (!wxFileExists(file))
159 return FALSE;
160
161 m_fileName = file;
162
163 Clear();
164
165 ifstream input((char*) (const char*) file, ios::nocreate | ios::in);
166
167 if (!input.bad())
168 {
169 struct stat stat_buf;
170 if (stat(file, &stat_buf) < 0)
171 return FALSE;
172 // This may need to be a bigger buffer than the file size suggests,
173 // if it's a UNIX file. Give it an extra 1000 just in case.
174 char *tmp_buffer = (char*)malloc((size_t)(stat_buf.st_size+1+1000));
175 long no_lines = 0;
176 long pos = 0;
177 while (!input.eof() && input.peek() != EOF)
178 {
179 input.getline(wxBuffer, 500);
180 int len = strlen(wxBuffer);
181 wxBuffer[len] = 13;
182 wxBuffer[len+1] = 10;
183 wxBuffer[len+2] = 0;
184 strcpy(tmp_buffer+pos, wxBuffer);
185 pos += strlen(wxBuffer);
186 no_lines++;
187 }
188
189 // TODO add line
190
191 free(tmp_buffer);
192
193 return TRUE;
194 }
195 return FALSE;
196}
197
198// If file is null, try saved file name first
199// Returns TRUE if succeeds.
200bool wxTextCtrl::SaveFile(const wxString& file)
201{
202 wxString theFile(file);
203 if (theFile == "")
204 theFile = m_fileName;
205 if (theFile == "")
206 return FALSE;
207 m_fileName = theFile;
208
209 ofstream output((char*) (const char*) theFile);
210 if (output.bad())
211 return FALSE;
212
213 // TODO get and save text
214
215 return FALSE;
216}
217
218void wxTextCtrl::WriteText(const wxString& text)
219{
220 // TODO write text to control
221}
222
13c21be5
HH
223void wxTextCtrl::AppendText(const wxString& text)
224{
225 // TODO append text to control
226}
227
93cf77c0
JS
228void wxTextCtrl::Clear()
229{
230 // TODO
231}
232
233bool wxTextCtrl::IsModified() const
234{
235 // TODO
236 return FALSE;
237}
238
239// Makes 'unmodified'
240void wxTextCtrl::DiscardEdits()
241{
242 // TODO
243}
244
245int wxTextCtrl::GetNumberOfLines() const
246{
247 // TODO
248 return 0;
249}
250
251long wxTextCtrl::XYToPosition(long x, long y) const
252{
253 // TODO
254 return 0;
255}
256
257void wxTextCtrl::PositionToXY(long pos, long *x, long *y) const
258{
259 // TODO
260}
261
262void wxTextCtrl::ShowPosition(long pos)
263{
264 // TODO
265}
266
267int wxTextCtrl::GetLineLength(long lineNo) const
268{
269 // TODO
270 return 0;
271}
272
273wxString wxTextCtrl::GetLineText(long lineNo) const
274{
275 // TODO
276 return wxString("");
277}
278
ca8b28f2
JS
279bool wxTextCtrl::CanCopy() const
280{
281 // Can copy if there's a selection
282 long from, to;
283 GetSelection(& from, & to);
284 return (from != to) ;
285}
286
287bool wxTextCtrl::CanCut() const
288{
289 // Can cut if there's a selection
290 long from, to;
291 GetSelection(& from, & to);
292 return (from != to) ;
293}
294
295bool wxTextCtrl::CanPaste() const
296{
297 return IsEditable() ;
298}
299
300// Undo/redo
301void wxTextCtrl::Undo()
302{
303 // TODO
304}
305
306void wxTextCtrl::Redo()
307{
308 // TODO
309}
310
311bool wxTextCtrl::CanUndo() const
312{
313 // TODO
314 return FALSE;
315}
316
317bool wxTextCtrl::CanRedo() const
318{
319 // TODO
320 return FALSE;
321}
322
323// If the return values from and to are the same, there is no
324// selection.
325void wxTextCtrl::GetSelection(long* from, long* to) const
326{
327 // TODO
328 *from = 0;
329 *to = 0;
330}
331
332bool wxTextCtrl::IsEditable() const
333{
334 // TODO
335 return FALSE;
336}
337
93cf77c0
JS
338void wxTextCtrl::Command(wxCommandEvent & event)
339{
340 SetValue (event.GetString());
341 ProcessCommand (event);
342}
343
344void wxTextCtrl::OnDropFiles(wxDropFilesEvent& event)
345{
346 // By default, load the first file into the text window.
347 if (event.GetNumberOfFiles() > 0)
348 {
349 LoadFile(event.GetFiles()[0]);
350 }
351}
352
353// The streambuf code was partly taken from chapter 3 by Jerry Schwarz of
354// AT&T's "C++ Lanuage System Release 3.0 Library Manual" - Stein Somers
355
356//=========================================================================
357// Called then the buffer is full (gcc 2.6.3)
358// or when "endl" is output (Borland 4.5)
359//=========================================================================
360// Class declaration using multiple inheritance doesn't work properly for
361// Borland. See note in wb_text.h.
362#ifndef NO_TEXT_WINDOW_STREAM
363int wxTextCtrl::overflow(int c)
364{
365 // Make sure there is a holding area
366 if ( allocate()==EOF )
367 {
368 wxError("Streambuf allocation failed","Internal error");
369 return EOF;
370 }
371
372 // Verify that there are no characters in get area
373 if ( gptr() && gptr() < egptr() )
374 {
375 wxError("Who's trespassing my get area?","Internal error");
376 return EOF;
377 }
378
379 // Reset get area
380 setg(0,0,0);
381
382 // Make sure there is a put area
383 if ( ! pptr() )
384 {
385/* This doesn't seem to be fatal so comment out error message */
386// wxError("Put area not opened","Internal error");
387 setp( base(), base() );
388 }
389
390 // Determine how many characters have been inserted but no consumed
391 int plen = pptr() - pbase();
392
393 // Now Jerry relies on the fact that the buffer is at least 2 chars
394 // long, but the holding area "may be as small as 1" ???
395 // And we need an additional \0, so let's keep this inefficient but
396 // safe copy.
397
398 // If c!=EOF, it is a character that must also be comsumed
399 int xtra = c==EOF? 0 : 1;
400
401 // Write temporary C-string to wxTextWindow
402 {
403 char *txt = new char[plen+xtra+1];
404 memcpy(txt, pbase(), plen);
405 txt[plen] = (char)c; // append c
406 txt[plen+xtra] = '\0'; // append '\0' or overwrite c
407 // If the put area already contained \0, output will be truncated there
13c21be5 408 AppendText(txt);
93cf77c0
JS
409 delete[] txt;
410 }
411
412 // Reset put area
413 setp(pbase(), epptr());
414
415#if defined(__WATCOMC__)
416 return __NOT_EOF;
417#elif defined(zapeof) // HP-UX (all cfront based?)
418 return zapeof(c);
419#else
420 return c!=EOF ? c : 0; // this should make everybody happy
421#endif
422}
423
424//=========================================================================
425// called then "endl" is output (gcc) or then explicit sync is done (Borland)
426//=========================================================================
427int wxTextCtrl::sync()
428{
429 // Verify that there are no characters in get area
430 if ( gptr() && gptr() < egptr() )
431 {
432 wxError("Who's trespassing my get area?","Internal error");
433 return EOF;
434 }
435
436 if ( pptr() && pptr() > pbase() ) return overflow(EOF);
437
438 return 0;
439/* OLD CODE
440 int len = pptr() - pbase();
441 char *txt = new char[len+1];
442 strncpy(txt, pbase(), len);
443 txt[len] = '\0';
444 (*this) << txt;
445 setp(pbase(), epptr());
446 delete[] txt;
447 return 0;
448*/
449}
450
451//=========================================================================
452// Should not be called by a "ostream". Used by a "istream"
453//=========================================================================
454int wxTextCtrl::underflow()
455{
456 return EOF;
457}
458#endif
459
460wxTextCtrl& wxTextCtrl::operator<<(const wxString& s)
461{
13c21be5 462 AppendText(s);
93cf77c0
JS
463 return *this;
464}
465
466wxTextCtrl& wxTextCtrl::operator<<(float f)
467{
468 wxString str;
469 str.Printf("%.2f", f);
13c21be5 470 AppendText(str);
93cf77c0
JS
471 return *this;
472}
473
474wxTextCtrl& wxTextCtrl::operator<<(double d)
475{
476 wxString str;
477 str.Printf("%.2f", d);
13c21be5 478 AppendText(str);
93cf77c0
JS
479 return *this;
480}
481
482wxTextCtrl& wxTextCtrl::operator<<(int i)
483{
484 wxString str;
485 str.Printf("%d", i);
13c21be5 486 AppendText(str);
93cf77c0
JS
487 return *this;
488}
489
490wxTextCtrl& wxTextCtrl::operator<<(long i)
491{
492 wxString str;
493 str.Printf("%ld", i);
13c21be5 494 AppendText(str);
93cf77c0
JS
495 return *this;
496}
497
498wxTextCtrl& wxTextCtrl::operator<<(const char c)
499{
500 char buf[2];
501
502 buf[0] = c;
503 buf[1] = 0;
13c21be5 504 AppendText(buf);
93cf77c0
JS
505 return *this;
506}
507
e702ff0f
JS
508void wxTextCtrl::OnCut(wxCommandEvent& event)
509{
510 Cut();
511}
512
513void wxTextCtrl::OnCopy(wxCommandEvent& event)
514{
515 Copy();
516}
517
518void wxTextCtrl::OnPaste(wxCommandEvent& event)
519{
520 Paste();
521}
522
523void wxTextCtrl::OnUndo(wxCommandEvent& event)
524{
525 Undo();
526}
527
528void wxTextCtrl::OnRedo(wxCommandEvent& event)
529{
530 Redo();
531}
532
533void wxTextCtrl::OnUpdateCut(wxUpdateUIEvent& event)
534{
535 event.Enable( CanCut() );
536}
537
538void wxTextCtrl::OnUpdateCopy(wxUpdateUIEvent& event)
539{
540 event.Enable( CanCopy() );
541}
542
543void wxTextCtrl::OnUpdatePaste(wxUpdateUIEvent& event)
544{
545 event.Enable( CanPaste() );
546}
547
548void wxTextCtrl::OnUpdateUndo(wxUpdateUIEvent& event)
549{
550 event.Enable( CanUndo() );
551}
552
553void wxTextCtrl::OnUpdateRedo(wxUpdateUIEvent& event)
554{
555 event.Enable( CanRedo() );
556}