fix baseline build (old cairo) - 'cairo_rectangle_int_t' does not name a type
[LibreOffice.git] / framework / inc / dispatch / mailtodispatcher.hxx
blob189e109ed41d0e84bd58b803a23f4778224ed8cb
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_FRAMEWORK_INC_DISPATCH_MAILTODISPATCHER_HXX
21 #define INCLUDED_FRAMEWORK_INC_DISPATCH_MAILTODISPATCHER_HXX
23 #include <macros/generic.hxx>
24 #include <macros/xinterface.hxx>
25 #include <macros/xtypeprovider.hxx>
26 #include <macros/xserviceinfo.hxx>
27 #include <general.h>
28 #include <stdtypes.h>
30 #include <com/sun/star/lang/XTypeProvider.hpp>
31 #include <com/sun/star/frame/XNotifyingDispatch.hpp>
32 #include <com/sun/star/frame/XDispatch.hpp>
33 #include <com/sun/star/frame/XDispatchProvider.hpp>
34 #include <com/sun/star/util/URL.hpp>
35 #include <com/sun/star/beans/PropertyValue.hpp>
36 #include <com/sun/star/frame/XStatusListener.hpp>
38 #include <cppuhelper/implbase3.hxx>
40 namespace framework{
42 /**
43 @short protocol handler for "mailto:" URLs
44 @descr It's a special dispatch object which is used registered for "mailto:*" URLs and
45 will be automatically used from the framework dispatch mechanism if such URL occurred.
47 @base OWeakObject
48 provides XWeak and ref count mechanism
50 @devstatus ready to use
52 class MailToDispatcher : public ::cppu::WeakImplHelper3<
53 css::lang::XServiceInfo,
54 css::frame::XDispatchProvider,
55 css::frame::XNotifyingDispatch> // => XDispatch
57 /* member */
58 private:
60 /// reference to global uno service manager which had created us
61 css::uno::Reference< css::uno::XComponentContext > m_xContext;
63 /* interface */
64 public:
66 // ctor/dtor
67 MailToDispatcher( const css::uno::Reference< css::uno::XComponentContext >& rxContext );
68 virtual ~MailToDispatcher( );
70 // XInterface, XTypeProvider, XServiceInfo
71 DECLARE_XSERVICEINFO
73 // XDispatchProvider
74 virtual css::uno::Reference< css::frame::XDispatch > SAL_CALL queryDispatch ( const css::util::URL& aURL ,
75 const OUString& sTarget ,
76 sal_Int32 nFlags ) throw( css::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
77 virtual css::uno::Sequence< css::uno::Reference< css::frame::XDispatch > > SAL_CALL queryDispatches( const css::uno::Sequence< css::frame::DispatchDescriptor >& lDescriptor ) throw( css::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
79 // XNotifyingDispatch
80 virtual void SAL_CALL dispatchWithNotification( const css::util::URL& aURL ,
81 const css::uno::Sequence< css::beans::PropertyValue >& lArguments,
82 const css::uno::Reference< css::frame::XDispatchResultListener >& xListener ) throw( css::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
84 // XDispatch
85 virtual void SAL_CALL dispatch ( const css::util::URL& aURL ,
86 const css::uno::Sequence< css::beans::PropertyValue >& lArguments ) throw( css::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
87 virtual void SAL_CALL addStatusListener ( const css::uno::Reference< css::frame::XStatusListener >& xListener ,
88 const css::util::URL& aURL ) throw( css::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
89 virtual void SAL_CALL removeStatusListener( const css::uno::Reference< css::frame::XStatusListener >& xListener ,
90 const css::util::URL& aURL ) throw( css::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
92 /* internal */
93 private:
95 bool implts_dispatch( const css::util::URL& aURL ,
96 const css::uno::Sequence< css::beans::PropertyValue >& lArguments ) throw( css::uno::RuntimeException );
98 }; // class MailToDispatcher
100 } // namespace framework
102 #endif // INCLUDED_FRAMEWORK_INC_DISPATCH_MAILTODISPATCHER_HXX
104 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */