author | nemo |
Sun, 12 Jun 2011 21:06:48 -0400 | |
changeset 5238 | 46ddaf14509d |
parent 5140 | 932307228d05 |
child 5252 | ded882439548 |
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> |
4976 | 4 |
* Copyright (c) 2007-2011 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 |
||
4897
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
20 |
#include <QDesktopServices> |
1520
f72f538eba05
Refactor chat widget to use QTextBrower instead of QListWidget:
unc0rr
parents:
1516
diff
changeset
|
21 |
#include <QTextBrowser> |
461 | 22 |
#include <QLineEdit> |
1391 | 23 |
#include <QAction> |
1577 | 24 |
#include <QApplication> |
1587 | 25 |
#include <QTextDocument> |
2773
e94f240a8a41
Have game beep when someone joins lobby/room. Controlled by Sound option
nemo
parents:
2706
diff
changeset
|
26 |
#include <QDir> |
e94f240a8a41
Have game beep when someone joins lobby/room. Controlled by Sound option
nemo
parents:
2706
diff
changeset
|
27 |
#include <QSettings> |
2845 | 28 |
#include <QFile> |
29 |
#include <QTextStream> |
|
4897
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
30 |
#include <QMenu> |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
31 |
#include <QCursor> |
4884 | 32 |
#include <QScrollBar> |
4897
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
33 |
#include <QItemSelectionModel> |
5094 | 34 |
#include <QLabel> |
461 | 35 |
|
2773
e94f240a8a41
Have game beep when someone joins lobby/room. Controlled by Sound option
nemo
parents:
2706
diff
changeset
|
36 |
#include "hwconsts.h" |
e94f240a8a41
Have game beep when someone joins lobby/room. Controlled by Sound option
nemo
parents:
2706
diff
changeset
|
37 |
#include "SDLs.h" |
e94f240a8a41
Have game beep when someone joins lobby/room. Controlled by Sound option
nemo
parents:
2706
diff
changeset
|
38 |
#include "gameuiconfig.h" |
461 | 39 |
#include "chatwidget.h" |
40 |
||
4884 | 41 |
ListWidgetNickItem::ListWidgetNickItem(const QString& nick, bool isFriend, bool isIgnored) : QListWidgetItem(nick) |
42 |
{ |
|
43 |
this->aFriend = isFriend; |
|
44 |
this->isIgnored = isIgnored; |
|
45 |
} |
|
46 |
||
47 |
void ListWidgetNickItem::setFriend(bool isFriend) |
|
48 |
{ |
|
49 |
this->aFriend = isFriend; |
|
50 |
} |
|
51 |
||
52 |
void ListWidgetNickItem::setIgnored(bool isIgnored) |
|
53 |
{ |
|
54 |
this->isIgnored = isIgnored; |
|
55 |
} |
|
56 |
||
57 |
bool ListWidgetNickItem::isFriend() |
|
58 |
{ |
|
59 |
return aFriend; |
|
60 |
} |
|
61 |
||
62 |
bool ListWidgetNickItem::ignored() |
|
63 |
{ |
|
64 |
return isIgnored; |
|
65 |
} |
|
4876 | 66 |
|
67 |
bool ListWidgetNickItem::operator< (const QListWidgetItem & other) const |
|
68 |
{ |
|
69 |
// case in-sensitive comparison of the associated strings |
|
4877
746ddd590dee
nick sorting: give letters priority over all other chars
sheepluva
parents:
4876
diff
changeset
|
70 |
// chars that are no letters are sorted at the end of the list |
746ddd590dee
nick sorting: give letters priority over all other chars
sheepluva
parents:
4876
diff
changeset
|
71 |
|
4884 | 72 |
ListWidgetNickItem otherNick = const_cast<ListWidgetNickItem &>(dynamic_cast<const ListWidgetNickItem &>(other)); |
73 |
||
74 |
// ignored always down |
|
75 |
if (isIgnored != otherNick.ignored()) |
|
76 |
return !isIgnored; |
|
77 |
||
78 |
// friends always up |
|
79 |
if (aFriend != otherNick.isFriend()) |
|
80 |
return aFriend; |
|
81 |
||
4877
746ddd590dee
nick sorting: give letters priority over all other chars
sheepluva
parents:
4876
diff
changeset
|
82 |
QString txt1 = text().toLower(); |
746ddd590dee
nick sorting: give letters priority over all other chars
sheepluva
parents:
4876
diff
changeset
|
83 |
QString txt2 = other.text().toLower(); |
746ddd590dee
nick sorting: give letters priority over all other chars
sheepluva
parents:
4876
diff
changeset
|
84 |
|
746ddd590dee
nick sorting: give letters priority over all other chars
sheepluva
parents:
4876
diff
changeset
|
85 |
bool firstIsShorter = (txt1.size() < txt2.size()); |
746ddd590dee
nick sorting: give letters priority over all other chars
sheepluva
parents:
4876
diff
changeset
|
86 |
int len = firstIsShorter?txt1.size():txt2.size(); |
746ddd590dee
nick sorting: give letters priority over all other chars
sheepluva
parents:
4876
diff
changeset
|
87 |
|
746ddd590dee
nick sorting: give letters priority over all other chars
sheepluva
parents:
4876
diff
changeset
|
88 |
for (int i = 0; i < len; i++) |
746ddd590dee
nick sorting: give letters priority over all other chars
sheepluva
parents:
4876
diff
changeset
|
89 |
{ |
746ddd590dee
nick sorting: give letters priority over all other chars
sheepluva
parents:
4876
diff
changeset
|
90 |
if (txt1[i] == txt2[i]) |
746ddd590dee
nick sorting: give letters priority over all other chars
sheepluva
parents:
4876
diff
changeset
|
91 |
continue; |
746ddd590dee
nick sorting: give letters priority over all other chars
sheepluva
parents:
4876
diff
changeset
|
92 |
if (txt1[i].isLetter() != txt2[i].isLetter()) |
746ddd590dee
nick sorting: give letters priority over all other chars
sheepluva
parents:
4876
diff
changeset
|
93 |
return txt1[i].isLetter(); |
746ddd590dee
nick sorting: give letters priority over all other chars
sheepluva
parents:
4876
diff
changeset
|
94 |
return (txt1[i] < txt2[i]); |
746ddd590dee
nick sorting: give letters priority over all other chars
sheepluva
parents:
4876
diff
changeset
|
95 |
} |
746ddd590dee
nick sorting: give letters priority over all other chars
sheepluva
parents:
4876
diff
changeset
|
96 |
|
746ddd590dee
nick sorting: give letters priority over all other chars
sheepluva
parents:
4876
diff
changeset
|
97 |
return firstIsShorter; |
4876 | 98 |
} |
99 |
||
4898
7a94005874c9
stylesheet-based chat coloring (only internal for now)
sheepluva
parents:
4897
diff
changeset
|
100 |
const char* HWChatWidget::STYLE = |
7a94005874c9
stylesheet-based chat coloring (only internal for now)
sheepluva
parents:
4897
diff
changeset
|
101 |
"\ |
7a94005874c9
stylesheet-based chat coloring (only internal for now)
sheepluva
parents:
4897
diff
changeset
|
102 |
a { color:#c8c8ff; }\ |
7a94005874c9
stylesheet-based chat coloring (only internal for now)
sheepluva
parents:
4897
diff
changeset
|
103 |
.nick { text-decoration: none; }\ |
7a94005874c9
stylesheet-based chat coloring (only internal for now)
sheepluva
parents:
4897
diff
changeset
|
104 |
.UserChat .nick { color:#ffec20; }\ |
7a94005874c9
stylesheet-based chat coloring (only internal for now)
sheepluva
parents:
4897
diff
changeset
|
105 |
.FriendChat { color: #08e008; }\ |
7a94005874c9
stylesheet-based chat coloring (only internal for now)
sheepluva
parents:
4897
diff
changeset
|
106 |
.FriendChat .nick { color: #20ff20; }\ |
7a94005874c9
stylesheet-based chat coloring (only internal for now)
sheepluva
parents:
4897
diff
changeset
|
107 |
.UserJoin { color: #c0c0c0; }\ |
7a94005874c9
stylesheet-based chat coloring (only internal for now)
sheepluva
parents:
4897
diff
changeset
|
108 |
.UserJoin .nick { color: #d0d0d0; }\ |
7a94005874c9
stylesheet-based chat coloring (only internal for now)
sheepluva
parents:
4897
diff
changeset
|
109 |
.FriendJoin { color: #c0e0c0; }\ |
7a94005874c9
stylesheet-based chat coloring (only internal for now)
sheepluva
parents:
4897
diff
changeset
|
110 |
.FriendJoin .nick { color: #d0f0d0; }\ |
7a94005874c9
stylesheet-based chat coloring (only internal for now)
sheepluva
parents:
4897
diff
changeset
|
111 |
.UserAction { color: #ff80ff; }\ |
7a94005874c9
stylesheet-based chat coloring (only internal for now)
sheepluva
parents:
4897
diff
changeset
|
112 |
.UserAction .nick { color: #ffa0ff; }\ |
7a94005874c9
stylesheet-based chat coloring (only internal for now)
sheepluva
parents:
4897
diff
changeset
|
113 |
.FriendAction { color: #ff00ff; }\ |
7a94005874c9
stylesheet-based chat coloring (only internal for now)
sheepluva
parents:
4897
diff
changeset
|
114 |
.FriendAction .nick { color: #ff30ff; }\ |
7a94005874c9
stylesheet-based chat coloring (only internal for now)
sheepluva
parents:
4897
diff
changeset
|
115 |
"; |
4897
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
116 |
|
2775 | 117 |
HWChatWidget::HWChatWidget(QWidget* parent, QSettings * gameSettings, SDLInteraction * sdli, bool notify) : |
461 | 118 |
QWidget(parent), |
119 |
mainLayout(this) |
|
120 |
{ |
|
2773
e94f240a8a41
Have game beep when someone joins lobby/room. Controlled by Sound option
nemo
parents:
2706
diff
changeset
|
121 |
this->gameSettings = gameSettings; |
e94f240a8a41
Have game beep when someone joins lobby/room. Controlled by Sound option
nemo
parents:
2706
diff
changeset
|
122 |
this->sdli = sdli; |
2775 | 123 |
this->notify = notify; |
3019 | 124 |
if(notify && gameSettings->value("frontend/sound", true).toBool()) { |
5238
46ddaf14509d
Enable ~/.hedgewars/Data (or platform equivalent) to override/extend pretty much everything in system Data dir. Obviously desyncing can occur, so this is at user's own risk. Should simplify map etc install. Needs testing.
nemo
parents:
5140
diff
changeset
|
125 |
QFile tmpfile; |
46ddaf14509d
Enable ~/.hedgewars/Data (or platform equivalent) to override/extend pretty much everything in system Data dir. Obviously desyncing can occur, so this is at user's own risk. Should simplify map etc install. Needs testing.
nemo
parents:
5140
diff
changeset
|
126 |
sdli->SDLMusicInit(); |
46ddaf14509d
Enable ~/.hedgewars/Data (or platform equivalent) to override/extend pretty much everything in system Data dir. Obviously desyncing can occur, so this is at user's own risk. Should simplify map etc install. Needs testing.
nemo
parents:
5140
diff
changeset
|
127 |
for(int i=0;i<4;i++) { |
46ddaf14509d
Enable ~/.hedgewars/Data (or platform equivalent) to override/extend pretty much everything in system Data dir. Obviously desyncing can occur, so this is at user's own risk. Should simplify map etc install. Needs testing.
nemo
parents:
5140
diff
changeset
|
128 |
tmpfile.setFileName(cfgdir->absolutePath() + "/Data/Sounds/voices/Classic/Hello.ogg"); |
46ddaf14509d
Enable ~/.hedgewars/Data (or platform equivalent) to override/extend pretty much everything in system Data dir. Obviously desyncing can occur, so this is at user's own risk. Should simplify map etc install. Needs testing.
nemo
parents:
5140
diff
changeset
|
129 |
if (tmpfile.exists()) sound[i] = Mix_LoadWAV(QFileInfo(tmpfile).absoluteFilePath().toLocal8Bit().constData()); |
46ddaf14509d
Enable ~/.hedgewars/Data (or platform equivalent) to override/extend pretty much everything in system Data dir. Obviously desyncing can occur, so this is at user's own risk. Should simplify map etc install. Needs testing.
nemo
parents:
5140
diff
changeset
|
130 |
else sound[i] = Mix_LoadWAV(QString(datadir->absolutePath() + |
46ddaf14509d
Enable ~/.hedgewars/Data (or platform equivalent) to override/extend pretty much everything in system Data dir. Obviously desyncing can occur, so this is at user's own risk. Should simplify map etc install. Needs testing.
nemo
parents:
5140
diff
changeset
|
131 |
"/Sounds/voices/Classic/Hello.ogg").toLocal8Bit().constData()); |
46ddaf14509d
Enable ~/.hedgewars/Data (or platform equivalent) to override/extend pretty much everything in system Data dir. Obviously desyncing can occur, so this is at user's own risk. Should simplify map etc install. Needs testing.
nemo
parents:
5140
diff
changeset
|
132 |
} |
2775 | 133 |
} |
2773
e94f240a8a41
Have game beep when someone joins lobby/room. Controlled by Sound option
nemo
parents:
2706
diff
changeset
|
134 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
135 |
mainLayout.setSpacing(1); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
136 |
mainLayout.setMargin(1); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
137 |
mainLayout.setSizeConstraint(QLayout::SetMinimumSize); |
3790 | 138 |
mainLayout.setColumnStretch(0, 76); |
139 |
mainLayout.setColumnStretch(1, 24); |
|
461 | 140 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
141 |
chatEditLine = new QLineEdit(this); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
142 |
chatEditLine->setMaxLength(300); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
143 |
connect(chatEditLine, SIGNAL(returnPressed()), this, SLOT(returnPressed())); |
461 | 144 |
|
5094 | 145 |
mainLayout.addWidget(chatEditLine, 2, 0); |
462 | 146 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
147 |
chatText = new QTextBrowser(this); |
4897
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
148 |
chatText->document()->setDefaultStyleSheet(STYLE); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
149 |
chatText->setMinimumHeight(20); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
150 |
chatText->setMinimumWidth(10); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
151 |
chatText->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding); |
4897
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
152 |
chatText->setOpenLinks(false); |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
153 |
connect(chatText, SIGNAL(anchorClicked(const QUrl&)), |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
154 |
this, SLOT(linkClicked(const QUrl&))); |
5094 | 155 |
mainLayout.addWidget(chatText, 0, 0, 2, 1); |
462 | 156 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
157 |
chatNicks = new QListWidget(this); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
158 |
chatNicks->setMinimumHeight(10); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
159 |
chatNicks->setMinimumWidth(10); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
160 |
chatNicks->setSortingEnabled(true); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
161 |
chatNicks->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
162 |
chatNicks->setContextMenuPolicy(Qt::ActionsContextMenu); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
163 |
connect(chatNicks, SIGNAL(itemDoubleClicked(QListWidgetItem *)), |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
164 |
this, SLOT(chatNickDoubleClicked(QListWidgetItem *))); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
165 |
connect(chatNicks, SIGNAL(currentRowChanged(int)), |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
166 |
this, SLOT(chatNickSelected(int))); |
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
|
167 |
|
5094 | 168 |
mainLayout.addWidget(chatNicks, 1, 1, 2, 1); |
169 |
||
170 |
lblCount = new QLabel(this); |
|
171 |
mainLayout.addWidget(lblCount, 0, 1); |
|
172 |
lblCount->setText("0"); |
|
173 |
lblCount->setSizePolicy(QSizePolicy::Maximum, QSizePolicy::Maximum); |
|
1391 | 174 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
175 |
acInfo = new QAction(QAction::tr("Info"), chatNicks); |
3123 | 176 |
acInfo->setIcon(QIcon(":/res/info.png")); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
177 |
connect(acInfo, SIGNAL(triggered(bool)), this, SLOT(onInfo())); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
178 |
acKick = new QAction(QAction::tr("Kick"), chatNicks); |
3123 | 179 |
acKick->setIcon(QIcon(":/res/kick.png")); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
180 |
connect(acKick, SIGNAL(triggered(bool)), this, SLOT(onKick())); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
181 |
acBan = new QAction(QAction::tr("Ban"), chatNicks); |
3123 | 182 |
acBan->setIcon(QIcon(":/res/ban.png")); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
183 |
connect(acBan, SIGNAL(triggered(bool)), this, SLOT(onBan())); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
184 |
acFollow = new QAction(QAction::tr("Follow"), chatNicks); |
3123 | 185 |
acFollow->setIcon(QIcon(":/res/follow.png")); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
186 |
connect(acFollow, SIGNAL(triggered(bool)), this, SLOT(onFollow())); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
187 |
acIgnore = new QAction(QAction::tr("Ignore"), chatNicks); |
3123 | 188 |
acIgnore->setIcon(QIcon(":/res/ignore.png")); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
189 |
connect(acIgnore, SIGNAL(triggered(bool)), this, SLOT(onIgnore())); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
190 |
acFriend = new QAction(QAction::tr("Add friend"), chatNicks); |
3123 | 191 |
acFriend->setIcon(QIcon(":/res/addfriend.png")); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
192 |
connect(acFriend, SIGNAL(triggered(bool)), this, SLOT(onFriend())); |
2377 | 193 |
|
4892 | 194 |
chatNicks->insertAction(0, acFriend); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
195 |
chatNicks->insertAction(0, acInfo); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
196 |
chatNicks->insertAction(0, acIgnore); |
3697 | 197 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
198 |
showReady = false; |
4892 | 199 |
setShowFollow(true); |
200 |
} |
|
201 |
||
4897
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
202 |
void HWChatWidget::linkClicked(const QUrl & link) |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
203 |
{ |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
204 |
if (link.scheme() == "http") |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
205 |
QDesktopServices::openUrl(link); |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
206 |
if (link.scheme() == "hwnick") |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
207 |
{ |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
208 |
// decode nick |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
209 |
const QString& nick = QString::fromUtf8(QByteArray::fromBase64(link.encodedQuery())); |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
210 |
QList<QListWidgetItem *> items = chatNicks->findItems(nick, Qt::MatchExactly); |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
211 |
if (items.size() < 1) |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
212 |
return; |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
213 |
QMenu * popup = new QMenu(); |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
214 |
// selecting an item will automatically scroll there, so let's save old position |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
215 |
QScrollBar * scrollBar = chatNicks->verticalScrollBar(); |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
216 |
int oldScrollPos = scrollBar->sliderPosition(); |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
217 |
// select the nick which we want to see the actions for |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
218 |
chatNicks->setCurrentItem(items[0], QItemSelectionModel::Clear); |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
219 |
// selecting an item will automatically scroll there, so let's save old position |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
220 |
scrollBar->setSliderPosition(oldScrollPos); |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
221 |
// load actions |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
222 |
popup->addActions(chatNicks->actions()); |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
223 |
// display menu popup at mouse cursor position |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
224 |
popup->popup(QCursor::pos()); |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
225 |
} |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
226 |
} |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
227 |
|
4892 | 228 |
void HWChatWidget::setShowFollow(bool enabled) |
229 |
{ |
|
230 |
if (enabled) { |
|
231 |
if (!(chatNicks->actions().contains(acFollow))) |
|
232 |
chatNicks->insertAction(acFriend, acFollow); |
|
233 |
} |
|
234 |
else { |
|
235 |
if (chatNicks->actions().contains(acFollow)) |
|
236 |
chatNicks->removeAction(acFollow); |
|
237 |
} |
|
2845 | 238 |
} |
239 |
||
240 |
void HWChatWidget::loadList(QStringList & list, const QString & file) |
|
241 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
242 |
list.clear(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
243 |
QFile txt((cfgdir->absolutePath() + "/" + file).toLocal8Bit().constData()); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
244 |
if(!txt.open(QIODevice::ReadOnly)) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
245 |
return; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
246 |
QTextStream stream(&txt); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
247 |
stream.setCodec("UTF-8"); |
2845 | 248 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
249 |
while(!stream.atEnd()) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
250 |
{ |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
251 |
QString str = stream.readLine(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
252 |
if(str.startsWith(";") || str.length() == 0) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
253 |
continue; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
254 |
list << str.trimmed(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
255 |
} |
3058 | 256 |
//readd once we require newer Qt than 4.4 |
257 |
//list.removeDuplicates(); |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
258 |
txt.close(); |
2845 | 259 |
} |
260 |
||
261 |
void HWChatWidget::saveList(QStringList & list, const QString & file) |
|
262 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
263 |
QFile txt((cfgdir->absolutePath() + "/" + file).toLocal8Bit().constData()); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
264 |
if(!txt.open(QIODevice::WriteOnly | QIODevice::Truncate)) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
265 |
return; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
266 |
QTextStream stream(&txt); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
267 |
stream.setCodec("UTF-8"); |
2845 | 268 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
269 |
stream << "; this list is used by Hedgewars - do not edit it unless you know what you're doing!" << endl; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
270 |
for(int i = 0; i < list.size(); i++) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
271 |
stream << list[i] << endl; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
272 |
txt.close(); |
2845 | 273 |
} |
274 |
||
4884 | 275 |
void HWChatWidget::updateNickItem(QListWidgetItem *nickItem) |
2845 | 276 |
{ |
4884 | 277 |
QString nick = nickItem->text(); |
278 |
ListWidgetNickItem * item = dynamic_cast<ListWidgetNickItem*>(nickItem); |
|
2845 | 279 |
|
4884 | 280 |
item->setFriend(friendsList.contains(nick, Qt::CaseInsensitive)); |
281 |
item->setIgnored(ignoreList.contains(nick, Qt::CaseInsensitive)); |
|
282 |
||
283 |
if(item->ignored()) |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
284 |
{ |
3925
44b4218605f6
Missing file extensions for icons was screwing up Qt 4.7
nemo
parents:
3807
diff
changeset
|
285 |
item->setIcon(QIcon(showReady ? (item->data(Qt::UserRole).toBool() ? ":/res/chat_ignore_on.png" : ":/res/chat_ignore_off.png") : ":/res/chat_ignore.png")); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
286 |
item->setForeground(Qt::gray); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
287 |
} |
4884 | 288 |
else if(item->isFriend()) |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
289 |
{ |
3925
44b4218605f6
Missing file extensions for icons was screwing up Qt 4.7
nemo
parents:
3807
diff
changeset
|
290 |
item->setIcon(QIcon(showReady ? (item->data(Qt::UserRole).toBool() ? ":/res/chat_friend_on.png" : ":/res/chat_friend_off.png") : ":/res/chat_friend.png")); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
291 |
item->setForeground(Qt::green); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
292 |
} |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
293 |
else |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
294 |
{ |
3925
44b4218605f6
Missing file extensions for icons was screwing up Qt 4.7
nemo
parents:
3807
diff
changeset
|
295 |
item->setIcon(QIcon(showReady ? (item->data(Qt::UserRole).toBool() ? ":/res/chat_default_on.png" : ":/res/chat_default_off.png") : ":/res/chat_default.png")); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
296 |
item->setForeground(QBrush(QColor(0xff, 0xcc, 0x00))); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
297 |
} |
2845 | 298 |
} |
299 |
||
4884 | 300 |
void HWChatWidget::updateNickItems() |
2845 | 301 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
302 |
for(int i = 0; i < chatNicks->count(); i++) |
4884 | 303 |
updateNickItem(chatNicks->item(i)); |
304 |
||
305 |
chatNicks->sortItems(); |
|
2845 | 306 |
} |
307 |
||
308 |
void HWChatWidget::loadLists(const QString & nick) |
|
309 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
310 |
loadList(ignoreList, nick.toLower() + "_ignore.txt"); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
311 |
loadList(friendsList, nick.toLower() + "_friends.txt"); |
4884 | 312 |
updateNickItems(); |
2845 | 313 |
} |
314 |
||
315 |
void HWChatWidget::saveLists(const QString & nick) |
|
316 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
317 |
saveList(ignoreList, nick.toLower() + "_ignore.txt"); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
318 |
saveList(friendsList, nick.toLower() + "_friends.txt"); |
461 | 319 |
} |
320 |
||
321 |
void HWChatWidget::returnPressed() |
|
322 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
323 |
emit chatLine(chatEditLine->text()); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
324 |
chatEditLine->clear(); |
461 | 325 |
} |
2846 | 326 |
|
4897
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
327 |
|
1360 | 328 |
void HWChatWidget::onChatString(const QString& str) |
461 | 329 |
{ |
4897
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
330 |
onChatString("", str); |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
331 |
} |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
332 |
|
4899
8163c9aaad0c
automatically convert hedgewars.org urls to actual links (in order to make support in the lobby/rooms easier
sheepluva
parents:
4898
diff
changeset
|
333 |
const QRegExp HWChatWidget::URLREGEXP = QRegExp("(http://)?(www\\.)?(hedgewars\\.org(/[^ ]*)?)"); |
8163c9aaad0c
automatically convert hedgewars.org urls to actual links (in order to make support in the lobby/rooms easier
sheepluva
parents:
4898
diff
changeset
|
334 |
|
4897
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
335 |
void HWChatWidget::onChatString(const QString& nick, const QString& str) |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
336 |
{ |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
337 |
bool isFriend = false; |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
338 |
|
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
339 |
if (!nick.isEmpty()) { |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
340 |
// don't show chat lines that are from ignored nicks |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
341 |
if (ignoreList.contains(nick, Qt::CaseInsensitive)) |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
342 |
return; |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
343 |
// friends will get special treatment, of course |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
344 |
isFriend = friendsList.contains(nick, Qt::CaseInsensitive); |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
345 |
} |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
346 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
347 |
if (chatStrings.size() > 250) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
348 |
chatStrings.removeFirst(); |
1626 | 349 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
350 |
QString formattedStr = Qt::escape(str.mid(1)); |
4899
8163c9aaad0c
automatically convert hedgewars.org urls to actual links (in order to make support in the lobby/rooms easier
sheepluva
parents:
4898
diff
changeset
|
351 |
// make hedgewars.org urls actual links |
8163c9aaad0c
automatically convert hedgewars.org urls to actual links (in order to make support in the lobby/rooms easier
sheepluva
parents:
4898
diff
changeset
|
352 |
formattedStr = formattedStr.replace(URLREGEXP, "<a href=\"http://\\3\">\\3</a>"); |
2845 | 353 |
|
4897
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
354 |
// "link" nick, but before that encode it in base64 to make sure it can't intefere with html/url syntax |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
355 |
// the nick is put as querystring as putting it as host would convert it to it's lower case variant |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
356 |
if(!nick.isEmpty()) |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
357 |
formattedStr.replace("|nick|",QString("<a href=\"hwnick://?%1\" class=\"nick\">%2</a>").arg(QString(nick.toUtf8().toBase64())).arg(nick)); |
2845 | 358 |
|
4898
7a94005874c9
stylesheet-based chat coloring (only internal for now)
sheepluva
parents:
4897
diff
changeset
|
359 |
QString cssClass("UserChat"); |
3697 | 360 |
|
4897
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
361 |
// check first character for color code and set color properly |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
362 |
switch (str[0].toAscii()) { |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
363 |
case 3: |
4898
7a94005874c9
stylesheet-based chat coloring (only internal for now)
sheepluva
parents:
4897
diff
changeset
|
364 |
cssClass = (isFriend ? "FriendJoin" : "UserJoin"); |
4897
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
365 |
break; |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
366 |
case 2: |
4898
7a94005874c9
stylesheet-based chat coloring (only internal for now)
sheepluva
parents:
4897
diff
changeset
|
367 |
cssClass = (isFriend ? "FriendAction" : "UserAction"); |
4897
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
368 |
break; |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
369 |
default: |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
370 |
if (isFriend) |
4898
7a94005874c9
stylesheet-based chat coloring (only internal for now)
sheepluva
parents:
4897
diff
changeset
|
371 |
cssClass = "FriendChat"; |
4897
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
372 |
} |
2396 | 373 |
|
4898
7a94005874c9
stylesheet-based chat coloring (only internal for now)
sheepluva
parents:
4897
diff
changeset
|
374 |
formattedStr = QString("<span class=\"%2\">%1</span>").arg(formattedStr).arg(cssClass); |
2377 | 375 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
376 |
chatStrings.append(formattedStr); |
2377 | 377 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
378 |
chatText->setHtml(chatStrings.join("<br>")); |
1587 | 379 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
380 |
chatText->moveCursor(QTextCursor::End); |
1587 | 381 |
} |
382 |
||
383 |
void HWChatWidget::onServerMessage(const QString& str) |
|
384 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
385 |
if (chatStrings.size() > 250) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
386 |
chatStrings.removeFirst(); |
2377 | 387 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
388 |
chatStrings.append("<hr>" + str + "<hr>"); |
2377 | 389 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
390 |
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
|
391 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
392 |
chatText->moveCursor(QTextCursor::End); |
461 | 393 |
} |
465 | 394 |
|
2777 | 395 |
void HWChatWidget::nickAdded(const QString& nick, bool notifyNick) |
465 | 396 |
{ |
4884 | 397 |
QListWidgetItem * item = new ListWidgetNickItem(nick, friendsList.contains(nick, Qt::CaseInsensitive), ignoreList.contains(nick, Qt::CaseInsensitive)); |
398 |
updateNickItem(item); |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
399 |
chatNicks->addItem(item); |
2773
e94f240a8a41
Have game beep when someone joins lobby/room. Controlled by Sound option
nemo
parents:
2706
diff
changeset
|
400 |
|
5094 | 401 |
lblCount->setText(QString::number(chatNicks->count())); |
402 |
||
3019 | 403 |
if(notifyNick && notify && gameSettings->value("frontend/sound", true).toBool()) { |
2779
e1ae0019d43f
Suggestion from Tiy. Use a random hi. Could maybe be shorter sounds, using the 4 shortest voicepacks already
nemo
parents:
2777
diff
changeset
|
404 |
Mix_PlayChannel(-1, sound[rand()%4], 0); |
2773
e94f240a8a41
Have game beep when someone joins lobby/room. Controlled by Sound option
nemo
parents:
2706
diff
changeset
|
405 |
} |
465 | 406 |
} |
407 |
||
408 |
void HWChatWidget::nickRemoved(const QString& nick) |
|
409 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
410 |
QList<QListWidgetItem *> items = chatNicks->findItems(nick, Qt::MatchExactly); |
5140
932307228d05
Change a few iterations over list to what is apparently a modification safe syntax, may fix issue #208 and #217 - needs testing of course.
nemo
parents:
5094
diff
changeset
|
411 |
QListIterator<QListWidgetItem *> it(items); |
932307228d05
Change a few iterations over list to what is apparently a modification safe syntax, may fix issue #208 and #217 - needs testing of course.
nemo
parents:
5094
diff
changeset
|
412 |
while(it.hasNext()) chatNicks->takeItem(chatNicks->row(it.next())); |
5094 | 413 |
|
414 |
lblCount->setText(QString::number(chatNicks->count())); |
|
465 | 415 |
} |
416 |
||
417 |
void HWChatWidget::clear() |
|
418 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
419 |
chatText->clear(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
420 |
chatStrings.clear(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
421 |
chatNicks->clear(); |
465 | 422 |
} |
1391 | 423 |
|
424 |
void HWChatWidget::onKick() |
|
425 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
426 |
QListWidgetItem * curritem = chatNicks->currentItem(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
427 |
if (curritem) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
428 |
emit kick(curritem->text()); |
1391 | 429 |
} |
1405 | 430 |
|
1860 | 431 |
void HWChatWidget::onBan() |
432 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
433 |
QListWidgetItem * curritem = chatNicks->currentItem(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
434 |
if (curritem) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
435 |
emit ban(curritem->text()); |
1860 | 436 |
} |
437 |
||
1577 | 438 |
void HWChatWidget::onInfo() |
439 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
440 |
QListWidgetItem * curritem = chatNicks->currentItem(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
441 |
if (curritem) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
442 |
emit info(curritem->text()); |
1577 | 443 |
} |
444 |
||
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
|
445 |
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
|
446 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
447 |
QListWidgetItem * curritem = chatNicks->currentItem(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
448 |
if (curritem) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
449 |
emit follow(curritem->text()); |
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
|
450 |
} |
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
|
451 |
|
2845 | 452 |
void HWChatWidget::onIgnore() |
453 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
454 |
QListWidgetItem * curritem = chatNicks->currentItem(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
455 |
if(!curritem) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
456 |
return; |
2845 | 457 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
458 |
if(ignoreList.contains(curritem->text(), Qt::CaseInsensitive)) // already on list - remove him |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
459 |
{ |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
460 |
ignoreList.removeAll(curritem->text().toLower()); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
461 |
onChatString(HWChatWidget::tr("%1 *** %2 has been removed from your ignore list").arg('\x03').arg(curritem->text())); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
462 |
} |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
463 |
else // not on list - add |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
464 |
{ |
4884 | 465 |
// don't consider ignored people friends |
466 |
if(friendsList.contains(curritem->text(), Qt::CaseInsensitive)) |
|
467 |
emit onFriend(); |
|
468 |
||
469 |
// scroll down on first ignore added so that people see where that nick went to |
|
470 |
if (ignoreList.isEmpty()) |
|
4897
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
471 |
chatNicks->scrollToBottom(); |
4884 | 472 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
473 |
ignoreList << curritem->text().toLower(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
474 |
onChatString(HWChatWidget::tr("%1 *** %2 has been added to your ignore list").arg('\x03').arg(curritem->text())); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
475 |
} |
4884 | 476 |
updateNickItem(curritem); // update icon/sort order/etc |
477 |
chatNicks->sortItems(); |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
478 |
chatNickSelected(0); // update context menu |
2845 | 479 |
} |
480 |
||
481 |
void HWChatWidget::onFriend() |
|
482 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
483 |
QListWidgetItem * curritem = chatNicks->currentItem(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
484 |
if(!curritem) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
485 |
return; |
2845 | 486 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
487 |
if(friendsList.contains(curritem->text(), Qt::CaseInsensitive)) // already on list - remove him |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
488 |
{ |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
489 |
friendsList.removeAll(curritem->text().toLower()); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
490 |
onChatString(HWChatWidget::tr("%1 *** %2 has been removed from your friends list").arg('\x03').arg(curritem->text())); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
491 |
} |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
492 |
else // not on list - add |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
493 |
{ |
4884 | 494 |
// don't ignore the new friend |
495 |
if(ignoreList.contains(curritem->text(), Qt::CaseInsensitive)) |
|
496 |
emit onIgnore(); |
|
497 |
||
498 |
// scroll up on first friend added so that people see where that nick went to |
|
499 |
if (friendsList.isEmpty()) |
|
4897
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
500 |
chatNicks->scrollToTop(); |
4884 | 501 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
502 |
friendsList << curritem->text().toLower(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
503 |
onChatString(HWChatWidget::tr("%1 *** %2 has been added to your friends list").arg('\x03').arg(curritem->text())); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
504 |
} |
4884 | 505 |
updateNickItem(curritem); // update icon/sort order/etc |
506 |
chatNicks->sortItems(); |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
507 |
chatNickSelected(0); // update context menu |
2845 | 508 |
} |
509 |
||
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
|
510 |
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
|
511 |
{ |
4917
8ff92bdc9f98
Convert READY and NOT_READY messages to CLIENT_FLAGS message
unc0rr
parents:
4899
diff
changeset
|
512 |
Q_UNUSED(item); |
8ff92bdc9f98
Convert READY and NOT_READY messages to CLIENT_FLAGS message
unc0rr
parents:
4899
diff
changeset
|
513 |
|
4892 | 514 |
QList<QAction *> actions = chatNicks->actions(); |
515 |
actions.first()->activate(QAction::Trigger); |
|
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
|
516 |
} |
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
|
517 |
|
2847 | 518 |
void HWChatWidget::chatNickSelected(int index) |
2846 | 519 |
{ |
4560
5d6c7f88db73
- Some work on drawMap widget and scene to allow undo, clear, save and load operations
unc0rr
parents:
3925
diff
changeset
|
520 |
Q_UNUSED(index); |
5d6c7f88db73
- Some work on drawMap widget and scene to allow undo, clear, save and load operations
unc0rr
parents:
3925
diff
changeset
|
521 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
522 |
QListWidgetItem* item = chatNicks->currentItem(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
523 |
if (!item) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
524 |
return; |
2846 | 525 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
526 |
// update context menu labels according to possible action |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
527 |
if(ignoreList.contains(item->text(), Qt::CaseInsensitive)) |
3123 | 528 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
529 |
acIgnore->setText(QAction::tr("Unignore")); |
3123 | 530 |
acIgnore->setIcon(QIcon(":/res/unignore.png")); |
531 |
} |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
532 |
else |
3123 | 533 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
534 |
acIgnore->setText(QAction::tr("Ignore")); |
3123 | 535 |
acIgnore->setIcon(QIcon(":/res/ignore.png")); |
536 |
} |
|
2846 | 537 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
538 |
if(friendsList.contains(item->text(), Qt::CaseInsensitive)) |
3123 | 539 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
540 |
acFriend->setText(QAction::tr("Remove friend")); |
3123 | 541 |
acFriend->setIcon(QIcon(":/res/remfriend.png")); |
542 |
} |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
543 |
else |
3123 | 544 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
545 |
acFriend->setText(QAction::tr("Add friend")); |
3123 | 546 |
acFriend->setIcon(QIcon(":/res/addfriend.png")); |
547 |
} |
|
2846 | 548 |
} |
549 |
||
2845 | 550 |
void HWChatWidget::setShowReady(bool s) |
551 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
552 |
showReady = s; |
2845 | 553 |
} |
554 |
||
1405 | 555 |
void HWChatWidget::setReadyStatus(const QString & nick, bool isReady) |
556 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
557 |
QList<QListWidgetItem *> items = chatNicks->findItems(nick, Qt::MatchExactly); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
558 |
if (items.size() != 1) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
559 |
{ |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
560 |
qWarning("Bug: cannot find user in chat"); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
561 |
return; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
562 |
} |
1405 | 563 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
564 |
items[0]->setData(Qt::UserRole, isReady); // bulb status |
4884 | 565 |
updateNickItem(items[0]); |
2845 | 566 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
567 |
// ensure we're still showing the status bulbs |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
568 |
showReady = true; |
1405 | 569 |
} |
1860 | 570 |
|
571 |
void HWChatWidget::adminAccess(bool b) |
|
572 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
573 |
chatNicks->removeAction(acKick); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
574 |
chatNicks->removeAction(acBan); |
2377 | 575 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
576 |
if(b) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
577 |
{ |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
578 |
chatNicks->insertAction(0, acKick); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
579 |
// chatNicks->insertAction(0, acBan); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
580 |
} |
1860 | 581 |
} |