1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/generic/srchctlg.h
3 // Purpose: generic wxSearchCtrl class
4 // Author: Vince Harron
7 // Copyright: Vince Harron
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
11 #ifndef _WX_GENERIC_SEARCHCTRL_H_
12 #define _WX_GENERIC_SEARCHCTRL_H_
16 #include "wx/bitmap.h"
18 class WXDLLEXPORT wxSearchButton
;
19 class WXDLLEXPORT wxSearchTextCtrl
;
21 // ----------------------------------------------------------------------------
22 // wxSearchCtrl is a combination of wxTextCtrl and wxSearchButton
23 // ----------------------------------------------------------------------------
25 class WXDLLEXPORT wxSearchCtrl
: public wxSearchCtrlBase
32 wxSearchCtrl(wxWindow
*parent
, wxWindowID id
,
33 const wxString
& value
= wxEmptyString
,
34 const wxPoint
& pos
= wxDefaultPosition
,
35 const wxSize
& size
= wxDefaultSize
,
37 const wxValidator
& validator
= wxDefaultValidator
,
38 const wxString
& name
= wxSearchCtrlNameStr
);
40 virtual ~wxSearchCtrl();
42 bool Create(wxWindow
*parent
, wxWindowID id
,
43 const wxString
& value
= wxEmptyString
,
44 const wxPoint
& pos
= wxDefaultPosition
,
45 const wxSize
& size
= wxDefaultSize
,
47 const wxValidator
& validator
= wxDefaultValidator
,
48 const wxString
& name
= wxSearchCtrlNameStr
);
50 // get/set search button menu
51 // --------------------------
52 virtual void SetMenu( wxMenu
* menu
);
53 virtual wxMenu
* GetMenu();
55 // get/set search options
56 // ----------------------
57 virtual void ShowSearchButton( bool show
);
58 virtual bool IsSearchButtonVisible() const;
60 virtual void ShowCancelButton( bool show
);
61 virtual bool IsCancelButtonVisible() const;
63 // TODO: In 2.9 these should probably be virtual, and declared in the base class...
64 void SetDescriptiveText(const wxString
& text
);
65 wxString
GetDescriptiveText() const;
70 virtual wxString
GetValue() const;
71 virtual void SetValue(const wxString
& value
);
73 virtual wxString
GetRange(long from
, long to
) const;
75 virtual int GetLineLength(long lineNo
) const;
76 virtual wxString
GetLineText(long lineNo
) const;
77 virtual int GetNumberOfLines() const;
79 virtual bool IsModified() const;
80 virtual bool IsEditable() const;
82 // more readable flag testing methods
83 virtual bool IsSingleLine() const;
84 virtual bool IsMultiLine() const;
86 // If the return values from and to are the same, there is no selection.
87 virtual void GetSelection(long* from
, long* to
) const;
89 virtual wxString
GetStringSelection() const;
96 virtual void Replace(long from
, long to
, const wxString
& value
);
97 virtual void Remove(long from
, long to
);
99 // load/save the controls contents from/to the file
100 virtual bool LoadFile(const wxString
& file
);
101 virtual bool SaveFile(const wxString
& file
= wxEmptyString
);
103 // sets/clears the dirty flag
104 virtual void MarkDirty();
105 virtual void DiscardEdits();
107 // set the max number of characters which may be entered in a single line
109 virtual void SetMaxLength(unsigned long WXUNUSED(len
));
111 // writing text inserts it at the current position, appending always
112 // inserts it at the end
113 virtual void WriteText(const wxString
& text
);
114 virtual void AppendText(const wxString
& text
);
116 // insert the character which would have resulted from this key event,
117 // return true if anything has been inserted
118 virtual bool EmulateKeyPress(const wxKeyEvent
& event
);
120 // text control under some platforms supports the text styles: these
121 // methods allow to apply the given text style to the given selection or to
122 // set/get the style which will be used for all appended text
123 virtual bool SetStyle(long start
, long end
, const wxTextAttr
& style
);
124 virtual bool GetStyle(long position
, wxTextAttr
& style
);
125 virtual bool SetDefaultStyle(const wxTextAttr
& style
);
126 virtual const wxTextAttr
& GetDefaultStyle() const;
128 // translate between the position (which is just an index in the text ctrl
129 // considering all its contents as a single strings) and (x, y) coordinates
130 // which represent column and line.
131 virtual long XYToPosition(long x
, long y
) const;
132 virtual bool PositionToXY(long pos
, long *x
, long *y
) const;
134 virtual void ShowPosition(long pos
);
136 // find the character at position given in pixels
138 // NB: pt is in device coords (not adjusted for the client area origin nor
140 virtual wxTextCtrlHitTestResult
HitTest(const wxPoint
& pt
, long *pos
) const;
141 virtual wxTextCtrlHitTestResult
HitTest(const wxPoint
& pt
,
143 wxTextCoord
*row
) const;
145 // Clipboard operations
148 virtual void Paste();
150 virtual bool CanCopy() const;
151 virtual bool CanCut() const;
152 virtual bool CanPaste() const;
158 virtual bool CanUndo() const;
159 virtual bool CanRedo() const;
162 virtual void SetInsertionPoint(long pos
);
163 virtual void SetInsertionPointEnd();
164 virtual long GetInsertionPoint() const;
165 virtual wxTextPos
GetLastPosition() const;
167 virtual void SetSelection(long from
, long to
);
168 virtual void SelectAll();
169 virtual void SetEditable(bool editable
);
173 // override streambuf method
174 #if wxHAS_TEXT_WINDOW_STREAM
176 #endif // wxHAS_TEXT_WINDOW_STREAM
178 // stream-like insertion operators: these are always available, whether we
179 // were, or not, compiled with streambuf support
180 wxTextCtrl
& operator<<(const wxString
& s
);
181 wxTextCtrl
& operator<<(int i
);
182 wxTextCtrl
& operator<<(long i
);
183 wxTextCtrl
& operator<<(float f
);
184 wxTextCtrl
& operator<<(double d
);
185 wxTextCtrl
& operator<<(const wxChar c
);
188 // do the window-specific processing after processing the update event
189 virtual void DoUpdateWindowUI(wxUpdateUIEvent
& event
);
191 virtual bool ShouldInheritColours() const;
193 // wxWindow overrides
194 virtual bool SetFont(const wxFont
& font
);
196 // search control generic only
197 void SetSearchBitmap( const wxBitmap
& bitmap
);
198 void SetSearchMenuBitmap( const wxBitmap
& bitmap
);
199 void SetCancelBitmap( const wxBitmap
& bitmap
);
202 virtual void DoSetValue(const wxString
& value
, int flags
= 0);
204 // override the base class virtuals involved into geometry calculations
205 virtual wxSize
DoGetBestSize() const;
206 virtual void DoMoveWindow(int x
, int y
, int width
, int height
);
207 virtual void LayoutControls(int x
, int y
, int width
, int height
);
209 virtual void RecalcBitmaps();
213 virtual wxBitmap
RenderSearchBitmap( int x
, int y
, bool renderDrop
);
214 virtual wxBitmap
RenderCancelBitmap( int x
, int y
);
216 virtual void OnSearchButton( wxCommandEvent
& event
);
218 void OnSetFocus( wxFocusEvent
& event
);
219 void OnSize( wxSizeEvent
& event
);
222 friend class wxSearchButton
;
224 void PopupSearchMenu();
227 wxSearchTextCtrl
*m_text
;
228 wxSearchButton
*m_searchButton
;
229 wxSearchButton
*m_cancelButton
;
232 bool m_searchButtonVisible
;
233 bool m_cancelButtonVisible
;
235 bool m_searchBitmapUser
;
236 bool m_searchMenuBitmapUser
;
237 bool m_cancelBitmapUser
;
238 wxBitmap m_searchBitmap
;
239 wxBitmap m_searchMenuBitmap
;
240 wxBitmap m_cancelBitmap
;
242 DECLARE_DYNAMIC_CLASS(wxSearchCtrl
)
244 DECLARE_EVENT_TABLE()
247 #endif // wxUSE_SEARCHCTRL
249 #endif // _WX_GENERIC_SEARCHCTRL_H_