]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk/filedlg.h
No real changes, just make wxWindow::CanScroll() virtual.
[wxWidgets.git] / include / wx / gtk / filedlg.h
index 7cbbe54e43153ea4944e9e7230bd9ab84651ea92..377734db79f5d1cbd18d811155ebd4bf5fec06b2 100644 (file)
@@ -2,7 +2,6 @@
 // Name:        wx/gtk/filedlg.h
 // Purpose:
 // Author:      Robert Roebling
-// Id:          $Id$
 // Copyright:   (c) 1998 Robert Roebling
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
@@ -43,7 +42,6 @@ public:
 
     virtual wxString GetPath() const;
     virtual void GetPaths(wxArrayString& paths) const;
-    virtual wxString GetDirectory() const;
     virtual wxString GetFilename() const;
     virtual void GetFilenames(wxArrayString& files) const;
     virtual int GetFilterIndex() const;
@@ -60,8 +58,8 @@ public:
     virtual bool SupportsExtraControl() const { return true; }
 
     // Implementation only.
-    void GTKOnAccept();
-    void GTKOnCancel();
+    void GTKSelectionChanged(const wxString& filename);
+
 
 protected:
     // override this from wxTLW since the native
@@ -72,10 +70,10 @@ protected:
 
 
 private:
+    void OnFakeOk( wxCommandEvent &event );
     void OnSize(wxSizeEvent&);
     virtual void AddChildGTK(wxWindowGTK* child);
 
-    wxString m_selectedDirectory;
     wxGtkFileChooser    m_fc;
 
     DECLARE_DYNAMIC_CLASS(wxFileDialog)