Version 5.4.3.2, tag libreoffice-5.4.3.2
[LibreOffice.git] / avmedia / source / macavf / player.hxx
blob176f6f502cea6bb97d156e38ac01a7846a0d9194
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_MACAVF_PLAYER_HXX
21 #define INCLUDED_AVMEDIA_SOURCE_MACAVF_PLAYER_HXX
23 #include <osl/conditn.h>
24 #include "macavfcommon.hxx"
25 #include <cppuhelper/implbase.hxx>
27 #include "com/sun/star/media/XPlayer.hpp"
29 namespace avmedia { namespace macavf {
31 class Player
32 : public MacAVObserverHandler
33 , public ::cppu::WeakImplHelper< css::media::XPlayer,
34 css::lang::XServiceInfo >
36 public:
37 explicit Player( const css::uno::Reference< css::lang::XMultiServiceFactory >& );
38 virtual ~Player() override;
40 bool create( const ::rtl::OUString& rURL );
41 bool create( AVAsset* );
43 // XPlayer
44 virtual void SAL_CALL start() override;
45 virtual void SAL_CALL stop() override;
46 virtual sal_Bool SAL_CALL isPlaying() override;
47 virtual double SAL_CALL getDuration() override;
48 virtual void SAL_CALL setMediaTime( double fTime ) override;
49 virtual double SAL_CALL getMediaTime() override;
50 /// @throws css::uno::RuntimeException
51 virtual void SAL_CALL setStopTime( double fTime );
52 /// @throws css::uno::RuntimeException
53 virtual double SAL_CALL getStopTime();
54 virtual void SAL_CALL setPlaybackLoop( sal_Bool bSet ) override;
55 virtual sal_Bool SAL_CALL isPlaybackLoop() override;
56 virtual void SAL_CALL setMute( sal_Bool bSet ) override;
57 virtual sal_Bool SAL_CALL isMute() override;
58 virtual void SAL_CALL setVolumeDB( sal_Int16 nVolumeDB ) override;
59 virtual sal_Int16 SAL_CALL getVolumeDB() override;
60 virtual css::awt::Size SAL_CALL getPreferredPlayerWindowSize( ) override;
61 virtual css::uno::Reference< css::media::XPlayerWindow > SAL_CALL createPlayerWindow( const css::uno::Sequence< css::uno::Any >& aArguments ) override;
62 virtual css::uno::Reference< css::media::XFrameGrabber > SAL_CALL createFrameGrabber( ) override;
63 // XServiceInfo
64 virtual ::rtl::OUString SAL_CALL getImplementationName() override;
65 virtual sal_Bool SAL_CALL supportsService( const ::rtl::OUString& ServiceName ) override;
66 virtual css::uno::Sequence< ::rtl::OUString > SAL_CALL getSupportedServiceNames( ) override;
68 AVPlayer* getAVPlayer() const { return mpPlayer; }
69 virtual bool handleObservation( NSString* pKeyPath ) override;
71 private:
72 css::uno::Reference< css::lang::XMultiServiceFactory > mxMgr;
74 AVPlayer* mpPlayer;
76 float mfUnmutedVolume;
77 double mfStopTime;
79 bool mbMuted;
80 bool mbLooping;
83 } // namespace macavf
84 } // namespace avmedia
86 #endif // INCLUDED_AVMEDIA_SOURCE_MACAVF_PLAYER_HXX
88 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */