]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/textdlg.tex
1. added code to dyntbar to allow bitmap loading from windows resources
[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.
4It is implemented as a generic wxWindows dialog.
5
6\wxheading{Derived from}
7
8\helpref{wxDialog}{wxdialog}\\
9\helpref{wxWindow}{wxwindow}\\
10\helpref{wxEvtHandler}{wxevthandler}\\
11\helpref{wxObject}{wxobject}
12
954b8ae6
JS
13\wxheading{Include files}
14
15<wx/textdlg.h>
16
a660d684
KB
17\wxheading{See also}
18
19\helpref{wxTextEntryDialog overview}{wxtextentrydialogoverview}
20
21\latexignore{\rtfignore{\wxheading{Members}}}
22
23\membersection{wxTextEntryDialog::wxTextEntryDialog}\label{wxtextentrydialogconstr}
24
750b78ba
JS
25\func{}{wxTextEntryDialog}{\param{wxWindow* }{parent}, \param{const wxString\& }{message},\rtfsp
26\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
27
28Constructor. Use \helpref{wxTextEntryDialog::ShowModal}{wxtextentrydialogshowmodal} to show the dialog.
29
30\wxheading{Parameters}
31
32\docparam{parent}{Parent window.}
33
34\docparam{message}{Message to show on the dialog.}
35
36\docparam{defaultValue}{The default value, which may be the empty string.}
37
38\docparam{style}{A dialog style, specifying the buttons (wxOK, wxCANCEL) and an optional wxCENTRE style.}
39
40\docparam{pos}{Dialog position.}
41
42\membersection{wxTextEntryDialog::\destruct{wxTextEntryDialog}}
43
44\func{}{\destruct{wxTextEntryDialog}}{\void}
45
46Destructor.
47
48\membersection{wxTextEntryDialog::GetValue}\label{wxtextentrydialoggetvalue}
49
50\constfunc{wxString}{GetValue}{\void}
51
52Returns the text that the user has entered if the user has pressed OK, or the original value
53if the user has pressed Cancel.
54
55\membersection{wxTextEntryDialog::SetValue}\label{wxtextentrydialogsetvalue}
56
57\func{void}{SetValue}{\param{const wxString\& }{value}}
58
59Sets the default text value.
60
61\membersection{wxTextEntryDialog::ShowModal}\label{wxtextentrydialogshowmodal}
62
63\func{int}{ShowModal}{\void}
64
65Shows the dialog, returning wxID\_OK if the user pressed OK, and wxOK\_CANCEL
66otherwise.
67
68