MessagesDialog:

- Renamed "Favorite Tags" to "Quick View".
- Added the quick view "Starred" to the list to show all messages signed with a star.

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@4231 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
thunder2 2011-06-04 22:54:03 +00:00
parent 7661f4486d
commit 57ec7b34ce
5 changed files with 204 additions and 126 deletions

View file

@ -54,8 +54,8 @@ private slots:
void messageslistWidgetCostumPopupMenu( QPoint point );
void folderlistWidgetCostumPopupMenu(QPoint);
void changeBox( int newrow );
void changeTag( int newrow );
void changeBox(int newrow);
void changeQuickView(int newrow);
void updateCurrentMessage();
void currentChanged(const QModelIndex&);
void clicked(const QModelIndex&);
@ -123,15 +123,15 @@ private:
void processSettings(bool load);
void setToolbarButtonStyle(Qt::ToolButtonStyle style);
void fillTags();
void fillQuickView();
void closeTab(const std::string &msgId);
bool m_bProcessSettings;
bool m_bInChange;
bool inChange;
int m_nLockUpdate; // use with LockUpdate
enum { LIST_NOTHING, LIST_BOX, LIST_TAG } m_eListMode;
enum { LIST_NOTHING, LIST_BOX, LIST_QUICKVIEW } m_eListMode;
std::string mCurrMsgId;