Qv2ray/src/PrefrencesWindow.h
Leroy.H.Y 20ca9cef23 [ReDesign] Re-design config window UI
Signed-off-by: Leroy.H.Y <lhy20010403@hotmail.com>

Former-commit-id: 0d2e1c62b3
2019-06-22 11:24:05 +08:00

33 lines
549 B
C++

#ifndef HVCONF_H
#define HVCONF_H
#include <QDialog>
#include <QJsonObject>
#include "MainWindow.h"
namespace Ui
{
class PrefrencesWindow;
}
class PrefrencesWindow : public QDialog
{
Q_OBJECT
public:
explicit PrefrencesWindow(MainWindow *parent = nullptr);
~PrefrencesWindow();
QJsonObject rootObj;
MainWindow *parentMW;
private slots:
void on_buttonBox_accepted();
void on_httpCB_stateChanged(int arg1);
void on_socksCB_stateChanged(int arg1);
private:
Ui::PrefrencesWindow *ui;
};
#endif // HVCONF_H