]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk1/toplevel.h
forcefully disable wxUSE_STACKWALKER
[wxWidgets.git] / include / wx / gtk1 / toplevel.h
index 21c5532c7635b17c9831400232f3f0cab893a19c..45bfd1677172a252733f91eccbbcb901cc69fbbc 100644 (file)
@@ -11,7 +11,7 @@
 #ifndef __GTKTOPLEVELH__
 #define __GTKTOPLEVELH__
 
-#if defined(__GNUG__) && !defined(__APPLE__)
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
     #pragma interface "toplevel.h"
 #endif
 
@@ -60,8 +60,18 @@ public:
     virtual bool ShowFullScreen(bool show, long style = wxFULLSCREEN_ALL);
     virtual bool IsFullScreen() const { return m_fsIsShowing; };
 
+    virtual bool SetShape(const wxRegion& region);
+
+#if wxABI_VERSION >= 20602
+    virtual void RequestUserAttention(int flags = wxUSER_ATTENTION_INFO);
+#endif
+
     virtual bool Show(bool show = TRUE);
 
+    virtual void Raise();
+
+    virtual bool IsActive();
+
     virtual void SetTitle( const wxString &title );
     virtual wxString GetTitle() const { return m_title; }
 
@@ -78,9 +88,6 @@ 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();