X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/77ffb5937e89927b621128789401db8921fe580f..ef7823016897c0c04c88019e14f48837764e50be:/include/wx/gtk1/filedlg.h diff --git a/include/wx/gtk1/filedlg.h b/include/wx/gtk1/filedlg.h index ec80911b6e..43dc8f418e 100644 --- a/include/wx/gtk1/filedlg.h +++ b/include/wx/gtk1/filedlg.h @@ -4,7 +4,7 @@ // Author: Robert Roebling // Id: $Id$ // Copyright: (c) 1998 Robert Roebling -// Licence: wxWidgets licence +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// @@ -12,14 +12,16 @@ #define __GTKFILEDLGH__ #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) -#pragma interface +#pragma interface "filedlggtk.h" #endif +#include "wx/generic/filedlgg.h" + //------------------------------------------------------------------------- // wxFileDialog //------------------------------------------------------------------------- -class wxFileDialog: public wxFileDialogBase +class wxFileDialog: public wxGenericFileDialog { public: wxFileDialog() { } @@ -31,11 +33,33 @@ public: const wxString& wildCard = wxFileSelectorDefaultWildcardStr, long style = 0, const wxPoint& pos = wxDefaultPosition); + + ~wxFileDialog(); + + virtual void GetPaths(wxArrayString& paths) const; + virtual void GetFilenames(wxArrayString& files) const; + virtual void SetMessage(const wxString& message); virtual void SetPath(const wxString& path); + virtual void SetDirectory(const wxString& dir); + virtual void SetFilename(const wxString& name); + virtual void SetWildcard(const wxString& wildCard); + virtual void SetFilterIndex(int filterIndex); + + virtual int ShowModal(); + virtual bool Show( bool show = true ); + + void OnFakeOk( wxCommandEvent &event ); + +//private: + bool m_destroyed_by_delete; -private: + void UpdateFromDialog(); + void UpdateDialog(); + +private: DECLARE_DYNAMIC_CLASS(wxFileDialog) + DECLARE_EVENT_TABLE() }; #endif // __GTKFILEDLGH__