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_AVMEDIA_SOURCE_OPENGL_OGLWINDOW_HXX
11 #define INCLUDED_AVMEDIA_SOURCE_OPENGL_OGLWINDOW_HXX
13 #include "oglplayer.hxx"
15 #include <cppuhelper/compbase2.hxx>
16 #include <com/sun/star/lang/XServiceInfo.hpp>
17 #include <com/sun/star/media/XPlayerWindow.hpp>
18 #include <com/sun/star/media/ZoomLevel.hpp>
22 #include <vcl/opengl/OpenGLContext.hxx>
23 #include <vcl/syschild.hxx>
25 namespace avmedia
{ namespace ogl
{
27 class OGLWindow
: public ::cppu::WeakImplHelper2
< com::sun::star::media::XPlayerWindow
,
28 com::sun::star::lang::XServiceInfo
>
31 OGLWindow( libgltf::glTFHandle
& rHandle
, const rtl::Reference
<OpenGLContext
> & rContext
, vcl::Window
& rEventHandlerParent
);
34 virtual void SAL_CALL
update() throw (com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
35 virtual sal_Bool SAL_CALL
setZoomLevel( com::sun::star::media::ZoomLevel ZoomLevel
) throw (com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
36 virtual com::sun::star::media::ZoomLevel SAL_CALL
getZoomLevel() throw (com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
37 virtual void SAL_CALL
setPointerType( sal_Int32 SystemPointerType
) throw (com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
39 virtual OUString SAL_CALL
getImplementationName() throw (com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
40 virtual sal_Bool SAL_CALL
supportsService( const OUString
& rServiceName
) throw (com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
41 virtual com::sun::star::uno::Sequence
< OUString
> SAL_CALL
getSupportedServiceNames() throw (com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
43 virtual void SAL_CALL
dispose() throw (com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
44 virtual void SAL_CALL
addEventListener( const com::sun::star::uno::Reference
< com::sun::star::lang::XEventListener
>& xListener
) throw (com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
45 virtual void SAL_CALL
removeEventListener( const com::sun::star::uno::Reference
< com::sun::star::lang::XEventListener
>& aListener
) throw (com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
47 virtual void SAL_CALL
setPosSize( sal_Int32 nX
, sal_Int32 nY
, sal_Int32 nWidth
, sal_Int32 nHeight
, sal_Int16 nFlags
) throw (com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
48 virtual com::sun::star::awt::Rectangle SAL_CALL
getPosSize() throw (com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
49 virtual void SAL_CALL
setVisible( sal_Bool Visible
) throw (com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
50 virtual void SAL_CALL
setEnable( sal_Bool Enable
) throw (com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
51 virtual void SAL_CALL
setFocus() throw (com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
52 virtual void SAL_CALL
addWindowListener( const com::sun::star::uno::Reference
< com::sun::star::awt::XWindowListener
>& xListener
) throw (com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
53 virtual void SAL_CALL
removeWindowListener( const com::sun::star::uno::Reference
< com::sun::star::awt::XWindowListener
>& xListener
) throw (com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
54 virtual void SAL_CALL
addFocusListener( const com::sun::star::uno::Reference
< com::sun::star::awt::XFocusListener
>& xListener
) throw (com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
55 virtual void SAL_CALL
removeFocusListener( const com::sun::star::uno::Reference
< com::sun::star::awt::XFocusListener
>& xListener
) throw (com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
56 virtual void SAL_CALL
addKeyListener( const com::sun::star::uno::Reference
< com::sun::star::awt::XKeyListener
>& xListener
) throw (com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
57 virtual void SAL_CALL
removeKeyListener( const com::sun::star::uno::Reference
< com::sun::star::awt::XKeyListener
>& xListener
) throw (com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
58 virtual void SAL_CALL
addMouseListener( const com::sun::star::uno::Reference
< com::sun::star::awt::XMouseListener
>& xListener
) throw (com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
59 virtual void SAL_CALL
removeMouseListener( const com::sun::star::uno::Reference
< com::sun::star::awt::XMouseListener
>& xListener
) throw (com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
60 virtual void SAL_CALL
addMouseMotionListener( const com::sun::star::uno::Reference
< com::sun::star::awt::XMouseMotionListener
>& xListener
) throw (com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
61 virtual void SAL_CALL
removeMouseMotionListener( const com::sun::star::uno::Reference
< com::sun::star::awt::XMouseMotionListener
>& xListener
) throw (com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
62 virtual void SAL_CALL
addPaintListener( const com::sun::star::uno::Reference
< com::sun::star::awt::XPaintListener
>& xListener
) throw (com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
63 virtual void SAL_CALL
removePaintListener( const com::sun::star::uno::Reference
< com::sun::star::awt::XPaintListener
>& xListener
) throw (com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
66 DECL_LINK( FocusGrabber
, VclWindowEvent
* );
67 DECL_LINK( CameraHandler
, VclWindowEvent
* );
69 libgltf::glTFHandle
& m_rHandle
;
70 rtl::Reference
<OpenGLContext
> m_xContext
;
71 vcl::Window
& m_rEventHandler
;
74 Point m_aLastMousePos
;
79 } // namespace avmedia
81 #endif // INCLUDED_AVMEDIA_SOURCE_OPENGL_OGLWINDOW_HXX
83 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */