update dev300-m58
[ooovba.git] / extensions / source / abpilot / unodialogabp.hxx
blob6eb0b3f4706622f64cf06b0dee3caa4013f2763f
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: unodialogabp.hxx,v $
10 * $Revision: 1.9 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 #ifndef EXTENSIONS_ABP_UNODIALOG_HXX
32 #define EXTENSIONS_ABP_UNODIALOG_HXX
34 #include <svtools/genericunodialog.hxx>
35 #include <comphelper/proparrhlp.hxx>
36 #include "componentmodule.hxx"
37 #include <com/sun/star/task/XJob.hpp>
38 #include <cppuhelper/implbase1.hxx>
40 //.........................................................................
41 namespace abp
43 //.........................................................................
45 //=====================================================================
46 //= OABSPilotUno
47 //=====================================================================
48 class OABSPilotUno;
49 typedef ::svt::OGenericUnoDialog OABSPilotUno_DBase;
50 typedef ::cppu::ImplHelper1< ::com::sun::star::task::XJob > OABSPilotUno_JBase;
51 typedef ::comphelper::OPropertyArrayUsageHelper< OABSPilotUno > OABSPilotUno_PBase;
52 /// the UNO wrapper for the address book source pilot
53 class OABSPilotUno
54 :public OABSPilotUno_DBase
55 ,public OABSPilotUno_JBase
56 ,public OABSPilotUno_PBase
57 ,public OModuleResourceClient
59 ::rtl::OUString m_sDataSourceName;
60 OABSPilotUno(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory >& _rxORB);
62 public:
63 // XInterface (disambiguation)
64 virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( const ::com::sun::star::uno::Type& aType ) throw (::com::sun::star::uno::RuntimeException);
65 virtual void SAL_CALL acquire( ) throw ();
66 virtual void SAL_CALL release( ) throw ();
68 // XTypeProvider
69 virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes( ) throw (::com::sun::star::uno::RuntimeException);
70 virtual ::com::sun::star::uno::Sequence<sal_Int8> SAL_CALL getImplementationId( ) throw(::com::sun::star::uno::RuntimeException);
72 // XServiceInfo
73 virtual ::rtl::OUString SAL_CALL getImplementationName() throw(::com::sun::star::uno::RuntimeException);
74 virtual ::comphelper::StringSequence SAL_CALL getSupportedServiceNames() throw(::com::sun::star::uno::RuntimeException);
76 // XServiceInfo - static methods
77 static ::com::sun::star::uno::Sequence< ::rtl::OUString > getSupportedServiceNames_Static(void) throw( ::com::sun::star::uno::RuntimeException );
78 static ::rtl::OUString getImplementationName_Static(void) throw( ::com::sun::star::uno::RuntimeException );
79 static ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface >
80 SAL_CALL Create(const ::com::sun::star::uno::Reference< com::sun::star::lang::XMultiServiceFactory >&);
82 // XPropertySet
83 virtual ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySetInfo> SAL_CALL getPropertySetInfo() throw(::com::sun::star::uno::RuntimeException);
84 virtual ::cppu::IPropertyArrayHelper& SAL_CALL getInfoHelper();
86 // OPropertyArrayUsageHelper
87 virtual ::cppu::IPropertyArrayHelper* createArrayHelper( ) const;
89 // XJob
90 virtual ::com::sun::star::uno::Any SAL_CALL execute( const ::com::sun::star::uno::Sequence< ::com::sun::star::beans::NamedValue >& lArgs ) throw (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::Exception, ::com::sun::star::uno::RuntimeException);
92 using OABSPilotUno_DBase::execute;
93 protected:
94 // OGenericUnoDialog overridables
95 virtual Dialog* createDialog(Window* _pParent);
96 virtual void executedDialog(sal_Int16 _nExecutionResult);
99 //.........................................................................
100 } // namespace abp
101 //.........................................................................
103 #endif // EXTENSIONS_ABP_UNODIALOG_HXX