mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
102 lines
3.0 KiB
C
102 lines
3.0 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>
|
||
|
|
||
|
namespace Ui {
|
||
|
class FriendSelectionWidget;
|
||
|
}
|
||
|
|
||
|
class QTreeWidgetItem;
|
||
|
class RSTreeWidgetItemCompareRole;
|
||
|
|
||
|
class FriendSelectionWidget : public QWidget
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
enum IdType
|
||
|
{
|
||
|
IDTYPE_NONE,
|
||
|
IDTYPE_GROUP,
|
||
|
IDTYPE_SSL
|
||
|
};
|
||
|
|
||
|
enum Modus
|
||
|
{
|
||
|
MODUS_SINGLE,
|
||
|
MODUS_MULTI,
|
||
|
MODUS_CHECK
|
||
|
};
|
||
|
|
||
|
public:
|
||
|
explicit FriendSelectionWidget(QWidget *parent = 0);
|
||
|
~FriendSelectionWidget();
|
||
|
|
||
|
void setHeaderText(const QString &text);
|
||
|
void setModus(Modus modus);
|
||
|
void setShowGroups(bool show);
|
||
|
void start();
|
||
|
|
||
|
int selectedItemCount();
|
||
|
QString selectedId(IdType &idType);
|
||
|
void selectedSslIds(std::list<std::string> &sslIds, bool onlyDirectSelected) { selectedIds(IDTYPE_SSL, sslIds, onlyDirectSelected); }
|
||
|
void selectedGroupIds(std::list<std::string> &groupIds) { selectedIds(IDTYPE_GROUP, groupIds, true); }
|
||
|
|
||
|
void setSelectedSslIds(const std::list<std::string> &sslIds, bool add) { setSelectedIds(IDTYPE_SSL, sslIds, add); }
|
||
|
void setSelectedGroupIds(const std::list<std::string> &groupIds, bool add) { setSelectedIds(IDTYPE_GROUP, groupIds, add); }
|
||
|
|
||
|
signals:
|
||
|
void contentChanged();
|
||
|
void customContextMenuRequested(const QPoint &pos);
|
||
|
void doubleClicked(IdType idType, const QString &id);
|
||
|
|
||
|
private slots:
|
||
|
void fillList();
|
||
|
void peerStatusChanged(const QString& peerId, int status);
|
||
|
void filterChanged();
|
||
|
void clearFilter();
|
||
|
void contextMenuRequested(const QPoint &pos);
|
||
|
void itemDoubleClicked(QTreeWidgetItem *item, int column);
|
||
|
void itemChanged(QTreeWidgetItem *item, int column);
|
||
|
|
||
|
private:
|
||
|
void filterItems();
|
||
|
bool filterItem(QTreeWidgetItem *item, const QString &text);
|
||
|
|
||
|
void selectedIds(IdType idType, std::list<std::string> &ids, bool onlyDirectSelected);
|
||
|
void setSelectedIds(IdType idType, const std::list<std::string> &ids, bool add);
|
||
|
|
||
|
bool started;
|
||
|
RSTreeWidgetItemCompareRole *compareRole;
|
||
|
Modus listModus;
|
||
|
bool showGroups;
|
||
|
bool inItemChanged;
|
||
|
|
||
|
Ui::FriendSelectionWidget *ui;
|
||
|
};
|
||
|
|
||
|
#endif // FRIENDSELECTIONWIDGET_H
|