virtual bool IsMaximized() const;
virtual void Iconize(bool iconize = true);
virtual bool IsIconized() const;
-#ifndef __WXUNIVERSAL__
- virtual void SetIcons(const wxIconBundle& icons);
-#endif
virtual void Restore();
virtual bool SetShape(const wxRegion& region);
virtual void Lower();
virtual bool Show( bool show = true );
+ virtual bool ShowWithEffect(wxShowEffect effect,
+ unsigned timeout = 0,
+ wxDirection dir = wxBOTTOM);
+
+ virtual bool HideWithEffect(wxShowEffect effect,
+ unsigned timeout = 0,
+ wxDirection dir = wxBOTTOM);
+
virtual void SetExtraStyle(long exStyle) ;
- virtual void MacSetBackgroundBrush( const wxBrush &brush ) ;
-
+ virtual bool SetBackgroundColour( const wxColour &colour );
+
virtual void MacInstallTopLevelWindowEventHandler() ;
bool MacGetMetalAppearance() const ;
// should the frame be maximized when it will be shown? set by Maximize()
// when it is called while the frame is hidden
bool m_maximizeOnShow;
-
+
WXWindow m_macWindow ;
wxWindowMac* m_macFocus ;
};
// list of all frames and modeless dialogs
-extern WXDLLEXPORT_DATA(wxWindowList) wxModelessWindows;
+extern WXDLLEXPORT_DATA(wxWindowList) wxModelessWindows;
#endif // _WX_MSW_TOPLEVEL_H_