mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-03 20:47:37 +03:00
Show Row-Backgroundcolor in a column
Fixes #6553 Allow users to choose to show the entry background color as a column instead of changing the background of the entire row.
This commit is contained in:
parent
1919c23c09
commit
27c5c5d464
6 changed files with 55 additions and 20 deletions
|
@ -313,15 +313,11 @@ void TestEntryModel::testProxyModel()
|
|||
|
||||
modelSource->setGroup(db->rootGroup());
|
||||
|
||||
/**
|
||||
* @author Fonic <https://github.com/fonic>
|
||||
* Update comparison value of modelProxy->columnCount() to account for
|
||||
* additional columns 'Password', 'Notes', 'Expires', 'Created', 'Modified',
|
||||
* 'Accessed', 'Paperclip', 'Attachments', and TOTP
|
||||
*/
|
||||
// Test hiding and showing a column
|
||||
auto columnCount = modelProxy->columnCount();
|
||||
QSignalSpy spyColumnRemove(modelProxy, SIGNAL(columnsAboutToBeRemoved(QModelIndex, int, int)));
|
||||
modelProxy->hideColumn(0, true);
|
||||
QCOMPARE(modelProxy->columnCount(), 14);
|
||||
QCOMPARE(modelProxy->columnCount(), columnCount - 1);
|
||||
QVERIFY(!spyColumnRemove.isEmpty());
|
||||
|
||||
int oldSpyColumnRemoveSize = spyColumnRemove.size();
|
||||
|
@ -335,15 +331,9 @@ void TestEntryModel::testProxyModel()
|
|||
entryList << entry;
|
||||
modelSource->setEntries(entryList);
|
||||
|
||||
/**
|
||||
* @author Fonic <https://github.com/fonic>
|
||||
* Update comparison value of modelProxy->columnCount() to account for
|
||||
* additional columns 'Password', 'Notes', 'Expires', 'Created', 'Modified',
|
||||
* 'Accessed', 'Paperclip', 'Attachments', and TOTP
|
||||
*/
|
||||
QSignalSpy spyColumnInsert(modelProxy, SIGNAL(columnsAboutToBeInserted(QModelIndex, int, int)));
|
||||
modelProxy->hideColumn(0, false);
|
||||
QCOMPARE(modelProxy->columnCount(), 15);
|
||||
QCOMPARE(modelProxy->columnCount(), columnCount);
|
||||
QVERIFY(!spyColumnInsert.isEmpty());
|
||||
|
||||
int oldSpyColumnInsertSize = spyColumnInsert.size();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue