wxDFB: fix rendering artefacts when scrolling wxScrolledWindow that contains other widgets

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@44290 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík
2007-01-22 15:10:26 +00:00
parent 42b0d8b96d
commit c04c7a3d0a
6 changed files with 70 additions and 11 deletions

View File

@@ -1136,6 +1136,10 @@ public:
// behaviour in the most common case
virtual bool ShouldInheritColours() const { return false; }
// returns true if the window can be positioned outside of parent's client
// area (normal windows can't, but e.g. menubar or statusbar can):
virtual bool CanBeOutsideClientArea() const { return false; }
protected:
// event handling specific to wxWindow
virtual bool TryValidator(wxEvent& event);