Update ooo320-m1
[ooovba.git] / canvas / source / cairo / cairo_quartz_cairo.hxx
blobc4826ccecf489784af3d26044bd58fb6a1dad0bb
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: cairo_quartz_cairo.hxx,v $
10 * $Revision: 1.2 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 #ifndef _CAIROCANVAS_QUARTZ_CAIRO_HXX
32 #define _CAIROCANVAS_QUARTZ_CAIRO_HXX
34 #include "cairo_cairo.hxx"
36 #include "premac.h"
37 #include <Cocoa/Cocoa.h>
38 #include <cairo-quartz.h>
39 #include "postmac.h"
41 namespace cairo {
43 class QuartzSurface : public Surface
45 NSView* mpView; // if NULL - bg surface
46 CairoSurfaceSharedPtr mpSurface;
48 public:
49 /// takes over ownership of passed cairo_surface
50 explicit QuartzSurface( const CairoSurfaceSharedPtr& pSurface );
52 /// create surface on subarea of given CGContext
53 explicit QuartzSurface( CGContextRef rContext, int x, int y, int width, int height );
55 /// create a offscreen surface for given NSView
56 QuartzSurface( NSView* pView, int x, int y, int width, int height );
58 // Surface interface
59 virtual CairoSharedPtr getCairo() const;
60 virtual CairoSurfaceSharedPtr getCairoSurface() const { return mpSurface; }
61 virtual SurfaceSharedPtr getSimilar( Content aContent, int width, int height ) const;
63 virtual boost::shared_ptr<VirtualDevice> createVirtualDevice() const;
65 virtual void Resize( int width, int height );
67 virtual void flush() const;
69 int getDepth() const;
71 CGContextRef getCGContext() const;
76 #endif