2001-02-07 16:44:49 +00:00
|
|
|
|
/**
|
|
|
|
|
* \file Timeout.C
|
|
|
|
|
* Copyright 2001 LyX Team
|
|
|
|
|
* Read COPYING
|
|
|
|
|
*
|
|
|
|
|
* \author Lars Gullik Bj<EFBFBD>nnes
|
|
|
|
|
* \author John Levon
|
2002-09-05 14:10:50 +00:00
|
|
|
|
*
|
|
|
|
|
* Full author contact details are available in file CREDITS
|
2001-02-07 16:44:49 +00:00
|
|
|
|
*/
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
|
#pragma implementation
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
|
|
#include "Timeout.h"
|
|
|
|
|
#include "debug.h"
|
|
|
|
|
|
|
|
|
|
#include "Timeout_pimpl.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Timeout::Timeout(unsigned int msec, Type t)
|
|
|
|
|
: type(t), timeout_ms(msec)
|
|
|
|
|
{
|
|
|
|
|
pimpl_ = new Pimpl(this);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Timeout::~Timeout()
|
|
|
|
|
{
|
|
|
|
|
pimpl_->stop();
|
|
|
|
|
delete pimpl_;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2002-02-18 19:13:48 +00:00
|
|
|
|
bool Timeout::running() const
|
|
|
|
|
{
|
|
|
|
|
return pimpl_->running();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2001-02-07 16:44:49 +00:00
|
|
|
|
void Timeout::start()
|
|
|
|
|
{
|
|
|
|
|
pimpl_->start();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Timeout::stop()
|
|
|
|
|
{
|
|
|
|
|
pimpl_->stop();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Timeout::restart()
|
|
|
|
|
{
|
|
|
|
|
pimpl_->stop();
|
|
|
|
|
pimpl_->start();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Timeout::emit()
|
|
|
|
|
{
|
|
|
|
|
pimpl_->reset();
|
2002-05-29 16:21:03 +00:00
|
|
|
|
timeout();
|
2001-02-07 16:44:49 +00:00
|
|
|
|
if (type == CONTINUOUS)
|
|
|
|
|
pimpl_->start();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Timeout & Timeout::setType(Type t)
|
|
|
|
|
{
|
|
|
|
|
type = t;
|
|
|
|
|
return * this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Timeout & Timeout::setTimeout(unsigned int msec)
|
|
|
|
|
{
|
|
|
|
|
timeout_ms = msec;
|
|
|
|
|
return * this;
|
|
|
|
|
}
|