Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
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/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
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 .
18 : */
19 : #ifndef _CHART2_TOOLS_NUMBERFORMATTERWRAPPER_HXX
20 : #define _CHART2_TOOLS_NUMBERFORMATTERWRAPPER_HXX
21 :
22 : #include "charttoolsdllapi.hxx"
23 : #include <svl/zforlist.hxx>
24 : #include <com/sun/star/util/XNumberFormatsSupplier.hpp>
25 :
26 : //.............................................................................
27 : namespace chart
28 : {
29 : //.............................................................................
30 :
31 : //-----------------------------------------------------------------------------
32 : /**
33 : */
34 : class FixedNumberFormatter;
35 :
36 : class OOO_DLLPUBLIC_CHARTTOOLS NumberFormatterWrapper
37 : {
38 : public:
39 : NumberFormatterWrapper( const ::com::sun::star::uno::Reference< ::com::sun::star::util::XNumberFormatsSupplier >& xSupplier );
40 : virtual ~NumberFormatterWrapper();
41 :
42 : SvNumberFormatter* getSvNumberFormatter() const;
43 : ::com::sun::star::uno::Reference< com::sun::star::util::XNumberFormatsSupplier >
44 0 : getNumberFormatsSupplier() { return m_xNumberFormatsSupplier; };
45 :
46 : rtl::OUString getFormattedString( sal_Int32 nNumberFormatKey, double fValue, sal_Int32& rLabelColor, bool& rbColorChanged ) const;
47 : Date getNullDate() const;
48 :
49 : private: //private member
50 : ::com::sun::star::uno::Reference< com::sun::star::util::XNumberFormatsSupplier >
51 : m_xNumberFormatsSupplier;
52 :
53 : SvNumberFormatter* m_pNumberFormatter;
54 : ::com::sun::star::uno::Any m_aNullDate;
55 : };
56 :
57 :
58 : class OOO_DLLPUBLIC_CHARTTOOLS FixedNumberFormatter
59 : {
60 : public:
61 : FixedNumberFormatter( const ::com::sun::star::uno::Reference< ::com::sun::star::util::XNumberFormatsSupplier >& xSupplier
62 : , sal_Int32 nNumberFormatKey );
63 : virtual ~FixedNumberFormatter();
64 :
65 : rtl::OUString getFormattedString( double fValue, sal_Int32& rLabelColor, bool& rbColorChanged ) const;
66 :
67 : private:
68 : NumberFormatterWrapper m_aNumberFormatterWrapper;
69 : sal_uLong m_nNumberFormatKey;
70 : };
71 :
72 : //.............................................................................
73 : } //namespace chart
74 : //.............................................................................
75 : #endif
76 :
77 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|