X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/7d9f12f3b9f997b6308faf336d5381be591b71f4..b5b49e42939fd7ef098241733648b534f71b526c:/include/wx/gtk1/toplevel.h diff --git a/include/wx/gtk1/toplevel.h b/include/wx/gtk1/toplevel.h index f6cf403754..a3b842add3 100644 --- a/include/wx/gtk1/toplevel.h +++ b/include/wx/gtk1/toplevel.h @@ -54,6 +54,7 @@ public: virtual void Iconize(bool iconize = TRUE); virtual bool IsIconized() const; virtual void SetIcon(const wxIcon& icon); + virtual void SetIcons(const wxIconBundle& icons); virtual void Restore(); virtual bool ShowFullScreen(bool show, long style = wxFULLSCREEN_ALL); @@ -71,6 +72,9 @@ public: // from both DoSetSize() and DoSetClientSize() virtual void DoMoveWindow(int x, int y, int width, int height); + // set the icon for this window + void DoSetIcon( const wxIcon& icon ); + // GTK callbacks virtual void GtkOnSize( int x, int y, int width, int height ); virtual void OnInternalIdle(); @@ -85,9 +89,11 @@ public: bool m_insertInClientArea; /* not from within OnCreateXXX */ bool m_fsIsShowing; /* full screen */ - long m_fsSaveStyle; + long m_fsSaveGdkFunc, m_fsSaveGdkDecor; long m_fsSaveFlag; wxRect m_fsSaveFrame; + + long m_gdkFunc, m_gdkDecor; // m_windowStyle translated to GDK's terms protected: // common part of all ctors