fdo#74697 Add Bluez 5 support for impress remote.
[LibreOffice.git] / canvas / source / vcl / spritedevicehelper.hxx
blob926fee34ab480c97aa102c1bb742d7006a5e4104
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 _VCLCANVAS_SPRITEDEVICEHELPER_HXX
21 #define _VCLCANVAS_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 ::sal_Int32 createBuffers( ::sal_Int32 nBuffers );
52 void destroyBuffers( );
53 ::sal_Bool showBuffer( bool bWindowVisible, ::sal_Bool bUpdateAll );
54 ::sal_Bool switchBuffer( bool bWindowVisible, ::sal_Bool bUpdateAll );
56 ::com::sun::star::uno::Any isAccelerated() const;
57 ::com::sun::star::uno::Any getDeviceHandle() const;
58 ::com::sun::star::uno::Any getSurfaceHandle() const;
60 void dumpScreenContent() const;
61 BackBufferSharedPtr getBackBuffer() const { return mpBackBuffer; }
63 void notifySizeUpdate( const ::com::sun::star::awt::Rectangle& rBounds );
65 private:
66 /// This buffer holds the background content for all associated canvases
67 BackBufferSharedPtr mpBackBuffer;
71 #endif /* _VCLCANVAS_SPRITEDEVICEHELPER_HXX */
73 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */