X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ca26177c3093ba7b4e66a4ced6e34041a263411d..04e8174b84ae91681417eb06fc54d3660e306606:/include/wx/gtk1/frame.h diff --git a/include/wx/gtk1/frame.h b/include/wx/gtk1/frame.h index 145f5c6392..5595a21347 100644 --- a/include/wx/gtk1/frame.h +++ b/include/wx/gtk1/frame.h @@ -49,7 +49,7 @@ class wxFrame: public wxWindow DECLARE_DYNAMIC_CLASS(wxFrame) public: - wxFrame(); + 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 ); @@ -62,6 +62,7 @@ public: virtual bool Show( bool show ); virtual void Centre( int direction = wxHORIZONTAL ); +#if wxUSE_STATUSBAR virtual wxStatusBar* CreateStatusBar(int number=1, long style = wxST_SIZEGRIP, wxWindowID id = 0, const wxString& name = _T("statusBar")); virtual wxStatusBar *OnCreateStatusBar( int number, long style, wxWindowID id, @@ -70,12 +71,15 @@ public: inline void SetStatusBar(wxStatusBar *statusBar) { m_frameStatusBar = statusBar; } virtual void SetStatusText( const wxString &text, int number = 0 ); virtual void SetStatusWidths( int n, const int widths_field[] ); +#endif // wxUSE_STATUSBAR +#if wxUSE_TOOLBAR virtual wxToolBar* CreateToolBar( long style = wxNO_BORDER|wxTB_HORIZONTAL, wxWindowID id = -1, const wxString& name = wxToolBarNameStr); virtual wxToolBar *OnCreateToolBar( long style, wxWindowID id, const wxString& name ); virtual wxToolBar *GetToolBar() const; - inline void SetToolBar(wxToolBar *toolbar) { m_frameToolBar = toolbar; } + void SetToolBar(wxToolBar *toolbar) { m_frameToolBar = toolbar; } +#endif // wxUSE_TOOLBAR virtual void SetMenuBar( wxMenuBar *menuBar ); virtual wxMenuBar *GetMenuBar() const; @@ -120,6 +124,9 @@ public: bool m_insertInClientArea; /* not from within OnCreateXXX */ protected: + // common part of all ctors + void Init(); + virtual void DoSetSize(int x, int y, int width, int height, int sizeFlags = wxSIZE_AUTO);