summaryrefslogtreecommitdiffstats
blob: 48bac26b720e5160499c5a9533246a8084a99727 (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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
/*
 * Copyright (c) 2013 Tobias Markmann
 * Licensed under the simplified BSD license.
 * See Documentation/Licenses/BSD-simplified.txt for more information.
 */

/*
 * Copyright (c) 2014 Isode Limited.
 * All rights reserved.
 * See the COPYING file for more information.
 */

#include <QtBlockListEditorWindow.h>
#include <ui_QtBlockListEditorWindow.h>

#include <boost/bind.hpp>

#include <QLineEdit>
#include <QMovie>
#include <QShortcut>
#include <QStyledItemDelegate>
#include <QValidator>

#include <Swift/QtUI/QtSwiftUtil.h>
#include <Swift/QtUI/QtUtilities.h>
#include <Swiften/Base/foreach.h>
#include <Swiften/Client/ClientBlockListManager.h>
#include <Swiften/JID/JID.h>

namespace Swift {

class QtJIDValidator : public QValidator {
	public:
		QtJIDValidator(QObject* parent) : QValidator(parent) {}
		virtual ~QtJIDValidator() {}
		virtual QValidator::State validate(QString& input, int&) const {
			return JID(Q2PSTRING(input)).isValid() ? Acceptable : Intermediate;
		}
};

class QtJIDValidatedItemDelegate : public QItemDelegate {
	public:
		QtJIDValidatedItemDelegate(QObject* parent) : QItemDelegate(parent) {}
		virtual ~QtJIDValidatedItemDelegate() {}

		virtual QWidget* createEditor(QWidget* parent, const QStyleOptionViewItem&, const QModelIndex&) const {
			QLineEdit *editor = new QLineEdit(parent);
			editor->setValidator(new QtJIDValidator(editor));
			return editor;
		}

		void setEditorData(QWidget *editor, const QModelIndex &index) const {
			QString value = index.model()->data(index, Qt::EditRole).toString();

			QLineEdit *lineEdit = static_cast<QLineEdit*>(editor);
			lineEdit->setText(value);
		}

		void setModelData(QWidget *editor, QAbstractItemModel *model, const QModelIndex &index) const {
			QLineEdit *lineEdit = static_cast<QLineEdit*>(editor);
			QString currentValue = lineEdit->text();
			int pos = 0;
			if (lineEdit->validator()->validate(currentValue, pos) == QValidator::Acceptable) {
				model->setData(index, lineEdit->text(), Qt::EditRole);
			} else {
				model->setData(index, QString(), Qt::EditRole);
			}
		}

		void updateEditorGeometry(QWidget *editor, const QStyleOptionViewItem &option, const QModelIndex &/* index */) const {
			editor->setGeometry(option.rect);
		}
};

QtBlockListEditorWindow::QtBlockListEditorWindow() : QWidget(), ui(new Ui::QtBlockListEditorWindow), removeItemDelegate(0), editItemDelegate(0) {
	ui->setupUi(this);

	freshBlockListTemplate = tr("Double-click to add contact");

	new QShortcut(QKeySequence::Close, this, SLOT(close()));
	ui->throbberLabel->setMovie(new QMovie(":/icons/throbber.gif", QByteArray(), this));

	removeItemDelegate = new QtRemovableItemDelegate(style());
	editItemDelegate = new QtJIDValidatedItemDelegate(this);

	connect(ui->savePushButton, SIGNAL(clicked()), SLOT(applyChanges()));

	ui->blockListTreeWidget->setColumnCount(2);
	ui->blockListTreeWidget->header()->setStretchLastSection(false);
	ui->blockListTreeWidget->header()->resizeSection(1, removeItemDelegate->sizeHint(QStyleOptionViewItem(), QModelIndex()).width());

#if QT_VERSION >= 0x050000
	ui->blockListTreeWidget->header()->setSectionResizeMode(0, QHeaderView::Stretch);
#else
	ui->blockListTreeWidget->header()->setResizeMode(0, QHeaderView::Stretch);
#endif

	ui->blockListTreeWidget->setHeaderHidden(true);
	ui->blockListTreeWidget->setRootIsDecorated(false);
	ui->blockListTreeWidget->setEditTriggers(QAbstractItemView::DoubleClicked | QAbstractItemView::SelectedClicked | QAbstractItemView::EditKeyPressed);
	ui->blockListTreeWidget->setItemDelegateForColumn(0, editItemDelegate);
	ui->blockListTreeWidget->setItemDelegateForColumn(1, removeItemDelegate);
	connect(ui->blockListTreeWidget, SIGNAL(itemChanged(QTreeWidgetItem*,int)), SLOT(handleItemChanged(QTreeWidgetItem*,int)));
	ui->blockListTreeWidget->installEventFilter(this);

	QTreeWidgetItem* item = new QTreeWidgetItem(QStringList(freshBlockListTemplate) << "x");
	item->setFlags(item->flags() | Qt::ItemIsEditable);
	ui->blockListTreeWidget->addTopLevelItem(item);
}

QtBlockListEditorWindow::~QtBlockListEditorWindow() {
}

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

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

void QtBlockListEditorWindow::handleItemChanged(QTreeWidgetItem *item, int) {
	// check whether changed item contains a valid JID and make it removable
	if (item && item->text(0) != freshBlockListTemplate) {
		item->setText(1, "");
	}

	// check for empty rows and add an empty one so the user can add items
	bool hasEmptyRow = false;
	for( int i = 0; i < ui->blockListTreeWidget->topLevelItemCount(); ++i ) {
		QTreeWidgetItem* row = ui->blockListTreeWidget->topLevelItem(i);
		if (row->text(0) == freshBlockListTemplate) {
			hasEmptyRow = true;
		}
		else if (row->text(0).isEmpty()) {
			ui->blockListTreeWidget->removeItemWidget(row, 0);
		}
	}

	if (!hasEmptyRow) {
		QTreeWidgetItem* item = new QTreeWidgetItem(QStringList(freshBlockListTemplate) << "x");
		item->setFlags(item->flags() | Qt::ItemIsEditable);
		ui->blockListTreeWidget->addTopLevelItem(item);
	}

	if (!item) {
		ui->blockListTreeWidget->setCurrentItem(ui->blockListTreeWidget->topLevelItem(0));
	}
}

void QtBlockListEditorWindow::applyChanges() {
	onSetNewBlockList(getCurrentBlockList());
}

void QtBlockListEditorWindow::setCurrentBlockList(const std::vector<JID> &blockedJIDs) {
	ui->blockListTreeWidget->clear();

	foreach(const JID& jid, blockedJIDs) {
		QTreeWidgetItem* item = new QTreeWidgetItem(QStringList(P2QSTRING(jid.toString())) << "");
		item->setFlags(item->flags() | Qt::ItemIsEditable);
		ui->blockListTreeWidget->addTopLevelItem(item);
	}
	handleItemChanged(0,0);
}

void QtBlockListEditorWindow::setBusy(bool isBusy) {
	if (isBusy) {
		ui->throbberLabel->movie()->start();
		ui->throbberLabel->show();
		ui->blockListTreeWidget->setEnabled(false);
		ui->savePushButton->setEnabled(false);
	} else {
		ui->throbberLabel->movie()->stop();
		ui->throbberLabel->hide();
		ui->blockListTreeWidget->setEnabled(true);
		ui->savePushButton->setEnabled(true);
	}
}

void QtBlockListEditorWindow::setError(const std::string& error) {
	if (!error.empty()) {
		ui->errorLabel->setText("<font color='red'>" + QtUtilities::htmlEscape(P2QSTRING(error)) + "</font>");
	}
	else {
		ui->errorLabel->setText("");
	}
}

std::vector<JID> Swift::QtBlockListEditorWindow::getCurrentBlockList() const {
	std::vector<JID> futureBlockedJIDs;

	for(int i=0; i < ui->blockListTreeWidget->topLevelItemCount(); ++i) {
		QTreeWidgetItem* row = ui->blockListTreeWidget->topLevelItem(i);
		JID jid = JID(Q2PSTRING(row->text(0)));
		if (!jid.toString().empty() && jid.isValid()) {
			futureBlockedJIDs.push_back(jid);
		}
	}
	return futureBlockedJIDs;
}

bool QtBlockListEditorWindow::eventFilter(QObject* target, QEvent* event) {
	if (target == ui->blockListTreeWidget) {
		if (event->type() == QEvent::KeyPress) {
			QKeyEvent *keyEvent = static_cast<QKeyEvent *>(event);
			if (keyEvent->key() == Qt::Key_Backspace) {
				// remove currently selected item
				QTreeWidgetItem* currentItem = ui->blockListTreeWidget->currentItem();
				if (currentItem->text(0) != freshBlockListTemplate) {
					ui->blockListTreeWidget->takeTopLevelItem(ui->blockListTreeWidget->indexOfTopLevelItem(currentItem));
					return true;
				}
			}
			else if (keyEvent->key() == Qt::Key_Return) {
				// open editor for return key d
				ui->blockListTreeWidget->editItem(ui->blockListTreeWidget->currentItem(), 0);
				return true;
			}
		}
	}
	return QWidget::eventFilter(target, event);
}

}