]> git.saurik.com Git - wxWidgets.git/commitdiff
use smaller statusbar margins in mono theme
authorVáclav Slavík <vslavik@fastmail.fm>
Fri, 29 Sep 2006 11:47:02 +0000 (11:47 +0000)
committerVáclav Slavík <vslavik@fastmail.fm>
Fri, 29 Sep 2006 11:47:02 +0000 (11:47 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41504 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/univ/themes/mono.cpp

index ccb665577ce9faafca6f3f199d34e6ebf3ee971e..1769ce0b26ec035ab70628ae65930ab76300732b 100644 (file)
@@ -205,6 +205,12 @@ public:
                                                 const wxMenu& menu) const;
 #endif // wxUSE_MENUS
 
+#if wxUSE_STATUSBAR
+    virtual wxCoord GetStatusBarBorderBetweenFields() const;
+
+    virtual wxSize GetStatusBarFieldMargins() const;
+#endif // wxUSE_STATUSBAR
+
 protected:
     // override base class border drawing routines: we always draw just a
     // single simple border
@@ -1029,6 +1035,24 @@ void wxMonoRenderer::DrawScrollbarShaft(wxDC& dc,
     DrawSolidRect(dc, wxMONO_BG_COL, rect);
 }
 
+// ----------------------------------------------------------------------------
+// status bar
+// ----------------------------------------------------------------------------
+
+#if wxUSE_STATUSBAR
+
+wxCoord wxMonoRenderer::GetStatusBarBorderBetweenFields() const
+{
+    return 1;
+}
+
+wxSize wxMonoRenderer::GetStatusBarFieldMargins() const
+{
+    return wxSize(1, 1);
+}
+
+#endif // wxUSE_STATUSBAR
+
 // ----------------------------------------------------------------------------
 // top level windows
 // ----------------------------------------------------------------------------