Show target overlay icon only in the active target button.

This commit is contained in:
con
2010-02-23 16:52:03 +01:00
parent c3578f307d
commit 04d90d9563
4 changed files with 60 additions and 34 deletions

View File

@@ -213,6 +213,17 @@ void Target::setIcon(QIcon icon)
emit iconChanged();
}
QIcon Target::overlayIcon() const
{
return m_overlayIcon;
}
void Target::setOverlayIcon(QIcon icon)
{
m_overlayIcon = icon;
emit overlayIconChanged();
}
QString Target::toolTip() const
{
return m_toolTip;