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