bump product version to 6.3.0.0.beta1
[LibreOffice.git] / avmedia / source / gstreamer / gstwindow.hxx
blob5c81e71afd047e6b93c264e075059b271ec74710
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 INCLUDED_AVMEDIA_SOURCE_GSTREAMER_GSTWINDOW_HXX
21 #define INCLUDED_AVMEDIA_SOURCE_GSTREAMER_GSTWINDOW_HXX
23 #include "gstcommon.hxx"
24 #include <cppuhelper/implbase.hxx>
25 #include <cppuhelper/interfacecontainer.h>
27 #include <com/sun/star/media/XPlayerWindow.hpp>
29 namespace avmedia { namespace gstreamer {
31 class Player;
33 class Window : public ::cppu::WeakImplHelper< css::media::XPlayerWindow,
34 css::lang::XServiceInfo >
36 public:
38 explicit Window();
39 virtual ~Window() override;
41 // XPlayerWindow
42 virtual void SAL_CALL update( ) override;
43 virtual sal_Bool SAL_CALL setZoomLevel( css::media::ZoomLevel ZoomLevel ) override;
44 virtual css::media::ZoomLevel SAL_CALL getZoomLevel( ) override;
45 virtual void SAL_CALL setPointerType( sal_Int32 nPointerType ) override;
47 // XWindow
48 virtual void SAL_CALL setPosSize( sal_Int32 X, sal_Int32 Y, sal_Int32 Width, sal_Int32 Height, sal_Int16 Flags ) override;
49 virtual css::awt::Rectangle SAL_CALL getPosSize( ) override;
50 virtual void SAL_CALL setVisible( sal_Bool Visible ) override;
51 virtual void SAL_CALL setEnable( sal_Bool Enable ) override;
52 virtual void SAL_CALL setFocus( ) override;
53 virtual void SAL_CALL addWindowListener( const css::uno::Reference< css::awt::XWindowListener >& xListener ) override;
54 virtual void SAL_CALL removeWindowListener( const css::uno::Reference< css::awt::XWindowListener >& xListener ) override;
55 virtual void SAL_CALL addFocusListener( const css::uno::Reference< css::awt::XFocusListener >& xListener ) override;
56 virtual void SAL_CALL removeFocusListener( const css::uno::Reference< css::awt::XFocusListener >& xListener ) override;
57 virtual void SAL_CALL addKeyListener( const css::uno::Reference< css::awt::XKeyListener >& xListener ) override;
58 virtual void SAL_CALL removeKeyListener( const css::uno::Reference< css::awt::XKeyListener >& xListener ) override;
59 virtual void SAL_CALL addMouseListener( const css::uno::Reference< css::awt::XMouseListener >& xListener ) override;
60 virtual void SAL_CALL removeMouseListener( const css::uno::Reference< css::awt::XMouseListener >& xListener ) override;
61 virtual void SAL_CALL addMouseMotionListener( const css::uno::Reference< css::awt::XMouseMotionListener >& xListener ) override;
62 virtual void SAL_CALL removeMouseMotionListener( const css::uno::Reference< css::awt::XMouseMotionListener >& xListener ) override;
63 virtual void SAL_CALL addPaintListener( const css::uno::Reference< css::awt::XPaintListener >& xListener ) override;
64 virtual void SAL_CALL removePaintListener( const css::uno::Reference< css::awt::XPaintListener >& xListener ) override;
66 // XComponent
67 virtual void SAL_CALL dispose( ) override;
68 virtual void SAL_CALL addEventListener( const css::uno::Reference< css::lang::XEventListener >& xListener ) override;
69 virtual void SAL_CALL removeEventListener( const css::uno::Reference< css::lang::XEventListener >& aListener ) override;
71 // XServiceInfo
72 virtual OUString SAL_CALL getImplementationName( ) override;
73 virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) override;
74 virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames( ) override;
76 private:
78 css::media::ZoomLevel meZoomLevel;
81 } // namespace gstreamer
82 } // namespace avmedia
84 #endif // INCLUDED_AVMEDIA_SOURCE_GSTREAMER_GSTWINDOW_HXX
86 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */