merge the formfield patch from ooo-build
[ooovba.git] / sc / inc / unitconv.hxx
blob1f44bbe870494b209a8607795be052cbefab6868
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: unitconv.hxx,v $
10 * $Revision: 1.5 $
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 SC_UNITCONV_HXX
32 #define SC_UNITCONV_HXX
34 #include "collect.hxx"
37 class ScUnitConverterData : public StrData
39 double fValue;
41 // not implemented
42 ScUnitConverterData& operator=( const ScUnitConverterData& );
44 public:
45 ScUnitConverterData( const String& rFromUnit,
46 const String& rToUnit, double fValue = 1.0 );
47 ScUnitConverterData( const ScUnitConverterData& );
48 virtual ~ScUnitConverterData() {};
50 virtual ScDataObject* Clone() const;
52 double GetValue() const { return fValue; }
54 static void BuildIndexString( String& rStr,
55 const String& rFromUnit, const String& rToUnit );
60 class ScUnitConverter : public ScStrCollection
62 // not implemented
63 ScUnitConverter( const ScUnitConverter& );
64 ScUnitConverter& operator=( const ScUnitConverter& );
66 public:
67 ScUnitConverter( USHORT nInit = 16, USHORT nDelta = 4 );
68 virtual ~ScUnitConverter() {};
70 BOOL GetValue( double& fValue, const String& rFromUnit,
71 const String& rToUnit ) const;
75 #endif