]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/mac/carbon/toplevel.h
wxStaticBitmap should have transparent background (fixes grey backgrounds
[wxWidgets.git] / include / wx / mac / carbon / toplevel.h
index 1eadf131e36bfa5f58694a06e4cac15b2389c8c1..0abf5b1c0e347a1b7473c82caacd9af684a97102 100644 (file)
@@ -55,6 +55,10 @@ public:
 
     virtual wxPoint GetClientAreaOrigin() const;
 
+    // Attracts the users attention to this window if the application is
+    // inactive (should be called when a background event occurs)
+    virtual void RequestUserAttention(int flags = wxUSER_ATTENTION_INFO);
+
     // implement base class pure virtuals
     virtual void Maximize(bool maximize = TRUE);
     virtual bool IsMaximized() const;
@@ -66,9 +70,8 @@ public:
 
     virtual bool SetShape(const wxRegion& region);
 
-    virtual bool ShowFullScreen(bool WXUNUSED(show), long WXUNUSED(style) = wxFULLSCREEN_ALL)
-    { return FALSE; }
-    virtual bool IsFullScreen() const { return FALSE; }
+    virtual bool ShowFullScreen(bool show, long style = wxFULLSCREEN_ALL) ;
+    virtual bool IsFullScreen() const ;
 
     // implementation from now on
     // --------------------------
@@ -83,6 +86,7 @@ public:
 
     WXWindow MacGetWindowRef() { return m_macWindow ; }
     virtual void MacActivate( long timestamp , bool inIsActivating ) ;
+    virtual void MacPerformUpdates() ;
 
     virtual void Raise();
     virtual void Lower();
@@ -102,6 +106,8 @@ public:
 
     WXEVENTHANDLERREF    MacGetEventHandler() { return m_macEventHandler ; }
 
+    virtual void        MacGetContentAreaInset( int &left , int &top , int &right , int &bottom ) ;
+
 protected:
     // common part of all ctors
     void Init();
@@ -122,6 +128,7 @@ protected:
     WXWindow m_macWindow ;
 
     wxWindowMac* m_macFocus ;
+    void *m_macFullScreenData ;
 
     static wxTopLevelWindowMac *s_macDeactivateWindow;
 private :