/* * Copyright (C) 2011 Felix Geyer * Copyright (C) 2022 KeePassXC Team * * This program 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 2 or (at your option) * version 3 of the License. * * This program 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 this program. If not, see . */ #ifndef KEEPASSX_EDITGROUPWIDGET_H #define KEEPASSX_EDITGROUPWIDGET_H #include #include #include "core/Group.h" #include "gui/EditWidget.h" class CustomData; class EditWidgetIcons; class EditWidgetProperties; namespace Ui { class EditGroupWidgetMain; class EditGroupWidgetBrowser; class EditWidget; } // namespace Ui class IEditGroupPage { public: virtual ~IEditGroupPage() = default; virtual QString name() = 0; virtual QIcon icon() = 0; virtual QWidget* createWidget() = 0; virtual void set(QWidget* widget, Group* tempoaryGroup, QSharedPointer database) = 0; virtual void assign(QWidget* widget) = 0; }; class EditGroupWidget : public EditWidget { Q_OBJECT public: explicit EditGroupWidget(QWidget* parent = nullptr); ~EditGroupWidget() override; void loadGroup(Group* group, bool create, const QSharedPointer& database); void clear(); void addEditPage(IEditGroupPage* page); signals: void editFinished(bool accepted); void messageEditEntry(QString, MessageWidget::MessageType); void messageEditEntryDismiss(); private slots: void apply(); void save(); void cancel(); #ifdef KPXC_FEATURE_BROWSER void initializeBrowserPage(); void setupBrowserModifiedTracking(); void updateBrowserModified(); #endif private: void addTriStateItems(QComboBox* comboBox, bool inheritValue); int indexFromTriState(Group::TriState triState); Group::TriState triStateFromIndex(int index); void setupModifiedTracking(); void addRestrictKeyComboBoxItems(QStringList const& keyList, QString inheritValue); void setRestrictKeyComboBoxIndex(const Group* group); void setRestrictKeyCustomData(CustomData* customData); const QScopedPointer m_mainUi; QPointer m_editGroupWidgetMain; QPointer m_editGroupWidgetIcons; QPointer m_editWidgetProperties; #ifdef KPXC_FEATURE_BROWSER bool m_browserSettingsChanged; const QScopedPointer m_browserUi; QWidget* const m_browserWidget; #endif QScopedPointer m_temporaryGroup; QPointer m_group; QSharedPointer m_db; class ExtraPage; QList m_extraPages; Q_DISABLE_COPY(EditGroupWidget) }; #endif // KEEPASSX_EDITGROUPWIDGET_H