]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/passdlg.tex
undefine _DEFINE_LIST before redefining it; also rename it to have WX prefix
[wxWidgets.git] / docs / latex / wx / passdlg.tex
CommitLineData
55b46fd1
KH
1\section{\class{wxPasswordEntryDialog}}\label{wxpasswordentrydialog}
2
3This class represents a dialog that requests a one-line password string from the user.
4It is implemented as a generic wxWidgets dialog.
5
6\wxheading{Derived from}
7
8\helpref{wxTextEntryDialog}{wxtextentrydialog}\\
9\helpref{wxDialog}{wxdialog}\\
7376079d 10\helpref{wxTopLevelWindow}{wxtoplevelwindow}\\
55b46fd1
KH
11\helpref{wxWindow}{wxwindow}\\
12\helpref{wxEvtHandler}{wxevthandler}\\
13\helpref{wxObject}{wxobject}
14
15\wxheading{Include files}
16
17<wx/textdlg.h>
18
19\wxheading{See also}
20
21\helpref{wxPassowrdEntryDialog overview}{wxpasswordentrydialogoverview}
22
23\latexignore{\rtfignore{\wxheading{Members}}}
24
25\membersection{wxPasswordEntryDialog::wxPasswordEntryDialog}\label{wxpasswordentrydialogctor}
26
27\func{}{wxPasswordEntryDialog}{\param{wxWindow* }{parent}, \param{const wxString\& }{message},\rtfsp
28\param{const wxString\& }{caption = "Enter password"}, \param{const wxString\& }{defaultValue = ""}, \param{long }{style = wxOK \pipe wxCANCEL \pipe wxCENTRE}, \param{const wxPoint\& }{pos = wxDefaultPosition}}
29
30Constructor. Use \helpref{wxTextEntryDialog::ShowModal}{wxtextentrydialogshowmodal} to show the dialog.
31
32\wxheading{Parameters}
33
34\docparam{parent}{Parent window.}
35
36\docparam{message}{Message to show on the dialog.}
37
38\docparam{defaultValue}{The default value, which may be the empty string.}
39
40\docparam{style}{A dialog style, specifying the buttons (wxOK, wxCANCEL)
2585f543 41and an optional wxCENTRE style. You do not need to specify the \windowstyle{wxTE\_PASSWORD} style, it is always applied.}
55b46fd1
KH
42
43\docparam{pos}{Dialog position.}