mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
da4456f2aa
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5334 a592a061-630c-0410-9148-cb99ea01b6c8
60 lines
863 B
C
60 lines
863 B
C
/**
|
|
* \file qt2/Timeout_pimpl.C
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author John Levon
|
|
*
|
|
* Full author contact details are available in file CREDITS
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#ifdef __GNUG__
|
|
#pragma implementation
|
|
#endif
|
|
|
|
#include "Timeout_pimpl.h"
|
|
#include "debug.h"
|
|
|
|
using std::endl;
|
|
|
|
Timeout::Pimpl::Pimpl(Timeout * owner)
|
|
: owner_(owner), timeout_id(-1)
|
|
{
|
|
}
|
|
|
|
|
|
void Timeout::Pimpl::timerEvent(QTimerEvent *)
|
|
{
|
|
owner_->emit();
|
|
}
|
|
|
|
|
|
void Timeout::Pimpl::reset()
|
|
{
|
|
killTimers();
|
|
timeout_id = -1;
|
|
}
|
|
|
|
|
|
bool Timeout::Pimpl::running() const
|
|
{
|
|
return timeout_id != -1;
|
|
}
|
|
|
|
|
|
void Timeout::Pimpl::start()
|
|
{
|
|
if (running())
|
|
lyxerr << "Timeout::start: already running!" << endl;
|
|
timeout_id = startTimer(owner_->timeout_ms);
|
|
}
|
|
|
|
|
|
void Timeout::Pimpl::stop()
|
|
{
|
|
if (running())
|
|
reset();
|
|
}
|