1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2000, 2010 Oracle and/or its affiliates.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * This file is part of OpenOffice.org.
11 * OpenOffice.org is free software: you can redistribute it and/or modify
12 * it under the terms of the GNU Lesser General Public License version 3
13 * only, as published by the Free Software Foundation.
15 * OpenOffice.org is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU Lesser General Public License version 3 for more details
19 * (a copy is included in the LICENSE file that accompanied this code).
21 * You should have received a copy of the GNU Lesser General Public License
22 * version 3 along with OpenOffice.org. If not, see
23 * <http://www.openoffice.org/license.html>
24 * for a copy of the LGPLv3 License.
26 ************************************************************************/
27 #ifndef __com_sun_star_util_XNumberFormatPreviewer_idl__
28 #define __com_sun_star_util_XNumberFormatPreviewer_idl__
30 #ifndef __com_sun_star_uno_XInterface_idl__
31 #include
<com
/sun
/star
/uno
/XInterface.idl
>
34 #ifndef __com_sun_star_util_Color_idl__
35 #include
<com
/sun
/star
/util
/Color.idl
>
38 #ifndef __com_sun_star_lang_Locale_idl__
39 #include
<com
/sun
/star
/lang
/Locale.idl
>
42 #ifndef __com_sun_star_util_MalformedNumberFormatException_idl__
43 #include
<com
/sun
/star
/util
/MalformedNumberFormatException.idl
>
46 #ifndef __com_sun_star_util_Color_idl__
47 #include
<com
/sun
/star
/util
/Color.idl
>
51 //=============================================================================
53 module com
{ module sun
{ module star
{ module util
{
55 //=============================================================================
57 /** represents a number formatter which can preview number
58 formats without inserting them.
62 published
interface XNumberFormatPreviewer
: com
::sun
::star
::uno
::XInterface
64 //-------------------------------------------------------------------------
66 /** formats a value using a format string, without inserting a
67 number format into the list.
70 is the format string that is used for formatting.
73 is the value that is formatted.
76 is the locale that is used to interpret the format string.
79 specifies if English language number format strings are accepted
80 in addition to those from the selected locale.
85 @throws com::sun::star::util::MalformedNumberFormatException
86 if the format string is invalid.
89 string convertNumberToPreviewString
( [in] string aFormat
,
91 [in] com
::sun
::star
::lang
::Locale nLocale
,
92 [in] boolean bAllowEnglish
)
93 raises
( com
::sun
::star
::util
::MalformedNumberFormatException
);
95 //-------------------------------------------------------------------------
97 /** returns the color which is to be used for a number.
100 is the format string that is used for formatting.
103 is the value that is formatted.
106 is the locale that is used to interpret the format string.
109 specifies if English language number format strings are accepted
110 in addition to those from the selected locale.
113 is the color that should be returned if no color is set by
117 the color that should used to output the formatted string.
119 @throws com::sun::star::util::MalformedNumberFormatException
120 if the format string is invalid.
123 com
::sun
::star
::util
::Color queryPreviewColorForNumber
( [in] string aFormat
,
125 [in] com
::sun
::star
::lang
::Locale nLocale
,
126 [in] boolean bAllowEnglish
,
127 [in] com
::sun
::star
::util
::Color aDefaultColor
)
128 raises
( com
::sun
::star
::util
::MalformedNumberFormatException
);
132 //=============================================================================