本文整理汇总了C++中TLocale::StartOfWeek方法的典型用法代码示例。如果您正苦于以下问题:C++ TLocale::StartOfWeek方法的具体用法?C++ TLocale::StartOfWeek怎么用?C++ TLocale::StartOfWeek使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类TLocale
的用法示例。
在下文中一共展示了TLocale::StartOfWeek方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: testUK
void testUK(const TLocale& aLocale)
{
//#ifdef __WINS__
test(aLocale.CountryCode()==44);
test(aLocale.DateFormat()==EDateEuropean);
test(aLocale.TimeFormat()==ETime12);
test(aLocale.CurrencySymbolPosition()==ELocaleBefore);
test(aLocale.CurrencySpaceBetween()==FALSE);
test(aLocale.CurrencyDecimalPlaces()==2);
test(aLocale.CurrencyNegativeInBrackets()==EFalse);
test(aLocale.CurrencyTriadsAllowed()==TRUE);
test(aLocale.ThousandsSeparator()==',');
test(aLocale.DecimalSeparator()=='.');
test(aLocale.DateSeparator(0)==0);
test(aLocale.DateSeparator(1)=='/');
test(aLocale.DateSeparator(2)=='/');
test(aLocale.DateSeparator(3)==0);
test(aLocale.TimeSeparator(0)==0);
test(aLocale.TimeSeparator(1)==':');
test(aLocale.TimeSeparator(2)==':');
test(aLocale.TimeSeparator(3)==0);
test(aLocale.AmPmSymbolPosition()==TRUE);
test(aLocale.AmPmSpaceBetween()==TRUE);
test(aLocale.HomeDaylightSavingZone()==EDstEuropean);
test(aLocale.WorkDays()==0x1f);
test(aLocale.StartOfWeek()==EMonday);
test(aLocale.ClockFormat()==EClockAnalog);
test(aLocale.UnitsGeneral()==EUnitsImperial);
test(aLocale.UnitsDistanceShort()==EUnitsImperial);
test(aLocale.UnitsDistanceLong()==EUnitsImperial);
//#endif
}
示例2: testUS
void testUS(const TLocale& aLocale)
{
test.Printf(_L("Test US\n"));
test(aLocale.CountryCode()==1);
test(aLocale.DateFormat()==EDateAmerican);
test(aLocale.TimeFormat()==ETime12);
test(aLocale.CurrencySymbolPosition()==ELocaleBefore);
test(aLocale.CurrencySpaceBetween()==FALSE);
test(aLocale.CurrencyDecimalPlaces()==2);
test(aLocale.CurrencyNegativeInBrackets()==EFalse);
test(aLocale.CurrencyTriadsAllowed()==TRUE);
test(aLocale.ThousandsSeparator()==',');
test(aLocale.DecimalSeparator()=='.');
test(aLocale.DateSeparator(0)==0);
test(aLocale.DateSeparator(1)=='/');
test(aLocale.DateSeparator(2)=='/');
test(aLocale.DateSeparator(3)==0);
test(aLocale.TimeSeparator(0)==0);
test(aLocale.TimeSeparator(1)==':');
test(aLocale.TimeSeparator(2)==':');
test(aLocale.TimeSeparator(3)==0);
test(aLocale.AmPmSymbolPosition()==TRUE);
test(aLocale.AmPmSpaceBetween()==TRUE);
test(aLocale.HomeDaylightSavingZone()==EDstNorthern);
test(aLocale.WorkDays()==0x1f);
test(aLocale.StartOfWeek()==ESunday);
test(aLocale.ClockFormat()==EClockAnalog);
test(aLocale.UnitsGeneral()==EUnitsImperial);
test(aLocale.UnitsDistanceShort()==EUnitsImperial);
test(aLocale.UnitsDistanceLong()==EUnitsImperial);
}
示例3: InitialiseData
void TCalRRule::InitialiseData()
{
iBuffer = 0;
iCount = 0;
iUntil.SetTimeUtcL(Time::NullTTime()); // this can't leave
iInterval = 1;
TLocale locale;
iWkSt = locale.StartOfWeek();
iReserved = 0;
iReserved2 = 0;
}
示例4: DaylightSavingsAppliesL
TBool Util::DaylightSavingsAppliesL(const TTime& utc)
{
// This algorithm needs the first day of the week to be monday
TDay oldStart;
TLocale set;
oldStart = set.StartOfWeek();
set.SetStartOfWeek(EMonday);
set.Set();
TBuf<9> min;
TBuf<9> max;
utc.FormatL(min, KDaylightSavingsMinFormat);
utc.FormatL(max, KDaylightSavingsMaxFormat);
// Get times representing the first/last possible day of this
// year that daylight savings time change could change on
TTime timeMin;
User::LeaveIfError(timeMin.Set(min));
TTime timeMax;
User::LeaveIfError(timeMax.Set(max));
// Find the last sunday in the respective months
TTimeIntervalDays addMin(6 - timeMin.DayNoInWeek());
TTimeIntervalDays addMax(6 - timeMax.DayNoInWeek());
timeMin += addMin;
timeMax += addMax;
// The change happens at 1AM.
TTimeIntervalHours hour(1);
timeMin += hour;
timeMax += hour;
// Now we know which day the change occurs on.
// Compare it to what the UTC is.
TBool result = ((timeMin <= utc) && (timeMax > utc));
// reset the first week day
set.SetStartOfWeek(oldStart);
set.Set();
return result;
}