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
|
/*
* Copyright (c) 2012-2014 Tobias Markmann
* Licensed under the simplified BSD license.
* See Documentation/Licenses/BSD-simplified.txt for more information.
*/
/*
* Copyright (c) 2016 Isode Limited.
* All rights reserved.
* See the COPYING file for more information.
*/
#include <Swift/QtUI/QtVCardWidget/QtVCardJIDField.h>
#include <boost/algorithm/string.hpp>
#include <QGridLayout>
#include <QTextDocument>
#include <Swift/QtUI/QtSwiftUtil.h>
#include <Swift/QtUI/QtUtilities.h>
namespace Swift {
QtVCardJIDField::QtVCardJIDField(QWidget* parent, QGridLayout *layout, bool editable) :
QtVCardGeneralField(parent, layout, editable, layout->rowCount(), tr("JID"), false, false), jidLabel(nullptr), jidLineEdit(nullptr) {
connect(this, SIGNAL(editableChanged(bool)), SLOT(handleEditibleChanged(bool)));
}
QtVCardJIDField::~QtVCardJIDField() {
disconnect(this, SLOT(handleEditibleChanged(bool)));
}
void QtVCardJIDField::setupContentWidgets() {
jidLabel = new QLabel(this);
jidLabel->setOpenExternalLinks(true);
jidLabel->setTextInteractionFlags(Qt::LinksAccessibleByMouse | Qt::LinksAccessibleByKeyboard);
jidLineEdit = new QtResizableLineEdit(this);
#if QT_VERSION >= 0x040700
jidLineEdit->setPlaceholderText(tr("alice@wonderland.lit"));
#endif
QHBoxLayout* jidLayout = new QHBoxLayout();
jidLayout->addWidget(jidLabel);
jidLayout->addWidget(jidLineEdit);
getGridLayout()->addLayout(jidLayout, getGridLayout()->rowCount()-1, 2, 1, 2, Qt::AlignVCenter);
jidLabel->hide();
getTagComboBox()->hide();
childWidgets << jidLabel << jidLineEdit;
}
bool QtVCardJIDField::isEmpty() const {
return jidLineEdit->text().isEmpty();
}
void QtVCardJIDField::setJID(const JID& jid) {
std::string jidStr = jid.toBare().toString();
jidLineEdit->setText(P2QSTRING(jidStr));
}
JID QtVCardJIDField::getJID() const {
return JID(Q2PSTRING(jidLineEdit->text()));
}
void QtVCardJIDField::handleEditibleChanged(bool isEditable) {
assert(jidLineEdit);
assert(jidLabel);
if (isEditable) {
jidLineEdit->show();
jidLabel->hide();
} else {
jidLineEdit->hide();
jidLabel->setText(QString("<a href=\"xmpp:%1\">%1</a>").arg(QtUtilities::htmlEscape(jidLineEdit->text())));
jidLabel->show();
}
}
}
|