1 ///////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxTextCtrlBase class - the interface of wxTextCtrl
4 // Author: Vadim Zeitlin
8 // Copyright: (c) wxWindows team
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_TEXTCTRL_H_BASE_
13 #define _WX_TEXTCTRL_H_BASE_
15 // ----------------------------------------------------------------------------
17 // ----------------------------------------------------------------------------
19 #pragma interface "textctrlbase.h"
23 #include "wx/control.h" // the base class
25 // 16-bit Borland 4.0 doesn't seem to allow multiple inheritance with wxWindow
26 // and streambuf: it complains about deriving a huge class from the huge class
27 // streambuf. !! Also, can't use streambuf if making or using a DLL :-(
29 #if (defined(__BORLANDC__)) || defined(__MWERKS__) || defined(_WINDLL) || defined(WXUSINGDLL) || defined(WXMAKINGDLL)
30 #define NO_TEXT_WINDOW_STREAM
33 #ifndef NO_TEXT_WINDOW_STREAM
34 #if wxUSE_STD_IOSTREAM
35 #include "wx/ioswrap.h" // for iostream classes if we need them
36 #else // !wxUSE_STD_IOSTREAM
37 // can't compile this feature in if we don't use streams at all
38 #define NO_TEXT_WINDOW_STREAM
39 #endif // wxUSE_STD_IOSTREAM/!wxUSE_STD_IOSTREAM
42 class WXDLLEXPORT wxTextCtrl
;
44 // ----------------------------------------------------------------------------
46 // ----------------------------------------------------------------------------
48 WXDLLEXPORT_DATA(extern const wxChar
*) wxTextCtrlNameStr
;
49 WXDLLEXPORT_DATA(extern const wxChar
*) wxEmptyString
;
51 // ----------------------------------------------------------------------------
52 // wxTextCtrl: a single or multiple line text zone where user can enter and
54 // ----------------------------------------------------------------------------
56 class WXDLLEXPORT wxTextCtrlBase
: public wxControl
57 #ifndef NO_TEXT_WINDOW_STREAM
72 virtual wxString
GetValue() const = 0;
73 virtual void SetValue(const wxString
& value
) = 0;
75 virtual int GetLineLength(long lineNo
) const = 0;
76 virtual wxString
GetLineText(long lineNo
) const = 0;
77 virtual int GetNumberOfLines() const = 0;
79 virtual bool IsModified() const = 0;
80 virtual bool IsEditable() const = 0;
82 // If the return values from and to are the same, there is no selection.
83 virtual void GetSelection(long* from
, long* to
) const = 0;
89 virtual void Clear() = 0;
90 virtual void Replace(long from
, long to
, const wxString
& value
) = 0;
91 virtual void Remove(long from
, long to
) = 0;
93 // load/save the controls contents from/to the file
94 virtual bool LoadFile(const wxString
& file
);
95 virtual bool SaveFile(const wxString
& file
= wxEmptyString
);
97 // clears the dirty flag
98 virtual void DiscardEdits() = 0;
100 // writing text inserts it at the current position, appending always
101 // inserts it at the end
102 virtual void WriteText(const wxString
& text
) = 0;
103 virtual void AppendText(const wxString
& text
) = 0;
105 // translate between the position (which is just an index in the text ctrl
106 // considering all its contents as a single strings) and (x, y) coordinates
107 // which represent column and line.
108 virtual long XYToPosition(long x
, long y
) const = 0;
109 virtual bool PositionToXY(long pos
, long *x
, long *y
) const = 0;
111 virtual void ShowPosition(long pos
) = 0;
113 // Clipboard operations
114 virtual void Copy() = 0;
115 virtual void Cut() = 0;
116 virtual void Paste() = 0;
118 virtual bool CanCopy() const = 0;
119 virtual bool CanCut() const = 0;
120 virtual bool CanPaste() const = 0;
123 virtual void Undo() = 0;
124 virtual void Redo() = 0;
126 virtual bool CanUndo() const = 0;
127 virtual bool CanRedo() const = 0;
130 virtual void SetInsertionPoint(long pos
) = 0;
131 virtual void SetInsertionPointEnd() = 0;
132 virtual long GetInsertionPoint() const = 0;
133 virtual long GetLastPosition() const = 0;
135 virtual void SetSelection(long from
, long to
) = 0;
136 virtual void SetEditable(bool editable
) = 0;
139 #ifndef NO_TEXT_WINDOW_STREAM
143 #endif // NO_TEXT_WINDOW_STREAM
145 // stream-like insertion operators: these are always available, whether we
146 // were, or not, compiled with streambuf support
147 wxTextCtrl
& operator<<(const wxString
& s
);
148 wxTextCtrl
& operator<<(int i
);
149 wxTextCtrl
& operator<<(long i
);
150 wxTextCtrl
& operator<<(float f
);
151 wxTextCtrl
& operator<<(double d
);
152 wxTextCtrl
& operator<<(const wxChar c
);
154 // obsolete functions
155 #if WXWIN_COMPATIBILITY
156 bool Modified() const { return IsModified(); }
160 // the name of the last file loaded with LoadFile() which will be used by
161 // SaveFile() by default
165 #ifndef NO_TEXT_WINDOW_STREAM
172 // ----------------------------------------------------------------------------
173 // include the platform-dependent class definition
174 // ----------------------------------------------------------------------------
176 #if defined(__WXMSW__)
177 #include "wx/msw/textctrl.h"
178 #elif defined(__WXMOTIF__)
179 #include "wx/motif/textctrl.h"
180 #elif defined(__WXGTK__)
181 #include "wx/gtk/textctrl.h"
182 #elif defined(__WXQT__)
183 #include "wx/qt/textctrl.h"
184 #elif defined(__WXMAC__)
185 #include "wx/mac/textctrl.h"
186 #elif defined(__WXPM__)
187 #include "wx/os2/textctrl.h"
188 #elif defined(__WXSTUBS__)
189 #include "wx/stubs/textctrl.h"
193 // _WX_TEXTCTRL_H_BASE_