30 lines
611 B
C++
30 lines
611 B
C++
#ifndef CONNECTIONCONFIGURATION_H
|
|
#define CONNECTIONCONFIGURATION_H
|
|
|
|
#include <QDialog>
|
|
#include <QSettings>
|
|
#include <QMessageBox>
|
|
|
|
#include "shimlccontroller.h"
|
|
|
|
namespace Ui {
|
|
class ConnectionConfiguration;
|
|
}
|
|
|
|
class ConnectionConfiguration : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit ConnectionConfiguration(QSettings *settings, ShimLCController *ctrl, QWidget *parent);
|
|
~ConnectionConfiguration();
|
|
|
|
private:
|
|
Ui::ConnectionConfiguration *ui;
|
|
void apply();
|
|
QSettings *settings = nullptr;
|
|
ShimLCController *ctrl = nullptr;
|
|
void test();
|
|
};
|
|
|
|
#endif // CONNECTIONCONFIGURATION_H
|