]>
Commit | Line | Data |
---|---|---|
6762286d SC |
1 | /////////////////////////////////////////////////////////////////////////////// |
2 | // Name: wx/mac/nonownedwnd.h | |
3 | // Purpose: declares wxNonOwnedWindow class | |
4 | // Author: Stefan Csomor | |
03647350 | 5 | // Modified by: |
6762286d SC |
6 | // Created: 2008-03-24 |
7 | // RCS-ID: $Id: nonownedwnd.h 46993 2007-06-28 08:46:04Z VS $ | |
8 | // Copyright: (c) 2008 Stefan Csomor | |
9 | // Licence: wxWindows licence | |
10 | /////////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef _WX_MAC_NONOWNEDWND_H_ | |
13 | #define _WX_MAC_NONOWNEDWND_H_ | |
14 | ||
15 | #include "wx/window.h" | |
16 | ||
17 | #if wxUSE_SYSTEM_OPTIONS | |
9a83f860 | 18 | #define wxMAC_WINDOW_PLAIN_TRANSITION wxT("mac.window-plain-transition") |
6762286d SC |
19 | #endif |
20 | ||
21 | //----------------------------------------------------------------------------- | |
22 | // wxNonOwnedWindow | |
23 | //----------------------------------------------------------------------------- | |
24 | ||
25 | // This class represents "non-owned" window. A window is owned by another | |
26 | // window if it has a parent and is positioned within the parent. For example, | |
27 | // wxFrame is non-owned, because even though it can have a parent, it's | |
28 | // location is independent of it. This class is for internal use only, it's | |
29 | // the base class for wxTopLevelWindow and wxPopupWindow. | |
30 | ||
31 | class wxNonOwnedWindowImpl; | |
32 | ||
33 | class WXDLLIMPEXP_CORE wxNonOwnedWindow : public wxWindow | |
34 | { | |
35 | public: | |
36 | // constructors and such | |
37 | wxNonOwnedWindow() { Init(); } | |
38 | ||
39 | wxNonOwnedWindow(wxWindow *parent, | |
40 | wxWindowID id, | |
41 | const wxPoint& pos = wxDefaultPosition, | |
42 | const wxSize& size = wxDefaultSize, | |
43 | long style = 0, | |
44 | const wxString& name = wxPanelNameStr) | |
45 | { | |
46 | Init(); | |
47 | ||
48 | (void)Create(parent, id, pos, size, style, name); | |
49 | } | |
50 | ||
51 | bool Create(wxWindow *parent, | |
52 | wxWindowID id, | |
53 | const wxPoint& pos = wxDefaultPosition, | |
54 | const wxSize& size = wxDefaultSize, | |
55 | long style = 0, | |
56 | const wxString& name = wxPanelNameStr); | |
57 | ||
58 | virtual ~wxNonOwnedWindow(); | |
59 | ||
60 | virtual wxPoint GetClientAreaOrigin() const; | |
61 | ||
62 | // implement base class pure virtuals | |
63 | ||
6762286d SC |
64 | virtual bool SetTransparent(wxByte alpha); |
65 | virtual bool CanSetTransparent(); | |
66 | ||
67 | virtual bool SetBackgroundStyle(wxBackgroundStyle style); | |
03647350 | 68 | |
6762286d SC |
69 | virtual void Update(); |
70 | ||
71 | WXWindow GetWXWindow() const ; | |
72 | static wxNonOwnedWindow* GetFromWXWindow( WXWindow win ); | |
73 | ||
74 | // implementation from now on | |
75 | // -------------------------- | |
76 | ||
8e88e984 SC |
77 | virtual bool DoSetShape(const wxRegion& region); |
78 | ||
6762286d SC |
79 | // activation hooks only necessary for MDI Implementation |
80 | static void MacDelayedDeactivation(long timestamp); | |
81 | virtual void MacActivate( long timestamp , bool inIsActivating ) ; | |
82 | ||
83 | ||
84 | virtual void Raise(); | |
85 | virtual void Lower(); | |
86 | virtual bool Show( bool show = true ); | |
87 | ||
88 | virtual bool ShowWithEffect(wxShowEffect effect, | |
89 | unsigned timeout = 0) ; | |
90 | ||
91 | virtual bool HideWithEffect(wxShowEffect effect, | |
92 | unsigned timeout = 0) ; | |
93 | ||
94 | virtual void SetExtraStyle(long exStyle) ; | |
95 | ||
96 | virtual bool SetBackgroundColour( const wxColour &colour ); | |
03647350 | 97 | |
6762286d | 98 | wxNonOwnedWindowImpl* GetNonOwnedPeer() const { return m_nowpeer; } |
03647350 | 99 | |
6762286d | 100 | // osx specific event handling common for all osx-ports |
03647350 | 101 | |
6762286d SC |
102 | virtual void HandleActivated( double timestampsec, bool didActivate ); |
103 | virtual void HandleResized( double timestampsec ); | |
104 | virtual void HandleMoved( double timestampsec ); | |
105 | virtual void HandleResizing( double timestampsec, wxRect* rect ); | |
03647350 | 106 | |
6762286d SC |
107 | protected: |
108 | // common part of all ctors | |
109 | void Init(); | |
110 | ||
111 | virtual void DoGetPosition( int *x, int *y ) const; | |
112 | virtual void DoGetSize( int *width, int *height ) const; | |
113 | virtual void DoMoveWindow(int x, int y, int width, int height); | |
114 | virtual void DoGetClientSize(int *width, int *height) const; | |
115 | ||
116 | wxNonOwnedWindowImpl* m_nowpeer ; | |
117 | ||
118 | // wxWindowMac* m_macFocus ; | |
119 | ||
120 | static wxNonOwnedWindow *s_macDeactivateWindow; | |
121 | private : | |
122 | }; | |
123 | ||
124 | // list of all frames and modeless dialogs | |
125 | extern WXDLLIMPEXP_DATA_CORE(wxWindowList) wxModelessWindows; | |
126 | ||
127 | ||
128 | #endif // _WX_MAC_NONOWNEDWND_H_ |