You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
71 lines
1.4 KiB
71 lines
1.4 KiB
/*
|
|
* polldrop.h -- Declaration of class KPollableDrop.
|
|
* Generated by newclass on Sun Nov 30 22:41:49 EST 1997.
|
|
*/
|
|
#ifndef SSK_POLLDROP_H
|
|
#define SSK_POLLDROP_H
|
|
|
|
#include"maildrop.h"
|
|
|
|
class TQTimerEvent;
|
|
|
|
/**
|
|
* Superclass for all pollable maildrop monitors.
|
|
*
|
|
* To implement a polling maildrop, reimplement recheck and emit
|
|
* changed(int) in recheck if new messages have been received.
|
|
*
|
|
* @author Sirtaj Singh Kang (taj@kde.org)
|
|
* @version $Id$
|
|
*/
|
|
class KPollableDrop : public KMailDrop
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
static const char *PollConfigKey;
|
|
static const int DefaultPoll;
|
|
|
|
private:
|
|
int _freq;
|
|
int _timerId;
|
|
bool _timerRunning;
|
|
|
|
public:
|
|
/**
|
|
* KPollableDrop Constructor
|
|
*/
|
|
KPollableDrop();
|
|
|
|
virtual bool startMonitor();
|
|
virtual bool stopMonitor();
|
|
virtual bool startProcess() { return true; } //Start en stop-functions for progress; it is not pollable, but a member of tdeio
|
|
virtual bool stopProcess() { return true; }
|
|
|
|
virtual bool running() { return _timerRunning; };
|
|
|
|
int freq() const { return _freq; }
|
|
void setFreq( int freq );
|
|
|
|
virtual bool readConfigGroup ( const TDEConfigBase& cfg );
|
|
virtual bool writeConfigGroup ( TDEConfigBase& cfg ) const;
|
|
|
|
//virtual void addConfigPage( KDropCfgDialog * );
|
|
|
|
protected:
|
|
void timerEvent( TQTimerEvent * );
|
|
};
|
|
|
|
inline void KPollableDrop::setFreq( int freq )
|
|
{
|
|
bool r = running();
|
|
|
|
if( r ) stopMonitor();
|
|
|
|
_freq = freq;
|
|
|
|
if( r ) startMonitor();
|
|
}
|
|
|
|
#endif // SSK_POLLDROP_H
|