blob: 3f88ae2a179ba17cb969139548f4afe0088fe604 [file] [log] [blame]
/***************************************************************************
* Copyright (C) 2015-2017 by Savoir-faire Linux *
* Author: Anthony LĂ©onard <anthony.leonard@savoirfairelinux.com> *
* Author: Olivier Soldano <olivier.soldano@savoirfairelinux.com> *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU 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 General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
**************************************************************************/
#include "contactrequestwidget.h"
#include "ui_contactrequestwidget.h"
#include "person.h"
#include "pendingcontactrequestmodel.h"
#include "itemdataroles.h"
#include "globalinstances.h"
#include "pixmapmanipulatordefault.h"
ContactRequestWidget::ContactRequestWidget(QWidget *parent) :
QWidget(parent),
ui(new Ui::ContactRequestWidget)
{
ui->setupUi(this);
}
ContactRequestWidget::~ContactRequestWidget()
{
delete ui;
}
void
ContactRequestWidget::setCurrentContactRequest(const QModelIndex &current)
{
if (current.isValid()) {
auto bestId = current.data().value<QString>();
cr_ = current.data(static_cast<int>(Ring::Role::Object)).value<ContactRequest*>();
auto formattedName = current.model()->index(current.row(), PendingContactRequestModel::Columns::FORMATTED_NAME).data().value<QString>();
ui->nameLabel->setText(formattedName);
ui->bestIdLabel->setText(bestId);
auto photo = GlobalInstances::pixmapManipulator().contactPhoto(cr_->peer(), QSize(96, 96), false);
if(photo.isValid())
ui->pictureLabel->setPixmap(QPixmap::fromImage(photo.value<QImage>()));
} else {
cr_ = nullptr;
}
}
void
ContactRequestWidget::on_acceptCRButton_clicked()
{
if (cr_ != nullptr) {
cr_->accept();
}
setCurrentContactRequest(QModelIndex());
emit choiceMade();
}
void ContactRequestWidget::on_discardCRButton_clicked()
{
if (cr_ != nullptr) {
cr_->discard();
}
setCurrentContactRequest(QModelIndex());
emit choiceMade();
}
void ContactRequestWidget::on_blockCRButton_clicked()
{
if (cr_ != nullptr) {
cr_->block();
}
setCurrentContactRequest(QModelIndex());
emit choiceMade();
}