X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/c801d85f158c4cba50b588807daabdcbd0ed3853..da07e0335e1a75d785a1b0f61b26aab7e48aa51e:/src/gtk1/timer.cpp diff --git a/src/gtk1/timer.cpp b/src/gtk1/timer.cpp index f87bffa62b..fb74fc13dc 100644 --- a/src/gtk1/timer.cpp +++ b/src/gtk1/timer.cpp @@ -2,9 +2,8 @@ // Name: timer.cpp // Purpose: // Author: Robert Roebling -// Created: 01/02/97 -// Id: -// Copyright: (c) 1998 Robert Roebling, Julian Smart and Markus Holzem +// Id: $Id$ +// Copyright: (c) 1998 Robert Roebling // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// @@ -15,57 +14,104 @@ #include "wx/timer.h" +#include "gtk/gtk.h" +/* +#include "glib.h" +*/ + //----------------------------------------------------------------------------- -// wxTimer +// global functions //----------------------------------------------------------------------------- -IMPLEMENT_DYNAMIC_CLASS(wxTimer,wxObject) +/* +static GTimer *g_timer = (GTimer*) NULL; -gint timeout_callback( gpointer data ) +void wxStartTimer() { - wxTimer *timer = (wxTimer*)data; - timer->Notify(); - if (timer->OneShot()) timer->Stop(); - return TRUE; -}; + if (g_timer) + { + g_timer_rest( g_timer ); + } + else + { + g_timer = g_timer_new(); + g_timer_start( g_timer ); + } +} -wxTimer::wxTimer(void) +long wxGetElapsedTime( bool resetTimer ) { - m_tag = -1; - m_time = 1000; - m_oneShot = FALSE; -}; + gulong res = 0; + if (g_timer) + { + g_timer_elapsed( g_timer, &res ); + if (resetTimer) g_timer_reset( g_timer ); + } + + return res; +} -wxTimer::~wxTimer(void) +bool wxGetLocalTime( long *timeZone, int *dstObserved ) { - Stop(); -}; +} -int wxTimer::Interval(void) +long wxGetCurrentTime() { - return m_time; -}; +} +*/ + + +//----------------------------------------------------------------------------- +// wxTimer +//----------------------------------------------------------------------------- + +IMPLEMENT_ABSTRACT_CLASS(wxTimer,wxObject) -bool wxTimer::OneShot(void) +gint timeout_callback( gpointer data ) +{ + wxTimer *timer = (wxTimer*)data; + timer->Notify(); + + if (timer->OneShot()) + { + timer->Stop(); + } + + return TRUE; +} + +wxTimer::wxTimer() { - return m_oneShot; -}; + m_tag = -1; + m_time = 1000; + m_oneShot = FALSE; +} -void wxTimer::Notify(void) +wxTimer::~wxTimer() { -}; + Stop(); +} -void wxTimer::Start( int millisecs, bool oneShot ) +bool wxTimer::Start( int millisecs, bool oneShot ) { - if (millisecs != -1) m_time = millisecs; - m_oneShot = oneShot; - m_tag = gtk_timeout_add( millisecs, timeout_callback, this ); -}; + if (millisecs != -1) + { + m_time = millisecs; + } + + m_oneShot = oneShot; + + m_tag = gtk_timeout_add( millisecs, timeout_callback, this ); + + return TRUE; +} -void wxTimer::Stop(void) +void wxTimer::Stop() { - if (m_tag != -1) - gtk_timeout_remove( m_tag ); - m_tag = -1; -}; + if (m_tag != -1) + { + gtk_timeout_remove( m_tag ); + m_tag = -1; + } +}