summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/i18n/Calendar2.idl
blob: ef6dbcfcc48eb8898e8dc42a437586d8c50b0325 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
 * This file is part of the LibreOffice project.
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 */

#ifndef __com_sun_star_i18n_Calendar2_idl__
#define __com_sun_star_i18n_Calendar2_idl__

#include <com/sun/star/i18n/CalendarItem2.idl>


module com { module sun { module star { module i18n {


/**
    Calendar items as returned in a sequence by
    <member>XLocaleData3::getAllCalendars2()</member>.

    <p> Similar to
    <type scope="::com::sun::star::i18n">Calendar</type> this provides 
    additional members with a sequence of possessive (genitive case) and 
    partitive case month names for locales that use them, for example 
    Slavic locales. If a locale does not provide the possessive form in 
    <member>GenitiveMonths</member>, the names are identical to the 
    nominative case nouns in <member>Calendar::Months</member>. If a 
    locale does not provide the partitive case in 
    <member>PartitiveMonths</member>, the names are identical to 
    <member>GenititiveMonths</member>. </p>

    <p> The sequences are of type
    <type scope="com::sun::star::i18n">CalendarItem2</type> instead of
    <type scope="com::sun::star::i18n">CalendarItem</type>, with the 
    additional <member>NarrowName</member> member.

    @see XLocaleData
        for links to DTD of XML locale data files.

    @since LibreOffice 3.5
 */

published struct Calendar2
{
    /// The days of the week.
    sequence< CalendarItem2 >   Days;

    /// The months of the year.
    sequence< CalendarItem2 >   Months;

    /// The months of the year in possessive genitive case.
    sequence< CalendarItem2 >   GenitiveMonths;

    /// The months of the year in partitive case.
    sequence< CalendarItem2 >   PartitiveMonths;

    /// The possible eras.
    sequence< CalendarItem2 >   Eras;

    /// The ID of the day with which the week begins.
    string                      StartOfWeek;

    /// How many days must reside in the first week of a year.
    short                       MinimumNumberOfDaysForFirstWeek;

    /// If this is the default calendar for a given locale.
    boolean                     Default;

    /// The name of the calendar, for example, <b>Gregorian</b>.
    string                      Name;
};

}; }; }; };

#endif