mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-05 21:47:38 +03:00
Always add the default attributes to Entry and don't allow to delete them.
This commit is contained in:
parent
a299dd9715
commit
be934b2fce
2 changed files with 16 additions and 2 deletions
|
@ -22,12 +22,18 @@
|
|||
#include "Group.h"
|
||||
#include "Metadata.h"
|
||||
|
||||
const QStringList Entry::m_defaultAttibutes(QStringList() << "Title" << "URL" << "UserName" << "Password" << "Notes");
|
||||
|
||||
Entry::Entry()
|
||||
{
|
||||
m_group = 0;
|
||||
m_db = 0;
|
||||
|
||||
m_iconNumber = 0; // TODO change?
|
||||
|
||||
Q_FOREACH (const QString& key, m_defaultAttibutes) {
|
||||
addAttribute(key, "");
|
||||
}
|
||||
}
|
||||
|
||||
Entry::~Entry()
|
||||
|
@ -226,14 +232,15 @@ void Entry::addAttribute(const QString& key, const QString& value, bool protect)
|
|||
m_protectedAttributes.insert(key);
|
||||
}
|
||||
|
||||
// TODO add all visible columns
|
||||
if (key == "Title") {
|
||||
if (isDefaultAttributue(key)) {
|
||||
Q_EMIT dataChanged(this);
|
||||
}
|
||||
}
|
||||
|
||||
void Entry::removeAttribute(const QString& key)
|
||||
{
|
||||
Q_ASSERT(!isDefaultAttributue(key));
|
||||
|
||||
m_attributes.remove(key);
|
||||
m_protectedAttributes.remove(key);
|
||||
}
|
||||
|
@ -309,3 +316,8 @@ void Entry::setGroup(Group* group)
|
|||
m_db = group->database();
|
||||
QObject::setParent(group);
|
||||
}
|
||||
|
||||
bool Entry::isDefaultAttributue(const QString& key)
|
||||
{
|
||||
return m_defaultAttibutes.contains(key);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue