Version 3.6.0.2, tag libreoffice-3.6.0.2
[LibreOffice.git] / i18npool / inc / calendar_gregorian.hxx
blob03e4e8161d934c3cea3653a6ca993706f851258a
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*************************************************************************
4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
6 * Copyright 2000, 2010 Oracle and/or its affiliates.
8 * OpenOffice.org - a multi-platform office productivity suite
10 * This file is part of OpenOffice.org.
12 * OpenOffice.org is free software: you can redistribute it and/or modify
13 * it under the terms of the GNU Lesser General Public License version 3
14 * only, as published by the Free Software Foundation.
16 * OpenOffice.org is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU Lesser General Public License version 3 for more details
20 * (a copy is included in the LICENSE file that accompanied this code).
22 * You should have received a copy of the GNU Lesser General Public License
23 * version 3 along with OpenOffice.org. If not, see
24 * <http://www.openoffice.org/license.html>
25 * for a copy of the LGPLv3 License.
27 ************************************************************************/
28 #ifndef _I18N_CALENDAR_GREGORIAN_HXX_
29 #define _I18N_CALENDAR_GREGORIAN_HXX_
31 #include "calendarImpl.hxx"
32 #include "nativenumbersupplier.hxx"
34 #include "warnings_guard_unicode_calendar.h"
36 // ----------------------------------------------------
37 // class Calendar_gregorian
38 // ----------------------------------------------------
40 namespace com { namespace sun { namespace star { namespace i18n {
42 struct Era {
43 sal_Int32 year;
44 sal_Int32 month;
45 sal_Int32 day;
48 const sal_Int16 FIELD_INDEX_COUNT = CalendarFieldIndex::FIELD_COUNT2;
50 class Calendar_gregorian : public CalendarImpl
52 public:
54 // Constructors
55 Calendar_gregorian();
56 Calendar_gregorian(Era *_eraArray);
57 void SAL_CALL init(Era *_eraArray);
59 /**
60 * Destructor
62 ~Calendar_gregorian();
64 // Methods in XCalendar
65 virtual void SAL_CALL loadCalendar(const rtl::OUString& uniqueID, const com::sun::star::lang::Locale& rLocale) throw(com::sun::star::uno::RuntimeException);
66 virtual void SAL_CALL setDateTime(double nTimeInDays) throw(com::sun::star::uno::RuntimeException);
67 virtual double SAL_CALL getDateTime() throw(com::sun::star::uno::RuntimeException);
68 virtual void SAL_CALL setValue( sal_Int16 nFieldIndex, sal_Int16 nValue ) throw(com::sun::star::uno::RuntimeException);
69 virtual sal_Int16 SAL_CALL getValue(sal_Int16 nFieldIndex) throw(com::sun::star::uno::RuntimeException);
70 virtual void SAL_CALL addValue(sal_Int16 nFieldIndex, sal_Int32 nAmount) throw(com::sun::star::uno::RuntimeException);
71 virtual sal_Bool SAL_CALL isValid() throw (com::sun::star::uno::RuntimeException);
72 virtual Calendar SAL_CALL getLoadedCalendar() throw(com::sun::star::uno::RuntimeException);
73 virtual rtl::OUString SAL_CALL getUniqueID() throw(com::sun::star::uno::RuntimeException);
74 virtual sal_Int16 SAL_CALL getFirstDayOfWeek() throw(com::sun::star::uno::RuntimeException);
75 virtual void SAL_CALL setFirstDayOfWeek(sal_Int16 nDay) throw(com::sun::star::uno::RuntimeException);
76 virtual void SAL_CALL setMinimumNumberOfDaysForFirstWeek(sal_Int16 nDays) throw(com::sun::star::uno::RuntimeException);
77 virtual sal_Int16 SAL_CALL getMinimumNumberOfDaysForFirstWeek() throw(com::sun::star::uno::RuntimeException);
78 virtual sal_Int16 SAL_CALL getNumberOfMonthsInYear() throw(com::sun::star::uno::RuntimeException);
79 virtual sal_Int16 SAL_CALL getNumberOfDaysInWeek() throw(com::sun::star::uno::RuntimeException);
80 virtual com::sun::star::uno::Sequence < CalendarItem > SAL_CALL getMonths() throw(com::sun::star::uno::RuntimeException);
81 virtual com::sun::star::uno::Sequence < CalendarItem > SAL_CALL getDays() throw(com::sun::star::uno::RuntimeException);
82 virtual rtl::OUString SAL_CALL getDisplayName(sal_Int16 nCalendarDisplayIndex, sal_Int16 nIdx, sal_Int16 nNameType) throw(com::sun::star::uno::RuntimeException);
84 // Methods in XExtendedCalendar
85 virtual rtl::OUString SAL_CALL getDisplayString( sal_Int32 nCalendarDisplayCode, sal_Int16 nNativeNumberMode ) throw (com::sun::star::uno::RuntimeException);
87 // XCalendar3
88 virtual Calendar2 SAL_CALL getLoadedCalendar2() throw(com::sun::star::uno::RuntimeException);
89 virtual com::sun::star::uno::Sequence < CalendarItem2 > SAL_CALL getDays2() throw(com::sun::star::uno::RuntimeException);
90 virtual com::sun::star::uno::Sequence < CalendarItem2 > SAL_CALL getMonths2() throw(com::sun::star::uno::RuntimeException);
91 virtual com::sun::star::uno::Sequence < CalendarItem2 > SAL_CALL getGenitiveMonths2() throw(com::sun::star::uno::RuntimeException);
92 virtual com::sun::star::uno::Sequence < CalendarItem2 > SAL_CALL getPartitiveMonths2() throw(com::sun::star::uno::RuntimeException);
94 //XServiceInfo
95 virtual rtl::OUString SAL_CALL getImplementationName() throw(com::sun::star::uno::RuntimeException);
96 virtual sal_Bool SAL_CALL supportsService(const rtl::OUString& ServiceName) throw(com::sun::star::uno::RuntimeException);
97 virtual com::sun::star::uno::Sequence < rtl::OUString > SAL_CALL getSupportedServiceNames() throw(com::sun::star::uno::RuntimeException);
99 protected:
100 Era *eraArray;
101 icu::Calendar *body;
102 NativeNumberSupplier aNatNum;
103 const sal_Char* cCalendar;
104 com::sun::star::lang::Locale aLocale;
105 sal_uInt32 fieldSet;
106 sal_Int16 fieldValue[FIELD_INDEX_COUNT];
107 sal_Int16 fieldSetValue[FIELD_INDEX_COUNT];
109 virtual void mapToGregorian() throw(com::sun::star::uno::RuntimeException);
110 virtual void mapFromGregorian() throw(com::sun::star::uno::RuntimeException);
111 void getValue() throw(com::sun::star::uno::RuntimeException);
113 private:
114 Calendar2 aCalendar;
116 /** Submit fieldSetValue array according to fieldSet. */
117 void submitFields() throw(com::sun::star::uno::RuntimeException);
118 /** Submit fieldSetValue array according to fieldSet, plus YMDhms if >=0,
119 plus zone and DST if != 0 */
120 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);
121 /** Set fields internally. */
122 void setValue() throw(com::sun::star::uno::RuntimeException);
123 /** Obtain combined field values for timezone offset (minutes+secondmillis)
124 in milliseconds and whether fields were set. */
125 bool getZoneOffset( sal_Int32 & o_nOffset ) const;
126 /** Obtain combined field values for DST offset (minutes+secondmillis) in
127 milliseconds and whether fields were set. */
128 bool getDSTOffset( sal_Int32 & o_nOffset ) const;
129 /** Used by getZoneOffset() and getDSTOffset(). Parent is
130 CalendarFieldIndex for offset in minutes, child is CalendarFieldIndex
131 for offset in milliseconds. */
132 bool getCombinedOffset( sal_Int32 & o_nOffset, sal_Int16 nParentFieldIndex, sal_Int16 nChildFieldIndex ) const;
135 // ----------------------------------------------------
136 // class Calendar_hanja
137 // ----------------------------------------------------
138 class Calendar_hanja : public Calendar_gregorian
140 public:
141 // Constructors
142 Calendar_hanja();
143 virtual void SAL_CALL loadCalendar(const rtl::OUString& uniqueID, const com::sun::star::lang::Locale& rLocale) throw(com::sun::star::uno::RuntimeException);
144 virtual rtl::OUString SAL_CALL getDisplayName(sal_Int16 nCalendarDisplayIndex, sal_Int16 nIdx, sal_Int16 nNameType) throw(com::sun::star::uno::RuntimeException);
147 // ----------------------------------------------------
148 // class Calendar_gengou
149 // ----------------------------------------------------
150 class Calendar_gengou : public Calendar_gregorian
152 public:
153 // Constructors
154 Calendar_gengou();
157 // ----------------------------------------------------
158 // class Calendar_ROC
159 // ----------------------------------------------------
160 class Calendar_ROC : public Calendar_gregorian
162 public:
163 // Constructors
164 Calendar_ROC();
167 // ----------------------------------------------------
168 // class Calendar_buddhist
169 // ----------------------------------------------------
170 class Calendar_buddhist : public Calendar_gregorian
172 public:
173 // Constructors
174 Calendar_buddhist();
176 // Methods in XExtendedCalendar
177 virtual rtl::OUString SAL_CALL getDisplayString( sal_Int32 nCalendarDisplayCode, sal_Int16 nNativeNumberMode ) throw (com::sun::star::uno::RuntimeException);
180 } } } }
182 #endif
184 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */