aboutsummaryrefslogtreecommitdiff
path: root/src/webengine/webengineprofile.h
diff options
context:
space:
mode:
authorAqua-sama <aqua@iserlohn-fortress.net>2017-03-31 22:02:59 +0200
committerAqua-sama <aqua@iserlohn-fortress.net>2017-03-31 22:02:59 +0200
commit549741018ef5a18d9ad7a51092438d764149b758 (patch)
tree0fbe74b8569004c0a4ddb24d25cedaabeab36f82 /src/webengine/webengineprofile.h
parentRewrote the pre-commit hook into Ruby (diff)
downloadsmolbote-549741018ef5a18d9ad7a51092438d764149b758.tar.xz
Added cookie widget
Diffstat (limited to 'src/webengine/webengineprofile.h')
-rw-r--r--src/webengine/webengineprofile.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/webengine/webengineprofile.h b/src/webengine/webengineprofile.h
index 1845c99..c93ae52 100644
--- a/src/webengine/webengineprofile.h
+++ b/src/webengine/webengineprofile.h
@@ -22,6 +22,7 @@
#define WEBENGINEPROFILE_H
#include <QWebEngineProfile>
+#include "forms/cookiesform.h"
class WebEngineProfile : public QWebEngineProfile
{
@@ -32,10 +33,15 @@ public:
~WebEngineProfile();
+ CookiesWidget *cookieUI();
+
signals:
public slots:
void saveProfile();
+
+private:
+ CookiesWidget *m_cookiesForm;
};
#endif // WEBENGINEPROFILE_H