2020-05-09 21:08:23 +00:00
|
|
|
//
|
|
|
|
// Created by lukas on 09.05.20.
|
|
|
|
//
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QtWidgets/QMainWindow>
|
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
class MainWindow;
|
|
|
|
}
|
|
|
|
|
2020-05-10 16:10:44 +00:00
|
|
|
class MainWindow : public QMainWindow {
|
2020-05-09 21:08:23 +00:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2020-05-10 13:00:51 +00:00
|
|
|
explicit MainWindow(QWidget *parent = nullptr);
|
2020-05-10 16:10:44 +00:00
|
|
|
|
2020-05-09 21:08:23 +00:00
|
|
|
~MainWindow();
|
|
|
|
|
|
|
|
private:
|
|
|
|
Ui::MainWindow *ui;
|
|
|
|
private slots:
|
2020-05-10 16:10:44 +00:00
|
|
|
|
|
|
|
void checkConfigBtn();
|
|
|
|
|
|
|
|
void refreshIPBtn();
|
|
|
|
|
2020-05-09 21:08:23 +00:00
|
|
|
signals:
|
2020-05-10 16:10:44 +00:00
|
|
|
|
2020-05-09 21:08:23 +00:00
|
|
|
void appendLogField(QString);
|
|
|
|
};
|