1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: interface of wxFindDialogEvent, wxFindReplaceDialog
4 // Author: wxWidgets team
6 // Licence: wxWindows licence
7 /////////////////////////////////////////////////////////////////////////////
11 See wxFindDialogEvent::GetFlags().
13 enum wxFindReplaceFlags
15 /** downward search/replace selected (otherwise - upwards) */
18 /** whole word search/replace selected */
21 /** case sensitive search/replace selected (otherwise - case insensitive) */
27 These flags can be specified in wxFindReplaceDialog ctor or Create():
29 enum wxFindReplaceDialogStyles
31 /** replace dialog (otherwise find dialog) */
32 wxFR_REPLACEDIALOG
= 1,
34 /** don't allow changing the search direction */
37 /** don't allow case sensitive searching */
40 /** don't allow whole word searching */
46 @class wxFindDialogEvent
48 wxFindReplaceDialog events.
50 @beginEventTable{wxFindDialogEvent}
51 @event{EVT_FIND(id, func)}
52 Find button was pressed in the dialog.
53 @event{EVT_FIND_NEXT(id, func)}
54 Find next button was pressed in the dialog.
55 @event{EVT_FIND_REPLACE(id, func)}
56 Replace button was pressed in the dialog.
57 @event{EVT_FIND_REPLACE_ALL(id, func)}
58 Replace all button was pressed in the dialog.
59 @event{EVT_FIND_CLOSE(id, func)}
60 The dialog is being destroyed, any pointers to it cannot be used any longer.
66 class wxFindDialogEvent
: public wxCommandEvent
70 Constructor used by wxWidgets only.
72 wxFindDialogEvent(wxEventType commandType
= wxEVT_NULL
,
76 Return the pointer to the dialog which generated this event.
78 wxFindReplaceDialog
* GetDialog() const;
81 Return the string to find (never empty).
83 wxString
GetFindString() const;
86 Get the currently selected flags: this is the combination of
87 the ::wxFindReplaceFlags enumeration values.
92 Return the string to replace the search string with (only for replace and
95 const wxString
& GetReplaceString() const;
98 wxEventType wxEVT_COMMAND_FIND
;
99 wxEventType wxEVT_COMMAND_FIND_NEXT
;
100 wxEventType wxEVT_COMMAND_FIND_REPLACE
;
101 wxEventType wxEVT_COMMAND_FIND_REPLACE_ALL
;
102 wxEventType wxEVT_COMMAND_FIND_CLOSE
;
107 @class wxFindReplaceData
109 wxFindReplaceData holds the data for wxFindReplaceDialog.
111 It is used to initialize the dialog with the default values and will keep the
112 last values from the dialog when it is closed. It is also updated each time a
113 wxFindDialogEvent is generated so instead of using the wxFindDialogEvent
114 methods you can also directly query this object.
116 Note that all @c SetXXX() methods may only be called before showing the
117 dialog and calling them has no effect later.
120 @category{cmndlg,data}
122 class wxFindReplaceData
: public wxObject
126 Constructor initializes the flags to default value (0).
128 wxFindReplaceData(wxUint32 flags
= 0);
131 Get the string to find.
133 const wxString
& GetFindString() const;
136 Get the combination of @c wxFindReplaceFlags values.
138 int GetFlags() const;
141 Get the replacement string.
143 const wxString
& GetReplaceString() const;
146 Set the string to find (used as initial value by the dialog).
148 void SetFindString(const wxString
& str
);
151 Set the flags to use to initialize the controls of the dialog.
153 void SetFlags(wxUint32 flags
);
156 Set the replacement string (used as initial value by the dialog).
158 void SetReplaceString(const wxString
& str
);
164 @class wxFindReplaceDialog
166 wxFindReplaceDialog is a standard modeless dialog which is used to allow the
167 user to search for some text (and possibly replace it with something else).
169 The actual searching is supposed to be done in the owner window which is the
170 parent of this dialog. Note that it means that unlike for the other standard
171 dialogs this one @b must have a parent window. Also note that there is no
172 way to use this dialog in a modal way; it is always, by design and
173 implementation, modeless.
175 Please see the @ref page_samples_dialogs sample for an example of using it.
180 class wxFindReplaceDialog
: public wxDialog
183 wxFindReplaceDialog();
186 After using default constructor Create() must be called.
188 The @a parent and @a data parameters must be non-@NULL.
190 wxFindReplaceDialog(wxWindow
* parent
,
191 wxFindReplaceData
* data
,
192 const wxString
& title
,
198 virtual ~wxFindReplaceDialog();
201 Creates the dialog; use wxWindow::Show to show it on screen.
203 The @a parent and @a data parameters must be non-@NULL.
205 bool Create(wxWindow
* parent
, wxFindReplaceData
* data
,
206 const wxString
& title
, int style
= 0);
209 Get the wxFindReplaceData object used by this dialog.
211 const wxFindReplaceData
* GetData() const;