Gerhard Hoffmann
9531a08b4a
owned by the GUI thread, and the GUI thread is loading the plugin. Hence the worker-thread does not block itself when inside a QT slot.
58 lines
1.3 KiB
C++
58 lines
1.3 KiB
C++
#ifndef MAINWINDOW_H
|
|
#define MAINWINDOW_H
|
|
|
|
#include <QMainWindow>
|
|
#include <QTimer>
|
|
#include <QStatusBar>
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
namespace Ui { class MainWindow; }
|
|
QT_END_NAMESPACE
|
|
|
|
#include "worker.h"
|
|
|
|
class hwinf;
|
|
class MainWindow : public QMainWindow {
|
|
Q_OBJECT
|
|
|
|
protected:
|
|
void customEvent(QEvent *event) override;
|
|
|
|
public:
|
|
MainWindow(hwinf *hw, 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; }
|
|
hwinf *getPlugin() { return m_hw; }
|
|
hwinf const *getPlugin() const { return m_hw; }
|
|
|
|
public slots:
|
|
void onAppendText(QString, QString suffix = "");
|
|
void onReplaceLast(QStringList, QString suffix = "");
|
|
void onReplaceLast(QString, QString suffix = "");
|
|
void onShowErrorMessage(QString, QString);
|
|
void onStopStartTimer();
|
|
void onRestartExitTimer();
|
|
void onEnableExit();
|
|
void onDisableExit();
|
|
|
|
private slots:
|
|
void onQuit();
|
|
|
|
private:
|
|
void scrollDownTextEdit();
|
|
|
|
Ui::MainWindow *ui;
|
|
hwinf *m_hw;
|
|
Worker *m_worker;
|
|
int m_width;
|
|
QTimer *m_startTimer;
|
|
QTimer *m_exitTimer;
|
|
bool m_progressRunning;
|
|
int m_progressValue;
|
|
};
|
|
#endif // MAINWINDOW_H
|