summaryrefslogtreecommitdiffstats
blob: 138a3568530f7ed3711493d4a81c70ec5980e2ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
/*
 * Copyright (c) 2010-2016 Isode Limited.
 * All rights reserved.
 * See the COPYING file for more information.
 */

#include <Swift/QtUI/QtContactEditWindow.h>

#include <algorithm>

#include <boost/bind.hpp>

#include <QBoxLayout>
#include <QCheckBox>
#include <QLabel>
#include <QLineEdit>
#include <QMessageBox>
#include <QPushButton>
#include <QScrollArea>

#include <Swift/QtUI/QtContactEditWidget.h>
#include <Swift/QtUI/QtSwiftUtil.h>

namespace Swift {

QtContactEditWindow::QtContactEditWindow() : contactEditWidget_(nullptr) {
    resize(400,300);
    setWindowTitle(tr("Edit contact"));
    setContentsMargins(0,0,0,0);

    QBoxLayout* layout = new QVBoxLayout(this);

    jidLabel_ = new QLabel(this);
    jidLabel_->setAlignment(Qt::AlignHCenter);
    layout->addWidget(jidLabel_);

    groupsLayout_ = new QVBoxLayout();
    groupsLayout_->setContentsMargins(0,0,0,0);
    layout->addLayout(groupsLayout_);

    QHBoxLayout* buttonLayout = new QHBoxLayout();
    layout->addLayout(buttonLayout);
    QPushButton* removeButton = new QPushButton(tr("Remove contact"), this);
    connect(removeButton, SIGNAL(clicked()), this, SLOT(handleRemoveContact()));
    buttonLayout->addWidget(removeButton);
    QPushButton* okButton = new QPushButton(tr("OK"), this);
    okButton->setDefault( true );
    connect(okButton, SIGNAL(clicked()), this, SLOT(handleUpdateContact()));
    buttonLayout->addStretch();
    buttonLayout->addWidget(okButton);
}

QtContactEditWindow::~QtContactEditWindow() {
}

void QtContactEditWindow::setNameSuggestions(const std::vector<std::string>& nameSuggestions) {
    if (contactEditWidget_) {
        contactEditWidget_->setNameSuggestions(nameSuggestions);
    }
}

void QtContactEditWindow::setContact(const JID& jid, const std::string& name, const std::vector<std::string>& groups, const std::set<std::string>& allGroups) {
    delete contactEditWidget_;
    jid_ = jid;
    jidLabel_->setText("<b>" + P2QSTRING(jid.toString()) + "</b>");

    contactEditWidget_ = new QtContactEditWidget(allGroups, this);
    groupsLayout_->addWidget(contactEditWidget_);
    contactEditWidget_->setName(name);
    contactEditWidget_->setSelectedGroups(groups);
}

void QtContactEditWindow::setEnabled(bool b) {
    QWidget::setEnabled(b);
}

void QtContactEditWindow::show() {
    QWidget::showNormal();
    QWidget::activateWindow();
    QWidget::raise();
}

void QtContactEditWindow::hide() {
    QWidget::hide();
}

void QtContactEditWindow::handleRemoveContact() {
    if (confirmContactDeletion(jid_)) {
        onRemoveContactRequest();
    }
}

bool QtContactEditWindow::confirmContactDeletion(const JID& jid) {
    QMessageBox msgBox;
    msgBox.setWindowTitle(tr("Confirm contact deletion"));
    msgBox.setText(tr("Are you sure you want to delete this contact?"));
    msgBox.setInformativeText(QString(tr("This will remove the contact '%1' from all groups they may be in.")).arg(P2QSTRING(jid.toString())));
    msgBox.setStandardButtons(QMessageBox::Yes | QMessageBox::No);
    msgBox.setDefaultButton(QMessageBox::Yes);
    return msgBox.exec() == QMessageBox::Yes;
}

void QtContactEditWindow::handleUpdateContact() {
    onChangeContactRequest(contactEditWidget_->getName(), contactEditWidget_->getSelectedGroups());
}

}