Version 5.4.3.2, tag libreoffice-5.4.3.2
[LibreOffice.git] / avmedia / source / quicktime / player.hxx
blobf145c79fb120b794013059b584b40e1c1e3b1f9d
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_QUICKTIME_PLAYER_HXX
21 #define INCLUDED_AVMEDIA_SOURCE_QUICKTIME_PLAYER_HXX
23 #include "quicktimecommon.hxx"
24 #include <cppuhelper/implbase.hxx>
25 #include "com/sun/star/media/XPlayer.hpp"
27 namespace avmedia { namespace quicktime {
29 class Player : public ::cppu::WeakImplHelper< css::media::XPlayer,
30 css::lang::XServiceInfo >
32 public:
34 Player( const css::uno::Reference< css::lang::XMultiServiceFactory >& rxMgr );
35 virtual ~Player();
37 bool create( const OUString& rURL );
39 // XPlayer
40 virtual void SAL_CALL start( ) override;
41 virtual void SAL_CALL stop( ) override;
42 virtual sal_Bool SAL_CALL isPlaying( ) override;
43 virtual double SAL_CALL getDuration( ) override;
44 virtual void SAL_CALL setMediaTime( double fTime ) override;
45 virtual double SAL_CALL getMediaTime( ) override;
46 virtual void SAL_CALL setPlaybackLoop( sal_Bool bSet ) override;
47 virtual sal_Bool SAL_CALL isPlaybackLoop( ) override;
48 virtual void SAL_CALL setMute( sal_Bool bSet ) override;
49 virtual sal_Bool SAL_CALL isMute( ) override;
50 virtual void SAL_CALL setVolumeDB( sal_Int16 nVolumeDB ) override;
51 virtual sal_Int16 SAL_CALL getVolumeDB( ) override;
52 virtual css::awt::Size SAL_CALL getPreferredPlayerWindowSize( ) override;
53 virtual css::uno::Reference< css::media::XPlayerWindow > SAL_CALL createPlayerWindow( const css::uno::Sequence< css::uno::Any >& aArguments ) override;
54 virtual css::uno::Reference< css::media::XFrameGrabber > SAL_CALL createFrameGrabber( ) override;
55 // XServiceInfo
56 virtual OUString SAL_CALL getImplementationName( ) override;
57 virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) override;
58 virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames( ) override;
60 QTMovie* getMovie();
62 private:
63 css::uno::Reference< css::lang::XMultiServiceFactory > mxMgr;
65 OUString maURL;
67 QTMovie *mpMovie; // the Movie object
69 float mnUnmutedVolume;
70 double mnStopTime;
72 bool mbMuted;
73 bool mbInitialized;
76 } // namespace quicktime
77 } // namespace avmedia
79 #endif // INCLUDED_AVMEDIA_SOURCE_QUICKTIME_PLAYER_HXX
81 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */