1d1766043SAndrew Rist/************************************************************** 2cdf0e10cSrcweir * 3d1766043SAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one 4d1766043SAndrew Rist * or more contributor license agreements. See the NOTICE file 5d1766043SAndrew Rist * distributed with this work for additional information 6d1766043SAndrew Rist * regarding copyright ownership. The ASF licenses this file 7d1766043SAndrew Rist * to you under the Apache License, Version 2.0 (the 8d1766043SAndrew Rist * "License"); you may not use this file except in compliance 9d1766043SAndrew Rist * with the License. You may obtain a copy of the License at 10cdf0e10cSrcweir * 11d1766043SAndrew Rist * http://www.apache.org/licenses/LICENSE-2.0 12d1766043SAndrew Rist * 13d1766043SAndrew Rist * Unless required by applicable law or agreed to in writing, 14d1766043SAndrew Rist * software distributed under the License is distributed on an 15d1766043SAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16d1766043SAndrew Rist * KIND, either express or implied. See the License for the 17d1766043SAndrew Rist * specific language governing permissions and limitations 18d1766043SAndrew Rist * under the License. 19d1766043SAndrew Rist * 20d1766043SAndrew Rist *************************************************************/ 21d1766043SAndrew Rist 22d1766043SAndrew Rist 23cdf0e10cSrcweir 24cdf0e10cSrcweir#ifndef __com_sun_star_i18n_CalendarDisplayCode_idl__ 25cdf0e10cSrcweir#define __com_sun_star_i18n_CalendarDisplayCode_idl__ 26cdf0e10cSrcweir 27cdf0e10cSrcweir//============================================================================= 28cdf0e10cSrcweir 29cdf0e10cSrcweirmodule com { module sun { module star { module i18n { 30cdf0e10cSrcweir 31cdf0e10cSrcweir//============================================================================= 32cdf0e10cSrcweir 33cdf0e10cSrcweir 34cdf0e10cSrcweir/** 35cdf0e10cSrcweir Constants to use with <member>XExtendedCalendar::getDisplayString()</member>. 36cdf0e10cSrcweir 37cdf0e10cSrcweir <p> The examples given are for an English Gregorian calendar, note 38cdf0e10cSrcweir that other calendars or locales may return completely different 39cdf0e10cSrcweir strings, for example not a four digit year but a CJK name instead. 40cdf0e10cSrcweir <p/> 41cdf0e10cSrcweir 42*d695a2a0SJürgen Schmidt @since OpenOffice 1.1.2 43cdf0e10cSrcweir */ 44cdf0e10cSrcweirpublished constants CalendarDisplayCode 45cdf0e10cSrcweir{ 46cdf0e10cSrcweir /// Day of month, one or two digits, no leading zero. 47cdf0e10cSrcweir const long SHORT_DAY = 1; 48cdf0e10cSrcweir /// Day of month, two digits, with leading zero. 49cdf0e10cSrcweir const long LONG_DAY = 2; 50cdf0e10cSrcweir /// Day of week, abbreviated name. 51cdf0e10cSrcweir const long SHORT_DAY_NAME = 3; 52cdf0e10cSrcweir /// Day of week, full name. 53cdf0e10cSrcweir const long LONG_DAY_NAME = 4; 54cdf0e10cSrcweir 55cdf0e10cSrcweir /// Month of year, one or two digits, no leading zero. 56cdf0e10cSrcweir const long SHORT_MONTH = 5; 57cdf0e10cSrcweir /// Month of year, with leading zero. 58cdf0e10cSrcweir const long LONG_MONTH = 6; 59cdf0e10cSrcweir /// Full month name. 60cdf0e10cSrcweir const long SHORT_MONTH_NAME = 7; 61cdf0e10cSrcweir /// Abbreviated month name. 62cdf0e10cSrcweir const long LONG_MONTH_NAME = 8; 63cdf0e10cSrcweir 64cdf0e10cSrcweir /// Year, two digits. 65cdf0e10cSrcweir const long SHORT_YEAR = 9; 66cdf0e10cSrcweir /// Year, four digits. 67cdf0e10cSrcweir const long LONG_YEAR = 10; 68cdf0e10cSrcweir /// Full era name, for example, "Before Christ" or "Anno Dominus". 69cdf0e10cSrcweir const long SHORT_ERA = 11; 70cdf0e10cSrcweir /// Abbreviated era name, for example, BC or AD. 71cdf0e10cSrcweir const long LONG_ERA = 12; 72cdf0e10cSrcweir /// Combined short year and era, order depends on locale/calendar. 73cdf0e10cSrcweir const long SHORT_YEAR_AND_ERA = 13; 74cdf0e10cSrcweir /// Combined full year and era, order depends on locale/calendar. 75cdf0e10cSrcweir const long LONG_YEAR_AND_ERA = 14; 76cdf0e10cSrcweir 77cdf0e10cSrcweir /// Short quarter, for example, "Q1" 78cdf0e10cSrcweir const long SHORT_QUARTER = 15; 79cdf0e10cSrcweir /// Long quarter, for example, "1st quarter" 80cdf0e10cSrcweir const long LONG_QUARTER = 16; 81cdf0e10cSrcweir}; 82cdf0e10cSrcweir 83cdf0e10cSrcweir//============================================================================= 84cdf0e10cSrcweir}; }; }; }; 85cdf0e10cSrcweir 86cdf0e10cSrcweir#endif 87