UpdatePTUDevCtrl/mainwindow.h

50 lines
1.0 KiB
C
Raw Normal View History

2023-07-31 16:55:36 +02:00
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
#include <QTimer>
2023-07-31 16:55:36 +02:00
QT_BEGIN_NAMESPACE
namespace Ui { class MainWindow; }
QT_END_NAMESPACE
#include "worker.h"
2023-07-31 16:55:36 +02:00
class MainWindow : public QMainWindow {
Q_OBJECT
protected:
void customEvent(QEvent *event) override;
2023-07-31 16:55:36 +02:00
public:
MainWindow(Worker *worker, QWidget *parent = nullptr);
~MainWindow();
static const int START_PROGRESS_LOOP = -1;
static const int STOP_PROGRESS_LOOP = -2;
int progressValue() const { return m_progressValue; }
public slots:
void onAppendText(QString, QString suffix = "");
void onReplaceLast(QString, QString);
void onShowErrorMessage(QString, QString);
void onStopStartTimer();
void onRestartExitTimer();
void onEnableExit();
void onDisableExit();
2023-07-31 16:55:36 +02:00
private slots:
void onQuit();
2023-07-31 16:55:36 +02:00
private:
Ui::MainWindow *ui;
Worker *m_worker;
int m_width;
QTimer *m_startTimer;
QTimer *m_exitTimer;
bool m_progressRunning;
int m_progressValue;
2023-07-31 16:55:36 +02:00
};
#endif // MAINWINDOW_H