diff options
Diffstat (limited to 'ksysv/RunlevelAuthIcon.h')
-rw-r--r-- | ksysv/RunlevelAuthIcon.h | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/ksysv/RunlevelAuthIcon.h b/ksysv/RunlevelAuthIcon.h new file mode 100644 index 0000000..d33f24d --- /dev/null +++ b/ksysv/RunlevelAuthIcon.h @@ -0,0 +1,49 @@ +#ifndef RUNLEVEL_AUTH_ICON_H +#define RUNLEVEL_AUTH_ICON_H + +// (c) 2000 Peter Putzer <putzer@kde.org> +#include <kauthicon.h> + +class QTimer; +class QFileInfo; + +class RunlevelAuthIcon : public KAuthIcon +{ + Q_OBJECT + Q_PROPERTY (int refreshInterval READ refreshInterval WRITE setRefreshInterval) + +public: + RunlevelAuthIcon (const QString& scriptPath, const QString& runlevelPath, + QWidget* 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 QString& servicesPath); + void setRunlevelPath (const QString& runlevelPath); + + void setRefreshInterval (int); + + void setCheckEnabled(bool); + +private slots: + void timerEvent (); + +private: + QTimer* mTimer; + QFileInfo* mServicesInfo; + QFileInfo** mRLInfo; + bool mOld; + int mInterval; + + bool mCheckEnabled; +}; + +#endif // RUNLEVEL_AUTH_ICON_H |