31wxString toUsrDateTimeFormat(
const wxDateTime date_time,
33 wxDateTime t(date_time);
34 wxString effective_time_zone =
options.time_zone;
35 if (effective_time_zone == wxEmptyString) {
36 effective_time_zone = ::g_datetime_format;
38 if (effective_time_zone == wxEmptyString) {
39 effective_time_zone =
"UTC";
42 std::vector<std::pair<wxString, wxString>> formatMap = {
43#if wxCHECK_VERSION(3, 1, 6)
48 wxUILocale::GetCurrent().GetInfo(wxLOCALE_LONG_DATE_FMT) +
" " +
49 wxUILocale::GetCurrent().GetInfo(wxLOCALE_TIME_FMT)},
50 {
"$long_date", wxUILocale::GetCurrent().GetInfo(wxLOCALE_LONG_DATE_FMT)},
51 {
"$weekday_short_date_time",
52 "%a " + wxUILocale::GetCurrent().GetInfo(wxLOCALE_SHORT_DATE_FMT) +
" " +
53 wxUILocale::GetCurrent().GetInfo(wxLOCALE_TIME_FMT)},
54 {
"$weekday_short_date",
55 "%a " + wxUILocale::GetCurrent().GetInfo(wxLOCALE_SHORT_DATE_FMT)},
57 wxUILocale::GetCurrent().GetInfo(wxLOCALE_SHORT_DATE_FMT) +
" " +
58 wxUILocale::GetCurrent().GetInfo(wxLOCALE_TIME_FMT)},
60 wxUILocale::GetCurrent().GetInfo(wxLOCALE_SHORT_DATE_FMT)},
61 {
"$hour_minutes_seconds",
62 wxUILocale::GetCurrent().GetInfo(wxLOCALE_TIME_FMT)},
64 {
"$long_date_time",
"%x %X"},
67 {
"$weekday_short_date_time",
"%a %x %X"},
68 {
"$weekday_short_date",
"%a %x"},
69 {
"$short_date_time",
"%x %X"},
70 {
"$short_date",
"%x"},
71 {
"$hour_minutes_seconds",
"%X"},
73 {
"$hour_minutes",
"%H:%M"},
75 wxString format =
options.format_string;
76 if (format == wxEmptyString) {
77 format =
"$weekday_short_date_time";
80 for (
const auto& pair : formatMap) {
81 format.Replace(pair.first, pair.second);
84 if (effective_time_zone ==
"Local Time") {
85 wxDateTime now = wxDateTime::Now();
86 if ((now == (now.ToGMT())) &&
88 t.Add(wxTimeSpan(1, 0, 0, 0));
94 wxString tzName = t.Format(
"%Z");
95 ret = t.Format(format, wxDateTime::Local) +
" " + tzName;
96 }
else if (effective_time_zone ==
"UTC") {
97 ret = t.Format(format, wxDateTime::UTC) +
" " + _(
"UTC");
98 }
else if (effective_time_zone ==
"LMT") {
100 if (std::isnan(
options.longitude)) {
101 t = wxInvalidDateTime;
103 t.Add(wxTimeSpan(0, 0, wxLongLong(
options.longitude * 3600. / 15.)));
105 ret = t.Format(format, wxDateTime::UTC) +
" " + _(
"LMT");
108 ret = t.Format(format, wxDateTime::UTC) +
" " + _(
"UTC");