]> git.saurik.com Git - wxWidgets.git/blame - src/mac/carbon/overlay.cpp
remove unneeded code
[wxWidgets.git] / src / mac / carbon / overlay.cpp
CommitLineData
30c841c8
VS
1/////////////////////////////////////////////////////////////////////////////
2// Name: src/mac/carbon/overlay.cpp
3// Purpose: common wxOverlay code
4// Author: Stefan Csomor
5// Modified by:
6// Created: 2006-10-20
7// RCS-ID: $Id$
8// Copyright: (c) wxWidgets team
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
12// ============================================================================
13// declarations
14// ============================================================================
15
16// ----------------------------------------------------------------------------
17// headers
18// ----------------------------------------------------------------------------
19
20// For compilers that support precompilation, includes "wx.h".
21#include "wx/wxprec.h"
22
23#ifdef __BORLANDC__
24 #pragma hdrstop
25#endif
26
27#include "wx/overlay.h"
b64c92ee
WS
28
29#ifndef WX_PRECOMP
30 #include "wx/dcclient.h"
31#endif
32
30c841c8
VS
33#include "wx/private/overlay.h"
34
69a5bc23 35#ifdef wxHAS_NATIVE_OVERLAY
30c841c8
VS
36
37// ============================================================================
38// implementation
39// ============================================================================
40
41wxOverlayImpl::wxOverlayImpl()
42{
43 m_window = NULL ;
44 m_overlayContext = NULL ;
45 m_overlayWindow = NULL ;
46}
47
48wxOverlayImpl::~wxOverlayImpl()
49{
50 Reset();
51}
52
b64c92ee 53bool wxOverlayImpl::IsOk()
30c841c8
VS
54{
55 return m_overlayWindow != NULL ;
56}
57
58void wxOverlayImpl::MacGetBounds( Rect *bounds )
59{
60 wxPoint origin(0,0);
61 origin = m_window->ClientToScreen( origin );
62 bounds->top = origin.y;
63 bounds->left = origin.x;
64 bounds->bottom = origin.y+m_y+m_height;
65 bounds->right = origin.x+m_x+m_width;
66}
67
68OSStatus wxOverlayImpl::CreateOverlayWindow()
69{
70 OSStatus err;
71
72 WindowAttributes overlayAttributes = kWindowIgnoreClicksAttribute;
b64c92ee
WS
73
74 if ( m_window )
75 {
76 m_overlayParentWindow =(WindowRef) m_window->MacGetTopLevelWindowRef();
77
78 Rect bounds ;
79 MacGetBounds(&bounds);
80 err = CreateNewWindow( kOverlayWindowClass, overlayAttributes, &bounds, &m_overlayWindow );
81 if ( err == noErr )
82 {
83 SetWindowGroup( m_overlayWindow, GetWindowGroup(m_overlayParentWindow)); // Put them in the same group so that their window layers are consistent
84 }
85 }
86 else
87 {
88 m_overlayParentWindow = NULL ;
89 CGRect cgbounds ;
90 cgbounds = CGDisplayBounds(CGMainDisplayID());
91 Rect bounds;
92 bounds.top = cgbounds.origin.y;
93 bounds.left = cgbounds.origin.x;
94 bounds.bottom = bounds.top + cgbounds.size.height;
95 bounds.right = bounds.left + cgbounds.size.width;
96 err = CreateNewWindow( kOverlayWindowClass, overlayAttributes, &bounds, &m_overlayWindow );
97 }
98 ShowWindow(m_overlayWindow);
99 return err;
30c841c8
VS
100}
101
102void wxOverlayImpl::Init( wxWindowDC* dc, int x , int y , int width , int height )
103{
104 wxASSERT_MSG( !IsOk() , _("You cannot Init an overlay twice") );
105
b64c92ee 106 m_window = dc->GetWindow();
30c841c8
VS
107 m_x = x ;
108 m_y = y ;
109 m_width = width ;
110 m_height = height ;
b64c92ee 111
30c841c8
VS
112 OSStatus err = CreateOverlayWindow();
113 wxASSERT_MSG( err == noErr , _("Couldn't create the overlay window") );
114#ifndef __LP64__
115 err = QDBeginCGContext(GetWindowPort(m_overlayWindow), &m_overlayContext);
116#endif
117 CGContextTranslateCTM( m_overlayContext, 0, m_height+m_y );
118 CGContextScaleCTM( m_overlayContext, 1, -1 );
119 wxASSERT_MSG( err == noErr , _("Couldn't init the context on the overlay window") );
120}
121
122void wxOverlayImpl::BeginDrawing( wxWindowDC* dc)
123{
124// TODO CS
b64c92ee 125 dc->SetGraphicsContext( wxGraphicsContext::CreateFromNative( m_overlayContext ) );
30c841c8
VS
126/*
127 delete dc->m_graphicContext ;
128 dc->m_graphicContext = new wxMacCGContext( m_overlayContext );
b64c92ee 129 // we are right now startin at 0,0 not at the wxWindow's origin, so most of the calculations
30c841c8
VS
130 // int dc are already corect
131 // just to make sure :
132 dc->m_macLocalOrigin.x = 0 ;
133 dc->m_macLocalOrigin.y = 0 ;
b64c92ee 134*/
30c841c8
VS
135 wxSize size = dc->GetSize() ;
136 dc->SetClippingRegion( 0 , 0 , size.x , size.y ) ;
137}
138
139void wxOverlayImpl::EndDrawing( wxWindowDC* dc)
140{
b64c92ee 141 dc->SetGraphicsContext(NULL);
8275e02a 142 CGContextSynchronize( m_overlayContext );
30c841c8
VS
143}
144
b64c92ee 145void wxOverlayImpl::Clear(wxWindowDC* dc)
30c841c8
VS
146{
147 wxASSERT_MSG( IsOk() , _("You cannot Clear an overlay that is not inited") );
148 CGRect box = CGRectMake( m_x - 1, m_y - 1 , m_width + 2 , m_height + 2 );
149 CGContextClearRect( m_overlayContext, box );
150}
151
152void wxOverlayImpl::Reset()
153{
154 if ( m_overlayContext )
155 {
156#ifndef __LP64__
157 OSStatus err = QDEndCGContext(GetWindowPort(m_overlayWindow), &m_overlayContext);
158 wxASSERT_MSG( err == noErr , _("Couldn't end the context on the overlay window") );
159#endif
160 m_overlayContext = NULL ;
b64c92ee
WS
161 }
162
30c841c8
VS
163 // todo : don't dispose, only hide and reposition on next run
164 if (m_overlayWindow)
165 {
166 DisposeWindow(m_overlayWindow);
167 m_overlayWindow = NULL ;
168 }
169}
170
171#endif // wxHAS_NATIVE_OVERLAY