diff options
Diffstat (limited to 'avmedia/source/vlc/vlcmanager.hxx')
-rw-r--r-- | avmedia/source/vlc/vlcmanager.hxx | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/avmedia/source/vlc/vlcmanager.hxx b/avmedia/source/vlc/vlcmanager.hxx new file mode 100644 index 000000000..3615ab17d --- /dev/null +++ b/avmedia/source/vlc/vlcmanager.hxx @@ -0,0 +1,54 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +/* + * This file is part of the LibreOffice project. + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + * + * This file incorporates work covered by the following license notice: + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed + * with this work for additional information regarding copyright + * ownership. The ASF licenses this file to you under the Apache + * License, Version 2.0 (the "License"); you may not use this file + * except in compliance with the License. You may obtain a copy of + * the License at http://www.apache.org/licenses/LICENSE-2.0 . + */ + +#pragma once +#include <com/sun/star/media/XManager.hpp> +#include "vlccommon.hxx" +#include <wrapper/Wrapper.hxx> +#include <memory> +#include <cppuhelper/implbase.hxx> + +namespace avmedia { +namespace vlc { + +class Manager : public ::cppu::WeakImplHelper< css::media::XManager, + css::lang::XServiceInfo > +{ + std::unique_ptr<wrapper::Instance> mInstance; + wrapper::EventHandler mEventHandler; +public: + explicit Manager(); + virtual ~Manager() override; + + css::uno::Reference< css::media::XPlayer > SAL_CALL createPlayer( const OUString& aURL ) override; + + OUString SAL_CALL getImplementationName() override; + sal_Bool SAL_CALL supportsService( const OUString& serviceName ) override; + css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() override; + +private: + css::uno::Reference< css::media::XPlayer > mPlayer; + OUString mURL; + bool m_is_vlc_found; +}; + +} +} + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |