]>
Commit | Line | Data |
---|---|---|
0dbd6262 SC |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: textctrl.h | |
3 | // Purpose: wxTextCtrl class | |
a31a5f85 | 4 | // Author: Stefan Csomor |
0dbd6262 | 5 | // Modified by: |
a31a5f85 | 6 | // Created: 1998-01-01 |
0dbd6262 | 7 | // RCS-ID: $Id$ |
a31a5f85 | 8 | // Copyright: (c) Stefan Csomor |
e40298d5 | 9 | // Licence: wxWindows licence |
0dbd6262 SC |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | #ifndef _WX_TEXTCTRL_H_ | |
13 | #define _WX_TEXTCTRL_H_ | |
14 | ||
12028905 | 15 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) |
0dbd6262 SC |
16 | #pragma interface "textctrl.h" |
17 | #endif | |
18 | ||
19 | #include "wx/control.h" | |
20 | ||
c4e41ce3 | 21 | WXDLLEXPORT_DATA(extern const wxChar*) wxTextCtrlNameStr; |
0dbd6262 SC |
22 | |
23 | // Single-line text item | |
05adb9d2 | 24 | class WXDLLEXPORT wxTextCtrl: public wxTextCtrlBase |
0dbd6262 SC |
25 | { |
26 | DECLARE_DYNAMIC_CLASS(wxTextCtrl) | |
27 | ||
28 | public: | |
29 | // creation | |
30 | // -------- | |
1fa29bdc | 31 | wxTextCtrl() { Init(); } |
8481948e | 32 | ~wxTextCtrl(); |
1fa29bdc VZ |
33 | wxTextCtrl(wxWindow *parent, wxWindowID id, |
34 | const wxString& value = wxEmptyString, | |
35 | const wxPoint& pos = wxDefaultPosition, | |
36 | const wxSize& size = wxDefaultSize, long style = 0, | |
37 | const wxValidator& validator = wxDefaultValidator, | |
38 | const wxString& name = wxTextCtrlNameStr) | |
0dbd6262 | 39 | { |
1fa29bdc VZ |
40 | Init(); |
41 | ||
42 | Create(parent, id, value, pos, size, style, validator, name); | |
0dbd6262 SC |
43 | } |
44 | ||
45 | bool Create(wxWindow *parent, wxWindowID id, | |
46 | const wxString& value = wxEmptyString, | |
47 | const wxPoint& pos = wxDefaultPosition, | |
48 | const wxSize& size = wxDefaultSize, long style = 0, | |
49 | const wxValidator& validator = wxDefaultValidator, | |
50 | const wxString& name = wxTextCtrlNameStr); | |
51 | ||
52 | // accessors | |
53 | // --------- | |
54 | virtual wxString GetValue() const ; | |
55 | virtual void SetValue(const wxString& value); | |
56 | ||
57 | virtual int GetLineLength(long lineNo) const; | |
58 | virtual wxString GetLineText(long lineNo) const; | |
59 | virtual int GetNumberOfLines() const; | |
60 | ||
05adb9d2 SC |
61 | virtual bool IsModified() const; |
62 | virtual bool IsEditable() const; | |
63 | ||
64 | // If the return values from and to are the same, there is no selection. | |
65 | virtual void GetSelection(long* from, long* to) const; | |
66 | ||
0dbd6262 SC |
67 | // operations |
68 | // ---------- | |
05adb9d2 SC |
69 | |
70 | // editing | |
71 | ||
72 | virtual void Clear(); | |
73 | virtual void Replace(long from, long to, const wxString& value); | |
74 | virtual void Remove(long from, long to); | |
75 | ||
76 | // load the controls contents from the file | |
77 | virtual bool LoadFile(const wxString& file); | |
78 | ||
79 | // clears the dirty flag | |
80 | virtual void DiscardEdits(); | |
81 | ||
f8d5f1e2 SC |
82 | // set the max number of characters which may be entered in a single line |
83 | // text control | |
84 | virtual void SetMaxLength(unsigned long len) ; | |
85 | ||
86 | // text control under some platforms supports the text styles: these | |
87 | // methods allow to apply the given text style to the given selection or to | |
88 | // set/get the style which will be used for all appended text | |
89 | virtual bool SetStyle(long start, long end, const wxTextAttr& style); | |
90 | virtual bool SetDefaultStyle(const wxTextAttr& style); | |
91 | ||
05adb9d2 SC |
92 | // writing text inserts it at the current position, appending always |
93 | // inserts it at the end | |
94 | virtual void WriteText(const wxString& text); | |
95 | virtual void AppendText(const wxString& text); | |
96 | ||
97 | // translate between the position (which is just an index in the text ctrl | |
98 | // considering all its contents as a single strings) and (x, y) coordinates | |
99 | // which represent column and line. | |
100 | virtual long XYToPosition(long x, long y) const; | |
101 | virtual bool PositionToXY(long pos, long *x, long *y) const; | |
102 | ||
103 | virtual void ShowPosition(long pos); | |
104 | ||
0dbd6262 SC |
105 | // Clipboard operations |
106 | virtual void Copy(); | |
107 | virtual void Cut(); | |
108 | virtual void Paste(); | |
109 | ||
05adb9d2 SC |
110 | virtual bool CanCopy() const; |
111 | virtual bool CanCut() const; | |
112 | virtual bool CanPaste() const; | |
113 | ||
114 | // Undo/redo | |
115 | virtual void Undo(); | |
116 | virtual void Redo(); | |
117 | ||
118 | virtual bool CanUndo() const; | |
119 | virtual bool CanRedo() const; | |
120 | ||
121 | // Insertion point | |
0dbd6262 SC |
122 | virtual void SetInsertionPoint(long pos); |
123 | virtual void SetInsertionPointEnd(); | |
05adb9d2 SC |
124 | virtual long GetInsertionPoint() const; |
125 | virtual long GetLastPosition() const; | |
126 | ||
0dbd6262 SC |
127 | virtual void SetSelection(long from, long to); |
128 | virtual void SetEditable(bool editable); | |
0dbd6262 | 129 | |
05adb9d2 SC |
130 | // Implementation from now on |
131 | // -------------------------- | |
132 | ||
133 | // Implementation | |
134 | // -------------- | |
135 | virtual void Command(wxCommandEvent& event); | |
136 | ||
137 | virtual bool AcceptsFocus() const; | |
138 | ||
139 | // callbacks | |
140 | void OnDropFiles(wxDropFilesEvent& event); | |
141 | void OnChar(wxKeyEvent& event); // Process 'enter' if required | |
142 | ||
143 | void OnCut(wxCommandEvent& event); | |
144 | void OnCopy(wxCommandEvent& event); | |
145 | void OnPaste(wxCommandEvent& event); | |
146 | void OnUndo(wxCommandEvent& event); | |
147 | void OnRedo(wxCommandEvent& event); | |
148 | ||
149 | void OnUpdateCut(wxUpdateUIEvent& event); | |
150 | void OnUpdateCopy(wxUpdateUIEvent& event); | |
151 | void OnUpdatePaste(wxUpdateUIEvent& event); | |
152 | void OnUpdateUndo(wxUpdateUIEvent& event); | |
153 | void OnUpdateRedo(wxUpdateUIEvent& event); | |
154 | ||
e40298d5 | 155 | virtual bool MacCanFocus() const { return true ; } |
2b5f62a0 VZ |
156 | virtual bool MacSetupCursor( const wxPoint& pt ) ; |
157 | ||
e40298d5 JS |
158 | virtual void MacSuperShown( bool show ) ; |
159 | virtual bool Show(bool show = TRUE) ; | |
6fda4e7a | 160 | |
0dbd6262 | 161 | protected: |
1fa29bdc VZ |
162 | // common part of all ctors |
163 | void Init(); | |
164 | ||
05adb9d2 | 165 | virtual wxSize DoGetBestSize() const; |
8481948e SC |
166 | |
167 | bool m_editable ; | |
1fa29bdc VZ |
168 | |
169 | // flag is set to true when the user edits the controls contents | |
170 | bool m_dirty; | |
171 | ||
8481948e SC |
172 | // one of the following objects is used for representation, the other one is NULL |
173 | void* m_macTE ; | |
174 | void* m_macTXN ; | |
175 | void* m_macTXNvars ; | |
176 | bool m_macUsesTXN ; | |
f8d5f1e2 | 177 | unsigned long m_maxLength ; |
0dbd6262 SC |
178 | |
179 | DECLARE_EVENT_TABLE() | |
180 | }; | |
181 | ||
182 | #endif | |
183 | // _WX_TEXTCTRL_H_ |