X-Git-Url: https://gitweb.stoutner.com/?p=PrivacyBrowserPC.git;a=blobdiff_plain;f=src%2Fdialogs%2FEditFolderDialog.h;fp=src%2Fdialogs%2FEditFolderDialog.h;h=ac203d8c07cb81242a8e1064bffd99c1894fbd04;hp=0000000000000000000000000000000000000000;hb=29dbafaca706ea6a34cd881060ebf680378f39b4;hpb=3331f3d1a5d8924a67bcac2a2c842e15a421fea2 diff --git a/src/dialogs/EditFolderDialog.h b/src/dialogs/EditFolderDialog.h new file mode 100644 index 0000000..ac203d8 --- /dev/null +++ b/src/dialogs/EditFolderDialog.h @@ -0,0 +1,64 @@ +/* + * Copyright 2023 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 EDITFOLDERDIALOG_H +#define EDITFOLDERDIALOG_H + +// Application headers. +#include "helpers/FolderHelper.h" +#include "structs/BookmarkStruct.h" + +// Qt toolkit headers. +#include +#include + +class EditFolderDialog : public QDialog +{ + // Include the Q_OBJECT macro. + Q_OBJECT + +public: + // The primary constructor. + explicit EditFolderDialog(const int databaseId, QIcon ¤tWebsiteFavoriteIcon); + +signals: + // The signals. + void folderSaved() const; + +private Q_SLOTS: + // The private slots. + void browse(); + void save(); + void updateUi(); + +private: + // The private variables. + FolderHelper *folderHelperPointer; + + // The private widgets. + BookmarkStruct *bookmarkStructPointer; + QRadioButton *currentFolderIconRadioButtonPointer; + QRadioButton *currentWebsiteFavoriteIconRadioButtonPointer; + QRadioButton *customFolderIconRadioButtonPointer; + int folderDatabaseId; + QLineEdit *folderNameLineEditPointer; + QTreeWidget *parentFolderTreeWidgetPointer; + QPushButton *saveButtonPointer; +}; +#endif