]> git.saurik.com Git - wxWidgets.git/blob - include/wx/mac/classic/toplevel.h
classic/carbon split
[wxWidgets.git] / include / wx / mac / classic / toplevel.h
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/mac/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 defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
16 #pragma interface "toplevel.h"
17 #endif
18
19 #if wxUSE_SYSTEM_OPTIONS
20 #define wxMAC_WINDOW_PLAIN_TRANSITION _T("mac.window-plain-transition")
21 #endif
22
23 // ----------------------------------------------------------------------------
24 // wxTopLevelWindowMac
25 // ----------------------------------------------------------------------------
26
27 class WXDLLEXPORT wxTopLevelWindowMac : public wxTopLevelWindowBase
28 {
29 public:
30 // constructors and such
31 wxTopLevelWindowMac() { Init(); }
32
33 wxTopLevelWindowMac(wxWindow *parent,
34 wxWindowID id,
35 const wxString& title,
36 const wxPoint& pos = wxDefaultPosition,
37 const wxSize& size = wxDefaultSize,
38 long style = wxDEFAULT_FRAME_STYLE,
39 const wxString& name = wxFrameNameStr)
40 {
41 Init();
42
43 (void)Create(parent, id, title, pos, size, style, name);
44 }
45
46 bool Create(wxWindow *parent,
47 wxWindowID id,
48 const wxString& title,
49 const wxPoint& pos = wxDefaultPosition,
50 const wxSize& size = wxDefaultSize,
51 long style = wxDEFAULT_FRAME_STYLE,
52 const wxString& name = wxFrameNameStr);
53
54 virtual ~wxTopLevelWindowMac();
55
56 // implement base class pure virtuals
57 virtual void Maximize(bool maximize = TRUE);
58 virtual bool IsMaximized() const;
59 virtual void Iconize(bool iconize = TRUE);
60 virtual bool IsIconized() const;
61 virtual void SetIcon(const wxIcon& icon);
62 virtual void SetIcons(const wxIconBundle& icons) { SetIcon( icons.GetIcon( -1 ) ); }
63 virtual void Restore();
64
65 virtual bool SetShape(const wxRegion& region);
66
67 virtual bool ShowFullScreen(bool WXUNUSED(show), long WXUNUSED(style) = wxFULLSCREEN_ALL)
68 { return FALSE; }
69 virtual bool IsFullScreen() const { return FALSE; }
70
71 // implementation from now on
72 // --------------------------
73
74 static void MacDelayedDeactivation(long timestamp);
75 virtual void MacCreateRealWindow( const wxString& title,
76 const wxPoint& pos,
77 const wxSize& size,
78 long style,
79 const wxString& name ) ;
80 static WXWindow MacGetWindowInUpdate() { return s_macWindowInUpdate ; }
81 virtual void MacGetPortParams(WXPOINTPTR localOrigin, WXRECTPTR clipRect, WXWindow *window , wxWindowMac** rootwin ) ;
82 virtual void ClearBackground() ;
83 virtual WXWidget MacGetContainerForEmbedding() ;
84 WXWindow MacGetWindowRef() { return m_macWindow ; }
85 virtual void MacActivate( long timestamp , bool inIsActivating ) ;
86 virtual void MacUpdate( long timestamp ) ;
87 #if !TARGET_CARBON
88 virtual void MacMouseDown( WXEVENTREF ev , short windowPart ) ;
89 virtual void MacMouseUp( WXEVENTREF ev , short windowPart ) ;
90 virtual void MacMouseMoved( WXEVENTREF ev , short windowPart ) ;
91 virtual void MacKeyDown( WXEVENTREF ev ) ;
92 #endif
93 virtual void MacFireMouseEvent( wxUint16 kind , wxInt32 x , wxInt32 y ,wxUint32 modifiers , long timestamp ) ;
94 virtual void Raise();
95 virtual void Lower();
96 virtual void SetTitle( const wxString& title);
97 virtual bool Show( bool show = TRUE );
98 virtual void DoMoveWindow(int x, int y, int width, int height);
99 void MacInvalidate( const WXRECTPTR rect, bool eraseBackground ) ;
100 short MacGetWindowBackgroundTheme() const { return m_macWindowBackgroundTheme ; }
101 static bool MacEnableCompositing( bool useCompositing );
102 bool MacUsesCompositing() { return m_macUsesCompositing; }
103
104 #if TARGET_CARBON
105 WXEVENTHANDLERREF MacGetEventHandler() { return m_macEventHandler ; }
106 #endif
107 protected:
108 // common part of all ctors
109 void Init();
110
111 // is the frame currently iconized?
112 bool m_iconized;
113
114 // should the frame be maximized when it will be shown? set by Maximize()
115 // when it is called while the frame is hidden
116 bool m_maximizeOnShow;
117 bool m_macUsesCompositing ;
118
119 short m_macWindowBackgroundTheme ;
120 WXWindow m_macWindow ;
121 WXWidget m_macRootControl ;
122 wxWindowMac* m_macFocus ;
123 WXHRGN m_macNoEraseUpdateRgn ;
124 bool m_macNeedsErasing ;
125
126 static WXWindow s_macWindowInUpdate ;
127 static wxTopLevelWindowMac *s_macDeactivateWindow;
128 static bool s_macWindowCompositing ;
129 private :
130 #if TARGET_CARBON
131 WXEVENTHANDLERREF m_macEventHandler ;
132 #endif
133 };
134
135 // list of all frames and modeless dialogs
136 extern WXDLLEXPORT_DATA(wxWindowList) wxModelessWindows;
137
138 // associate mac windows with wx counterparts
139
140 wxTopLevelWindowMac* wxFindWinFromMacWindow( WXWindow inWindow ) ;
141 void wxAssociateWinWithMacWindow(WXWindow inWindow, wxTopLevelWindowMac *win) ;
142 void wxRemoveMacWindowAssociation(wxTopLevelWindowMac *win) ;
143
144
145 #endif // _WX_MSW_TOPLEVEL_H_
146