X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/5b87bd6c0b694fa7634e7a16ed030033ff8e8bdd..661698e54f2bc599dc1a961ffbae08ccdd6b9b97:/include/wx/generic/panelg.h diff --git a/include/wx/generic/panelg.h b/include/wx/generic/panelg.h index 3c815485f2..6bd2ad6073 100644 --- a/include/wx/generic/panelg.h +++ b/include/wx/generic/panelg.h @@ -12,31 +12,35 @@ #ifndef _WX_GENERIC_PANELG_H_ #define _WX_GENERIC_PANELG_H_ +#include "wx/bitmap.h" + class WXDLLIMPEXP_CORE wxPanel : public wxPanelBase { public: wxPanel() { } - // Old-style constructor (no default values for coordinates to avoid - // ambiguity with the new one) + // Constructor wxPanel(wxWindow *parent, - int x, int y, int width, int height, + wxWindowID winid = wxID_ANY, + const wxPoint& pos = wxDefaultPosition, + const wxSize& size = wxDefaultSize, long style = wxTAB_TRAVERSAL | wxNO_BORDER, const wxString& name = wxPanelNameStr) { - Create(parent, wxID_ANY, wxPoint(x, y), wxSize(width, height), style, name); + Create(parent, winid, pos, size, style, name); } - // Constructor +#if WXWIN_COMPATIBILITY_2_8 + wxDEPRECATED_CONSTRUCTOR( wxPanel(wxWindow *parent, - wxWindowID winid = wxID_ANY, - const wxPoint& pos = wxDefaultPosition, - const wxSize& size = wxDefaultSize, + int x, int y, int width, int height, long style = wxTAB_TRAVERSAL | wxNO_BORDER, const wxString& name = wxPanelNameStr) { - Create(parent, winid, pos, size, style, name); + Create(parent, wxID_ANY, wxPoint(x, y), wxSize(width, height), style, name); } + ) +#endif // WXWIN_COMPATIBILITY_2_8 private: wxDECLARE_DYNAMIC_CLASS_NO_COPY(wxPanel);