fltk_timer.cpp
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:4k
源码类别:

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: fltk_timer.cpp,v $
  4.  * PRODUCTION Revision 1000.0  2004/06/01 21:29:11  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [GCC34_MSVC7] Dev-tree R1.2
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: fltk_timer.cpp,v 1000.0 2004/06/01 21:29:11 gouriano Exp $
  10.  * ===========================================================================
  11.  *
  12.  *                            PUBLIC DOMAIN NOTICE
  13.  *               National Center for Biotechnology Information
  14.  *
  15.  *  This software/database is a "United States Government Work" under the
  16.  *  terms of the United States Copyright Act.  It was written as part of
  17.  *  the author's official duties as a United States Government employee and
  18.  *  thus cannot be copyrighted.  This software/database is freely available
  19.  *  to the public for use. The National Library of Medicine and the U.S.
  20.  *  Government have not placed any restriction on its use or reproduction.
  21.  *
  22.  *  Although all reasonable efforts have been taken to ensure the accuracy
  23.  *  and reliability of the software and data, the NLM and the U.S.
  24.  *  Government do not and cannot warrant the performance or results that
  25.  *  may be obtained by using this software or data. The NLM and the U.S.
  26.  *  Government disclaim all warranties, express or implied, including
  27.  *  warranties of performance, merchantability or fitness for any particular
  28.  *  purpose.
  29.  *
  30.  *  Please cite the author in any work or product based on this material.
  31.  *
  32.  * ===========================================================================
  33.  *
  34.  * Authors:  Andrey Yazhuk
  35.  *  
  36.  */
  37. //#include <corelib/ncbistd.hpp>
  38. #include <ncbi_pch.hpp>
  39. #include <gui/widgets/fl/fltk_timer.hpp>
  40. #include <FL/Fl.H>
  41. BEGIN_NCBI_SCOPE
  42. CFLTKTimer::CFLTKTimer()
  43. {
  44.     Init(0, 1.0, NULL, false);
  45. }
  46. CFLTKTimer::CFLTKTimer(int id, double period, bool repeat, ITimerListener* listener)
  47. {
  48.     Init(id, period, repeat, listener);
  49. }
  50. void    CFLTKTimer::Init(int id, double period, bool repeat, ITimerListener* listener)
  51. {
  52.     m_ID = id;
  53.     m_Period = period;
  54.     m_Repeat = repeat;
  55.     m_Running = false;
  56.     m_Listener = listener;
  57. }
  58. CFLTKTimer::~CFLTKTimer()
  59. {
  60.     Stop();
  61. }
  62. void    CFLTKTimer::SetListener(ITimerListener* listener)
  63. {
  64.     m_Listener = listener;
  65. }
  66. void    CFLTKTimer::Start()
  67. {
  68.     if(!m_Running  &&  m_Listener)   {
  69.         m_Running = true;
  70.         void* data = reinterpret_cast<void*>(this);
  71.         Fl::add_timeout(m_Period, x_OnTimeout, data);
  72.     } else _ASSERT(false);
  73. }
  74. void    CFLTKTimer::StartOnce()
  75. {
  76.     m_Repeat = false;
  77.     Start();
  78. }
  79. void    CFLTKTimer::Stop()
  80. {
  81.     if(m_Running)   {
  82.         void* data = reinterpret_cast<void*>(this);
  83.         Fl::remove_timeout(x_OnTimeout, data);
  84.         m_Running = false;
  85.     }
  86. }
  87. void    CFLTKTimer::ReStart()
  88. {
  89.     Stop();
  90.     Start();
  91. }
  92. bool    CFLTKTimer::IsRunning()
  93. {
  94.     return m_Running;
  95. }
  96. void     CFLTKTimer::x_OnTimeout(void* data)
  97. {
  98.     CFLTKTimer* timer = reinterpret_cast<CFLTKTimer*>(data);
  99.     timer->m_Listener->OnTimeout(timer->m_ID);
  100.     if(timer->m_Repeat) {
  101.         Fl::repeat_timeout(timer->m_Period, x_OnTimeout, data); //continue
  102.     } else {
  103.         timer->m_Running = false;
  104.     }
  105. }
  106. END_NCBI_SCOPE
  107. /*
  108.  * ===========================================================================
  109.  * $Log: fltk_timer.cpp,v $
  110.  * Revision 1000.0  2004/06/01 21:29:11  gouriano
  111.  * PRODUCTION: IMPORTED [GCC34_MSVC7] Dev-tree R1.2
  112.  *
  113.  * Revision 1.2  2004/05/21 22:27:53  gorelenk
  114.  * Added PCH ncbi_pch.hpp
  115.  *
  116.  * Revision 1.1  2004/05/03 19:44:24  yazhuk
  117.  * Initial revision
  118.  *
  119.  * ===========================================================================
  120.  */