bump product version to 6.3.0.0.beta1
[LibreOffice.git] / avmedia / source / vlc / vlcplayer.hxx
blobc5248707d0449375ba723481d4a61612c73f3e15
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_VLC_VLCPLAYER_HXX
21 #define INCLUDED_AVMEDIA_SOURCE_VLC_VLCPLAYER_HXX
23 #include "vlccommon.hxx"
24 #include <cppuhelper/compbase.hxx>
25 #include <com/sun/star/media/XPlayer.hpp>
26 #include <cppuhelper/basemutex.hxx>
28 #include <wrapper/Instance.hxx>
29 #include <wrapper/Media.hxx>
30 #include <wrapper/Player.hxx>
31 #include <wrapper/EventManager.hxx>
33 namespace avmedia {
34 namespace vlc {
36 typedef ::cppu::WeakComponentImplHelper< css::media::XPlayer,
37 css::lang::XServiceInfo > VLC_Base;
39 class VLCPlayer : public ::cppu::BaseMutex,
40 public VLC_Base
42 wrapper::EventHandler& mEventHandler;
44 wrapper::Media mMedia;
45 wrapper::Player mPlayer;
46 wrapper::EventManager mEventManager;
47 const OUString mUrl;
48 bool mPlaybackLoop;
49 css::uno::Reference< css::media::XFrameGrabber > mrFrameGrabber;
50 intptr_t mPrevWinID;
51 public:
52 VLCPlayer( const OUString& url,
53 wrapper::Instance& instance,
54 wrapper::EventHandler& eh );
56 void setVideoSize( unsigned width, unsigned height );
58 void setWindowID( const intptr_t windowID );
60 void SAL_CALL start() override;
61 void SAL_CALL stop() override;
62 sal_Bool SAL_CALL isPlaying() override;
63 double SAL_CALL getDuration() override;
64 void SAL_CALL setMediaTime( double fTime ) override;
65 double SAL_CALL getMediaTime() override;
66 void SAL_CALL setPlaybackLoop( sal_Bool bSet ) override;
67 sal_Bool SAL_CALL isPlaybackLoop() override;
68 void SAL_CALL setVolumeDB( ::sal_Int16 nDB ) override;
69 ::sal_Int16 SAL_CALL getVolumeDB() override;
70 void SAL_CALL setMute( sal_Bool bSet ) override;
71 sal_Bool SAL_CALL isMute() override;
72 css::awt::Size SAL_CALL getPreferredPlayerWindowSize() override;
73 css::uno::Reference< css::media::XPlayerWindow > SAL_CALL createPlayerWindow( const css::uno::Sequence< css::uno::Any >& aArguments ) override;
74 css::uno::Reference< css::media::XFrameGrabber > SAL_CALL createFrameGrabber() override;
76 OUString SAL_CALL getImplementationName() override;
77 sal_Bool SAL_CALL supportsService( const OUString& serviceName ) override;
78 css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() override;
80 private:
81 void replay();
87 #endif
89 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */