19 #include "quicklistentry.h"
21 QuickListEntry::QuickListEntry()
25 QString QuickListEntry::actionId()
const
30 void QuickListEntry::setActionId(
const QString &actionId)
32 m_actionId = actionId;
35 QString QuickListEntry::text()
const
40 void QuickListEntry::setText(
const QString &text)
45 QString QuickListEntry::icon()
const
50 void QuickListEntry::setIcon(
const QString &icon)
55 bool QuickListEntry::clickable()
const
57 return !m_actionId.isEmpty();
60 bool QuickListEntry::operator==(
const QuickListEntry &other)
62 return !other.actionId().isEmpty() && other.actionId() == m_actionId;