]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/textdlg.tex
typo
[wxWidgets.git] / docs / latex / wx / textdlg.tex
CommitLineData
a660d684
KB
1\section{\class{wxTextEntryDialog}}\label{wxtextentrydialog}
2
3This class represents a dialog that requests a one-line text string from the user.
fc2171bd 4It is implemented as a generic wxWidgets dialog.
a660d684
KB
5
6\wxheading{Derived from}
7
8\helpref{wxDialog}{wxdialog}\\
7376079d 9\helpref{wxTopLevelWindow}{wxtoplevelwindow}\\
a660d684
KB
10\helpref{wxWindow}{wxwindow}\\
11\helpref{wxEvtHandler}{wxevthandler}\\
12\helpref{wxObject}{wxobject}
13
954b8ae6
JS
14\wxheading{Include files}
15
16<wx/textdlg.h>
17
a660d684
KB
18\wxheading{See also}
19
20\helpref{wxTextEntryDialog overview}{wxtextentrydialogoverview}
21
22\latexignore{\rtfignore{\wxheading{Members}}}
23
15d83f72 24\membersection{wxTextEntryDialog::wxTextEntryDialog}\label{wxtextentrydialogctor}
a660d684 25
750b78ba
JS
26\func{}{wxTextEntryDialog}{\param{wxWindow* }{parent}, \param{const wxString\& }{message},\rtfsp
27\param{const wxString\& }{caption = "Please enter text"}, \param{const wxString\& }{defaultValue = ""}, \param{long }{style = wxOK \pipe wxCANCEL \pipe wxCENTRE}, \param{const wxPoint\& }{pos = wxDefaultPosition}}
a660d684
KB
28
29Constructor. 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
a294c6d5
VZ
39\docparam{style}{A dialog style, specifying the buttons (wxOK, wxCANCEL)
40and an optional wxCENTRE style. Additionally, wxTextCtrl styles (such as
2585f543 41\windowstyle{wxTE\_PASSWORD}) may be specified here.}
a660d684
KB
42
43\docparam{pos}{Dialog position.}
44
15d83f72 45\membersection{wxTextEntryDialog::\destruct{wxTextEntryDialog}}\label{wxtextentrydialogdtor}
a660d684
KB
46
47\func{}{\destruct{wxTextEntryDialog}}{\void}
48
49Destructor.
50
51\membersection{wxTextEntryDialog::GetValue}\label{wxtextentrydialoggetvalue}
52
53\constfunc{wxString}{GetValue}{\void}
54
55Returns the text that the user has entered if the user has pressed OK, or the original value
56if the user has pressed Cancel.
57
58\membersection{wxTextEntryDialog::SetValue}\label{wxtextentrydialogsetvalue}
59
60\func{void}{SetValue}{\param{const wxString\& }{value}}
61
62Sets the default text value.
63
64\membersection{wxTextEntryDialog::ShowModal}\label{wxtextentrydialogshowmodal}
65
66\func{int}{ShowModal}{\void}
67
7e065884 68Shows the dialog, returning wxID\_OK if the user pressed OK, and wxID\_CANCEL
a660d684
KB
69otherwise.
70
71