mirror of
https://github.com/FAUSheppy/speech-server-client-qt
synced 2025-12-06 00:41:35 +01:00
implement configuration window
This commit is contained in:
27
settings.h
Normal file
27
settings.h
Normal file
@@ -0,0 +1,27 @@
|
||||
#ifndef SETTINGS_H
|
||||
#define SETTINGS_H
|
||||
|
||||
#include <QMainWindow>
|
||||
#include <QLineEdit>
|
||||
|
||||
namespace Ui {
|
||||
class settings;
|
||||
}
|
||||
|
||||
class Settings : public QMainWindow
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit Settings(QWidget *parent = nullptr);
|
||||
~Settings();
|
||||
|
||||
private slots:
|
||||
void okClose();
|
||||
void cancleClose();
|
||||
private:
|
||||
Ui::settings *ui;
|
||||
QHash<QString, QLineEdit*> *configLineEditMap;
|
||||
};
|
||||
|
||||
#endif // SETTINGS_H
|
||||
Reference in New Issue
Block a user