xref: /trunk/main/editeng/inc/editeng/itemtype.hxx (revision 97e8a929)
1*4c5491eaSAndrew Rist /**************************************************************
2cdf0e10cSrcweir  *
3*4c5491eaSAndrew Rist  * Licensed to the Apache Software Foundation (ASF) under one
4*4c5491eaSAndrew Rist  * or more contributor license agreements.  See the NOTICE file
5*4c5491eaSAndrew Rist  * distributed with this work for additional information
6*4c5491eaSAndrew Rist  * regarding copyright ownership.  The ASF licenses this file
7*4c5491eaSAndrew Rist  * to you under the Apache License, Version 2.0 (the
8*4c5491eaSAndrew Rist  * "License"); you may not use this file except in compliance
9*4c5491eaSAndrew Rist  * with the License.  You may obtain a copy of the License at
10*4c5491eaSAndrew Rist  *
11*4c5491eaSAndrew Rist  *   http://www.apache.org/licenses/LICENSE-2.0
12*4c5491eaSAndrew Rist  *
13*4c5491eaSAndrew Rist  * Unless required by applicable law or agreed to in writing,
14*4c5491eaSAndrew Rist  * software distributed under the License is distributed on an
15*4c5491eaSAndrew Rist  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*4c5491eaSAndrew Rist  * KIND, either express or implied.  See the License for the
17*4c5491eaSAndrew Rist  * specific language governing permissions and limitations
18*4c5491eaSAndrew Rist  * under the License.
19*4c5491eaSAndrew Rist  *
20*4c5491eaSAndrew Rist  *************************************************************/
21*4c5491eaSAndrew Rist 
22*4c5491eaSAndrew Rist 
23cdf0e10cSrcweir #ifndef _SVX_ITEMTYPE_HXX
24cdf0e10cSrcweir #define _SVX_ITEMTYPE_HXX
25cdf0e10cSrcweir 
26cdf0e10cSrcweir // include ---------------------------------------------------------------
27cdf0e10cSrcweir 
28cdf0e10cSrcweir #include <editeng/editrids.hrc>
29cdf0e10cSrcweir #include <editeng/eerdll.hxx>
30cdf0e10cSrcweir 
31cdf0e10cSrcweir // forward ---------------------------------------------------------------
32cdf0e10cSrcweir #include <tools/string.hxx>
33cdf0e10cSrcweir #include <tools/resid.hxx>
34cdf0e10cSrcweir #include <tools/bigint.hxx>
35cdf0e10cSrcweir #include <svl/poolitem.hxx>
36cdf0e10cSrcweir #include <tools/shl.hxx>
37cdf0e10cSrcweir #include "editeng/editengdllapi.h"
38cdf0e10cSrcweir 
39cdf0e10cSrcweir class Color;
40cdf0e10cSrcweir class IntlWrapper;
41cdf0e10cSrcweir // static and prototypes -------------------------------------------------
42cdf0e10cSrcweir 
43cdf0e10cSrcweir static const sal_Unicode cDelim = ',';
44cdf0e10cSrcweir static const sal_Unicode cpDelim[] = { ',' , ' ', '\0' };
45cdf0e10cSrcweir 
46cdf0e10cSrcweir EDITENG_DLLPUBLIC String GetSvxString( sal_uInt16 nId );
47cdf0e10cSrcweir EDITENG_DLLPUBLIC String GetMetricText( long nVal, SfxMapUnit eSrcUnit, SfxMapUnit eDestUnit, const IntlWrapper * pIntl );
48cdf0e10cSrcweir String GetColorString( const Color& rCol );
49cdf0e10cSrcweir EDITENG_DLLPUBLIC sal_uInt16 GetMetricId( SfxMapUnit eUnit );
50cdf0e10cSrcweir 
51cdf0e10cSrcweir // -----------------------------------------------------------------------
52cdf0e10cSrcweir 
GetBoolString(sal_Bool bVal)53cdf0e10cSrcweir inline String GetBoolString( sal_Bool bVal )
54cdf0e10cSrcweir {
55cdf0e10cSrcweir 	return String( EditResId( bVal ? RID_SVXITEMS_TRUE : RID_SVXITEMS_FALSE ) );
56cdf0e10cSrcweir }
57cdf0e10cSrcweir 
58cdf0e10cSrcweir // -----------------------------------------------------------------------
59cdf0e10cSrcweir 
Scale(long nVal,long nMult,long nDiv)60cdf0e10cSrcweir inline long Scale( long nVal, long nMult, long nDiv )
61cdf0e10cSrcweir {
62cdf0e10cSrcweir 	BigInt aVal( nVal );
63cdf0e10cSrcweir 	aVal *= nMult;
64cdf0e10cSrcweir 	aVal += nDiv/2;
65cdf0e10cSrcweir 	aVal /= nDiv;
66cdf0e10cSrcweir 	return aVal;
67cdf0e10cSrcweir }
68cdf0e10cSrcweir 
69cdf0e10cSrcweir #endif
70cdf0e10cSrcweir 
71