mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
59ed165c81
Translated group names in Share Manager. git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@5796 b45a01b8-16f6-495d-af2f-9b41ad6348cc
18 lines
358 B
C++
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();
|
|
};
|