Update ooo320-m1
[ooovba.git] / i18npool / inc / calendar_gregorian.hxx
bloba12a6555cd44c1ac7ee9daa42f95dc9556479503
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: calendar_gregorian.hxx,v $
10 * $Revision: 1.16.24.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_CALENDAR_GREGORIAN_HXX_
31 #define _I18N_CALENDAR_GREGORIAN_HXX_
33 #include "calendarImpl.hxx"
34 #include "nativenumbersupplier.hxx"
36 #include "warnings_guard_unicode_calendar.h"
38 // ----------------------------------------------------
39 // class Calendar_gregorian
40 // ----------------------------------------------------
42 namespace com { namespace sun { namespace star { namespace i18n {
44 struct Era {
45 sal_Int32 year;
46 sal_Int32 month;
47 sal_Int32 day;
50 const sal_Int16 FIELD_INDEX_COUNT = CalendarFieldIndex::FIELD_COUNT2;
52 class Calendar_gregorian : public CalendarImpl
54 public:
56 // Constructors
57 Calendar_gregorian();
58 Calendar_gregorian(Era *_eraArray);
59 void SAL_CALL init(Era *_eraArray);
61 /**
62 * Destructor
64 ~Calendar_gregorian();
66 // Methods in XCalendar
67 virtual void SAL_CALL loadCalendar(const rtl::OUString& uniqueID, const com::sun::star::lang::Locale& rLocale) throw(com::sun::star::uno::RuntimeException);
68 virtual void SAL_CALL setDateTime(double nTimeInDays) throw(com::sun::star::uno::RuntimeException);
69 virtual double SAL_CALL getDateTime() throw(com::sun::star::uno::RuntimeException);
70 virtual void SAL_CALL setValue( sal_Int16 nFieldIndex, sal_Int16 nValue ) throw(com::sun::star::uno::RuntimeException);
71 virtual sal_Int16 SAL_CALL getValue(sal_Int16 nFieldIndex) throw(com::sun::star::uno::RuntimeException);
72 virtual void SAL_CALL addValue(sal_Int16 nFieldIndex, sal_Int32 nAmount) throw(com::sun::star::uno::RuntimeException);
73 virtual sal_Bool SAL_CALL isValid() throw (com::sun::star::uno::RuntimeException);
74 virtual Calendar SAL_CALL getLoadedCalendar() throw(com::sun::star::uno::RuntimeException);
75 virtual rtl::OUString SAL_CALL getUniqueID() throw(com::sun::star::uno::RuntimeException);
76 virtual sal_Int16 SAL_CALL getFirstDayOfWeek() throw(com::sun::star::uno::RuntimeException);
77 virtual void SAL_CALL setFirstDayOfWeek(sal_Int16 nDay) throw(com::sun::star::uno::RuntimeException);
78 virtual void SAL_CALL setMinimumNumberOfDaysForFirstWeek(sal_Int16 nDays) throw(com::sun::star::uno::RuntimeException);
79 virtual sal_Int16 SAL_CALL getMinimumNumberOfDaysForFirstWeek() throw(com::sun::star::uno::RuntimeException);
80 virtual sal_Int16 SAL_CALL getNumberOfMonthsInYear() throw(com::sun::star::uno::RuntimeException);
81 virtual sal_Int16 SAL_CALL getNumberOfDaysInWeek() throw(com::sun::star::uno::RuntimeException);
82 virtual com::sun::star::uno::Sequence < CalendarItem > SAL_CALL getMonths() throw(com::sun::star::uno::RuntimeException);
83 virtual com::sun::star::uno::Sequence < CalendarItem > SAL_CALL getDays() throw(com::sun::star::uno::RuntimeException);
84 virtual rtl::OUString SAL_CALL getDisplayName(sal_Int16 nCalendarDisplayIndex, sal_Int16 nIdx, sal_Int16 nNameType) throw(com::sun::star::uno::RuntimeException);
86 // Methods in XExtendedCalendar
87 virtual rtl::OUString SAL_CALL getDisplayString( sal_Int32 nCalendarDisplayCode, sal_Int16 nNativeNumberMode ) throw (com::sun::star::uno::RuntimeException);
89 //XServiceInfo
90 virtual rtl::OUString SAL_CALL getImplementationName() throw(com::sun::star::uno::RuntimeException);
91 virtual sal_Bool SAL_CALL supportsService(const rtl::OUString& ServiceName) throw(com::sun::star::uno::RuntimeException);
92 virtual com::sun::star::uno::Sequence < rtl::OUString > SAL_CALL getSupportedServiceNames() throw(com::sun::star::uno::RuntimeException);
94 protected:
95 Era *eraArray;
96 icu::Calendar *body;
97 NativeNumberSupplier aNatNum;
98 const sal_Char* cCalendar;
99 com::sun::star::lang::Locale aLocale;
100 sal_uInt32 fieldSet;
101 sal_Int16 fieldValue[FIELD_INDEX_COUNT];
102 sal_Int16 fieldSetValue[FIELD_INDEX_COUNT];
104 virtual void mapToGregorian() throw(com::sun::star::uno::RuntimeException);
105 virtual void mapFromGregorian() throw(com::sun::star::uno::RuntimeException);
106 void getValue() throw(com::sun::star::uno::RuntimeException);
108 private:
109 Calendar aCalendar;
111 /** Submit fieldSetValue array according to fieldSet. */
112 void submitFields() throw(com::sun::star::uno::RuntimeException);
113 /** Submit fieldSetValue array according to fieldSet, plus YMDhms if >=0,
114 plus zone and DST if != 0 */
115 void submitValues( sal_Int32 nYear, sal_Int32 nMonth, sal_Int32 nDay, sal_Int32 nHour, sal_Int32 nMinute, sal_Int32 nSecond, sal_Int32 nMilliSecond, sal_Int32 nZone, sal_Int32 nDST) throw(com::sun::star::uno::RuntimeException);
116 /** Set fields internally. */
117 void setValue() throw(com::sun::star::uno::RuntimeException);
118 /** Obtain combined field values for timezone offset (minutes+secondmillis)
119 in milliseconds and whether fields were set. */
120 bool getZoneOffset( sal_Int32 & o_nOffset ) const;
121 /** Obtain combined field values for DST offset (minutes+secondmillis) in
122 milliseconds and whether fields were set. */
123 bool getDSTOffset( sal_Int32 & o_nOffset ) const;
124 /** Used by getZoneOffset() and getDSTOffset(). Parent is
125 CalendarFieldIndex for offset in minutes, child is CalendarFieldIndex
126 for offset in milliseconds. */
127 bool getCombinedOffset( sal_Int32 & o_nOffset, sal_Int16 nParentFieldIndex, sal_Int16 nChildFieldIndex ) const;
130 // ----------------------------------------------------
131 // class Calendar_hanja
132 // ----------------------------------------------------
133 class Calendar_hanja : public Calendar_gregorian
135 public:
136 // Constructors
137 Calendar_hanja();
138 virtual void SAL_CALL loadCalendar(const rtl::OUString& uniqueID, const com::sun::star::lang::Locale& rLocale) throw(com::sun::star::uno::RuntimeException);
139 virtual rtl::OUString SAL_CALL getDisplayName(sal_Int16 nCalendarDisplayIndex, sal_Int16 nIdx, sal_Int16 nNameType) throw(com::sun::star::uno::RuntimeException);
142 // ----------------------------------------------------
143 // class Calendar_gengou
144 // ----------------------------------------------------
145 class Calendar_gengou : public Calendar_gregorian
147 public:
148 // Constructors
149 Calendar_gengou();
152 // ----------------------------------------------------
153 // class Calendar_ROC
154 // ----------------------------------------------------
155 class Calendar_ROC : public Calendar_gregorian
157 public:
158 // Constructors
159 Calendar_ROC();
162 // ----------------------------------------------------
163 // class Calendar_buddhist
164 // ----------------------------------------------------
165 class Calendar_buddhist : public Calendar_gregorian
167 public:
168 // Constructors
169 Calendar_buddhist();
171 // Methods in XExtendedCalendar
172 virtual rtl::OUString SAL_CALL getDisplayString( sal_Int32 nCalendarDisplayCode, sal_Int16 nNativeNumberMode ) throw (com::sun::star::uno::RuntimeException);
175 } } } }
177 #endif