]> git.sesse.net Git - vlc/blobdiff - modules/gui/skins2/win32/win32_timer.cpp
Merge branch 'master' into lpcm_encoder
[vlc] / modules / gui / skins2 / win32 / win32_timer.cpp
index f3e97a0d5119684814d45925a4799a781a59084a..93411da17b171886b9ffc11f9612a45236ed3678 100644 (file)
@@ -1,11 +1,11 @@
 /*****************************************************************************
  * win32_timer.cpp
  *****************************************************************************
- * Copyright (C) 2003 VideoLAN
- * $Id: win32_timer.cpp,v 1.1 2004/01/03 23:31:34 asmax Exp $
+ * Copyright (C) 2003 the VideoLAN team
+ * $Id$
  *
  * Authors: Cyril Deguet     <asmax@via.ecp.fr>
- *          Olivier Teulière <ipkiss@via.ecp.fr>
+ *          Olivier Teulière <ipkiss@via.ecp.fr>
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  *****************************************************************************/
 
 #ifdef WIN32_SKINS
 
 #include "win32_timer.hpp"
+#include "../commands/cmd_generic.hpp"
 
 
 void CALLBACK CallbackTimer( HWND hwnd, UINT uMsg,
@@ -38,9 +39,8 @@ void CALLBACK CallbackTimer( HWND hwnd, UINT uMsg,
 }
 
 
-Win32Timer::Win32Timer( intf_thread_t *pIntf, const Callback &rCallback,
-                        HWND hWnd ):
-    OSTimer( pIntf ), m_callback( rCallback ), m_hWnd( hWnd )
+Win32Timer::Win32Timer( intf_thread_t *pIntf, CmdGeneric &rCmd, HWND hWnd ):
+    OSTimer( pIntf ), m_rCommand( rCmd ), m_hWnd( hWnd )
 {
 }
 
@@ -68,13 +68,11 @@ void Win32Timer::stop()
 void Win32Timer::execute()
 {
     // Execute the callback
-    (*(m_callback.getFunc()))( m_callback.getObj() );
+    m_rCommand.execute();
 
-    // Restart the timer if needed
-    if( ! m_oneShot )
-    {
-        start( m_interval, m_oneShot );
-    }
+    // Stop the timer if requested
+    if( m_oneShot )
+        stop();
 }
 
 #endif