X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/a552d1201fd615730d7c0662a65df306fe18c274..10d302224e3555520f3e3c29d4dc7b7a9654b295:/include/wx/gtk/filedlg.h diff --git a/include/wx/gtk/filedlg.h b/include/wx/gtk/filedlg.h index bd6527f0b2..d54f2bdd19 100644 --- a/include/wx/gtk/filedlg.h +++ b/include/wx/gtk/filedlg.h @@ -10,13 +10,13 @@ #ifndef __GTKFILEDLGH__ #define __GTKFILEDLGH__ -#include "wx/generic/filedlgg.h" +#include "wx/gtk/filectrl.h" // for wxGtkFileChooser //------------------------------------------------------------------------- // wxFileDialog //------------------------------------------------------------------------- -class WXDLLIMPEXP_CORE wxFileDialog: public wxGenericFileDialog +class WXDLLIMPEXP_CORE wxFileDialog: public wxFileDialogBase { public: wxFileDialog() { } @@ -26,8 +26,10 @@ public: const wxString& defaultDir = wxEmptyString, const wxString& defaultFile = wxEmptyString, const wxString& wildCard = wxFileSelectorDefaultWildcardStr, - long style = 0, - const wxPoint& pos = wxDefaultPosition); + long style = wxFD_DEFAULT_STYLE, + const wxPoint& pos = wxDefaultPosition, + const wxSize& sz = wxDefaultSize, + const wxString& name = wxFileDialogNameStr); virtual ~wxFileDialog() {} @@ -62,6 +64,8 @@ private: DECLARE_DYNAMIC_CLASS(wxFileDialog) DECLARE_EVENT_TABLE() void OnFakeOk( wxCommandEvent &event ); + + wxGtkFileChooser m_fc; }; #endif // __GTKFILEDLGH__