mirror of
https://github.com/FAUSheppy/speech-server-client-qt
synced 2025-12-06 00:41:35 +01:00
implement server settings window (readonly)
This commit is contained in:
30
serverconfig.h
Normal file
30
serverconfig.h
Normal file
@@ -0,0 +1,30 @@
|
||||
#ifndef SERVERCONFIG_H
|
||||
#define SERVERCONFIG_H
|
||||
|
||||
#include <QGridLayout>
|
||||
#include <QMainWindow>
|
||||
#include <QNetworkReply>
|
||||
#include <QSettings>
|
||||
#include <QTableWidget>
|
||||
#include <QWidget>
|
||||
|
||||
|
||||
|
||||
class ServerConfig : public QMainWindow
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit ServerConfig(QWidget *parent = nullptr, QSettings *settings = nullptr);
|
||||
virtual ~ServerConfig();
|
||||
private slots:
|
||||
void finishedRequest(QNetworkReply*);
|
||||
private:
|
||||
QGridLayout* mainLayout;
|
||||
QSettings* mySettings;
|
||||
QWidget *loatListItemUiForm();
|
||||
QTableWidget* ppTable;
|
||||
QTableWidget* contextTable;
|
||||
};
|
||||
|
||||
#endif // SERVERCONFIG_H
|
||||
Reference in New Issue
Block a user