]>
Commit | Line | Data |
---|---|---|
a660d684 KB |
1 | \section{\class{wxDirDialog}}\label{wxdirdialog} |
2 | ||
3 | This class represents the directory chooser dialog. | |
4 | ||
5 | \wxheading{Derived from} | |
6 | ||
7 | \helpref{wxDialog}{wxdialog}\\ | |
8 | \helpref{wxWindow}{wxwindow}\\ | |
9 | \helpref{wxEvtHandler}{wxevthandler}\\ | |
10 | \helpref{wxObject}{wxobject} | |
11 | ||
954b8ae6 JS |
12 | \wxheading{Include files} |
13 | ||
14 | <wx/dirdlg.h> | |
dabd1377 JS |
15 | <wx/generic/dirdlgg.h> |
16 | ||
17 | \wxheading{Window styles} | |
18 | ||
19 | \twocolwidtha{5cm} | |
20 | \begin{twocollist} | |
21 | \twocolitem{\indexit{wxDD\_NEW\_DIR\_BUTTON}}{Add "Create new directory" button and allow | |
22 | directory names to be editable. Available only on platforms that use the generic | |
23 | dialog chooser: GTK+, Motif, X11, MGL. For other platforms, use the wxGenericDirDialog | |
24 | implementation explicitly if you wish to use this style.} | |
25 | \end{twocollist} | |
26 | ||
27 | See also \helpref{Generic window styles}{windowstyles}. | |
954b8ae6 | 28 | |
a660d684 KB |
29 | \wxheading{See also} |
30 | ||
31 | \helpref{wxDirDialog overview}{wxdirdialogoverview}, \helpref{wxFileDialog}{wxfiledialog} | |
32 | ||
33 | \latexignore{\rtfignore{\wxheading{Members}}} | |
34 | ||
35 | \membersection{wxDirDialog::wxDirDialog}\label{wxdirdialogconstr} | |
36 | ||
37 | \func{}{wxDirDialog}{\param{wxWindow* }{parent}, \param{const wxString\& }{message = "Choose a directory"},\rtfsp | |
38 | \param{const wxString\& }{defaultPath = ""}, \param{long }{style = 0}, \param{const wxPoint\& }{pos = wxDefaultPosition}} | |
39 | ||
40 | Constructor. Use \helpref{wxDirDialog::ShowModal}{wxdirdialogshowmodal} to show the dialog. | |
41 | ||
42 | \wxheading{Parameters} | |
43 | ||
44 | \docparam{parent}{Parent window.} | |
45 | ||
46 | \docparam{message}{Message to show on the dialog.} | |
47 | ||
48 | \docparam{defaultPath}{The default path, or the empty string.} | |
49 | ||
50 | \docparam{style}{A dialog style, currently unused.} | |
51 | ||
52 | \docparam{pos}{Dialog position. Not implemented.} | |
53 | ||
54 | \membersection{wxDirDialog::\destruct{wxDirDialog}} | |
55 | ||
56 | \func{}{\destruct{wxDirDialog}}{\void} | |
57 | ||
58 | Destructor. | |
59 | ||
60 | \membersection{wxDirDialog::GetPath}\label{wxdirdialoggetpath} | |
61 | ||
62 | \constfunc{wxString}{GetPath}{\void} | |
63 | ||
64 | Returns the default or user-selected path. | |
65 | ||
66 | \membersection{wxDirDialog::GetMessage}\label{wxdirdialoggetmessage} | |
67 | ||
68 | \constfunc{wxString}{GetMessage}{\void} | |
69 | ||
70 | Returns the message that will be displayed on the dialog. | |
71 | ||
72 | \membersection{wxDirDialog::GetStyle}\label{wxdirdialoggetstyle} | |
73 | ||
74 | \constfunc{long}{GetStyle}{\void} | |
75 | ||
76 | Returns the dialog style. | |
77 | ||
78 | \membersection{wxDirDialog::SetMessage}\label{wxdirdialogsetmessage} | |
79 | ||
80 | \func{void}{SetMessage}{\param{const wxString\& }{message}} | |
81 | ||
82 | Sets the message that will be displayed on the dialog. | |
83 | ||
84 | \membersection{wxDirDialog::SetPath}\label{wxdirdialogsetpath} | |
85 | ||
86 | \func{void}{SetPath}{\param{const wxString\& }{path}} | |
87 | ||
88 | Sets the default path. | |
89 | ||
90 | \membersection{wxDirDialog::SetStyle}\label{wxdirdialogsetstyle} | |
91 | ||
92 | \func{void}{SetStyle}{\param{long }{style}} | |
93 | ||
94 | Sets the dialog style. This is currently unused. | |
95 | ||
96 | \membersection{wxDirDialog::ShowModal}\label{wxdirdialogshowmodal} | |
97 | ||
98 | \func{int}{ShowModal}{\void} | |
99 | ||
100 | Shows the dialog, returning wxID\_OK if the user pressed OK, and wxOK\_CANCEL | |
101 | otherwise. | |
102 | ||
103 |