]>
Commit | Line | Data |
---|---|---|
3f7f284d RD |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: wx/generic/srchctlg.h | |
3 | // Purpose: generic wxSearchCtrl class | |
4 | // Author: Vince Harron | |
3f7f284d | 5 | // Created: 2006-02-19 |
8bc333d7 | 6 | // RCS-ID: $Id$ |
3f7f284d RD |
7 | // Copyright: Vince Harron |
8 | // Licence: wxWindows licence | |
9 | ///////////////////////////////////////////////////////////////////////////// | |
10 | ||
11 | #ifndef _WX_GENERIC_SEARCHCTRL_H_ | |
12 | #define _WX_GENERIC_SEARCHCTRL_H_ | |
13 | ||
14 | #if wxUSE_SEARCHCTRL | |
15 | ||
2efce8f1 RD |
16 | #include "wx/bitmap.h" |
17 | ||
b5dbe15d VS |
18 | class WXDLLIMPEXP_FWD_CORE wxSearchButton; |
19 | class WXDLLIMPEXP_FWD_CORE wxSearchTextCtrl; | |
3f7f284d | 20 | |
3f7f284d RD |
21 | // ---------------------------------------------------------------------------- |
22 | // wxSearchCtrl is a combination of wxTextCtrl and wxSearchButton | |
23 | // ---------------------------------------------------------------------------- | |
24 | ||
25 | class WXDLLEXPORT wxSearchCtrl : public wxSearchCtrlBase | |
26 | { | |
27 | public: | |
28 | // creation | |
29 | // -------- | |
30 | ||
31 | wxSearchCtrl(); | |
32 | wxSearchCtrl(wxWindow *parent, wxWindowID id, | |
33 | const wxString& value = wxEmptyString, | |
34 | const wxPoint& pos = wxDefaultPosition, | |
35 | const wxSize& size = wxDefaultSize, | |
36 | long style = 0, | |
37 | const wxValidator& validator = wxDefaultValidator, | |
38 | const wxString& name = wxSearchCtrlNameStr); | |
39 | ||
8bc333d7 | 40 | virtual ~wxSearchCtrl(); |
3f7f284d RD |
41 | |
42 | bool Create(wxWindow *parent, wxWindowID id, | |
43 | const wxString& value = wxEmptyString, | |
44 | const wxPoint& pos = wxDefaultPosition, | |
45 | const wxSize& size = wxDefaultSize, | |
46 | long style = 0, | |
47 | const wxValidator& validator = wxDefaultValidator, | |
48 | const wxString& name = wxSearchCtrlNameStr); | |
49 | ||
cfddeb10 | 50 | #if wxUSE_MENUS |
3f7f284d RD |
51 | // get/set search button menu |
52 | // -------------------------- | |
53 | virtual void SetMenu( wxMenu* menu ); | |
54 | virtual wxMenu* GetMenu(); | |
cfddeb10 | 55 | #endif // wxUSE_MENUS |
8bc333d7 | 56 | |
3f7f284d RD |
57 | // get/set search options |
58 | // ---------------------- | |
ec184e32 VZ |
59 | virtual void ShowSearchButton( bool show ); |
60 | virtual bool IsSearchButtonVisible() const; | |
3f7f284d | 61 | |
ec184e32 VZ |
62 | virtual void ShowCancelButton( bool show ); |
63 | virtual bool IsCancelButtonVisible() const; | |
3f7f284d | 64 | |
6646ca90 RD |
65 | // TODO: In 2.9 these should probably be virtual, and declared in the base class... |
66 | void SetDescriptiveText(const wxString& text); | |
67 | wxString GetDescriptiveText() const; | |
6646ca90 | 68 | |
3f7f284d RD |
69 | // accessors |
70 | // --------- | |
71 | ||
72 | virtual wxString GetValue() const; | |
73 | virtual void SetValue(const wxString& value); | |
74 | ||
75 | virtual wxString GetRange(long from, long to) const; | |
76 | ||
77 | virtual int GetLineLength(long lineNo) const; | |
78 | virtual wxString GetLineText(long lineNo) const; | |
79 | virtual int GetNumberOfLines() const; | |
80 | ||
81 | virtual bool IsModified() const; | |
82 | virtual bool IsEditable() const; | |
83 | ||
84 | // more readable flag testing methods | |
85 | virtual bool IsSingleLine() const; | |
86 | virtual bool IsMultiLine() const; | |
87 | ||
88 | // If the return values from and to are the same, there is no selection. | |
89 | virtual void GetSelection(long* from, long* to) const; | |
90 | ||
91 | virtual wxString GetStringSelection() const; | |
92 | ||
93 | // operations | |
94 | // ---------- | |
95 | ||
96 | // editing | |
97 | virtual void Clear(); | |
98 | virtual void Replace(long from, long to, const wxString& value); | |
99 | virtual void Remove(long from, long to); | |
100 | ||
101 | // load/save the controls contents from/to the file | |
102 | virtual bool LoadFile(const wxString& file); | |
103 | virtual bool SaveFile(const wxString& file = wxEmptyString); | |
104 | ||
105 | // sets/clears the dirty flag | |
106 | virtual void MarkDirty(); | |
107 | virtual void DiscardEdits(); | |
108 | ||
109 | // set the max number of characters which may be entered in a single line | |
110 | // text control | |
111 | virtual void SetMaxLength(unsigned long WXUNUSED(len)); | |
112 | ||
113 | // writing text inserts it at the current position, appending always | |
114 | // inserts it at the end | |
115 | virtual void WriteText(const wxString& text); | |
116 | virtual void AppendText(const wxString& text); | |
117 | ||
118 | // insert the character which would have resulted from this key event, | |
119 | // return true if anything has been inserted | |
120 | virtual bool EmulateKeyPress(const wxKeyEvent& event); | |
121 | ||
122 | // text control under some platforms supports the text styles: these | |
123 | // methods allow to apply the given text style to the given selection or to | |
124 | // set/get the style which will be used for all appended text | |
125 | virtual bool SetStyle(long start, long end, const wxTextAttr& style); | |
126 | virtual bool GetStyle(long position, wxTextAttr& style); | |
127 | virtual bool SetDefaultStyle(const wxTextAttr& style); | |
128 | virtual const wxTextAttr& GetDefaultStyle() const; | |
129 | ||
130 | // translate between the position (which is just an index in the text ctrl | |
131 | // considering all its contents as a single strings) and (x, y) coordinates | |
132 | // which represent column and line. | |
133 | virtual long XYToPosition(long x, long y) const; | |
134 | virtual bool PositionToXY(long pos, long *x, long *y) const; | |
135 | ||
136 | virtual void ShowPosition(long pos); | |
137 | ||
138 | // find the character at position given in pixels | |
139 | // | |
140 | // NB: pt is in device coords (not adjusted for the client area origin nor | |
141 | // scrolling) | |
142 | virtual wxTextCtrlHitTestResult HitTest(const wxPoint& pt, long *pos) const; | |
143 | virtual wxTextCtrlHitTestResult HitTest(const wxPoint& pt, | |
144 | wxTextCoord *col, | |
145 | wxTextCoord *row) const; | |
146 | ||
147 | // Clipboard operations | |
148 | virtual void Copy(); | |
149 | virtual void Cut(); | |
150 | virtual void Paste(); | |
151 | ||
152 | virtual bool CanCopy() const; | |
153 | virtual bool CanCut() const; | |
154 | virtual bool CanPaste() const; | |
155 | ||
156 | // Undo/redo | |
157 | virtual void Undo(); | |
158 | virtual void Redo(); | |
159 | ||
160 | virtual bool CanUndo() const; | |
161 | virtual bool CanRedo() const; | |
162 | ||
163 | // Insertion point | |
164 | virtual void SetInsertionPoint(long pos); | |
165 | virtual void SetInsertionPointEnd(); | |
166 | virtual long GetInsertionPoint() const; | |
167 | virtual wxTextPos GetLastPosition() const; | |
168 | ||
169 | virtual void SetSelection(long from, long to); | |
170 | virtual void SelectAll(); | |
171 | virtual void SetEditable(bool editable); | |
172 | ||
173 | #if 0 | |
174 | ||
175 | // override streambuf method | |
176 | #if wxHAS_TEXT_WINDOW_STREAM | |
177 | int overflow(int i); | |
178 | #endif // wxHAS_TEXT_WINDOW_STREAM | |
179 | ||
180 | // stream-like insertion operators: these are always available, whether we | |
181 | // were, or not, compiled with streambuf support | |
182 | wxTextCtrl& operator<<(const wxString& s); | |
183 | wxTextCtrl& operator<<(int i); | |
184 | wxTextCtrl& operator<<(long i); | |
185 | wxTextCtrl& operator<<(float f); | |
186 | wxTextCtrl& operator<<(double d); | |
187 | wxTextCtrl& operator<<(const wxChar c); | |
188 | #endif | |
189 | ||
190 | // do the window-specific processing after processing the update event | |
191 | virtual void DoUpdateWindowUI(wxUpdateUIEvent& event); | |
192 | ||
193 | virtual bool ShouldInheritColours() const; | |
194 | ||
195 | // wxWindow overrides | |
196 | virtual bool SetFont(const wxFont& font); | |
197 | ||
198 | // search control generic only | |
199 | void SetSearchBitmap( const wxBitmap& bitmap ); | |
3f7f284d | 200 | void SetCancelBitmap( const wxBitmap& bitmap ); |
cfddeb10 VZ |
201 | #if wxUSE_MENUS |
202 | void SetSearchMenuBitmap( const wxBitmap& bitmap ); | |
203 | #endif // wxUSE_MENUS | |
3f7f284d RD |
204 | |
205 | protected: | |
0ec1179b VZ |
206 | virtual void DoSetValue(const wxString& value, int flags); |
207 | virtual bool DoLoadFile(const wxString& file, int fileType); | |
208 | virtual bool DoSaveFile(const wxString& file, int fileType); | |
3f7f284d RD |
209 | |
210 | // override the base class virtuals involved into geometry calculations | |
211 | virtual wxSize DoGetBestSize() const; | |
212 | virtual void DoMoveWindow(int x, int y, int width, int height); | |
213 | virtual void LayoutControls(int x, int y, int width, int height); | |
214 | ||
215 | virtual void RecalcBitmaps(); | |
216 | ||
217 | void Init(); | |
218 | ||
219 | virtual wxBitmap RenderSearchBitmap( int x, int y, bool renderDrop ); | |
220 | virtual wxBitmap RenderCancelBitmap( int x, int y ); | |
221 | ||
222 | virtual void OnSearchButton( wxCommandEvent& event ); | |
223 | ||
224 | void OnSetFocus( wxFocusEvent& event ); | |
af1f44f1 | 225 | void OnSize( wxSizeEvent& event ); |
cfddeb10 VZ |
226 | |
227 | bool HasMenu() const | |
228 | { | |
229 | #if wxUSE_MENUS | |
230 | return m_menu != NULL; | |
231 | #else // !wxUSE_MENUS | |
232 | return false; | |
233 | #endif // wxUSE_MENUS/!wxUSE_MENUS | |
234 | } | |
235 | ||
3f7f284d RD |
236 | private: |
237 | friend class wxSearchButton; | |
238 | ||
cfddeb10 | 239 | #if wxUSE_MENUS |
3f7f284d | 240 | void PopupSearchMenu(); |
cfddeb10 | 241 | #endif // wxUSE_MENUS |
3f7f284d RD |
242 | |
243 | // the subcontrols | |
244 | wxSearchTextCtrl *m_text; | |
245 | wxSearchButton *m_searchButton; | |
246 | wxSearchButton *m_cancelButton; | |
cfddeb10 | 247 | #if wxUSE_MENUS |
3f7f284d | 248 | wxMenu *m_menu; |
cfddeb10 | 249 | #endif // wxUSE_MENUS |
3f7f284d RD |
250 | |
251 | bool m_searchButtonVisible; | |
252 | bool m_cancelButtonVisible; | |
253 | ||
254 | bool m_searchBitmapUser; | |
3f7f284d | 255 | bool m_cancelBitmapUser; |
cfddeb10 VZ |
256 | #if wxUSE_MENUS |
257 | bool m_searchMenuBitmapUser; | |
258 | #endif // wxUSE_MENUS | |
259 | ||
3f7f284d | 260 | wxBitmap m_searchBitmap; |
3f7f284d | 261 | wxBitmap m_cancelBitmap; |
cfddeb10 VZ |
262 | #if wxUSE_MENUS |
263 | wxBitmap m_searchMenuBitmap; | |
264 | #endif // wxUSE_MENUS | |
265 | ||
3f7f284d RD |
266 | private: |
267 | DECLARE_DYNAMIC_CLASS(wxSearchCtrl) | |
268 | ||
269 | DECLARE_EVENT_TABLE() | |
270 | }; | |
271 | ||
272 | #endif // wxUSE_SEARCHCTRL | |
273 | ||
274 | #endif // _WX_GENERIC_SEARCHCTRL_H_ | |
275 |