update dev300-m57
[ooovba.git] / svtools / inc / numuno.hxx
bloba369423f3d2dbf3068a7f64f5504787d92328652
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: numuno.hxx,v $
10 * $Revision: 1.4 $
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 _NUMUNO_HXX
31 #define _NUMUNO_HXX
33 #include "svtools/svtdllapi.h"
34 #include <com/sun/star/util/XNumberFormatsSupplier.hpp>
35 #include <com/sun/star/lang/XUnoTunnel.hpp>
36 #include <cppuhelper/implbase2.hxx>
38 class SvNumberFormatter;
39 class SvNumFmtSuppl_Impl;
41 namespace comphelper
43 class SharedMutex;
46 //------------------------------------------------------------------
48 // SvNumberFormatterServiceObj must be registered as service somewhere
50 com::sun::star::uno::Reference<com::sun::star::uno::XInterface> SAL_CALL
51 SvNumberFormatterServiceObj_NewInstance(
52 const com::sun::star::uno::Reference<
53 com::sun::star::lang::XMultiServiceFactory>& rSMgr );
55 //------------------------------------------------------------------
57 // SvNumberFormatsSupplierObj: aggregate to document,
58 // construct with SvNumberFormatter
60 class SVT_DLLPUBLIC SvNumberFormatsSupplierObj : public cppu::WeakAggImplHelper2<
61 com::sun::star::util::XNumberFormatsSupplier,
62 com::sun::star::lang::XUnoTunnel>
64 private:
65 SvNumFmtSuppl_Impl* pImpl;
67 public:
68 SvNumberFormatsSupplierObj();
69 SvNumberFormatsSupplierObj(SvNumberFormatter* pForm);
70 virtual ~SvNumberFormatsSupplierObj();
72 void SetNumberFormatter(SvNumberFormatter* pNew);
73 SvNumberFormatter* GetNumberFormatter() const;
75 // ueberladen, um Attribute im Dokument anzupassen
76 virtual void NumberFormatDeleted(sal_uInt32 nKey);
77 // ueberladen, um evtl. neu zu formatieren
78 virtual void SettingsChanged();
80 // XNumberFormatsSupplier
81 virtual ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet > SAL_CALL
82 getNumberFormatSettings()
83 throw(::com::sun::star::uno::RuntimeException);
84 virtual ::com::sun::star::uno::Reference< ::com::sun::star::util::XNumberFormats > SAL_CALL
85 getNumberFormats()
86 throw(::com::sun::star::uno::RuntimeException);
88 // XUnoTunnel
89 virtual sal_Int64 SAL_CALL getSomething( const ::com::sun::star::uno::Sequence<
90 sal_Int8 >& aIdentifier )
91 throw(::com::sun::star::uno::RuntimeException);
93 static const com::sun::star::uno::Sequence<sal_Int8>& getUnoTunnelId();
94 static SvNumberFormatsSupplierObj* getImplementation( const com::sun::star::uno::Reference<
95 com::sun::star::util::XNumberFormatsSupplier> xObj );
97 ::comphelper::SharedMutex& getSharedMutex() const;
100 #endif // #ifndef _NUMUNO_HXX