sync master with lastest vba changes
[ooovba.git] / starmath / inc / unomodel.hxx
blob897e9982a8ac29836e09c39ce6f01259e1fd7fd0
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: unomodel.hxx,v $
10 * $Revision: 1.13 $
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 ************************************************************************/
30 #ifndef UNOMODEL_HXX
31 #define UNOMODEL_HXX
33 #include <com/sun/star/beans/XPropertySet.hpp>
34 #include <com/sun/star/beans/XMultiPropertySet.hpp>
35 #include <com/sun/star/beans/XPropertyState.hpp>
36 #include <com/sun/star/lang/XServiceInfo.hpp>
37 #include <com/sun/star/view/XRenderable.hpp>
38 #include <sfx2/sfxbasemodel.hxx>
39 #include <comphelper/propertysethelper.hxx>
41 class SmFormat;
43 //-----------------------------------------------------------------------------
44 class SmModel : public SfxBaseModel,
45 public comphelper::PropertySetHelper,
46 public com::sun::star::lang::XServiceInfo,
47 public com::sun::star::view::XRenderable
49 protected:
50 virtual void _setPropertyValues( const comphelper::PropertyMapEntry** ppEntries, const ::com::sun::star::uno::Any* pValues )
51 throw(::com::sun::star::beans::UnknownPropertyException, ::com::sun::star::beans::PropertyVetoException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::lang::WrappedTargetException );
52 virtual void _getPropertyValues( const comphelper::PropertyMapEntry** ppEntries, ::com::sun::star::uno::Any* pValue )
53 throw(::com::sun::star::beans::UnknownPropertyException, ::com::sun::star::lang::WrappedTargetException );
54 public:
55 SmModel( SfxObjectShell *pObjSh = 0 );
56 virtual ~SmModel() throw ();
58 //XInterface
59 virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( const ::com::sun::star::uno::Type& aType ) throw(::com::sun::star::uno::RuntimeException);
60 virtual void SAL_CALL acquire( ) throw();
61 virtual void SAL_CALL release( ) throw();
63 //XTypeProvider
64 virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes( ) throw(::com::sun::star::uno::RuntimeException);
66 static const ::com::sun::star::uno::Sequence< sal_Int8 > & getUnoTunnelId();
68 //XUnoTunnel
69 virtual sal_Int64 SAL_CALL getSomething( const ::com::sun::star::uno::Sequence< sal_Int8 >& aIdentifier ) throw(::com::sun::star::uno::RuntimeException);
71 //XRenderable
72 virtual sal_Int32 SAL_CALL getRendererCount( const ::com::sun::star::uno::Any& rSelection, const ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >& rxOptions ) throw (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException);
73 virtual ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue > SAL_CALL getRenderer( sal_Int32 nRenderer, const ::com::sun::star::uno::Any& rSelection, const ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >& rxOptions ) throw (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException);
74 virtual void SAL_CALL render( sal_Int32 nRenderer, const ::com::sun::star::uno::Any& rSelection, const ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >& rxOptions ) throw (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException);
76 //XServiceInfo
77 virtual rtl::OUString SAL_CALL getImplementationName(void)
78 throw( ::com::sun::star::uno::RuntimeException );
79 virtual BOOL SAL_CALL supportsService(const rtl::OUString& ServiceName)
80 throw( ::com::sun::star::uno::RuntimeException );
81 virtual ::com::sun::star::uno::Sequence< rtl::OUString > SAL_CALL getSupportedServiceNames(void)
82 throw( ::com::sun::star::uno::RuntimeException );
84 virtual void SAL_CALL setParent( const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface >& xParent )
85 throw( ::com::sun::star::lang::NoSupportException, ::com::sun::star::uno::RuntimeException );
87 static ::com::sun::star::uno::Sequence< rtl::OUString > getSupportedServiceNames_Static();
88 static ::rtl::OUString getImplementationName_Static();
91 #endif