bump product version to 6.4.0.3
[LibreOffice.git] / vcl / source / window / bufferdevice.hxx
blob5f2471cd26d9eec1d55eacf668a6a58055c0f5c9
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/.
8 */
10 #ifndef INCLUDED_VCL_SOURCE_WINDOW_BUFFERDEVICE_HXX
11 #define INCLUDED_VCL_SOURCE_WINDOW_BUFFERDEVICE_HXX
13 #include <vcl/virdev.hxx>
14 #include <vcl/window.hxx>
16 namespace vcl
18 /// Buffers drawing on a vcl::RenderContext using a VirtualDevice.
19 class VCL_DLLPUBLIC BufferDevice
21 ScopedVclPtr<VirtualDevice> m_pBuffer;
22 VclPtr<vcl::Window> m_pWindow;
23 vcl::RenderContext& m_rRenderContext;
25 public:
26 BufferDevice(const VclPtr<vcl::Window>& pWindow, vcl::RenderContext& rRenderContext);
27 ~BufferDevice();
29 vcl::RenderContext* operator->();
30 vcl::RenderContext& operator*();
34 #endif // INCLUDED_VCL_SOURCE_WINDOW_BUFFERDEVICE_HXX
36 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */