mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-13 06:20:28 +00:00
45933fac0c
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1159 a592a061-630c-0410-9148-cb99ea01b6c8
70 lines
1.1 KiB
C++
70 lines
1.1 KiB
C++
// -*- C++ -*-
|
|
/* This file is part of
|
|
* ======================================================
|
|
*
|
|
* LyX, The Document Processor
|
|
*
|
|
* Copyright 1995 Matthias Ettrich
|
|
* Copyright 1995-2000 The LyX Team.
|
|
*
|
|
* ====================================================== */
|
|
|
|
#ifndef TIMEOUT_H
|
|
#define TIMEOUT_H
|
|
|
|
#include <config.h>
|
|
|
|
#ifdef __GNUG__
|
|
#pragma interface
|
|
#endif
|
|
|
|
#include <sigc++/signal_system.h>
|
|
|
|
#ifdef SIGC_CXX_NAMESPACES
|
|
using SigC::Signal0;
|
|
#endif
|
|
|
|
/** This class executes the callback when the timeout expires.
|
|
This class currently uses a regular callback, later it will use
|
|
signals and slots to provide the same.
|
|
*/
|
|
class Timeout {
|
|
public:
|
|
///
|
|
enum Type {
|
|
///
|
|
ONETIME,
|
|
///
|
|
CONTINOUS
|
|
};
|
|
///
|
|
Timeout();
|
|
///
|
|
Timeout(unsigned int msec, Type = ONETIME);
|
|
///
|
|
~Timeout();
|
|
///
|
|
void start();
|
|
///
|
|
void stop();
|
|
///
|
|
void restart();
|
|
///
|
|
Signal0<void> timeout;
|
|
///
|
|
void emit();
|
|
///
|
|
Timeout & setType(Type t);
|
|
///
|
|
Timeout & setTimeout(unsigned int msec);
|
|
private:
|
|
///
|
|
Type type;
|
|
///
|
|
unsigned int timeout_ms;
|
|
///
|
|
int timeout_id;
|
|
};
|
|
|
|
#endif
|