mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
Mark local existing files in SearchDialog with red text color.
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@4955 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
9544b61d77
commit
5c75b3933a
@ -57,6 +57,9 @@
|
|||||||
#define SR_HASH_COL 5
|
#define SR_HASH_COL 5
|
||||||
#define SR_SEARCH_ID_COL 6
|
#define SR_SEARCH_ID_COL 6
|
||||||
#define SR_UID_COL 7
|
#define SR_UID_COL 7
|
||||||
|
#define SR_DATA_COL SR_NAME_COL
|
||||||
|
|
||||||
|
#define SR_ROLE_LOCAL Qt::UserRole
|
||||||
|
|
||||||
/* indicies for search summary item columns SS_ = Search Summary */
|
/* indicies for search summary item columns SS_ = Search Summary */
|
||||||
#define SS_TEXT_COL 0
|
#define SS_TEXT_COL 0
|
||||||
@ -354,7 +357,7 @@ void SearchDialog::download()
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (attemptDownloadLocal)
|
if (attemptDownloadLocal)
|
||||||
QMessageBox::information(0, tr("Download Notice"), tr("Skipping Local Files"));
|
QMessageBox::information(this, tr("Download Notice"), tr("Skipping Local Files"));
|
||||||
}
|
}
|
||||||
|
|
||||||
void SearchDialog::downloadDirectory(const QTreeWidgetItem *item, const QString &base)
|
void SearchDialog::downloadDirectory(const QTreeWidgetItem *item, const QString &base)
|
||||||
@ -993,96 +996,68 @@ void SearchDialog::insertFile(const std::string& txt,qulonglong searchId, const
|
|||||||
(*it)->setText(SR_ID_COL,modifiedResult);
|
(*it)->setText(SR_ID_COL,modifiedResult);
|
||||||
QTreeWidgetItem *item = (*it);
|
QTreeWidgetItem *item = (*it);
|
||||||
found = true ;
|
found = true ;
|
||||||
|
|
||||||
|
if (!item->data(SR_DATA_COL, SR_ROLE_LOCAL).toBool()) {
|
||||||
|
QColor foreground;
|
||||||
|
|
||||||
int sources = friendSource + anonymousSource ;
|
int sources = friendSource + anonymousSource ;
|
||||||
if ( sources < 1)
|
if (sources < 1)
|
||||||
{
|
{
|
||||||
for(int i = 0; i < 7; i++)
|
foreground = QColor(0, 0, 19);
|
||||||
{
|
|
||||||
item->setForeground(i,QBrush( QColor(0, 0, 19)));
|
|
||||||
}
|
}
|
||||||
}
|
else if (sources < 2)
|
||||||
else if ( sources < 2)
|
|
||||||
{
|
{
|
||||||
for(int i = 0; i < 7; i++)
|
foreground = QColor(0, 0, 38);
|
||||||
{
|
|
||||||
item->setForeground(i,QBrush( QColor(0, 0, 38)));
|
|
||||||
}
|
}
|
||||||
}
|
else if (sources < 3)
|
||||||
else if ( sources < 3)
|
|
||||||
{
|
{
|
||||||
for(int i = 0; i < 7; i++)
|
foreground = QColor(0, 0, 57);
|
||||||
{
|
|
||||||
item->setForeground(i,QBrush( QColor(0, 0, 57)));
|
|
||||||
}
|
}
|
||||||
}
|
else if (sources < 4)
|
||||||
else if ( sources < 4)
|
|
||||||
{
|
{
|
||||||
for(int i = 0; i < 7; i++)
|
foreground = QColor(0, 0, 76);
|
||||||
{
|
|
||||||
item->setForeground(i,QBrush( QColor(0, 0, 76)));
|
|
||||||
}
|
}
|
||||||
}
|
else if (sources < 5)
|
||||||
else if ( sources < 5)
|
|
||||||
{
|
{
|
||||||
for(int i = 0; i < 7; i++)
|
foreground = QColor(0, 0, 96);
|
||||||
{
|
|
||||||
item->setForeground(i,QBrush( QColor(0, 0, 96)));
|
|
||||||
}
|
}
|
||||||
}
|
else if (sources < 6)
|
||||||
else if ( sources < 6)
|
|
||||||
{
|
{
|
||||||
for(int i = 0; i < 7; i++)
|
foreground = QColor(0, 0, 114);
|
||||||
{
|
|
||||||
item->setForeground(i,QBrush( QColor(0, 0, 114)));
|
|
||||||
}
|
}
|
||||||
}
|
else if (sources < 7)
|
||||||
else if ( sources < 7)
|
|
||||||
{
|
{
|
||||||
for(int i = 0; i < 7; i++)
|
foreground = QColor(0, 0, 133);
|
||||||
{
|
|
||||||
item->setForeground(i,QBrush( QColor(0, 0, 133)));
|
|
||||||
}
|
}
|
||||||
}
|
else if (sources < 8)
|
||||||
else if ( sources < 8)
|
|
||||||
{
|
{
|
||||||
for(int i = 0; i < 7; i++)
|
foreground = QColor(0, 0, 152);
|
||||||
{
|
|
||||||
item->setForeground(i,QBrush( QColor(0, 0, 152)));
|
|
||||||
}
|
}
|
||||||
}
|
else if (sources < 9)
|
||||||
else if ( sources < 9)
|
|
||||||
{
|
{
|
||||||
for(int i = 0; i < 7; i++)
|
foreground = QColor(0, 0, 171);
|
||||||
{
|
|
||||||
item->setForeground(i,QBrush( QColor(0, 0, 171)));
|
|
||||||
}
|
}
|
||||||
}
|
else if (sources < 10)
|
||||||
else if ( sources < 10)
|
|
||||||
{
|
{
|
||||||
for(int i = 0; i < 7; i++)
|
foreground = QColor(0, 0, 190);
|
||||||
{
|
|
||||||
item->setForeground(i,QBrush( QColor(0, 0, 190)));
|
|
||||||
}
|
}
|
||||||
}
|
else if (sources < 11)
|
||||||
else if ( sources < 11)
|
|
||||||
{
|
{
|
||||||
for(int i = 0; i < 7; i++)
|
foreground = QColor(0, 0, 209);
|
||||||
{
|
|
||||||
item->setForeground(i,QBrush( QColor(0, 0, 209)));
|
|
||||||
}
|
}
|
||||||
}
|
else if (sources < 12)
|
||||||
else if ( sources < 12)
|
|
||||||
{
|
{
|
||||||
for(int i = 0; i < 7; i++)
|
foreground = QColor(0, 0, 228);
|
||||||
{
|
|
||||||
item->setForeground(i,QBrush( QColor(0, 0, 228)));
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
for(int i = 0; i < 7; i++)
|
foreground = QColor(0, 0, 228);
|
||||||
|
}
|
||||||
|
|
||||||
|
QBrush brush(foreground);
|
||||||
|
for (int i = 0; i < item->columnCount(); i++)
|
||||||
{
|
{
|
||||||
item->setForeground(i,QBrush( QColor(0, 0, 228)));
|
item->setForeground(i, brush);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
break ;
|
break ;
|
||||||
@ -1124,13 +1099,30 @@ void SearchDialog::insertFile(const std::string& txt,qulonglong searchId, const
|
|||||||
item->setTextAlignment( SR_ID_COL, Qt::AlignRight );
|
item->setTextAlignment( SR_ID_COL, Qt::AlignRight );
|
||||||
item->setText(SR_SEARCH_ID_COL, sid_hexa);
|
item->setText(SR_SEARCH_ID_COL, sid_hexa);
|
||||||
|
|
||||||
|
QColor foreground;
|
||||||
|
bool setForeground = false;
|
||||||
|
|
||||||
|
FileInfo fi;
|
||||||
|
if (rsFiles->FileDetails(file.hash, RS_FILE_HINTS_EXTRA | RS_FILE_HINTS_LOCAL | RS_FILE_HINTS_BROWSABLE | RS_FILE_HINTS_NETWORK_WIDE | RS_FILE_HINTS_SPEC_ONLY, fi)) {
|
||||||
|
item->setData(SR_DATA_COL, SR_ROLE_LOCAL, true);
|
||||||
|
foreground = Qt::red;
|
||||||
|
setForeground = true;
|
||||||
|
} else {
|
||||||
|
item->setData(SR_DATA_COL, SR_ROLE_LOCAL, false);
|
||||||
|
|
||||||
sources = item->text(SR_ID_COL).toInt();
|
sources = item->text(SR_ID_COL).toInt();
|
||||||
if ( sources == 1)
|
if (sources == 1)
|
||||||
{
|
{
|
||||||
for(int i = 0; i < 7; i++)
|
foreground = QColor(0, 0, 0);
|
||||||
|
setForeground = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (setForeground) {
|
||||||
|
QBrush brush(foreground);
|
||||||
|
for (int i = 0; i < item->columnCount(); i++)
|
||||||
{
|
{
|
||||||
item->setForeground(i,QBrush( QColor(0, 0, 0)));
|
item->setForeground(i, brush);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user