summaryrefslogtreecommitdiffstats
blob: d53c49397d881b5a35136f57054127c1bda9b7e1 (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) 2012 Kevin Smith
 * Licensed under the GNU General Public License v3.
 * See Documentation/Licenses/GPLv3.txt for more information.
 */

#include <Swift/QtUI/QtInviteToChatWindow.h>

#include <QHBoxLayout>
#include <QCompleter>
#include <QLabel>
#include <QLineEdit>
#include <QPushButton>
#include <QDialogButtonBox>

#include <Swift/QtUI/QtSwiftUtil.h>

namespace Swift {

QtInviteToChatWindow::QtInviteToChatWindow(QWidget* parent) : QDialog(parent) {
	QBoxLayout *layout = new QBoxLayout(QBoxLayout::TopToBottom, this);
	layout->setContentsMargins(0,0,0,0);
	layout->setSpacing(2);

	QLabel* description = new QLabel(tr("Users to invite to this chat (one per line):"));
	layout->addWidget(description);
	
	jidsLayout_ = new QBoxLayout(QBoxLayout::TopToBottom);
	layout->addLayout(jidsLayout_);

	QLabel* reasonLabel = new QLabel(tr("If you want to provide a reason for the invitation, enter it here"));
	layout->addWidget(reasonLabel);
	reason_ = new QLineEdit(this);
	layout->addWidget(reason_);
	addJIDLine();

	connect(this, SIGNAL(accepted()), this, SLOT(handleAccepting()));
	connect(this, SIGNAL(rejected()), this, SLOT(handleRejecting()));


	QDialogButtonBox* buttonBox = new QDialogButtonBox(QDialogButtonBox::Ok | QDialogButtonBox::Cancel);

	connect(buttonBox, SIGNAL(accepted()), this, SLOT(accept()));
	connect(buttonBox, SIGNAL(rejected()), this, SLOT(reject()));

	layout->addWidget(buttonBox);

	setModal(false);
	show();
}

QtInviteToChatWindow::~QtInviteToChatWindow() {

}

void QtInviteToChatWindow::handleAccepting() {
	onCompleted();
}

void QtInviteToChatWindow::handleRejecting() {
	onDismissed();
}

std::string QtInviteToChatWindow::getReason() const {
	return Q2PSTRING(reason_->text());
}

std::vector<JID> QtInviteToChatWindow::getJIDs() const {
	std::vector<JID> results;
	foreach (QLineEdit* jidEdit, jids_) {
		QStringList parts = jidEdit->text().split(" ");
		if (parts.size() > 0) {
			JID jid(Q2PSTRING(parts.last()));
			if (jid.isValid() && !jid.getNode().empty()) {
				results.push_back(jid);
			}
		}
	}
	return results;
}

void QtInviteToChatWindow::addJIDLine() {
	QLineEdit* jid = new QLineEdit(this);
	QCompleter* completer = new QCompleter(completions_, this);
	completer->setCaseSensitivity(Qt::CaseInsensitive);
	jid->setCompleter(completer);
	jids_.push_back(jid);
	jidsLayout_->addWidget(jid);
	connect(jid, SIGNAL(textChanged(const QString&)), this, SLOT(handleJIDTextChanged()));
}

void QtInviteToChatWindow::handleJIDTextChanged() {
	bool gotEmpty = false;
	foreach(QLineEdit* edit, jids_) {
		if (edit->text().isEmpty()) {
			gotEmpty = true;
		}
	}
	if (!gotEmpty) {
		addJIDLine();
	}
}

}