LibreOffice Module canvas (master) 1
devicehelper.hxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
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/.
8 *
9 * This file incorporates work covered by the following license notice:
10 *
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 .
18 */
19
20#pragma once
21
22#include <com/sun/star/rendering/XGraphicDevice.hpp>
23
24#include "outdevprovider.hxx"
25
26
27/* Definition of DeviceHelper class */
28
29namespace vclcanvas
30{
32 {
33 public:
35
37 DeviceHelper(const DeviceHelper&) = delete;
38 const DeviceHelper& operator=(const DeviceHelper&) = delete;
39
40 void init( const OutDevProviderSharedPtr& rOutDev );
41
43 void disposing();
44
45 // XWindowGraphicDevice
46 css::geometry::RealSize2D getPhysicalResolution();
47 css::geometry::RealSize2D getPhysicalSize();
48 css::uno::Reference< css::rendering::XLinePolyPolygon2D > createCompatibleLinePolyPolygon(
49 const css::uno::Reference< css::rendering::XGraphicDevice >& rDevice,
50 const css::uno::Sequence< css::uno::Sequence< css::geometry::RealPoint2D > >& points );
51 css::uno::Reference< css::rendering::XBezierPolyPolygon2D > createCompatibleBezierPolyPolygon(
52 const css::uno::Reference< css::rendering::XGraphicDevice >& rDevice,
53 const css::uno::Sequence< css::uno::Sequence< css::geometry::RealBezierSegment2D > >& points );
54 css::uno::Reference< css::rendering::XBitmap > createCompatibleBitmap(
55 const css::uno::Reference< css::rendering::XGraphicDevice >& rDevice,
56 const css::geometry::IntegerSize2D& size );
57 css::uno::Reference< css::rendering::XVolatileBitmap > createVolatileBitmap(
58 const css::uno::Reference< css::rendering::XGraphicDevice >& rDevice,
59 const css::geometry::IntegerSize2D& size );
60 css::uno::Reference< css::rendering::XBitmap > createCompatibleAlphaBitmap(
61 const css::uno::Reference< css::rendering::XGraphicDevice >& rDevice,
62 const css::geometry::IntegerSize2D& size );
63 css::uno::Reference< css::rendering::XVolatileBitmap > createVolatileAlphaBitmap(
64 const css::uno::Reference< css::rendering::XGraphicDevice >& rDevice,
65 const css::geometry::IntegerSize2D& size );
66
67 css::uno::Any isAccelerated() const;
68 css::uno::Any getDeviceHandle() const;
69 css::uno::Any getSurfaceHandle() const;
70 css::uno::Reference<
71 css::rendering::XColorSpace > const & getColorSpace() const;
72
73 const OutDevProviderSharedPtr& getOutDev() const { return mpOutDev; }
74
78 void dumpScreenContent() const;
79
80 private:
83 };
84}
85
86/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
void disposing()
Dispose all internal references.
void dumpScreenContent() const
called when DumpScreenContent property is enabled on XGraphicDevice, and writes out bitmaps of curren...
css::uno::Reference< css::rendering::XBitmap > createCompatibleBitmap(const css::uno::Reference< css::rendering::XGraphicDevice > &rDevice, const css::geometry::IntegerSize2D &size)
css::uno::Reference< css::rendering::XLinePolyPolygon2D > createCompatibleLinePolyPolygon(const css::uno::Reference< css::rendering::XGraphicDevice > &rDevice, const css::uno::Sequence< css::uno::Sequence< css::geometry::RealPoint2D > > &points)
void init(const OutDevProviderSharedPtr &rOutDev)
OutDevProviderSharedPtr mpOutDev
For retrieving device info.
const DeviceHelper & operator=(const DeviceHelper &)=delete
DeviceHelper(const DeviceHelper &)=delete
make noncopyable
const OutDevProviderSharedPtr & getOutDev() const
css::uno::Reference< css::rendering::XColorSpace > const & getColorSpace() const
css::uno::Any isAccelerated() const
css::uno::Reference< css::rendering::XBitmap > createCompatibleAlphaBitmap(const css::uno::Reference< css::rendering::XGraphicDevice > &rDevice, const css::geometry::IntegerSize2D &size)
css::uno::Any getDeviceHandle() const
css::uno::Reference< css::rendering::XVolatileBitmap > createVolatileBitmap(const css::uno::Reference< css::rendering::XGraphicDevice > &rDevice, const css::geometry::IntegerSize2D &size)
css::uno::Reference< css::rendering::XVolatileBitmap > createVolatileAlphaBitmap(const css::uno::Reference< css::rendering::XGraphicDevice > &rDevice, const css::geometry::IntegerSize2D &size)
css::uno::Any getSurfaceHandle() const
css::uno::Reference< css::rendering::XBezierPolyPolygon2D > createCompatibleBezierPolyPolygon(const css::uno::Reference< css::rendering::XGraphicDevice > &rDevice, const css::uno::Sequence< css::uno::Sequence< css::geometry::RealBezierSegment2D > > &points)
css::geometry::RealSize2D getPhysicalSize()
css::geometry::RealSize2D getPhysicalResolution()
std::shared_ptr< OutDevProvider > OutDevProviderSharedPtr