mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-05 13:37:43 +03:00
highlight reference field in Database view
This commit is contained in:
parent
e91a41401c
commit
a03e354504
5 changed files with 52 additions and 3 deletions
|
@ -19,6 +19,7 @@
|
|||
|
||||
#include <QFont>
|
||||
#include <QMimeData>
|
||||
#include <QPalette>
|
||||
|
||||
#include "core/DatabaseIcons.h"
|
||||
#include "core/Entry.h"
|
||||
|
@ -127,8 +128,10 @@ QVariant EntryModel::data(const QModelIndex& index, int role) const
|
|||
}
|
||||
|
||||
Entry* entry = entryFromIndex(index);
|
||||
EntryAttributes* attr = entry->attributes();
|
||||
|
||||
if (role == Qt::DisplayRole) {
|
||||
QString result;
|
||||
switch (index.column()) {
|
||||
case ParentGroup:
|
||||
if (entry->group()) {
|
||||
|
@ -136,11 +139,23 @@ QVariant EntryModel::data(const QModelIndex& index, int role) const
|
|||
}
|
||||
break;
|
||||
case Title:
|
||||
return entry->title();
|
||||
result = entry->resolvePlaceholder(entry->title());
|
||||
if (attr->isReference(EntryAttributes::TitleKey)) {
|
||||
result.prepend(tr("Ref: ","Reference abbreviation"));
|
||||
}
|
||||
return result;
|
||||
case Username:
|
||||
return entry->username();
|
||||
result = entry->resolvePlaceholder(entry->username());
|
||||
if (attr->isReference(EntryAttributes::UserNameKey)) {
|
||||
result.prepend(tr("Ref: ","Reference abbreviation"));
|
||||
}
|
||||
return result;
|
||||
case Url:
|
||||
return entry->url();
|
||||
result = entry->resolvePlaceholder(entry->url());
|
||||
if (attr->isReference(EntryAttributes::URLKey)) {
|
||||
result.prepend(tr("Ref: ","Reference abbreviation"));
|
||||
}
|
||||
return result;
|
||||
}
|
||||
}
|
||||
else if (role == Qt::DecorationRole) {
|
||||
|
@ -166,6 +181,12 @@ QVariant EntryModel::data(const QModelIndex& index, int role) const
|
|||
}
|
||||
return font;
|
||||
}
|
||||
else if (role == Qt::TextColorRole) {
|
||||
if (entry->hasReferences()) {
|
||||
QPalette p;
|
||||
return QVariant(p.color(QPalette::Active, QPalette::Mid));
|
||||
}
|
||||
}
|
||||
|
||||
return QVariant();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue