Add convenience methods to access common attributes.

This commit is contained in:
Felix Geyer 2010-08-18 15:08:17 +02:00
parent 48c498890f
commit 84bc5ef463
2 changed files with 60 additions and 0 deletions

View file

@ -91,6 +91,31 @@ const QHash<QString, QByteArray>& Entry::attachments() const
return m_binaries;
}
QString Entry::title() const
{
return m_attributes.value("Title");
}
QString Entry::url() const
{
return m_attributes.value("URL");
}
QString Entry::username() const
{
return m_attributes.value("UserName");
}
QString Entry::password() const
{
return m_attributes.value("Password");
}
QString Entry::notes() const
{
return m_attributes.value("Notes");
}
void Entry::setUuid(const Uuid& uuid)
{
Q_ASSERT(!uuid.isNull());
@ -164,6 +189,31 @@ void Entry::addAttachment(const QString& key, const QByteArray& value)
m_binaries.insert(key, value);
}
void Entry::setTitle(const QString& title)
{
m_attributes.insert("Title", title);
}
void Entry::setUrl(const QString& url)
{
m_attributes.insert("URL", url);
}
void Entry::setUsername(const QString& username)
{
m_attributes.insert("UserName", username);
}
void Entry::setPassword(const QString& password)
{
m_attributes.insert("Password", password);
}
void Entry::setNotes(const QString& notes)
{
m_attributes.insert("Notes", notes);
}
void Entry::setGroup(Group* group)
{
if (m_group) {