mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-24 18:43:37 +00:00
61 lines
873 B
C++
61 lines
873 B
C++
|
/**
|
|||
|
* \file Timeout_pimpl.C
|
|||
|
* Copyright 2001 LyX Team
|
|||
|
* Read COPYING
|
|||
|
*
|
|||
|
* \author Lars Gullik Bj<EFBFBD>nnes
|
|||
|
* \author John Levon
|
|||
|
*/
|
|||
|
|
|||
|
#ifdef __GNUG__
|
|||
|
#pragma implementation
|
|||
|
#endif
|
|||
|
|
|||
|
#include <config.h>
|
|||
|
|
|||
|
#include FORMS_H_LOCATION
|
|||
|
|
|||
|
#include "Timeout_pimpl.h"
|
|||
|
#include "debug.h"
|
|||
|
|
|||
|
using std::endl;
|
|||
|
|
|||
|
extern "C" {
|
|||
|
static
|
|||
|
void C_intern_timeout_cb(int, void * data)
|
|||
|
{
|
|||
|
Timeout * to = static_cast<Timeout *>(data);
|
|||
|
to->emit();
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
Timeout::Pimpl::Pimpl(Timeout * owner)
|
|||
|
: owner_(owner), timeout_id(-1)
|
|||
|
{
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
void Timeout::Pimpl::reset()
|
|||
|
{
|
|||
|
timeout_id = -1;
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
void Timeout::Pimpl::start()
|
|||
|
{
|
|||
|
if (timeout_id != -1)
|
|||
|
lyxerr << "Timeout::start: already running!" << endl;
|
|||
|
timeout_id = fl_add_timeout(owner_->timeout_ms,
|
|||
|
C_intern_timeout_cb, owner_);
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
void Timeout::Pimpl::stop()
|
|||
|
{
|
|||
|
if (timeout_id != -1) {
|
|||
|
fl_remove_timeout(timeout_id);
|
|||
|
timeout_id = -1;
|
|||
|
}
|
|||
|
}
|