author | unc0rr |
Mon, 16 May 2011 22:03:14 +0400 | |
changeset 5211 | 8ebf92014447 |
parent 5140 | 932307228d05 |
child 5238 | 46ddaf14509d |
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()) { |
2775 | 125 |
QDir tmpdir; |
126 |
||
127 |
tmpdir.cd(datadir->absolutePath()); |
|
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
|
128 |
tmpdir.cd("Sounds/voices"); |
2775 | 129 |
sdli->SDLMusicInit(); |
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
|
130 |
sound[0] = Mix_LoadWAV(QString(tmpdir.absolutePath() + "/Classic/Hello.ogg").toLocal8Bit().constData()); |
e1ae0019d43f
Suggestion from Tiy. Use a random hi. Could maybe be shorter sounds, using the 4 shortest voicepacks already
nemo
parents:
2777
diff
changeset
|
131 |
sound[1] = Mix_LoadWAV(QString(tmpdir.absolutePath() + "/Default/Hello.ogg").toLocal8Bit().constData()); |
e1ae0019d43f
Suggestion from Tiy. Use a random hi. Could maybe be shorter sounds, using the 4 shortest voicepacks already
nemo
parents:
2777
diff
changeset
|
132 |
sound[2] = Mix_LoadWAV(QString(tmpdir.absolutePath() + "/Mobster/Hello.ogg").toLocal8Bit().constData()); |
e1ae0019d43f
Suggestion from Tiy. Use a random hi. Could maybe be shorter sounds, using the 4 shortest voicepacks already
nemo
parents:
2777
diff
changeset
|
133 |
sound[3] = Mix_LoadWAV(QString(tmpdir.absolutePath() + "/Russian/Hello.ogg").toLocal8Bit().constData()); |
2775 | 134 |
} |
2773
e94f240a8a41
Have game beep when someone joins lobby/room. Controlled by Sound option
nemo
parents:
2706
diff
changeset
|
135 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
136 |
mainLayout.setSpacing(1); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
137 |
mainLayout.setMargin(1); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
138 |
mainLayout.setSizeConstraint(QLayout::SetMinimumSize); |
3790 | 139 |
mainLayout.setColumnStretch(0, 76); |
140 |
mainLayout.setColumnStretch(1, 24); |
|
461 | 141 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
142 |
chatEditLine = new QLineEdit(this); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
143 |
chatEditLine->setMaxLength(300); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
144 |
connect(chatEditLine, SIGNAL(returnPressed()), this, SLOT(returnPressed())); |
461 | 145 |
|
5094 | 146 |
mainLayout.addWidget(chatEditLine, 2, 0); |
462 | 147 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
148 |
chatText = new QTextBrowser(this); |
4897
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
149 |
chatText->document()->setDefaultStyleSheet(STYLE); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
150 |
chatText->setMinimumHeight(20); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
151 |
chatText->setMinimumWidth(10); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
152 |
chatText->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding); |
4897
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
153 |
chatText->setOpenLinks(false); |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
154 |
connect(chatText, SIGNAL(anchorClicked(const QUrl&)), |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
155 |
this, SLOT(linkClicked(const QUrl&))); |
5094 | 156 |
mainLayout.addWidget(chatText, 0, 0, 2, 1); |
462 | 157 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
158 |
chatNicks = new QListWidget(this); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
159 |
chatNicks->setMinimumHeight(10); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
160 |
chatNicks->setMinimumWidth(10); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
161 |
chatNicks->setSortingEnabled(true); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
162 |
chatNicks->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
163 |
chatNicks->setContextMenuPolicy(Qt::ActionsContextMenu); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
164 |
connect(chatNicks, SIGNAL(itemDoubleClicked(QListWidgetItem *)), |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
165 |
this, SLOT(chatNickDoubleClicked(QListWidgetItem *))); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
166 |
connect(chatNicks, SIGNAL(currentRowChanged(int)), |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
167 |
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
|
168 |
|
5094 | 169 |
mainLayout.addWidget(chatNicks, 1, 1, 2, 1); |
170 |
||
171 |
lblCount = new QLabel(this); |
|
172 |
mainLayout.addWidget(lblCount, 0, 1); |
|
173 |
lblCount->setText("0"); |
|
174 |
lblCount->setSizePolicy(QSizePolicy::Maximum, QSizePolicy::Maximum); |
|
1391 | 175 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
176 |
acInfo = new QAction(QAction::tr("Info"), chatNicks); |
3123 | 177 |
acInfo->setIcon(QIcon(":/res/info.png")); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
178 |
connect(acInfo, SIGNAL(triggered(bool)), this, SLOT(onInfo())); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
179 |
acKick = new QAction(QAction::tr("Kick"), chatNicks); |
3123 | 180 |
acKick->setIcon(QIcon(":/res/kick.png")); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
181 |
connect(acKick, SIGNAL(triggered(bool)), this, SLOT(onKick())); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
182 |
acBan = new QAction(QAction::tr("Ban"), chatNicks); |
3123 | 183 |
acBan->setIcon(QIcon(":/res/ban.png")); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
184 |
connect(acBan, SIGNAL(triggered(bool)), this, SLOT(onBan())); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
185 |
acFollow = new QAction(QAction::tr("Follow"), chatNicks); |
3123 | 186 |
acFollow->setIcon(QIcon(":/res/follow.png")); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
187 |
connect(acFollow, SIGNAL(triggered(bool)), this, SLOT(onFollow())); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
188 |
acIgnore = new QAction(QAction::tr("Ignore"), chatNicks); |
3123 | 189 |
acIgnore->setIcon(QIcon(":/res/ignore.png")); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
190 |
connect(acIgnore, SIGNAL(triggered(bool)), this, SLOT(onIgnore())); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
191 |
acFriend = new QAction(QAction::tr("Add friend"), chatNicks); |
3123 | 192 |
acFriend->setIcon(QIcon(":/res/addfriend.png")); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
193 |
connect(acFriend, SIGNAL(triggered(bool)), this, SLOT(onFriend())); |
2377 | 194 |
|
4892 | 195 |
chatNicks->insertAction(0, acFriend); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
196 |
chatNicks->insertAction(0, acInfo); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
197 |
chatNicks->insertAction(0, acIgnore); |
3697 | 198 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
199 |
showReady = false; |
4892 | 200 |
setShowFollow(true); |
201 |
} |
|
202 |
||
4897
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
203 |
void HWChatWidget::linkClicked(const QUrl & link) |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
204 |
{ |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
205 |
if (link.scheme() == "http") |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
206 |
QDesktopServices::openUrl(link); |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
207 |
if (link.scheme() == "hwnick") |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
208 |
{ |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
209 |
// decode nick |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
210 |
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
|
211 |
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
|
212 |
if (items.size() < 1) |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
213 |
return; |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
214 |
QMenu * popup = new QMenu(); |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
215 |
// 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
|
216 |
QScrollBar * scrollBar = chatNicks->verticalScrollBar(); |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
217 |
int oldScrollPos = scrollBar->sliderPosition(); |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
218 |
// 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
|
219 |
chatNicks->setCurrentItem(items[0], QItemSelectionModel::Clear); |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
220 |
// 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
|
221 |
scrollBar->setSliderPosition(oldScrollPos); |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
222 |
// load actions |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
223 |
popup->addActions(chatNicks->actions()); |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
224 |
// display menu popup at mouse cursor position |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
225 |
popup->popup(QCursor::pos()); |
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 |
} |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
228 |
|
4892 | 229 |
void HWChatWidget::setShowFollow(bool enabled) |
230 |
{ |
|
231 |
if (enabled) { |
|
232 |
if (!(chatNicks->actions().contains(acFollow))) |
|
233 |
chatNicks->insertAction(acFriend, acFollow); |
|
234 |
} |
|
235 |
else { |
|
236 |
if (chatNicks->actions().contains(acFollow)) |
|
237 |
chatNicks->removeAction(acFollow); |
|
238 |
} |
|
2845 | 239 |
} |
240 |
||
241 |
void HWChatWidget::loadList(QStringList & list, const QString & file) |
|
242 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
243 |
list.clear(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
244 |
QFile txt((cfgdir->absolutePath() + "/" + file).toLocal8Bit().constData()); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
245 |
if(!txt.open(QIODevice::ReadOnly)) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
246 |
return; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
247 |
QTextStream stream(&txt); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
248 |
stream.setCodec("UTF-8"); |
2845 | 249 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
250 |
while(!stream.atEnd()) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
251 |
{ |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
252 |
QString str = stream.readLine(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
253 |
if(str.startsWith(";") || str.length() == 0) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
254 |
continue; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
255 |
list << str.trimmed(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
256 |
} |
3058 | 257 |
//readd once we require newer Qt than 4.4 |
258 |
//list.removeDuplicates(); |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
259 |
txt.close(); |
2845 | 260 |
} |
261 |
||
262 |
void HWChatWidget::saveList(QStringList & list, const QString & file) |
|
263 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
264 |
QFile txt((cfgdir->absolutePath() + "/" + file).toLocal8Bit().constData()); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
265 |
if(!txt.open(QIODevice::WriteOnly | QIODevice::Truncate)) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
266 |
return; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
267 |
QTextStream stream(&txt); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
268 |
stream.setCodec("UTF-8"); |
2845 | 269 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
270 |
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
|
271 |
for(int i = 0; i < list.size(); i++) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
272 |
stream << list[i] << endl; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
273 |
txt.close(); |
2845 | 274 |
} |
275 |
||
4884 | 276 |
void HWChatWidget::updateNickItem(QListWidgetItem *nickItem) |
2845 | 277 |
{ |
4884 | 278 |
QString nick = nickItem->text(); |
279 |
ListWidgetNickItem * item = dynamic_cast<ListWidgetNickItem*>(nickItem); |
|
2845 | 280 |
|
4884 | 281 |
item->setFriend(friendsList.contains(nick, Qt::CaseInsensitive)); |
282 |
item->setIgnored(ignoreList.contains(nick, Qt::CaseInsensitive)); |
|
283 |
||
284 |
if(item->ignored()) |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
285 |
{ |
3925
44b4218605f6
Missing file extensions for icons was screwing up Qt 4.7
nemo
parents:
3807
diff
changeset
|
286 |
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
|
287 |
item->setForeground(Qt::gray); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
288 |
} |
4884 | 289 |
else if(item->isFriend()) |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
290 |
{ |
3925
44b4218605f6
Missing file extensions for icons was screwing up Qt 4.7
nemo
parents:
3807
diff
changeset
|
291 |
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
|
292 |
item->setForeground(Qt::green); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
293 |
} |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
294 |
else |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
295 |
{ |
3925
44b4218605f6
Missing file extensions for icons was screwing up Qt 4.7
nemo
parents:
3807
diff
changeset
|
296 |
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
|
297 |
item->setForeground(QBrush(QColor(0xff, 0xcc, 0x00))); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
298 |
} |
2845 | 299 |
} |
300 |
||
4884 | 301 |
void HWChatWidget::updateNickItems() |
2845 | 302 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
303 |
for(int i = 0; i < chatNicks->count(); i++) |
4884 | 304 |
updateNickItem(chatNicks->item(i)); |
305 |
||
306 |
chatNicks->sortItems(); |
|
2845 | 307 |
} |
308 |
||
309 |
void HWChatWidget::loadLists(const QString & nick) |
|
310 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
311 |
loadList(ignoreList, nick.toLower() + "_ignore.txt"); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
312 |
loadList(friendsList, nick.toLower() + "_friends.txt"); |
4884 | 313 |
updateNickItems(); |
2845 | 314 |
} |
315 |
||
316 |
void HWChatWidget::saveLists(const QString & nick) |
|
317 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
318 |
saveList(ignoreList, nick.toLower() + "_ignore.txt"); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
319 |
saveList(friendsList, nick.toLower() + "_friends.txt"); |
461 | 320 |
} |
321 |
||
322 |
void HWChatWidget::returnPressed() |
|
323 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
324 |
emit chatLine(chatEditLine->text()); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
325 |
chatEditLine->clear(); |
461 | 326 |
} |
2846 | 327 |
|
4897
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
328 |
|
1360 | 329 |
void HWChatWidget::onChatString(const QString& str) |
461 | 330 |
{ |
4897
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
331 |
onChatString("", str); |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
332 |
} |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
333 |
|
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
|
334 |
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
|
335 |
|
4897
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
336 |
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
|
337 |
{ |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
338 |
bool isFriend = false; |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
339 |
|
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
340 |
if (!nick.isEmpty()) { |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
341 |
// 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
|
342 |
if (ignoreList.contains(nick, Qt::CaseInsensitive)) |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
343 |
return; |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
344 |
// friends will get special treatment, of course |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
345 |
isFriend = friendsList.contains(nick, Qt::CaseInsensitive); |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
346 |
} |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
347 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
348 |
if (chatStrings.size() > 250) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
349 |
chatStrings.removeFirst(); |
1626 | 350 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
351 |
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
|
352 |
// 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
|
353 |
formattedStr = formattedStr.replace(URLREGEXP, "<a href=\"http://\\3\">\\3</a>"); |
2845 | 354 |
|
4897
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
355 |
// "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
|
356 |
// 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
|
357 |
if(!nick.isEmpty()) |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
358 |
formattedStr.replace("|nick|",QString("<a href=\"hwnick://?%1\" class=\"nick\">%2</a>").arg(QString(nick.toUtf8().toBase64())).arg(nick)); |
2845 | 359 |
|
4898
7a94005874c9
stylesheet-based chat coloring (only internal for now)
sheepluva
parents:
4897
diff
changeset
|
360 |
QString cssClass("UserChat"); |
3697 | 361 |
|
4897
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
362 |
// 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
|
363 |
switch (str[0].toAscii()) { |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
364 |
case 3: |
4898
7a94005874c9
stylesheet-based chat coloring (only internal for now)
sheepluva
parents:
4897
diff
changeset
|
365 |
cssClass = (isFriend ? "FriendJoin" : "UserJoin"); |
4897
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
366 |
break; |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
367 |
case 2: |
4898
7a94005874c9
stylesheet-based chat coloring (only internal for now)
sheepluva
parents:
4897
diff
changeset
|
368 |
cssClass = (isFriend ? "FriendAction" : "UserAction"); |
4897
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
369 |
break; |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
370 |
default: |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
371 |
if (isFriend) |
4898
7a94005874c9
stylesheet-based chat coloring (only internal for now)
sheepluva
parents:
4897
diff
changeset
|
372 |
cssClass = "FriendChat"; |
4897
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
373 |
} |
2396 | 374 |
|
4898
7a94005874c9
stylesheet-based chat coloring (only internal for now)
sheepluva
parents:
4897
diff
changeset
|
375 |
formattedStr = QString("<span class=\"%2\">%1</span>").arg(formattedStr).arg(cssClass); |
2377 | 376 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
377 |
chatStrings.append(formattedStr); |
2377 | 378 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
379 |
chatText->setHtml(chatStrings.join("<br>")); |
1587 | 380 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
381 |
chatText->moveCursor(QTextCursor::End); |
1587 | 382 |
} |
383 |
||
384 |
void HWChatWidget::onServerMessage(const QString& str) |
|
385 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
386 |
if (chatStrings.size() > 250) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
387 |
chatStrings.removeFirst(); |
2377 | 388 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
389 |
chatStrings.append("<hr>" + str + "<hr>"); |
2377 | 390 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
391 |
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
|
392 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
393 |
chatText->moveCursor(QTextCursor::End); |
461 | 394 |
} |
465 | 395 |
|
2777 | 396 |
void HWChatWidget::nickAdded(const QString& nick, bool notifyNick) |
465 | 397 |
{ |
4884 | 398 |
QListWidgetItem * item = new ListWidgetNickItem(nick, friendsList.contains(nick, Qt::CaseInsensitive), ignoreList.contains(nick, Qt::CaseInsensitive)); |
399 |
updateNickItem(item); |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
400 |
chatNicks->addItem(item); |
2773
e94f240a8a41
Have game beep when someone joins lobby/room. Controlled by Sound option
nemo
parents:
2706
diff
changeset
|
401 |
|
5094 | 402 |
lblCount->setText(QString::number(chatNicks->count())); |
403 |
||
3019 | 404 |
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
|
405 |
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
|
406 |
} |
465 | 407 |
} |
408 |
||
409 |
void HWChatWidget::nickRemoved(const QString& nick) |
|
410 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
411 |
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
|
412 |
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
|
413 |
while(it.hasNext()) chatNicks->takeItem(chatNicks->row(it.next())); |
5094 | 414 |
|
415 |
lblCount->setText(QString::number(chatNicks->count())); |
|
465 | 416 |
} |
417 |
||
418 |
void HWChatWidget::clear() |
|
419 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
420 |
chatText->clear(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
421 |
chatStrings.clear(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
422 |
chatNicks->clear(); |
465 | 423 |
} |
1391 | 424 |
|
425 |
void HWChatWidget::onKick() |
|
426 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
427 |
QListWidgetItem * curritem = chatNicks->currentItem(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
428 |
if (curritem) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
429 |
emit kick(curritem->text()); |
1391 | 430 |
} |
1405 | 431 |
|
1860 | 432 |
void HWChatWidget::onBan() |
433 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
434 |
QListWidgetItem * curritem = chatNicks->currentItem(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
435 |
if (curritem) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
436 |
emit ban(curritem->text()); |
1860 | 437 |
} |
438 |
||
1577 | 439 |
void HWChatWidget::onInfo() |
440 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
441 |
QListWidgetItem * curritem = chatNicks->currentItem(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
442 |
if (curritem) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
443 |
emit info(curritem->text()); |
1577 | 444 |
} |
445 |
||
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
|
446 |
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
|
447 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
448 |
QListWidgetItem * curritem = chatNicks->currentItem(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
449 |
if (curritem) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
450 |
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
|
451 |
} |
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
|
452 |
|
2845 | 453 |
void HWChatWidget::onIgnore() |
454 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
455 |
QListWidgetItem * curritem = chatNicks->currentItem(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
456 |
if(!curritem) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
457 |
return; |
2845 | 458 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
459 |
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
|
460 |
{ |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
461 |
ignoreList.removeAll(curritem->text().toLower()); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
462 |
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
|
463 |
} |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
464 |
else // not on list - add |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
465 |
{ |
4884 | 466 |
// don't consider ignored people friends |
467 |
if(friendsList.contains(curritem->text(), Qt::CaseInsensitive)) |
|
468 |
emit onFriend(); |
|
469 |
||
470 |
// scroll down on first ignore added so that people see where that nick went to |
|
471 |
if (ignoreList.isEmpty()) |
|
4897
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
472 |
chatNicks->scrollToBottom(); |
4884 | 473 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
474 |
ignoreList << curritem->text().toLower(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
475 |
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
|
476 |
} |
4884 | 477 |
updateNickItem(curritem); // update icon/sort order/etc |
478 |
chatNicks->sortItems(); |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
479 |
chatNickSelected(0); // update context menu |
2845 | 480 |
} |
481 |
||
482 |
void HWChatWidget::onFriend() |
|
483 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
484 |
QListWidgetItem * curritem = chatNicks->currentItem(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
485 |
if(!curritem) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
486 |
return; |
2845 | 487 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
488 |
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
|
489 |
{ |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
490 |
friendsList.removeAll(curritem->text().toLower()); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
491 |
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
|
492 |
} |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
493 |
else // not on list - add |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
494 |
{ |
4884 | 495 |
// don't ignore the new friend |
496 |
if(ignoreList.contains(curritem->text(), Qt::CaseInsensitive)) |
|
497 |
emit onIgnore(); |
|
498 |
||
499 |
// scroll up on first friend added so that people see where that nick went to |
|
500 |
if (friendsList.isEmpty()) |
|
4897
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
501 |
chatNicks->scrollToTop(); |
4884 | 502 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
503 |
friendsList << curritem->text().toLower(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
504 |
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
|
505 |
} |
4884 | 506 |
updateNickItem(curritem); // update icon/sort order/etc |
507 |
chatNicks->sortItems(); |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
508 |
chatNickSelected(0); // update context menu |
2845 | 509 |
} |
510 |
||
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
|
511 |
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
|
512 |
{ |
4917
8ff92bdc9f98
Convert READY and NOT_READY messages to CLIENT_FLAGS message
unc0rr
parents:
4899
diff
changeset
|
513 |
Q_UNUSED(item); |
8ff92bdc9f98
Convert READY and NOT_READY messages to CLIENT_FLAGS message
unc0rr
parents:
4899
diff
changeset
|
514 |
|
4892 | 515 |
QList<QAction *> actions = chatNicks->actions(); |
516 |
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
|
517 |
} |
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
|
518 |
|
2847 | 519 |
void HWChatWidget::chatNickSelected(int index) |
2846 | 520 |
{ |
4560
5d6c7f88db73
- Some work on drawMap widget and scene to allow undo, clear, save and load operations
unc0rr
parents:
3925
diff
changeset
|
521 |
Q_UNUSED(index); |
5d6c7f88db73
- Some work on drawMap widget and scene to allow undo, clear, save and load operations
unc0rr
parents:
3925
diff
changeset
|
522 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
523 |
QListWidgetItem* item = chatNicks->currentItem(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
524 |
if (!item) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
525 |
return; |
2846 | 526 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
527 |
// update context menu labels according to possible action |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
528 |
if(ignoreList.contains(item->text(), Qt::CaseInsensitive)) |
3123 | 529 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
530 |
acIgnore->setText(QAction::tr("Unignore")); |
3123 | 531 |
acIgnore->setIcon(QIcon(":/res/unignore.png")); |
532 |
} |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
533 |
else |
3123 | 534 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
535 |
acIgnore->setText(QAction::tr("Ignore")); |
3123 | 536 |
acIgnore->setIcon(QIcon(":/res/ignore.png")); |
537 |
} |
|
2846 | 538 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
539 |
if(friendsList.contains(item->text(), Qt::CaseInsensitive)) |
3123 | 540 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
541 |
acFriend->setText(QAction::tr("Remove friend")); |
3123 | 542 |
acFriend->setIcon(QIcon(":/res/remfriend.png")); |
543 |
} |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
544 |
else |
3123 | 545 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
546 |
acFriend->setText(QAction::tr("Add friend")); |
3123 | 547 |
acFriend->setIcon(QIcon(":/res/addfriend.png")); |
548 |
} |
|
2846 | 549 |
} |
550 |
||
2845 | 551 |
void HWChatWidget::setShowReady(bool s) |
552 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
553 |
showReady = s; |
2845 | 554 |
} |
555 |
||
1405 | 556 |
void HWChatWidget::setReadyStatus(const QString & nick, bool isReady) |
557 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
558 |
QList<QListWidgetItem *> items = chatNicks->findItems(nick, Qt::MatchExactly); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
559 |
if (items.size() != 1) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
560 |
{ |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
561 |
qWarning("Bug: cannot find user in chat"); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
562 |
return; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
563 |
} |
1405 | 564 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
565 |
items[0]->setData(Qt::UserRole, isReady); // bulb status |
4884 | 566 |
updateNickItem(items[0]); |
2845 | 567 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
568 |
// ensure we're still showing the status bulbs |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
569 |
showReady = true; |
1405 | 570 |
} |
1860 | 571 |
|
572 |
void HWChatWidget::adminAccess(bool b) |
|
573 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
574 |
chatNicks->removeAction(acKick); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
575 |
chatNicks->removeAction(acBan); |
2377 | 576 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
577 |
if(b) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
578 |
{ |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
579 |
chatNicks->insertAction(0, acKick); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
580 |
// chatNicks->insertAction(0, acBan); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
581 |
} |
1860 | 582 |
} |