aboutsummaryrefslogtreecommitdiff
path: root/plugins/ProfileEditor/forms/profileview.h
diff options
context:
space:
mode:
authorAqua-sama <aqua@iserlohn-fortress.net>2018-01-15 00:35:58 +0100
committerAqua-sama <aqua@iserlohn-fortress.net>2018-01-15 00:35:58 +0100
commit2660fff9e6191808aa83197639a663b73a27bbfa (patch)
treee01930c4202d87c5b74f701938a0004a952425a1 /plugins/ProfileEditor/forms/profileview.h
parentInitial plugins testing (diff)
downloadsmolbote-2660fff9e6191808aa83197639a663b73a27bbfa.tar.xz
Moved ProfileView to ProfileEditorPlugin
Diffstat (limited to 'plugins/ProfileEditor/forms/profileview.h')
-rw-r--r--plugins/ProfileEditor/forms/profileview.h37
1 files changed, 37 insertions, 0 deletions
diff --git a/plugins/ProfileEditor/forms/profileview.h b/plugins/ProfileEditor/forms/profileview.h
new file mode 100644
index 0000000..580bee9
--- /dev/null
+++ b/plugins/ProfileEditor/forms/profileview.h
@@ -0,0 +1,37 @@
+/*
+ * This file is part of smolbote. It's copyrighted by the contributors recorded
+ * in the version control history of the file, available from its original
+ * location: git://neueland.iserlohn-fortress.net/smolbote.git
+ *
+ * SPDX-License-Identifier: GPL-3.0
+ */
+
+#ifndef PROFILEDIALOG_H
+#define PROFILEDIALOG_H
+
+#include <QDialog>
+#include <QWebEngineProfile>
+
+namespace Ui
+{
+class ProfileView;
+}
+
+class ProfileView : public QDialog
+{
+ Q_OBJECT
+
+public:
+ explicit ProfileView(QWebEngineProfile *profile, QWidget *parent = nullptr);
+ ~ProfileView() override;
+
+public slots:
+ void loadProfile();
+ void updateProfile();
+
+private:
+ Ui::ProfileView *ui;
+ QWebEngineProfile *m_profile;
+};
+
+#endif // PROFILEDIALOG_H