mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-03 04:27:39 +03:00
Refactor Database Settings (#9485)
Includes following changes: * Encryption Settings now has a similar key with the new database wizard for switching between Advanced and Simple Settings * The extra UI layer DatabaseSettingsDialog.ui has been removed. DatabaseSettingsDialog class now inherits EditWidget instead of DialogyWidget (just like Application Settings). * Extra classes for separate page settings (DatabaseSettingsPageFdoSecrets, DatabaseSettingsPageKeeShare) have been removed. Instead the widgets are used directly in DatabaseSettingsDialog. Same could be done later to Application --------- Co-authored-by: Jonathan White <support@dmapps.us>
This commit is contained in:
parent
88b76244cf
commit
fbdd97b1be
36 changed files with 152 additions and 391 deletions
|
@ -54,6 +54,7 @@
|
|||
#include "gui/databasekey/KeyFileEditWidget.h"
|
||||
#include "gui/databasekey/PasswordEditWidget.h"
|
||||
#include "gui/dbsettings/DatabaseSettingsDialog.h"
|
||||
#include "gui/dbsettings/DatabaseSettingsWidgetEncryption.h"
|
||||
#include "gui/entry/EditEntryWidget.h"
|
||||
#include "gui/entry/EntryView.h"
|
||||
#include "gui/group/EditGroupWidget.h"
|
||||
|
@ -1604,7 +1605,7 @@ void TestGui::testDatabaseSettings()
|
|||
int autosaveDelayTestValue = 2;
|
||||
|
||||
dbSettingsCategoryList->setCurrentCategory(1); // go into security category
|
||||
auto securityTabWidget = dbSettingsStackedWidget->findChild<QTabWidget*>();
|
||||
auto securityTabWidget = dbSettingsStackedWidget->findChild<QTabWidget*>("securityTabWidget");
|
||||
QCOMPARE(securityTabWidget->currentIndex(), 0);
|
||||
|
||||
// Interact with the password edit option
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue