]>
Commit | Line | Data |
---|---|---|
a660d684 KB |
1 | \section{\class{wxTextEntryDialog}}\label{wxtextentrydialog} |
2 | ||
3 | This class represents a dialog that requests a one-line text string from the user. | |
fc2171bd | 4 | It is implemented as a generic wxWidgets dialog. |
a660d684 KB |
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 | ||
15d83f72 | 23 | \membersection{wxTextEntryDialog::wxTextEntryDialog}\label{wxtextentrydialogctor} |
a660d684 | 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 | |
28 | Constructor. 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 | ||
a294c6d5 VZ |
38 | \docparam{style}{A dialog style, specifying the buttons (wxOK, wxCANCEL) |
39 | and an optional wxCENTRE style. Additionally, wxTextCtrl styles (such as | |
2585f543 | 40 | \windowstyle{wxTE\_PASSWORD}) may be specified here.} |
a660d684 KB |
41 | |
42 | \docparam{pos}{Dialog position.} | |
43 | ||
15d83f72 | 44 | \membersection{wxTextEntryDialog::\destruct{wxTextEntryDialog}}\label{wxtextentrydialogdtor} |
a660d684 KB |
45 | |
46 | \func{}{\destruct{wxTextEntryDialog}}{\void} | |
47 | ||
48 | Destructor. | |
49 | ||
50 | \membersection{wxTextEntryDialog::GetValue}\label{wxtextentrydialoggetvalue} | |
51 | ||
52 | \constfunc{wxString}{GetValue}{\void} | |
53 | ||
54 | Returns the text that the user has entered if the user has pressed OK, or the original value | |
55 | if the user has pressed Cancel. | |
56 | ||
57 | \membersection{wxTextEntryDialog::SetValue}\label{wxtextentrydialogsetvalue} | |
58 | ||
59 | \func{void}{SetValue}{\param{const wxString\& }{value}} | |
60 | ||
61 | Sets the default text value. | |
62 | ||
63 | \membersection{wxTextEntryDialog::ShowModal}\label{wxtextentrydialogshowmodal} | |
64 | ||
65 | \func{int}{ShowModal}{\void} | |
66 | ||
7e065884 | 67 | Shows the dialog, returning wxID\_OK if the user pressed OK, and wxID\_CANCEL |
a660d684 KB |
68 | otherwise. |
69 | ||
70 |