Added textcolors for Age Indicator

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@2620 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
defnax 2010-03-24 16:47:34 +00:00
parent 6b7bc7085f
commit 36427a5d15

View File

@ -237,8 +237,25 @@ QString RemoteDirModel::getAgeIndicatorString(const DirDetails &details) const
rsFiles->FileDetails(details.hash, 0, finfo);
if(details.min_age > ageIndicator)
{
return Qt::gray ;
else
}
else if (ageIndicator == IND_LAST_DAY )
{
// color green
return QBrush(QColor(0, 191, 6));
}
else if (ageIndicator == IND_LAST_WEEK )
{
//color yellow
return QBrush(QColor(234, 160, 0));
}
else if (ageIndicator == IND_LAST_MONTH )
{
//color red
return QBrush(QColor(228, 70, 69));
}
else
return Qt::black ;
}