diff options
author | Adam Ierymenko <adam.ierymenko@gmail.com> | 2014-01-17 10:36:58 -0800 |
---|---|---|
committer | Adam Ierymenko <adam.ierymenko@gmail.com> | 2014-01-17 10:36:58 -0800 |
commit | 8be664cca9ca6b95515fb1bda961f5c844af7d0f (patch) | |
tree | 6ebf94344136d7f6b3d2fe8d178bf7489f2f895b /ZeroTierUI/licensedialog.h | |
parent | 866edd41a7328da35136cd93640f4ad2630f98ed (diff) | |
download | infinitytier-8be664cca9ca6b95515fb1bda961f5c844af7d0f.tar.gz infinitytier-8be664cca9ca6b95515fb1bda961f5c844af7d0f.zip |
UI cleanup and license dialog.
Diffstat (limited to 'ZeroTierUI/licensedialog.h')
-rw-r--r-- | ZeroTierUI/licensedialog.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/ZeroTierUI/licensedialog.h b/ZeroTierUI/licensedialog.h new file mode 100644 index 00000000..9a13be9c --- /dev/null +++ b/ZeroTierUI/licensedialog.h @@ -0,0 +1,27 @@ +#ifndef LICENSEDIALOG_H +#define LICENSEDIALOG_H + +#include <QDialog> + +namespace Ui { +class LicenseDialog; +} + +class LicenseDialog : public QDialog +{ + Q_OBJECT + +public: + explicit LicenseDialog(QWidget *parent = 0); + ~LicenseDialog(); + +private slots: + void on_buttonBox_accepted(); + + void on_buttonBox_rejected(); + +private: + Ui::LicenseDialog *ui; +}; + +#endif // LICENSEDIALOG_H |