X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/013151c7443afaf751ba2aa76e867bcbfa492508..9d5507f7a2701395e1d5c121bd877bb9066ee6ea:/include/wx/gtk/toplevel.h?ds=inline diff --git a/include/wx/gtk/toplevel.h b/include/wx/gtk/toplevel.h index f6f1b7c540..dcf60a8c7e 100644 --- a/include/wx/gtk/toplevel.h +++ b/include/wx/gtk/toplevel.h @@ -94,6 +94,8 @@ public: GtkWidget *m_mainWidget; + bool m_deferShow; + bool m_fsIsShowing; /* full screen */ int m_fsSaveGdkFunc, m_fsSaveGdkDecor; wxRect m_fsSaveFrame; @@ -102,23 +104,22 @@ public: int m_gdkFunc, m_gdkDecor; + // size of WM decorations + wxSize m_decorSize; + // private gtk_timeout_add result for mimicing wxUSER_ATTENTION_INFO and // wxUSER_ATTENTION_ERROR difference, -2 for no hint, -1 for ERROR hint, rest for GtkTimeout handle. int m_urgency_hint; - // give hints to the Window Manager for how the size - // of the TLW can be changed by dragging - virtual void DoSetSizeHints( int minW, int minH, - int maxW = wxDefaultCoord, int maxH = wxDefaultCoord, - int incW = wxDefaultCoord, int incH = wxDefaultCoord ); - // return the size of the window without WM decorations void GTKDoGetSize(int *width, int *height) const; - // whether frame extents are accurate - virtual bool IsDecorCacheable() const; - protected: + // give hints to the Window Manager for how the size + // of the TLW can be changed by dragging + virtual void DoSetSizeHints( int minW, int minH, + int maxW, int maxH, + int incW, int incH); // common part of all ctors void Init();