RetroShare/retroshare-gui/src/gui/common/GroupSelectionBox.h
thunder2 59ed165c81 Saved group ids instead of group names for the group-based file permissions.
Translated group names in Share Manager.

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@5796 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2012-11-09 00:46:41 +00:00

18 lines
358 B
C++

#include <QListWidget>
class GroupSelectionBox: public QListWidget
{
Q_OBJECT
public:
GroupSelectionBox(QWidget *parent);
void selectedGroupIds(std::list<std::string> &groupIds) const;
void selectedGroupNames(QList<QString> &groupNames) const;
void setSelectedGroupIds(const std::list<std::string> &groupIds);
private slots:
void fillGroups();
};