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


#include "Roster/QtOccupantListWidget.h"

#include <QContextMenuEvent>
#include <QMenu>
#include <QAction>
#include <QInputDialog>

#include "Swift/Controllers/Roster/ContactRosterItem.h"
#include "Swift/Controllers/Roster/GroupRosterItem.h"
#include "Swift/Controllers/UIEvents/UIEventStream.h"
#include "QtSwiftUtil.h"

namespace Swift {

QtOccupantListWidget::QtOccupantListWidget(UIEventStream* eventStream, QWidget* parent) : QtTreeWidget(eventStream, parent) {

}

QtOccupantListWidget::~QtOccupantListWidget() {

}

void QtOccupantListWidget::setAvailableOccupantActions(const std::vector<ChatWindow::OccupantAction>& actions) {
	availableOccupantActions_ = actions;
}

void QtOccupantListWidget::contextMenuEvent(QContextMenuEvent* event) {
	QModelIndex index = indexAt(event->pos());
	if (!index.isValid()) {
		return;
	}
	RosterItem* item = static_cast<RosterItem*>(index.internalPointer());
	ContactRosterItem* contact = dynamic_cast<ContactRosterItem*>(item);
	if (contact) {
		QMenu contextMenu;
		std::map<QAction*, ChatWindow::OccupantAction> actions;
		foreach (ChatWindow::OccupantAction availableAction, availableOccupantActions_) {
			QString text = "Error: missing string";
			switch (availableAction) {
				case ChatWindow::Kick: text = tr("Kick user"); break;
				case ChatWindow::MakeModerator: text = tr("Make moderator"); break;
				case ChatWindow::MakeParticipant: text = tr("Make participant"); break;
				case ChatWindow::MakeVisitor: text = tr("Remove voice"); break;
			}
			QAction* action = contextMenu.addAction(text);
			actions[action] = availableAction;
		}
		QAction* result = contextMenu.exec(event->globalPos());
		if (result) {
			onOccupantActionSelected(actions[result], contact);
		}
	}
}

}