ParseDate() understands tomorrow and yesterday as well as today
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5261 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
3ce65f6c9b
commit
fd9f9f4c4b
@ -2963,17 +2963,37 @@ const wxChar *wxDateTime::ParseDate(const wxChar *date)
|
||||
while ( wxIsspace(*p) )
|
||||
p++;
|
||||
|
||||
wxString today = _T("today");
|
||||
size_t len = today.length();
|
||||
if ( wxString(p, len).CmpNoCase(today) == 0 )
|
||||
// some special cases
|
||||
static struct
|
||||
{
|
||||
const wxChar *str;
|
||||
int dayDiffFromToday;
|
||||
} literalDates[] =
|
||||
{
|
||||
{ wxTRANSLATE("today"), 0 },
|
||||
{ wxTRANSLATE("yesterday"), -1 },
|
||||
{ wxTRANSLATE("tomorrow"), 1 },
|
||||
};
|
||||
|
||||
for ( size_t n = 0; n < WXSIZEOF(literalDates); n++ )
|
||||
{
|
||||
wxString date = wxGetTranslation(literalDates[n].str);
|
||||
size_t len = date.length();
|
||||
if ( wxString(p, len).CmpNoCase(date) == 0 )
|
||||
{
|
||||
// nothing can follow this, so stop here
|
||||
p += len;
|
||||
|
||||
int dayDiffFromToday = literalDates[n].dayDiffFromToday;
|
||||
*this = Today();
|
||||
if ( dayDiffFromToday )
|
||||
{
|
||||
*this += wxDateSpan::Days(dayDiffFromToday);
|
||||
}
|
||||
|
||||
return p;
|
||||
}
|
||||
}
|
||||
|
||||
// what do we have?
|
||||
bool haveDay = FALSE, // the months day?
|
||||
|
Loading…
Reference in New Issue
Block a user