LibreOffice Module sfx2 (master) 1
macroloader.hxx
Go to the documentation of this file.
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 */
19
20#ifndef INCLUDED_SFX2_SOURCE_INC_MACROLOADER_HXX
21#define INCLUDED_SFX2_SOURCE_INC_MACROLOADER_HXX
22
23#include <sal/config.h>
24
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>
35
39
40class SfxObjectShell;
41
42class SfxMacroLoader final : public cppu::WeakImplHelper<
43 css::frame::XDispatchProvider,
44 css::frame::XNotifyingDispatch,
45 css::frame::XSynchronousDispatch,
46 css::lang::XServiceInfo>
47{
48 css::uno::WeakReference < css::frame::XFrame > m_xFrame;
50
51public:
54 SfxMacroLoader(const css::uno::Sequence< css::uno::Any >& aArguments);
55
56 virtual OUString SAL_CALL getImplementationName() override;
57
58 virtual sal_Bool SAL_CALL supportsService(OUString const & ServiceName) override;
59
60 virtual css::uno::Sequence<OUString> SAL_CALL getSupportedServiceNames() override;
61
64 static ErrCode loadMacro( const OUString& aURL, css::uno::Any& rRetval, SfxObjectShell* pDoc );
65
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;
69
70 virtual css::uno::Sequence< css::uno::Reference < css::frame::XDispatch > > SAL_CALL queryDispatches(
71 const css::uno::Sequence < css::frame::DispatchDescriptor >& seqDescriptor ) override;
72
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;
74
75 virtual void SAL_CALL dispatch( const css::util::URL& aURL, const css::uno::Sequence< css::beans::PropertyValue >& lArgs ) override;
76
77 virtual css::uno::Any SAL_CALL dispatchWithReturnValue( const css::util::URL& aURL, const css::uno::Sequence< css::beans::PropertyValue >& lArgs ) override;
78
79 virtual void SAL_CALL addStatusListener( const css::uno::Reference< css::frame::XStatusListener >& xControl, const css::util::URL& aURL ) override;
80
81 virtual void SAL_CALL removeStatusListener( const css::uno::Reference< css::frame::XStatusListener >& xControl, const css::util::URL& aURL ) override;
82
83 static SfxObjectShell* GetObjectShell(const css::uno::Reference<css::frame::XFrame>& xFrame);
84};
85
86#endif
87
88/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
css::uno::WeakReference< css::frame::XFrame > m_xFrame
Definition: macroloader.hxx:48
virtual void SAL_CALL removeStatusListener(const css::uno::Reference< css::frame::XStatusListener > &xControl, const css::util::URL &aURL) override
static SfxObjectShell * GetObjectShell(const css::uno::Reference< css::frame::XFrame > &xFrame)
Definition: macroloader.cxx:71
virtual OUString SAL_CALL getImplementationName() override
Definition: macroloader.cxx:56
virtual sal_Bool SAL_CALL supportsService(OUString const &ServiceName) override
Definition: macroloader.cxx:61
virtual css::uno::Sequence< css::uno::Reference< css::frame::XDispatch > > SAL_CALL queryDispatches(const css::uno::Sequence< css::frame::DispatchDescriptor > &seqDescriptor) override
virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() override
Definition: macroloader.cxx:66
SfxObjectShell * GetObjectShell_Impl()
Definition: macroloader.cxx:91
virtual css::uno::Reference< css::frame::XDispatch > SAL_CALL queryDispatch(const css::util::URL &aURL, const OUString &sTargetFrameName, sal_Int32 eSearchFlags) override
Definition: macroloader.cxx:97
virtual void SAL_CALL dispatch(const css::util::URL &aURL, const css::uno::Sequence< css::beans::PropertyValue > &lArgs) override
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
SfxMacroLoader(const css::uno::Sequence< css::uno::Any > &aArguments)
Definition: macroloader.cxx:46
virtual void SAL_CALL addStatusListener(const css::uno::Reference< css::frame::XStatusListener > &xControl, const css::util::URL &aURL) override
static ErrCode loadMacro(const OUString &aURL, css::uno::Any &rRetval, SfxObjectShell *pDoc)
virtual css::uno::Any SAL_CALL dispatchWithReturnValue(const css::util::URL &aURL, const css::uno::Sequence< css::beans::PropertyValue > &lArgs) override
unsigned char sal_Bool