author | koda |
Sun, 18 Oct 2009 14:44:06 +0000 | |
changeset 2550 | 3f84392522cf |
parent 2428 | 6800f8aa0184 |
child 2706 | 935b7d618cf0 |
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 <QListWidget> |
22 |
#include <QLineEdit> |
|
1391 | 23 |
#include <QAction> |
1577 | 24 |
#include <QApplication> |
1587 | 25 |
#include <QTextDocument> |
461 | 26 |
|
27 |
#include "chatwidget.h" |
|
28 |
||
29 |
HWChatWidget::HWChatWidget(QWidget* parent) : |
|
30 |
QWidget(parent), |
|
31 |
mainLayout(this) |
|
32 |
{ |
|
1577 | 33 |
mainLayout.setSpacing(1); |
34 |
mainLayout.setMargin(1); |
|
35 |
mainLayout.setSizeConstraint(QLayout::SetMinimumSize); |
|
36 |
mainLayout.setColumnStretch(0, 75); |
|
37 |
mainLayout.setColumnStretch(1, 25); |
|
461 | 38 |
|
1577 | 39 |
chatEditLine = new QLineEdit(this); |
40 |
chatEditLine->setMaxLength(300); |
|
41 |
connect(chatEditLine, SIGNAL(returnPressed()), this, SLOT(returnPressed())); |
|
461 | 42 |
|
1577 | 43 |
mainLayout.addWidget(chatEditLine, 1, 0, 1, 2); |
462 | 44 |
|
1577 | 45 |
chatText = new QTextBrowser(this); |
46 |
chatText->setMinimumHeight(20); |
|
47 |
chatText->setMinimumWidth(10); |
|
48 |
chatText->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding); |
|
1589 | 49 |
chatText->setOpenExternalLinks(true); |
1577 | 50 |
mainLayout.addWidget(chatText, 0, 0); |
462 | 51 |
|
1577 | 52 |
chatNicks = new QListWidget(this); |
53 |
chatNicks->setMinimumHeight(10); |
|
54 |
chatNicks->setMinimumWidth(10); |
|
1666 | 55 |
chatNicks->setSortingEnabled(true); |
1577 | 56 |
chatNicks->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding); |
57 |
chatNicks->setContextMenuPolicy(Qt::ActionsContextMenu); |
|
58 |
mainLayout.addWidget(chatNicks, 0, 1); |
|
1391 | 59 |
|
1860 | 60 |
acInfo = new QAction(QAction::tr("Info"), chatNicks); |
1577 | 61 |
connect(acInfo, SIGNAL(triggered(bool)), this, SLOT(onInfo())); |
1860 | 62 |
acKick = new QAction(QAction::tr("Kick"), chatNicks); |
63 |
connect(acKick, SIGNAL(triggered(bool)), this, SLOT(onKick())); |
|
64 |
acBan = new QAction(QAction::tr("Ban"), chatNicks); |
|
65 |
connect(acBan, SIGNAL(triggered(bool)), this, SLOT(onBan())); |
|
2377 | 66 |
|
1577 | 67 |
chatNicks->insertAction(0, acInfo); |
461 | 68 |
} |
69 |
||
70 |
void HWChatWidget::returnPressed() |
|
71 |
{ |
|
1577 | 72 |
emit chatLine(chatEditLine->text()); |
73 |
chatEditLine->clear(); |
|
461 | 74 |
} |
75 |
||
1360 | 76 |
void HWChatWidget::onChatString(const QString& str) |
461 | 77 |
{ |
1520
f72f538eba05
Refactor chat widget to use QTextBrower instead of QListWidget:
unc0rr
parents:
1516
diff
changeset
|
78 |
if (chatStrings.size() > 250) |
f72f538eba05
Refactor chat widget to use QTextBrower instead of QListWidget:
unc0rr
parents:
1516
diff
changeset
|
79 |
chatStrings.removeFirst(); |
1626 | 80 |
|
2396 | 81 |
QString formattedStr = Qt::escape(str.mid(1)); |
82 |
if (str.startsWith("\x03")) |
|
1626 | 83 |
formattedStr = QString("<font color=grey>%1</font>").arg(formattedStr); |
2396 | 84 |
else if (str.startsWith("\x02")) |
85 |
formattedStr = QString("<font color=magenta>%1</font>").arg(formattedStr); |
|
86 |
||
2377 | 87 |
|
1626 | 88 |
chatStrings.append(formattedStr); |
2377 | 89 |
|
1587 | 90 |
chatText->setHtml(chatStrings.join("<br>")); |
91 |
||
92 |
chatText->moveCursor(QTextCursor::End); |
|
93 |
} |
|
94 |
||
95 |
void HWChatWidget::onServerMessage(const QString& str) |
|
96 |
{ |
|
97 |
if (chatStrings.size() > 250) |
|
98 |
chatStrings.removeFirst(); |
|
2377 | 99 |
|
1588 | 100 |
chatStrings.append("<hr>" + str + "<hr>"); |
2377 | 101 |
|
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
|
102 |
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
|
103 |
|
1520
f72f538eba05
Refactor chat widget to use QTextBrower instead of QListWidget:
unc0rr
parents:
1516
diff
changeset
|
104 |
chatText->moveCursor(QTextCursor::End); |
461 | 105 |
} |
465 | 106 |
|
107 |
void HWChatWidget::nickAdded(const QString& nick) |
|
108 |
{ |
|
1391 | 109 |
QListWidgetItem * item = new QListWidgetItem(nick); |
2428 | 110 |
item->setIcon(QIcon(":/res/hh_small.png")); |
1391 | 111 |
chatNicks->addItem(item); |
465 | 112 |
} |
113 |
||
114 |
void HWChatWidget::nickRemoved(const QString& nick) |
|
115 |
{ |
|
1520
f72f538eba05
Refactor chat widget to use QTextBrower instead of QListWidget:
unc0rr
parents:
1516
diff
changeset
|
116 |
QList<QListWidgetItem *> items = chatNicks->findItems(nick, Qt::MatchExactly); |
f72f538eba05
Refactor chat widget to use QTextBrower instead of QListWidget:
unc0rr
parents:
1516
diff
changeset
|
117 |
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
|
118 |
chatNicks->takeItem(chatNicks->row(*it)); |
f72f538eba05
Refactor chat widget to use QTextBrower instead of QListWidget:
unc0rr
parents:
1516
diff
changeset
|
119 |
++it; |
f72f538eba05
Refactor chat widget to use QTextBrower instead of QListWidget:
unc0rr
parents:
1516
diff
changeset
|
120 |
} |
465 | 121 |
} |
122 |
||
123 |
void HWChatWidget::clear() |
|
124 |
{ |
|
1311 | 125 |
chatText->clear(); |
1520
f72f538eba05
Refactor chat widget to use QTextBrower instead of QListWidget:
unc0rr
parents:
1516
diff
changeset
|
126 |
chatStrings.clear(); |
1311 | 127 |
chatNicks->clear(); |
465 | 128 |
} |
1391 | 129 |
|
130 |
void HWChatWidget::onKick() |
|
131 |
{ |
|
132 |
QListWidgetItem * curritem = chatNicks->currentItem(); |
|
133 |
if (curritem) |
|
134 |
emit kick(curritem->text()); |
|
135 |
} |
|
1405 | 136 |
|
1860 | 137 |
void HWChatWidget::onBan() |
138 |
{ |
|
139 |
QListWidgetItem * curritem = chatNicks->currentItem(); |
|
140 |
if (curritem) |
|
141 |
emit ban(curritem->text()); |
|
142 |
} |
|
143 |
||
1577 | 144 |
void HWChatWidget::onInfo() |
145 |
{ |
|
146 |
QListWidgetItem * curritem = chatNicks->currentItem(); |
|
147 |
if (curritem) |
|
148 |
emit info(curritem->text()); |
|
149 |
} |
|
150 |
||
1405 | 151 |
void HWChatWidget::setReadyStatus(const QString & nick, bool isReady) |
152 |
{ |
|
153 |
QList<QListWidgetItem *> items = chatNicks->findItems(nick, Qt::MatchExactly); |
|
154 |
if (items.size() != 1) |
|
155 |
{ |
|
156 |
qWarning("Bug: cannot find user in chat"); |
|
157 |
return; |
|
158 |
} |
|
159 |
||
160 |
if(isReady) |
|
1457 | 161 |
items[0]->setIcon(QIcon(":/res/lightbulb_on.png")); |
1405 | 162 |
else |
1457 | 163 |
items[0]->setIcon(QIcon(":/res/lightbulb_off.png")); |
1405 | 164 |
} |
1860 | 165 |
|
166 |
void HWChatWidget::adminAccess(bool b) |
|
167 |
{ |
|
168 |
chatNicks->removeAction(acKick); |
|
169 |
chatNicks->removeAction(acBan); |
|
2377 | 170 |
|
1860 | 171 |
if(b) |
172 |
{ |
|
173 |
chatNicks->insertAction(0, acKick); |
|
1921 | 174 |
// chatNicks->insertAction(0, acBan); |
1860 | 175 |
} |
176 |
} |