X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/1e6feb95a79834836e88143b15d9f424ebe79621..bf7d7ee7062f7f6028df40e43745235658e38b4d:/include/wx/frame.h?ds=inline diff --git a/include/wx/frame.h b/include/wx/frame.h index 039d1f258e..4d68e89032 100644 --- a/include/wx/frame.h +++ b/include/wx/frame.h @@ -239,27 +239,107 @@ protected: // include the real class declaration #if defined(__WXMSW__) + #include "wx/msw/frame.h" #ifndef __WXUNIVERSAL__ - #define wxFrameMSW wxFrame - #define sm_classwxFrameMSW sm_classwxFrame + + class WXDLLEXPORT wxFrame : public wxFrameMSW + { + public: + // construction + wxFrame() { Init(); } + wxFrame(wxWindow *parent, + wxWindowID id, + const wxString& title, + const wxPoint& pos = wxDefaultPosition, + const wxSize& size = wxDefaultSize, + long style = wxDEFAULT_FRAME_STYLE, + const wxString& name = wxFrameNameStr) + { + Init(); + Create(parent, id, title, pos, size, style, name); + } + DECLARE_DYNAMIC_CLASS(wxFrame) + }; + #endif - #include "wx/msw/frame.h" #elif defined(__WXMOTIF__) #include "wx/motif/frame.h" #elif defined(__WXGTK__) + #include "wx/gtk/frame.h" #ifndef __WXUNIVERSAL__ - #define wxFrameGTK wxFrame - #define sm_classwxFrameGTK sm_classwxFrame + + class WXDLLEXPORT wxFrame : public wxFrameGTK + { + public: + // construction + wxFrame() { Init(); } + wxFrame(wxWindow *parent, + wxWindowID id, + const wxString& title, + const wxPoint& pos = wxDefaultPosition, + const wxSize& size = wxDefaultSize, + long style = wxDEFAULT_FRAME_STYLE, + const wxString& name = wxFrameNameStr) + { + Init(); + Create(parent, id, title, pos, size, style, name); + } + DECLARE_DYNAMIC_CLASS(wxFrame) + }; + #endif - #include "wx/gtk/frame.h" #elif defined(__WXMGL__) #include "wx/mgl/frame.h" #elif defined(__WXQT__) #include "wx/qt/frame.h" #elif defined(__WXMAC__) #include "wx/mac/frame.h" + #ifndef __WXUNIVERSAL__ + + class WXDLLEXPORT wxFrame : public wxFrameMac + { + public: + // construction + wxFrame() { Init(); } + wxFrame(wxWindow *parent, + wxWindowID id, + const wxString& title, + const wxPoint& pos = wxDefaultPosition, + const wxSize& size = wxDefaultSize, + long style = wxDEFAULT_FRAME_STYLE, + const wxString& name = wxFrameNameStr) + { + Init(); + Create(parent, id, title, pos, size, style, name); + } + DECLARE_DYNAMIC_CLASS(wxFrame) + }; + + #endif #elif defined(__WXPM__) #include "wx/os2/frame.h" + #ifndef __WXUNIVERSAL__ + + class WXDLLEXPORT wxFrame : public wxFrameOS2 + { + public: + // construction + wxFrame() { Init(); } + wxFrame(wxWindow *parent, + wxWindowID id, + const wxString& title, + const wxPoint& pos = wxDefaultPosition, + const wxSize& size = wxDefaultSize, + long style = wxDEFAULT_FRAME_STYLE, + const wxString& name = wxFrameNameStr) + { + Init(); + Create(parent, id, title, pos, size, style, name); + } + DECLARE_DYNAMIC_CLASS(wxFrame) + }; + #endif + #elif defined(__WXSTUBS__) #include "wx/stubs/frame.h" #endif