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
|
/*
* Copyright (c) 2010 Kevin Smith
* Licensed under the GNU General Public License v3.
* See Documentation/Licenses/GPLv3.txt for more information.
*/
#include "Swift/QtUI/ContextMenus/QtRosterContextMenu.h"
#include <QInputDialog>
#include <QLineEdit>
#include <QMenu>
#include <QDebug>
#include <QDialog>
#include <boost/shared_ptr.hpp>
#include "Swiften/Roster/ContactRosterItem.h"
#include "Swiften/Roster/GroupRosterItem.h"
#include "Swiften/Base/String.h"
#include "Swiften/Roster/Roster.h"
#include "Swift/Controllers/UIEvents/UIEvent.h"
#include "Swift/Controllers/UIEvents/RemoveRosterItemUIEvent.h"
#include "Swift/Controllers/UIEvents/RenameRosterItemUIEvent.h"
#include "Swift/QtUI/QtSwiftUtil.h"
#include "Swift/QtUI/QtSetGroupsDialog.h"
namespace Swift {
QtRosterContextMenu::QtRosterContextMenu(UIEventStream* eventStream, QtTreeWidget* treeWidget) {
eventStream_ = eventStream;
treeWidget_ = treeWidget;
}
void QtRosterContextMenu::show(RosterItem* item) {
ContactRosterItem* contact = dynamic_cast<ContactRosterItem*>(item);
item_ = item;
QMenu contextMenu;
if (contact) {
contextMenu.addAction("Remove", this, SLOT(handleRemoveContact()));
contextMenu.addAction("Rename", this, SLOT(handleRenameContact()));
contextMenu.addAction("Groups", this, SLOT(handleRegroupContact()));
}
GroupRosterItem* group = dynamic_cast<GroupRosterItem*>(item);
if (group) {
contextMenu.addAction("Rename", this, SLOT(handleRenameGroup()));
}
contextMenu.exec(QCursor::pos());
}
void QtRosterContextMenu::handleRegroupContact() {
QList<QString> allGroups;
foreach (RosterItem* item, treeWidget_->getRoster()->getRoot()->getChildren()) {
GroupRosterItem* group = dynamic_cast<GroupRosterItem*>(item);
if (group) {
allGroups.push_back(P2QSTRING(group->getDisplayName()));
}
}
ContactRosterItem* contact = dynamic_cast<ContactRosterItem*>(item_);
assert(contact);
QtSetGroupsDialog groupDialog(contact, allGroups);
if (groupDialog.exec() == QDialog::Accepted) {
eventStream_->send(groupDialog.getRegroupEvent());
}
}
void QtRosterContextMenu::handleRemoveContact() {
ContactRosterItem* contact = dynamic_cast<ContactRosterItem*>(item_);
assert(contact);
eventStream_->send(boost::shared_ptr<UIEvent>(new RemoveRosterItemUIEvent(contact->getJID())));
}
void QtRosterContextMenu::handleRenameContact() {
ContactRosterItem* contact = dynamic_cast<ContactRosterItem*>(item_);
assert(contact);
bool ok;
QString newName = QInputDialog::getText(NULL, "Rename contact", "New name for " + P2QSTRING(item_->getDisplayName()), QLineEdit::Normal, P2QSTRING(item_->getDisplayName()), &ok);
if (ok) {
eventStream_->send(boost::shared_ptr<UIEvent>(new RenameRosterItemUIEvent(contact->getJID(), Q2PSTRING(newName))));
}
}
void QtRosterContextMenu::handleRenameGroup() {
GroupRosterItem* group = dynamic_cast<GroupRosterItem*>(item_);
assert(group);
bool ok;
QString newName = QInputDialog::getText(NULL, "Rename group", "New name for " + P2QSTRING(item_->getDisplayName()), QLineEdit::Normal, P2QSTRING(item_->getDisplayName()), &ok);
if (ok) {
std::vector<String> addedGroups;
std::vector<String> removedGroups;
addedGroups.push_back(Q2PSTRING(newName));
removedGroups.push_back(group->getDisplayName());
foreach (RosterItem* child, group->getChildren()) {
ContactRosterItem* contact = dynamic_cast<ContactRosterItem*>(child);
assert(contact);
boost::shared_ptr<RegroupRosterItemUIEvent> regroupItem(new RegroupRosterItemUIEvent(contact->getJID(), addedGroups, removedGroups));
eventStream_->send(regroupItem);
}
}
}
}
|