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