Support custom parameters (#76)

* Add the setting icon

* Add support for custom parameters

* Ignore auto generated files

* Update README.md
This commit is contained in:
Kevin Yue
2021-08-15 12:47:02 +08:00
committed by GitHub
parent c8942984a8
commit b4f9cfae67
13 changed files with 221 additions and 6 deletions

25
GPClient/settingsdialog.h Normal file
View File

@@ -0,0 +1,25 @@
#ifndef SETTINGSDIALOG_H
#define SETTINGSDIALOG_H
#include <QDialog>
namespace Ui {
class SettingsDialog;
}
class SettingsDialog : public QDialog
{
Q_OBJECT
public:
explicit SettingsDialog(QWidget *parent = nullptr);
~SettingsDialog();
void setExtraArgs(QString);
QString extraArgs();
private:
Ui::SettingsDialog *ui;
};
#endif // SETTINGSDIALOG_H