]>
Commit | Line | Data |
---|---|---|
fe08e597 SC |
1 | /////////////////////////////////////////////////////////////////////////////// |
2 | // Name: wx/mac/toplevel.h | |
5273bf2f | 3 | // Purpose: wxTopLevelWindowMac is the Mac implementation of wxTLW |
fe08e597 SC |
4 | // Author: Vadim Zeitlin |
5 | // Modified by: | |
6 | // Created: 20.09.01 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) 2001 SciTech Software, Inc. (www.scitechsoft.com) | |
9 | // Licence: wxWindows licence | |
10 | /////////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef _WX_MSW_TOPLEVEL_H_ | |
13 | #define _WX_MSW_TOPLEVEL_H_ | |
14 | ||
15 | #ifdef __GNUG__ | |
16 | #pragma interface "toplevel.h" | |
17 | #endif | |
18 | ||
19 | // ---------------------------------------------------------------------------- | |
20 | // wxTopLevelWindowMac | |
21 | // ---------------------------------------------------------------------------- | |
22 | ||
23 | class WXDLLEXPORT wxTopLevelWindowMac : public wxTopLevelWindowBase | |
24 | { | |
25 | public: | |
26 | // constructors and such | |
27 | wxTopLevelWindowMac() { Init(); } | |
28 | ||
29 | wxTopLevelWindowMac(wxWindow *parent, | |
30 | wxWindowID id, | |
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) | |
36 | { | |
37 | Init(); | |
38 | ||
39 | (void)Create(parent, id, title, pos, size, style, name); | |
40 | } | |
41 | ||
42 | bool Create(wxWindow *parent, | |
43 | wxWindowID id, | |
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); | |
49 | ||
50 | virtual ~wxTopLevelWindowMac(); | |
51 | ||
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); | |
f618020a | 58 | virtual void SetIcons(const wxIconBundle& icons) { SetIcon( icons.GetIcon( -1 ) ); } |
fe08e597 SC |
59 | virtual void Restore(); |
60 | ||
d84afea9 GD |
61 | virtual bool ShowFullScreen(bool WXUNUSED(show), long WXUNUSED(style) = wxFULLSCREEN_ALL) |
62 | { return FALSE; } | |
fe08e597 SC |
63 | virtual bool IsFullScreen() const { return FALSE; } |
64 | ||
65 | // implementation from now on | |
66 | // -------------------------- | |
67 | ||
d84afea9 GD |
68 | virtual void MacCreateRealWindow( const wxString& title, |
69 | const wxPoint& pos, | |
70 | const wxSize& size, | |
71 | long style, | |
72 | const wxString& name ) ; | |
73 | static WXWindow MacGetWindowInUpdate() { return s_macWindowInUpdate ; } | |
74 | virtual void MacGetPortParams(WXPOINTPTR localOrigin, WXRECTPTR clipRect, WXWindow *window , wxWindowMac** rootwin ) ; | |
75 | virtual void Clear() ; | |
76 | virtual WXWidget MacGetContainerForEmbedding() ; | |
77 | WXWindow MacGetWindowRef() { return m_macWindow ; } | |
78 | virtual void MacActivate( WXEVENTREF ev , bool inIsActivating ) ; | |
79 | virtual void MacUpdate( long timestamp ) ; | |
80 | virtual void MacMouseDown( WXEVENTREF ev , short windowPart ) ; | |
81 | virtual void MacMouseUp( WXEVENTREF ev , short windowPart ) ; | |
82 | virtual void MacMouseMoved( WXEVENTREF ev , short windowPart ) ; | |
83 | virtual void MacKeyDown( WXEVENTREF ev ) ; | |
84 | virtual void MacFireMouseEvent( WXEVENTREF ev ) ; | |
85 | virtual void Raise(); | |
86 | virtual void Lower(); | |
87 | virtual void SetTitle( const wxString& title); | |
88 | virtual bool Show( bool show = TRUE ); | |
89 | virtual void DoMoveWindow(int x, int y, int width, int height); | |
90 | void MacInvalidate( const WXRECTPTR rect, bool eraseBackground ) ; | |
8a2c82c1 | 91 | short MacGetWindowBackgroundTheme() const { return m_macWindowBackgroundTheme ; } |
fe08e597 SC |
92 | protected: |
93 | // common part of all ctors | |
94 | void Init(); | |
95 | ||
96 | // is the frame currently iconized? | |
97 | bool m_iconized; | |
98 | ||
99 | // should the frame be maximized when it will be shown? set by Maximize() | |
100 | // when it is called while the frame is hidden | |
101 | bool m_maximizeOnShow; | |
6ed63f8b | 102 | |
5273bf2f SC |
103 | short m_macWindowBackgroundTheme ; |
104 | WXWindow m_macWindow ; | |
105 | WXWidget m_macRootControl ; | |
6ed63f8b | 106 | wxWindowMac* m_macFocus ; |
5273bf2f | 107 | WXHRGN m_macNoEraseUpdateRgn ; |
6ed63f8b SC |
108 | bool m_macNeedsErasing ; |
109 | ||
d84afea9 | 110 | static WXWindow s_macWindowInUpdate ; |
fe08e597 SC |
111 | }; |
112 | ||
113 | // list of all frames and modeless dialogs | |
114 | extern WXDLLEXPORT_DATA(wxWindowList) wxModelessWindows; | |
115 | ||
6ed63f8b SC |
116 | // associate mac windows with wx counterparts |
117 | ||
5273bf2f SC |
118 | wxTopLevelWindowMac* wxFindWinFromMacWindow( WXWindow inWindow ) ; |
119 | void wxAssociateWinWithMacWindow(WXWindow inWindow, wxTopLevelWindowMac *win) ; | |
6ed63f8b SC |
120 | void wxRemoveMacWindowAssociation(wxTopLevelWindowMac *win) ; |
121 | ||
122 | ||
fe08e597 SC |
123 | #endif // _WX_MSW_TOPLEVEL_H_ |
124 |