mirror of
https://github.com/FAUSheppy/speech-server-client-qt
synced 2025-12-06 08:51:35 +01:00
31 lines
608 B
C++
31 lines
608 B
C++
#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
|