]>
git.saurik.com Git - wxWidgets.git/blob - interface/dirdlg.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: interface of wxDirDialog
4 // Author: wxWidgets team
6 // Licence: wxWindows license
7 /////////////////////////////////////////////////////////////////////////////
13 This class represents the directory chooser dialog.
16 @style{wxDD_DEFAULT_STYLE}:
17 Equivalent to a combination of wxDEFAULT_DIALOG_STYLE and
18 wxRESIZE_BORDER (the last one is not used under wxWinCE).
19 @style{wxDD_DIR_MUST_EXIST}:
20 The dialog will allow the user to choose only an existing folder.
21 When this style is not given, a "Create new directory" button is
22 added to the dialog (on Windows) or some other way is provided to
23 the user to type the name of a new folder.
24 @style{wxDD_CHANGE_DIR}:
25 Change the current working directory to the directory chosen by the
32 @see @ref overview_wxdirdialogoverview "wxDirDialog overview", wxFileDialog
34 class wxDirDialog
: public wxDialog
38 Constructor. Use ShowModal() to show
44 Message to show on the dialog.
46 The default path, or the empty string.
48 The dialog style. See wxDirDialog
50 Dialog position. Ignored under Windows.
52 Dialog size. Ignored under Windows.
54 The dialog name, not used.
56 wxDirDialog(wxWindow
* parent
,
57 const wxString
& message
= "Choose a directory",
58 const wxString
& defaultPath
= "",
59 long style
= wxDD_DEFAULT_STYLE
,
60 const wxPoint
& pos
= wxDefaultPosition
,
61 const wxSize
& size
= wxDefaultSize
,
62 const wxString
& name
= "wxDirCtrl");
70 Returns the message that will be displayed on the dialog.
72 wxString
GetMessage() const;
75 Returns the default or user-selected path.
77 wxString
GetPath() const;
80 Sets the message that will be displayed on the dialog.
82 void SetMessage(const wxString
& message
);
85 Sets the default path.
87 void SetPath(const wxString
& path
);
90 Shows the dialog, returning wxID_OK if the user pressed OK, and wxID_CANCEL
98 // ============================================================================
99 // Global functions/macros
100 // ============================================================================
103 Pops up a directory selector dialog. The arguments have the same meaning as
104 those of wxDirDialog::wxDirDialog(). The message is displayed at the top,
105 and the default_path, if specified, is set as the initial selection.
106 The application must check for an empty return value (if the user pressed
107 Cancel). For example:
110 const wxString& dir = wxDirSelector("Choose a folder");
117 wxString
wxDirSelector(const wxString
& message
= wxDirSelectorPromptStr
,
118 const wxString
& default_path
= "",
120 const wxPoint
& pos
= wxDefaultPosition
,
121 wxWindow
* parent
= NULL
);