aboutsummaryrefslogtreecommitdiff
path: root/src/forms/cookiesform.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/forms/cookiesform.h')
-rw-r--r--src/forms/cookiesform.h46
1 files changed, 0 insertions, 46 deletions
diff --git a/src/forms/cookiesform.h b/src/forms/cookiesform.h
deleted file mode 100644
index a950ae1..0000000
--- a/src/forms/cookiesform.h
+++ /dev/null
@@ -1,46 +0,0 @@
-/*
- * 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: https://neueland.iserlohn-fortress.net/gitea/aqua/smolbote
- *
- * SPDX-License-Identifier: GPL-3.0
- */
-
-#ifndef COOKIESFORM_H
-#define COOKIESFORM_H
-
-#include <QTreeWidgetItem>
-#include <QWebEngineCookieStore>
-#include <QWidget>
-
-namespace Ui
-{
-class CookiesForm;
-}
-
-class CookiesForm : public QWidget
-{
- Q_OBJECT
-
-public:
- enum DetailsRoles {
- ValueRole = Qt::UserRole,
-
- IsHttpOnlyRole = Qt::UserRole + 1,
- IsSecureRole = Qt::UserRole + 2,
- IsSessionCookieRole = Qt::UserRole + 3,
- PathRole = Qt::UserRole + 4
- };
-
- explicit CookiesForm(QWebEngineCookieStore *store, QWidget *parent = 0);
- ~CookiesForm();
-
-private slots:
- void addCookie(const QNetworkCookie &cookie);
- void showDetails(QTreeWidgetItem *current, QTreeWidgetItem *previous);
-
-private:
- Ui::CookiesForm *ui;
-};
-
-#endif // COOKIESFORM_H