示例#1
0
文件: timer.cpp 项目: 3v1n0/wxWidgets
void wxTimerCallback (wxMotifTimerImpl *timer)
{
    // Check to see if it's still on
    if ( gs_timers.find(timer) == gs_timers.end() )
        return;

    if ( !timer->IsRunning() )
        return;            // Avoid to process spurious timer events

    timer->Notify();
}
示例#2
0
文件: timer.cpp 项目: 3v1n0/wxWidgets
bool wxMotifTimerImpl::Start(int milliseconds, bool mode)
{
    if ( !wxTimerImpl::Start(milliseconds, mode) )
        return false;

    if ( gs_timers.find(this) == gs_timers.end() )
        gs_timers[this] = this;

    DoStart();

    return true;
}
示例#3
0
文件: timer.cpp 项目: gitrider/wxsj2
bool wxTimer::Start(int milliseconds, bool mode)
{
    Stop();

    (void)wxTimerBase::Start(milliseconds, mode);

    if (s_timers.find(this) == s_timers.end())
        s_timers[this] = this;

    m_id = XtAppAddTimeOut((XtAppContext) wxTheApp->GetAppContext(),
                            m_milli,
                            (XtTimerCallbackProc) wxTimerCallback,
                            (XtPointer) this);
    return true;
}
示例#4
0
文件: timer.cpp 项目: gitrider/wxsj2
void wxTimerCallback (wxTimer * timer)
{
  // Check to see if it's still on
  if (s_timers.find(timer) == s_timers.end())
    return;

  if (timer->m_id == 0)
    return;			// Avoid to process spurious timer events

  if (!timer->m_oneShot)
    timer->m_id = XtAppAddTimeOut((XtAppContext) wxTheApp->GetAppContext(),
                                  timer->m_milli,
                                  (XtTimerCallbackProc) wxTimerCallback,
                                  (XtPointer) timer);
  else
    timer->m_id = 0;

  timer->Notify();
}
示例#5
0
文件: timer.cpp 项目: 3v1n0/wxWidgets
wxMotifTimerImpl::~wxMotifTimerImpl()
{
    gs_timers.erase(this);
}
示例#6
0
文件: timer.cpp 项目: gitrider/wxsj2
wxTimer::~wxTimer()
{
    Stop();
    s_timers.erase(this);
}