X-Git-Url: https://gitweb.stoutner.com/?p=PrivacyBrowserPC.git;a=blobdiff_plain;f=src%2Fdialogs%2FAddCookieDialog.h;fp=src%2Fdialogs%2FAddCookieDialog.h;h=f7354ce3c0526c7d9e27e87ca7daa66ec801ff86;hp=0000000000000000000000000000000000000000;hb=9b6cee96126484925bec4f4ab30c2b880df687fe;hpb=8933c941521c591a962034ecf3486c9143bf1f80 diff --git a/src/dialogs/AddCookieDialog.h b/src/dialogs/AddCookieDialog.h new file mode 100644 index 0000000..f7354ce --- /dev/null +++ b/src/dialogs/AddCookieDialog.h @@ -0,0 +1,60 @@ +/* + * 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