// Name: wx/gtk/filedlg.h
// Purpose:
// Author: Robert Roebling
-// Id: $Id$
// Copyright: (c) 1998 Robert Roebling
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
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;
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
private:
+ void OnFakeOk( wxCommandEvent &event );
void OnSize(wxSizeEvent&);
virtual void AddChildGTK(wxWindowGTK* child);
- wxString m_selectedDirectory;
wxGtkFileChooser m_fc;
DECLARE_DYNAMIC_CLASS(wxFileDialog)