Line data Source code
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_SFXMACROLOADER_HXX
21 : #define INCLUDED_SFXMACROLOADER_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/uno/Exception.hpp>
35 : #include <com/sun/star/util/URL.hpp>
36 :
37 : #include <cppuhelper/implbase4.hxx>
38 : #include <sfx2/sfxuno.hxx>
39 : #include <tools/errcode.hxx>
40 :
41 : class SfxObjectShell;
42 :
43 0 : class SfxMacroLoader : public cppu::WeakImplHelper4<
44 : css::frame::XDispatchProvider,
45 : css::frame::XNotifyingDispatch,
46 : css::frame::XSynchronousDispatch,
47 : css::lang::XServiceInfo>
48 : {
49 : css::uno::WeakReference < css::frame::XFrame > m_xFrame;
50 : SfxObjectShell* GetObjectShell_Impl();
51 :
52 : public:
53 : SfxMacroLoader(const ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any >& aArguments)
54 : throw (css::uno::Exception, css::uno::RuntimeException);
55 :
56 : virtual OUString SAL_CALL getImplementationName()
57 : throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
58 :
59 : virtual sal_Bool SAL_CALL supportsService(OUString const & ServiceName)
60 : throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
61 :
62 : virtual css::uno::Sequence<OUString> SAL_CALL getSupportedServiceNames()
63 : throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
64 :
65 : static ErrCode loadMacro( const OUString& aURL, css::uno::Any& rRetval, SfxObjectShell* pDoc=NULL ) throw( css::uno::RuntimeException );
66 :
67 : virtual css::uno::Reference < css::frame::XDispatch > SAL_CALL queryDispatch(
68 : const css::util::URL& aURL, const OUString& sTargetFrameName,
69 : FrameSearchFlags eSearchFlags )
70 : throw( css::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
71 :
72 : virtual css::uno::Sequence< css::uno::Reference < css::frame::XDispatch > > SAL_CALL queryDispatches(
73 : const css::uno::Sequence < css::frame::DispatchDescriptor >& seqDescriptor )
74 : throw( css::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
75 :
76 : 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 )
77 : throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
78 :
79 : virtual void SAL_CALL dispatch( const css::util::URL& aURL, const css::uno::Sequence< css::beans::PropertyValue >& lArgs )
80 : throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
81 :
82 : virtual css::uno::Any SAL_CALL dispatchWithReturnValue( const css::util::URL& aURL, const css::uno::Sequence< css::beans::PropertyValue >& lArgs )
83 : throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
84 :
85 : virtual void SAL_CALL addStatusListener( const css::uno::Reference< css::frame::XStatusListener >& xControl, const css::util::URL& aURL )
86 : throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
87 :
88 : virtual void SAL_CALL removeStatusListener( const css::uno::Reference< css::frame::XStatusListener >& xControl, const css::util::URL& aURL )
89 : throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
90 : };
91 :
92 : #endif
93 :
94 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|