]> git.saurik.com Git - wxWidgets.git/commitdiff
In MSWUniv wxWindow and wxWindowMSW are different classes so we can't access some...
authorWłodzimierz Skiba <abx@abx.art.pl>
Wed, 2 Mar 2005 10:57:08 +0000 (10:57 +0000)
committerWłodzimierz Skiba <abx@abx.art.pl>
Wed, 2 Mar 2005 10:57:08 +0000 (10:57 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32558 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/univ/window.h
include/wx/window.h
src/msw/window.cpp

index 13a54c942142f6feef6a44ac83751de5f9fa9c0c..d13c7657a65c17ed0b18362afb20f103dcbe346c 100644 (file)
@@ -150,7 +150,6 @@ public:
 
     // return true if we should use the colours/fonts returned by the
     // corresponding GetXXX() methods instead of the default ones
-    bool UseBgCol() const { return m_hasBgCol; }
     bool UseFgCol() const { return m_hasFgCol; }
     bool UseFont() const { return m_hasFont; }
 
index 508875a48831b69208c193be15eaac67d68e9f11..06b9ad44d464664cad1b5a0223ea99acc2d4ab28 100644 (file)
@@ -424,11 +424,11 @@ public:
 
         // Override these methods for windows that have a virtual size
         // independent of their client size.  eg. the virtual area of a
-        // wxScrolledWindow. 
+        // wxScrolledWindow.
 
     virtual void DoSetVirtualSize( int x, int y );
     virtual wxSize DoGetVirtualSize() const;
-    
+
         // Return the largest of ClientSize and BestSize (as determined
         // by a sizer, interior children, or other means)
 
@@ -759,6 +759,14 @@ public:
             m_inheritBgCol = false;
     }
     wxColour GetBackgroundColour() const;
+    bool InheritsBackgroundColour() const
+    {
+        return m_inheritBgCol;
+    }
+    bool UseBgCol() const
+    {
+        return m_hasBgCol;
+    }
 
     // if the window shouldn't inherit its colour from the parent, override
     // this function to return true
index 9dc2e5922d2e290fde381e094aa275647e8a45c6..605d60812d996aee380968cc98fd46ec43f5ebd8 100644 (file)
@@ -4041,7 +4041,7 @@ WXHBRUSH wxWindowMSW::MSWGetBgBrush(WXHDC hDC)
         // windows for which a custom colour had been explicitly set with
         // SetOwnBackgroundColour() and so shouldn't affect its children
         if ( win->ProvidesBackground() ||
-                (win->m_hasBgCol && !win->m_inheritBgCol) )
+                (win->UseBgCol() && !win->InheritsBackgroundColour()) )
             break;
     }