1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/mac/toplevel.h
3 // Purpose: wxTopLevelWindowMac is the Mac implementation of wxTLW
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 2001 SciTech Software, Inc. (www.scitechsoft.com)
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_MSW_TOPLEVEL_H_
13 #define _WX_MSW_TOPLEVEL_H_
16 #pragma interface "toplevel.h"
19 // ----------------------------------------------------------------------------
20 // wxTopLevelWindowMac
21 // ----------------------------------------------------------------------------
23 class WXDLLEXPORT wxTopLevelWindowMac
: public wxTopLevelWindowBase
26 // constructors and such
27 wxTopLevelWindowMac() { Init(); }
29 wxTopLevelWindowMac(wxWindow
*parent
,
31 const wxString
& title
,
32 const wxPoint
& pos
= wxDefaultPosition
,
33 const wxSize
& size
= wxDefaultSize
,
34 long style
= wxDEFAULT_FRAME_STYLE
,
35 const wxString
& name
= wxFrameNameStr
)
39 (void)Create(parent
, id
, title
, pos
, size
, style
, name
);
42 bool Create(wxWindow
*parent
,
44 const wxString
& title
,
45 const wxPoint
& pos
= wxDefaultPosition
,
46 const wxSize
& size
= wxDefaultSize
,
47 long style
= wxDEFAULT_FRAME_STYLE
,
48 const wxString
& name
= wxFrameNameStr
);
50 virtual ~wxTopLevelWindowMac();
52 // implement base class pure virtuals
53 virtual void Maximize(bool maximize
= TRUE
);
54 virtual bool IsMaximized() const;
55 virtual void Iconize(bool iconize
= TRUE
);
56 virtual bool IsIconized() const;
57 virtual void SetIcon(const wxIcon
& icon
);
58 virtual void SetIcons(const wxIconBundle
& icons
) { SetIcon( icons
.GetIcon( -1 ) ); }
59 virtual void Restore();
61 virtual bool ShowFullScreen(bool show
, long style
= wxFULLSCREEN_ALL
) { return FALSE
; }
62 virtual bool IsFullScreen() const { return FALSE
; }
64 // implementation from now on
65 // --------------------------
67 virtual void MacCreateRealWindow( const wxString
& title
,
71 const wxString
& name
) ;
72 static WXWindow
MacGetWindowInUpdate() { return s_macWindowInUpdate
; }
73 virtual void MacGetPortParams(WXPOINTPTR localOrigin
, WXRECTPTR clipRect
, WXWindow
*window
, wxWindowMac
** rootwin
) ;
74 virtual void Clear() ;
75 virtual WXWidget
MacGetContainerForEmbedding() ;
76 WXWindow
MacGetWindowRef() { return m_macWindow
; }
77 virtual void MacActivate( WXEVENTREF ev
, bool inIsActivating
) ;
78 virtual void MacUpdate( long timestamp
) ;
79 virtual void MacMouseDown( WXEVENTREF ev
, short windowPart
) ;
80 virtual void MacMouseUp( WXEVENTREF ev
, short windowPart
) ;
81 virtual void MacMouseMoved( WXEVENTREF ev
, short windowPart
) ;
82 virtual void MacKeyDown( WXEVENTREF ev
) ;
83 virtual void MacFireMouseEvent( WXEVENTREF ev
) ;
86 virtual void SetTitle( const wxString
& title
);
87 virtual bool Show( bool show
= TRUE
);
88 virtual void DoMoveWindow(int x
, int y
, int width
, int height
);
89 void MacInvalidate( const WXRECTPTR rect
, bool eraseBackground
) ;
91 // common part of all ctors
94 // is the frame currently iconized?
97 // should the frame be maximized when it will be shown? set by Maximize()
98 // when it is called while the frame is hidden
99 bool m_maximizeOnShow
;
101 short m_macWindowBackgroundTheme
;
102 WXWindow m_macWindow
;
103 WXWidget m_macRootControl
;
104 wxWindowMac
* m_macFocus
;
105 WXHRGN m_macNoEraseUpdateRgn
;
106 bool m_macNeedsErasing
;
108 static WXWindow s_macWindowInUpdate
;
111 // list of all frames and modeless dialogs
112 extern WXDLLEXPORT_DATA(wxWindowList
) wxModelessWindows
;
114 // associate mac windows with wx counterparts
116 wxTopLevelWindowMac
* wxFindWinFromMacWindow( WXWindow inWindow
) ;
117 void wxAssociateWinWithMacWindow(WXWindow inWindow
, wxTopLevelWindowMac
*win
) ;
118 void wxRemoveMacWindowAssociation(wxTopLevelWindowMac
*win
) ;
121 #endif // _WX_MSW_TOPLEVEL_H_