Version 6.4.0.0.beta1, tag libreoffice-6.4.0.0.beta1
[LibreOffice.git] / ucb / source / core / cmdenv.hxx
blob546df31418c6f217a9d81cbad30e1942ca77ecfc
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_UCB_SOURCE_CORE_CMDENV_HXX
21 #define INCLUDED_UCB_SOURCE_CORE_CMDENV_HXX
23 #include <cppuhelper/implbase.hxx>
25 #include <com/sun/star/lang/XInitialization.hpp>
26 #include <com/sun/star/lang/XMultiServiceFactory.hpp>
27 #include <com/sun/star/lang/XServiceInfo.hpp>
28 #include <com/sun/star/lang/XSingleServiceFactory.hpp>
29 #include <com/sun/star/ucb/XCommandEnvironment.hpp>
31 namespace ucb_cmdenv {
33 class UcbCommandEnvironment :
34 public cppu::WeakImplHelper< css::lang::XInitialization,
35 css::lang::XServiceInfo,
36 css::ucb::XCommandEnvironment >
38 css::uno::Reference< css::task::XInteractionHandler > m_xIH;
39 css::uno::Reference< css::ucb::XProgressHandler > m_xPH;
41 public:
42 explicit UcbCommandEnvironment();
43 virtual ~UcbCommandEnvironment() override;
45 // XInitialization
46 virtual void SAL_CALL
47 initialize( const css::uno::Sequence< css::uno::Any >& aArguments ) override;
49 // XServiceInfo
50 virtual OUString SAL_CALL getImplementationName() override;
52 virtual sal_Bool SAL_CALL
53 supportsService( const OUString& ServiceName ) override;
55 virtual css::uno::Sequence< OUString > SAL_CALL
56 getSupportedServiceNames() override;
58 // XCommandEnvironment
59 virtual css::uno::Reference< css::task::XInteractionHandler > SAL_CALL
60 getInteractionHandler() override;
61 virtual css::uno::Reference< css::ucb::XProgressHandler > SAL_CALL
62 getProgressHandler() override;
64 // Non-UNO interfaces
65 static OUString getImplementationName_Static();
66 static css::uno::Sequence< OUString > getSupportedServiceNames_Static();
68 static css::uno::Reference< css::lang::XSingleServiceFactory >
69 createServiceFactory( const css::uno::Reference< css::lang::XMultiServiceFactory > & rxServiceMgr );
72 } // namespace ucb_cmdenv
74 #endif // INCLUDED_UCB_SOURCE_CORE_CMDENV_HXX
76 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */