]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/window.h
use gettimeofday() instead of clock_gettime() as the latter lives in librt which...
[wxWidgets.git] / include / wx / window.h
index 30f4f2f57c0a5e510aadc825ab2ccdd276008fbf..04b76e9670a583402b23922a02a4421a6106e96e 100644 (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);