nss: upgrade to release 3.73
[LibreOffice.git] / sfx2 / source / inc / macroloader.hxx
blob051486c09adfee9d5df6f9464b716e90b0dae9b8
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_SFX2_SOURCE_INC_MACROLOADER_HXX
21 #define INCLUDED_SFX2_SOURCE_INC_MACROLOADER_HXX
23 #include <sal/config.h>
25 #include <com/sun/star/beans/PropertyValue.hpp>
26 #include <com/sun/star/lang/XServiceInfo.hpp>
27 #include <com/sun/star/frame/DispatchDescriptor.hpp>
28 #include <com/sun/star/frame/XDispatch.hpp>
29 #include <com/sun/star/frame/XDispatchProvider.hpp>
30 #include <com/sun/star/frame/XFrame.hpp>
31 #include <com/sun/star/frame/XNotifyingDispatch.hpp>
32 #include <com/sun/star/frame/XDispatchResultListener.hpp>
33 #include <com/sun/star/frame/XSynchronousDispatch.hpp>
34 #include <com/sun/star/util/URL.hpp>
36 #include <cppuhelper/implbase.hxx>
37 #include <cppuhelper/weakref.hxx>
38 #include <vcl/errcode.hxx>
40 class SfxObjectShell;
42 class SfxMacroLoader : public cppu::WeakImplHelper<
43 css::frame::XDispatchProvider,
44 css::frame::XNotifyingDispatch,
45 css::frame::XSynchronousDispatch,
46 css::lang::XServiceInfo>
48 css::uno::WeakReference < css::frame::XFrame > m_xFrame;
49 SfxObjectShell* GetObjectShell_Impl();
51 public:
52 /// @throws css::uno::Exception
53 /// @throws css::uno::RuntimeException
54 SfxMacroLoader(const css::uno::Sequence< css::uno::Any >& aArguments);
56 virtual OUString SAL_CALL getImplementationName() override;
58 virtual sal_Bool SAL_CALL supportsService(OUString const & ServiceName) override;
60 virtual css::uno::Sequence<OUString> SAL_CALL getSupportedServiceNames() override;
62 /// @throws css::uno::RuntimeException
63 /// @throws css::ucb::ContentCreationException
64 static ErrCode loadMacro( const OUString& aURL, css::uno::Any& rRetval, SfxObjectShell* pDoc );
66 virtual css::uno::Reference < css::frame::XDispatch > SAL_CALL queryDispatch(
67 const css::util::URL& aURL, const OUString& sTargetFrameName,
68 sal_Int32 eSearchFlags ) override;
70 virtual css::uno::Sequence< css::uno::Reference < css::frame::XDispatch > > SAL_CALL queryDispatches(
71 const css::uno::Sequence < css::frame::DispatchDescriptor >& seqDescriptor ) override;
73 virtual void SAL_CALL dispatchWithNotification( const css::util::URL& aURL, const css::uno::Sequence< css::beans::PropertyValue >& lArgs, const css::uno::Reference< css::frame::XDispatchResultListener >& Listener ) override;
75 virtual void SAL_CALL dispatch( const css::util::URL& aURL, const css::uno::Sequence< css::beans::PropertyValue >& lArgs ) override;
77 virtual css::uno::Any SAL_CALL dispatchWithReturnValue( const css::util::URL& aURL, const css::uno::Sequence< css::beans::PropertyValue >& lArgs ) override;
79 virtual void SAL_CALL addStatusListener( const css::uno::Reference< css::frame::XStatusListener >& xControl, const css::util::URL& aURL ) override;
81 virtual void SAL_CALL removeStatusListener( const css::uno::Reference< css::frame::XStatusListener >& xControl, const css::util::URL& aURL ) override;
84 #endif
86 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */