]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/timercmn.cpp
fixing RTTI
[wxWidgets.git] / src / common / timercmn.cpp
index b2ba8d05383b3c892e415c5593248e50c7684765..ee7a83f4b10a8a12320c05f6df9426ef956e4b35 100644 (file)
@@ -1,12 +1,13 @@
 /////////////////////////////////////////////////////////////////////////////
-// Name:        common/timercmn.cpp
-// Purpose:     Common timer implementation
-// Author:      Julian Smart
-// Modified by: Vadim Zeitlin on 12.11.99 to get rid of all ifdefs
+// Name:        src/common/timercmn.cpp
+// Purpose:     wxTimerBase implementation
+// Author:      Julian Smart, Guillermo Rodriguez, Vadim Zeitlin
+// Modified by: VZ: extracted all non-wxTimer stuff in stopwatch.cpp (20.06.03)
 // Created:     04/01/98
 // RCS-ID:      $Id$
-// Copyright:   (c) Julian Smart and Markus Holzem
-// Licence:    wxWindows license
+// Copyright:   (c) Julian Smart
+//              (c) 1999 Guillermo Rodriguez <guille@iies.es>
+// Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 // ============================================================================
 // ============================================================================
 
 // ----------------------------------------------------------------------------
-// headers
+// wxWin headers
 // ----------------------------------------------------------------------------
 
-#ifdef __GNUG__
-    #pragma implementation "timerbase.h"
-#endif
-
 // For compilers that support precompilation, includes "wx.h".
 #include "wx/wxprec.h"
 
     #pragma hdrstop
 #endif
 
+#if wxUSE_TIMER
+
 #ifndef WX_PRECOMP
-    #include "wx/intl.h"
-    #include "wx/log.h"
+    #include "wx/app.h"
 #endif
 
 #include "wx/timer.h"
-
-// I'm told VMS is POSIX, so should have localtime()
-#if defined(__WXMSW__) || defined(__VMS__) || defined(__WXPM__)
-    // configure might have found it already for us
-    #ifndef HAVE_LOCALTIME
-        #define HAVE_LOCALTIME
-    #endif
-#endif
-
-// TODO: #define WX_GMTOFF_IN_TM for Windows compilers which have it here
-
-#if defined(__WIN32__) && !defined(WX_GMTOFF_IN_TM)
-    #include <winbase.h>
-#endif
-
-#if defined(HAVE_GETTIMEOFDAY)
-    #include <sys/time.h>
-    #include <unistd.h>
-#elif defined(HAVE_LOCALTIME)
-    #include <time.h>
-    #ifndef __WXMAC__
-        #include <sys/types.h>      // for time_t
-    #endif
-#elif defined(HAVE_FTIME)
-    #include <sys/timeb.h>
-#else
-    #error "no function to find the current time on this system"
-#endif
+#include "wx/apptrait.h"
+#include "wx/private/timer.h"
 
 // ----------------------------------------------------------------------------
-// macros
+// wxWin macros
 // ----------------------------------------------------------------------------
 
-// on some really old systems gettimeofday() doesn't have the second argument,
-// define wxGetTimeOfDay() to hide this difference
-#ifdef HAVE_GETTIMEOFDAY
-    #ifdef WX_GETTIMEOFDAY_NO_TZ
-        struct timezone;
-        #define wxGetTimeOfDay(tv, tz)      gettimeofday(tv)
-    #else
-        #define wxGetTimeOfDay(tv, tz)      gettimeofday((tv), (tz))
-    #endif
-#endif // HAVE_GETTIMEOFDAY
+IMPLEMENT_DYNAMIC_CLASS(wxTimerEvent, wxEvent)
+
+wxDEFINE_EVENT(wxEVT_TIMER, wxTimerEvent);
 
 // ============================================================================
-// implementation
+// wxTimerBase implementation
 // ============================================================================
 
-// ----------------------------------------------------------------------------
-// wxStopWatch
-// ----------------------------------------------------------------------------
-
-void wxStopWatch::Start(long t)
+wxTimer::~wxTimer()
 {
-    m_t0 = wxGetCurrentMTime() - t;
+    Stop();
 
-    m_pause = 0;
+    delete m_impl;
 }
 
-long wxStopWatch::Time() const
+void wxTimer::Init()
 {
-    return m_pause ? m_pause : GetElapsedTime();
-}
+    wxAppTraits * const traits = wxTheApp ? wxTheApp->GetTraits() : NULL;
+    m_impl = traits ? traits->CreateTimerImpl(this) : NULL;
+    if ( !m_impl )
+    {
+        wxFAIL_MSG( wxT("No timer implementation for this platform") );
 
-// ----------------------------------------------------------------------------
-// old timer functions superceded by wxStopWatch
-// ----------------------------------------------------------------------------
+    }
+}
 
-static long wxStartTime = 0;
+// ============================================================================
+// rest of wxTimer implementation forwarded to wxTimerImpl
+// ============================================================================
 
-// starts the global timer
-void wxStartTimer()
+void wxTimer::SetOwner(wxEvtHandler *owner, int timerid)
 {
-    wxStartTime = wxGetCurrentMTime();
+    wxCHECK_RET( m_impl, wxT("uninitialized timer") );
+
+    m_impl->SetOwner(owner, timerid);
 }
 
-// Returns elapsed time in milliseconds
-long wxGetElapsedTime(bool resetTimer)
+wxEvtHandler *wxTimer::GetOwner() const
 {
-    long oldTime = wxStartTime;
-    long newTime = wxGetCurrentMTime();
+    wxCHECK_MSG( m_impl, NULL, wxT("uninitialized timer") );
 
-    if ( resetTimer )
-        wxStartTime = newTime;
-
-    return newTime - oldTime;
+    return m_impl->GetOwner();
 }
 
+bool wxTimer::Start(int milliseconds, bool oneShot)
+{
+    wxCHECK_MSG( m_impl, false, wxT("uninitialized timer") );
+
+    return m_impl->Start(milliseconds, oneShot);
+}
 
-// Get number of seconds since 00:00:00 GMT, Jan 1st 1970.
-long wxGetCurrentTime()
+void wxTimer::Stop()
 {
-    return wxGetCurrentMTime() / 1000;
+    wxCHECK_RET( m_impl, wxT("uninitialized timer") );
+
+    if ( m_impl->IsRunning() )
+        m_impl->Stop();
 }
 
-// ----------------------------------------------------------------------------
-// the functions to get the current time and timezone info
-// ----------------------------------------------------------------------------
+void wxTimer::Notify()
+{
+    // the base class version generates an event if it has owner - which it
+    // should because otherwise nobody can process timer events
+    wxCHECK_RET( GetOwner(), wxT("wxTimer::Notify() should be overridden.") );
+
+    m_impl->SendEvent();
+}
 
-// return GMT time in millisecond
-long wxGetCurrentMTime()
+bool wxTimer::IsRunning() const
 {
-#if defined(HAVE_LOCALTIME)
-    time_t t0 = time(&t0);
-    if ( t0 != (time_t)-1 )
-    {
-        struct tm *tp = localtime(&t0);
+    wxCHECK_MSG( m_impl, false, wxT("uninitialized timer") );
 
-        if ( tp )
-        {
-            return 1000*(60*(60*tp->tm_hour+tp->tm_min)+tp->tm_sec);
-        }
-    }
-#elif defined(HAVE_GETTIMEOFDAY)
-    struct timeval tp;
-    if ( wxGetTimeOfDay(&tp, (struct timezone *)NULL) != -1 )
-    {
-        return (1000*tp.tv_sec + tp.tv_usec / 1000);
-    }
-#elif defined(HAVE_FTIME)
-    struct timeb tp;
-    if ( ftime(&tp) == 0 )
-    {
-        return (1000*tp.time + tp.millitm);
-    }
-#else
-    #error "no function to find the current time on this system"
-#endif
+    return m_impl->IsRunning();
+}
 
-    wxLogSysError(_("Failed to get the system time"));
+int wxTimer::GetId() const
+{
+    wxCHECK_MSG( m_impl, wxID_ANY, wxT("uninitialized timer") );
 
-    return -1;
+    return m_impl->GetId();
 }
 
-bool wxGetLocalTime(long *timeZone, int *dstObserved)
+int wxTimer::GetInterval() const
 {
-#if defined(HAVE_LOCALTIME) && defined(WX_GMTOFF_IN_TM)
-    time_t t0 = time(&t0);
-    if ( t0 != (time_t)-1 )
-    {
-        struct tm *tm = localtime(&t0);
+    wxCHECK_MSG( m_impl, -1, wxT("uninitialized timer") );
 
-        if ( tm )
-        {
-            *timeZone = tm->tm_gmtoff;
-            *dstObserved = tm->tm_isdst;
+    return m_impl->GetInterval();
+}
 
-            return TRUE;
-        }
-    }
-#elif defined(HAVE_GETTIMEOFDAY) && !defined(WX_GETTIMEOFDAY_NO_TZ)
-    struct timeval tp;
-    struct timezone tz;
-    if ( gettimeofday(&tp, &tz) != -1 )
-    {
-        *timeZone = 60*tz.tz_minuteswest;
-        *dstObserved = tz.tz_dsttime;
+bool wxTimer::IsOneShot() const
+{
+    wxCHECK_MSG( m_impl, false, wxT("uninitialized timer") );
 
-        return TRUE;
-    }
-#elif defined(HAVE_FTIME)
-    struct timeb tb;
-    if ( ftime(&tb) == 0 )
-    {
-        *timeZone = 60*tb.timezone;
-        *dstObserved = tb.dstflag;
-    }
-#else // no standard function return tz info
-    // special hacks for known compilers
-    #if defined(__BORLANDC__) || defined(__VISUALC__)
-        *timeZone = _timezone;
-        *dstObserved = _daylight;
-    #elif defined(__SALFORDC__)
-        *timeZone = _timezone;
-        *dstObserved = daylight;
-    #elif defined(__VISAGECPP__)
-        *timeZone = _timezone;
-        *dstObserved = daylight;
-    #elif defined(__WIN32__)
-        TIME_ZONE_INFORMATION tzInfo;
-        switch ( GetTimeZoneInformation(&tzInfo) )
-        {
-            default:
-                wxFAIL_MSG(_T("unknown GetTimeZoneInformation return code"));
-                // fall through
-
-            case TIME_ZONE_ID_UNKNOWN:
-            case TIME_ZONE_ID_STANDARD:
-                *dstObserved = FALSE;
-                break;
-
-            case TIME_ZONE_ID_DAYLIGHT:
-                *dstObserved = TRUE;
-                break;
-        }
-
-        *timeZone = 60*tzInfo.Bias;
-    #else
-        wxFAIL_MSG(_T("wxGetLocalTime() not implemented"));
-    #endif // compiler
-#endif // all ways in the known Universe to get tz info
-
-    return FALSE;
+    return m_impl->IsOneShot();
 }
+
+#endif // wxUSE_TIMER
+