1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: localedata.hxx,v $
10 * $Revision: 1.20.16.1 $
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 _I18N_LOCALEDATA_HXX_
31 #define _I18N_LOCALEDATA_HXX_
33 #include <com/sun/star/lang/XMultiServiceFactory.hpp>
35 #include <comphelper/processfactory.hxx>
37 #include <com/sun/star/i18n/XLocaleData2.hpp>
40 #include <cppuhelper/implbase2.hxx> // helper for implementations
41 #include <cppu/macros.hxx>
42 #include <com/sun/star/uno/Reference.h>
44 #include <com/sun/star/uno/Sequence.h>
45 #include <com/sun/star/i18n/Calendar.hpp>
46 #include <com/sun/star/i18n/FormatElement.hpp>
47 #include <com/sun/star/i18n/Currency.hpp>
48 #include <com/sun/star/lang/Locale.hpp>
49 #include <com/sun/star/i18n/LocaleDataItem.hpp>
50 #include <com/sun/star/i18n/UnicodeScript.hpp>
51 #include <com/sun/star/uno/RuntimeException.hpp>
52 #include <com/sun/star/uno/Reference.h>
53 #include <com/sun/star/uno/XInterface.hpp>
54 #include <rtl/ustring.hxx>
57 #include <osl/module.hxx>
60 #include <defaultnumberingprovider.hxx>
61 #include <com/sun/star/style/NumberingType.hpp>
62 #include <com/sun/star/beans/PropertyValue.hpp>
63 #include <com/sun/star/text/HoriOrientation.hpp>
65 #include <com/sun/star/uno/Reference.hxx>
66 #include <com/sun/star/container/XIndexAccess.hpp>
67 #include <com/sun/star/lang/XServiceInfo.hpp>
69 struct LocaleDataLookupTableItem
;
71 namespace com
{ namespace sun
{ namespace star
{ namespace i18n
{
73 inline sal_Bool
operator ==(const com::sun::star::lang::Locale
& l1
, const com::sun::star::lang::Locale
& l2
) {
74 return l1
.Language
== l2
.Language
&& l1
.Country
== l2
.Country
&& l1
.Variant
== l2
.Variant
;
77 class LocaleData
: public cppu::WeakImplHelper2
80 com::sun::star::lang::XServiceInfo
87 virtual LanguageCountryInfo SAL_CALL
getLanguageCountryInfo( const com::sun::star::lang::Locale
& rLocale
) throw(com::sun::star::uno::RuntimeException
);
88 virtual LocaleDataItem SAL_CALL
getLocaleItem( const com::sun::star::lang::Locale
& rLocale
) throw(com::sun::star::uno::RuntimeException
);
89 virtual com::sun::star::uno::Sequence
< Calendar
> SAL_CALL
getAllCalendars( const com::sun::star::lang::Locale
& rLocale
) throw(com::sun::star::uno::RuntimeException
);
90 virtual com::sun::star::uno::Sequence
< Currency
> SAL_CALL
getAllCurrencies( const com::sun::star::lang::Locale
& rLocale
) throw(com::sun::star::uno::RuntimeException
);
91 virtual com::sun::star::uno::Sequence
< Currency2
> SAL_CALL
getAllCurrencies2( const com::sun::star::lang::Locale
& rLocale
) throw(com::sun::star::uno::RuntimeException
);
92 virtual com::sun::star::uno::Sequence
< FormatElement
> SAL_CALL
getAllFormats( const com::sun::star::lang::Locale
& rLocale
) throw(com::sun::star::uno::RuntimeException
);
93 virtual com::sun::star::uno::Sequence
< Implementation
> SAL_CALL
getCollatorImplementations( const com::sun::star::lang::Locale
& rLocale
) throw(com::sun::star::uno::RuntimeException
);
94 virtual rtl::OUString SAL_CALL
getCollatorRuleByAlgorithm( const com::sun::star::lang::Locale
& rLocale
, const rtl::OUString
& algorithm
) throw(com::sun::star::uno::RuntimeException
);
95 virtual com::sun::star::uno::Sequence
< rtl::OUString
> SAL_CALL
getTransliterations( const com::sun::star::lang::Locale
& rLocale
) throw(com::sun::star::uno::RuntimeException
);
96 virtual ForbiddenCharacters SAL_CALL
getForbiddenCharacters( const com::sun::star::lang::Locale
& rLocale
) throw(com::sun::star::uno::RuntimeException
);
97 virtual com::sun::star::uno::Sequence
< rtl::OUString
> SAL_CALL
getReservedWord( const com::sun::star::lang::Locale
& rLocale
) throw(com::sun::star::uno::RuntimeException
) ;
98 virtual com::sun::star::uno::Sequence
< rtl::OUString
> SAL_CALL
getBreakIteratorRules( const com::sun::star::lang::Locale
& rLocale
) throw(com::sun::star::uno::RuntimeException
) ;
99 virtual com::sun::star::uno::Sequence
< com::sun::star::lang::Locale
> SAL_CALL
getAllInstalledLocaleNames() throw(com::sun::star::uno::RuntimeException
);
101 virtual com::sun::star::uno::Sequence
< rtl::OUString
> SAL_CALL
getSearchOptions( const com::sun::star::lang::Locale
& rLocale
) throw(com::sun::star::uno::RuntimeException
);
102 virtual com::sun::star::uno::Sequence
< rtl::OUString
> SAL_CALL
getCollationOptions( const com::sun::star::lang::Locale
& rLocale
) throw(com::sun::star::uno::RuntimeException
);
103 virtual com::sun::star::uno::Sequence
< com::sun::star::uno::Sequence
< beans::PropertyValue
> > SAL_CALL
getContinuousNumberingLevels( const com::sun::star::lang::Locale
& rLocale
) throw(com::sun::star::uno::RuntimeException
);
104 virtual com::sun::star::uno::Sequence
< com::sun::star::uno::Reference
< container::XIndexAccess
> > SAL_CALL
getOutlineNumberingLevels( const com::sun::star::lang::Locale
& rLocale
) throw(com::sun::star::uno::RuntimeException
);
106 // following methods are used by indexentry service
107 virtual com::sun::star::uno::Sequence
< rtl::OUString
> SAL_CALL
getIndexAlgorithm( const com::sun::star::lang::Locale
& rLocale
) throw(com::sun::star::uno::RuntimeException
);
108 virtual rtl::OUString SAL_CALL
getDefaultIndexAlgorithm( const com::sun::star::lang::Locale
& rLocale
) throw(com::sun::star::uno::RuntimeException
);
109 virtual rtl::OUString SAL_CALL
getIndexKeysByAlgorithm( const com::sun::star::lang::Locale
& rLocale
, const rtl::OUString
& algorithm
) throw(com::sun::star::uno::RuntimeException
);
110 virtual rtl::OUString SAL_CALL
getIndexModuleByAlgorithm( const com::sun::star::lang::Locale
& rLocale
, const rtl::OUString
& algorithm
) throw(com::sun::star::uno::RuntimeException
);
111 virtual com::sun::star::uno::Sequence
< UnicodeScript
> SAL_CALL
getUnicodeScripts( const com::sun::star::lang::Locale
& rLocale
) throw(com::sun::star::uno::RuntimeException
);
112 virtual com::sun::star::uno::Sequence
< rtl::OUString
> SAL_CALL
getFollowPageWords( const com::sun::star::lang::Locale
& rLocale
) throw(com::sun::star::uno::RuntimeException
);
113 virtual sal_Bool SAL_CALL
hasPhonetic( const com::sun::star::lang::Locale
& rLocale
) throw(com::sun::star::uno::RuntimeException
);
114 virtual sal_Bool SAL_CALL
isPhonetic( const com::sun::star::lang::Locale
& rLocale
, const rtl::OUString
& algorithm
) throw(com::sun::star::uno::RuntimeException
);
115 virtual rtl::OUString SAL_CALL
getHangingCharacters( const com::sun::star::lang::Locale
& rLocale
) throw(com::sun::star::uno::RuntimeException
);
118 virtual rtl::OUString SAL_CALL
getImplementationName() throw( com::sun::star::uno::RuntimeException
);
119 virtual sal_Bool SAL_CALL
supportsService(const rtl::OUString
& ServiceName
) throw( com::sun::star::uno::RuntimeException
);
120 virtual com::sun::star::uno::Sequence
< rtl::OUString
> SAL_CALL
getSupportedServiceNames() throw( com::sun::star::uno::RuntimeException
);
123 friend sal_Bool
operator ==(const com::sun::star::lang::Locale
& l1
, const com::sun::star::lang::Locale
& l2
);
125 ::std::auto_ptr
< LocaleDataLookupTableItem
> cachedItem
;
127 oslGenericFunction SAL_CALL
getFunctionSymbol( const com::sun::star::lang::Locale
& rLocale
, const sal_Char
* pFunction
) throw( com::sun::star::uno::RuntimeException
);
128 oslGenericFunction SAL_CALL
getFunctionSymbolByName( const rtl::OUString
& localeName
, const sal_Char
* pFunction
);
129 sal_Unicode
** SAL_CALL
getIndexArray(const com::sun::star::lang::Locale
& rLocale
, sal_Int16
& indexCount
);
130 sal_Unicode
** SAL_CALL
getIndexArrayForAlgorithm(const com::sun::star::lang::Locale
& rLocale
, const rtl::OUString
& rAlgorithm
);
131 com::sun::star::i18n::Calendar ref_cal
;
132 rtl::OUString ref_name
;
133 com::sun::star::uno::Sequence
< com::sun::star::i18n::CalendarItem
> &
134 getCalendarItemByName(const rtl::OUString
& name
,
135 const com::sun::star::lang::Locale
& rLocale
,
136 const com::sun::star::uno::Sequence
< com::sun::star::i18n::Calendar
>& calendarsSeq
,
137 sal_Int16 len
, sal_Int16 item
) throw( com::sun::star::uno::RuntimeException
);
142 #endif // _I18N_LOCALEDATA_HXX_