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