X-Git-Url: https://gitweb.stoutner.com/?p=PrivacyBrowserPC.git;a=blobdiff_plain;f=src%2Fdialogs%2FAddCookieDialog.h;fp=src%2Fdialogs%2FAddCookieDialog.h;h=0000000000000000000000000000000000000000;hp=f7354ce3c0526c7d9e27e87ca7daa66ec801ff86;hb=cba9a47f00b59f59f76f1b5195086285ca0cdb59;hpb=9b6cee96126484925bec4f4ab30c2b880df687fe diff --git a/src/dialogs/AddCookieDialog.h b/src/dialogs/AddCookieDialog.h deleted file mode 100644 index f7354ce..0000000 --- a/src/dialogs/AddCookieDialog.h +++ /dev/null @@ -1,60 +0,0 @@ -/* - * Copyright © 2022 Soren Stoutner . - * - * This file is part of Privacy Browser PC . - * - * Privacy Browser PC is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * Privacy Browser PC is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with Privacy Browser PC. If not, see . - */ - -#ifndef ADDCOOKIEDIALOG_H -#define ADDCOOKIEDIALOG_H - -// Qt toolkit headers. -#include -#include -#include -#include - -class AddCookieDialog : public QDialog -{ - // Include the Q_OBJECT macro. - Q_OBJECT - -public: - // The default constructor. - explicit AddCookieDialog(); - -signals: - // The signals. - void addCookie(const QNetworkCookie &cookie) const; - -private Q_SLOTS: - // The private slots. - void saveCookie(); - void updateExpirationDateTimeState(const int &newState) const; - void updateUi() const; - -private: - // The private variables. - QLineEdit *domainLineEditPointer; - QCheckBox *expirationCheckBoxPointer; - QDateTimeEdit *expirationDateTimeEditPointer; - QCheckBox *httpOnlyCheckBoxPointer; - QLineEdit *nameLineEditPointer; - QLineEdit *pathLineEditPointer; - QPushButton *saveButtonPointer; - QCheckBox *secureCheckBoxPointer; - QLineEdit *valueLineEditPointer; -}; -#endif