You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
484 B
C++
33 lines
484 B
C++
#ifndef TPLAUNCHER_H
|
|
#define TPLAUNCHER_H
|
|
|
|
#include <QtWidgets/QMainWindow>
|
|
#include <QTimer>
|
|
#include "ui_tpAssister.h"
|
|
|
|
|
|
|
|
class tpAssister : public QMainWindow
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
tpAssister(QWidget *parent = 0);
|
|
~tpAssister();
|
|
|
|
private:
|
|
void init();
|
|
|
|
Q_SLOT void slotAppStatusRefresh();
|
|
QTimer mTimerAppStatusRefresh;
|
|
|
|
Q_SLOT void slotStartupApp(bool bChecked);
|
|
Q_SLOT void slotShutdownApp(bool bChecked);
|
|
private:
|
|
Ui::tpAssisterClass ui;
|
|
|
|
|
|
};
|
|
|
|
#endif // TPLAUNCHER_H
|