tdf#130857 qt weld: Implement QtInstanceWidget::strip_mnemonic
[LibreOffice.git] / odk / examples / DevelopersGuide / Components / Addons / ProtocolHandlerAddon_cpp / addon.hxx
blob427b47b2abe8320db9e59f4f5c2a62c0eef5992a
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*************************************************************************
4 * The Contents of this file are made available subject to the terms of
5 * the BSD license.
7 * Copyright 2000, 2010 Oracle and/or its affiliates.
8 * All rights reserved.
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 * 3. Neither the name of Sun Microsystems, Inc. nor the names of its
19 * contributors may be used to endorse or promote products derived
20 * from this software without specific prior written permission.
22 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
23 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
24 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
25 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
26 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
27 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
28 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
29 * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
30 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
31 * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
32 * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34 *************************************************************************/
36 #ifndef INCLUDED_EXAMPLES_COMPONENTS_ADDONS_PROTOCOLHANDLERADDON_CPP_ADDON_HXX
37 #define INCLUDED_EXAMPLES_COMPONENTS_ADDONS_PROTOCOLHANDLERADDON_CPP_ADDON_HXX
39 #include <com/sun/star/lang/XInitialization.hpp>
40 #include <com/sun/star/frame/XDispatchProvider.hpp>
41 #include <com/sun/star/lang/XServiceInfo.hpp>
42 #include <cppuhelper/implbase4.hxx>
44 #define IMPLEMENTATION_NAME "org.openoffice.Office.addon.example"
46 namespace com
48 namespace sun
50 namespace star
52 namespace frame
54 class XFrame;
56 namespace awt
58 class XToolkit;
60 namespace uno
62 class XComponentContext;
68 class Addon : public cppu::WeakImplHelper4
70 com::sun::star::frame::XDispatchProvider,
71 com::sun::star::frame::XDispatch,
72 com::sun::star::lang::XInitialization,
73 com::sun::star::lang::XServiceInfo
76 private:
77 ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > mxContext;
78 ::com::sun::star::uno::Reference< ::com::sun::star::frame::XFrame > mxFrame;
79 ::com::sun::star::uno::Reference< ::com::sun::star::awt::XToolkit > mxToolkit;
81 public:
82 Addon( const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > &rxContext)
83 : mxContext( rxContext ) {}
85 // XDispatchProvider
86 virtual ::com::sun::star::uno::Reference< ::com::sun::star::frame::XDispatch >
87 SAL_CALL queryDispatch( const ::com::sun::star::util::URL& aURL,
88 const ::rtl::OUString& sTargetFrameName, sal_Int32 nSearchFlags );
89 virtual ::com::sun::star::uno::Sequence < ::com::sun::star::uno::Reference< ::com::sun::star::frame::XDispatch > >
90 SAL_CALL queryDispatches(
91 const ::com::sun::star::uno::Sequence < ::com::sun::star::frame::DispatchDescriptor >& seqDescriptor );
93 // XDispatch
94 virtual void SAL_CALL dispatch( const ::com::sun::star::util::URL& aURL,
95 const ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >& lArgs );
96 virtual void SAL_CALL addStatusListener( const ::com::sun::star::uno::Reference< ::com::sun::star::frame::XStatusListener >& xControl,
97 const ::com::sun::star::util::URL& aURL );
98 virtual void SAL_CALL removeStatusListener( const ::com::sun::star::uno::Reference< ::com::sun::star::frame::XStatusListener >& xControl,
99 const ::com::sun::star::util::URL& aURL );
101 // XInitialization
102 virtual void SAL_CALL initialize( const ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any >& aArguments );
104 // XServiceInfo
105 virtual ::rtl::OUString SAL_CALL getImplementationName( );
106 virtual sal_Bool SAL_CALL supportsService( const ::rtl::OUString& ServiceName );
107 virtual ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL getSupportedServiceNames( );
110 ::rtl::OUString Addon_getImplementationName();
112 sal_Bool SAL_CALL Addon_supportsService( const ::rtl::OUString& ServiceName );
114 ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL Addon_getSupportedServiceNames( );
116 ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface >
117 SAL_CALL Addon_createInstance( const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > & rContext);
119 #endif // INCLUDED_EXAMPLES_COMPONENTS_ADDONS_PROTOCOLHANDLERADDON_CPP_ADDON_HXX
121 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */