author | unc0rr |
Fri, 28 Nov 2008 16:45:31 +0000 | |
changeset 1520 | f72f538eba05 |
parent 1516 | bb9fa5809c49 |
child 1521 | 971f523d7c01 |
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> |
480 | 4 |
* |
5 |
* This program is free software; you can redistribute it and/or modify |
|
6 |
* it under the terms of the GNU General Public License as published by |
|
7 |
* the Free Software Foundation; version 2 of the License |
|
8 |
* |
|
9 |
* This program is distributed in the hope that it will be useful, |
|
10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 |
* GNU General Public License for more details. |
|
13 |
* |
|
14 |
* You should have received a copy of the GNU General Public License |
|
15 |
* along with this program; if not, write to the Free Software |
|
16 |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA |
|
17 |
*/ |
|
18 |
||
1520
f72f538eba05
Refactor chat widget to use QTextBrower instead of QListWidget:
unc0rr
parents:
1516
diff
changeset
|
19 |
#include <QTextBrowser> |
461 | 20 |
#include <QListWidget> |
21 |
#include <QLineEdit> |
|
1391 | 22 |
#include <QAction> |
461 | 23 |
|
24 |
#include "chatwidget.h" |
|
25 |
||
26 |
HWChatWidget::HWChatWidget(QWidget* parent) : |
|
27 |
QWidget(parent), |
|
28 |
mainLayout(this) |
|
29 |
{ |
|
30 |
mainLayout.setSpacing(1); |
|
31 |
mainLayout.setMargin(1); |
|
462 | 32 |
mainLayout.setSizeConstraint(QLayout::SetMinimumSize); |
464 | 33 |
mainLayout.setColumnStretch(0, 75); |
34 |
mainLayout.setColumnStretch(1, 25); |
|
461 | 35 |
|
36 |
chatEditLine = new QLineEdit(this); |
|
37 |
connect(chatEditLine, SIGNAL(returnPressed()), this, SLOT(returnPressed())); |
|
38 |
||
463 | 39 |
mainLayout.addWidget(chatEditLine, 1, 0, 1, 2); |
462 | 40 |
|
1520
f72f538eba05
Refactor chat widget to use QTextBrower instead of QListWidget:
unc0rr
parents:
1516
diff
changeset
|
41 |
chatText = new QTextBrowser(this); |
f72f538eba05
Refactor chat widget to use QTextBrower instead of QListWidget:
unc0rr
parents:
1516
diff
changeset
|
42 |
chatText->setMinimumHeight(20); |
462 | 43 |
chatText->setMinimumWidth(10); |
463 | 44 |
chatText->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding); |
461 | 45 |
mainLayout.addWidget(chatText, 0, 0); |
462 | 46 |
|
47 |
chatNicks = new QListWidget(this); |
|
48 |
chatNicks->setMinimumHeight(10); |
|
49 |
chatNicks->setMinimumWidth(10); |
|
463 | 50 |
chatNicks->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding); |
1391 | 51 |
chatNicks->setContextMenuPolicy(Qt::ActionsContextMenu); |
462 | 52 |
mainLayout.addWidget(chatNicks, 0, 1); |
1391 | 53 |
|
54 |
QAction * acBan = new QAction(QAction::tr("Kick"), chatNicks); |
|
55 |
connect(acBan, SIGNAL(triggered(bool)), this, SLOT(onKick())); |
|
56 |
chatNicks->insertAction(0, acBan); |
|
461 | 57 |
} |
58 |
||
59 |
void HWChatWidget::returnPressed() |
|
60 |
{ |
|
61 |
emit chatLine(chatEditLine->text()); |
|
62 |
chatEditLine->clear(); |
|
63 |
} |
|
64 |
||
1360 | 65 |
void HWChatWidget::onChatString(const QString& str) |
461 | 66 |
{ |
1520
f72f538eba05
Refactor chat widget to use QTextBrower instead of QListWidget:
unc0rr
parents:
1516
diff
changeset
|
67 |
if (chatStrings.size() > 250) |
f72f538eba05
Refactor chat widget to use QTextBrower instead of QListWidget:
unc0rr
parents:
1516
diff
changeset
|
68 |
chatStrings.removeFirst(); |
1516
bb9fa5809c49
Limit chat history to 250 entries to avoid DoS attack with its use
unc0rr
parents:
1457
diff
changeset
|
69 |
|
1520
f72f538eba05
Refactor chat widget to use QTextBrower instead of QListWidget:
unc0rr
parents:
1516
diff
changeset
|
70 |
chatStrings.append(str); |
f72f538eba05
Refactor chat widget to use QTextBrower instead of QListWidget:
unc0rr
parents:
1516
diff
changeset
|
71 |
|
f72f538eba05
Refactor chat widget to use QTextBrower instead of QListWidget:
unc0rr
parents:
1516
diff
changeset
|
72 |
chatText->setPlainText(chatStrings.join("\n")); |
1516
bb9fa5809c49
Limit chat history to 250 entries to avoid DoS attack with its use
unc0rr
parents:
1457
diff
changeset
|
73 |
|
1520
f72f538eba05
Refactor chat widget to use QTextBrower instead of QListWidget:
unc0rr
parents:
1516
diff
changeset
|
74 |
chatText->moveCursor(QTextCursor::End); |
461 | 75 |
} |
465 | 76 |
|
77 |
void HWChatWidget::nickAdded(const QString& nick) |
|
78 |
{ |
|
1391 | 79 |
QListWidgetItem * item = new QListWidgetItem(nick); |
80 |
chatNicks->addItem(item); |
|
465 | 81 |
} |
82 |
||
83 |
void HWChatWidget::nickRemoved(const QString& nick) |
|
84 |
{ |
|
1520
f72f538eba05
Refactor chat widget to use QTextBrower instead of QListWidget:
unc0rr
parents:
1516
diff
changeset
|
85 |
QList<QListWidgetItem *> items = chatNicks->findItems(nick, Qt::MatchExactly); |
f72f538eba05
Refactor chat widget to use QTextBrower instead of QListWidget:
unc0rr
parents:
1516
diff
changeset
|
86 |
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
|
87 |
chatNicks->takeItem(chatNicks->row(*it)); |
f72f538eba05
Refactor chat widget to use QTextBrower instead of QListWidget:
unc0rr
parents:
1516
diff
changeset
|
88 |
++it; |
f72f538eba05
Refactor chat widget to use QTextBrower instead of QListWidget:
unc0rr
parents:
1516
diff
changeset
|
89 |
} |
465 | 90 |
} |
91 |
||
92 |
void HWChatWidget::clear() |
|
93 |
{ |
|
1311 | 94 |
chatText->clear(); |
1520
f72f538eba05
Refactor chat widget to use QTextBrower instead of QListWidget:
unc0rr
parents:
1516
diff
changeset
|
95 |
chatStrings.clear(); |
1311 | 96 |
chatNicks->clear(); |
465 | 97 |
} |
1391 | 98 |
|
99 |
void HWChatWidget::onKick() |
|
100 |
{ |
|
101 |
QListWidgetItem * curritem = chatNicks->currentItem(); |
|
102 |
if (curritem) |
|
103 |
emit kick(curritem->text()); |
|
104 |
} |
|
1405 | 105 |
|
106 |
void HWChatWidget::setReadyStatus(const QString & nick, bool isReady) |
|
107 |
{ |
|
108 |
QList<QListWidgetItem *> items = chatNicks->findItems(nick, Qt::MatchExactly); |
|
109 |
if (items.size() != 1) |
|
110 |
{ |
|
111 |
qWarning("Bug: cannot find user in chat"); |
|
112 |
return; |
|
113 |
} |
|
114 |
||
115 |
if(isReady) |
|
1457 | 116 |
items[0]->setIcon(QIcon(":/res/lightbulb_on.png")); |
1405 | 117 |
else |
1457 | 118 |
items[0]->setIcon(QIcon(":/res/lightbulb_off.png")); |
1405 | 119 |
} |