X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ff3e84ffdc91ee8a52b3ab646e48d44d62de80e1..ca77701441e39245dcbfce903049e76f166979e5:/include/wx/gtk/dirdlg.h diff --git a/include/wx/gtk/dirdlg.h b/include/wx/gtk/dirdlg.h index 35d6085c21..68dc907d06 100644 --- a/include/wx/gtk/dirdlg.h +++ b/include/wx/gtk/dirdlg.h @@ -1,5 +1,5 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: dirdlg.h +// Name: wx/gtk/dirdlg.h // Purpose: wxDirDialog // Author: Francesco Montorsi // Id: $Id$ @@ -10,13 +10,11 @@ #ifndef __GTKDIRDLGH__ #define __GTKDIRDLGH__ -#include "wx/generic/dirdlgg.h" - //------------------------------------------------------------------------- // wxDirDialog //------------------------------------------------------------------------- -class WXDLLIMPEXP_CORE wxDirDialog : public wxGenericDirDialog +class WXDLLIMPEXP_CORE wxDirDialog : public wxDirDialogBase { public: wxDirDialog() { } @@ -28,7 +26,13 @@ public: const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, const wxString& name = wxDirDialogNameStr); - + bool Create(wxWindow *parent, + const wxString& message = wxDirSelectorPromptStr, + const wxString& defaultPath = wxEmptyString, + long style = wxDD_DEFAULT_STYLE, + const wxPoint& pos = wxDefaultPosition, + const wxSize& size = wxDefaultSize, + const wxString& name = wxDirDialogNameStr); virtual ~wxDirDialog() { } @@ -37,9 +41,11 @@ public: // overrides from wxGenericDirDialog wxString GetPath() const; void SetPath(const wxString& path); - virtual int ShowModal(); - virtual bool Show( bool show = true ); + // Implementation only. + + void GTKOnAccept(); + void GTKOnCancel(); protected: // override this from wxTLW since the native @@ -50,9 +56,9 @@ protected: private: + wxString m_selectedDirectory; + DECLARE_DYNAMIC_CLASS(wxDirDialog) - DECLARE_EVENT_TABLE() - void OnFakeOk( wxCommandEvent &event ); }; #endif // __GTKDIRDLGH__