1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/mac/carbon/overlay.cpp
3 // Purpose: common wxOverlay code
4 // Author: Stefan Csomor
8 // Copyright: (c) wxWidgets team
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 // For compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
27 #include "wx/overlay.h"
30 #include "wx/dcclient.h"
33 #include "wx/private/overlay.h"
35 #ifdef wxHAS_NATIVE_OVERLAY
37 // ============================================================================
39 // ============================================================================
41 wxOverlayImpl::wxOverlayImpl()
44 m_overlayContext
= NULL
;
45 m_overlayWindow
= NULL
;
48 wxOverlayImpl::~wxOverlayImpl()
53 bool wxOverlayImpl::IsOk()
55 return m_overlayWindow
!= NULL
;
58 void wxOverlayImpl::MacGetBounds( Rect
*bounds
)
62 m_window
->MacWindowToRootWindow( &x
, &y
) ;
63 WindowRef window
= (WindowRef
) m_window
->MacGetTopLevelWindowRef() ;
65 Point localwhere
= { y
, x
};
66 wxMacLocalToGlobal( window
, &localwhere
) ;
68 bounds
->top
= localwhere
.v
+m_y
;
69 bounds
->left
= localwhere
.h
+m_x
;
70 bounds
->bottom
= localwhere
.v
+m_y
+m_height
;
71 bounds
->right
= localwhere
.h
+m_x
+m_width
;
74 OSStatus
wxOverlayImpl::CreateOverlayWindow()
78 WindowAttributes overlayAttributes
= kWindowIgnoreClicksAttribute
;
82 m_overlayParentWindow
=(WindowRef
) m_window
->MacGetTopLevelWindowRef();
85 MacGetBounds(&bounds
);
86 err
= CreateNewWindow( kOverlayWindowClass
, overlayAttributes
, &bounds
, &m_overlayWindow
);
89 SetWindowGroup( m_overlayWindow
, GetWindowGroup(m_overlayParentWindow
)); // Put them in the same group so that their window layers are consistent
94 m_overlayParentWindow
= NULL
;
96 cgbounds
= CGDisplayBounds(CGMainDisplayID());
98 bounds
.top
= (short)cgbounds
.origin
.y
;
99 bounds
.left
= (short)cgbounds
.origin
.x
;
100 bounds
.bottom
= (short)(bounds
.top
+ cgbounds
.size
.height
);
101 bounds
.right
= (short)(bounds
.left
+ cgbounds
.size
.width
);
102 err
= CreateNewWindow( kOverlayWindowClass
, overlayAttributes
, &bounds
, &m_overlayWindow
);
104 ShowWindow(m_overlayWindow
);
108 void wxOverlayImpl::Init( wxDC
* dc
, int x
, int y
, int width
, int height
)
110 wxASSERT_MSG( !IsOk() , _("You cannot Init an overlay twice") );
112 m_window
= dc
->GetWindow();
115 if ( dc
->IsKindOf( CLASSINFO( wxClientDC
) ))
117 wxPoint origin
= m_window
->GetClientAreaOrigin();
124 OSStatus err
= CreateOverlayWindow();
125 wxASSERT_MSG( err
== noErr
, _("Couldn't create the overlay window") );
127 err
= QDBeginCGContext(GetWindowPort(m_overlayWindow
), &m_overlayContext
);
129 CGContextTranslateCTM( m_overlayContext
, 0, m_height
);
130 CGContextScaleCTM( m_overlayContext
, 1, -1 );
131 CGContextTranslateCTM( m_overlayContext
, -m_x
, -m_y
);
132 wxASSERT_MSG( err
== noErr
, _("Couldn't init the context on the overlay window") );
135 void wxOverlayImpl::BeginDrawing( wxDC
* dc
)
137 wxDCImpl
*impl
= dc
->GetImpl();
138 wxWindowDCImpl
*win_impl
= wxDynamicCast(impl
,wxWindowDCImpl
);
141 win_impl
->SetGraphicsContext( wxGraphicsContext::CreateFromNative( m_overlayContext
) );
142 wxSize size
= dc
->GetSize() ;
143 dc
->SetClippingRegion( 0 , 0 , size
.x
, size
.y
) ;
147 void wxOverlayImpl::EndDrawing( wxDC
* dc
)
149 wxDCImpl
*impl
= dc
->GetImpl();
150 wxWindowDCImpl
*win_impl
= wxDynamicCast(impl
,wxWindowDCImpl
);
152 win_impl
->SetGraphicsContext(NULL
);
154 CGContextFlush( m_overlayContext
);
157 void wxOverlayImpl::Clear(wxDC
* WXUNUSED(dc
))
159 wxASSERT_MSG( IsOk() , _("You cannot Clear an overlay that is not inited") );
160 CGRect box
= CGRectMake( m_x
- 1, m_y
- 1 , m_width
+ 2 , m_height
+ 2 );
161 CGContextClearRect( m_overlayContext
, box
);
164 void wxOverlayImpl::Reset()
166 if ( m_overlayContext
)
169 OSStatus err
= QDEndCGContext(GetWindowPort(m_overlayWindow
), &m_overlayContext
);
170 wxASSERT_MSG( err
== noErr
, _("Couldn't end the context on the overlay window") );
172 m_overlayContext
= NULL
;
175 // todo : don't dispose, only hide and reposition on next run
178 DisposeWindow(m_overlayWindow
);
179 m_overlayWindow
= NULL
;
183 #endif // wxHAS_NATIVE_OVERLAY