X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/76840ed0db0051fc64de37911250bd5ce4d4a350..ef7823016897c0c04c88019e14f48837764e50be:/include/wx/gtk1/filedlg.h diff --git a/include/wx/gtk1/filedlg.h b/include/wx/gtk1/filedlg.h index 31c9992dce..43dc8f418e 100644 --- a/include/wx/gtk1/filedlg.h +++ b/include/wx/gtk1/filedlg.h @@ -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() { } @@ -43,9 +45,21 @@ public: virtual void SetFilename(const wxString& name); virtual void SetWildcard(const wxString& wildCard); virtual void SetFilterIndex(int filterIndex); - void UpdateFromDialog(); -private: + + virtual int ShowModal(); + virtual bool Show( bool show = true ); + + void OnFakeOk( wxCommandEvent &event ); + +//private: + bool m_destroyed_by_delete; + + void UpdateFromDialog(); + void UpdateDialog(); + +private: DECLARE_DYNAMIC_CLASS(wxFileDialog) + DECLARE_EVENT_TABLE() }; #endif // __GTKFILEDLGH__