28 lines
348 B
C++
28 lines
348 B
C++
#pragma once
|
|
#include <QtWidgets/qdialog.h>
|
|
#include <qstring.h>
|
|
|
|
#include "ui_set.h"
|
|
|
|
class setWindow :public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
setWindow(QWidget* parent = Q_NULLPTR);
|
|
~setWindow();
|
|
|
|
private:
|
|
Ui::setDialog ui;
|
|
|
|
void loadSettings();
|
|
void saveSettings();
|
|
|
|
public Q_SLOTS:
|
|
void onExit();
|
|
void onSelectDataFolder();
|
|
|
|
signals:
|
|
|
|
};
|