merge the formfield patch from ooo-build
[ooovba.git] / i18npool / inc / calendarImpl.hxx
blob717c31254136f9f5186d970fe043da6cee18f4b8
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: calendarImpl.hxx,v $
10 * $Revision: 1.8 $
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_CALENDARIMPL_HXX_
31 #define _I18N_CALENDARIMPL_HXX_
33 #include <com/sun/star/i18n/XExtendedCalendar.hpp>
34 #include <com/sun/star/i18n/CalendarDisplayCode.hpp>
35 #include <com/sun/star/i18n/CalendarFieldIndex.hpp>
36 #include <com/sun/star/i18n/CalendarDisplayIndex.hpp>
37 #include <cppuhelper/implbase2.hxx> // helper for implementations
38 #include <com/sun/star/lang/XServiceInfo.hpp>
39 #include <vector>
41 // ----------------------------------------------------
42 // class CalendarImpl
43 // ----------------------------------------------------
45 namespace com { namespace sun { namespace star { namespace i18n {
47 class CalendarImpl : public cppu::WeakImplHelper2
49 com::sun::star::i18n::XExtendedCalendar,
50 com::sun::star::lang::XServiceInfo
53 public:
55 // Constructors
56 CalendarImpl() {};
57 CalendarImpl(const com::sun::star::uno::Reference < com::sun::star::lang::XMultiServiceFactory >& rxMSF);
59 /**
60 * Destructor
62 ~CalendarImpl();
65 // Methods
66 virtual void SAL_CALL loadDefaultCalendar(const com::sun::star::lang::Locale& rLocale) throw(com::sun::star::uno::RuntimeException);
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 Calendar SAL_CALL getLoadedCalendar() throw(com::sun::star::uno::RuntimeException);
69 virtual com::sun::star::uno::Sequence < rtl::OUString > SAL_CALL getAllCalendars(const com::sun::star::lang::Locale& rLocale) throw(com::sun::star::uno::RuntimeException);
70 virtual rtl::OUString SAL_CALL getUniqueID() throw(com::sun::star::uno::RuntimeException);
71 virtual void SAL_CALL setDateTime(double nTimeInDays) throw(com::sun::star::uno::RuntimeException);
72 virtual double SAL_CALL getDateTime() throw(com::sun::star::uno::RuntimeException);
73 virtual void SAL_CALL setValue( sal_Int16 nFieldIndex, sal_Int16 nValue ) throw(com::sun::star::uno::RuntimeException);
74 virtual sal_Int16 SAL_CALL getValue(sal_Int16 nFieldIndex) throw(com::sun::star::uno::RuntimeException);
75 virtual sal_Bool SAL_CALL isValid() throw (com::sun::star::uno::RuntimeException);
76 virtual void SAL_CALL addValue(sal_Int16 nFieldIndex, sal_Int32 nAmount) throw(com::sun::star::uno::RuntimeException);
77 virtual sal_Int16 SAL_CALL getFirstDayOfWeek() throw(com::sun::star::uno::RuntimeException);
78 virtual void SAL_CALL setFirstDayOfWeek(sal_Int16 nDay) throw(com::sun::star::uno::RuntimeException);
79 virtual void SAL_CALL setMinimumNumberOfDaysForFirstWeek(sal_Int16 nDays) throw(com::sun::star::uno::RuntimeException);
80 virtual sal_Int16 SAL_CALL getMinimumNumberOfDaysForFirstWeek() throw(com::sun::star::uno::RuntimeException);
81 virtual sal_Int16 SAL_CALL getNumberOfMonthsInYear() throw(com::sun::star::uno::RuntimeException);
82 virtual sal_Int16 SAL_CALL getNumberOfDaysInWeek() throw(com::sun::star::uno::RuntimeException);
83 virtual com::sun::star::uno::Sequence < CalendarItem > SAL_CALL getMonths() throw(com::sun::star::uno::RuntimeException);
84 virtual com::sun::star::uno::Sequence < CalendarItem > SAL_CALL getDays() throw(com::sun::star::uno::RuntimeException);
85 virtual rtl::OUString SAL_CALL getDisplayName(sal_Int16 nCalendarDisplayIndex, sal_Int16 nIdx, sal_Int16 nNameType) throw(com::sun::star::uno::RuntimeException);
87 // Methods in XExtendedCalendar
88 virtual rtl::OUString SAL_CALL getDisplayString( sal_Int32 nCalendarDisplayCode, sal_Int16 nNativeNumberMode ) throw (com::sun::star::uno::RuntimeException);
90 //XServiceInfo
91 virtual rtl::OUString SAL_CALL getImplementationName() throw(com::sun::star::uno::RuntimeException);
92 virtual sal_Bool SAL_CALL supportsService(const rtl::OUString& ServiceName) throw(com::sun::star::uno::RuntimeException);
93 virtual com::sun::star::uno::Sequence < rtl::OUString > SAL_CALL getSupportedServiceNames() throw(com::sun::star::uno::RuntimeException);
95 private:
96 struct lookupTableItem {
97 lookupTableItem(const rtl::OUString& _uniqueID, com::sun::star::uno::Reference < com::sun::star::i18n::XExtendedCalendar >& _xCalendar) :
98 uniqueID(_uniqueID), xCalendar(_xCalendar) {}
99 rtl::OUString uniqueID;
100 com::sun::star::uno::Reference < com::sun::star::i18n::XExtendedCalendar > xCalendar;
102 std::vector<lookupTableItem*> lookupTable;
103 com::sun::star::uno::Reference < com::sun::star::lang::XMultiServiceFactory > xMSF;
104 com::sun::star::uno::Reference < com::sun::star::i18n::XExtendedCalendar > xCalendar;
107 } } } }
109 #endif