]>
Commit | Line | Data |
---|---|---|
1 | /////////////////////////////////////////////////////////////////////////////// | |
2 | // Name: wx/mac/carbon/toplevel.h | |
3 | // Purpose: wxTopLevelWindowMac is the Mac implementation of wxTLW | |
4 | // Author: Stefan Csomor | |
5 | // Modified by: | |
6 | // Created: 20.09.01 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) 2001 Stefan Csomor | |
9 | // Licence: wxWindows licence | |
10 | /////////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef _WX_MSW_TOPLEVEL_H_ | |
13 | #define _WX_MSW_TOPLEVEL_H_ | |
14 | ||
15 | #if wxUSE_SYSTEM_OPTIONS | |
16 | #define wxMAC_WINDOW_PLAIN_TRANSITION _T("mac.window-plain-transition") | |
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 | virtual wxPoint GetClientAreaOrigin() const; | |
53 | ||
54 | // Attracts the users attention to this window if the application is | |
55 | // inactive (should be called when a background event occurs) | |
56 | virtual void RequestUserAttention(int flags = wxUSER_ATTENTION_INFO); | |
57 | ||
58 | // implement base class pure virtuals | |
59 | virtual void Maximize(bool maximize = true); | |
60 | virtual bool IsMaximized() const; | |
61 | virtual void Iconize(bool iconize = true); | |
62 | virtual bool IsIconized() const; | |
63 | virtual void SetIcon(const wxIcon& icon); | |
64 | virtual void SetIcons(const wxIconBundle& icons) { SetIcon( icons.GetIcon( -1 ) ); } | |
65 | virtual void Restore(); | |
66 | ||
67 | virtual bool SetShape(const wxRegion& region); | |
68 | ||
69 | virtual bool ShowFullScreen(bool show, long style = wxFULLSCREEN_ALL) ; | |
70 | virtual bool IsFullScreen() const ; | |
71 | ||
72 | virtual bool SetTransparent(wxByte alpha); | |
73 | virtual bool CanSetTransparent(); | |
74 | ||
75 | ||
76 | // implementation from now on | |
77 | // -------------------------- | |
78 | ||
79 | static void MacDelayedDeactivation(long timestamp); | |
80 | virtual void MacCreateRealWindow( const wxString& title, | |
81 | const wxPoint& pos, | |
82 | const wxSize& size, | |
83 | long style, | |
84 | const wxString& name ) ; | |
85 | virtual void ClearBackground() ; | |
86 | ||
87 | WXWindow MacGetWindowRef() { return m_macWindow ; } | |
88 | virtual void MacActivate( long timestamp , bool inIsActivating ) ; | |
89 | virtual void MacPerformUpdates() ; | |
90 | ||
91 | virtual void SetTitle( const wxString& title); | |
92 | virtual wxString GetTitle() const; | |
93 | ||
94 | virtual void Raise(); | |
95 | virtual void Lower(); | |
96 | virtual bool Show( bool show = true ); | |
97 | ||
98 | virtual void SetExtraStyle(long exStyle) ; | |
99 | ||
100 | virtual void MacSetBackgroundBrush( const wxBrush &brush ) ; | |
101 | ||
102 | virtual void MacInstallTopLevelWindowEventHandler() ; | |
103 | ||
104 | bool MacGetMetalAppearance() const ; | |
105 | ||
106 | void MacChangeWindowAttributes( wxUint32 attributesToSet , wxUint32 attributesToClear ) ; | |
107 | wxUint32 MacGetWindowAttributes() const ; | |
108 | ||
109 | WXEVENTHANDLERREF MacGetEventHandler() { return m_macEventHandler ; } | |
110 | ||
111 | virtual void MacGetContentAreaInset( int &left , int &top , int &right , int &bottom ) ; | |
112 | ||
113 | protected: | |
114 | // common part of all ctors | |
115 | void Init(); | |
116 | ||
117 | virtual void DoGetPosition( int *x, int *y ) const; | |
118 | virtual void DoGetSize( int *width, int *height ) const; | |
119 | virtual void DoMoveWindow(int x, int y, int width, int height); | |
120 | virtual void DoGetClientSize(int *width, int *height) const; | |
121 | ||
122 | // is the frame currently iconized? | |
123 | bool m_iconized; | |
124 | ||
125 | // should the frame be maximized when it will be shown? set by Maximize() | |
126 | // when it is called while the frame is hidden | |
127 | bool m_maximizeOnShow; | |
128 | ||
129 | WXWindow m_macWindow ; | |
130 | ||
131 | wxWindowMac* m_macFocus ; | |
132 | void *m_macFullScreenData ; | |
133 | ||
134 | static wxTopLevelWindowMac *s_macDeactivateWindow; | |
135 | private : | |
136 | // KH: We cannot let this be called directly since the metal appearance is now managed by an | |
137 | // extra style. Calling this function directly can result in blank white window backgrounds. | |
138 | // This is because the ExtraStyle flags get out of sync with the metal appearance and the metal | |
139 | // logic & checks cease to work as expected. To set the metal appearance, use SetExtraStyle. | |
140 | void MacSetMetalAppearance( bool on ) ; | |
141 | ||
142 | WXEVENTHANDLERREF m_macEventHandler ; | |
143 | ||
144 | DECLARE_EVENT_TABLE() | |
145 | }; | |
146 | ||
147 | // list of all frames and modeless dialogs | |
148 | extern WXDLLEXPORT_DATA(wxWindowList) wxModelessWindows; | |
149 | ||
150 | #endif // _WX_MSW_TOPLEVEL_H_ |