]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk1/gauge.cpp
SetLabel() no longer invalidates the font which
[wxWidgets.git] / src / gtk1 / gauge.cpp
index b6cd78c4c5a4c1905bc56b3a5e8eef5647d59999..985c42bcc3dcd148f6cb3ca79fd30fcf38773eea 100644 (file)
@@ -72,10 +72,13 @@ void wxGauge::DoSetGauge()
 
 wxSize wxGauge::DoGetBestSize() const
 {
-    if (HasFlag(wxGA_HORIZONTAL))
-        return wxSize(100, 28);
+    wxSize best;
+    if (HasFlag(wxGA_VERTICAL))
+        best = wxSize(28, 100);
     else
-        return wxSize(28, 100);
+        best = wxSize(100, 28);
+    CacheBestSize(best);
+    return best;
 }
 
 void wxGauge::SetRange( int range )
@@ -106,12 +109,6 @@ int wxGauge::GetValue() const
     return m_gaugePos;
 }
 
-void wxGauge::ApplyWidgetStyle()
-{
-    SetWidgetStyle();
-    gtk_widget_set_style( m_widget, m_widgetStyle );
-}
-
 wxVisualAttributes wxGauge::GetDefaultAttributes() const
 {
     // Visible gauge colours use a different colour state