fdo#74697 Add Bluez 5 support for impress remote.
[LibreOffice.git] / avmedia / source / quicktime / manager.mm
blobfb9c41af31320a4d01b6be6bd33ea7bb68e8b3b0
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3  * This file is part of the LibreOffice project.
4  *
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/.
8  *
9  * This file incorporates work covered by the following license notice:
10  *
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 .
18  */
20 #include "manager.hxx"
21 #include "player.hxx"
22 #include <tools/urlobj.hxx>
24 using namespace ::com::sun::star;
26 namespace avmedia { namespace quicktime {
27 // ----------------
28 // - Manager -
29 // ----------------
31 Manager::Manager( const uno::Reference< lang::XMultiServiceFactory >& rxMgr ) :
32     mxMgr( rxMgr )
34     OSL_TRACE( "avmediaquicktime: Manager::Manager" );
37 // ------------------------------------------------------------------------------
39 Manager::~Manager()
43 // ------------------------------------------------------------------------------
45 uno::Reference< media::XPlayer > SAL_CALL Manager::createPlayer( const ::rtl::OUString& rURL )
46     throw (uno::RuntimeException)
48     Player*                             pPlayer( new Player( mxMgr ) );
49     uno::Reference< media::XPlayer >    xRet( pPlayer );
50     INetURLObject                       aURL( rURL );
52     OSL_TRACE( "avmediaquicktime: Manager::createPlayer" );
54     if( !pPlayer->create( aURL.GetMainURL( INetURLObject::DECODE_UNAMBIGUOUS ) )  )
55         xRet = uno::Reference< media::XPlayer >();
57     return xRet;
60 // ------------------------------------------------------------------------------
62 ::rtl::OUString SAL_CALL Manager::getImplementationName(  )
63     throw (uno::RuntimeException)
65     return ::rtl::OUString( AVMEDIA_QUICKTIME_MANAGER_IMPLEMENTATIONNAME );
68 // ------------------------------------------------------------------------------
70 sal_Bool SAL_CALL Manager::supportsService( const ::rtl::OUString& ServiceName )
71     throw (uno::RuntimeException)
73     return ( ServiceName == AVMEDIA_QUICKTIME_MANAGER_SERVICENAME );
76 // ------------------------------------------------------------------------------
78 uno::Sequence< ::rtl::OUString > SAL_CALL Manager::getSupportedServiceNames(  )
79     throw (uno::RuntimeException)
81     uno::Sequence< ::rtl::OUString > aRet(1);
82     aRet[0] = ::rtl::OUString( AVMEDIA_QUICKTIME_MANAGER_SERVICENAME );
84     return aRet;
87 } // namespace quicktime
88 } // namespace avmedia
90 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */