show dir selection dialog both with and without new dir button

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@19054 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2003-02-01 22:51:07 +00:00
parent 922c7dcb6f
commit f09c8393cb
2 changed files with 23 additions and 3 deletions

View File

@@ -71,6 +71,7 @@ public:
void FilesOpen(wxCommandEvent& event);
void FileSave(wxCommandEvent& event);
void DirChoose(wxCommandEvent& event);
void DirChooseNew(wxCommandEvent& event);
void GenericDirChoose(wxCommandEvent& event);
void ShowTip(wxCommandEvent& event);
void ModalDlg(wxCommandEvent& event);
@@ -96,6 +97,8 @@ public:
void OnExit(wxCommandEvent& event);
private:
void DoDirChoose(int style);
MyModelessDialog *m_dialog;
#if wxUSE_FINDREPLDLG
@@ -137,6 +140,7 @@ enum
DIALOGS_FILES_OPEN,
DIALOGS_FILE_SAVE,
DIALOGS_DIR_CHOOSE,
DIALOGS_DIRNEW_CHOOSE,
DIALOGS_GENERIC_DIR_CHOOSE,
DIALOGS_TIP,
DIALOGS_NUM_ENTRY,