author | koda |
Sun, 24 Jan 2010 19:52:30 +0000 | |
changeset 2714 | c85ffe57d971 |
parent 2706 | 935b7d618cf0 |
child 2773 | e94f240a8a41 |
permissions | -rw-r--r-- |
480 | 1 |
/* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
486 | 3 |
* Copyright (c) 2007 Igor Ulyanov <iulyanov@gmail.com> |
1577 | 4 |
* Copyright (c) 2009 Andrey Korotaev <unC0Rr@gmail.com> |
480 | 5 |
* |
6 |
* This program is free software; you can redistribute it and/or modify |
|
7 |
* it under the terms of the GNU General Public License as published by |
|
8 |
* the Free Software Foundation; version 2 of the License |
|
9 |
* |
|
10 |
* This program is distributed in the hope that it will be useful, |
|
11 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
12 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
13 |
* GNU General Public License for more details. |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License |
|
16 |
* along with this program; if not, write to the Free Software |
|
17 |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA |
|
18 |
*/ |
|
19 |
||
1520
f72f538eba05
Refactor chat widget to use QTextBrower instead of QListWidget:
unc0rr
parents:
1516
diff
changeset
|
20 |
#include <QTextBrowser> |
461 | 21 |
#include <QLineEdit> |
1391 | 22 |
#include <QAction> |
1577 | 23 |
#include <QApplication> |
1587 | 24 |
#include <QTextDocument> |
461 | 25 |
|
26 |
#include "chatwidget.h" |
|
27 |
||
28 |
HWChatWidget::HWChatWidget(QWidget* parent) : |
|
29 |
QWidget(parent), |
|
30 |
mainLayout(this) |
|
31 |
{ |
|
1577 | 32 |
mainLayout.setSpacing(1); |
33 |
mainLayout.setMargin(1); |
|
34 |
mainLayout.setSizeConstraint(QLayout::SetMinimumSize); |
|
35 |
mainLayout.setColumnStretch(0, 75); |
|
36 |
mainLayout.setColumnStretch(1, 25); |
|
461 | 37 |
|
1577 | 38 |
chatEditLine = new QLineEdit(this); |
39 |
chatEditLine->setMaxLength(300); |
|
40 |
connect(chatEditLine, SIGNAL(returnPressed()), this, SLOT(returnPressed())); |
|
461 | 41 |
|
1577 | 42 |
mainLayout.addWidget(chatEditLine, 1, 0, 1, 2); |
462 | 43 |
|
1577 | 44 |
chatText = new QTextBrowser(this); |
45 |
chatText->setMinimumHeight(20); |
|
46 |
chatText->setMinimumWidth(10); |
|
47 |
chatText->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding); |
|
1589 | 48 |
chatText->setOpenExternalLinks(true); |
1577 | 49 |
mainLayout.addWidget(chatText, 0, 0); |
462 | 50 |
|
1577 | 51 |
chatNicks = new QListWidget(this); |
52 |
chatNicks->setMinimumHeight(10); |
|
53 |
chatNicks->setMinimumWidth(10); |
|
1666 | 54 |
chatNicks->setSortingEnabled(true); |
1577 | 55 |
chatNicks->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding); |
56 |
chatNicks->setContextMenuPolicy(Qt::ActionsContextMenu); |
|
2706
935b7d618cf0
sheepluva's patch to add a "follow" command to server and frontend, in order to stalk people and join them in their rooms
koda
parents:
2428
diff
changeset
|
57 |
connect(chatNicks, SIGNAL(itemDoubleClicked(QListWidgetItem *)), |
935b7d618cf0
sheepluva's patch to add a "follow" command to server and frontend, in order to stalk people and join them in their rooms
koda
parents:
2428
diff
changeset
|
58 |
this, SLOT(chatNickDoubleClicked(QListWidgetItem *))); |
935b7d618cf0
sheepluva's patch to add a "follow" command to server and frontend, in order to stalk people and join them in their rooms
koda
parents:
2428
diff
changeset
|
59 |
|
1577 | 60 |
mainLayout.addWidget(chatNicks, 0, 1); |
1391 | 61 |
|
1860 | 62 |
acInfo = new QAction(QAction::tr("Info"), chatNicks); |
1577 | 63 |
connect(acInfo, SIGNAL(triggered(bool)), this, SLOT(onInfo())); |
1860 | 64 |
acKick = new QAction(QAction::tr("Kick"), chatNicks); |
65 |
connect(acKick, SIGNAL(triggered(bool)), this, SLOT(onKick())); |
|
66 |
acBan = new QAction(QAction::tr("Ban"), chatNicks); |
|
67 |
connect(acBan, SIGNAL(triggered(bool)), this, SLOT(onBan())); |
|
2706
935b7d618cf0
sheepluva's patch to add a "follow" command to server and frontend, in order to stalk people and join them in their rooms
koda
parents:
2428
diff
changeset
|
68 |
acFollow = new QAction(QAction::tr("Follow"), chatNicks); |
935b7d618cf0
sheepluva's patch to add a "follow" command to server and frontend, in order to stalk people and join them in their rooms
koda
parents:
2428
diff
changeset
|
69 |
connect(acFollow, SIGNAL(triggered(bool)), this, SLOT(onFollow())); |
2377 | 70 |
|
1577 | 71 |
chatNicks->insertAction(0, acInfo); |
2706
935b7d618cf0
sheepluva's patch to add a "follow" command to server and frontend, in order to stalk people and join them in their rooms
koda
parents:
2428
diff
changeset
|
72 |
chatNicks->insertAction(0, acFollow); |
461 | 73 |
} |
74 |
||
75 |
void HWChatWidget::returnPressed() |
|
76 |
{ |
|
1577 | 77 |
emit chatLine(chatEditLine->text()); |
78 |
chatEditLine->clear(); |
|
461 | 79 |
} |
80 |
||
1360 | 81 |
void HWChatWidget::onChatString(const QString& str) |
461 | 82 |
{ |
1520
f72f538eba05
Refactor chat widget to use QTextBrower instead of QListWidget:
unc0rr
parents:
1516
diff
changeset
|
83 |
if (chatStrings.size() > 250) |
f72f538eba05
Refactor chat widget to use QTextBrower instead of QListWidget:
unc0rr
parents:
1516
diff
changeset
|
84 |
chatStrings.removeFirst(); |
1626 | 85 |
|
2396 | 86 |
QString formattedStr = Qt::escape(str.mid(1)); |
87 |
if (str.startsWith("\x03")) |
|
1626 | 88 |
formattedStr = QString("<font color=grey>%1</font>").arg(formattedStr); |
2396 | 89 |
else if (str.startsWith("\x02")) |
90 |
formattedStr = QString("<font color=magenta>%1</font>").arg(formattedStr); |
|
91 |
||
2377 | 92 |
|
1626 | 93 |
chatStrings.append(formattedStr); |
2377 | 94 |
|
1587 | 95 |
chatText->setHtml(chatStrings.join("<br>")); |
96 |
||
97 |
chatText->moveCursor(QTextCursor::End); |
|
98 |
} |
|
99 |
||
100 |
void HWChatWidget::onServerMessage(const QString& str) |
|
101 |
{ |
|
102 |
if (chatStrings.size() > 250) |
|
103 |
chatStrings.removeFirst(); |
|
2377 | 104 |
|
1588 | 105 |
chatStrings.append("<hr>" + str + "<hr>"); |
2377 | 106 |
|
1584
90f6a5abad17
Save much space for chat widget on lobby page by removing server message widget (now this messages goes to chat)
unc0rr
parents:
1577
diff
changeset
|
107 |
chatText->setHtml(chatStrings.join("<br>")); |
1516
bb9fa5809c49
Limit chat history to 250 entries to avoid DoS attack with its use
unc0rr
parents:
1457
diff
changeset
|
108 |
|
1520
f72f538eba05
Refactor chat widget to use QTextBrower instead of QListWidget:
unc0rr
parents:
1516
diff
changeset
|
109 |
chatText->moveCursor(QTextCursor::End); |
461 | 110 |
} |
465 | 111 |
|
112 |
void HWChatWidget::nickAdded(const QString& nick) |
|
113 |
{ |
|
1391 | 114 |
QListWidgetItem * item = new QListWidgetItem(nick); |
2428 | 115 |
item->setIcon(QIcon(":/res/hh_small.png")); |
1391 | 116 |
chatNicks->addItem(item); |
465 | 117 |
} |
118 |
||
119 |
void HWChatWidget::nickRemoved(const QString& nick) |
|
120 |
{ |
|
1520
f72f538eba05
Refactor chat widget to use QTextBrower instead of QListWidget:
unc0rr
parents:
1516
diff
changeset
|
121 |
QList<QListWidgetItem *> items = chatNicks->findItems(nick, Qt::MatchExactly); |
f72f538eba05
Refactor chat widget to use QTextBrower instead of QListWidget:
unc0rr
parents:
1516
diff
changeset
|
122 |
for(QList<QListWidgetItem *>::iterator it=items.begin(); it!=items.end();) { |
f72f538eba05
Refactor chat widget to use QTextBrower instead of QListWidget:
unc0rr
parents:
1516
diff
changeset
|
123 |
chatNicks->takeItem(chatNicks->row(*it)); |
f72f538eba05
Refactor chat widget to use QTextBrower instead of QListWidget:
unc0rr
parents:
1516
diff
changeset
|
124 |
++it; |
f72f538eba05
Refactor chat widget to use QTextBrower instead of QListWidget:
unc0rr
parents:
1516
diff
changeset
|
125 |
} |
465 | 126 |
} |
127 |
||
128 |
void HWChatWidget::clear() |
|
129 |
{ |
|
1311 | 130 |
chatText->clear(); |
1520
f72f538eba05
Refactor chat widget to use QTextBrower instead of QListWidget:
unc0rr
parents:
1516
diff
changeset
|
131 |
chatStrings.clear(); |
1311 | 132 |
chatNicks->clear(); |
465 | 133 |
} |
1391 | 134 |
|
135 |
void HWChatWidget::onKick() |
|
136 |
{ |
|
137 |
QListWidgetItem * curritem = chatNicks->currentItem(); |
|
138 |
if (curritem) |
|
139 |
emit kick(curritem->text()); |
|
140 |
} |
|
1405 | 141 |
|
1860 | 142 |
void HWChatWidget::onBan() |
143 |
{ |
|
144 |
QListWidgetItem * curritem = chatNicks->currentItem(); |
|
145 |
if (curritem) |
|
146 |
emit ban(curritem->text()); |
|
147 |
} |
|
148 |
||
1577 | 149 |
void HWChatWidget::onInfo() |
150 |
{ |
|
151 |
QListWidgetItem * curritem = chatNicks->currentItem(); |
|
152 |
if (curritem) |
|
153 |
emit info(curritem->text()); |
|
154 |
} |
|
155 |
||
2706
935b7d618cf0
sheepluva's patch to add a "follow" command to server and frontend, in order to stalk people and join them in their rooms
koda
parents:
2428
diff
changeset
|
156 |
void HWChatWidget::onFollow() |
935b7d618cf0
sheepluva's patch to add a "follow" command to server and frontend, in order to stalk people and join them in their rooms
koda
parents:
2428
diff
changeset
|
157 |
{ |
935b7d618cf0
sheepluva's patch to add a "follow" command to server and frontend, in order to stalk people and join them in their rooms
koda
parents:
2428
diff
changeset
|
158 |
QListWidgetItem * curritem = chatNicks->currentItem(); |
935b7d618cf0
sheepluva's patch to add a "follow" command to server and frontend, in order to stalk people and join them in their rooms
koda
parents:
2428
diff
changeset
|
159 |
if (curritem) |
935b7d618cf0
sheepluva's patch to add a "follow" command to server and frontend, in order to stalk people and join them in their rooms
koda
parents:
2428
diff
changeset
|
160 |
emit follow(curritem->text()); |
935b7d618cf0
sheepluva's patch to add a "follow" command to server and frontend, in order to stalk people and join them in their rooms
koda
parents:
2428
diff
changeset
|
161 |
} |
935b7d618cf0
sheepluva's patch to add a "follow" command to server and frontend, in order to stalk people and join them in their rooms
koda
parents:
2428
diff
changeset
|
162 |
|
935b7d618cf0
sheepluva's patch to add a "follow" command to server and frontend, in order to stalk people and join them in their rooms
koda
parents:
2428
diff
changeset
|
163 |
void HWChatWidget::chatNickDoubleClicked(QListWidgetItem * item) |
935b7d618cf0
sheepluva's patch to add a "follow" command to server and frontend, in order to stalk people and join them in their rooms
koda
parents:
2428
diff
changeset
|
164 |
{ |
935b7d618cf0
sheepluva's patch to add a "follow" command to server and frontend, in order to stalk people and join them in their rooms
koda
parents:
2428
diff
changeset
|
165 |
if (item) onFollow(); |
935b7d618cf0
sheepluva's patch to add a "follow" command to server and frontend, in order to stalk people and join them in their rooms
koda
parents:
2428
diff
changeset
|
166 |
} |
935b7d618cf0
sheepluva's patch to add a "follow" command to server and frontend, in order to stalk people and join them in their rooms
koda
parents:
2428
diff
changeset
|
167 |
|
1405 | 168 |
void HWChatWidget::setReadyStatus(const QString & nick, bool isReady) |
169 |
{ |
|
170 |
QList<QListWidgetItem *> items = chatNicks->findItems(nick, Qt::MatchExactly); |
|
171 |
if (items.size() != 1) |
|
172 |
{ |
|
173 |
qWarning("Bug: cannot find user in chat"); |
|
174 |
return; |
|
175 |
} |
|
176 |
||
177 |
if(isReady) |
|
1457 | 178 |
items[0]->setIcon(QIcon(":/res/lightbulb_on.png")); |
1405 | 179 |
else |
1457 | 180 |
items[0]->setIcon(QIcon(":/res/lightbulb_off.png")); |
1405 | 181 |
} |
1860 | 182 |
|
183 |
void HWChatWidget::adminAccess(bool b) |
|
184 |
{ |
|
185 |
chatNicks->removeAction(acKick); |
|
186 |
chatNicks->removeAction(acBan); |
|
2377 | 187 |
|
1860 | 188 |
if(b) |
189 |
{ |
|
190 |
chatNicks->insertAction(0, acKick); |
|
1921 | 191 |
// chatNicks->insertAction(0, acBan); |
1860 | 192 |
} |
193 |
} |