added for each toggleview correct icons if is hidden/show and set ToolTips .

added for PhotoDialog toggleview function to hide
added some icons for PhotoDialog treewidget
added a new Button in Forums for New Forum Message
again some icon changes

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@679 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
defnax 2008-08-12 18:41:08 +00:00
parent 1ca6f135b3
commit 4db47ef482
19 changed files with 176 additions and 52 deletions

View file

@ -803,11 +803,15 @@ void LinksDialog::toggleWindows( void )
{
newSizeList.push_back(totalSize);
newSizeList.push_back(0);
ui.expandButton->setIcon(QIcon(QString(":/images/edit_add24.png")));
ui.expandButton->setToolTip("Expand");
}
else
{
newSizeList.push_back(totalSize * 3/4);
newSizeList.push_back(totalSize * 1/4);
ui.expandButton->setIcon(QIcon(QString(":/images/edit_remove24.png")));
ui.expandButton->setToolTip("Hide");
}
ui.msgSplitter->setSizes(newSizeList);