mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
1042744685
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@7214 b45a01b8-16f6-495d-af2f-9b41ad6348cc
103 lines
3.9 KiB
C++
103 lines
3.9 KiB
C++
#include <list>
|
|
|
|
#include <QLayout>
|
|
#include <QDialogButtonBox>
|
|
#include "FriendSelectionDialog.h"
|
|
|
|
std::list<RsPgpId> FriendSelectionDialog::selectFriends_PGP(QWidget *parent,const QString& caption,const QString& header_text,
|
|
FriendSelectionWidget::Modus modus,
|
|
FriendSelectionWidget::ShowTypes show_type,
|
|
const std::list<RsPgpId>& pre_selected_ids)
|
|
{
|
|
std::list<std::string> psids ;
|
|
for(std::list<RsPgpId>::const_iterator it(pre_selected_ids.begin());it!=pre_selected_ids.end();++it)
|
|
psids.push_back( (*it).toStdString() ) ;
|
|
|
|
FriendSelectionDialog dialog(parent,header_text,modus,show_type,FriendSelectionWidget::IDTYPE_GPG,psids) ;
|
|
|
|
dialog.setWindowTitle(caption) ;
|
|
|
|
if(QDialog::Rejected == dialog.exec())
|
|
return std::list<RsPgpId>() ;
|
|
|
|
std::list<RsPgpId> sids ;
|
|
dialog.friends_widget->selectedIds<RsPgpId,FriendSelectionWidget::IDTYPE_GPG>(sids,false) ;
|
|
|
|
return sids ;
|
|
}
|
|
std::list<RsPeerId> FriendSelectionDialog::selectFriends_SSL(QWidget *parent,const QString& caption,const QString& header_text,
|
|
FriendSelectionWidget::Modus modus,
|
|
FriendSelectionWidget::ShowTypes show_type,
|
|
const std::list<RsPeerId>& pre_selected_ids)
|
|
{
|
|
std::list<std::string> psids ;
|
|
for(std::list<RsPeerId>::const_iterator it(pre_selected_ids.begin());it!=pre_selected_ids.end();++it)
|
|
psids.push_back( (*it).toStdString() ) ;
|
|
|
|
FriendSelectionDialog dialog(parent,header_text,modus,show_type,FriendSelectionWidget::IDTYPE_SSL,psids) ;
|
|
|
|
dialog.setWindowTitle(caption) ;
|
|
|
|
if(QDialog::Rejected == dialog.exec())
|
|
return std::list<RsPeerId>() ;
|
|
|
|
std::list<RsPeerId> sids ;
|
|
dialog.friends_widget->selectedIds<RsPeerId,FriendSelectionWidget::IDTYPE_SSL>(sids,false) ;
|
|
|
|
return sids ;
|
|
}
|
|
std::list<RsGxsId> FriendSelectionDialog::selectFriends_GXS(QWidget *parent,const QString& caption,const QString& header_text,
|
|
FriendSelectionWidget::Modus modus,
|
|
FriendSelectionWidget::ShowTypes show_type,
|
|
const std::list<RsGxsId>& pre_selected_ids)
|
|
{
|
|
std::list<std::string> psids ;
|
|
for(std::list<RsGxsId>::const_iterator it(pre_selected_ids.begin());it!=pre_selected_ids.end();++it)
|
|
psids.push_back( (*it).toStdString() ) ;
|
|
|
|
FriendSelectionDialog dialog(parent,header_text,modus,show_type,FriendSelectionWidget::IDTYPE_SSL,psids) ;
|
|
|
|
dialog.setWindowTitle(caption) ;
|
|
|
|
if(QDialog::Rejected == dialog.exec())
|
|
return std::list<RsGxsId>() ;
|
|
|
|
std::list<RsGxsId> sids ;
|
|
dialog.friends_widget->selectedIds<RsGxsId,FriendSelectionWidget::IDTYPE_GXS>(sids,false) ;
|
|
|
|
return sids ;
|
|
}
|
|
FriendSelectionDialog::FriendSelectionDialog(QWidget *parent,const QString& header_text,
|
|
FriendSelectionWidget::Modus modus,
|
|
FriendSelectionWidget::ShowTypes show_type,
|
|
FriendSelectionWidget::IdType pre_selected_id_type,
|
|
const std::list<std::string>& pre_selected_ids)
|
|
: QDialog(parent)
|
|
{
|
|
friends_widget = new FriendSelectionWidget(this) ;
|
|
|
|
friends_widget->setHeaderText(header_text);
|
|
friends_widget->setModus(modus) ;
|
|
friends_widget->setShowType(show_type) ;
|
|
friends_widget->start() ;
|
|
friends_widget->setSelectedIds(pre_selected_id_type, pre_selected_ids, false);
|
|
|
|
QLayout *l = new QVBoxLayout ;
|
|
setLayout(l) ;
|
|
|
|
QDialogButtonBox *buttonBox = new QDialogButtonBox(QDialogButtonBox::Ok | QDialogButtonBox::Cancel);
|
|
|
|
connect(buttonBox, SIGNAL(accepted()), this, SLOT(accept()));
|
|
connect(buttonBox, SIGNAL(rejected()), this, SLOT(reject()));
|
|
|
|
l->addWidget(friends_widget) ;
|
|
l->addWidget(buttonBox) ;
|
|
l->update() ;
|
|
}
|
|
|
|
FriendSelectionDialog::~FriendSelectionDialog()
|
|
{
|
|
delete friends_widget ;
|
|
}
|
|
|