Version 5.2.6.1, tag libreoffice-5.2.6.1
[LibreOffice.git] / offapi / com / sun / star / i18n / Calendar.idl
blobea03af8f75c25558f8021f8a25e2f0efd4dff194
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #ifndef __com_sun_star_i18n_Calendar_idl__
21 #define __com_sun_star_i18n_Calendar_idl__
23 #include <com/sun/star/i18n/CalendarItem.idl>
26 module com { module sun { module star { module i18n {
29 /**
30 A calendar as returned in a sequence by
31 XLocaleData::getAllCalendars().
33 @see XLocaleData
34 for links to DTD of XML locale data files.
37 published struct Calendar
39 /// the days of the week, see also CalendarItem.
40 sequence< CalendarItem > Days;
41 /// the months of the year, see also CalendarItem.
42 sequence< CalendarItem > Months;
43 /// the possible eras, see also CalendarItem.
44 sequence< CalendarItem > Eras;
45 /// the ID of the day with which the week begins.
46 string StartOfWeek;
47 /// how many days must reside in the first week of a year.
48 short MinimumNumberOfDaysForFirstWeek;
49 /// if this is the default calendar for a given locale.
50 boolean Default;
51 /// the name of the calendar, for example, <b>Gregorian</b>.
52 string Name;
55 }; }; }; };
57 #endif
59 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */