Branch libreoffice-5-0-4
[LibreOffice.git] / canvas / source / vcl / spritedevicehelper.hxx
blobc91355db174bcc2e94b9c9d432fd9cc812e4a1d4
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 INCLUDED_CANVAS_SOURCE_VCL_SPRITEDEVICEHELPER_HXX
21 #define INCLUDED_CANVAS_SOURCE_VCL_SPRITEDEVICEHELPER_HXX
23 #include <com/sun/star/awt/Rectangle.hpp>
24 #include <com/sun/star/awt/XWindow2.hpp>
25 #include <com/sun/star/rendering/XGraphicDevice.hpp>
26 #include <com/sun/star/rendering/XBufferController.hpp>
28 #include <vcl/outdev.hxx>
29 #include <vcl/window.hxx>
31 #include "backbuffer.hxx"
32 #include "devicehelper.hxx"
34 #include <boost/utility.hpp>
37 /* Definition of DeviceHelper class */
39 namespace vclcanvas
41 class SpriteDeviceHelper : public DeviceHelper
43 public:
44 SpriteDeviceHelper();
46 void init( const OutDevProviderSharedPtr& rOutDev );
48 /// Dispose all internal references
49 void disposing();
51 bool showBuffer( bool bWindowVisible, bool bUpdateAll );
52 bool switchBuffer( bool bWindowVisible, bool bUpdateAll );
54 ::com::sun::star::uno::Any isAccelerated() const;
55 ::com::sun::star::uno::Any getDeviceHandle() const;
56 ::com::sun::star::uno::Any getSurfaceHandle() const;
58 void dumpScreenContent() const;
59 BackBufferSharedPtr getBackBuffer() const { return mpBackBuffer; }
61 void notifySizeUpdate( const ::com::sun::star::awt::Rectangle& rBounds );
63 private:
64 /// This buffer holds the background content for all associated canvases
65 BackBufferSharedPtr mpBackBuffer;
69 #endif // INCLUDED_CANVAS_SOURCE_VCL_SPRITEDEVICEHELPER_HXX
71 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */