]> git.saurik.com Git - wxWidgets.git/blame - src/cocoa/dcclient.mm
and now fixed USE_CONTEXT_MENU definition as well
[wxWidgets.git] / src / cocoa / dcclient.mm
CommitLineData
891d0563
DE
1/////////////////////////////////////////////////////////////////////////////
2// Name: src/cocoa/dcclient.mm
3// Purpose: wxWindowDC, wxPaintDC, and wxClientDC classes
4// Author: David Elliott
5// Modified by:
6// Created: 2003/04/01
7// RCS-ID: $Id$
8// Copyright: (c) 2003 David Elliott
9// Licence: wxWindows license
10/////////////////////////////////////////////////////////////////////////////
11
449c5673
DE
12#include "wx/wxprec.h"
13#ifndef WX_PRECOMP
14 #include "wx/log.h"
15 #include "wx/window.h"
16 #include "wx/dcclient.h"
17#endif //WX_PRECOMP
891d0563
DE
18
19#import <AppKit/NSView.h>
20#import <AppKit/NSAffineTransform.h>
9d180f3a
DE
21#import <AppKit/NSColor.h>
22#import <AppKit/NSGraphicsContext.h>
23#import <AppKit/NSBezierPath.h>
fe8f7943 24#import <AppKit/NSWindow.h>
891d0563
DE
25
26/*
27 * wxWindowDC
28 */
29IMPLEMENT_DYNAMIC_CLASS(wxWindowDC, wxDC)
30
31wxWindowDC::wxWindowDC(void)
fcc9de54 32: m_window(NULL)
b66e9853 33, m_lockedNSView(NULL)
891d0563
DE
34{
35};
36
37wxWindowDC::wxWindowDC( wxWindow *window )
fcc9de54 38: m_window(window)
b66e9853 39, m_lockedNSView(NULL)
891d0563 40{
2b030203 41 wxLogDebug(wxT("non-client window DC's are not supported, oh well"));
891d0563
DE
42};
43
44wxWindowDC::~wxWindowDC(void)
45{
b66e9853 46 CocoaUnwindStackAndLoseFocus();
891d0563
DE
47};
48
b66e9853
DE
49bool wxWindowDC::CocoaLockFocusOnNSView(WX_NSView nsview)
50{
51 if([nsview lockFocusIfCanDraw])
52 {
53 sm_cocoaDCStack.Insert(this);
54 m_cocoaFlipped = [nsview isFlipped];
55 m_cocoaHeight = [nsview bounds].size.height;
56 CocoaApplyTransformations();
57 m_lockedNSView = nsview;
58 return true;
59 }
2b030203 60 wxLogDebug(wxT("focus lock failed!"));
b66e9853
DE
61 return false;
62}
63
64bool wxWindowDC::CocoaUnlockFocusOnNSView()
65{
66 [[m_lockedNSView window] flushWindow];
67 [m_lockedNSView unlockFocus];
68 m_lockedNSView = NULL;
69 return true;
70}
71
72bool wxWindowDC::CocoaLockFocus()
73{
48580976 74 wxLogTrace(wxTRACE_COCOA,wxT("Locking focus on wxWindowDC=%p, NSView=%p"),this, m_window->GetNonClientNSView());
b66e9853
DE
75 return CocoaLockFocusOnNSView(m_window->GetNonClientNSView());
76}
77
78bool wxWindowDC::CocoaUnlockFocus()
79{
48580976 80 wxLogTrace(wxTRACE_COCOA,wxT("Unlocking focus on wxWindowDC=%p, NSView=%p"),this, m_window->GetNonClientNSView());
b66e9853
DE
81 return CocoaUnlockFocusOnNSView();
82}
83
9d180f3a
DE
84void wxWindowDC::Clear()
85{
b66e9853 86 if(!CocoaTakeFocus()) return;
9d180f3a
DE
87
88 NSGraphicsContext *context = [NSGraphicsContext currentContext];
89 [context saveGraphicsState];
90
91 [m_backgroundBrush.GetNSColor() set];
b66e9853 92 [NSBezierPath fillRect:[m_lockedNSView bounds]];
9d180f3a
DE
93
94 [context restoreGraphicsState];
95}
96
891d0563
DE
97/*
98 * wxClientDC
99 */
100IMPLEMENT_DYNAMIC_CLASS(wxClientDC, wxWindowDC)
101
102wxClientDC::wxClientDC(void)
103{
104};
105
106wxClientDC::wxClientDC( wxWindow *window )
107{
d630f41d 108 m_window = window;
891d0563
DE
109};
110
111wxClientDC::~wxClientDC(void)
112{
fe8f7943 113 CocoaUnwindStackAndLoseFocus();
891d0563
DE
114};
115
fe8f7943
DE
116bool wxClientDC::CocoaLockFocus()
117{
48580976 118 wxLogTrace(wxTRACE_COCOA,wxT("Locking focus on wxClientDC=%p, NSView=%p"),this, m_window->GetNSView());
b66e9853 119 return CocoaLockFocusOnNSView(m_window->GetNSView());
fe8f7943
DE
120}
121
122bool wxClientDC::CocoaUnlockFocus()
123{
48580976 124 wxLogTrace(wxTRACE_COCOA,wxT("Unlocking focus on wxClientDC=%p, NSView=%p"),this, m_window->GetNSView());
b66e9853 125 return CocoaUnlockFocusOnNSView();
fe8f7943
DE
126}
127
891d0563
DE
128/*
129 * wxPaintDC
130 */
131IMPLEMENT_DYNAMIC_CLASS(wxPaintDC, wxWindowDC)
132
133wxPaintDC::wxPaintDC(void)
134{
135};
136
137wxPaintDC::wxPaintDC( wxWindow *window )
138{
d630f41d 139 m_window = window;
2b030203 140 wxASSERT_MSG([NSView focusView]==window->GetNSView(), wxT("PaintDC's NSView does not have focus. Please use wxPaintDC only as the first DC created in a paint handler"));
fe8f7943 141 sm_cocoaDCStack.Insert(this);
b66e9853 142 m_lockedNSView = window->GetNSView();
fe8f7943
DE
143 m_cocoaFlipped = [window->GetNSView() isFlipped];
144 m_cocoaHeight = [window->GetNSView() bounds].size.height;
145 CocoaApplyTransformations();
891d0563
DE
146};
147
148wxPaintDC::~wxPaintDC(void)
149{
fe8f7943 150 CocoaUnwindStackAndLoseFocus();
891d0563
DE
151};
152
fe8f7943
DE
153bool wxPaintDC::CocoaLockFocus()
154{
2b030203 155 wxFAIL_MSG(wxT("wxPaintDC cannot be asked to lock focus!"));
fe8f7943
DE
156 return false;
157}
158
159bool wxPaintDC::CocoaUnlockFocus()
160{
161 // wxPaintDC focus can never be unlocked.
162 return false;
163}
164