1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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 .
22 #include <com/sun/star/frame/XNotifyingDispatch.hpp>
23 #include <com/sun/star/frame/XDispatch.hpp>
24 #include <com/sun/star/frame/XDispatchProvider.hpp>
25 #include <com/sun/star/util/URL.hpp>
26 #include <com/sun/star/beans/PropertyValue.hpp>
27 #include <com/sun/star/frame/XStatusListener.hpp>
28 #include <com/sun/star/lang/XServiceInfo.hpp>
29 #include <com/sun/star/uno/XComponentContext.hpp>
31 #include <cppuhelper/implbase.hxx>
36 @short protocol handler for "service:*" URLs
37 @descr It's a special dispatch/provider object which is registered for such URL pattern and will
38 be automatically used by the framework dispatch mechanism if such URL occurred.
39 His job is to create any registered uno components which must be coded inside
40 dispatched URL (may with some optional given parameters). After that such created
41 service must be hold his self alive. Such mechanism can be useful for UI components
42 (e.g. Dialogs, Wizards) only.
45 provides XWeak and ref count mechanism
47 @devstatus ready to use
49 class ServiceHandler final
: public ::cppu::WeakImplHelper
<
50 css::lang::XServiceInfo
,
51 css::frame::XDispatchProvider
,
52 css::frame::XNotifyingDispatch
> // => XDispatch
57 /// reference to global uno service manager which had created us
58 css::uno::Reference
< css::uno::XComponentContext
> m_xContext
;
64 ServiceHandler( css::uno::Reference
< css::uno::XComponentContext
> );
65 virtual ~ServiceHandler( ) override
;
67 /* interface XServiceInfo */
68 virtual OUString SAL_CALL
getImplementationName() override
;
69 virtual sal_Bool SAL_CALL
supportsService( const OUString
& sServiceName
) override
;
70 virtual css::uno::Sequence
< OUString
> SAL_CALL
getSupportedServiceNames() override
;
73 virtual css::uno::Reference
< css::frame::XDispatch
> SAL_CALL
queryDispatch ( const css::util::URL
& aURL
,
74 const OUString
& sTarget
,
75 sal_Int32 nFlags
) override
;
76 virtual css::uno::Sequence
< css::uno::Reference
< css::frame::XDispatch
> > SAL_CALL
queryDispatches( const css::uno::Sequence
< css::frame::DispatchDescriptor
>& lDescriptor
) override
;
79 virtual void SAL_CALL
dispatchWithNotification( const css::util::URL
& aURL
,
80 const css::uno::Sequence
< css::beans::PropertyValue
>& lArguments
,
81 const css::uno::Reference
< css::frame::XDispatchResultListener
>& xListener
) override
;
84 virtual void SAL_CALL
dispatch ( const css::util::URL
& aURL
,
85 const css::uno::Sequence
< css::beans::PropertyValue
>& lArguments
) override
;
86 virtual void SAL_CALL
addStatusListener ( const css::uno::Reference
< css::frame::XStatusListener
>& xListener
,
87 const css::util::URL
& aURL
) override
;
88 virtual void SAL_CALL
removeStatusListener( const css::uno::Reference
< css::frame::XStatusListener
>& xListener
,
89 const css::util::URL
& aURL
) override
;
93 /// @throws css::uno::RuntimeException
94 css::uno::Reference
< css::uno::XInterface
> implts_dispatch( const css::util::URL
& aURL
);
96 }; // class ServiceHandler
98 } // namespace framework
100 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */