X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/0d0b57acec6b28eb5246ef467dfde2432a016e09..9b49405777342458dc1666001865eef7309b6c30:/include/wx/gtk/toplevel.h?ds=sidebyside diff --git a/include/wx/gtk/toplevel.h b/include/wx/gtk/toplevel.h index e059880ab3..a5e356e2db 100644 --- a/include/wx/gtk/toplevel.h +++ b/include/wx/gtk/toplevel.h @@ -79,6 +79,10 @@ public: virtual void RemoveGrab(); virtual bool IsGrabbed() const { return m_grabbed; } + + virtual void Refresh( bool eraseBackground = true, + const wxRect *rect = (const wxRect *) NULL ); + // implementation from now on // -------------------------- @@ -90,8 +94,6 @@ public: GtkWidget *m_mainWidget; - bool m_deferShow; - bool m_fsIsShowing; /* full screen */ int m_fsSaveGdkFunc, m_fsSaveGdkDecor; wxRect m_fsSaveFrame; @@ -138,6 +140,8 @@ protected: // string shown in the title bar wxString m_title; + bool m_deferShow; + private: wxSize& GetCachedDecorSize(); @@ -146,6 +150,9 @@ private: // is the frame currently grabbed explicitly by the application? bool m_grabbed; + + bool m_updateDecorSize; + bool m_deferShowAllowed; }; #endif // _WX_GTK_TOPLEVEL_H_