Added Folders and Tags Header Buttons, and moved "Total Inbox" and "Total Sent" to the Bottom into a QLabel.

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@3043 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
defnax 2010-05-31 21:27:57 +00:00
parent c23ea03190
commit 647c08c8da
4 changed files with 283 additions and 137 deletions

View file

@ -58,8 +58,6 @@
#define ROW_DRAFTBOX 2
#define ROW_SENTBOX 3
#define ROW_TRASHBOX 4
#define ROW_INBOX_TOTAL 6
#define ROW_SENTBOX_TOTAL 7
#define ACTION_TAGSINDEX_SIZE 3
#define ACTION_TAGSINDEX_TYPE "Type"
@ -2160,14 +2158,12 @@ void MessagesDialog::updateMessageSummaryList()
}
/* Total Inbox */
item = ui.listWidget->item(ROW_INBOX_TOTAL);
textItem = tr("Total Inbox:") + " " + QString::number(inboxCount);
item->setText(textItem);
ui.totalInbox_label->setText(textItem);
/* Total Sent */
item = ui.listWidget->item(ROW_SENTBOX_TOTAL);
textItem = tr("Total Sent:") + " " + QString::number(newSentboxCount);
item->setText(textItem);
ui.totalSentbox_label->setText(textItem);
}
/** clear Filter **/