]>
Commit | Line | Data |
---|---|---|
2bda0e17 | 1 | ///////////////////////////////////////////////////////////////////////////// |
d7eee191 | 2 | // Name: wx/msw/textctrl.h |
2bda0e17 KB |
3 | // Purpose: wxTextCtrl class |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 01/02/97 | |
bbcdf8bc | 7 | // Copyright: (c) Julian Smart |
65571936 | 8 | // Licence: wxWindows licence |
2bda0e17 KB |
9 | ///////////////////////////////////////////////////////////////////////////// |
10 | ||
bbcdf8bc JS |
11 | #ifndef _WX_TEXTCTRL_H_ |
12 | #define _WX_TEXTCTRL_H_ | |
2bda0e17 | 13 | |
53a2db12 | 14 | class WXDLLIMPEXP_CORE wxTextCtrl : public wxTextCtrlBase |
2bda0e17 | 15 | { |
ae29de83 | 16 | public: |
bfc6fde4 VZ |
17 | // creation |
18 | // -------- | |
a1b82138 | 19 | |
aac7e7fe | 20 | wxTextCtrl() { Init(); } |
bfc6fde4 | 21 | wxTextCtrl(wxWindow *parent, wxWindowID id, |
a1b82138 VZ |
22 | const wxString& value = wxEmptyString, |
23 | const wxPoint& pos = wxDefaultPosition, | |
24 | const wxSize& size = wxDefaultSize, | |
25 | long style = 0, | |
26 | const wxValidator& validator = wxDefaultValidator, | |
27 | const wxString& name = wxTextCtrlNameStr) | |
28 | { | |
aac7e7fe VZ |
29 | Init(); |
30 | ||
a1b82138 VZ |
31 | Create(parent, id, value, pos, size, style, validator, name); |
32 | } | |
a0e55920 | 33 | virtual ~wxTextCtrl(); |
bfc6fde4 VZ |
34 | |
35 | bool Create(wxWindow *parent, wxWindowID id, | |
a1b82138 VZ |
36 | const wxString& value = wxEmptyString, |
37 | const wxPoint& pos = wxDefaultPosition, | |
38 | const wxSize& size = wxDefaultSize, | |
39 | long style = 0, | |
40 | const wxValidator& validator = wxDefaultValidator, | |
41 | const wxString& name = wxTextCtrlNameStr); | |
bfc6fde4 | 42 | |
fa2f57be VZ |
43 | // overridden wxTextEntry methods |
44 | // ------------------------------ | |
4438caf4 VZ |
45 | |
46 | virtual wxString GetValue() const; | |
fa2f57be VZ |
47 | virtual wxString GetRange(long from, long to) const; |
48 | ||
28fdd8db | 49 | virtual bool IsEmpty() const; |
bfc6fde4 | 50 | |
fa2f57be VZ |
51 | virtual void WriteText(const wxString& text); |
52 | virtual void AppendText(const wxString& text); | |
53 | virtual void Clear(); | |
a5aa8086 | 54 | |
bfc6fde4 VZ |
55 | virtual int GetLineLength(long lineNo) const; |
56 | virtual wxString GetLineText(long lineNo) const; | |
57 | virtual int GetNumberOfLines() const; | |
58 | ||
fa2f57be | 59 | virtual void SetMaxLength(unsigned long len); |
a1b82138 | 60 | |
fa2f57be | 61 | virtual void GetSelection(long *from, long *to) const; |
a1b82138 | 62 | |
fa2f57be VZ |
63 | virtual void Redo(); |
64 | virtual bool CanRedo() const; | |
bfc6fde4 | 65 | |
fa2f57be VZ |
66 | virtual void SetInsertionPointEnd(); |
67 | virtual long GetInsertionPoint() const; | |
68 | virtual wxTextPos GetLastPosition() const; | |
69 | ||
70 | // implement base class pure virtuals | |
71 | // ---------------------------------- | |
a1b82138 | 72 | |
fa2f57be | 73 | virtual bool IsModified() const; |
3a9fa0d6 | 74 | virtual void MarkDirty(); |
a1b82138 VZ |
75 | virtual void DiscardEdits(); |
76 | ||
94af7d45 VZ |
77 | #ifdef __WIN32__ |
78 | virtual bool EmulateKeyPress(const wxKeyEvent& event); | |
79 | #endif // __WIN32__ | |
80 | ||
4bc1afd5 VZ |
81 | #if wxUSE_RICHEDIT |
82 | // apply text attribute to the range of text (only works with richedit | |
83 | // controls) | |
84 | virtual bool SetStyle(long start, long end, const wxTextAttr& style); | |
5bf75ae7 | 85 | virtual bool SetDefaultStyle(const wxTextAttr& style); |
e00a5d3c | 86 | virtual bool GetStyle(long position, wxTextAttr& style); |
4bc1afd5 VZ |
87 | #endif // wxUSE_RICHEDIT |
88 | ||
a1b82138 VZ |
89 | // translate between the position (which is just an index in the text ctrl |
90 | // considering all its contents as a single strings) and (x, y) coordinates | |
91 | // which represent column and line. | |
92 | virtual long XYToPosition(long x, long y) const; | |
0efe5ba7 | 93 | virtual bool PositionToXY(long pos, long *x, long *y) const; |
a1b82138 VZ |
94 | |
95 | virtual void ShowPosition(long pos); | |
6726a6b0 | 96 | virtual wxTextCtrlHitTestResult HitTest(const wxPoint& pt, long *pos) const; |
3b830ce0 VZ |
97 | virtual wxTextCtrlHitTestResult HitTest(const wxPoint& pt, |
98 | wxTextCoord *col, | |
99 | wxTextCoord *row) const | |
100 | { | |
101 | return wxTextCtrlBase::HitTest(pt, col, row); | |
102 | } | |
a1b82138 | 103 | |
e3a6a6b2 | 104 | // Caret handling (Windows only) |
e3a6a6b2 VZ |
105 | bool ShowNativeCaret(bool show = true); |
106 | bool HideNativeCaret() { return ShowNativeCaret(false); } | |
107 | ||
4438caf4 VZ |
108 | // Implementation from now on |
109 | // -------------------------- | |
03647350 | 110 | |
20a0e999 VZ |
111 | #if wxUSE_DRAG_AND_DROP && wxUSE_RICHEDIT |
112 | virtual void SetDropTarget(wxDropTarget *dropTarget); | |
113 | #endif // wxUSE_DRAG_AND_DROP && wxUSE_RICHEDIT | |
e702ff0f | 114 | |
b2d5a7ee VZ |
115 | virtual void SetWindowStyleFlag(long style); |
116 | ||
bfc6fde4 VZ |
117 | virtual void Command(wxCommandEvent& event); |
118 | virtual bool MSWCommand(WXUINT param, WXWORD id); | |
2bae4332 | 119 | virtual WXHBRUSH MSWControlColor(WXHDC hDC, WXHWND hWnd); |
f6bcfd97 | 120 | |
396bdd5a | 121 | #if wxUSE_RICHEDIT |
c57e3339 VZ |
122 | virtual bool MSWOnNotify(int idCtrl, WXLPARAM lParam, WXLPARAM *result); |
123 | ||
aac7e7fe VZ |
124 | int GetRichVersion() const { return m_verRichEdit; } |
125 | bool IsRich() const { return m_verRichEdit != 0; } | |
f6bcfd97 | 126 | |
81fb185e VZ |
127 | // rich edit controls are not compatible with normal ones and we must set |
128 | // the colours and font for them otherwise | |
f6bcfd97 BP |
129 | virtual bool SetBackgroundColour(const wxColour& colour); |
130 | virtual bool SetForegroundColour(const wxColour& colour); | |
81fb185e | 131 | virtual bool SetFont(const wxFont& font); |
715ce94d JS |
132 | #else |
133 | bool IsRich() const { return false; } | |
a1b82138 | 134 | #endif // wxUSE_RICHEDIT |
396bdd5a | 135 | |
8ef51d67 JS |
136 | #if wxUSE_INKEDIT && wxUSE_RICHEDIT |
137 | bool IsInkEdit() const { return m_isInkEdit != 0; } | |
138 | #else | |
139 | bool IsInkEdit() const { return false; } | |
140 | #endif | |
141 | ||
bfc6fde4 | 142 | virtual void AdoptAttributesFromHWND(); |
5fb9fcfc | 143 | |
fa2f57be | 144 | virtual bool AcceptsFocusFromKeyboard() const; |
c50f1fb9 | 145 | |
a047aff2 JS |
146 | // returns true if the platform should explicitly apply a theme border |
147 | virtual bool CanApplyThemeBorder() const; | |
148 | ||
4438caf4 | 149 | // callbacks |
4438caf4 VZ |
150 | void OnDropFiles(wxDropFilesEvent& event); |
151 | void OnChar(wxKeyEvent& event); // Process 'enter' if required | |
152 | ||
153 | void OnCut(wxCommandEvent& event); | |
154 | void OnCopy(wxCommandEvent& event); | |
155 | void OnPaste(wxCommandEvent& event); | |
156 | void OnUndo(wxCommandEvent& event); | |
157 | void OnRedo(wxCommandEvent& event); | |
2b5f62a0 VZ |
158 | void OnDelete(wxCommandEvent& event); |
159 | void OnSelectAll(wxCommandEvent& event); | |
4438caf4 VZ |
160 | |
161 | void OnUpdateCut(wxUpdateUIEvent& event); | |
162 | void OnUpdateCopy(wxUpdateUIEvent& event); | |
163 | void OnUpdatePaste(wxUpdateUIEvent& event); | |
164 | void OnUpdateUndo(wxUpdateUIEvent& event); | |
165 | void OnUpdateRedo(wxUpdateUIEvent& event); | |
2b5f62a0 VZ |
166 | void OnUpdateDelete(wxUpdateUIEvent& event); |
167 | void OnUpdateSelectAll(wxUpdateUIEvent& event); | |
168 | ||
169 | // Show a context menu for Rich Edit controls (the standard | |
170 | // EDIT control has one already) | |
26f60eb6 | 171 | void OnContextMenu(wxContextMenuEvent& event); |
4438caf4 | 172 | |
e3a6a6b2 VZ |
173 | // be sure the caret remains invisible if the user |
174 | // called HideNativeCaret() before | |
175 | void OnSetFocus(wxFocusEvent& event); | |
176 | ||
6f02a879 VZ |
177 | // intercept WM_GETDLGCODE |
178 | virtual WXLRESULT MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam); | |
179 | ||
180 | virtual bool MSWShouldPreProcessMessage(WXMSG* pMsg); | |
181 | virtual WXDWORD MSWGetStyle(long style, WXDWORD *exstyle) const; | |
6f02a879 | 182 | |
2bda0e17 | 183 | protected: |
aac7e7fe VZ |
184 | // common part of all ctors |
185 | void Init(); | |
186 | ||
3c75d8ba PC |
187 | virtual bool DoLoadFile(const wxString& file, int fileType); |
188 | ||
9b99c1e3 VZ |
189 | // creates the control of appropriate class (plain or rich edit) with the |
190 | // styles corresponding to m_windowStyle | |
191 | // | |
192 | // this is used by ctor/Create() and when we need to recreate the control | |
193 | // later | |
194 | bool MSWCreateText(const wxString& value, | |
195 | const wxPoint& pos, | |
196 | const wxSize& size); | |
197 | ||
ee2ec18e | 198 | virtual void DoSetValue(const wxString &value, int flags = 0); |
f6519b40 | 199 | |
6ce83213 VZ |
200 | virtual wxPoint DoPositionToCoords(long pos) const; |
201 | ||
4fa80851 VZ |
202 | // return true if this control has a user-set limit on amount of text (i.e. |
203 | // the limit is due to a previous call to SetMaxLength() and not built in) | |
204 | bool HasSpaceLimit(unsigned int *len) const; | |
205 | ||
789295bf VZ |
206 | // call this to increase the size limit (will do nothing if the current |
207 | // limit is big enough) | |
d7eee191 VZ |
208 | // |
209 | // returns true if we increased the limit to allow entering more text, | |
210 | // false if we hit the limit set by SetMaxLength() and so didn't change it | |
211 | bool AdjustSpaceLimit(); | |
789295bf | 212 | |
7411f983 | 213 | #if wxUSE_RICHEDIT && (!wxUSE_UNICODE || wxUSE_UNICODE_MSLU) |
79d26b32 VZ |
214 | // replace the selection or the entire control contents with the given text |
215 | // in the specified encoding | |
7411f983 VZ |
216 | bool StreamIn(const wxString& value, wxFontEncoding encoding, bool selOnly); |
217 | ||
218 | // get the contents of the control out as text in the given encoding | |
219 | wxString StreamOut(wxFontEncoding encoding, bool selOnly = false) const; | |
aac7e7fe VZ |
220 | #endif // wxUSE_RICHEDIT |
221 | ||
79d26b32 VZ |
222 | // replace the contents of the selection or of the entire control with the |
223 | // given text | |
dd1c1631 VZ |
224 | void DoWriteText(const wxString& text, |
225 | int flags = SetValue_SendEvent | SetValue_SelectionOnly); | |
79d26b32 | 226 | |
fa2f57be VZ |
227 | // set the selection (possibly without scrolling the caret into view) |
228 | void DoSetSelection(long from, long to, int flags); | |
aac7e7fe | 229 | |
a5aa8086 VZ |
230 | // get the length of the line containing the character at the given |
231 | // position | |
232 | long GetLengthOfLineContainingPos(long pos) const; | |
233 | ||
bfbb0b4c | 234 | // send TEXT_UPDATED event, return true if it was handled, false otherwise |
5036ea90 VZ |
235 | bool SendUpdateEvent(); |
236 | ||
f68586e5 | 237 | virtual wxSize DoGetBestSize() const; |
aa24f946 | 238 | virtual wxSize DoGetSizeFromTextSize(int xlen, int ylen = -1) const; |
bfc6fde4 | 239 | |
d7eee191 | 240 | #if wxUSE_RICHEDIT |
a8abba41 VZ |
241 | // Apply the character-related parts of wxTextAttr to the given selection |
242 | // or the entire control if start == end == -1. | |
243 | // | |
244 | // This function is private and should only be called for rich edit | |
245 | // controls and with (from, to) already in correct order, i.e. from <= to. | |
246 | bool MSWSetCharFormat(const wxTextAttr& attr, long from = -1, long to = -1); | |
247 | ||
248 | // Same as above for paragraph-related parts of wxTextAttr. Note that this | |
249 | // can only be applied to the selection as RichEdit doesn't support setting | |
250 | // the paragraph styles globally. | |
251 | bool MSWSetParaFormat(const wxTextAttr& attr, long from, long to); | |
252 | ||
253 | ||
aac7e7fe | 254 | // we're using RICHEDIT (and not simple EDIT) control if this field is not |
4f7c00f2 VZ |
255 | // 0, it also gives the version of the RICHEDIT control being used |
256 | // (although not directly: 1 is for 1.0, 2 is for either 2.0 or 3.0 as we | |
257 | // can't nor really need to distinguish between them and 4 is for 4.1) | |
aac7e7fe | 258 | int m_verRichEdit; |
2b5f62a0 | 259 | #endif // wxUSE_RICHEDIT |
5036ea90 | 260 | |
2c62dd25 VZ |
261 | // number of EN_UPDATE events sent by Windows when we change the controls |
262 | // text ourselves: we want this to be exactly 1 | |
263 | int m_updatesCount; | |
d7eee191 | 264 | |
3c75d8ba | 265 | private: |
fa2f57be VZ |
266 | virtual void EnableTextChangedEvents(bool enable) |
267 | { | |
268 | m_updatesCount = enable ? -1 : -2; | |
269 | } | |
270 | ||
3c75d8ba PC |
271 | // implement wxTextEntry pure virtual: it implements all the operations for |
272 | // the simple EDIT controls | |
273 | virtual WXHWND GetEditHWND() const { return m_hWnd; } | |
274 | ||
e2cf30aa VS |
275 | void OnKeyDown(wxKeyEvent& event); |
276 | ||
bfc6fde4 | 277 | DECLARE_EVENT_TABLE() |
fc7a2a60 | 278 | DECLARE_DYNAMIC_CLASS_NO_COPY(wxTextCtrl) |
2b5f62a0 VZ |
279 | |
280 | wxMenu* m_privateContextMenu; | |
e3a6a6b2 VZ |
281 | |
282 | bool m_isNativeCaretShown; | |
8ef51d67 JS |
283 | |
284 | #if wxUSE_INKEDIT && wxUSE_RICHEDIT | |
285 | int m_isInkEdit; | |
286 | #endif | |
287 | ||
2bda0e17 KB |
288 | }; |
289 | ||
fa2f57be | 290 | #endif // _WX_TEXTCTRL_H_ |