mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-04 04:57:39 +03:00
* Remove individual feature flags in favor of a single `KPXC_MINIMAL` flag that removes advanced features from the build. Basic features are no longer guarded by feature flags. * Basic features: Auto-Type, Yubikey, KeeShare * Advanced features include: Browser (and passkeys), SSH Agent, and Secret Service * Networking, Documentation, and Update Checking remain as feature flags to accommodate various distro requirements. This change also cleans up the main CMakeLists.txt by re-arranging some content and placing macros into a dedicated include file. The minimum CMake version was bumped to 3.16.0 to conform to our minimum Ubuntu support of Focal (20.04). This also allows us to default to C++20, we fall back to C++17 for Qt versions less than 5.15.0 due to lack of support. Lastly this change removes the KEEPASSXC_BUILD_TYPE="PreRelease" which is never used. We only support "Snapshot" and "Release" now.
109 lines
3.1 KiB
C++
109 lines
3.1 KiB
C++
/*
|
|
* Copyright (C) 2011 Felix Geyer <debfx@fobos.de>
|
|
* Copyright (C) 2022 KeePassXC Team <team@keepassxc.org>
|
|
*
|
|
* 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 <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef KEEPASSX_EDITGROUPWIDGET_H
|
|
#define KEEPASSX_EDITGROUPWIDGET_H
|
|
|
|
#include <QComboBox>
|
|
#include <QScrollArea>
|
|
|
|
#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> 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>& 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<Ui::EditGroupWidgetMain> m_mainUi;
|
|
|
|
QPointer<QScrollArea> m_editGroupWidgetMain;
|
|
QPointer<EditWidgetIcons> m_editGroupWidgetIcons;
|
|
QPointer<EditWidgetProperties> m_editWidgetProperties;
|
|
#ifdef KPXC_FEATURE_BROWSER
|
|
bool m_browserSettingsChanged;
|
|
const QScopedPointer<Ui::EditGroupWidgetBrowser> m_browserUi;
|
|
QWidget* const m_browserWidget;
|
|
#endif
|
|
|
|
QScopedPointer<Group> m_temporaryGroup;
|
|
QPointer<Group> m_group;
|
|
QSharedPointer<Database> m_db;
|
|
|
|
class ExtraPage;
|
|
QList<ExtraPage> m_extraPages;
|
|
|
|
Q_DISABLE_COPY(EditGroupWidget)
|
|
};
|
|
|
|
#endif // KEEPASSX_EDITGROUPWIDGET_H
|