X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f417f1d53fd062ca83f6111f73dd6ac6a453afb2..f3fb0a0719e73206384a75f01bf5f50a7188078a:/include/wx/univ/frame.h diff --git a/include/wx/univ/frame.h b/include/wx/univ/frame.h index 6e9b24f1d5..4f13277f1e 100644 --- a/include/wx/univ/frame.h +++ b/include/wx/univ/frame.h @@ -53,12 +53,22 @@ public: const wxString& name = wxStatusLineNameStr); #endif // wxUSE_STATUSBAR +#if wxUSE_TOOLBAR + // create main toolbar bycalling OnCreateToolBar() + virtual wxToolBar* CreateToolBar(long style = wxNO_BORDER|wxTB_HORIZONTAL, + wxWindowID id = -1, + const wxString& name = wxToolBarNameStr); + virtual void PositionToolBar(); +#endif // wxUSE_TOOLBAR -protected: - void OnSize(wxSizeEvent& event); + virtual int GetMinWidth() const; + virtual int GetMinHeight() const; // sends wxSizeEvent to itself (used after attaching xxxBar) - void SendSizeEvent(); + virtual void SendSizeEvent(); + +protected: + void OnSize(wxSizeEvent& event); virtual void DoGetClientSize(int *width, int *height) const; virtual void DoSetClientSize(int width, int height);