mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-01-10 06:59:42 -05:00
21eed4c956
- Fixed size of display button in FriendsDialog - Updated english translation git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@6645 b45a01b8-16f6-495d-af2f-9b41ad6348cc
144 lines
4.3 KiB
C++
144 lines
4.3 KiB
C++
/****************************************************************
|
|
* This file is distributed under the following license:
|
|
*
|
|
* Copyright (c) 2010, RetroShare Team
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation; either version 2
|
|
* of the License, or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
* Boston, MA 02110-1301, USA.
|
|
****************************************************************/
|
|
|
|
#ifndef GROUPTREEWIDGET_H
|
|
#define GROUPTREEWIDGET_H
|
|
|
|
#include <QWidget>
|
|
#include <QIcon>
|
|
#include <QTreeWidgetItem>
|
|
#include <QDateTime>
|
|
|
|
class QToolButton;
|
|
class RshareSettings;
|
|
class RSTreeWidgetItemCompareRole;
|
|
class RSTreeWidget;
|
|
|
|
#define GROUPTREEWIDGET_COLOR_STANDARD -1
|
|
#define GROUPTREEWIDGET_COLOR_CATEGORY 0
|
|
#define GROUPTREEWIDGET_COLOR_PRIVATEKEY 1
|
|
#define GROUPTREEWIDGET_COLOR_COUNT 2
|
|
|
|
namespace Ui {
|
|
class GroupTreeWidget;
|
|
}
|
|
|
|
class GroupItemInfo
|
|
{
|
|
public:
|
|
GroupItemInfo()
|
|
{
|
|
popularity = 0;
|
|
privatekey = false;
|
|
subscribeFlags = 0;
|
|
}
|
|
|
|
public:
|
|
QString id;
|
|
QString name;
|
|
QString description;
|
|
int popularity;
|
|
QDateTime lastpost;
|
|
QIcon icon;
|
|
bool privatekey;
|
|
int subscribeFlags;
|
|
};
|
|
|
|
class GroupTreeWidget : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
Q_PROPERTY(QColor textColorCategory READ textColorCategory WRITE setTextColorCategory)
|
|
Q_PROPERTY(QColor textColorPrivateKey READ textColorPrivateKey WRITE setTextColorPrivateKey)
|
|
|
|
public:
|
|
GroupTreeWidget(QWidget *parent = 0);
|
|
~GroupTreeWidget();
|
|
|
|
// Add a widget to the tool area
|
|
void addToolButton(QToolButton *toolButton);
|
|
|
|
// Load and save settings (group must be startet from the caller)
|
|
void processSettings(RshareSettings *settings, bool load);
|
|
|
|
// Add a new category item
|
|
QTreeWidgetItem *addCategoryItem(const QString &name, const QIcon &icon, bool expand);
|
|
// Get id of item
|
|
QString itemId(QTreeWidgetItem *item);
|
|
// Fill items of a group
|
|
void fillGroupItems(QTreeWidgetItem *categoryItem, const QList<GroupItemInfo> &itemList);
|
|
// Set the unread count of an item
|
|
void setUnreadCount(QTreeWidgetItem *item, int unreadCount);
|
|
|
|
QTreeWidgetItem *getItemFromId(const QString &id);
|
|
QTreeWidgetItem *activateId(const QString &id, bool focus);
|
|
|
|
RSTreeWidget *treeWidget();
|
|
|
|
QColor textColorCategory() const { return mTextColor[GROUPTREEWIDGET_COLOR_CATEGORY]; }
|
|
QColor textColorPrivateKey() const { return mTextColor[GROUPTREEWIDGET_COLOR_PRIVATEKEY]; }
|
|
|
|
void setTextColorCategory(QColor color) { mTextColor[GROUPTREEWIDGET_COLOR_CATEGORY] = color; }
|
|
void setTextColorPrivateKey(QColor color) { mTextColor[GROUPTREEWIDGET_COLOR_PRIVATEKEY] = color; }
|
|
|
|
int subscribeFlags(const QString &id);
|
|
|
|
signals:
|
|
void treeCustomContextMenuRequested(const QPoint &pos);
|
|
void treeCurrentItemChanged(const QString &id);
|
|
void treeItemActivated(const QString &id);
|
|
|
|
protected:
|
|
void changeEvent(QEvent *e);
|
|
|
|
private slots:
|
|
void customContextMenuRequested(const QPoint &pos);
|
|
void currentItemChanged(QTreeWidgetItem *current, QTreeWidgetItem *previous);
|
|
void itemActivated(QTreeWidgetItem *item, int column);
|
|
void filterChanged();
|
|
|
|
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;
|
|
|
|
RSTreeWidgetItemCompareRole *compareRole;
|
|
|
|
/* Color definitions (for standard see qss.default) */
|
|
QColor mTextColor[GROUPTREEWIDGET_COLOR_COUNT];
|
|
|
|
Ui::GroupTreeWidget *ui;
|
|
};
|
|
|
|
#endif // GROUPTREEWIDGET_H
|