2019-10-20 19:39:11 +00:00
|
|
|
/*
|
|
|
|
* Squawk messenger.
|
|
|
|
* Copyright (C) 2019 Yury Gubich <blue@macaw.me>
|
|
|
|
*
|
|
|
|
* 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 "vcard.h"
|
|
|
|
#include "ui_vcard.h"
|
2020-04-03 22:28:15 +00:00
|
|
|
#include "shared/icons.h"
|
2019-10-23 14:49:56 +00:00
|
|
|
#include <QDebug>
|
|
|
|
|
2019-11-04 15:22:39 +00:00
|
|
|
#include <algorithm>
|
|
|
|
|
2019-10-23 14:49:56 +00:00
|
|
|
const std::set<QString> VCard::supportedTypes = {"image/jpeg", "image/png"};
|
|
|
|
|
2019-10-22 15:13:56 +00:00
|
|
|
VCard::VCard(const QString& jid, bool edit, QWidget* parent):
|
2019-10-20 19:39:11 +00:00
|
|
|
QWidget(parent),
|
2019-10-21 15:02:41 +00:00
|
|
|
m_ui(new Ui::VCard()),
|
2019-10-23 14:49:56 +00:00
|
|
|
avatarButtonMargins(),
|
|
|
|
avatarMenu(nullptr),
|
|
|
|
editable(edit),
|
|
|
|
currentAvatarType(Shared::Avatar::empty),
|
2019-10-31 14:01:48 +00:00
|
|
|
currentAvatarPath(""),
|
|
|
|
progress(new Progress(100)),
|
|
|
|
progressLabel(new QLabel()),
|
2019-11-02 20:50:25 +00:00
|
|
|
overlay(new QWidget()),
|
|
|
|
contextMenu(new QMenu()),
|
|
|
|
emails(edit),
|
2019-11-06 15:14:49 +00:00
|
|
|
phones(edit),
|
|
|
|
roleDelegate(new ComboboxDelegate()),
|
|
|
|
phoneTypeDelegate(new ComboboxDelegate())
|
2019-10-20 19:39:11 +00:00
|
|
|
{
|
|
|
|
m_ui->setupUi(this);
|
2019-10-22 15:13:56 +00:00
|
|
|
m_ui->jabberID->setText(jid);
|
|
|
|
m_ui->jabberID->setReadOnly(true);
|
2019-10-23 14:49:56 +00:00
|
|
|
|
|
|
|
QAction* setAvatar = m_ui->actionSetAvatar;
|
|
|
|
QAction* clearAvatar = m_ui->actionClearAvatar;
|
|
|
|
|
|
|
|
connect(setAvatar, &QAction::triggered, this, &VCard::onSetAvatar);
|
|
|
|
connect(clearAvatar, &QAction::triggered, this, &VCard::onClearAvatar);
|
|
|
|
|
|
|
|
setAvatar->setEnabled(true);
|
|
|
|
clearAvatar->setEnabled(false);
|
2019-10-21 15:02:41 +00:00
|
|
|
|
2019-11-07 11:17:46 +00:00
|
|
|
roleDelegate->addEntry(QCoreApplication::translate("Global", Shared::VCard::Email::roleNames[0].toStdString().c_str()));
|
|
|
|
roleDelegate->addEntry(QCoreApplication::translate("Global", Shared::VCard::Email::roleNames[1].toStdString().c_str()));
|
|
|
|
roleDelegate->addEntry(QCoreApplication::translate("Global", Shared::VCard::Email::roleNames[2].toStdString().c_str()));
|
|
|
|
|
|
|
|
phoneTypeDelegate->addEntry(QCoreApplication::translate("Global", Shared::VCard::Phone::typeNames[0].toStdString().c_str()));
|
|
|
|
phoneTypeDelegate->addEntry(QCoreApplication::translate("Global", Shared::VCard::Phone::typeNames[1].toStdString().c_str()));
|
|
|
|
phoneTypeDelegate->addEntry(QCoreApplication::translate("Global", Shared::VCard::Phone::typeNames[2].toStdString().c_str()));
|
|
|
|
phoneTypeDelegate->addEntry(QCoreApplication::translate("Global", Shared::VCard::Phone::typeNames[3].toStdString().c_str()));
|
|
|
|
phoneTypeDelegate->addEntry(QCoreApplication::translate("Global", Shared::VCard::Phone::typeNames[4].toStdString().c_str()));
|
|
|
|
phoneTypeDelegate->addEntry(QCoreApplication::translate("Global", Shared::VCard::Phone::typeNames[5].toStdString().c_str()));
|
|
|
|
phoneTypeDelegate->addEntry(QCoreApplication::translate("Global", Shared::VCard::Phone::typeNames[6].toStdString().c_str()));
|
2019-11-06 15:14:49 +00:00
|
|
|
|
2019-11-02 20:50:25 +00:00
|
|
|
m_ui->emailsView->setContextMenuPolicy(Qt::CustomContextMenu);
|
|
|
|
m_ui->emailsView->setModel(&emails);
|
|
|
|
m_ui->emailsView->setItemDelegateForColumn(1, roleDelegate);
|
2019-11-06 15:14:49 +00:00
|
|
|
m_ui->emailsView->setColumnWidth(2, 25);
|
2019-11-02 20:50:25 +00:00
|
|
|
m_ui->emailsView->horizontalHeader()->setStretchLastSection(false);
|
|
|
|
m_ui->emailsView->horizontalHeader()->setSectionResizeMode(0, QHeaderView::Stretch);
|
|
|
|
|
2019-11-06 15:14:49 +00:00
|
|
|
m_ui->phonesView->setContextMenuPolicy(Qt::CustomContextMenu);
|
|
|
|
m_ui->phonesView->setModel(&phones);
|
|
|
|
m_ui->phonesView->setItemDelegateForColumn(1, roleDelegate);
|
|
|
|
m_ui->phonesView->setItemDelegateForColumn(2, phoneTypeDelegate);
|
|
|
|
m_ui->phonesView->setColumnWidth(3, 25);
|
|
|
|
m_ui->phonesView->horizontalHeader()->setStretchLastSection(false);
|
|
|
|
m_ui->phonesView->horizontalHeader()->setSectionResizeMode(0, QHeaderView::Stretch);
|
|
|
|
|
|
|
|
connect(m_ui->phonesView, &QWidget::customContextMenuRequested, this, &VCard::onContextMenu);
|
2019-11-02 20:50:25 +00:00
|
|
|
connect(m_ui->emailsView, &QWidget::customContextMenuRequested, this, &VCard::onContextMenu);
|
|
|
|
|
2019-10-21 15:02:41 +00:00
|
|
|
if (edit) {
|
2019-10-23 14:49:56 +00:00
|
|
|
avatarMenu = new QMenu();
|
|
|
|
m_ui->avatarButton->setMenu(avatarMenu);
|
|
|
|
avatarMenu->addAction(setAvatar);
|
|
|
|
avatarMenu->addAction(clearAvatar);
|
2019-11-04 15:22:39 +00:00
|
|
|
m_ui->title->setText(tr("Account %1 card").arg(jid));
|
2019-10-21 15:02:41 +00:00
|
|
|
} else {
|
|
|
|
m_ui->buttonBox->hide();
|
2019-10-25 13:38:48 +00:00
|
|
|
m_ui->fullName->setReadOnly(true);
|
2019-10-21 15:02:41 +00:00
|
|
|
m_ui->firstName->setReadOnly(true);
|
|
|
|
m_ui->middleName->setReadOnly(true);
|
|
|
|
m_ui->lastName->setReadOnly(true);
|
|
|
|
m_ui->nickName->setReadOnly(true);
|
|
|
|
m_ui->birthday->setReadOnly(true);
|
|
|
|
m_ui->organizationName->setReadOnly(true);
|
|
|
|
m_ui->organizationDepartment->setReadOnly(true);
|
|
|
|
m_ui->organizationTitle->setReadOnly(true);
|
|
|
|
m_ui->organizationRole->setReadOnly(true);
|
|
|
|
m_ui->description->setReadOnly(true);
|
2019-10-22 15:13:56 +00:00
|
|
|
m_ui->url->setReadOnly(true);
|
2019-10-31 14:01:48 +00:00
|
|
|
m_ui->title->setText(tr("Contact %1 card").arg(jid));
|
2019-10-21 15:02:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
connect(m_ui->buttonBox, &QDialogButtonBox::accepted, this, &VCard::onButtonBoxAccepted);
|
2019-10-24 09:42:38 +00:00
|
|
|
connect(m_ui->buttonBox, &QDialogButtonBox::rejected, this, &VCard::close);
|
2019-10-22 15:13:56 +00:00
|
|
|
|
2019-10-23 14:49:56 +00:00
|
|
|
avatarButtonMargins = m_ui->avatarButton->size();
|
|
|
|
|
|
|
|
int height = m_ui->personalForm->minimumSize().height() - avatarButtonMargins.height();
|
|
|
|
m_ui->avatarButton->setIconSize(QSize(height, height));
|
2019-10-31 14:01:48 +00:00
|
|
|
|
|
|
|
QGridLayout* gr = static_cast<QGridLayout*>(layout());
|
|
|
|
gr->addWidget(overlay, 0, 0, 4, 1);
|
|
|
|
QVBoxLayout* nl = new QVBoxLayout();
|
|
|
|
QGraphicsOpacityEffect* opacity = new QGraphicsOpacityEffect();
|
|
|
|
opacity->setOpacity(0.8);
|
|
|
|
overlay->setLayout(nl);
|
|
|
|
overlay->setBackgroundRole(QPalette::Base);
|
|
|
|
overlay->setAutoFillBackground(true);
|
|
|
|
overlay->setGraphicsEffect(opacity);
|
|
|
|
progressLabel->setAlignment(Qt::AlignCenter);
|
2020-04-14 16:30:33 +00:00
|
|
|
QFont pf = progressLabel->font();
|
|
|
|
pf.setBold(true);
|
|
|
|
pf.setPointSize(26);
|
|
|
|
progressLabel->setFont(pf);
|
|
|
|
progressLabel->setWordWrap(true);
|
2019-10-31 14:01:48 +00:00
|
|
|
nl->addStretch();
|
|
|
|
nl->addWidget(progress);
|
|
|
|
nl->addWidget(progressLabel);
|
|
|
|
nl->addStretch();
|
|
|
|
overlay->hide();
|
2019-10-20 19:39:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
VCard::~VCard()
|
|
|
|
{
|
2019-10-23 14:49:56 +00:00
|
|
|
if (editable) {
|
|
|
|
avatarMenu->deleteLater();
|
|
|
|
}
|
2019-11-02 20:50:25 +00:00
|
|
|
|
2019-11-06 15:14:49 +00:00
|
|
|
phoneTypeDelegate->deleteLater();
|
2019-11-02 20:50:25 +00:00
|
|
|
roleDelegate->deleteLater();
|
|
|
|
contextMenu->deleteLater();
|
2019-10-20 19:39:11 +00:00
|
|
|
}
|
2019-10-21 15:02:41 +00:00
|
|
|
|
|
|
|
void VCard::setVCard(const QString& jid, const Shared::VCard& card)
|
|
|
|
{
|
|
|
|
m_ui->jabberID->setText(jid);
|
2019-10-22 15:13:56 +00:00
|
|
|
setVCard(card);
|
|
|
|
}
|
|
|
|
|
|
|
|
void VCard::setVCard(const Shared::VCard& card)
|
|
|
|
{
|
2019-10-25 13:38:48 +00:00
|
|
|
m_ui->fullName->setText(card.getFullName());
|
2019-10-21 15:02:41 +00:00
|
|
|
m_ui->firstName->setText(card.getFirstName());
|
|
|
|
m_ui->middleName->setText(card.getMiddleName());
|
|
|
|
m_ui->lastName->setText(card.getLastName());
|
|
|
|
m_ui->nickName->setText(card.getNickName());
|
|
|
|
m_ui->birthday->setDate(card.getBirthday());
|
2019-10-25 13:38:48 +00:00
|
|
|
m_ui->organizationName->setText(card.getOrgName());
|
|
|
|
m_ui->organizationDepartment->setText(card.getOrgUnit());
|
|
|
|
m_ui->organizationTitle->setText(card.getOrgTitle());
|
|
|
|
m_ui->organizationRole->setText(card.getOrgRole());
|
2019-10-21 15:02:41 +00:00
|
|
|
m_ui->description->setText(card.getDescription());
|
2019-10-25 13:38:48 +00:00
|
|
|
m_ui->url->setText(card.getUrl());
|
2019-10-31 14:01:48 +00:00
|
|
|
|
|
|
|
QDateTime receivingTime = card.getReceivingTime();
|
|
|
|
m_ui->receivingTimeLabel->setText(tr("Received %1 at %2").arg(receivingTime.date().toString()).arg(receivingTime.time().toString()));
|
2019-10-23 14:49:56 +00:00
|
|
|
currentAvatarType = card.getAvatarType();
|
|
|
|
currentAvatarPath = card.getAvatarPath();
|
2019-10-21 15:02:41 +00:00
|
|
|
|
2019-10-23 14:49:56 +00:00
|
|
|
updateAvatar();
|
2019-11-04 15:22:39 +00:00
|
|
|
|
|
|
|
const std::deque<Shared::VCard::Email>& ems = card.getEmails();
|
2019-11-06 15:14:49 +00:00
|
|
|
const std::deque<Shared::VCard::Phone>& phs = card.getPhones();
|
2019-11-04 15:22:39 +00:00
|
|
|
emails.setEmails(ems);
|
2019-11-06 15:14:49 +00:00
|
|
|
phones.setPhones(phs);
|
2019-10-22 15:13:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
QString VCard::getJid() const
|
|
|
|
{
|
|
|
|
return m_ui->jabberID->text();
|
2019-10-21 15:02:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void VCard::onButtonBoxAccepted()
|
|
|
|
{
|
|
|
|
Shared::VCard card;
|
2019-10-25 13:38:48 +00:00
|
|
|
card.setFullName(m_ui->fullName->text());
|
2019-10-21 15:02:41 +00:00
|
|
|
card.setFirstName(m_ui->firstName->text());
|
|
|
|
card.setMiddleName(m_ui->middleName->text());
|
|
|
|
card.setLastName(m_ui->lastName->text());
|
|
|
|
card.setNickName(m_ui->nickName->text());
|
|
|
|
card.setBirthday(m_ui->birthday->date());
|
|
|
|
card.setDescription(m_ui->description->toPlainText());
|
2019-10-25 13:38:48 +00:00
|
|
|
card.setUrl(m_ui->url->text());
|
|
|
|
card.setOrgName(m_ui->organizationName->text());
|
|
|
|
card.setOrgUnit(m_ui->organizationDepartment->text());
|
|
|
|
card.setOrgRole(m_ui->organizationRole->text());
|
|
|
|
card.setOrgTitle(m_ui->organizationTitle->text());
|
2019-10-23 14:49:56 +00:00
|
|
|
card.setAvatarPath(currentAvatarPath);
|
|
|
|
card.setAvatarType(currentAvatarType);
|
2019-10-21 15:02:41 +00:00
|
|
|
|
2019-11-04 15:22:39 +00:00
|
|
|
emails.getEmails(card.getEmails());
|
2019-11-06 15:14:49 +00:00
|
|
|
phones.getPhones(card.getPhones());
|
2019-11-04 15:22:39 +00:00
|
|
|
|
2019-10-22 15:13:56 +00:00
|
|
|
emit saveVCard(card);
|
2019-10-21 15:02:41 +00:00
|
|
|
}
|
2019-10-23 14:49:56 +00:00
|
|
|
|
|
|
|
void VCard::onClearAvatar()
|
|
|
|
{
|
|
|
|
currentAvatarType = Shared::Avatar::empty;
|
|
|
|
currentAvatarPath = "";
|
|
|
|
|
|
|
|
updateAvatar();
|
|
|
|
}
|
|
|
|
|
|
|
|
void VCard::onSetAvatar()
|
|
|
|
{
|
|
|
|
QFileDialog* d = new QFileDialog(this, tr("Chose your new avatar"));
|
|
|
|
d->setFileMode(QFileDialog::ExistingFile);
|
|
|
|
d->setNameFilter(tr("Images (*.png *.jpg *.jpeg)"));
|
|
|
|
|
|
|
|
connect(d, &QFileDialog::accepted, this, &VCard::onAvatarSelected);
|
|
|
|
connect(d, &QFileDialog::rejected, d, &QFileDialog::deleteLater);
|
|
|
|
|
|
|
|
d->show();
|
|
|
|
}
|
|
|
|
|
|
|
|
void VCard::updateAvatar()
|
|
|
|
{
|
|
|
|
int height = m_ui->personalForm->minimumSize().height() - avatarButtonMargins.height();
|
|
|
|
switch (currentAvatarType) {
|
|
|
|
case Shared::Avatar::empty:
|
|
|
|
m_ui->avatarButton->setIcon(Shared::icon("user", true));
|
|
|
|
m_ui->avatarButton->setIconSize(QSize(height, height));
|
|
|
|
m_ui->actionClearAvatar->setEnabled(false);
|
|
|
|
break;
|
|
|
|
case Shared::Avatar::autocreated:
|
|
|
|
case Shared::Avatar::valid:
|
|
|
|
QPixmap pixmap(currentAvatarPath);
|
|
|
|
qreal h = pixmap.height();
|
|
|
|
qreal w = pixmap.width();
|
|
|
|
qreal aspectRatio = w / h;
|
|
|
|
m_ui->avatarButton->setIconSize(QSize(height * aspectRatio, height));
|
|
|
|
m_ui->avatarButton->setIcon(QIcon(currentAvatarPath));
|
|
|
|
m_ui->actionClearAvatar->setEnabled(true);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void VCard::onAvatarSelected()
|
|
|
|
{
|
|
|
|
QFileDialog* d = static_cast<QFileDialog*>(sender());
|
|
|
|
QMimeDatabase db;
|
|
|
|
QString path = d->selectedFiles().front();
|
|
|
|
QMimeType type = db.mimeTypeForFile(path);
|
|
|
|
d->deleteLater();
|
|
|
|
|
|
|
|
if (supportedTypes.find(type.name()) == supportedTypes.end()) {
|
|
|
|
qDebug() << "Selected for avatar file is not supported, skipping";
|
|
|
|
} else {
|
|
|
|
QImage src(path);
|
|
|
|
QImage dst;
|
|
|
|
if (src.width() > 160 || src.height() > 160) {
|
|
|
|
dst = src.scaled(160, 160, Qt::KeepAspectRatio);
|
|
|
|
}
|
|
|
|
QString path = QStandardPaths::writableLocation(QStandardPaths::CacheLocation) + "/" + m_ui->jabberID->text() + ".temp." + type.preferredSuffix();
|
|
|
|
QFile oldTemp(path);
|
|
|
|
if (oldTemp.exists()) {
|
|
|
|
if (!oldTemp.remove()) {
|
|
|
|
qDebug() << "Error removing old temp avatar" << path;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
bool success = dst.save(path);
|
|
|
|
if (success) {
|
|
|
|
currentAvatarPath = path;
|
|
|
|
currentAvatarType = Shared::Avatar::valid;
|
|
|
|
|
|
|
|
updateAvatar();
|
|
|
|
} else {
|
|
|
|
qDebug() << "couldn't save avatar" << path << ", skipping";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-10-31 14:01:48 +00:00
|
|
|
|
|
|
|
void VCard::showProgress(const QString& line)
|
|
|
|
{
|
|
|
|
progressLabel->setText(line);
|
|
|
|
overlay->show();
|
|
|
|
progress->start();
|
|
|
|
}
|
|
|
|
|
|
|
|
void VCard::hideProgress()
|
|
|
|
{
|
|
|
|
overlay->hide();
|
|
|
|
progress->stop();
|
|
|
|
}
|
2019-11-02 20:50:25 +00:00
|
|
|
|
|
|
|
void VCard::onContextMenu(const QPoint& point)
|
|
|
|
{
|
|
|
|
contextMenu->clear();
|
|
|
|
bool hasMenu = false;
|
|
|
|
QAbstractItemView* snd = static_cast<QAbstractItemView*>(sender());
|
|
|
|
if (snd == m_ui->emailsView) {
|
2019-11-06 15:14:49 +00:00
|
|
|
hasMenu = true;
|
2019-11-02 20:50:25 +00:00
|
|
|
if (editable) {
|
|
|
|
QAction* add = contextMenu->addAction(Shared::icon("list-add"), tr("Add email address"));
|
|
|
|
connect(add, &QAction::triggered, this, &VCard::onAddEmail);
|
2019-11-04 15:22:39 +00:00
|
|
|
|
|
|
|
QItemSelectionModel* sm = m_ui->emailsView->selectionModel();
|
|
|
|
int selectionSize = sm->selectedRows().size();
|
|
|
|
|
|
|
|
if (selectionSize > 0) {
|
|
|
|
if (selectionSize == 1) {
|
|
|
|
int row = sm->selectedRows().at(0).row();
|
|
|
|
if (emails.isPreferred(row)) {
|
2019-11-07 11:17:46 +00:00
|
|
|
QAction* rev = contextMenu->addAction(Shared::icon("unfavorite"), tr("Unset this email as preferred"));
|
2019-11-04 15:22:39 +00:00
|
|
|
connect(rev, &QAction::triggered, std::bind(&UI::VCard::EMailsModel::revertPreferred, &emails, row));
|
|
|
|
} else {
|
|
|
|
QAction* rev = contextMenu->addAction(Shared::icon("favorite"), tr("Set this email as preferred"));
|
|
|
|
connect(rev, &QAction::triggered, std::bind(&UI::VCard::EMailsModel::revertPreferred, &emails, row));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-07 11:17:46 +00:00
|
|
|
QAction* del = contextMenu->addAction(Shared::icon("edit-delete"), tr("Remove selected email addresses"));
|
2019-11-04 15:22:39 +00:00
|
|
|
connect(del, &QAction::triggered, this, &VCard::onRemoveEmail);
|
|
|
|
}
|
2019-11-02 20:50:25 +00:00
|
|
|
}
|
2019-11-06 15:14:49 +00:00
|
|
|
|
2019-11-07 11:17:46 +00:00
|
|
|
QAction* cp = contextMenu->addAction(Shared::icon("edit-copy"), tr("Copy selected emails to clipboard"));
|
2019-11-06 15:14:49 +00:00
|
|
|
connect(cp, &QAction::triggered, this, &VCard::onCopyEmail);
|
|
|
|
} else if (snd == m_ui->phonesView) {
|
|
|
|
hasMenu = true;
|
|
|
|
if (editable) {
|
|
|
|
QAction* add = contextMenu->addAction(Shared::icon("list-add"), tr("Add phone number"));
|
|
|
|
connect(add, &QAction::triggered, this, &VCard::onAddPhone);
|
|
|
|
|
|
|
|
QItemSelectionModel* sm = m_ui->phonesView->selectionModel();
|
|
|
|
int selectionSize = sm->selectedRows().size();
|
|
|
|
|
|
|
|
if (selectionSize > 0) {
|
|
|
|
if (selectionSize == 1) {
|
|
|
|
int row = sm->selectedRows().at(0).row();
|
|
|
|
if (phones.isPreferred(row)) {
|
|
|
|
QAction* rev = contextMenu->addAction(Shared::icon("view-media-favorite"), tr("Unset this phone as preferred"));
|
|
|
|
connect(rev, &QAction::triggered, std::bind(&UI::VCard::PhonesModel::revertPreferred, &phones, row));
|
|
|
|
} else {
|
|
|
|
QAction* rev = contextMenu->addAction(Shared::icon("favorite"), tr("Set this phone as preferred"));
|
|
|
|
connect(rev, &QAction::triggered, std::bind(&UI::VCard::PhonesModel::revertPreferred, &phones, row));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-07 11:17:46 +00:00
|
|
|
QAction* del = contextMenu->addAction(Shared::icon("edit-delete"), tr("Remove selected phone numbers"));
|
2019-11-06 15:14:49 +00:00
|
|
|
connect(del, &QAction::triggered, this, &VCard::onRemovePhone);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-07 11:17:46 +00:00
|
|
|
QAction* cp = contextMenu->addAction(Shared::icon("edit-copy"), tr("Copy selected phones to clipboard"));
|
2019-11-06 15:14:49 +00:00
|
|
|
connect(cp, &QAction::triggered, this, &VCard::onCopyPhone);
|
2019-11-02 20:50:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (hasMenu) {
|
|
|
|
contextMenu->popup(snd->viewport()->mapToGlobal(point));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void VCard::onAddEmail()
|
|
|
|
{
|
|
|
|
QModelIndex index = emails.addNewEmptyLine();
|
|
|
|
m_ui->emailsView->setCurrentIndex(index);
|
|
|
|
m_ui->emailsView->edit(index);
|
|
|
|
}
|
|
|
|
|
|
|
|
void VCard::onAddAddress()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
void VCard::onAddPhone()
|
|
|
|
{
|
2019-11-06 15:14:49 +00:00
|
|
|
QModelIndex index = phones.addNewEmptyLine();
|
|
|
|
m_ui->phonesView->setCurrentIndex(index);
|
|
|
|
m_ui->phonesView->edit(index);
|
2019-11-02 20:50:25 +00:00
|
|
|
}
|
|
|
|
void VCard::onRemoveAddress()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
void VCard::onRemoveEmail()
|
|
|
|
{
|
2019-11-04 15:22:39 +00:00
|
|
|
QItemSelection selection(m_ui->emailsView->selectionModel()->selection());
|
|
|
|
|
|
|
|
QList<int> rows;
|
|
|
|
for (const QModelIndex& index : selection.indexes()) {
|
|
|
|
rows.append(index.row());
|
|
|
|
}
|
|
|
|
|
|
|
|
std::sort(rows.begin(), rows.end());
|
|
|
|
|
|
|
|
int prev = -1;
|
|
|
|
for (int i = rows.count() - 1; i >= 0; i -= 1) {
|
|
|
|
int current = rows[i];
|
|
|
|
if (current != prev) {
|
|
|
|
emails.removeLines(current, 1);
|
|
|
|
prev = current;
|
|
|
|
}
|
|
|
|
}
|
2019-11-02 20:50:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void VCard::onRemovePhone()
|
|
|
|
{
|
2019-11-06 15:14:49 +00:00
|
|
|
QItemSelection selection(m_ui->phonesView->selectionModel()->selection());
|
|
|
|
|
|
|
|
QList<int> rows;
|
|
|
|
for (const QModelIndex& index : selection.indexes()) {
|
|
|
|
rows.append(index.row());
|
|
|
|
}
|
|
|
|
|
|
|
|
std::sort(rows.begin(), rows.end());
|
|
|
|
|
|
|
|
int prev = -1;
|
|
|
|
for (int i = rows.count() - 1; i >= 0; i -= 1) {
|
|
|
|
int current = rows[i];
|
|
|
|
if (current != prev) {
|
|
|
|
phones.removeLines(current, 1);
|
|
|
|
prev = current;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void VCard::onCopyEmail()
|
|
|
|
{
|
2019-11-07 11:17:46 +00:00
|
|
|
QList<QModelIndex> selection(m_ui->emailsView->selectionModel()->selectedRows());
|
2019-11-06 15:14:49 +00:00
|
|
|
|
|
|
|
QList<QString> addrs;
|
2019-11-07 11:17:46 +00:00
|
|
|
for (const QModelIndex& index : selection) {
|
2019-11-06 15:14:49 +00:00
|
|
|
addrs.push_back(emails.getEmail(index.row()));
|
|
|
|
}
|
|
|
|
|
|
|
|
QString list = addrs.join("\n");
|
|
|
|
|
|
|
|
QClipboard* cb = QApplication::clipboard();
|
|
|
|
cb->setText(list);
|
|
|
|
}
|
|
|
|
|
|
|
|
void VCard::onCopyPhone()
|
|
|
|
{
|
2019-11-07 11:17:46 +00:00
|
|
|
QList<QModelIndex> selection(m_ui->phonesView->selectionModel()->selectedRows());
|
2019-11-06 15:14:49 +00:00
|
|
|
|
|
|
|
QList<QString> phs;
|
2019-11-07 11:17:46 +00:00
|
|
|
for (const QModelIndex& index : selection) {
|
2019-11-06 15:14:49 +00:00
|
|
|
phs.push_back(phones.getPhone(index.row()));
|
|
|
|
}
|
|
|
|
|
|
|
|
QString list = phs.join("\n");
|
|
|
|
|
|
|
|
QClipboard* cb = QApplication::clipboard();
|
|
|
|
cb->setText(list);
|
2019-11-02 20:50:25 +00:00
|
|
|
}
|