summaryrefslogtreecommitdiff
path: root/unotools/inc/unotools/localedatawrapper.hxx
diff options
context:
space:
mode:
authorEike Rathke <er@openoffice.org>2000-10-13 18:52:04 +0000
committerEike Rathke <er@openoffice.org>2000-10-13 18:52:04 +0000
commitdff378ae7dcd78860f3bb1ae672fd9e9bf20ee65 (patch)
tree4b38d41edff485dbe8d35be99fc009eb7e32a760 /unotools/inc/unotools/localedatawrapper.hxx
parent56d479c77fa1eb30c741013e8dd3e6da92159150 (diff)
LocaleDataWrapper
Diffstat (limited to 'unotools/inc/unotools/localedatawrapper.hxx')
-rw-r--r--unotools/inc/unotools/localedatawrapper.hxx189
1 files changed, 189 insertions, 0 deletions
diff --git a/unotools/inc/unotools/localedatawrapper.hxx b/unotools/inc/unotools/localedatawrapper.hxx
new file mode 100644
index 000000000000..3a3a17e22047
--- /dev/null
+++ b/unotools/inc/unotools/localedatawrapper.hxx
@@ -0,0 +1,189 @@
+/*************************************************************************
+ *
+ * $RCSfile: localedatawrapper.hxx,v $
+ *
+ * $Revision: 1.1 $
+ *
+ * last change: $Author: er $ $Date: 2000-10-13 19:49:56 $
+ *
+ * The Contents of this file are made available subject to the terms of
+ * either of the following licenses
+ *
+ * - GNU Lesser General Public License Version 2.1
+ * - Sun Industry Standards Source License Version 1.1
+ *
+ * Sun Microsystems Inc., October, 2000
+ *
+ * GNU Lesser General Public License Version 2.1
+ * =============================================
+ * Copyright 2000 by Sun Microsystems, Inc.
+ * 901 San Antonio Road, Palo Alto, CA 94303, USA
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1, as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
+ * MA 02111-1307 USA
+ *
+ *
+ * Sun Industry Standards Source License Version 1.1
+ * =================================================
+ * The contents of this file are subject to the Sun Industry Standards
+ * Source License Version 1.1 (the "License"); You may not use this file
+ * except in compliance with the License. You may obtain a copy of the
+ * License at http://www.openoffice.org/license.html.
+ *
+ * Software provided under this License is provided on an "AS IS" basis,
+ * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
+ * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
+ * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
+ * See the License for the specific provisions governing your rights and
+ * obligations concerning the Software.
+ *
+ * The Initial Developer of the Original Code is: Sun Microsystems, Inc.
+ *
+ * Copyright: 2000 by Sun Microsystems, Inc.
+ *
+ * All Rights Reserved.
+ *
+ * Contributor(s): _______________________________________
+ *
+ *
+ ************************************************************************/
+
+#ifndef _UNOTOOLS_LOCALEDATAWRAPPER_HXX
+#define _UNOTOOLS_LOCALEDATAWRAPPER_HXX
+
+#ifndef _TOOLS_INTN_HXX
+#include <tools/intn.hxx> // enum MeasurementSystem
+#endif
+#ifndef _STRING_HXX
+#include <tools/string.hxx>
+#endif
+
+#ifndef _COM_SUN_STAR_LANG_XLOCALEDATA_HPP_
+#include <com/sun/star/lang/XLocaleData.hpp>
+#endif
+#ifndef _COM_SUN_STAR_LANG_LOCALEITEM_HPP_
+#include <com/sun/star/lang/LocaleItem.hpp>
+#endif
+#ifndef _COM_SUN_STAR_LANG_RESERVEDWORDS_HPP_
+#include <com/sun/star/lang/reservedWords.hpp>
+#endif
+
+namespace com { namespace sun { namespace star {
+ namespace lang {
+ class XMultiServiceFactory;
+ }
+}}}
+
+
+class LocaleDataWrapper
+{
+ ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory > xSMgr;
+ ::com::sun::star::uno::Reference< ::com::sun::star::lang::XLocaleData > xLD;
+ ::com::sun::star::lang::Locale aLocale;
+ ::com::sun::star::lang::LocaleDataItem aLocaleDataItem;
+ ::com::sun::star::uno::Sequence< ::rtl::OUString > aReservedWordSeq;
+ // cached items
+ String aLocaleItem[::com::sun::star::lang::LocaleItem_LocaleItemTotalCount];
+ String aReservedWord[::com::sun::star::lang::reservedWords::COUNT];
+ BOOL bLocaleDataItemValid;
+ BOOL bReservedWordValid;
+
+ // not implemented, prevent usage
+ LocaleDataWrapper( const LocaleDataWrapper& );
+ LocaleDataWrapper& operator=( const LocaleDataWrapper& );
+
+ // whenever Locale changes
+ void invalidateData();
+
+ void getOneLocaleItemImpl( ::com::sun::star::lang::LocaleItem eItem );
+ const String& getOneLocaleItem( ::com::sun::star::lang::LocaleItem eItem ) const;
+
+ void getOneReservedWordImpl( sal_Int16 nWord );
+ const String& getOneReservedWord( sal_Int16 nWord ) const;
+
+public:
+ LocaleDataWrapper(
+ const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory > & xSF,
+ const ::com::sun::star::lang::Locale& rLocale
+ );
+
+ ~LocaleDataWrapper();
+
+
+ /// set a new Locale
+ void setLocale( const ::com::sun::star::lang::Locale& rLocale );
+
+ /// get current Locale
+ const ::com::sun::star::lang::Locale& getLocale() const { return aLocale; }
+
+
+ // Wrapper implementations of class LocaleData
+
+ ::com::sun::star::lang::LCInfo getLCInfo() const;
+ ::com::sun::star::lang::LocaleDataItem getLocaleItem() const;
+ ::com::sun::star::uno::Sequence< ::com::sun::star::lang::Calendar > getAllCalendars() const;
+ ::com::sun::star::uno::Sequence< ::com::sun::star::lang::Currency > getAllCurrencies() const;
+ ::com::sun::star::uno::Sequence< ::com::sun::star::lang::FormatElement > getAllFormats() const;
+ ::com::sun::star::uno::Sequence< ::com::sun::star::lang::Implementation > getCollatorImplementations() const;
+ ::com::sun::star::uno::Sequence< ::rtl::OUString > getTransliterations() const;
+ ::com::sun::star::lang::ForbiddenCharacters getForbiddenCharacters() const;
+ ::com::sun::star::uno::Sequence< ::rtl::OUString > getReservedWord() const;
+
+
+ /// maps the LocaleData string to the International enum
+ MeasurementSystem mapMeasurementStringToEnum( const String& rMS ) const;
+
+
+ // Functionality of class International methods, LocaleItem
+
+ inline const String& getDateSep() const
+ { return getOneLocaleItem( ::com::sun::star::lang::LocaleItem_DateSeparator ); }
+ inline const String& getNumThousandSep() const
+ { return getOneLocaleItem( ::com::sun::star::lang::LocaleItem_ThousandSeparator ); }
+ inline const String& getNumDecimalSep() const
+ { return getOneLocaleItem( ::com::sun::star::lang::LocaleItem_DecimalSeparator ); }
+ inline const String& getTimeSep() const
+ { return getOneLocaleItem( ::com::sun::star::lang::LocaleItem_TimeSeparator ); }
+ inline const String& getTime100SecSep() const
+ { return getOneLocaleItem( ::com::sun::star::lang::LocaleItem_Time100SecSeparator ); }
+ inline const String& getListSep() const
+ { return getOneLocaleItem( ::com::sun::star::lang::LocaleItem_ListSeparator ); }
+ inline const String& getQuotationMarkStart() const
+ { return getOneLocaleItem( ::com::sun::star::lang::LocaleItem_QuotationStart ); }
+ inline const String& getQuotationMarkEnd() const
+ { return getOneLocaleItem( ::com::sun::star::lang::LocaleItem_QuotationEnd ); }
+ inline const String& getDoubleQuotationMarkStart() const
+ { return getOneLocaleItem( ::com::sun::star::lang::LocaleItem_DoubleQuotationStart ); }
+ inline const String& getDoubleQuotationMarkEnd() const
+ { return getOneLocaleItem( ::com::sun::star::lang::LocaleItem_DoubleQuotationEnd ); }
+ inline const String& getMeasurementSystem() const
+ { return getOneLocaleItem( ::com::sun::star::lang::LocaleItem_MeasurementSystem ); }
+ inline MeasurementSystem getMeasurementSystemEnum() const
+ { return mapMeasurementStringToEnum( getOneLocaleItem( ::com::sun::star::lang::LocaleItem_MeasurementSystem ) ); }
+ inline const String& getTimeAM() const
+ { return getOneLocaleItem( ::com::sun::star::lang::LocaleItem_TimeAM ); }
+ inline const String& getTimePM() const
+ { return getOneLocaleItem( ::com::sun::star::lang::LocaleItem_TimePM ); }
+
+
+ // reserved words
+
+ inline const String& getTrueWord() const
+ { return getOneReservedWord( ::com::sun::star::lang::reservedWords::TRUE_WORD ); }
+ inline const String& getFalseWord() const
+ { return getOneReservedWord( ::com::sun::star::lang::reservedWords::FALSE_WORD ); }
+};
+
+
+#endif // _UNOTOOLS_LOCALEDATAWRAPPER_HXX