update emoji autocorrect entries from po-files
[LibreOffice.git] / vcl / inc / opengl / x11 / salvd.hxx
blobe4e6ecda0860c2e6de2bb3e9e5a7cc0177d58f6a
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_INC_OPENGL_X11_SALVD_H
11 #define INCLUDED_VCL_INC_OPENGL_X11_SALVD_H
13 #include <prex.h>
14 #include <postx.h>
16 #include <unx/saltype.h>
17 #include <salvd.hxx>
19 class SalDisplay;
20 class X11OpenGLSalGraphics;
21 class X11SalGraphics;
23 class X11OpenGLSalVirtualDevice : public SalVirtualDevice
25 SalDisplay *mpDisplay;
26 X11SalGraphics *mpGraphics;
27 bool mbGraphics; // is Graphics used
28 SalX11Screen mnXScreen;
29 int mnWidth;
30 int mnHeight;
31 sal_uInt16 mnDepth;
33 public:
34 X11OpenGLSalVirtualDevice( SalGraphics *pGraphics,
35 long &nDX, long &nDY,
36 sal_uInt16 nBitCount,
37 const SystemGraphicsData *pData );
38 virtual ~X11OpenGLSalVirtualDevice();
40 // SalGeometryProvider
41 virtual long GetWidth() const SAL_OVERRIDE { return mnWidth; }
42 virtual long GetHeight() const SAL_OVERRIDE { return mnHeight; }
44 SalDisplay * GetDisplay() const { return mpDisplay; }
45 sal_uInt16 GetDepth() const { return mnDepth; }
46 SalX11Screen GetXScreenNumber() const { return mnXScreen; }
48 virtual SalGraphics* AcquireGraphics() SAL_OVERRIDE;
49 virtual void ReleaseGraphics( SalGraphics* pGraphics ) SAL_OVERRIDE;
51 // Set new size, without saving the old contents
52 virtual bool SetSize( long nNewDX, long nNewDY ) SAL_OVERRIDE;
55 #endif // INCLUDED_VCL_INC_OPENGL_X11_SALVD_H
57 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */