fdo#74697 Add Bluez 5 support for impress remote.
[LibreOffice.git] / canvas / source / cairo / cairo_win32_cairo.hxx
blob6bb16deb70094ed58bc2a2ac3da15d18c7e00d79
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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 _CAIROCANVAS_WIN32_CAIRO_HXX
21 #define _CAIROCANVAS_WIN32_CAIRO_HXX
23 #include "cairo_cairo.hxx"
24 #include <prewin.h>
25 #include <postwin.h>
27 namespace cairo {
29 class Win32Surface : public Surface
31 CairoSurfaceSharedPtr mpSurface;
33 public:
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 );
41 // Surface interface
42 virtual CairoSharedPtr getCairo() const;
43 virtual CairoSurfaceSharedPtr getCairoSurface() const { return mpSurface; }
44 virtual SurfaceSharedPtr getSimilar( Content aContent, int width, int height ) const;
46 virtual boost::shared_ptr<VirtualDevice> createVirtualDevice() const;
48 virtual void Resize( int width, int height );
50 virtual void flush() const;
52 int getDepth() const;
55 unsigned long ucs4toindex(unsigned int ucs4, HFONT hfont);
58 #endif
60 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */