author | sheepluva |
Mon, 31 Jan 2011 08:45:05 +0100 | |
changeset 4892 | b0610081ee95 |
parent 4884 | b2006a9f0fbc |
child 4897 | 11598e7aa7e6 |
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> |
3236
4ab3917d7d44
Update (c) lines to 2010 as unc0rr requested - they all had varying values so I just took the first year mentioned, then tacked on -2010
nemo
parents:
3123
diff
changeset
|
4 |
* Copyright (c) 2010 Andrey Korotaev <unC0Rr@gmail.com> |
480 | 5 |
* |
6 |
* This program is free software; you can redistribute it and/or modify |
|
7 |
* it under the terms of the GNU General Public License as published by |
|
8 |
* the Free Software Foundation; version 2 of the License |
|
9 |
* |
|
10 |
* This program is distributed in the hope that it will be useful, |
|
11 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
12 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
13 |
* GNU General Public License for more details. |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License |
|
16 |
* along with this program; if not, write to the Free Software |
|
17 |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA |
|
18 |
*/ |
|
19 |
||
1520
f72f538eba05
Refactor chat widget to use QTextBrower instead of QListWidget:
unc0rr
parents:
1516
diff
changeset
|
20 |
#include <QTextBrowser> |
461 | 21 |
#include <QLineEdit> |
1391 | 22 |
#include <QAction> |
1577 | 23 |
#include <QApplication> |
1587 | 24 |
#include <QTextDocument> |
2773
e94f240a8a41
Have game beep when someone joins lobby/room. Controlled by Sound option
nemo
parents:
2706
diff
changeset
|
25 |
#include <QDir> |
e94f240a8a41
Have game beep when someone joins lobby/room. Controlled by Sound option
nemo
parents:
2706
diff
changeset
|
26 |
#include <QSettings> |
2845 | 27 |
#include <QFile> |
28 |
#include <QTextStream> |
|
4884 | 29 |
#include <QScrollBar> |
461 | 30 |
|
2773
e94f240a8a41
Have game beep when someone joins lobby/room. Controlled by Sound option
nemo
parents:
2706
diff
changeset
|
31 |
#include "hwconsts.h" |
e94f240a8a41
Have game beep when someone joins lobby/room. Controlled by Sound option
nemo
parents:
2706
diff
changeset
|
32 |
#include "SDLs.h" |
e94f240a8a41
Have game beep when someone joins lobby/room. Controlled by Sound option
nemo
parents:
2706
diff
changeset
|
33 |
#include "gameuiconfig.h" |
461 | 34 |
#include "chatwidget.h" |
35 |
||
4884 | 36 |
ListWidgetNickItem::ListWidgetNickItem(const QString& nick, bool isFriend, bool isIgnored) : QListWidgetItem(nick) |
37 |
{ |
|
38 |
this->aFriend = isFriend; |
|
39 |
this->isIgnored = isIgnored; |
|
40 |
} |
|
41 |
||
42 |
void ListWidgetNickItem::setFriend(bool isFriend) |
|
43 |
{ |
|
44 |
this->aFriend = isFriend; |
|
45 |
} |
|
46 |
||
47 |
void ListWidgetNickItem::setIgnored(bool isIgnored) |
|
48 |
{ |
|
49 |
this->isIgnored = isIgnored; |
|
50 |
} |
|
51 |
||
52 |
bool ListWidgetNickItem::isFriend() |
|
53 |
{ |
|
54 |
return aFriend; |
|
55 |
} |
|
56 |
||
57 |
bool ListWidgetNickItem::ignored() |
|
58 |
{ |
|
59 |
return isIgnored; |
|
60 |
} |
|
4876 | 61 |
|
62 |
bool ListWidgetNickItem::operator< (const QListWidgetItem & other) const |
|
63 |
{ |
|
64 |
// case in-sensitive comparison of the associated strings |
|
4877
746ddd590dee
nick sorting: give letters priority over all other chars
sheepluva
parents:
4876
diff
changeset
|
65 |
// 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
|
66 |
|
4884 | 67 |
ListWidgetNickItem otherNick = const_cast<ListWidgetNickItem &>(dynamic_cast<const ListWidgetNickItem &>(other)); |
68 |
||
69 |
// ignored always down |
|
70 |
if (isIgnored != otherNick.ignored()) |
|
71 |
return !isIgnored; |
|
72 |
||
73 |
// friends always up |
|
74 |
if (aFriend != otherNick.isFriend()) |
|
75 |
return aFriend; |
|
76 |
||
4877
746ddd590dee
nick sorting: give letters priority over all other chars
sheepluva
parents:
4876
diff
changeset
|
77 |
QString txt1 = text().toLower(); |
746ddd590dee
nick sorting: give letters priority over all other chars
sheepluva
parents:
4876
diff
changeset
|
78 |
QString txt2 = other.text().toLower(); |
746ddd590dee
nick sorting: give letters priority over all other chars
sheepluva
parents:
4876
diff
changeset
|
79 |
|
746ddd590dee
nick sorting: give letters priority over all other chars
sheepluva
parents:
4876
diff
changeset
|
80 |
bool firstIsShorter = (txt1.size() < txt2.size()); |
746ddd590dee
nick sorting: give letters priority over all other chars
sheepluva
parents:
4876
diff
changeset
|
81 |
int len = firstIsShorter?txt1.size():txt2.size(); |
746ddd590dee
nick sorting: give letters priority over all other chars
sheepluva
parents:
4876
diff
changeset
|
82 |
|
746ddd590dee
nick sorting: give letters priority over all other chars
sheepluva
parents:
4876
diff
changeset
|
83 |
for (int i = 0; i < len; i++) |
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 |
if (txt1[i] == txt2[i]) |
746ddd590dee
nick sorting: give letters priority over all other chars
sheepluva
parents:
4876
diff
changeset
|
86 |
continue; |
746ddd590dee
nick sorting: give letters priority over all other chars
sheepluva
parents:
4876
diff
changeset
|
87 |
if (txt1[i].isLetter() != txt2[i].isLetter()) |
746ddd590dee
nick sorting: give letters priority over all other chars
sheepluva
parents:
4876
diff
changeset
|
88 |
return txt1[i].isLetter(); |
746ddd590dee
nick sorting: give letters priority over all other chars
sheepluva
parents:
4876
diff
changeset
|
89 |
return (txt1[i] < txt2[i]); |
746ddd590dee
nick sorting: give letters priority over all other chars
sheepluva
parents:
4876
diff
changeset
|
90 |
} |
746ddd590dee
nick sorting: give letters priority over all other chars
sheepluva
parents:
4876
diff
changeset
|
91 |
|
746ddd590dee
nick sorting: give letters priority over all other chars
sheepluva
parents:
4876
diff
changeset
|
92 |
return firstIsShorter; |
4876 | 93 |
} |
94 |
||
2775 | 95 |
HWChatWidget::HWChatWidget(QWidget* parent, QSettings * gameSettings, SDLInteraction * sdli, bool notify) : |
461 | 96 |
QWidget(parent), |
97 |
mainLayout(this) |
|
98 |
{ |
|
2773
e94f240a8a41
Have game beep when someone joins lobby/room. Controlled by Sound option
nemo
parents:
2706
diff
changeset
|
99 |
this->gameSettings = gameSettings; |
e94f240a8a41
Have game beep when someone joins lobby/room. Controlled by Sound option
nemo
parents:
2706
diff
changeset
|
100 |
this->sdli = sdli; |
2775 | 101 |
this->notify = notify; |
3019 | 102 |
if(notify && gameSettings->value("frontend/sound", true).toBool()) { |
2775 | 103 |
QDir tmpdir; |
104 |
||
105 |
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
|
106 |
tmpdir.cd("Sounds/voices"); |
2775 | 107 |
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
|
108 |
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
|
109 |
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
|
110 |
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
|
111 |
sound[3] = Mix_LoadWAV(QString(tmpdir.absolutePath() + "/Russian/Hello.ogg").toLocal8Bit().constData()); |
2775 | 112 |
} |
2773
e94f240a8a41
Have game beep when someone joins lobby/room. Controlled by Sound option
nemo
parents:
2706
diff
changeset
|
113 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
114 |
mainLayout.setSpacing(1); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
115 |
mainLayout.setMargin(1); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
116 |
mainLayout.setSizeConstraint(QLayout::SetMinimumSize); |
3790 | 117 |
mainLayout.setColumnStretch(0, 76); |
118 |
mainLayout.setColumnStretch(1, 24); |
|
461 | 119 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
120 |
chatEditLine = new QLineEdit(this); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
121 |
chatEditLine->setMaxLength(300); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
122 |
connect(chatEditLine, SIGNAL(returnPressed()), this, SLOT(returnPressed())); |
461 | 123 |
|
3790 | 124 |
mainLayout.addWidget(chatEditLine, 1, 0); |
462 | 125 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
126 |
chatText = new QTextBrowser(this); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
127 |
chatText->setMinimumHeight(20); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
128 |
chatText->setMinimumWidth(10); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
129 |
chatText->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
130 |
chatText->setOpenExternalLinks(true); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
131 |
mainLayout.addWidget(chatText, 0, 0); |
462 | 132 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
133 |
chatNicks = new QListWidget(this); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
134 |
chatNicks->setMinimumHeight(10); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
135 |
chatNicks->setMinimumWidth(10); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
136 |
chatNicks->setSortingEnabled(true); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
137 |
chatNicks->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
138 |
chatNicks->setContextMenuPolicy(Qt::ActionsContextMenu); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
139 |
connect(chatNicks, SIGNAL(itemDoubleClicked(QListWidgetItem *)), |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
140 |
this, SLOT(chatNickDoubleClicked(QListWidgetItem *))); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
141 |
connect(chatNicks, SIGNAL(currentRowChanged(int)), |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
142 |
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
|
143 |
|
3807 | 144 |
mainLayout.addWidget(chatNicks, 0, 1, -1, 1); |
1391 | 145 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
146 |
acInfo = new QAction(QAction::tr("Info"), chatNicks); |
3123 | 147 |
acInfo->setIcon(QIcon(":/res/info.png")); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
148 |
connect(acInfo, SIGNAL(triggered(bool)), this, SLOT(onInfo())); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
149 |
acKick = new QAction(QAction::tr("Kick"), chatNicks); |
3123 | 150 |
acKick->setIcon(QIcon(":/res/kick.png")); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
151 |
connect(acKick, SIGNAL(triggered(bool)), this, SLOT(onKick())); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
152 |
acBan = new QAction(QAction::tr("Ban"), chatNicks); |
3123 | 153 |
acBan->setIcon(QIcon(":/res/ban.png")); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
154 |
connect(acBan, SIGNAL(triggered(bool)), this, SLOT(onBan())); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
155 |
acFollow = new QAction(QAction::tr("Follow"), chatNicks); |
3123 | 156 |
acFollow->setIcon(QIcon(":/res/follow.png")); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
157 |
connect(acFollow, SIGNAL(triggered(bool)), this, SLOT(onFollow())); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
158 |
acIgnore = new QAction(QAction::tr("Ignore"), chatNicks); |
3123 | 159 |
acIgnore->setIcon(QIcon(":/res/ignore.png")); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
160 |
connect(acIgnore, SIGNAL(triggered(bool)), this, SLOT(onIgnore())); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
161 |
acFriend = new QAction(QAction::tr("Add friend"), chatNicks); |
3123 | 162 |
acFriend->setIcon(QIcon(":/res/addfriend.png")); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
163 |
connect(acFriend, SIGNAL(triggered(bool)), this, SLOT(onFriend())); |
2377 | 164 |
|
4892 | 165 |
chatNicks->insertAction(0, acFriend); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
166 |
chatNicks->insertAction(0, acInfo); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
167 |
chatNicks->insertAction(0, acIgnore); |
3697 | 168 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
169 |
showReady = false; |
4892 | 170 |
setShowFollow(true); |
171 |
} |
|
172 |
||
173 |
void HWChatWidget::setShowFollow(bool enabled) |
|
174 |
{ |
|
175 |
if (enabled) { |
|
176 |
if (!(chatNicks->actions().contains(acFollow))) |
|
177 |
chatNicks->insertAction(acFriend, acFollow); |
|
178 |
} |
|
179 |
else { |
|
180 |
if (chatNicks->actions().contains(acFollow)) |
|
181 |
chatNicks->removeAction(acFollow); |
|
182 |
} |
|
2845 | 183 |
} |
184 |
||
185 |
void HWChatWidget::loadList(QStringList & list, const QString & file) |
|
186 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
187 |
list.clear(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
188 |
QFile txt((cfgdir->absolutePath() + "/" + file).toLocal8Bit().constData()); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
189 |
if(!txt.open(QIODevice::ReadOnly)) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
190 |
return; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
191 |
QTextStream stream(&txt); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
192 |
stream.setCodec("UTF-8"); |
2845 | 193 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
194 |
while(!stream.atEnd()) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
195 |
{ |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
196 |
QString str = stream.readLine(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
197 |
if(str.startsWith(";") || str.length() == 0) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
198 |
continue; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
199 |
list << str.trimmed(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
200 |
} |
3058 | 201 |
//readd once we require newer Qt than 4.4 |
202 |
//list.removeDuplicates(); |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
203 |
txt.close(); |
2845 | 204 |
} |
205 |
||
206 |
void HWChatWidget::saveList(QStringList & list, const QString & file) |
|
207 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
208 |
QFile txt((cfgdir->absolutePath() + "/" + file).toLocal8Bit().constData()); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
209 |
if(!txt.open(QIODevice::WriteOnly | QIODevice::Truncate)) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
210 |
return; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
211 |
QTextStream stream(&txt); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
212 |
stream.setCodec("UTF-8"); |
2845 | 213 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
214 |
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
|
215 |
for(int i = 0; i < list.size(); i++) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
216 |
stream << list[i] << endl; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
217 |
txt.close(); |
2845 | 218 |
} |
219 |
||
4884 | 220 |
void HWChatWidget::updateNickItem(QListWidgetItem *nickItem) |
2845 | 221 |
{ |
4884 | 222 |
QString nick = nickItem->text(); |
223 |
ListWidgetNickItem * item = dynamic_cast<ListWidgetNickItem*>(nickItem); |
|
2845 | 224 |
|
4884 | 225 |
item->setFriend(friendsList.contains(nick, Qt::CaseInsensitive)); |
226 |
item->setIgnored(ignoreList.contains(nick, Qt::CaseInsensitive)); |
|
227 |
||
228 |
if(item->ignored()) |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
229 |
{ |
3925
44b4218605f6
Missing file extensions for icons was screwing up Qt 4.7
nemo
parents:
3807
diff
changeset
|
230 |
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
|
231 |
item->setForeground(Qt::gray); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
232 |
} |
4884 | 233 |
else if(item->isFriend()) |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
234 |
{ |
3925
44b4218605f6
Missing file extensions for icons was screwing up Qt 4.7
nemo
parents:
3807
diff
changeset
|
235 |
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
|
236 |
item->setForeground(Qt::green); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
237 |
} |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
238 |
else |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
239 |
{ |
3925
44b4218605f6
Missing file extensions for icons was screwing up Qt 4.7
nemo
parents:
3807
diff
changeset
|
240 |
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
|
241 |
item->setForeground(QBrush(QColor(0xff, 0xcc, 0x00))); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
242 |
} |
2845 | 243 |
} |
244 |
||
4884 | 245 |
void HWChatWidget::updateNickItems() |
2845 | 246 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
247 |
for(int i = 0; i < chatNicks->count(); i++) |
4884 | 248 |
updateNickItem(chatNicks->item(i)); |
249 |
||
250 |
chatNicks->sortItems(); |
|
2845 | 251 |
} |
252 |
||
253 |
void HWChatWidget::loadLists(const QString & nick) |
|
254 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
255 |
loadList(ignoreList, nick.toLower() + "_ignore.txt"); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
256 |
loadList(friendsList, nick.toLower() + "_friends.txt"); |
4884 | 257 |
updateNickItems(); |
2845 | 258 |
} |
259 |
||
260 |
void HWChatWidget::saveLists(const QString & nick) |
|
261 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
262 |
saveList(ignoreList, nick.toLower() + "_ignore.txt"); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
263 |
saveList(friendsList, nick.toLower() + "_friends.txt"); |
461 | 264 |
} |
265 |
||
266 |
void HWChatWidget::returnPressed() |
|
267 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
268 |
emit chatLine(chatEditLine->text()); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
269 |
chatEditLine->clear(); |
461 | 270 |
} |
2846 | 271 |
|
1360 | 272 |
void HWChatWidget::onChatString(const QString& str) |
461 | 273 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
274 |
if (chatStrings.size() > 250) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
275 |
chatStrings.removeFirst(); |
1626 | 276 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
277 |
QString formattedStr = Qt::escape(str.mid(1)); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
278 |
QStringList parts = formattedStr.split(QRegExp("\\W+"), QString::SkipEmptyParts); |
2845 | 279 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
280 |
if (!formattedStr.startsWith(" ***")) // don't ignore status messages |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
281 |
{ |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
282 |
if (formattedStr.startsWith(" *")) // emote |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
283 |
parts[0] = parts[1]; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
284 |
if(parts.size() > 0 && ignoreList.contains(parts[0], Qt::CaseInsensitive)) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
285 |
return; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
286 |
} |
2845 | 287 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
288 |
QString color(""); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
289 |
bool isFriend = friendsList.contains(parts[0], Qt::CaseInsensitive); |
3697 | 290 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
291 |
if (str.startsWith("\x03")) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
292 |
color = QString("#c0c0c0"); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
293 |
else if (str.startsWith("\x02")) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
294 |
color = QString(isFriend ? "#00ff00" : "#ff00ff"); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
295 |
else if (isFriend) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
296 |
color = QString("#00c000"); |
2396 | 297 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
298 |
if(color.compare("") != 0) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
299 |
formattedStr = QString("<font color=\"%2\">%1</font>").arg(formattedStr).arg(color); |
2377 | 300 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
301 |
chatStrings.append(formattedStr); |
2377 | 302 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
303 |
chatText->setHtml(chatStrings.join("<br>")); |
1587 | 304 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
305 |
chatText->moveCursor(QTextCursor::End); |
1587 | 306 |
} |
307 |
||
308 |
void HWChatWidget::onServerMessage(const QString& str) |
|
309 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
310 |
if (chatStrings.size() > 250) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
311 |
chatStrings.removeFirst(); |
2377 | 312 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
313 |
chatStrings.append("<hr>" + str + "<hr>"); |
2377 | 314 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
315 |
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
|
316 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
317 |
chatText->moveCursor(QTextCursor::End); |
461 | 318 |
} |
465 | 319 |
|
2777 | 320 |
void HWChatWidget::nickAdded(const QString& nick, bool notifyNick) |
465 | 321 |
{ |
4884 | 322 |
QListWidgetItem * item = new ListWidgetNickItem(nick, friendsList.contains(nick, Qt::CaseInsensitive), ignoreList.contains(nick, Qt::CaseInsensitive)); |
323 |
updateNickItem(item); |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
324 |
chatNicks->addItem(item); |
2773
e94f240a8a41
Have game beep when someone joins lobby/room. Controlled by Sound option
nemo
parents:
2706
diff
changeset
|
325 |
|
3019 | 326 |
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
|
327 |
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
|
328 |
} |
465 | 329 |
} |
330 |
||
331 |
void HWChatWidget::nickRemoved(const QString& nick) |
|
332 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
333 |
QList<QListWidgetItem *> items = chatNicks->findItems(nick, Qt::MatchExactly); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
334 |
for(QList<QListWidgetItem *>::iterator it=items.begin(); it!=items.end();) { |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
335 |
chatNicks->takeItem(chatNicks->row(*it)); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
336 |
++it; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
337 |
} |
465 | 338 |
} |
339 |
||
340 |
void HWChatWidget::clear() |
|
341 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
342 |
chatText->clear(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
343 |
chatStrings.clear(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
344 |
chatNicks->clear(); |
465 | 345 |
} |
1391 | 346 |
|
347 |
void HWChatWidget::onKick() |
|
348 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
349 |
QListWidgetItem * curritem = chatNicks->currentItem(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
350 |
if (curritem) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
351 |
emit kick(curritem->text()); |
1391 | 352 |
} |
1405 | 353 |
|
1860 | 354 |
void HWChatWidget::onBan() |
355 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
356 |
QListWidgetItem * curritem = chatNicks->currentItem(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
357 |
if (curritem) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
358 |
emit ban(curritem->text()); |
1860 | 359 |
} |
360 |
||
1577 | 361 |
void HWChatWidget::onInfo() |
362 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
363 |
QListWidgetItem * curritem = chatNicks->currentItem(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
364 |
if (curritem) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
365 |
emit info(curritem->text()); |
1577 | 366 |
} |
367 |
||
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
|
368 |
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
|
369 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
370 |
QListWidgetItem * curritem = chatNicks->currentItem(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
371 |
if (curritem) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
372 |
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
|
373 |
} |
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
|
374 |
|
2845 | 375 |
void HWChatWidget::onIgnore() |
376 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
377 |
QListWidgetItem * curritem = chatNicks->currentItem(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
378 |
if(!curritem) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
379 |
return; |
2845 | 380 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
381 |
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
|
382 |
{ |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
383 |
ignoreList.removeAll(curritem->text().toLower()); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
384 |
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
|
385 |
} |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
386 |
else // not on list - add |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
387 |
{ |
4884 | 388 |
// don't consider ignored people friends |
389 |
if(friendsList.contains(curritem->text(), Qt::CaseInsensitive)) |
|
390 |
emit onFriend(); |
|
391 |
||
392 |
// scroll down on first ignore added so that people see where that nick went to |
|
393 |
if (ignoreList.isEmpty()) |
|
394 |
emit chatNicks->verticalScrollBar()->setValue(chatNicks->verticalScrollBar()->maximum()); |
|
395 |
||
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
396 |
ignoreList << curritem->text().toLower(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
397 |
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
|
398 |
} |
4884 | 399 |
updateNickItem(curritem); // update icon/sort order/etc |
400 |
chatNicks->sortItems(); |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
401 |
chatNickSelected(0); // update context menu |
2845 | 402 |
} |
403 |
||
404 |
void HWChatWidget::onFriend() |
|
405 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
406 |
QListWidgetItem * curritem = chatNicks->currentItem(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
407 |
if(!curritem) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
408 |
return; |
2845 | 409 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
410 |
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
|
411 |
{ |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
412 |
friendsList.removeAll(curritem->text().toLower()); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
413 |
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
|
414 |
} |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
415 |
else // not on list - add |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
416 |
{ |
4884 | 417 |
// don't ignore the new friend |
418 |
if(ignoreList.contains(curritem->text(), Qt::CaseInsensitive)) |
|
419 |
emit onIgnore(); |
|
420 |
||
421 |
// scroll up on first friend added so that people see where that nick went to |
|
422 |
if (friendsList.isEmpty()) |
|
423 |
emit chatNicks->verticalScrollBar()->setValue(chatNicks->verticalScrollBar()->minimum()); |
|
424 |
||
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
425 |
friendsList << curritem->text().toLower(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
426 |
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
|
427 |
} |
4884 | 428 |
updateNickItem(curritem); // update icon/sort order/etc |
429 |
chatNicks->sortItems(); |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
430 |
chatNickSelected(0); // update context menu |
2845 | 431 |
} |
432 |
||
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
|
433 |
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
|
434 |
{ |
4892 | 435 |
QList<QAction *> actions = chatNicks->actions(); |
436 |
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
|
437 |
} |
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
|
438 |
|
2847 | 439 |
void HWChatWidget::chatNickSelected(int index) |
2846 | 440 |
{ |
4560
5d6c7f88db73
- Some work on drawMap widget and scene to allow undo, clear, save and load operations
unc0rr
parents:
3925
diff
changeset
|
441 |
Q_UNUSED(index); |
5d6c7f88db73
- Some work on drawMap widget and scene to allow undo, clear, save and load operations
unc0rr
parents:
3925
diff
changeset
|
442 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
443 |
QListWidgetItem* item = chatNicks->currentItem(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
444 |
if (!item) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
445 |
return; |
2846 | 446 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
447 |
// update context menu labels according to possible action |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
448 |
if(ignoreList.contains(item->text(), Qt::CaseInsensitive)) |
3123 | 449 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
450 |
acIgnore->setText(QAction::tr("Unignore")); |
3123 | 451 |
acIgnore->setIcon(QIcon(":/res/unignore.png")); |
452 |
} |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
453 |
else |
3123 | 454 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
455 |
acIgnore->setText(QAction::tr("Ignore")); |
3123 | 456 |
acIgnore->setIcon(QIcon(":/res/ignore.png")); |
457 |
} |
|
2846 | 458 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
459 |
if(friendsList.contains(item->text(), Qt::CaseInsensitive)) |
3123 | 460 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
461 |
acFriend->setText(QAction::tr("Remove friend")); |
3123 | 462 |
acFriend->setIcon(QIcon(":/res/remfriend.png")); |
463 |
} |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
464 |
else |
3123 | 465 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
466 |
acFriend->setText(QAction::tr("Add friend")); |
3123 | 467 |
acFriend->setIcon(QIcon(":/res/addfriend.png")); |
468 |
} |
|
2846 | 469 |
} |
470 |
||
2845 | 471 |
void HWChatWidget::setShowReady(bool s) |
472 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
473 |
showReady = s; |
2845 | 474 |
} |
475 |
||
1405 | 476 |
void HWChatWidget::setReadyStatus(const QString & nick, bool isReady) |
477 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
478 |
QList<QListWidgetItem *> items = chatNicks->findItems(nick, Qt::MatchExactly); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
479 |
if (items.size() != 1) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
480 |
{ |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
481 |
qWarning("Bug: cannot find user in chat"); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
482 |
return; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
483 |
} |
1405 | 484 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
485 |
items[0]->setData(Qt::UserRole, isReady); // bulb status |
4884 | 486 |
updateNickItem(items[0]); |
2845 | 487 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
488 |
// ensure we're still showing the status bulbs |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
489 |
showReady = true; |
1405 | 490 |
} |
1860 | 491 |
|
492 |
void HWChatWidget::adminAccess(bool b) |
|
493 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
494 |
chatNicks->removeAction(acKick); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
495 |
chatNicks->removeAction(acBan); |
2377 | 496 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
497 |
if(b) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
498 |
{ |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
499 |
chatNicks->insertAction(0, acKick); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
500 |
// chatNicks->insertAction(0, acBan); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
501 |
} |
1860 | 502 |
} |