1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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/.
10 #ifndef INCLUDED_VCL_INC_OPENGL_X11_SALVD_H
11 #define INCLUDED_VCL_INC_OPENGL_X11_SALVD_H
16 #include <unx/saltype.h>
20 class X11OpenGLSalGraphics
;
23 class X11OpenGLSalVirtualDevice
: public SalVirtualDevice
25 SalDisplay
*mpDisplay
;
26 X11SalGraphics
*mpGraphics
;
27 bool mbGraphics
; // is Graphics used
28 SalX11Screen mnXScreen
;
34 X11OpenGLSalVirtualDevice( SalGraphics
*pGraphics
,
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: */