blob: 172f6be2e055f28c5d09a788d78172eee372f966 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
#ifndef RUNLEVEL_AUTH_ICON_H
#define RUNLEVEL_AUTH_ICON_H
// (c) 2000 Peter Putzer <putzer@kde.org>
#include <kauthicon.h>
class TQTimer;
class TQFileInfo;
class RunlevelAuthIcon : public KAuthIcon
{
Q_OBJECT
Q_PROPERTY (int refreshInterval READ refreshInterval WRITE setRefreshInterval)
public:
RunlevelAuthIcon (const TQString& scriptPath, const TQString& runlevelPath,
TQWidget* parent = 0L, const char* name = 0L);
virtual ~RunlevelAuthIcon ();
virtual bool status () const;
inline int refreshInterval () const { return mInterval; }
inline bool isCheckEnabled () const { return mCheckEnabled; }
public slots:
virtual void updateStatus ();
void setServicesPath (const TQString& servicesPath);
void setRunlevelPath (const TQString& runlevelPath);
void setRefreshInterval (int);
void setCheckEnabled(bool);
private slots:
void timerEvent ();
private:
TQTimer* mTimer;
TQFileInfo* mServicesInfo;
TQFileInfo** mRLInfo;
bool mOld;
int mInterval;
bool mCheckEnabled;
};
#endif // RUNLEVEL_AUTH_ICON_H
|