1737cc9d7bf1980dcfd52b419a30ee262dba6518
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / platform / mac / LocalCurrentGraphicsContext.mm
1 /*
2  * Copyright (C) 2006 Apple Computer, Inc.
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public License
15  * along with this library; see the file COPYING.LIB.  If not, write to
16  * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17  * Boston, MA 02110-1301, USA.
18  */
19
20 #include "config.h"
21 #include "platform/mac/LocalCurrentGraphicsContext.h"
22 #include "platform/mac/ThemeMac.h"
23
24 #include <AppKit/NSGraphicsContext.h>
25 #include "platform/graphics/GraphicsContext.h"
26 #include "platform_canvas.h"
27
28 namespace blink {
29
30 LocalCurrentGraphicsContext::LocalCurrentGraphicsContext(GraphicsContext* graphicsContext, IntRect dirtyRect)
31     : m_didSetGraphicsContext(false)
32     , m_skiaBitLocker(graphicsContext->canvas(), ThemeMac::inflateRectForAA(dirtyRect))
33 {
34     m_savedGraphicsContext = graphicsContext;
35     graphicsContext->save();
36
37     CGContextRef cgContext = this->cgContext();
38     if (cgContext == [[NSGraphicsContext currentContext] graphicsPort]) {
39         m_savedNSGraphicsContext = 0;
40         return;
41     }
42
43     m_savedNSGraphicsContext = [[NSGraphicsContext currentContext] retain];
44     NSGraphicsContext* newContext = [NSGraphicsContext graphicsContextWithGraphicsPort:cgContext flipped:YES];
45     [NSGraphicsContext setCurrentContext:newContext];
46     m_didSetGraphicsContext = true;
47 }
48
49 LocalCurrentGraphicsContext::~LocalCurrentGraphicsContext()
50 {
51     if (m_didSetGraphicsContext) {
52         [NSGraphicsContext setCurrentContext:m_savedNSGraphicsContext];
53         [m_savedNSGraphicsContext release];
54     }
55
56     m_savedGraphicsContext->restore();
57 }
58
59 CGContextRef LocalCurrentGraphicsContext::cgContext()
60 {
61     // This synchronizes the CGContext to reflect the current SkCanvas state.
62     // The implementation may not return the same CGContext each time.
63     CGContextRef cgContext = m_skiaBitLocker.cgContext();
64
65     return cgContext;
66 }
67
68 ContextContainer::ContextContainer(GraphicsContext* graphicsContext) 
69     : m_skiaBitLocker(graphicsContext->canvas())
70 {
71 }
72
73 }