]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/window.h
fixed missing ; after class declaration
[wxWidgets.git] / include / wx / window.h
index 30f4f2f57c0a5e510aadc825ab2ccdd276008fbf..733f3d02da64c8de7f062dd91507e7d9695884a3 100644 (file)
@@ -856,6 +856,13 @@ public:
                                const wxFont *theFont = (const wxFont *) NULL)
                                const = 0;
 
+    wxSize GetTextExtent(const wxString& string) const
+    {
+        wxCoord w, h;
+        GetTextExtent(string, &w, &h);
+        return wxSize(w, h);
+    }
+
     // client <-> screen coords
     // ------------------------
 
@@ -1136,6 +1143,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);