x11_timer.hpp
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:3k
源码类别:

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * x11_timer.hpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 VideoLAN
  5.  * $Id: x11_timer.hpp 6961 2004-03-05 17:34:23Z sam $
  6.  *
  7.  * Authors: Cyril Deguet     <asmax@via.ecp.fr>
  8.  *          Olivier Teuli鑢e <ipkiss@via.ecp.fr>
  9.  *
  10.  * This program is free software; you can redistribute it and/or modify
  11.  * it under the terms of the GNU General Public License as published by
  12.  * the Free Software Foundation; either version 2 of the License, or
  13.  * (at your option) any later version.
  14.  *
  15.  * This program is distributed in the hope that it will be useful,
  16.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.  * GNU General Public License for more details.
  19.  *
  20.  * You should have received a copy of the GNU General Public License
  21.  * along with this program; if not, write to the Free Software
  22.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  23.  *****************************************************************************/
  24. #ifndef X11_TIMER_HPP
  25. #define X11_TIMER_HPP
  26. #include "../src/os_timer.hpp"
  27. #include <list>
  28. // Forward declaration
  29. class X11TimerLoop;
  30. // X11 specific timer
  31. class X11Timer: public OSTimer
  32. {
  33.     public:
  34.         X11Timer( intf_thread_t *pIntf, const Callback &rCallback );
  35.         virtual ~X11Timer();
  36.         /// (Re)start the timer with the given delay (in ms). If oneShot is
  37.         /// true, stop it after the first execution of the callback.
  38.         virtual void start( int delay, bool oneShot );
  39.         /// Stop the timer
  40.         virtual void stop();
  41.         mtime_t getNextDate() const;
  42.         /// Execute the callback.
  43.         /// Returns false if the timer must be removed after
  44.         bool execute();
  45.     private:
  46.         /// Callback to execute
  47.         Callback m_callback;
  48.         /// Timer loop
  49.         X11TimerLoop *m_pTimerLoop;
  50.         /// Delay between two execute
  51.         mtime_t m_interval;
  52.         /// Next date at which the timer must be executed
  53.         mtime_t m_nextDate;
  54.         /// Flag to tell if the timer must be stopped after the first execution
  55.         bool m_oneShot;
  56. };
  57. /// Class to manage a set of timers
  58. class X11TimerLoop: public SkinObject
  59. {
  60.     public:
  61.         /// Create the timer loop with the communication number of the X11
  62.         /// display
  63.         X11TimerLoop( intf_thread_t *pIntf, int connectionNumber );
  64.         virtual ~X11TimerLoop();
  65.         /// Add a timer in the manager
  66.         void addTimer( X11Timer &rTimer );
  67.         /// Remove a timer from the manager
  68.         void removeTimer( X11Timer &rTimer );
  69.         /// Wait for the next timer and execute it
  70.         void waitNextTimer();
  71.     private:
  72.         /// Connection number of the X11 display
  73.         int m_connectionNumber;
  74.         /// List of timers
  75.         list<X11Timer*> m_timers;
  76.         /// Sleep for delay milliseconds, unless an X11 event is received
  77.         /// Returns true if the sleep has been interupted.
  78.         bool sleep( int delay );
  79. };
  80. #endif