mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-01-10 15:09:42 -05:00
180 lines
5.3 KiB
C++
180 lines
5.3 KiB
C++
/****************************************************************
|
|
*
|
|
* RetroShare is distributed under the following license:
|
|
*
|
|
* Copyright (C) 2012, 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 FRIENDSELECTIONWIDGET_H
|
|
#define FRIENDSELECTIONWIDGET_H
|
|
|
|
#include <QWidget>
|
|
#include <QDialog>
|
|
|
|
#include <gui/gxs/RsGxsUpdateBroadcastPage.h>
|
|
#include "util/TokenQueue.h"
|
|
|
|
namespace Ui {
|
|
class FriendSelectionWidget;
|
|
}
|
|
|
|
class QTreeWidgetItem;
|
|
class RSTreeWidgetItemCompareRole;
|
|
|
|
class FriendSelectionWidget : public RsGxsUpdateBroadcastPage, public TokenResponse
|
|
{
|
|
Q_OBJECT
|
|
|
|
Q_PROPERTY(QColor textColorOnline READ textColorOnline WRITE setTextColorOnline)
|
|
|
|
public:
|
|
enum IdType
|
|
{
|
|
IDTYPE_NONE,
|
|
IDTYPE_GROUP,
|
|
IDTYPE_SSL,
|
|
IDTYPE_GPG,
|
|
IDTYPE_GXS
|
|
};
|
|
|
|
enum Modus
|
|
{
|
|
MODUS_SINGLE,
|
|
MODUS_MULTI,
|
|
MODUS_CHECK
|
|
};
|
|
|
|
enum ShowType {
|
|
SHOW_NONE = 0,
|
|
SHOW_GROUP = 1,
|
|
SHOW_GPG = 2,
|
|
SHOW_SSL = 4,
|
|
SHOW_NON_FRIEND_GPG = 8,
|
|
SHOW_GXS =16,
|
|
SHOW_CONTACTS =32
|
|
};
|
|
|
|
Q_DECLARE_FLAGS(ShowTypes, ShowType)
|
|
|
|
public:
|
|
explicit FriendSelectionWidget(QWidget *parent = 0);
|
|
~FriendSelectionWidget();
|
|
|
|
void setHeaderText(const QString &text);
|
|
void setModus(Modus modus);
|
|
void setShowType(ShowTypes types);
|
|
int addColumn(const QString &title);
|
|
void start();
|
|
|
|
bool isSortByState();
|
|
|
|
int selectedItemCount();
|
|
std::string selectedId(IdType &idType);
|
|
|
|
template<class ID_CLASS,FriendSelectionWidget::IdType TYPE> void selectedIds(std::set<ID_CLASS>& ids, bool onlyDirectSelected)
|
|
{
|
|
std::set<std::string> tmpids ;
|
|
selectedIds(TYPE, tmpids, onlyDirectSelected);
|
|
ids.clear() ;
|
|
for(std::set<std::string>::const_iterator it(tmpids.begin());it!=tmpids.end();++it)
|
|
ids.insert(ID_CLASS(*it)) ;
|
|
}
|
|
template<class ID_CLASS,FriendSelectionWidget::IdType TYPE> void setSelectedIds(const std::set<ID_CLASS>& ids, bool add)
|
|
{
|
|
std::set<std::string> tmpids ;
|
|
for(typename std::set<ID_CLASS>::const_iterator it(ids.begin());it!=ids.end();++it)
|
|
tmpids.insert((*it).toStdString()) ;
|
|
setSelectedIds(TYPE, tmpids, add);
|
|
}
|
|
|
|
void itemsFromId(IdType idType, const std::string &id, QList<QTreeWidgetItem*> &items);
|
|
void items(QList<QTreeWidgetItem*> &items, IdType = IDTYPE_NONE);
|
|
|
|
IdType idTypeFromItem(QTreeWidgetItem *item);
|
|
std::string idFromItem(QTreeWidgetItem *item);
|
|
|
|
QColor textColorOnline() const { return mTextColorOnline; }
|
|
|
|
void setTextColorOnline(QColor color) { mTextColorOnline = color; }
|
|
|
|
// Add QAction to context menu (action won't be deleted)
|
|
void addContextMenuAction(QAction *action);
|
|
|
|
protected:
|
|
void changeEvent(QEvent *e);
|
|
|
|
virtual void loadRequest(const TokenQueue *queue,const TokenRequest& req);
|
|
virtual void updateDisplay(bool complete);
|
|
|
|
signals:
|
|
void itemAdded(int idType, const QString &id, QTreeWidgetItem *item);
|
|
void contentChanged();
|
|
void doubleClicked(int idType, const QString &id);
|
|
void itemChanged(int idType, const QString &id, QTreeWidgetItem *item, int column);
|
|
void itemSelectionChanged();
|
|
|
|
public slots:
|
|
void sortByState(bool sort);
|
|
|
|
private slots:
|
|
void groupsChanged(int type);
|
|
void peerStatusChanged(const QString& peerId, int status);
|
|
void filterItems(const QString &text);
|
|
void contextMenuRequested(const QPoint &pos);
|
|
void itemDoubleClicked(QTreeWidgetItem *item, int column);
|
|
void itemChanged(QTreeWidgetItem *item, int column);
|
|
void selectAll() ;
|
|
void deselectAll() ;
|
|
|
|
private:
|
|
void fillList();
|
|
void secured_fillList();
|
|
bool filterItem(QTreeWidgetItem *item, const QString &text);
|
|
|
|
void selectedIds(IdType idType, std::set<std::string> &ids, bool onlyDirectSelected);
|
|
void setSelectedIds(IdType idType, const std::set<std::string> &ids, bool add);
|
|
|
|
void requestGXSIdList() ;
|
|
|
|
private:
|
|
bool mStarted;
|
|
RSTreeWidgetItemCompareRole *mCompareRole;
|
|
Modus mListModus;
|
|
ShowTypes mShowTypes;
|
|
bool mInGroupItemChanged;
|
|
bool mInGpgItemChanged;
|
|
bool mInSslItemChanged;
|
|
bool mInFillList;
|
|
QAction *mActionSortByState;
|
|
|
|
/* Color definitions (for standard see qss.default) */
|
|
QColor mTextColorOnline;
|
|
|
|
Ui::FriendSelectionWidget *ui;
|
|
|
|
friend class FriendSelectionDialog ;
|
|
|
|
std::vector<RsGxsGroupId> gxsIds ;
|
|
TokenQueue *mIdQueue ;
|
|
QList<QAction*> mContextMenuActions;
|
|
};
|
|
|
|
Q_DECLARE_OPERATORS_FOR_FLAGS(FriendSelectionWidget::ShowTypes)
|
|
|
|
#endif // FRIENDSELECTIONWIDGET_H
|