author | unc0rr |
Tue, 13 Jan 2009 20:40:43 +0000 | |
changeset 1666 | b66e014510e7 |
parent 1626 | 58fd5bc49a04 |
child 1860 | ce140b2b928a |
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 |
|
1577 | 60 |
QAction * acBan = new QAction(QAction::tr("Kick"), chatNicks); |
61 |
connect(acBan, SIGNAL(triggered(bool)), this, SLOT(onKick())); |
|
62 |
chatNicks->insertAction(0, acBan); |
|
63 |
||
64 |
QAction * acInfo = new QAction(QAction::tr("Info"), chatNicks); |
|
65 |
connect(acInfo, SIGNAL(triggered(bool)), this, SLOT(onInfo())); |
|
66 |
chatNicks->insertAction(0, acInfo); |
|
461 | 67 |
} |
68 |
||
69 |
void HWChatWidget::returnPressed() |
|
70 |
{ |
|
1577 | 71 |
emit chatLine(chatEditLine->text()); |
72 |
chatEditLine->clear(); |
|
461 | 73 |
} |
74 |
||
1360 | 75 |
void HWChatWidget::onChatString(const QString& str) |
461 | 76 |
{ |
1520
f72f538eba05
Refactor chat widget to use QTextBrower instead of QListWidget:
unc0rr
parents:
1516
diff
changeset
|
77 |
if (chatStrings.size() > 250) |
f72f538eba05
Refactor chat widget to use QTextBrower instead of QListWidget:
unc0rr
parents:
1516
diff
changeset
|
78 |
chatStrings.removeFirst(); |
1626 | 79 |
|
80 |
QString formattedStr = Qt::escape(str); |
|
81 |
if (formattedStr.startsWith("***")) |
|
82 |
formattedStr = QString("<font color=grey>%1</font>").arg(formattedStr); |
|
1516
bb9fa5809c49
Limit chat history to 250 entries to avoid DoS attack with its use
unc0rr
parents:
1457
diff
changeset
|
83 |
|
1626 | 84 |
chatStrings.append(formattedStr); |
1587 | 85 |
|
86 |
chatText->setHtml(chatStrings.join("<br>")); |
|
87 |
||
88 |
chatText->moveCursor(QTextCursor::End); |
|
89 |
} |
|
90 |
||
91 |
void HWChatWidget::onServerMessage(const QString& str) |
|
92 |
{ |
|
93 |
if (chatStrings.size() > 250) |
|
94 |
chatStrings.removeFirst(); |
|
95 |
||
1588 | 96 |
chatStrings.append("<hr>" + str + "<hr>"); |
1520
f72f538eba05
Refactor chat widget to use QTextBrower instead of QListWidget:
unc0rr
parents:
1516
diff
changeset
|
97 |
|
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
|
98 |
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
|
99 |
|
1520
f72f538eba05
Refactor chat widget to use QTextBrower instead of QListWidget:
unc0rr
parents:
1516
diff
changeset
|
100 |
chatText->moveCursor(QTextCursor::End); |
461 | 101 |
} |
465 | 102 |
|
103 |
void HWChatWidget::nickAdded(const QString& nick) |
|
104 |
{ |
|
1391 | 105 |
QListWidgetItem * item = new QListWidgetItem(nick); |
106 |
chatNicks->addItem(item); |
|
465 | 107 |
} |
108 |
||
109 |
void HWChatWidget::nickRemoved(const QString& nick) |
|
110 |
{ |
|
1520
f72f538eba05
Refactor chat widget to use QTextBrower instead of QListWidget:
unc0rr
parents:
1516
diff
changeset
|
111 |
QList<QListWidgetItem *> items = chatNicks->findItems(nick, Qt::MatchExactly); |
f72f538eba05
Refactor chat widget to use QTextBrower instead of QListWidget:
unc0rr
parents:
1516
diff
changeset
|
112 |
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
|
113 |
chatNicks->takeItem(chatNicks->row(*it)); |
f72f538eba05
Refactor chat widget to use QTextBrower instead of QListWidget:
unc0rr
parents:
1516
diff
changeset
|
114 |
++it; |
f72f538eba05
Refactor chat widget to use QTextBrower instead of QListWidget:
unc0rr
parents:
1516
diff
changeset
|
115 |
} |
465 | 116 |
} |
117 |
||
118 |
void HWChatWidget::clear() |
|
119 |
{ |
|
1311 | 120 |
chatText->clear(); |
1520
f72f538eba05
Refactor chat widget to use QTextBrower instead of QListWidget:
unc0rr
parents:
1516
diff
changeset
|
121 |
chatStrings.clear(); |
1311 | 122 |
chatNicks->clear(); |
465 | 123 |
} |
1391 | 124 |
|
125 |
void HWChatWidget::onKick() |
|
126 |
{ |
|
127 |
QListWidgetItem * curritem = chatNicks->currentItem(); |
|
128 |
if (curritem) |
|
129 |
emit kick(curritem->text()); |
|
130 |
} |
|
1405 | 131 |
|
1577 | 132 |
void HWChatWidget::onInfo() |
133 |
{ |
|
134 |
QListWidgetItem * curritem = chatNicks->currentItem(); |
|
135 |
if (curritem) |
|
136 |
emit info(curritem->text()); |
|
137 |
} |
|
138 |
||
1405 | 139 |
void HWChatWidget::setReadyStatus(const QString & nick, bool isReady) |
140 |
{ |
|
141 |
QList<QListWidgetItem *> items = chatNicks->findItems(nick, Qt::MatchExactly); |
|
142 |
if (items.size() != 1) |
|
143 |
{ |
|
144 |
qWarning("Bug: cannot find user in chat"); |
|
145 |
return; |
|
146 |
} |
|
147 |
||
148 |
if(isReady) |
|
1457 | 149 |
items[0]->setIcon(QIcon(":/res/lightbulb_on.png")); |
1405 | 150 |
else |
1457 | 151 |
items[0]->setIcon(QIcon(":/res/lightbulb_off.png")); |
1405 | 152 |
} |