summaryrefslogtreecommitdiff
path: root/ProductKey.h
diff options
context:
space:
mode:
Diffstat (limited to 'ProductKey.h')
-rw-r--r--ProductKey.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/ProductKey.h b/ProductKey.h
new file mode 100644
index 0000000..64fd536
--- /dev/null
+++ b/ProductKey.h
@@ -0,0 +1,30 @@
+#ifndef PRODUCTKEY_H
+#define PRODUCTKEY_H
+
+#include <QDialog>
+
+namespace Ui {
+class ProductKey;
+}
+
+class ProductKey : public QDialog
+{
+ Q_OBJECT
+
+public:
+ explicit ProductKey(QWidget *parent = 0);
+ ~ProductKey();
+ bool isUltimate() const;
+ static ProductKey *productKey;
+ bool parseKey(QString orgkey=QString());
+private slots:
+ void on_buttonBox_accepted();
+ void on_buttonBox_rejected();
+private:
+ Ui::ProductKey *ui;
+ bool ultimate;
+signals:
+ void changeToUltimate();
+};
+
+#endif // PRODUCTKEY_H