1 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3 %% Purpose: wxFindReplaceDialog documentation
4 %% Author: Vadim Zeitlin
8 %% Copyright: (c) 2001 Vadim Zeitlin
9 %% License: wxWindows license
10 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
12 \section{\class{wxFindDialogEvent
}}\label{wxfinddialogevent
}
14 wxFindReplaceDialog events
16 \wxheading{Derived from
}
18 \helpref{wxCommandEvent
}{wxcommandevent
}
20 \wxheading{Include files
}
24 \wxheading{Event table macros
}
26 To process a command event from
27 \helpref{wxFindReplaceDialog
}{wxfindreplacedialog
}, use these event handler
28 macros to direct input to member functions that take a wxFindDialogEvent
29 argument. The
{\it id
} parameter is the identifier of the find dialog and you
30 may usually specify $-
1$ for it unless you plan to have several find dialogs
31 sending events to the same owner window simultaneously.
34 \begin{twocollist
}\itemsep=
0pt
35 \twocolitem{{\bf EVT
\_FIND(id, func)
}}{Find button was pressed in the dialog.
}
36 \twocolitem{{\bf EVT
\_FIND\_NEXT(id, func)
}}{Find next button was pressed in the dialog.
}
37 \twocolitem{{\bf EVT
\_FIND\_REPLACE(id, func)
}}{Replace button was pressed in the dialog.
}
38 \twocolitem{{\bf EVT
\_FIND\_REPLACE\_ALL(id, func)
}}{Replace all button was pressed in the dialog.
}
39 \twocolitem{{\bf EVT
\_FIND\_CLOSE(id, func)
}}{The dialog is being destroyed,
40 any pointers to it cannot be used any longer.
}
43 \latexignore{\rtfignore{\wxheading{Members
}}}
45 \membersection{wxFindDialogEvent::wxFindDialogEvent
}\label{wxfinddialogeventwxfinddialogevent
}
47 \func{}{wxFindDialogEvent
}{\param{wxEventType
}{commandType = wxEVT
\_NULL},
\param{int
}{id =
0}}
49 Constuctor used by wxWidgets only.
51 \membersection{wxFindDialogEvent::GetFlags
}\label{wxfinddialogeventgetflags
}
53 \constfunc{int
}{GetFlags
}{\void}
55 Get the currently selected flags: this is the combination of
{\tt wxFR
\_DOWN},
56 {\tt wxFR
\_WHOLEWORD} and
{\tt wxFR
\_MATCHCASE} flags.
58 \membersection{wxFindDialogEvent::GetFindString
}\label{wxfinddialogeventgetfindstring
}
60 \constfunc{wxString
}{GetFindString
}{\void}
62 Return the string to find (never empty).
64 \membersection{wxFindDialogEvent::GetReplaceString
}\label{wxfinddialogeventgetreplacestring
}
66 \constfunc{const wxString\&
}{GetReplaceString
}{\void}
68 Return the string to replace the search string with (only for replace and
71 \membersection{wxFindDialogEvent::GetDialog
}\label{wxfinddialogeventgetdialog
}
73 \constfunc{wxFindReplaceDialog*
}{GetDialog
}{\void}
75 Return the pointer to the dialog which generated this event.
77 \section{\class{wxFindReplaceData
}}\label{wxfindreplacedata
}
79 wxFindReplaceData holds the data for
80 \helpref{wxFindReplaceDialog
}{wxfindreplacedialog
}. It is used to initialize
81 the dialog with the default values and will keep the last values from the
82 dialog when it is closed. It is also updated each time a
83 \helpref{wxFindDialogEvent
}{wxfinddialogevent
} is generated so instead of
84 using the wxFindDialogEvent methods you can also directly query this object.
86 Note that all
{\tt SetXXX()
} methods may only be called before showing the
87 dialog and calling them has no effect later.
89 \wxheading{Include files
}
92 #include <wx/fdrepdlg.h>
95 \wxheading{Derived from
}
97 \helpref{wxObject
}{wxobject
}
99 \wxheading{Data structures
}
102 \helpref{wxFindReplaceData::GetFlags()
}{wxfindreplacedatagetflags
} and
103 \helpref{wxFindDialogEvent::GetFlags()
}{wxfinddialogeventgetflags
}:
106 enum wxFindReplaceFlags
108 // downward search/replace selected (otherwise - upwards)
111 // whole word search/replace selected
114 // case sensitive search/replace selected (otherwise - case insensitive)
119 These flags can be specified in
120 \helpref{wxFindReplaceDialog ctor
}{wxfindreplacedialogctor
} or
121 \helpref{Create()
}{wxfindreplacedialogcreate
}:
124 enum wxFindReplaceDialogStyles
126 // replace dialog (otherwise find dialog)
127 wxFR_REPLACEDIALOG =
1,
129 // don't allow changing the search direction
132 // don't allow case sensitive searching
133 wxFR_NOMATCHCASE =
4,
135 // don't allow whole word searching
140 \latexignore{\rtfignore{\wxheading{Members
}}}
142 \membersection{wxFindReplaceData::wxFindReplaceData
}\label{wxfindreplacedatactor
}
144 \func{}{wxFindReplaceData
}{\param{wxUint32
}{flags =
0}}
146 Constuctor initializes the flags to default value ($
0$).
148 \membersection{wxFindReplaceData::GetFindString
}\label{wxfindreplacedatagetfindstring
}
150 \func{const wxString\&
}{GetFindString
}{\void}
152 Get the string to find.
154 \membersection{wxFindReplaceData::GetReplaceString
}\label{wxfindreplacedatagetreplacestring
}
156 \func{const wxString\&
}{GetReplaceString
}{\void}
158 Get the replacement string.
160 \membersection{wxFindReplaceData::GetFlags
}\label{wxfindreplacedatagetflags
}
162 \constfunc{int
}{GetFlags
}{\void}
164 Get the combination of
{\tt wxFindReplaceFlags
} values.
166 \membersection{wxFindReplaceData::SetFlags
}\label{wxfindreplacedatasetflags
}
168 \func{void
}{SetFlags
}{\param{wxUint32
}{flags
}}
170 Set the flags to use to initialize the controls of the dialog.
172 \membersection{wxFindReplaceData::SetFindString
}\label{wxfindreplacedatasetfindstring
}
174 \func{void
}{SetFindString
}{\param{const wxString\&
}{str
}}
176 Set the string to find (used as initial value by the dialog).
178 \membersection{wxFindReplaceData::SetReplaceString
}\label{wxfindreplacedatasetreplacestring
}
180 \func{void
}{SetReplaceString
}{\param{const wxString\&
}{str
}}
182 Set the replacement string (used as initial value by the dialog).
184 \section{\class{wxFindReplaceDialog
}}\label{wxfindreplacedialog
}
186 wxFindReplaceDialog is a standard modeless dialog which is used to allow the
187 user to search for some text (and possibly replace it with something else).
188 The actual searching is supposed to be done in the owner window which is the
189 parent of this dialog. Note that it means that unlike for the other standard
190 dialogs this one
{\bf must
} have a parent window. Also note that there is no
191 way to use this dialog in a modal way; it is always, by design and
192 implementation, modeless.
194 Please see the dialogs sample for an example of using it.
196 \wxheading{Include files
}
199 #include <wx/fdrepdlg.h>
202 \wxheading{Derived from
}
204 \helpref{wxDialog
}{wxdialog
}
206 \latexignore{\rtfignore{\wxheading{Members
}}}
208 \membersection{wxFindReplaceDialog::wxFindReplaceDialog
}\label{wxfindreplacedialogctor
}
210 \func{}{wxFindReplaceDialog
}{\void}
212 \func{}{wxFindReplaceDialog
}{\param{wxWindow *
}{parent
},
\param{wxFindReplaceData*
}{data
},
\param{const wxString\&
}{title
},
\param{int
}{style =
0}}
214 After using default constructor
\helpref{Create()
}{wxfindreplacedialogcreate
}
217 The
{\it parent
} and
{\it data
} parameters must be non-
{\tt NULL
}.
219 \membersection{wxFindReplaceDialog::
\destruct{wxFindReplaceDialog
}}\label{wxfindreplacedialogdtor
}
221 \func{}{\destruct{wxFindReplaceDialog
}}{\void}
225 \membersection{wxFindReplaceDialog::Create
}\label{wxfindreplacedialogcreate
}
227 \func{bool
}{Create
}{\param{wxWindow *
}{parent
},
\param{wxFindReplaceData*
}{data
},
\param{const wxString\&
}{title
},
\param{int
}{style =
0}}
229 Creates the dialog; use
\helpref{Show
}{wxwindowshow
} to show it on screen.
231 The
{\it parent
} and
{\it data
} parameters must be non-
{\tt NULL
}.
232 \membersection{wxFindReplaceDialog::GetData
}\label{wxfindreplacedialoggetdata
}
234 \constfunc{const wxFindReplaceData*
}{GetData
}{\void}
236 Get the
\helpref{wxFindReplaceData
}{wxfindreplacedata
} object used by this