mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
123 lines
5.4 KiB
C++
123 lines
5.4 KiB
C++
/*******************************************************************************
|
|
* gui/common/FriendSelectionDialog.cpp *
|
|
* *
|
|
* Copyright (C) 2011, Retroshare Team <retroshare.project@gmail.com> *
|
|
* *
|
|
* This program is free software: you can redistribute it and/or modify *
|
|
* it under the terms of the GNU Affero General Public License as *
|
|
* published by the Free Software Foundation, either version 3 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 Affero General Public License for more details. *
|
|
* *
|
|
* You should have received a copy of the GNU Affero General Public License *
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>. *
|
|
* *
|
|
*******************************************************************************/
|
|
|
|
#include <list>
|
|
|
|
#include <QLayout>
|
|
#include <QDialogButtonBox>
|
|
#include "FriendSelectionDialog.h"
|
|
|
|
std::set<RsPgpId> FriendSelectionDialog::selectFriends_PGP(QWidget *parent,const QString& caption,const QString& header_text,
|
|
FriendSelectionWidget::Modus modus,
|
|
FriendSelectionWidget::ShowTypes show_type,
|
|
const std::set<RsPgpId>& pre_selected_ids)
|
|
{
|
|
std::set<std::string> psids ;
|
|
for(std::set<RsPgpId>::const_iterator it(pre_selected_ids.begin());it!=pre_selected_ids.end();++it)
|
|
psids.insert( (*it).toStdString() ) ;
|
|
|
|
FriendSelectionDialog dialog(parent,header_text,modus,show_type,FriendSelectionWidget::IDTYPE_GPG,psids) ;
|
|
|
|
dialog.setWindowTitle(caption) ;
|
|
|
|
if(QDialog::Rejected == dialog.exec())
|
|
return std::set<RsPgpId>() ;
|
|
|
|
std::set<RsPgpId> sids ;
|
|
dialog.friends_widget->selectedIds<RsPgpId,FriendSelectionWidget::IDTYPE_GPG>(sids,false) ;
|
|
|
|
return sids ;
|
|
}
|
|
std::set<RsPeerId> FriendSelectionDialog::selectFriends_SSL(QWidget *parent,const QString& caption,const QString& header_text,
|
|
FriendSelectionWidget::Modus modus,
|
|
FriendSelectionWidget::ShowTypes show_type,
|
|
const std::set<RsPeerId>& pre_selected_ids)
|
|
{
|
|
std::set<std::string> psids ;
|
|
for(std::set<RsPeerId>::const_iterator it(pre_selected_ids.begin());it!=pre_selected_ids.end();++it)
|
|
psids.insert( (*it).toStdString() ) ;
|
|
|
|
FriendSelectionDialog dialog(parent,header_text,modus,show_type,FriendSelectionWidget::IDTYPE_SSL,psids) ;
|
|
|
|
dialog.setWindowTitle(caption) ;
|
|
|
|
if(QDialog::Rejected == dialog.exec())
|
|
return std::set<RsPeerId>() ;
|
|
|
|
std::set<RsPeerId> sids ;
|
|
dialog.friends_widget->selectedIds<RsPeerId,FriendSelectionWidget::IDTYPE_SSL>(sids,false) ;
|
|
|
|
return sids ;
|
|
}
|
|
std::set<RsGxsId> FriendSelectionDialog::selectFriends_GXS(QWidget *parent,const QString& caption,const QString& header_text,
|
|
FriendSelectionWidget::Modus modus,
|
|
FriendSelectionWidget::ShowTypes show_type,
|
|
const std::set<RsGxsId>& pre_selected_ids)
|
|
{
|
|
std::set<std::string> psids ;
|
|
for(std::set<RsGxsId>::const_iterator it(pre_selected_ids.begin());it!=pre_selected_ids.end();++it)
|
|
psids.insert( (*it).toStdString() ) ;
|
|
|
|
FriendSelectionDialog dialog(parent,header_text,modus,show_type,FriendSelectionWidget::IDTYPE_SSL,psids) ;
|
|
|
|
dialog.setWindowTitle(caption) ;
|
|
|
|
if(QDialog::Rejected == dialog.exec())
|
|
return std::set<RsGxsId>() ;
|
|
|
|
std::set<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::set<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 ;
|
|
}
|
|
|