]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/datetime.inl
added wxBookCtrlSizer; derive wxNotebookSizer from it
[wxWidgets.git] / include / wx / datetime.inl
index e051b295031a29790ae9eda0b64ad24f629cd205..20bcf4c58ae25bc02c57ff0047f45ecb15c165e0 100644 (file)
 // wxDateTime construction
 // ----------------------------------------------------------------------------
 
 // wxDateTime construction
 // ----------------------------------------------------------------------------
 
-// only define this once, when included from datetime.cpp
-#ifdef wxDEFINE_TIME_CONSTANTS
-    const long wxDateTime::TIME_T_FACTOR = 1000l;
-#endif // wxDEFINE_TIME_CONSTANTS
-
-WXDLLEXPORT bool wxDateTime::IsInStdRange() const
+inline bool wxDateTime::IsInStdRange() const
 {
     return m_time >= 0l && (m_time / TIME_T_FACTOR) < LONG_MAX;
 }
 
 /* static */
 {
     return m_time >= 0l && (m_time / TIME_T_FACTOR) < LONG_MAX;
 }
 
 /* static */
-WXDLLEXPORT wxDateTime wxDateTime::Now()
+inline wxDateTime wxDateTime::Now()
 {
     return wxDateTime(*GetTmNow());
 }
 
 /* static */
 {
     return wxDateTime(*GetTmNow());
 }
 
 /* static */
-WXDLLEXPORT wxDateTime wxDateTime::Today()
+inline wxDateTime wxDateTime::Today()
 {
 {
-    struct tm *tm = GetTmNow();
-    tm->tm_hour =
-    tm->tm_min =
-    tm->tm_sec = 0;
+    struct tm *time = GetTmNow();
+    time->tm_hour = 0;
+    time->tm_min = 0;
+    time->tm_sec = 0;
 
 
-    return wxDateTime(*tm);
+    return wxDateTime(*time);
 }
 
 #if (!(defined(__VISAGECPP__) && __IBMCPP__ >= 400))
 }
 
 #if (!(defined(__VISAGECPP__) && __IBMCPP__ >= 400))
-WXDLLEXPORT wxDateTime& wxDateTime::Set(time_t timet)
+inline wxDateTime& wxDateTime::Set(time_t timet)
 {
     // assign first to avoid long multiplication overflow!
 {
     // assign first to avoid long multiplication overflow!
-    m_time = timet;
+    m_time = timet - WX_TIME_BASE_OFFSET ;
     m_time *= TIME_T_FACTOR;
 
     return *this;
 }
 #endif
 
     m_time *= TIME_T_FACTOR;
 
     return *this;
 }
 #endif
 
-WXDLLEXPORT wxDateTime& wxDateTime::SetToCurrent()
+inline wxDateTime& wxDateTime::SetToCurrent()
 {
     *this = Now();
     return *this;
 }
 
 #if (!(defined(__VISAGECPP__) && __IBMCPP__ >= 400))
 {
     *this = Now();
     return *this;
 }
 
 #if (!(defined(__VISAGECPP__) && __IBMCPP__ >= 400))
-WXDLLEXPORT wxDateTime::wxDateTime(time_t timet)
+inline wxDateTime::wxDateTime(time_t timet)
 {
     Set(timet);
 }
 #endif
 
 {
     Set(timet);
 }
 #endif
 
-WXDLLEXPORT wxDateTime::wxDateTime(const struct tm& tm)
+inline wxDateTime::wxDateTime(const struct tm& tm)
 {
     Set(tm);
 }
 
 {
     Set(tm);
 }
 
-WXDLLEXPORT wxDateTime::wxDateTime(const Tm& tm)
+inline wxDateTime::wxDateTime(const Tm& tm)
 {
     Set(tm);
 }
 
 {
     Set(tm);
 }
 
-WXDLLEXPORT wxDateTime::wxDateTime(double jdn)
+inline wxDateTime::wxDateTime(double jdn)
 {
     Set(jdn);
 }
 
 {
     Set(jdn);
 }
 
-WXDLLEXPORT wxDateTime& wxDateTime::Set(const Tm& tm)
+inline wxDateTime& wxDateTime::Set(const Tm& tm)
 {
     wxASSERT_MSG( tm.IsValid(), _T("invalid broken down date/time") );
 
     return Set(tm.mday, (Month)tm.mon, tm.year, tm.hour, tm.min, tm.sec);
 }
 
 {
     wxASSERT_MSG( tm.IsValid(), _T("invalid broken down date/time") );
 
     return Set(tm.mday, (Month)tm.mon, tm.year, tm.hour, tm.min, tm.sec);
 }
 
-WXDLLEXPORT wxDateTime::wxDateTime(wxDateTime_t hour,
-                       wxDateTime_t minute,
-                       wxDateTime_t second,
-                       wxDateTime_t millisec)
+inline wxDateTime::wxDateTime(wxDateTime_t hour,
+                              wxDateTime_t minute,
+                              wxDateTime_t second,
+                              wxDateTime_t millisec)
 {
     Set(hour, minute, second, millisec);
 }
 
 {
     Set(hour, minute, second, millisec);
 }
 
-WXDLLEXPORT wxDateTime::wxDateTime(wxDateTime_t day,
-                       Month        month,
-                       int          year,
-                       wxDateTime_t hour,
-                       wxDateTime_t minute,
-                       wxDateTime_t second,
-                       wxDateTime_t millisec)
+inline wxDateTime::wxDateTime(wxDateTime_t day,
+                              Month        month,
+                              int          year,
+                              wxDateTime_t hour,
+                              wxDateTime_t minute,
+                              wxDateTime_t second,
+                              wxDateTime_t millisec)
 {
     Set(day, month, year, hour, minute, second, millisec);
 }
 {
     Set(day, month, year, hour, minute, second, millisec);
 }
@@ -131,14 +126,14 @@ WXDLLEXPORT wxDateTime::wxDateTime(wxDateTime_t day,
 // wxDateTime accessors
 // ----------------------------------------------------------------------------
 
 // wxDateTime accessors
 // ----------------------------------------------------------------------------
 
-WXDLLEXPORT wxLongLong wxDateTime::GetValue() const
+inline wxLongLong wxDateTime::GetValue() const
 {
     wxASSERT_MSG( IsValid(), _T("invalid wxDateTime"));
 
     return m_time;
 }
 
 {
     wxASSERT_MSG( IsValid(), _T("invalid wxDateTime"));
 
     return m_time;
 }
 
-WXDLLEXPORT time_t wxDateTime::GetTicks() const
+inline time_t wxDateTime::GetTicks() const
 {
     wxASSERT_MSG( IsValid(), _T("invalid wxDateTime"));
     if ( !IsInStdRange() )
 {
     wxASSERT_MSG( IsValid(), _T("invalid wxDateTime"));
     if ( !IsInStdRange() )
@@ -146,63 +141,66 @@ WXDLLEXPORT time_t wxDateTime::GetTicks() const
         return (time_t)-1;
     }
 
         return (time_t)-1;
     }
 
-    return (time_t)((m_time / (long)TIME_T_FACTOR).GetLo());
+    return (time_t)((m_time / (long)TIME_T_FACTOR).GetLo())+WX_TIME_BASE_OFFSET ;
 }
 
 }
 
-WXDLLEXPORT bool wxDateTime::SetToLastWeekDay(WeekDay weekday,
-                                  Month month,
-                                  int year)
+inline bool wxDateTime::SetToLastWeekDay(WeekDay weekday,
+                                         Month month,
+                                         int year)
 {
     return SetToWeekDay(weekday, -1, month, year);
 }
 
 {
     return SetToWeekDay(weekday, -1, month, year);
 }
 
-WXDLLEXPORT wxDateTime wxDateTime::GetWeekDayInSameWeek(WeekDay weekday) const
+inline wxDateTime wxDateTime::GetWeekDayInSameWeek(WeekDay weekday,
+                                                   WeekFlags flags) const
 {
     MODIFY_AND_RETURN( SetToWeekDayInSameWeek(weekday) );
 }
 
 {
     MODIFY_AND_RETURN( SetToWeekDayInSameWeek(weekday) );
 }
 
-WXDLLEXPORT wxDateTime wxDateTime::GetNextWeekDay(WeekDay weekday) const
+inline wxDateTime wxDateTime::GetNextWeekDay(WeekDay weekday) const
 {
     MODIFY_AND_RETURN( SetToNextWeekDay(weekday) );
 }
 
 {
     MODIFY_AND_RETURN( SetToNextWeekDay(weekday) );
 }
 
-WXDLLEXPORT wxDateTime wxDateTime::GetPrevWeekDay(WeekDay weekday) const
+inline wxDateTime wxDateTime::GetPrevWeekDay(WeekDay weekday) const
 {
     MODIFY_AND_RETURN( SetToPrevWeekDay(weekday) );
 }
 
 {
     MODIFY_AND_RETURN( SetToPrevWeekDay(weekday) );
 }
 
-WXDLLEXPORT wxDateTime wxDateTime::GetWeekDay(WeekDay weekday,
-                                  int n,
-                                  Month month,
-                                  int year) const
+inline wxDateTime wxDateTime::GetWeekDay(WeekDay weekday,
+                                         int n,
+                                         Month month,
+                                         int year) const
 {
     wxDateTime dt(*this);
 
     return dt.SetToWeekDay(weekday, n, month, year) ? dt : wxInvalidDateTime;
 }
 
 {
     wxDateTime dt(*this);
 
     return dt.SetToWeekDay(weekday, n, month, year) ? dt : wxInvalidDateTime;
 }
 
-WXDLLEXPORT wxDateTime wxDateTime::GetLastWeekDay(WeekDay weekday,
-                                      Month month,
-                                      int year)
+inline wxDateTime wxDateTime::GetLastWeekDay(WeekDay weekday,
+                                             Month month,
+                                             int year)
 {
     wxDateTime dt(*this);
 
     return dt.SetToLastWeekDay(weekday, month, year) ? dt : wxInvalidDateTime;
 }
 
 {
     wxDateTime dt(*this);
 
     return dt.SetToLastWeekDay(weekday, month, year) ? dt : wxInvalidDateTime;
 }
 
-WXDLLEXPORT wxDateTime wxDateTime::GetWeek(wxDateTime_t numWeek, WeekDay weekday) const
+inline wxDateTime wxDateTime::GetWeek(wxDateTime_t numWeek,
+                                      WeekDay weekday,
+                                      WeekFlags flags) const
 {
     wxDateTime dt(*this);
 
 {
     wxDateTime dt(*this);
 
-    return dt.SetToTheWeek(numWeek, weekday) ? dt : wxInvalidDateTime;
+    return dt.SetToTheWeek(numWeek, weekday, flags) ? dt : wxInvalidDateTime;
 }
 
 }
 
-WXDLLEXPORT wxDateTime wxDateTime::GetLastMonthDay(Month month, int year) const
+inline wxDateTime wxDateTime::GetLastMonthDay(Month month, int year) const
 {
     MODIFY_AND_RETURN( SetToLastMonthDay(month, year) );
 }
 
 {
     MODIFY_AND_RETURN( SetToLastMonthDay(month, year) );
 }
 
-WXDLLEXPORT wxDateTime wxDateTime::GetYearDay(wxDateTime_t yday) const
+inline wxDateTime wxDateTime::GetYearDay(wxDateTime_t yday) const
 {
     MODIFY_AND_RETURN( SetToYearDay(yday) );
 }
 {
     MODIFY_AND_RETURN( SetToYearDay(yday) );
 }
@@ -211,46 +209,52 @@ WXDLLEXPORT wxDateTime wxDateTime::GetYearDay(wxDateTime_t yday) const
 // wxDateTime comparison
 // ----------------------------------------------------------------------------
 
 // wxDateTime comparison
 // ----------------------------------------------------------------------------
 
-WXDLLEXPORT bool wxDateTime::IsEqualTo(const wxDateTime& datetime) const
+inline bool wxDateTime::IsEqualTo(const wxDateTime& datetime) const
 {
     wxASSERT_MSG( IsValid() && datetime.IsValid(), _T("invalid wxDateTime"));
 
     return m_time == datetime.m_time;
 }
 
 {
     wxASSERT_MSG( IsValid() && datetime.IsValid(), _T("invalid wxDateTime"));
 
     return m_time == datetime.m_time;
 }
 
-WXDLLEXPORT bool wxDateTime::IsEarlierThan(const wxDateTime& datetime) const
+inline bool wxDateTime::IsEarlierThan(const wxDateTime& datetime) const
 {
     wxASSERT_MSG( IsValid() && datetime.IsValid(), _T("invalid wxDateTime"));
 
     return m_time < datetime.m_time;
 }
 
 {
     wxASSERT_MSG( IsValid() && datetime.IsValid(), _T("invalid wxDateTime"));
 
     return m_time < datetime.m_time;
 }
 
-WXDLLEXPORT bool wxDateTime::IsLaterThan(const wxDateTime& datetime) const
+inline bool wxDateTime::IsLaterThan(const wxDateTime& datetime) const
 {
     wxASSERT_MSG( IsValid() && datetime.IsValid(), _T("invalid wxDateTime"));
 
     return m_time > datetime.m_time;
 }
 
 {
     wxASSERT_MSG( IsValid() && datetime.IsValid(), _T("invalid wxDateTime"));
 
     return m_time > datetime.m_time;
 }
 
-WXDLLEXPORT bool wxDateTime::IsStrictlyBetween(const wxDateTime& t1,
-                                   const wxDateTime& t2) const
+inline bool wxDateTime::IsStrictlyBetween(const wxDateTime& t1,
+                                          const wxDateTime& t2) const
 {
     // no need for assert, will be checked by the functions we call
     return IsLaterThan(t1) && IsEarlierThan(t2);
 }
 
 {
     // no need for assert, will be checked by the functions we call
     return IsLaterThan(t1) && IsEarlierThan(t2);
 }
 
-WXDLLEXPORT bool wxDateTime::IsBetween(const wxDateTime& t1, const wxDateTime& t2) const
+inline bool wxDateTime::IsBetween(const wxDateTime& t1,
+                                  const wxDateTime& t2) const
 {
     // no need for assert, will be checked by the functions we call
     return IsEqualTo(t1) || IsEqualTo(t2) || IsStrictlyBetween(t1, t2);
 }
 
 {
     // no need for assert, will be checked by the functions we call
     return IsEqualTo(t1) || IsEqualTo(t2) || IsStrictlyBetween(t1, t2);
 }
 
-WXDLLEXPORT bool wxDateTime::IsSameDate(const wxDateTime& dt) const
+inline bool wxDateTime::IsSameDate(const wxDateTime& dt) const
 {
 {
-    return (m_time - dt.m_time).Abs() < MILLISECONDS_PER_DAY;
+    Tm tm1 = GetTm(),
+       tm2 = dt.GetTm();
+
+    return tm1.year == tm2.year &&
+           tm1.mon == tm2.mon &&
+           tm1.mday == tm2.mday;
 }
 
 }
 
-WXDLLEXPORT bool wxDateTime::IsSameTime(const wxDateTime& dt) const
+inline bool wxDateTime::IsSameTime(const wxDateTime& dt) const
 {
     // notice that we can't do something like this:
     //
 {
     // notice that we can't do something like this:
     //
@@ -266,23 +270,24 @@ WXDLLEXPORT bool wxDateTime::IsSameTime(const wxDateTime& dt) const
            tm1.msec == tm2.msec;
 }
 
            tm1.msec == tm2.msec;
 }
 
-WXDLLEXPORT bool wxDateTime::IsEqualUpTo(const wxDateTime& dt, const wxTimeSpan& ts) const
+inline bool wxDateTime::IsEqualUpTo(const wxDateTime& dt,
+                                    const wxTimeSpan& ts) const
 {
 {
-    return IsBetween(dt.Substract(ts), dt.Add(ts));
+    return IsBetween(dt.Subtract(ts), dt.Add(ts));
 }
 
 // ----------------------------------------------------------------------------
 // wxDateTime arithmetics
 // ----------------------------------------------------------------------------
 
 }
 
 // ----------------------------------------------------------------------------
 // wxDateTime arithmetics
 // ----------------------------------------------------------------------------
 
-WXDLLEXPORT wxDateTime wxDateTime::Add(const wxTimeSpan& diff) const
+inline wxDateTime wxDateTime::Add(const wxTimeSpan& diff) const
 {
     wxASSERT_MSG( IsValid(), _T("invalid wxDateTime"));
 
     return wxDateTime(m_time + diff.GetValue());
 }
 
 {
     wxASSERT_MSG( IsValid(), _T("invalid wxDateTime"));
 
     return wxDateTime(m_time + diff.GetValue());
 }
 
-WXDLLEXPORT wxDateTime& wxDateTime::Add(const wxTimeSpan& diff)
+inline wxDateTime& wxDateTime::Add(const wxTimeSpan& diff)
 {
     wxASSERT_MSG( IsValid(), _T("invalid wxDateTime"));
 
 {
     wxASSERT_MSG( IsValid(), _T("invalid wxDateTime"));
 
@@ -291,19 +296,19 @@ WXDLLEXPORT wxDateTime& wxDateTime::Add(const wxTimeSpan& diff)
     return *this;
 }
 
     return *this;
 }
 
-WXDLLEXPORT wxDateTime& wxDateTime::operator+=(const wxTimeSpan& diff)
+inline wxDateTime& wxDateTime::operator+=(const wxTimeSpan& diff)
 {
     return Add(diff);
 }
 
 {
     return Add(diff);
 }
 
-WXDLLEXPORT wxDateTime wxDateTime::Substract(const wxTimeSpan& diff) const
+inline wxDateTime wxDateTime::Subtract(const wxTimeSpan& diff) const
 {
     wxASSERT_MSG( IsValid(), _T("invalid wxDateTime"));
 
     return wxDateTime(m_time - diff.GetValue());
 }
 
 {
     wxASSERT_MSG( IsValid(), _T("invalid wxDateTime"));
 
     return wxDateTime(m_time - diff.GetValue());
 }
 
-WXDLLEXPORT wxDateTime& wxDateTime::Substract(const wxTimeSpan& diff)
+inline wxDateTime& wxDateTime::Subtract(const wxTimeSpan& diff)
 {
     wxASSERT_MSG( IsValid(), _T("invalid wxDateTime"));
 
 {
     wxASSERT_MSG( IsValid(), _T("invalid wxDateTime"));
 
@@ -312,39 +317,39 @@ WXDLLEXPORT wxDateTime& wxDateTime::Substract(const wxTimeSpan& diff)
     return *this;
 }
 
     return *this;
 }
 
-WXDLLEXPORT wxDateTime& wxDateTime::operator-=(const wxTimeSpan& diff)
+inline wxDateTime& wxDateTime::operator-=(const wxTimeSpan& diff)
 {
 {
-    return Substract(diff);
+    return Subtract(diff);
 }
 
 }
 
-WXDLLEXPORT wxTimeSpan wxDateTime::Substract(const wxDateTime& datetime) const
+inline wxTimeSpan wxDateTime::Subtract(const wxDateTime& datetime) const
 {
     wxASSERT_MSG( IsValid() && datetime.IsValid(), _T("invalid wxDateTime"));
 
 {
     wxASSERT_MSG( IsValid() && datetime.IsValid(), _T("invalid wxDateTime"));
 
-    return wxTimeSpan(datetime.GetValue() - GetValue());
+    return wxTimeSpan(GetValue() - datetime.GetValue());
 }
 
 }
 
-WXDLLEXPORT wxDateTime wxDateTime::Add(const wxDateSpan& diff) const
+inline wxDateTime wxDateTime::Add(const wxDateSpan& diff) const
 {
     return wxDateTime(*this).Add(diff);
 }
 
 {
     return wxDateTime(*this).Add(diff);
 }
 
-WXDLLEXPORT wxDateTime& wxDateTime::Substract(const wxDateSpan& diff)
+inline wxDateTime& wxDateTime::Subtract(const wxDateSpan& diff)
 {
     return Add(diff.Negate());
 }
 
 {
     return Add(diff.Negate());
 }
 
-WXDLLEXPORT wxDateTime wxDateTime::Substract(const wxDateSpan& diff) const
+inline wxDateTime wxDateTime::Subtract(const wxDateSpan& diff) const
 {
 {
-    return wxDateTime(*this).Substract(diff);
+    return wxDateTime(*this).Subtract(diff);
 }
 
 }
 
-WXDLLEXPORT wxDateTime& wxDateTime::operator-=(const wxDateSpan& diff)
+inline wxDateTime& wxDateTime::operator-=(const wxDateSpan& diff)
 {
 {
-    return Substract(diff);
+    return Subtract(diff);
 }
 
 }
 
-WXDLLEXPORT wxDateTime& wxDateTime::operator+=(const wxDateSpan& diff)
+inline wxDateTime& wxDateTime::operator+=(const wxDateSpan& diff)
 {
     return Add(diff);
 }
 {
     return Add(diff);
 }
@@ -353,8 +358,8 @@ WXDLLEXPORT wxDateTime& wxDateTime::operator+=(const wxDateSpan& diff)
 // wxDateTime and timezones
 // ----------------------------------------------------------------------------
 
 // wxDateTime and timezones
 // ----------------------------------------------------------------------------
 
-WXDLLEXPORT wxDateTime wxDateTime::ToTimezone(const wxDateTime::TimeZone& tz,
-                                  bool noDST) const
+inline wxDateTime wxDateTime::ToTimezone(const wxDateTime::TimeZone& tz,
+                                         bool noDST) const
 {
     MODIFY_AND_RETURN( MakeTimezone(tz, noDST) );
 }
 {
     MODIFY_AND_RETURN( MakeTimezone(tz, noDST) );
 }
@@ -363,7 +368,10 @@ WXDLLEXPORT wxDateTime wxDateTime::ToTimezone(const wxDateTime::TimeZone& tz,
 // wxTimeSpan construction
 // ----------------------------------------------------------------------------
 
 // wxTimeSpan construction
 // ----------------------------------------------------------------------------
 
-WXDLLEXPORT wxTimeSpan::wxTimeSpan(long hours, long minutes, long seconds, long milliseconds)
+inline wxTimeSpan::wxTimeSpan(long hours,
+                              long minutes,
+                              long seconds,
+                              long milliseconds)
 {
     // assign first to avoid precision loss
     m_diff = hours;
 {
     // assign first to avoid precision loss
     m_diff = hours;
@@ -379,27 +387,27 @@ WXDLLEXPORT wxTimeSpan::wxTimeSpan(long hours, long minutes, long seconds, long
 // wxTimeSpan accessors
 // ----------------------------------------------------------------------------
 
 // wxTimeSpan accessors
 // ----------------------------------------------------------------------------
 
-WXDLLEXPORT wxLongLong wxTimeSpan::GetSeconds() const
+inline wxLongLong wxTimeSpan::GetSeconds() const
 {
     return m_diff / 1000l;
 }
 
 {
     return m_diff / 1000l;
 }
 
-WXDLLEXPORT int wxTimeSpan::GetMinutes() const
+inline int wxTimeSpan::GetMinutes() const
 {
     return (GetSeconds() / 60l).GetLo();
 }
 
 {
     return (GetSeconds() / 60l).GetLo();
 }
 
-WXDLLEXPORT int wxTimeSpan::GetHours() const
+inline int wxTimeSpan::GetHours() const
 {
     return GetMinutes() / 60;
 }
 
 {
     return GetMinutes() / 60;
 }
 
-WXDLLEXPORT int wxTimeSpan::GetDays() const
+inline int wxTimeSpan::GetDays() const
 {
     return GetHours() / 24;
 }
 
 {
     return GetHours() / 24;
 }
 
-WXDLLEXPORT int wxTimeSpan::GetWeeks() const
+inline int wxTimeSpan::GetWeeks() const
 {
     return GetDays() / 7;
 }
 {
     return GetDays() / 7;
 }
@@ -408,53 +416,53 @@ WXDLLEXPORT int wxTimeSpan::GetWeeks() const
 // wxTimeSpan arithmetics
 // ----------------------------------------------------------------------------
 
 // wxTimeSpan arithmetics
 // ----------------------------------------------------------------------------
 
-WXDLLEXPORT wxTimeSpan wxTimeSpan::Add(const wxTimeSpan& diff) const
+inline wxTimeSpan wxTimeSpan::Add(const wxTimeSpan& diff) const
 {
     return wxTimeSpan(m_diff + diff.GetValue());
 }
 
 {
     return wxTimeSpan(m_diff + diff.GetValue());
 }
 
-WXDLLEXPORT wxTimeSpan& wxTimeSpan::Add(const wxTimeSpan& diff)
+inline wxTimeSpan& wxTimeSpan::Add(const wxTimeSpan& diff)
 {
     m_diff += diff.GetValue();
 
     return *this;
 }
 
 {
     m_diff += diff.GetValue();
 
     return *this;
 }
 
-WXDLLEXPORT wxTimeSpan wxTimeSpan::Substract(const wxTimeSpan& diff) const
+inline wxTimeSpan wxTimeSpan::Subtract(const wxTimeSpan& diff) const
 {
     return wxTimeSpan(m_diff - diff.GetValue());
 }
 
 {
     return wxTimeSpan(m_diff - diff.GetValue());
 }
 
-WXDLLEXPORT wxTimeSpan& wxTimeSpan::Substract(const wxTimeSpan& diff)
+inline wxTimeSpan& wxTimeSpan::Subtract(const wxTimeSpan& diff)
 {
     m_diff -= diff.GetValue();
 
     return *this;
 }
 
 {
     m_diff -= diff.GetValue();
 
     return *this;
 }
 
-WXDLLEXPORT wxTimeSpan& wxTimeSpan::Multiply(int n)
+inline wxTimeSpan& wxTimeSpan::Multiply(int n)
 {
     m_diff *= (long)n;
 
     return *this;
 }
 
 {
     m_diff *= (long)n;
 
     return *this;
 }
 
-WXDLLEXPORT wxTimeSpan wxTimeSpan::Multiply(int n) const
+inline wxTimeSpan wxTimeSpan::Multiply(int n) const
 {
     return wxTimeSpan(m_diff * (long)n);
 }
 
 {
     return wxTimeSpan(m_diff * (long)n);
 }
 
-WXDLLEXPORT wxTimeSpan wxTimeSpan::Abs() const
+inline wxTimeSpan wxTimeSpan::Abs() const
 {
     return wxTimeSpan(GetValue().Abs());
 }
 
 {
     return wxTimeSpan(GetValue().Abs());
 }
 
-WXDLLEXPORT bool wxTimeSpan::IsEqualTo(const wxTimeSpan& ts) const
+inline bool wxTimeSpan::IsEqualTo(const wxTimeSpan& ts) const
 {
     return GetValue() == ts.GetValue();
 }
 
 {
     return GetValue() == ts.GetValue();
 }
 
-WXDLLEXPORT bool wxTimeSpan::IsLongerThan(const wxTimeSpan& ts) const
+inline bool wxTimeSpan::IsLongerThan(const wxTimeSpan& ts) const
 {
     return GetValue().Abs() > ts.GetValue().Abs();
 }
 {
     return GetValue().Abs() > ts.GetValue().Abs();
 }
@@ -463,8 +471,7 @@ WXDLLEXPORT bool wxTimeSpan::IsLongerThan(const wxTimeSpan& ts) const
 // wxDateSpan
 // ----------------------------------------------------------------------------
 
 // wxDateSpan
 // ----------------------------------------------------------------------------
 
-WXDLLEXPORT wxDateSpan& 
-wxDateSpan::operator+=(const wxDateSpan& other)
+inline wxDateSpan& wxDateSpan::operator+=(const wxDateSpan& other)
 {
     m_years += other.m_years;
     m_months += other.m_months;
 {
     m_years += other.m_years;
     m_months += other.m_months;
@@ -474,7 +481,19 @@ wxDateSpan::operator+=(const wxDateSpan& other)
     return *this;
 }
 
     return *this;
 }
 
-WXDLLEXPORT wxDateSpan& wxDateSpan::Multiply(int factor)
+inline wxDateSpan& wxDateSpan::Add(const wxDateSpan& other)
+{
+    return *this += other;
+}
+
+inline wxDateSpan wxDateSpan::Add(const wxDateSpan& other) const
+{
+    wxDateSpan ds(*this);
+    ds.Add(other);
+    return ds;
+}
+
+inline wxDateSpan& wxDateSpan::Multiply(int factor)
 {
     m_years *= factor;
     m_months *= factor;
 {
     m_years *= factor;
     m_months *= factor;
@@ -484,17 +503,19 @@ WXDLLEXPORT wxDateSpan& wxDateSpan::Multiply(int factor)
     return *this;
 }
 
     return *this;
 }
 
-WXDLLEXPORT wxDateSpan wxDateSpan::Multiply(int factor) const
+inline wxDateSpan wxDateSpan::Multiply(int factor) const
 {
 {
-    return wxDateSpan(*this).Multiply(factor);
+    wxDateSpan ds(*this);
+    ds.Multiply(factor);
+    return ds;
 }
 
 }
 
-WXDLLEXPORT wxDateSpan wxDateSpan::Negate() const
+inline wxDateSpan wxDateSpan::Negate() const
 {
     return wxDateSpan(-m_years, -m_months, -m_weeks, -m_days);
 }
 
 {
     return wxDateSpan(-m_years, -m_months, -m_weeks, -m_days);
 }
 
-WXDLLEXPORT wxDateSpan& wxDateSpan::Neg()
+inline wxDateSpan& wxDateSpan::Neg()
 {
     m_years = -m_years;
     m_months = -m_months;
 {
     m_years = -m_years;
     m_months = -m_months;
@@ -504,6 +525,23 @@ WXDLLEXPORT wxDateSpan& wxDateSpan::Neg()
     return *this;
 }
 
     return *this;
 }
 
+inline wxDateSpan& wxDateSpan::operator-=(const wxDateSpan& other)
+{
+    return *this += other.Negate();
+}
+
+inline wxDateSpan& wxDateSpan::Subtract(const wxDateSpan& other)
+{
+    return *this -= other;
+}
+
+inline wxDateSpan wxDateSpan::Subtract(const wxDateSpan& other) const
+{
+    wxDateSpan ds(*this);
+    ds.Subtract(other);
+    return ds;
+}
+
 #undef MILLISECONDS_PER_DAY
 
 #undef MODIFY_AND_RETURN
 #undef MILLISECONDS_PER_DAY
 
 #undef MODIFY_AND_RETURN