QTfrontend/chatwidget.cpp
author nemo
Tue, 09 Feb 2010 02:03:31 +0000
changeset 2775 3445ce5e9c79
parent 2774 a4fd9eacd286
child 2776 9572aae13d49
permissions -rw-r--r--
Only beep in room, load sound in constructor
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
480
09434d6c3865 GPL headers added
displacer
parents: 465
diff changeset
     1
/*
1066
1f1b3686a2b0 Update copyright headers a bit
unc0rr
parents: 575
diff changeset
     2
 * Hedgewars, a free turn based strategy game
486
7ea71cd3acd5 - Change proto version to 4
unc0rr
parents: 480
diff changeset
     3
 * Copyright (c) 2007 Igor Ulyanov <iulyanov@gmail.com>
1577
e3e37c730dc0 - Decrease font size in chat
unc0rr
parents: 1521
diff changeset
     4
 * Copyright (c) 2009 Andrey Korotaev <unC0Rr@gmail.com>
480
09434d6c3865 GPL headers added
displacer
parents: 465
diff changeset
     5
 *
09434d6c3865 GPL headers added
displacer
parents: 465
diff changeset
     6
 * This program is free software; you can redistribute it and/or modify
09434d6c3865 GPL headers added
displacer
parents: 465
diff changeset
     7
 * it under the terms of the GNU General Public License as published by
09434d6c3865 GPL headers added
displacer
parents: 465
diff changeset
     8
 * the Free Software Foundation; version 2 of the License
09434d6c3865 GPL headers added
displacer
parents: 465
diff changeset
     9
 *
09434d6c3865 GPL headers added
displacer
parents: 465
diff changeset
    10
 * This program is distributed in the hope that it will be useful,
09434d6c3865 GPL headers added
displacer
parents: 465
diff changeset
    11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
09434d6c3865 GPL headers added
displacer
parents: 465
diff changeset
    12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
09434d6c3865 GPL headers added
displacer
parents: 465
diff changeset
    13
 * GNU General Public License for more details.
09434d6c3865 GPL headers added
displacer
parents: 465
diff changeset
    14
 *
09434d6c3865 GPL headers added
displacer
parents: 465
diff changeset
    15
 * You should have received a copy of the GNU General Public License
09434d6c3865 GPL headers added
displacer
parents: 465
diff changeset
    16
 * along with this program; if not, write to the Free Software
09434d6c3865 GPL headers added
displacer
parents: 465
diff changeset
    17
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
09434d6c3865 GPL headers added
displacer
parents: 465
diff changeset
    18
 */
09434d6c3865 GPL headers added
displacer
parents: 465
diff changeset
    19
1520
f72f538eba05 Refactor chat widget to use QTextBrower instead of QListWidget:
unc0rr
parents: 1516
diff changeset
    20
#include <QTextBrowser>
461
105af110b0e6 chatWidget with layout
displacer
parents:
diff changeset
    21
#include <QLineEdit>
1391
735f6d43780b Implement kick
unc0rr
parents: 1360
diff changeset
    22
#include <QAction>
1577
e3e37c730dc0 - Decrease font size in chat
unc0rr
parents: 1521
diff changeset
    23
#include <QApplication>
1587
b8a3d449bed7 Don't escape chat strings which go to engine
unc0rr
parents: 1584
diff changeset
    24
#include <QTextDocument>
2773
e94f240a8a41 Have game beep when someone joins lobby/room. Controlled by Sound option
nemo
parents: 2706
diff changeset
    25
#include <QDir>
e94f240a8a41 Have game beep when someone joins lobby/room. Controlled by Sound option
nemo
parents: 2706
diff changeset
    26
#include <QSettings>
461
105af110b0e6 chatWidget with layout
displacer
parents:
diff changeset
    27
2773
e94f240a8a41 Have game beep when someone joins lobby/room. Controlled by Sound option
nemo
parents: 2706
diff changeset
    28
#include "hwconsts.h"
e94f240a8a41 Have game beep when someone joins lobby/room. Controlled by Sound option
nemo
parents: 2706
diff changeset
    29
#include "SDLs.h"
e94f240a8a41 Have game beep when someone joins lobby/room. Controlled by Sound option
nemo
parents: 2706
diff changeset
    30
#include "gameuiconfig.h"
461
105af110b0e6 chatWidget with layout
displacer
parents:
diff changeset
    31
#include "chatwidget.h"
105af110b0e6 chatWidget with layout
displacer
parents:
diff changeset
    32
2775
3445ce5e9c79 Only beep in room, load sound in constructor
nemo
parents: 2774
diff changeset
    33
HWChatWidget::HWChatWidget(QWidget* parent, QSettings * gameSettings, SDLInteraction * sdli, bool notify) :
461
105af110b0e6 chatWidget with layout
displacer
parents:
diff changeset
    34
  QWidget(parent),
105af110b0e6 chatWidget with layout
displacer
parents:
diff changeset
    35
  mainLayout(this)
105af110b0e6 chatWidget with layout
displacer
parents:
diff changeset
    36
{
2773
e94f240a8a41 Have game beep when someone joins lobby/room. Controlled by Sound option
nemo
parents: 2706
diff changeset
    37
    this->gameSettings = gameSettings;
e94f240a8a41 Have game beep when someone joins lobby/room. Controlled by Sound option
nemo
parents: 2706
diff changeset
    38
    this->sdli = sdli;
2775
3445ce5e9c79 Only beep in room, load sound in constructor
nemo
parents: 2774
diff changeset
    39
    this->notify = notify;
3445ce5e9c79 Only beep in room, load sound in constructor
nemo
parents: 2774
diff changeset
    40
    if(notify && gameSettings->value("audio/sound", true).toBool()) {
3445ce5e9c79 Only beep in room, load sound in constructor
nemo
parents: 2774
diff changeset
    41
       QDir tmpdir;
3445ce5e9c79 Only beep in room, load sound in constructor
nemo
parents: 2774
diff changeset
    42
3445ce5e9c79 Only beep in room, load sound in constructor
nemo
parents: 2774
diff changeset
    43
       tmpdir.cd(datadir->absolutePath());
3445ce5e9c79 Only beep in room, load sound in constructor
nemo
parents: 2774
diff changeset
    44
       tmpdir.cd("Sounds/");
3445ce5e9c79 Only beep in room, load sound in constructor
nemo
parents: 2774
diff changeset
    45
       sdli->SDLMusicInit();
3445ce5e9c79 Only beep in room, load sound in constructor
nemo
parents: 2774
diff changeset
    46
       sound = Mix_LoadWAV(QString(tmpdir.absolutePath() + "/switchhog.ogg").toLocal8Bit().constData());
3445ce5e9c79 Only beep in room, load sound in constructor
nemo
parents: 2774
diff changeset
    47
    }
2773
e94f240a8a41 Have game beep when someone joins lobby/room. Controlled by Sound option
nemo
parents: 2706
diff changeset
    48
1577
e3e37c730dc0 - Decrease font size in chat
unc0rr
parents: 1521
diff changeset
    49
	mainLayout.setSpacing(1);
e3e37c730dc0 - Decrease font size in chat
unc0rr
parents: 1521
diff changeset
    50
	mainLayout.setMargin(1);
e3e37c730dc0 - Decrease font size in chat
unc0rr
parents: 1521
diff changeset
    51
	mainLayout.setSizeConstraint(QLayout::SetMinimumSize);
e3e37c730dc0 - Decrease font size in chat
unc0rr
parents: 1521
diff changeset
    52
	mainLayout.setColumnStretch(0, 75);
e3e37c730dc0 - Decrease font size in chat
unc0rr
parents: 1521
diff changeset
    53
	mainLayout.setColumnStretch(1, 25);
461
105af110b0e6 chatWidget with layout
displacer
parents:
diff changeset
    54
1577
e3e37c730dc0 - Decrease font size in chat
unc0rr
parents: 1521
diff changeset
    55
	chatEditLine = new QLineEdit(this);
e3e37c730dc0 - Decrease font size in chat
unc0rr
parents: 1521
diff changeset
    56
	chatEditLine->setMaxLength(300);
e3e37c730dc0 - Decrease font size in chat
unc0rr
parents: 1521
diff changeset
    57
	connect(chatEditLine, SIGNAL(returnPressed()), this, SLOT(returnPressed()));
461
105af110b0e6 chatWidget with layout
displacer
parents:
diff changeset
    58
1577
e3e37c730dc0 - Decrease font size in chat
unc0rr
parents: 1521
diff changeset
    59
	mainLayout.addWidget(chatEditLine, 1, 0, 1, 2);
462
91baab07b79a resizing and grid problems
displacer
parents: 461
diff changeset
    60
1577
e3e37c730dc0 - Decrease font size in chat
unc0rr
parents: 1521
diff changeset
    61
	chatText = new QTextBrowser(this);
e3e37c730dc0 - Decrease font size in chat
unc0rr
parents: 1521
diff changeset
    62
	chatText->setMinimumHeight(20);
e3e37c730dc0 - Decrease font size in chat
unc0rr
parents: 1521
diff changeset
    63
	chatText->setMinimumWidth(10);
e3e37c730dc0 - Decrease font size in chat
unc0rr
parents: 1521
diff changeset
    64
	chatText->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding);
1589
53eb1d3953ef Correctly handle urls in chat widget
unc0rr
parents: 1588
diff changeset
    65
	chatText->setOpenExternalLinks(true);
1577
e3e37c730dc0 - Decrease font size in chat
unc0rr
parents: 1521
diff changeset
    66
	mainLayout.addWidget(chatText, 0, 0);
462
91baab07b79a resizing and grid problems
displacer
parents: 461
diff changeset
    67
1577
e3e37c730dc0 - Decrease font size in chat
unc0rr
parents: 1521
diff changeset
    68
	chatNicks = new QListWidget(this);
e3e37c730dc0 - Decrease font size in chat
unc0rr
parents: 1521
diff changeset
    69
	chatNicks->setMinimumHeight(10);
e3e37c730dc0 - Decrease font size in chat
unc0rr
parents: 1521
diff changeset
    70
	chatNicks->setMinimumWidth(10);
1666
b66e014510e7 Sort nicks in chat widget
unc0rr
parents: 1626
diff changeset
    71
	chatNicks->setSortingEnabled(true);
1577
e3e37c730dc0 - Decrease font size in chat
unc0rr
parents: 1521
diff changeset
    72
	chatNicks->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding);
e3e37c730dc0 - Decrease font size in chat
unc0rr
parents: 1521
diff changeset
    73
	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
    74
	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
    75
		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
    76
1577
e3e37c730dc0 - Decrease font size in chat
unc0rr
parents: 1521
diff changeset
    77
	mainLayout.addWidget(chatNicks, 0, 1);
1391
735f6d43780b Implement kick
unc0rr
parents: 1360
diff changeset
    78
1860
ce140b2b928a Some work on players lists context menus
unc0rr
parents: 1666
diff changeset
    79
	acInfo = new QAction(QAction::tr("Info"), chatNicks);
1577
e3e37c730dc0 - Decrease font size in chat
unc0rr
parents: 1521
diff changeset
    80
	connect(acInfo, SIGNAL(triggered(bool)), this, SLOT(onInfo()));
1860
ce140b2b928a Some work on players lists context menus
unc0rr
parents: 1666
diff changeset
    81
	acKick = new QAction(QAction::tr("Kick"), chatNicks);
ce140b2b928a Some work on players lists context menus
unc0rr
parents: 1666
diff changeset
    82
	connect(acKick, SIGNAL(triggered(bool)), this, SLOT(onKick()));
ce140b2b928a Some work on players lists context menus
unc0rr
parents: 1666
diff changeset
    83
	acBan = new QAction(QAction::tr("Ban"), chatNicks);
ce140b2b928a Some work on players lists context menus
unc0rr
parents: 1666
diff changeset
    84
	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
    85
	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
    86
	connect(acFollow, SIGNAL(triggered(bool)), this, SLOT(onFollow()));
2377
f3fab2b09e0c And in frontend
nemo
parents: 1921
diff changeset
    87
1577
e3e37c730dc0 - Decrease font size in chat
unc0rr
parents: 1521
diff changeset
    88
	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
    89
	chatNicks->insertAction(0, acFollow);
461
105af110b0e6 chatWidget with layout
displacer
parents:
diff changeset
    90
}
105af110b0e6 chatWidget with layout
displacer
parents:
diff changeset
    91
105af110b0e6 chatWidget with layout
displacer
parents:
diff changeset
    92
void HWChatWidget::returnPressed()
105af110b0e6 chatWidget with layout
displacer
parents:
diff changeset
    93
{
1577
e3e37c730dc0 - Decrease font size in chat
unc0rr
parents: 1521
diff changeset
    94
	emit chatLine(chatEditLine->text());
e3e37c730dc0 - Decrease font size in chat
unc0rr
parents: 1521
diff changeset
    95
	chatEditLine->clear();
461
105af110b0e6 chatWidget with layout
displacer
parents:
diff changeset
    96
}
105af110b0e6 chatWidget with layout
displacer
parents:
diff changeset
    97
1360
d3e285281c26 Fix doubling chat message
unc0rr
parents: 1357
diff changeset
    98
void HWChatWidget::onChatString(const QString& str)
461
105af110b0e6 chatWidget with layout
displacer
parents:
diff changeset
    99
{
1520
f72f538eba05 Refactor chat widget to use QTextBrower instead of QListWidget:
unc0rr
parents: 1516
diff changeset
   100
	if (chatStrings.size() > 250)
f72f538eba05 Refactor chat widget to use QTextBrower instead of QListWidget:
unc0rr
parents: 1516
diff changeset
   101
		chatStrings.removeFirst();
1626
58fd5bc49a04 Colorize join/quit messages
unc0rr
parents: 1589
diff changeset
   102
2396
e13a1117152b Colorize chat messages in frontend and engine
unc0rr
parents: 2380
diff changeset
   103
	QString formattedStr = Qt::escape(str.mid(1));
e13a1117152b Colorize chat messages in frontend and engine
unc0rr
parents: 2380
diff changeset
   104
	if (str.startsWith("\x03"))
1626
58fd5bc49a04 Colorize join/quit messages
unc0rr
parents: 1589
diff changeset
   105
		formattedStr = QString("<font color=grey>%1</font>").arg(formattedStr);
2396
e13a1117152b Colorize chat messages in frontend and engine
unc0rr
parents: 2380
diff changeset
   106
	else if (str.startsWith("\x02"))
e13a1117152b Colorize chat messages in frontend and engine
unc0rr
parents: 2380
diff changeset
   107
		formattedStr = QString("<font color=magenta>%1</font>").arg(formattedStr);
e13a1117152b Colorize chat messages in frontend and engine
unc0rr
parents: 2380
diff changeset
   108
2377
f3fab2b09e0c And in frontend
nemo
parents: 1921
diff changeset
   109
1626
58fd5bc49a04 Colorize join/quit messages
unc0rr
parents: 1589
diff changeset
   110
	chatStrings.append(formattedStr);
2377
f3fab2b09e0c And in frontend
nemo
parents: 1921
diff changeset
   111
1587
b8a3d449bed7 Don't escape chat strings which go to engine
unc0rr
parents: 1584
diff changeset
   112
	chatText->setHtml(chatStrings.join("<br>"));
b8a3d449bed7 Don't escape chat strings which go to engine
unc0rr
parents: 1584
diff changeset
   113
b8a3d449bed7 Don't escape chat strings which go to engine
unc0rr
parents: 1584
diff changeset
   114
	chatText->moveCursor(QTextCursor::End);
b8a3d449bed7 Don't escape chat strings which go to engine
unc0rr
parents: 1584
diff changeset
   115
}
b8a3d449bed7 Don't escape chat strings which go to engine
unc0rr
parents: 1584
diff changeset
   116
b8a3d449bed7 Don't escape chat strings which go to engine
unc0rr
parents: 1584
diff changeset
   117
void HWChatWidget::onServerMessage(const QString& str)
b8a3d449bed7 Don't escape chat strings which go to engine
unc0rr
parents: 1584
diff changeset
   118
{
b8a3d449bed7 Don't escape chat strings which go to engine
unc0rr
parents: 1584
diff changeset
   119
	if (chatStrings.size() > 250)
b8a3d449bed7 Don't escape chat strings which go to engine
unc0rr
parents: 1584
diff changeset
   120
		chatStrings.removeFirst();
2377
f3fab2b09e0c And in frontend
nemo
parents: 1921
diff changeset
   121
1588
0988ae7771d3 Place server message between two horizontal lines
unc0rr
parents: 1587
diff changeset
   122
	chatStrings.append("<hr>" + str + "<hr>");
2377
f3fab2b09e0c And in frontend
nemo
parents: 1921
diff changeset
   123
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
   124
	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
   125
1520
f72f538eba05 Refactor chat widget to use QTextBrower instead of QListWidget:
unc0rr
parents: 1516
diff changeset
   126
	chatText->moveCursor(QTextCursor::End);
461
105af110b0e6 chatWidget with layout
displacer
parents:
diff changeset
   127
}
465
07eca0a2546c chatWidget with nicks ready
displacer
parents: 464
diff changeset
   128
07eca0a2546c chatWidget with nicks ready
displacer
parents: 464
diff changeset
   129
void HWChatWidget::nickAdded(const QString& nick)
07eca0a2546c chatWidget with nicks ready
displacer
parents: 464
diff changeset
   130
{
1391
735f6d43780b Implement kick
unc0rr
parents: 1360
diff changeset
   131
	QListWidgetItem * item = new QListWidgetItem(nick);
2428
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2396
diff changeset
   132
	item->setIcon(QIcon(":/res/hh_small.png"));
1391
735f6d43780b Implement kick
unc0rr
parents: 1360
diff changeset
   133
	chatNicks->addItem(item);
2773
e94f240a8a41 Have game beep when someone joins lobby/room. Controlled by Sound option
nemo
parents: 2706
diff changeset
   134
2775
3445ce5e9c79 Only beep in room, load sound in constructor
nemo
parents: 2774
diff changeset
   135
    if(notify && gameSettings->value("audio/sound", true).toBool()) {
2774
a4fd9eacd286 Switch to PlayChannel so as not to interrupt background music.
nemo
parents: 2773
diff changeset
   136
       Mix_PlayChannel(-1, sound, 0);
2773
e94f240a8a41 Have game beep when someone joins lobby/room. Controlled by Sound option
nemo
parents: 2706
diff changeset
   137
    }
465
07eca0a2546c chatWidget with nicks ready
displacer
parents: 464
diff changeset
   138
}
07eca0a2546c chatWidget with nicks ready
displacer
parents: 464
diff changeset
   139
07eca0a2546c chatWidget with nicks ready
displacer
parents: 464
diff changeset
   140
void HWChatWidget::nickRemoved(const QString& nick)
07eca0a2546c chatWidget with nicks ready
displacer
parents: 464
diff changeset
   141
{
1520
f72f538eba05 Refactor chat widget to use QTextBrower instead of QListWidget:
unc0rr
parents: 1516
diff changeset
   142
	QList<QListWidgetItem *> items = chatNicks->findItems(nick, Qt::MatchExactly);
f72f538eba05 Refactor chat widget to use QTextBrower instead of QListWidget:
unc0rr
parents: 1516
diff changeset
   143
	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
   144
		chatNicks->takeItem(chatNicks->row(*it));
f72f538eba05 Refactor chat widget to use QTextBrower instead of QListWidget:
unc0rr
parents: 1516
diff changeset
   145
		++it;
f72f538eba05 Refactor chat widget to use QTextBrower instead of QListWidget:
unc0rr
parents: 1516
diff changeset
   146
	}
465
07eca0a2546c chatWidget with nicks ready
displacer
parents: 464
diff changeset
   147
}
07eca0a2546c chatWidget with nicks ready
displacer
parents: 464
diff changeset
   148
07eca0a2546c chatWidget with nicks ready
displacer
parents: 464
diff changeset
   149
void HWChatWidget::clear()
07eca0a2546c chatWidget with nicks ready
displacer
parents: 464
diff changeset
   150
{
1311
49beb1221c0b - Add stub page for rooms list
unc0rr
parents: 1066
diff changeset
   151
	chatText->clear();
1520
f72f538eba05 Refactor chat widget to use QTextBrower instead of QListWidget:
unc0rr
parents: 1516
diff changeset
   152
	chatStrings.clear();
1311
49beb1221c0b - Add stub page for rooms list
unc0rr
parents: 1066
diff changeset
   153
	chatNicks->clear();
465
07eca0a2546c chatWidget with nicks ready
displacer
parents: 464
diff changeset
   154
}
1391
735f6d43780b Implement kick
unc0rr
parents: 1360
diff changeset
   155
735f6d43780b Implement kick
unc0rr
parents: 1360
diff changeset
   156
void HWChatWidget::onKick()
735f6d43780b Implement kick
unc0rr
parents: 1360
diff changeset
   157
{
735f6d43780b Implement kick
unc0rr
parents: 1360
diff changeset
   158
	QListWidgetItem * curritem = chatNicks->currentItem();
735f6d43780b Implement kick
unc0rr
parents: 1360
diff changeset
   159
	if (curritem)
735f6d43780b Implement kick
unc0rr
parents: 1360
diff changeset
   160
		emit kick(curritem->text());
735f6d43780b Implement kick
unc0rr
parents: 1360
diff changeset
   161
}
1405
ee4b28a1861d Show players ready status in chat nick list
unc0rr
parents: 1391
diff changeset
   162
1860
ce140b2b928a Some work on players lists context menus
unc0rr
parents: 1666
diff changeset
   163
void HWChatWidget::onBan()
ce140b2b928a Some work on players lists context menus
unc0rr
parents: 1666
diff changeset
   164
{
ce140b2b928a Some work on players lists context menus
unc0rr
parents: 1666
diff changeset
   165
	QListWidgetItem * curritem = chatNicks->currentItem();
ce140b2b928a Some work on players lists context menus
unc0rr
parents: 1666
diff changeset
   166
	if (curritem)
ce140b2b928a Some work on players lists context menus
unc0rr
parents: 1666
diff changeset
   167
		emit ban(curritem->text());
ce140b2b928a Some work on players lists context menus
unc0rr
parents: 1666
diff changeset
   168
}
ce140b2b928a Some work on players lists context menus
unc0rr
parents: 1666
diff changeset
   169
1577
e3e37c730dc0 - Decrease font size in chat
unc0rr
parents: 1521
diff changeset
   170
void HWChatWidget::onInfo()
e3e37c730dc0 - Decrease font size in chat
unc0rr
parents: 1521
diff changeset
   171
{
e3e37c730dc0 - Decrease font size in chat
unc0rr
parents: 1521
diff changeset
   172
	QListWidgetItem * curritem = chatNicks->currentItem();
e3e37c730dc0 - Decrease font size in chat
unc0rr
parents: 1521
diff changeset
   173
	if (curritem)
e3e37c730dc0 - Decrease font size in chat
unc0rr
parents: 1521
diff changeset
   174
		emit info(curritem->text());
e3e37c730dc0 - Decrease font size in chat
unc0rr
parents: 1521
diff changeset
   175
}
e3e37c730dc0 - Decrease font size in chat
unc0rr
parents: 1521
diff changeset
   176
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
   177
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
   178
{
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
   179
	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
   180
	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
   181
		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
   182
}
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
   183
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
   184
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
   185
{
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
   186
	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
   187
}
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
   188
1405
ee4b28a1861d Show players ready status in chat nick list
unc0rr
parents: 1391
diff changeset
   189
void HWChatWidget::setReadyStatus(const QString & nick, bool isReady)
ee4b28a1861d Show players ready status in chat nick list
unc0rr
parents: 1391
diff changeset
   190
{
ee4b28a1861d Show players ready status in chat nick list
unc0rr
parents: 1391
diff changeset
   191
	QList<QListWidgetItem *> items = chatNicks->findItems(nick, Qt::MatchExactly);
ee4b28a1861d Show players ready status in chat nick list
unc0rr
parents: 1391
diff changeset
   192
	if (items.size() != 1)
ee4b28a1861d Show players ready status in chat nick list
unc0rr
parents: 1391
diff changeset
   193
	{
ee4b28a1861d Show players ready status in chat nick list
unc0rr
parents: 1391
diff changeset
   194
		qWarning("Bug: cannot find user in chat");
ee4b28a1861d Show players ready status in chat nick list
unc0rr
parents: 1391
diff changeset
   195
		return;
ee4b28a1861d Show players ready status in chat nick list
unc0rr
parents: 1391
diff changeset
   196
	}
ee4b28a1861d Show players ready status in chat nick list
unc0rr
parents: 1391
diff changeset
   197
ee4b28a1861d Show players ready status in chat nick list
unc0rr
parents: 1391
diff changeset
   198
	if(isReady)
1457
44cc464de8f3 Add lightbulbs, some more changes to look
unc0rr
parents: 1405
diff changeset
   199
		items[0]->setIcon(QIcon(":/res/lightbulb_on.png"));
1405
ee4b28a1861d Show players ready status in chat nick list
unc0rr
parents: 1391
diff changeset
   200
	else
1457
44cc464de8f3 Add lightbulbs, some more changes to look
unc0rr
parents: 1405
diff changeset
   201
		items[0]->setIcon(QIcon(":/res/lightbulb_off.png"));
1405
ee4b28a1861d Show players ready status in chat nick list
unc0rr
parents: 1391
diff changeset
   202
}
1860
ce140b2b928a Some work on players lists context menus
unc0rr
parents: 1666
diff changeset
   203
ce140b2b928a Some work on players lists context menus
unc0rr
parents: 1666
diff changeset
   204
void HWChatWidget::adminAccess(bool b)
ce140b2b928a Some work on players lists context menus
unc0rr
parents: 1666
diff changeset
   205
{
ce140b2b928a Some work on players lists context menus
unc0rr
parents: 1666
diff changeset
   206
	chatNicks->removeAction(acKick);
ce140b2b928a Some work on players lists context menus
unc0rr
parents: 1666
diff changeset
   207
	chatNicks->removeAction(acBan);
2377
f3fab2b09e0c And in frontend
nemo
parents: 1921
diff changeset
   208
1860
ce140b2b928a Some work on players lists context menus
unc0rr
parents: 1666
diff changeset
   209
	if(b)
ce140b2b928a Some work on players lists context menus
unc0rr
parents: 1666
diff changeset
   210
	{
ce140b2b928a Some work on players lists context menus
unc0rr
parents: 1666
diff changeset
   211
		chatNicks->insertAction(0, acKick);
1921
2a09f7f786a0 - User from localhost is server admin
unc0rr
parents: 1860
diff changeset
   212
//		chatNicks->insertAction(0, acBan);
1860
ce140b2b928a Some work on players lists context menus
unc0rr
parents: 1666
diff changeset
   213
	}
ce140b2b928a Some work on players lists context menus
unc0rr
parents: 1666
diff changeset
   214
}