XTPCalendarUtils.cpp
上传用户:szled88
上传日期:2015-04-09
资源大小:43957k
文件大小:17k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. // XTPCalendarUtils.cpp: implementation of the CXTPCalendarUtils class.
  2. //
  3. // This file is a part of the XTREME CALENDAR MFC class library.
  4. // (c)1998-2008 Codejock Software, All Rights Reserved.
  5. //
  6. // THIS SOURCE FILE IS THE PROPERTY OF CODEJOCK SOFTWARE AND IS NOT TO BE
  7. // RE-DISTRIBUTED BY ANY MEANS WHATSOEVER WITHOUT THE EXPRESSED WRITTEN
  8. // CONSENT OF CODEJOCK SOFTWARE.
  9. //
  10. // THIS SOURCE CODE CAN ONLY BE USED UNDER THE TERMS AND CONDITIONS OUTLINED
  11. // IN THE XTREME TOOLKIT PRO LICENSE AGREEMENT. CODEJOCK SOFTWARE GRANTS TO
  12. // YOU (ONE SOFTWARE DEVELOPER) THE LIMITED RIGHT TO USE THIS SOFTWARE ON A
  13. // SINGLE COMPUTER.
  14. //
  15. // CONTACT INFORMATION:
  16. // support@codejock.com
  17. // http://www.codejock.com
  18. //
  19. /////////////////////////////////////////////////////////////////////////////
  20. #include "stdafx.h"
  21. #include "resource.h"
  22. #include <math.h>
  23. #include "Common/XTPResourceManager.h"
  24. #include "Common/XTPVC50Helpers.h"
  25. #include "Common/XTPDrawHelpers.h"
  26. #include "Common/XTPSystemHelpers.h"
  27. #include "XTPCalendarRecurrencePattern.h"
  28. #include "XTPCalendarData.h"
  29. #include "XTPCalendarUtils.h"
  30. #ifdef _DEBUG
  31. #undef THIS_FILE
  32. static char THIS_FILE[] = __FILE__;
  33. #define new DEBUG_NEW
  34. #endif
  35. ////////////////////////////////////////////////////////////////////////////
  36. BOOL CXTPCalendarUtils::s_bUseResourceFileLocale = FALSE;
  37. BOOL CXTPCalendarUtils::IsUseResourceFileLocale()
  38. {
  39. return s_bUseResourceFileLocale;
  40. }
  41. void CXTPCalendarUtils::SetUseResourceFileLocale(BOOL bUseResourceFileLocale)
  42. {
  43. s_bUseResourceFileLocale = bUseResourceFileLocale;
  44. }
  45. LCID CXTPCalendarUtils::GetActiveLCID()
  46. {
  47. LCID lcidCurr = LOCALE_USER_DEFAULT;
  48. if (s_bUseResourceFileLocale)
  49. lcidCurr = MAKELCID(XTPResourceManager()->GetResourcesLangID(), SORT_DEFAULT);
  50. return lcidCurr;
  51. }
  52. ////////////////////////////////////////////////////////////////////////////
  53. CXTPCalendarUtils::CXTPCalendarUtils()
  54. {
  55. }
  56. int CXTPCalendarUtils::GetLocaleLong(LCTYPE LCType)
  57. {
  58. TCHAR szResult[5];
  59. int nResult = ::GetLocaleInfo(GetActiveLCID(), LCType , szResult, 4);
  60. ASSERT(nResult == 2);
  61. return _ttoi(szResult);
  62. }
  63. CString CXTPCalendarUtils::GetLocaleString(LCTYPE LCType, int nMaxLength)
  64. {
  65. CString strResult;
  66. int nResult = ::GetLocaleInfo(GetActiveLCID(), LCType , strResult.GetBufferSetLength(nMaxLength), nMaxLength);
  67. strResult.ReleaseBuffer();
  68. ASSERT(strResult.GetLength() == nResult - 1);
  69. return strResult;
  70. }
  71. CString CXTPCalendarUtils::GetDateFormat(CONST SYSTEMTIME* lpDate, LPCTSTR lpFormat)
  72. {
  73. CString strResult;
  74. int nResult = ::GetDateFormat(GetActiveLCID(), 0, lpDate, lpFormat, strResult.GetBufferSetLength(255), 255);
  75. strResult.ReleaseBuffer();
  76. ASSERT(strResult.GetLength() == nResult - 1 || strResult.GetLength() == 0);
  77. return strResult;
  78. }
  79. CString CXTPCalendarUtils::GetTimeFormat(CONST SYSTEMTIME* lpTime, LPCTSTR lpFormat)
  80. {
  81. CString strResult;
  82. int nResult = ::GetTimeFormat(GetActiveLCID(), 0, lpTime, lpFormat, strResult.GetBufferSetLength(255), 255);
  83. strResult.ReleaseBuffer();
  84. ASSERT(strResult.GetLength() == nResult - 1);
  85. return strResult;
  86. }
  87. CString CXTPCalendarUtils::GetDateFormat(CONST COleDateTime& dtDate, LPCTSTR lpFormat)
  88. {
  89. SYSTEMTIME stDate;
  90. GETASSYSTEMTIME_DT(dtDate, stDate);
  91. return GetDateFormat(&stDate, lpFormat);
  92. }
  93. CString CXTPCalendarUtils::GetTimeFormat(CONST COleDateTime& dtTime, LPCTSTR lpFormat)
  94. {
  95. SYSTEMTIME stTime;
  96. GETASSYSTEMTIME_DT(dtTime, stTime);
  97. return GetTimeFormat(&stTime, lpFormat);
  98. }
  99. CString CXTPCalendarUtils::GetTimeFormat(int nHour, int nMinutes, LPCTSTR lpFormat)
  100. {
  101. SYSTEMTIME stTime;
  102. ::ZeroMemory(&stTime, sizeof(stTime));
  103. stTime.wHour = (WORD)nHour;
  104. stTime.wMinute = (WORD)nMinutes;
  105. return GetTimeFormat(&stTime, lpFormat);
  106. }
  107. ///***
  108. COleDateTime CXTPCalendarUtils::RetriveEventEndDate(const CXTPCalendarEvent* pEvent)
  109. {
  110. if (!pEvent)
  111. {
  112. ASSERT(FALSE);
  113. return COleDateTime((DATE)0);
  114. }
  115. COleDateTime dtStartDay = ResetTime(pEvent->GetStartTime());
  116. COleDateTime dtEndDay = ResetTime(pEvent->GetEndTime());
  117. if (IsZeroTime(pEvent->GetEndTime()) && dtStartDay < dtEndDay)
  118. {
  119. dtEndDay -= COleDateTimeSpan(1, 0, 0, 0);
  120. }
  121. return dtEndDay;
  122. }
  123. BOOL CXTPCalendarUtils::CalcDayOfMonth(COleDateTime& rdtDate, int nWhichDay, int nWhichDayMask)
  124. {
  125. ASSERT(nWhichDay >= xtpCalendarWeekFirst && nWhichDay <= xtpCalendarWeekLast);
  126. ASSERT((nWhichDayMask & (~xtpCalendarDayAllWeek)) == 0);
  127. COleDateTime dtYMD;
  128. dtYMD.SetDate(rdtDate.GetYear(), rdtDate.GetMonth(), 1);
  129. COleDateTimeSpan spStep(nWhichDay == xtpCalendarWeekLast ? -1 : 1, 0, 0, 0);
  130. if (nWhichDay == xtpCalendarWeekLast)
  131. {
  132. CXTPCalendarUtils::ShiftDate_Month(dtYMD, 1);
  133. COleDateTimeSpan spInitStep(-1, 0, 0, 0);
  134. dtYMD += spInitStep;
  135. }
  136. int nFCount = nWhichDay == xtpCalendarWeekLast ? xtpCalendarWeekLast-1 : xtpCalendarWeekFirst-1;
  137. for (int i = 0; i < 31; i++)
  138. {
  139. int nWD = dtYMD.GetDayOfWeek();
  140. int nWDMask = CXTPCalendarUtils::GetDayOfWeekMask(nWD);
  141. if (nWhichDayMask & nWDMask)
  142. {
  143. nFCount++;
  144. if (nFCount == nWhichDay)
  145. {
  146. rdtDate = dtYMD;
  147. return TRUE;
  148. }
  149. }
  150. dtYMD += spStep;
  151. }
  152. ASSERT(FALSE);
  153. return FALSE;
  154. }
  155. int CXTPCalendarUtils::GetWeekOfYear(COleDateTime dtDate, int nFirstDayOfWeekIndex)
  156. {
  157. COleDateTime dtFirst(dtDate.GetYear(), 1, 1, 0, 0, 0);
  158. COleDateTime dtFirstWeekDate = ShiftDateToWeekBegin(dtFirst, nFirstDayOfWeekIndex);
  159. COleDateTimeSpan spDiff = dtDate - dtFirstWeekDate;
  160. int nDayOfYear = (int)spDiff.GetTotalDays();
  161. int nWeek = nDayOfYear/7 + 1;
  162. return nWeek;
  163. }
  164. BOOL CXTPCalendarUtils::IsWin9x()
  165. {
  166. return XTPSystemVersion()->IsWin9x();
  167. }
  168. BOOL CXTPCalendarUtils::SystemTimeToTzSpecificLocalTime(
  169. const TIME_ZONE_INFORMATION* pTZI,
  170. const SYSTEMTIME* pUTime, SYSTEMTIME* pTzTime)
  171. {
  172. if (!pTZI || !pUTime || !pTzTime)
  173. {
  174. ASSERT(FALSE);
  175. return FALSE;
  176. }
  177. if (!CXTPCalendarUtils::IsWin9x())
  178. {
  179. return ::SystemTimeToTzSpecificLocalTime((TIME_ZONE_INFORMATION*)pTZI,
  180.  (SYSTEMTIME*)pUTime, pTzTime);
  181. }
  182. //---------------------------------------------------------------------------
  183. COleDateTime dtUTime(*pUTime);
  184. COleDateTime dtTzTime = dtUTime;
  185. int nBias_min = pTZI->Bias;
  186. if (pTZI->StandardDate.wMonth)
  187. {
  188. nBias_min += pTZI->StandardBias;
  189. }
  190. BOOL bDayLight = FALSE;
  191. int nDLBias_min = 0;
  192. if (pTZI->DaylightDate.wMonth != 0 && pTZI->DaylightBias != 0)
  193. {
  194. bDayLight = TRUE;
  195. nDLBias_min = (pTZI->DaylightBias - pTZI->StandardBias);
  196. }
  197. dtTzTime = dtUTime - Minutes2Span(nBias_min);
  198. if (bDayLight && IsInDst(pTZI, dtTzTime))
  199. {
  200. dtTzTime -= Minutes2Span(nDLBias_min);
  201. }
  202. return GETASSYSTEMTIME_DT(dtTzTime, *pTzTime);
  203. }
  204. BOOL CXTPCalendarUtils::IsInDst(const TIME_ZONE_INFORMATION* pTZI,
  205. COleDateTime dtTime)
  206. {
  207. if (pTZI->StandardDate.wMonth == 0 ||
  208. pTZI->DaylightDate.wMonth == 0 || pTZI->DaylightBias == 0)
  209. {
  210. return FALSE;
  211. }
  212. COleDateTime dtStandard(dtTime.GetYear(), pTZI->StandardDate.wMonth, 1,
  213. pTZI->StandardDate.wHour, pTZI->StandardDate.wMinute,
  214. pTZI->StandardDate.wSecond);
  215. COleDateTime dtDaylight(dtTime.GetYear(), pTZI->DaylightDate.wMonth, 1,
  216. pTZI->DaylightDate.wHour, pTZI->DaylightDate.wMinute,
  217. pTZI->DaylightDate.wSecond);
  218. BOOL bRes1 = CalcDayOfMonth(dtStandard, pTZI->StandardDate.wDay,
  219. GetDayOfWeekMask(pTZI->StandardDate.wDayOfWeek + 1));
  220. BOOL bRes2 = CalcDayOfMonth(dtDaylight, pTZI->DaylightDate.wDay,
  221. GetDayOfWeekMask(pTZI->DaylightDate.wDayOfWeek + 1));
  222. if (!bRes1 || !bRes2)
  223. {
  224. ASSERT(FALSE);
  225. return FALSE;
  226. }
  227. //  TRACE(_T("dtStandard = %d-%d-%d || "), dtStandard.GetYear(), dtStandard.GetMonth(), dtStandard.GetDay());
  228. //  TRACE(_T("dtDaylight = %d-%d-%d n"), dtDaylight.GetYear(), dtDaylight.GetMonth(), dtDaylight.GetDay());
  229. //  TRACE(_T("dtTime = %d-%d-%d n"), dtTime.GetYear(), dtTime.GetMonth(), dtTime.GetDay());
  230. if (dtStandard < dtDaylight)
  231. {
  232. if (dtTime >= dtDaylight || dtTime < dtStandard)
  233. {
  234. return TRUE;
  235. }
  236. }
  237. else
  238. {
  239. if (dtTime >= dtDaylight && dtTime < dtStandard)
  240. {
  241. return TRUE;
  242. }
  243. }
  244. return FALSE;
  245. }
  246. COleDateTime CXTPCalendarUtils::GetCurrentTime()
  247. {
  248. SYSTEMTIME st;
  249. ::ZeroMemory(&st, sizeof(st));
  250. ::GetLocalTime(&st);
  251. COleDateTime dtNow(st);
  252. return dtNow;
  253. }
  254. CString CXTPCalendarUtils::GetTimeFormatString_HrMin()
  255. {
  256. ////////////////////////////////////////////////////////////////////////////
  257. //  LOCALE_STIME    // time separator
  258. //
  259. //  LOCALE_ITLZERO  //leading zeros in time field
  260. //      0 No leading zeros for hours.
  261. //      1 Leading zeros for hours.
  262. //
  263. //  LOCALE_ITIME    // time format specifier
  264. //      0 AM / PM 12-hour format.
  265. //      1 24-hour format.
  266. //
  267. //  LOCALE_ITIMEMARKPOSN    // time marker position
  268. //      0 Use as suffix.
  269. //      1 Use as prefix.
  270. //
  271. //  LOCALE_S1159    // AM designator
  272. //  LOCALE_S2359    // PM designator
  273. ////////////////////////////////////////////////////////////////////////////
  274. CString strTmp;
  275. CString strTimeSeparator = CXTPCalendarUtils::GetLocaleString(LOCALE_STIME, 16);
  276. strTmp = CXTPCalendarUtils::GetLocaleString(LOCALE_ITIME, 16);
  277. BOOL b24_HFormat = _ttoi(strTmp) == 1;
  278. strTmp = CXTPCalendarUtils::GetLocaleString(LOCALE_ITLZERO, 16);
  279. BOOL bH_LZero = _ttoi(strTmp) == 1;
  280. strTmp = CXTPCalendarUtils::GetLocaleString(LOCALE_ITIMEMARKPOSN, 16);
  281. BOOL bAM_PM_Prefix = _ttoi(strTmp) == 1;
  282. //---------------------------------------------------------------------------
  283. CString strTimeFormat;
  284. strTimeFormat += strTimeSeparator;
  285. strTimeFormat += _T("mm");
  286. if (b24_HFormat)
  287. {
  288. strTmp = bH_LZero ? _T("HH") : _T("H");
  289. strTimeFormat = strTmp + strTimeFormat;
  290. }
  291. else //12 AM/PM Format
  292. {
  293. strTmp = bH_LZero ? _T("hh") : _T("h");
  294. strTimeFormat = strTmp + strTimeFormat;
  295. if (bAM_PM_Prefix)
  296. {
  297. strTimeFormat = _T("tt ") + strTimeFormat;
  298. }
  299. else
  300. {
  301. strTimeFormat = strTimeFormat + _T(" tt");
  302. }
  303. }
  304. //---------------------------------------------------------------------------
  305. return strTimeFormat;
  306. }
  307. int CXTPCalendarUtils::ParceTimeString_min(LPCTSTR pcszTime_HrMin)
  308. {
  309. CString strTime = pcszTime_HrMin;
  310. strTime.TrimLeft(); strTime.TrimRight();
  311. CString strPM = CXTPCalendarUtils::GetLocaleString(LOCALE_S2359, 20);
  312. strPM.MakeUpper();
  313. strTime.MakeUpper();
  314. // By default Am, or 24 hr format.
  315. BOOL bPM = !strPM.IsEmpty() && strTime.Find(strPM) >= 0;
  316. // remove prefixed AmPm and other non-digits in the beginning
  317. CString strTmp;
  318. strTmp = strTime.SpanExcluding(_T("0123456789"));
  319. int nTmpLen = strTmp.GetLength();
  320. if (nTmpLen)
  321. {
  322. DELETE_S(strTime, 0, nTmpLen);
  323. }
  324. //-------------------------------------------------
  325. CString strHr, strMin;
  326. strHr = strTime.SpanIncluding(_T("0123456789"));
  327. int nHrLen = strHr.GetLength();
  328. if (!nHrLen)
  329. {
  330. return -1;
  331. }
  332. DELETE_S(strTime, 0, nHrLen);
  333. CString strTimeSeparator = CXTPCalendarUtils::GetLocaleString(LOCALE_STIME, 16);
  334. TCHAR ctTimeSep = strTimeSeparator.GetLength() ? (TCHAR)strTimeSeparator[0] : (TCHAR)0;
  335. if (strTime.IsEmpty() || (strTime[0] != ctTimeSep && strTime[0] != _T(':')))
  336. {
  337. return -1;
  338. }
  339. DELETE_S(strTime, 0);
  340. strMin = strTime.SpanIncluding(_T("0123456789"));
  341. TCHAR* pChar1 = NULL, *pChar2 = NULL;
  342. int nHr = _tcstol(strHr, &pChar1, 10);
  343. int nMin = _tcstol(strMin, &pChar2, 10);
  344. int nResult_min = nHr * 60 + nMin;
  345. if (bPM && nResult_min <= 12 * 60)
  346. nResult_min += 12 * 60;
  347. if (nResult_min > 24 * 60)
  348. nResult_min = nResult_min % (24 * 60);
  349. return nResult_min;
  350. }
  351. CFont* CXTPCalendarUtils::GetMaxHeightFont(CArray<CFont*, CFont*>& arFonts, CDC* pDC,
  352.    int* pnMaxHeight)
  353. {
  354. CFont* pFontMax = NULL;
  355. int nMaxHeight = 0;
  356. int nCount = (int)arFonts.GetSize();
  357. for (int i = 0; i < nCount; i++)
  358. {
  359. CFont* pFont = arFonts[i];
  360. if (pFont && pFont->m_hObject)
  361. {
  362. if (pDC)
  363. {
  364. CXTPFontDC autoFont(pDC, pFont);
  365. CSize szFi = pDC->GetTextExtent(_T("Aq"), 2);
  366. if (szFi.cy > nMaxHeight)
  367. {
  368. pFontMax = pFont;
  369. nMaxHeight = szFi.cy;
  370. }
  371. }
  372. else
  373. {
  374. LOGFONT lf;
  375. int nRes = pFont->GetLogFont(&lf);
  376. ASSERT(nRes);
  377. if (nRes)
  378. {
  379. int nHeight = abs(lf.lfHeight) + (lf.lfWeight < FW_BOLD ? 0 : 1);
  380. if (nHeight > nMaxHeight)
  381. {
  382. pFontMax = pFont;
  383. nMaxHeight = nHeight;
  384. }
  385. }
  386. }
  387. }
  388. }
  389. if (pnMaxHeight)
  390. {
  391. *pnMaxHeight = nMaxHeight;
  392. }
  393. return pFontMax;
  394. }
  395. CXTPCalendarUtils::CXTPTimesResourceIDs::CXTPTimesResourceIDs()
  396. {
  397. s_mapMinutes.SetAt(0, XTP_IDS_CALENDAR_MINUTES_0);
  398. s_mapMinutes.SetAt(1, XTP_IDS_CALENDAR_MINUTES_1);
  399. s_mapMinutes.SetAt(5, XTP_IDS_CALENDAR_MINUTES_5);
  400. s_mapMinutes.SetAt(10, XTP_IDS_CALENDAR_MINUTES_10);
  401. s_mapMinutes.SetAt(15, XTP_IDS_CALENDAR_MINUTES_15);
  402. s_mapMinutes.SetAt(30, XTP_IDS_CALENDAR_MINUTES_30);
  403. s_mapHours.SetAt(1, XTP_IDS_CALENDAR_HOURS_1);
  404. s_mapHours.SetAt(2, XTP_IDS_CALENDAR_HOURS_2);
  405. s_mapHours.SetAt(3, XTP_IDS_CALENDAR_HOURS_3);
  406. s_mapHours.SetAt(4, XTP_IDS_CALENDAR_HOURS_4);
  407. s_mapHours.SetAt(5, XTP_IDS_CALENDAR_HOURS_5);
  408. s_mapHours.SetAt(6, XTP_IDS_CALENDAR_HOURS_6);
  409. s_mapHours.SetAt(7, XTP_IDS_CALENDAR_HOURS_7);
  410. s_mapHours.SetAt(8, XTP_IDS_CALENDAR_HOURS_8);
  411. s_mapHours.SetAt(9, XTP_IDS_CALENDAR_HOURS_9);
  412. s_mapHours.SetAt(10, XTP_IDS_CALENDAR_HOURS_10);
  413. s_mapHours.SetAt(11, XTP_IDS_CALENDAR_HOURS_11);
  414. s_mapHours.SetAt(12, XTP_IDS_CALENDAR_DAYS_0_5);
  415. s_mapHours.SetAt(18, XTP_IDS_CALENDAR_HOURS_18);
  416. s_mapDays.SetAt(1, XTP_IDS_CALENDAR_DAYS_1);
  417. s_mapDays.SetAt(2, XTP_IDS_CALENDAR_DAYS_2);
  418. s_mapDays.SetAt(3, XTP_IDS_CALENDAR_DAYS_3);
  419. s_mapWeeks.SetAt(1, XTP_IDS_CALENDAR_WEEKS_1);
  420. s_mapWeeks.SetAt(2, XTP_IDS_CALENDAR_WEEKS_2);
  421. }
  422. CString CXTPCalendarUtils::LoadString(UINT nIDResource)
  423. {
  424. CString str;
  425. VERIFY(XTPResourceManager()->LoadString(&str, nIDResource));
  426. return str;
  427. }
  428. BOOL CXTPCalendarUtils::LoadString2(CString& rstrString, UINT nIDResource)
  429. {
  430. CString str;
  431. BOOL bFind = XTPResourceManager()->LoadString(&str, nIDResource);
  432. if (bFind)
  433. {
  434. rstrString = str;
  435. }
  436. return bFind;
  437. }
  438. CString CXTPCalendarUtils::FormatTimeDuration(int nMinutes, BOOL bRoundly)
  439. {
  440. static CXTPTimesResourceIDs s_RCData;
  441. int nWeeks = nMinutes / (7*24*60);
  442. int nWeeks_r = nMinutes % (7*24*60);
  443. int nDays = nMinutes / (24*60);
  444. int nDays_r = nMinutes % (24*60);
  445. int nHours = nMinutes / 60;
  446. int nHours_r = nMinutes % 60;
  447. CString strDuration;
  448. UINT nStrID = 0;
  449. if ((bRoundly || nWeeks_r == 0) && nWeeks)
  450. {
  451. if (s_RCData.s_mapWeeks.Lookup(nWeeks, nStrID) && nStrID)
  452. strDuration = LoadString(nStrID);
  453. else
  454. strDuration.Format(_T("%d %s"), nWeeks, (LPCTSTR)LoadString(XTP_IDS_CALENDAR_WEEKS));
  455. }
  456. else if ((bRoundly  || nDays_r == 0) && nDays)
  457. {
  458. if (s_RCData.s_mapDays.Lookup(nDays, nStrID) && nStrID)
  459. strDuration = LoadString(nStrID);
  460. else
  461. strDuration.Format(_T("%d %s"), nDays, (LPCTSTR)LoadString(XTP_IDS_CALENDAR_DAYS));
  462. }
  463. else if ((bRoundly || nHours_r == 0) && nHours)
  464. {
  465. if (s_RCData.s_mapHours.Lookup(nHours, nStrID) && nStrID)
  466. strDuration = LoadString(nStrID);
  467. else
  468. strDuration.Format(_T("%d %s"), nHours, (LPCTSTR)LoadString(XTP_IDS_CALENDAR_HOURS));
  469. }
  470. else
  471. {
  472. if (s_RCData.s_mapMinutes.Lookup(nMinutes, nStrID) && nStrID)
  473. strDuration = LoadString(nStrID);
  474. else
  475. strDuration.Format(_T("%d %s"), nMinutes, (LPCTSTR)LoadString(XTP_IDS_CALENDAR_MINUTES));
  476. }
  477. return strDuration;
  478. }
  479. int CXTPCalendarUtils::ParceTimeDuration_min(LPCTSTR pcszTime)
  480. {
  481. CString strTime = pcszTime;
  482. strTime.TrimLeft(); strTime.TrimRight();
  483. CString strValue, strScale;
  484. strValue = strTime.SpanIncluding(_T("-+0123456789,."));
  485. int nValueLen = strValue.GetLength();
  486. if (!nValueLen)
  487. {
  488. return INT_MIN;
  489. }
  490. DELETE_S(strTime, 0, nValueLen);
  491. strScale = strTime;
  492. strScale.TrimLeft();
  493. TCHAR* pChar = NULL;
  494. REPLACE_S(strValue, _T(","), _T("."));
  495. double dValue = _tcstod(strValue, &pChar);
  496. CStringArray arSIname;
  497. CStringArray arSIname2;
  498. CUIntArray   arSIvalue;
  499. arSIname.Add(LoadString(XTP_IDS_CALENDAR_TIME_PREFIX_MINUTES));
  500. arSIname2.Add(_T("min"));
  501. arSIvalue.Add(1);
  502. arSIname.Add(LoadString(XTP_IDS_CALENDAR_TIME_PREFIX_HOURS));
  503. arSIname2.Add(_T("h"));
  504. arSIvalue.Add(60);
  505. arSIname.Add(LoadString(XTP_IDS_CALENDAR_TIME_PREFIX_DAYS));
  506. arSIname2.Add(_T("d"));
  507. arSIvalue.Add(24*60);
  508. arSIname.Add(LoadString(XTP_IDS_CALENDAR_TIME_PREFIX_WEEKS));
  509. arSIname2.Add(_T("w"));
  510. arSIvalue.Add(7*24*60);
  511. int nCount = (int)arSIname.GetSize();
  512. for (int i = 0; i < nCount; i++)
  513. {
  514. if (_tcsnicmp(strScale, arSIname[i], arSIname[i].GetLength()) == 0 ||
  515. _tcsnicmp(strScale, arSIname2[i], arSIname2[i].GetLength()) == 0)
  516. {
  517. return (int)(dValue * arSIvalue[i]);
  518. }
  519. }
  520. return (int)dValue; // minutes
  521. }