X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/681bf55c1c269d4abeca97ea4a1777718aa7fa63..9869c26285dc51d13607cddaa04f65ce983653a5:/include/wx/osx/filedlg.h diff --git a/include/wx/osx/filedlg.h b/include/wx/osx/filedlg.h index 2d7e1648f4..10342fa8a8 100644 --- a/include/wx/osx/filedlg.h +++ b/include/wx/osx/filedlg.h @@ -4,7 +4,6 @@ // Author: Stefan Csomor // Modified by: // Created: 1998-01-01 -// RCS-ID: $Id$ // Copyright: (c) Stefan Csomor // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// @@ -31,7 +30,23 @@ protected: wxArrayString m_paths; public: + wxFileDialog() { Init(); } wxFileDialog(wxWindow *parent, + const wxString& message = wxFileSelectorPromptStr, + const wxString& defaultDir = wxEmptyString, + const wxString& defaultFile = wxEmptyString, + const wxString& wildCard = wxFileSelectorDefaultWildcardStr, + long style = wxFD_DEFAULT_STYLE, + const wxPoint& pos = wxDefaultPosition, + const wxSize& sz = wxDefaultSize, + const wxString& name = wxFileDialogNameStr) + { + Init(); + + Create(parent,message,defaultDir,defaultFile,wildCard,style,pos,sz,name); + } + + void Create(wxWindow *parent, const wxString& message = wxFileSelectorPromptStr, const wxString& defaultDir = wxEmptyString, const wxString& defaultFile = wxEmptyString, @@ -87,6 +102,10 @@ protected: WX_NSObject m_delegate; WX_NSObject m_sheetDelegate; #endif + +private: + // Common part of all ctors. + void Init(); }; #endif // _WX_FILEDLG_H_