X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/6cf68971005ab7a0ccee82ffffa2924eeb62f689..da8b1d4b3b535aba94d04494f5b6e2b3e47901ee:/include/wx/msw/statusbar.h?ds=sidebyside diff --git a/include/wx/msw/statusbar.h b/include/wx/msw/statusbar.h index 14e65d47af..e942dd56b9 100644 --- a/include/wx/msw/statusbar.h +++ b/include/wx/msw/statusbar.h @@ -79,6 +79,28 @@ protected: wxVector m_tooltips; private: + struct MSWBorders + { + int horz, + vert, + between; + }; + + // retrieve all status bar borders using SB_GETBORDERS + MSWBorders MSWGetBorders() const; + + // return the size of the border between the fields + int MSWGetBorderWidth() const; + + struct MSWMetrics + { + int gripWidth, + textMargin; + }; + + // return the various status bar metrics + static const MSWMetrics& MSWGetMetrics(); + DECLARE_DYNAMIC_CLASS_NO_COPY(wxStatusBar) };