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.
tdeadmin/ksysv/RunlevelAuthIcon.h

51 lines
1.0 KiB

#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
TQ_OBJECT
TQ_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