X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/7a4b8f27709c3dd59a5b447850389ca25f178047..07df68c89aeba256e14a6da36fb5661826968824:/include/wx/generic/statline.h diff --git a/include/wx/generic/statline.h b/include/wx/generic/statline.h index d8832381ac..67efb49f6c 100644 --- a/include/wx/generic/statline.h +++ b/include/wx/generic/statline.h @@ -46,6 +46,15 @@ public: long style = wxLI_HORIZONTAL, const wxString &name = wxStaticTextNameStr ); + // it's necessary to override this wxWindow function because we + // will want to return the main widget for m_statbox + // + WXWidget GetMainWidget() const; + + // override wxWindow methods to make things work + virtual void DoSetSize(int x, int y, int width, int height, + int sizeFlags = wxSIZE_AUTO); + virtual void DoMoveWindow(int x, int y, int width, int height); protected: // we implement the static line using a static box wxStaticBox *m_statbox;