]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/window.h
Added Python methods to wxStyledTextCtrl that allow to get/set text in
[wxWidgets.git] / include / wx / window.h
index 13b623567521fc9292d3e76f1e587ef7f218bbf1..19c6a01a25196a5972ad227bbb7459fa456112e6 100644 (file)
@@ -411,9 +411,6 @@ public:
     void SetVirtualSize( const wxSize &size ) { DoSetVirtualSize( size.x, size.y ); }
     void SetVirtualSize( int x, int y ) { DoSetVirtualSize( x, y ); }
 
-        // this is necessary to forget about previously set virtual size
-    void UnsetVirtualSize() { m_virtualSize = wxDefaultSize; }
-
     wxSize GetVirtualSize() const { return DoGetVirtualSize(); }
     void GetVirtualSize( int *x, int *y ) const
     {
@@ -485,14 +482,6 @@ public:
     virtual void SetThemeEnabled(bool enableTheme) { m_themeEnabled = enableTheme; }
     virtual bool GetThemeEnabled() const { return m_themeEnabled; }
 
-        // Returns true if this class should have the background colour
-        // changed to match the parent window's theme.  For example when a
-        // page is added to a notebook it and its children may need to have
-        // the colours adjusted depending on the current theme settings, but
-        // not all windows/controls can do this without looking wrong.
-    virtual void ApplyParentThemeBackground(const wxColour& WXUNUSED(bg))
-        { /* do nothing */ }
-
 
     // focus and keyboard handling
     // ---------------------------
@@ -771,13 +760,6 @@ public:
         return m_hasBgCol;
     }
 
-    // if the window shouldn't inherit its colour from the parent, override
-    // this function to return true
-    //
-    // this is currently only used by wxMSW and wxUniv but should be useful for
-    // the other ports too
-    virtual bool ProvidesBackground() const { return false; }
-
     virtual bool SetForegroundColour(const wxColour& colour);
     void SetOwnForegroundColour(const wxColour& colour)
     {