You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #ifndef UNREADCHECKER_H
- #define UNREADCHECKER_H
-
- #include "iplugin.h"
- #include <QObject>
-
- class UnreadChecker : public QObject, public IPlugin
- {
- Q_OBJECT
-
- public:
- UnreadChecker();
- void init(FeiqWin* feiqWin) override;
- void unInit() override;
-
- protected:
- void timerEvent(QTimerEvent *event) override;
-
- private:
- int mUnreadTimerInterval;
- int mUnreadTimerId=-1;
- };
-
- #endif // UNREADCHECKER_H
|