1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #ifndef INCLUDED_CANVAS_SOURCE_CAIRO_CAIRO_QUARTZ_CAIRO_HXX
21 #define INCLUDED_CANVAS_SOURCE_CAIRO_CAIRO_QUARTZ_CAIRO_HXX
23 #include "cairo_cairo.hxx"
26 #include <TargetConditionals.h>
27 #if !defined(TARGET_OS_IPHONE) || !TARGET_OS_IPHONE
28 # include <Cocoa/Cocoa.h>
30 # include <UIKit/UIKit.h>
31 # define NSView UIView
33 #include <cairo-quartz.h>
38 class QuartzSurface
: public Surface
40 NSView
* mpView
; // if NULL - bg surface
41 CairoSurfaceSharedPtr mpSurface
;
44 /// takes over ownership of passed cairo_surface
45 explicit QuartzSurface( const CairoSurfaceSharedPtr
& pSurface
);
47 /// create surface on subarea of given CGContext
48 explicit QuartzSurface( CGContextRef rContext
, int x
, int y
, int width
, int height
);
50 /// create a offscreen surface for given NSView
51 QuartzSurface( NSView
* pView
, int x
, int y
, int width
, int height
);
54 virtual CairoSharedPtr
getCairo() const;
55 virtual CairoSurfaceSharedPtr
getCairoSurface() const { return mpSurface
; }
56 virtual SurfaceSharedPtr
getSimilar( Content aContent
, int width
, int height
) const;
58 virtual VclPtr
<VirtualDevice
> createVirtualDevice() const;
60 virtual void flush() const;
64 CGContextRef
getCGContext() const;
70 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */