mirror of
https://github.com/yuezk/GlobalProtect-openconnect.git
synced 2025-04-02 18:31:50 -04:00
* Add the setting icon * Add support for custom parameters * Ignore auto generated files * Update README.md
26 lines
379 B
C++
26 lines
379 B
C++
#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
|