mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-12-25 07:29:33 -05:00
-set TextAlignment of some QTreeWidgetItems,
-changend order of searchResultWidget git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@321 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
204fbd300b
commit
091da19977
@ -47,8 +47,8 @@
|
|||||||
/* indicies for search results item columns SR_ = Search Result */
|
/* indicies for search results item columns SR_ = Search Result */
|
||||||
#define SR_NAME_COL 0
|
#define SR_NAME_COL 0
|
||||||
#define SR_SIZE_COL 1
|
#define SR_SIZE_COL 1
|
||||||
#define SR_HASH_COL 2
|
#define SR_ID_COL 2
|
||||||
#define SR_ID_COL 3
|
#define SR_HASH_COL 3
|
||||||
#define SR_SEARCH_ID_COL 4
|
#define SR_SEARCH_ID_COL 4
|
||||||
|
|
||||||
/* indicies for search summary item columns SS_ = Search Summary */
|
/* indicies for search summary item columns SS_ = Search Summary */
|
||||||
@ -145,7 +145,13 @@ SearchDialog::SearchDialog(QWidget *parent)
|
|||||||
_smheader->resizeSection ( 0, 200 );
|
_smheader->resizeSection ( 0, 200 );
|
||||||
_smheader->resizeSection ( 1, 75 );
|
_smheader->resizeSection ( 1, 75 );
|
||||||
_smheader->resizeSection ( 2, 75 );
|
_smheader->resizeSection ( 2, 75 );
|
||||||
_smheader->resizeSection ( 3, 75 );
|
_smheader->resizeSection ( 3, 240 );
|
||||||
|
|
||||||
|
// set header text aligment
|
||||||
|
QTreeWidgetItem * headerItem = ui.searchResultWidget->headerItem();
|
||||||
|
headerItem->setTextAlignment(1, Qt::AlignRight | Qt::AlignVRight);
|
||||||
|
headerItem->setTextAlignment(2, Qt::AlignHCenter | Qt::AlignVRight);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/* Hide platform specific features */
|
/* Hide platform specific features */
|
||||||
@ -480,12 +486,12 @@ void SearchDialog::resultsToTree(std::string txt, std::list<FileDetail> results)
|
|||||||
if (it->id == "Local")
|
if (it->id == "Local")
|
||||||
{
|
{
|
||||||
/* colour green? */
|
/* colour green? */
|
||||||
item->setBackground(3, QBrush(Qt::green));
|
item->setBackground(2, QBrush(Qt::green));
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
/* colour blue? */
|
/* colour blue? */
|
||||||
item->setBackground(3, QBrush(Qt::blue));
|
item->setBackground(2, QBrush(Qt::blue));
|
||||||
}
|
}
|
||||||
ui.searchResultWidget->addTopLevelItem(item);
|
ui.searchResultWidget->addTopLevelItem(item);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user