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_WIN32_CAIRO_HXX
21 #define INCLUDED_CANVAS_SOURCE_CAIRO_CAIRO_WIN32_CAIRO_HXX
23 #include "cairo_cairo.hxx"
29 class Win32Surface
: public Surface
31 CairoSurfaceSharedPtr mpSurface
;
34 /// takes over ownership of passed cairo_surface
35 explicit Win32Surface( const CairoSurfaceSharedPtr
& pSurface
);
36 /// create surface on subarea of given drawable
37 Win32Surface( HDC hDC
, int x
, int y
);
38 /// create surface for given bitmap data
39 Win32Surface( const BitmapSystemData
& rBmpData
);
42 virtual CairoSharedPtr
getCairo() const;
43 virtual CairoSurfaceSharedPtr
getCairoSurface() const { return mpSurface
; }
44 virtual SurfaceSharedPtr
getSimilar( int aContent
, int width
, int height
) const;
46 virtual VclPtr
<VirtualDevice
> createVirtualDevice() const;
48 virtual void flush() const;
56 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */