aboutsummaryrefslogtreecommitdiff
path: root/plugins/ProfileEditor/forms/newprofiledialog.h
diff options
context:
space:
mode:
authorAqua-sama <aqua@iserlohn-fortress.net>2018-08-27 16:42:51 +0200
committerAqua-sama <aqua@iserlohn-fortress.net>2018-08-27 17:43:02 +0200
commit36dce3fd26194cdf6dbf1ba52cc27cfa1daae389 (patch)
tree23a3919fb67d33583c4bd5c889758bf196100b9a /plugins/ProfileEditor/forms/newprofiledialog.h
parentAdd BrowserInterface to simplify plugins a bit (diff)
downloadsmolbote-36dce3fd26194cdf6dbf1ba52cc27cfa1daae389.tar.xz
PluginEditor: implement add plugin action
Diffstat (limited to 'plugins/ProfileEditor/forms/newprofiledialog.h')
-rw-r--r--plugins/ProfileEditor/forms/newprofiledialog.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/plugins/ProfileEditor/forms/newprofiledialog.h b/plugins/ProfileEditor/forms/newprofiledialog.h
new file mode 100644
index 0000000..6fa0a27
--- /dev/null
+++ b/plugins/ProfileEditor/forms/newprofiledialog.h
@@ -0,0 +1,24 @@
+#ifndef NEWPROFILEDIALOG_H
+#define NEWPROFILEDIALOG_H
+
+#include <QDialog>
+
+namespace Ui {
+class NewProfileDialog;
+}
+
+class NewProfileDialog : public QDialog
+{
+ Q_OBJECT
+
+public:
+ explicit NewProfileDialog(QWidget *parent = nullptr);
+ ~NewProfileDialog();
+
+ const QString getId() const;
+
+private:
+ Ui::NewProfileDialog *ui;
+};
+
+#endif // NEWPROFILEDIALOG_H