Allow the user to specify a fixed port number in the runtime to aid cookie whitelisting etc. Fixes #3506

This commit is contained in:
Dave Page
2018-07-19 12:54:53 +01:00
parent 2ce41e77f2
commit a86604160a
6 changed files with 244 additions and 56 deletions

View File

@@ -27,16 +27,21 @@ public:
~ConfigWindow();
QString getBrowserCommand();
bool getFixedPort();
int getPortNumber();
QString getPythonPath();
QString getApplicationPath();
void setBrowserCommand(QString command);
void setFixedPort(bool fixedPort);
void setPortNumber(int port);
void setPythonPath(QString path);
void setApplicationPath(QString path);
private slots:
void on_buttonBox_accepted();
void on_buttonBox_rejected();
void on_chkFixedPort_stateChanged(int state);
private:
Ui::ConfigWindow *ui;