]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/statusbar.h
Rebake from clean wx tree.
[wxWidgets.git] / include / wx / msw / statusbar.h
index 14e65d47af2d13c22287e640f0ccff84775529ad..e942dd56b990582187531825fb1c940cd391cf28 100644 (file)
@@ -79,6 +79,28 @@ protected:
     wxVector<wxToolTip*> m_tooltips;
 
 private:
     wxVector<wxToolTip*> 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)
 };
 
     DECLARE_DYNAMIC_CLASS_NO_COPY(wxStatusBar)
 };