dirdlg.h 894 B

123456789101112131415161718192021222324252627282930313233
  1. /////////////////////////////////////////////////////////////////////////////
  2. // Name: wx/os2/dirdlg.h
  3. // Purpose: wxDirDialog class
  4. // Author: David Webster
  5. // Modified by:
  6. // Created: 10/14/99
  7. // Copyright: (c) David Webster
  8. // Licence: wxWindows licence
  9. /////////////////////////////////////////////////////////////////////////////
  10. #ifndef _WX_DIRDLG_H_
  11. #define _WX_DIRDLG_H_
  12. #include "wx/dialog.h"
  13. WXDLLIMPEXP_DATA_CORE(extern const wxChar) wxFileSelectorPromptStr[];
  14. class WXDLLIMPEXP_CORE wxDirDialog: public wxDirDialogBase
  15. {
  16. DECLARE_DYNAMIC_CLASS(wxDirDialog)
  17. public:
  18. wxDirDialog(wxWindow *parent, const wxString& message = wxFileSelectorPromptStr,
  19. const wxString& defaultPath = "",
  20. long style = 0, const wxPoint& pos = wxDefaultPosition);
  21. int ShowModal();
  22. protected:
  23. wxWindow * m_parent;
  24. };
  25. #endif
  26. // _WX_DIRDLG_H_