2013-02-22 16:42:27 -05:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QDialog>
|
|
|
|
#include <gui/common/FriendSelectionWidget.h>
|
|
|
|
|
|
|
|
class FriendSelectionDialog : public QDialog
|
|
|
|
{
|
|
|
|
public:
|
2013-05-29 17:32:02 -04:00
|
|
|
static std::list<std::string> selectFriends(QWidget *parent,const QString& caption,const QString& header_string,
|
|
|
|
FriendSelectionWidget::Modus modus = FriendSelectionWidget::MODUS_MULTI,
|
|
|
|
FriendSelectionWidget::ShowTypes = FriendSelectionWidget::SHOW_GROUP | FriendSelectionWidget::SHOW_SSL,
|
|
|
|
FriendSelectionWidget::IdType pre_selected_id_type = FriendSelectionWidget::IDTYPE_SSL,
|
|
|
|
const std::list<std::string>& pre_selected_ids = std::list<std::string>()) ;
|
2013-02-22 16:42:27 -05:00
|
|
|
private:
|
|
|
|
virtual ~FriendSelectionDialog() ;
|
2013-05-29 17:32:02 -04:00
|
|
|
FriendSelectionDialog(QWidget *parent,const QString& header_string,FriendSelectionWidget::Modus modus,FriendSelectionWidget::ShowTypes show_type,
|
|
|
|
FriendSelectionWidget::IdType pre_selected_id_type,
|
|
|
|
const std::list<std::string>& pre_selected_ids) ;
|
2013-02-22 16:42:27 -05:00
|
|
|
|
|
|
|
FriendSelectionWidget *friends_widget ;
|
|
|
|
};
|
|
|
|
|