]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk/dirdlg.h
added support for 2 extra mouse buttons (patch 1757630)
[wxWidgets.git] / include / wx / gtk / dirdlg.h
index d044dee8731d76ca222b85f0c0074a23553c25d9..35d6085c211fa32334954002cf2353c85aad683a 100644 (file)
@@ -1,6 +1,6 @@
 /////////////////////////////////////////////////////////////////////////////
 // Name:        dirdlg.h
 /////////////////////////////////////////////////////////////////////////////
 // Name:        dirdlg.h
-// Purpose:     wxDirDialogGTK
+// Purpose:     wxDirDialog
 // Author:      Francesco Montorsi
 // Id:          $Id$
 // Copyright:   (c) 2006 Francesco Montorsi
 // Author:      Francesco Montorsi
 // Id:          $Id$
 // Copyright:   (c) 2006 Francesco Montorsi
 #include "wx/generic/dirdlgg.h"
 
 //-------------------------------------------------------------------------
 #include "wx/generic/dirdlgg.h"
 
 //-------------------------------------------------------------------------
-// wxDirDialogGTK
+// wxDirDialog
 //-------------------------------------------------------------------------
 
 //-------------------------------------------------------------------------
 
-class WXDLLIMPEXP_CORE wxDirDialogGTK : public wxGenericDirDialog
+class WXDLLIMPEXP_CORE wxDirDialog : public wxGenericDirDialog
 {
 public:
 {
 public:
-    wxDirDialogGTK() { }
+    wxDirDialog() { }
 
 
-    wxDirDialogGTK(wxWindow *parent,
+    wxDirDialog(wxWindow *parent,
                 const wxString& message = wxDirSelectorPromptStr,
                 const wxString& message = wxDirSelectorPromptStr,
-                const wxString& defaultPath = _T(""),
+                const wxString& defaultPath = wxEmptyString,
                 long style = wxDD_DEFAULT_STYLE,
                 const wxPoint& pos = wxDefaultPosition,
                 const wxSize& size = wxDefaultSize,
                 const wxString& name = wxDirDialogNameStr);
 
                 long style = wxDD_DEFAULT_STYLE,
                 const wxPoint& pos = wxDefaultPosition,
                 const wxSize& size = wxDefaultSize,
                 const wxString& name = wxDirDialogNameStr);
 
-    virtual ~wxDirDialogGTK();
+    virtual ~wxDirDialog() { }
 
 
 public:     // overrides from wxGenericDirDialog
 
 
 public:     // overrides from wxGenericDirDialog
@@ -41,9 +41,6 @@ public:     // overrides from wxGenericDirDialog
     virtual bool Show( bool show = true );
 
 
     virtual bool Show( bool show = true );
 
 
-//private:      must be accessible by GTK callback
-    bool m_destroyed_by_delete;
-
 protected:
     // override this from wxTLW since the native
     // form doesn't have any m_wxwindow
 protected:
     // override this from wxTLW since the native
     // form doesn't have any m_wxwindow
@@ -53,7 +50,7 @@ protected:
 
 
 private:
 
 
 private:
-    DECLARE_DYNAMIC_CLASS(wxDirDialogGTK)
+    DECLARE_DYNAMIC_CLASS(wxDirDialog)
     DECLARE_EVENT_TABLE()
     void OnFakeOk( wxCommandEvent &event );
 };
     DECLARE_EVENT_TABLE()
     void OnFakeOk( wxCommandEvent &event );
 };