mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-07-22 22:21:09 -04:00
Add RsTreeWidget Sort Contect Menu
Now Header sort when visible or In context menu is hidden.
This commit is contained in:
parent
36b64696a1
commit
861feb113c
7 changed files with 135 additions and 240 deletions
|
@ -36,13 +36,15 @@ class RSTreeWidget;
|
|||
#define GROUPTREEWIDGET_COLOR_PRIVATEKEY 1
|
||||
#define GROUPTREEWIDGET_COLOR_COUNT 2
|
||||
|
||||
#define GTW_COLUMN_NAME 0
|
||||
#define GTW_COLUMN_UNREAD 1
|
||||
#define GTW_COLUMN_POSTS 2
|
||||
#define GTW_COLUMN_POPULARITY 3
|
||||
#define GTW_COLUMN_LAST_POST 4
|
||||
#define GTW_COLUMN_COUNT 5
|
||||
#define GTW_COLUMN_DATA GTW_COLUMN_NAME
|
||||
#define GTW_COLUMN_NAME 0
|
||||
#define GTW_COLUMN_UNREAD 1
|
||||
#define GTW_COLUMN_POSTS 2
|
||||
#define GTW_COLUMN_POPULARITY 3
|
||||
#define GTW_COLUMN_LAST_POST 4
|
||||
#define GTW_COLUMN_SEARCH_SCORE 5
|
||||
#define GTW_COLUMN_DESCRIPTION 6
|
||||
#define GTW_COLUMN_COUNT 7
|
||||
#define GTW_COLUMN_DATA GTW_COLUMN_NAME
|
||||
|
||||
namespace Ui {
|
||||
class GroupTreeWidget;
|
||||
|
@ -143,23 +145,10 @@ private slots:
|
|||
void sort();
|
||||
|
||||
private:
|
||||
// Initialize the display menu for sorting
|
||||
void initDisplayMenu(QToolButton *toolButton);
|
||||
void calculateScore(QTreeWidgetItem *item, const QString &filterText);
|
||||
void resort(QTreeWidgetItem *categoryItem);
|
||||
void updateColors();
|
||||
|
||||
private:
|
||||
QMenu *displayMenu;
|
||||
QAction *actionSortAscending;
|
||||
QAction *actionSortDescending;
|
||||
QAction *actionSortByName;
|
||||
QAction *actionSortByPopularity;
|
||||
QAction *actionSortByLastPost;
|
||||
QAction *actionSortByPosts;
|
||||
QAction *actionSortByUnread;
|
||||
|
||||
RSTreeWidgetItemCompareRole *compareRole;
|
||||
|
||||
/* Color definitions (for standard see qss.default) */
|
||||
QColor mTextColor[GROUPTREEWIDGET_COLOR_COUNT];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue