author | unc0rr |
Mon, 01 Oct 2012 00:31:38 +0400 | |
changeset 7720 | 8e6b79a020f8 |
parent 7537 | 833a0c34fafc |
child 7723 | ca05b576ec74 |
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> |
6952 | 4 |
* Copyright (c) 2004-2012 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> |
1587 | 24 |
#include <QTextDocument> |
6165
6fe3e922246e
moving and renaming SDLs.*, making it a singleton; cleaning up class responsibilties wrt SDLInteraction; some comments
sheepluva
parents:
6151
diff
changeset
|
25 |
#include <QFile> |
6222
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
26 |
#include <QList> |
2773
e94f240a8a41
Have game beep when someone joins lobby/room. Controlled by Sound option
nemo
parents:
2706
diff
changeset
|
27 |
#include <QSettings> |
2845 | 28 |
#include <QTextStream> |
4897
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
29 |
#include <QMenu> |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
30 |
#include <QCursor> |
4884 | 31 |
#include <QScrollBar> |
4897
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
32 |
#include <QItemSelectionModel> |
5990
578978418fe5
let frontend send (copypasta) multi-line messages line by line to avoid protocol violation
sheepluva
parents:
5953
diff
changeset
|
33 |
#include <QStringList> |
6197 | 34 |
#include <QDateTime> |
35 |
#include <QTime> |
|
7720 | 36 |
#include <QPainter> |
6180
0992fc5a4ad9
some changes to the css... display:none; works now (e.g. you can use it for user join/leave messages that are not your friends)
sheepluva
parents:
6178
diff
changeset
|
37 |
|
6229
4c834af76c3b
* fix highlighting (i just broke it by not negating a boolean expression)
sheepluva
parents:
6227
diff
changeset
|
38 |
#include <QMessageBox> |
4c834af76c3b
* fix highlighting (i just broke it by not negating a boolean expression)
sheepluva
parents:
6227
diff
changeset
|
39 |
|
461 | 40 |
|
6930 | 41 |
#include "DataManager.h" |
2773
e94f240a8a41
Have game beep when someone joins lobby/room. Controlled by Sound option
nemo
parents:
2706
diff
changeset
|
42 |
#include "hwconsts.h" |
e94f240a8a41
Have game beep when someone joins lobby/room. Controlled by Sound option
nemo
parents:
2706
diff
changeset
|
43 |
#include "gameuiconfig.h" |
6165
6fe3e922246e
moving and renaming SDLs.*, making it a singleton; cleaning up class responsibilties wrt SDLInteraction; some comments
sheepluva
parents:
6151
diff
changeset
|
44 |
|
461 | 45 |
#include "chatwidget.h" |
46 |
||
7720 | 47 |
|
4884 | 48 |
ListWidgetNickItem::ListWidgetNickItem(const QString& nick, bool isFriend, bool isIgnored) : QListWidgetItem(nick) |
49 |
{ |
|
7720 | 50 |
setData(Friend, isFriend); |
51 |
setData(Ignore, isIgnored); |
|
4884 | 52 |
} |
53 |
||
7720 | 54 |
void ListWidgetNickItem::setData(StateFlag role, const QVariant &value) |
4884 | 55 |
{ |
7720 | 56 |
QListWidgetItem::setData(role, value); |
4884 | 57 |
|
7720 | 58 |
updateIcon(); |
4884 | 59 |
} |
4876 | 60 |
|
61 |
bool ListWidgetNickItem::operator< (const QListWidgetItem & other) const |
|
62 |
{ |
|
63 |
// case in-sensitive comparison of the associated strings |
|
4877
746ddd590dee
nick sorting: give letters priority over all other chars
sheepluva
parents:
4876
diff
changeset
|
64 |
// 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
|
65 |
|
4884 | 66 |
ListWidgetNickItem otherNick = const_cast<ListWidgetNickItem &>(dynamic_cast<const ListWidgetNickItem &>(other)); |
67 |
||
68 |
// ignored always down |
|
7720 | 69 |
if (data(Ignore).toBool() != otherNick.data(Ignore).toBool()) |
70 |
return !data(Ignore).toBool(); |
|
4884 | 71 |
|
72 |
// friends always up |
|
7720 | 73 |
if (data(Friend).toBool() != otherNick.data(Friend).toBool()) |
74 |
return data(Friend).toBool(); |
|
4884 | 75 |
|
4877
746ddd590dee
nick sorting: give letters priority over all other chars
sheepluva
parents:
4876
diff
changeset
|
76 |
QString txt1 = text().toLower(); |
746ddd590dee
nick sorting: give letters priority over all other chars
sheepluva
parents:
4876
diff
changeset
|
77 |
QString txt2 = other.text().toLower(); |
746ddd590dee
nick sorting: give letters priority over all other chars
sheepluva
parents:
4876
diff
changeset
|
78 |
|
746ddd590dee
nick sorting: give letters priority over all other chars
sheepluva
parents:
4876
diff
changeset
|
79 |
bool firstIsShorter = (txt1.size() < txt2.size()); |
746ddd590dee
nick sorting: give letters priority over all other chars
sheepluva
parents:
4876
diff
changeset
|
80 |
int len = firstIsShorter?txt1.size():txt2.size(); |
746ddd590dee
nick sorting: give letters priority over all other chars
sheepluva
parents:
4876
diff
changeset
|
81 |
|
746ddd590dee
nick sorting: give letters priority over all other chars
sheepluva
parents:
4876
diff
changeset
|
82 |
for (int i = 0; i < len; i++) |
746ddd590dee
nick sorting: give letters priority over all other chars
sheepluva
parents:
4876
diff
changeset
|
83 |
{ |
746ddd590dee
nick sorting: give letters priority over all other chars
sheepluva
parents:
4876
diff
changeset
|
84 |
if (txt1[i] == txt2[i]) |
746ddd590dee
nick sorting: give letters priority over all other chars
sheepluva
parents:
4876
diff
changeset
|
85 |
continue; |
746ddd590dee
nick sorting: give letters priority over all other chars
sheepluva
parents:
4876
diff
changeset
|
86 |
if (txt1[i].isLetter() != txt2[i].isLetter()) |
746ddd590dee
nick sorting: give letters priority over all other chars
sheepluva
parents:
4876
diff
changeset
|
87 |
return txt1[i].isLetter(); |
746ddd590dee
nick sorting: give letters priority over all other chars
sheepluva
parents:
4876
diff
changeset
|
88 |
return (txt1[i] < txt2[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 |
|
746ddd590dee
nick sorting: give letters priority over all other chars
sheepluva
parents:
4876
diff
changeset
|
91 |
return firstIsShorter; |
4876 | 92 |
} |
93 |
||
7720 | 94 |
void ListWidgetNickItem::updateIcon() |
95 |
{ |
|
96 |
quint32 iconNum = 0; |
|
97 |
||
98 |
QList<bool> flags; |
|
99 |
flags |
|
100 |
<< data(Ready).toBool() |
|
101 |
<< data(ServerAdmin).toBool() |
|
102 |
<< data(RoomAdmin).toBool() |
|
103 |
<< data(Registered).toBool() |
|
104 |
<< data(Friend).toBool() |
|
105 |
<< data(Ignore).toBool() |
|
106 |
; |
|
107 |
||
108 |
for(int i = flags.size() - 1; i >= 0; --i) |
|
109 |
if(flags[i]) |
|
110 |
iconNum |= 1 << i; |
|
111 |
||
112 |
if(m_icons().contains(iconNum)) |
|
113 |
{ |
|
114 |
setIcon(m_icons().value(iconNum)); |
|
115 |
} |
|
116 |
else |
|
117 |
{ |
|
118 |
QPixmap result(24, 16); |
|
119 |
result.fill(Qt::transparent); |
|
120 |
||
121 |
QPainter painter(&result); |
|
122 |
||
123 |
if(data(Ready).toBool()) |
|
124 |
painter.drawPixmap(8, 0, 16, 16, QPixmap(":/res/chat/lamp.png")); |
|
125 |
||
126 |
QString mainIconName(":/res/chat/"); |
|
127 |
||
128 |
if(data(RoomAdmin).toBool()) |
|
129 |
mainIconName += "roomadmin"; |
|
130 |
else if(data(ServerAdmin).toBool()) |
|
131 |
mainIconName += "serveradmin"; |
|
132 |
else |
|
133 |
mainIconName += "hedgehog"; |
|
134 |
||
135 |
if(!data(Registered).toBool()) |
|
136 |
mainIconName += "_gray"; |
|
137 |
||
138 |
painter.drawPixmap(0, 0, 16, 16, QPixmap(mainIconName + ".png")); |
|
139 |
||
140 |
if(data(Ignore).toBool()) |
|
141 |
painter.drawPixmap(0, 0, 16, 16, QPixmap(":/res/chat/ignore.png")); |
|
142 |
else |
|
143 |
if(data(Friend).toBool()) |
|
144 |
painter.drawPixmap(0, 0, 16, 16, QPixmap(":/res/chat/friend.png")); |
|
145 |
||
146 |
painter.end(); |
|
147 |
||
148 |
QIcon icon(result); |
|
149 |
||
150 |
setIcon(icon); |
|
151 |
m_icons().insert(iconNum, icon); |
|
152 |
} |
|
153 |
||
154 |
if(data(Ignore).toBool()) |
|
155 |
setForeground(Qt::gray); |
|
156 |
else |
|
157 |
if(data(Friend).toBool()) |
|
158 |
setForeground(Qt::green); |
|
159 |
else |
|
160 |
setForeground(QBrush(QColor(0xff, 0xcc, 0x00))); |
|
161 |
} |
|
162 |
||
163 |
QHash<quint32, QIcon> & ListWidgetNickItem::m_icons() |
|
164 |
{ |
|
165 |
static QHash<quint32, QIcon> iconsCache; |
|
166 |
||
167 |
return iconsCache; |
|
168 |
} |
|
169 |
||
6180
0992fc5a4ad9
some changes to the css... display:none; works now (e.g. you can use it for user join/leave messages that are not your friends)
sheepluva
parents:
6178
diff
changeset
|
170 |
QString * HWChatWidget::s_styleSheet = NULL; |
0992fc5a4ad9
some changes to the css... display:none; works now (e.g. you can use it for user join/leave messages that are not your friends)
sheepluva
parents:
6178
diff
changeset
|
171 |
QStringList * HWChatWidget::s_displayNone = NULL; |
6197 | 172 |
bool HWChatWidget::s_isTimeStamped = true; |
6229
4c834af76c3b
* fix highlighting (i just broke it by not negating a boolean expression)
sheepluva
parents:
6227
diff
changeset
|
173 |
QString HWChatWidget::s_tsFormat = ":mm:ss"; |
6180
0992fc5a4ad9
some changes to the css... display:none; works now (e.g. you can use it for user join/leave messages that are not your friends)
sheepluva
parents:
6178
diff
changeset
|
174 |
|
6201
d88e7f6cf499
fix of /saveStyleSheet command, error message on stylesheet import fail
sheepluva
parents:
6198
diff
changeset
|
175 |
const QString & HWChatWidget::styleSheet() |
6180
0992fc5a4ad9
some changes to the css... display:none; works now (e.g. you can use it for user join/leave messages that are not your friends)
sheepluva
parents:
6178
diff
changeset
|
176 |
{ |
6197 | 177 |
if (s_styleSheet != NULL) |
178 |
return *s_styleSheet; |
|
6180
0992fc5a4ad9
some changes to the css... display:none; works now (e.g. you can use it for user join/leave messages that are not your friends)
sheepluva
parents:
6178
diff
changeset
|
179 |
|
6197 | 180 |
setStyleSheet(); |
181 |
||
182 |
return *s_styleSheet; |
|
183 |
} |
|
184 |
||
185 |
void HWChatWidget::setStyleSheet(const QString & styleSheet) |
|
186 |
{ |
|
6201
d88e7f6cf499
fix of /saveStyleSheet command, error message on stylesheet import fail
sheepluva
parents:
6198
diff
changeset
|
187 |
QString orgStyleSheet = styleSheet; |
d88e7f6cf499
fix of /saveStyleSheet command, error message on stylesheet import fail
sheepluva
parents:
6198
diff
changeset
|
188 |
QString style = QString(orgStyleSheet); |
6180
0992fc5a4ad9
some changes to the css... display:none; works now (e.g. you can use it for user join/leave messages that are not your friends)
sheepluva
parents:
6178
diff
changeset
|
189 |
|
6197 | 190 |
// no stylesheet supplied, search for one or use default |
6201
d88e7f6cf499
fix of /saveStyleSheet command, error message on stylesheet import fail
sheepluva
parents:
6198
diff
changeset
|
191 |
if (orgStyleSheet.isEmpty()) |
6180
0992fc5a4ad9
some changes to the css... display:none; works now (e.g. you can use it for user join/leave messages that are not your friends)
sheepluva
parents:
6178
diff
changeset
|
192 |
{ |
6197 | 193 |
// load external stylesheet if there is any |
6930 | 194 |
QFile extFile(DataManager::instance().findFileForRead("css/chat.css")); |
6197 | 195 |
|
196 |
QFile resFile(":/res/css/chat.css"); |
|
197 |
||
198 |
QFile & file = (extFile.exists()?extFile:resFile); |
|
199 |
||
200 |
if (file.open(QIODevice::ReadOnly | QIODevice::Text)) |
|
6180
0992fc5a4ad9
some changes to the css... display:none; works now (e.g. you can use it for user join/leave messages that are not your friends)
sheepluva
parents:
6178
diff
changeset
|
201 |
{ |
6197 | 202 |
QTextStream in(&file); |
203 |
while (!in.atEnd()) |
|
204 |
{ |
|
6201
d88e7f6cf499
fix of /saveStyleSheet command, error message on stylesheet import fail
sheepluva
parents:
6198
diff
changeset
|
205 |
style.append(in.readLine()+"\n"); |
6197 | 206 |
} |
6201
d88e7f6cf499
fix of /saveStyleSheet command, error message on stylesheet import fail
sheepluva
parents:
6198
diff
changeset
|
207 |
orgStyleSheet = style; |
6214 | 208 |
|
209 |
file.close(); |
|
6180
0992fc5a4ad9
some changes to the css... display:none; works now (e.g. you can use it for user join/leave messages that are not your friends)
sheepluva
parents:
6178
diff
changeset
|
210 |
} |
0992fc5a4ad9
some changes to the css... display:none; works now (e.g. you can use it for user join/leave messages that are not your friends)
sheepluva
parents:
6178
diff
changeset
|
211 |
} |
0992fc5a4ad9
some changes to the css... display:none; works now (e.g. you can use it for user join/leave messages that are not your friends)
sheepluva
parents:
6178
diff
changeset
|
212 |
|
6197 | 213 |
// let's parse display:none; ... |
214 |
||
6180
0992fc5a4ad9
some changes to the css... display:none; works now (e.g. you can use it for user join/leave messages that are not your friends)
sheepluva
parents:
6178
diff
changeset
|
215 |
// prepare for MAGIC :D |
0992fc5a4ad9
some changes to the css... display:none; works now (e.g. you can use it for user join/leave messages that are not your friends)
sheepluva
parents:
6178
diff
changeset
|
216 |
|
0992fc5a4ad9
some changes to the css... display:none; works now (e.g. you can use it for user join/leave messages that are not your friends)
sheepluva
parents:
6178
diff
changeset
|
217 |
// matches (multi-)whitespaces (for replacement with simple space) |
0992fc5a4ad9
some changes to the css... display:none; works now (e.g. you can use it for user join/leave messages that are not your friends)
sheepluva
parents:
6178
diff
changeset
|
218 |
QRegExp ws("\\s+"); |
0992fc5a4ad9
some changes to the css... display:none; works now (e.g. you can use it for user join/leave messages that are not your friends)
sheepluva
parents:
6178
diff
changeset
|
219 |
|
0992fc5a4ad9
some changes to the css... display:none; works now (e.g. you can use it for user join/leave messages that are not your friends)
sheepluva
parents:
6178
diff
changeset
|
220 |
// matches comments (for removal) |
0992fc5a4ad9
some changes to the css... display:none; works now (e.g. you can use it for user join/leave messages that are not your friends)
sheepluva
parents:
6178
diff
changeset
|
221 |
QRegExp rem("/\\*([^*]|\\*(?!/))*\\*/"); |
0992fc5a4ad9
some changes to the css... display:none; works now (e.g. you can use it for user join/leave messages that are not your friends)
sheepluva
parents:
6178
diff
changeset
|
222 |
|
0992fc5a4ad9
some changes to the css... display:none; works now (e.g. you can use it for user join/leave messages that are not your friends)
sheepluva
parents:
6178
diff
changeset
|
223 |
// strip comments and multi-whitespaces to compress the style-sheet a bit |
0992fc5a4ad9
some changes to the css... display:none; works now (e.g. you can use it for user join/leave messages that are not your friends)
sheepluva
parents:
6178
diff
changeset
|
224 |
style = style.remove(rem).replace(ws," "); |
0992fc5a4ad9
some changes to the css... display:none; works now (e.g. you can use it for user join/leave messages that are not your friends)
sheepluva
parents:
6178
diff
changeset
|
225 |
|
0992fc5a4ad9
some changes to the css... display:none; works now (e.g. you can use it for user join/leave messages that are not your friends)
sheepluva
parents:
6178
diff
changeset
|
226 |
|
0992fc5a4ad9
some changes to the css... display:none; works now (e.g. you can use it for user join/leave messages that are not your friends)
sheepluva
parents:
6178
diff
changeset
|
227 |
// now let's see what messages the user does not want to be displayed |
0992fc5a4ad9
some changes to the css... display:none; works now (e.g. you can use it for user join/leave messages that are not your friends)
sheepluva
parents:
6178
diff
changeset
|
228 |
// by checking for display:none; (since QTextBrowser does not support it) |
0992fc5a4ad9
some changes to the css... display:none; works now (e.g. you can use it for user join/leave messages that are not your friends)
sheepluva
parents:
6178
diff
changeset
|
229 |
|
0992fc5a4ad9
some changes to the css... display:none; works now (e.g. you can use it for user join/leave messages that are not your friends)
sheepluva
parents:
6178
diff
changeset
|
230 |
// MOAR MAGIC :DDD |
0992fc5a4ad9
some changes to the css... display:none; works now (e.g. you can use it for user join/leave messages that are not your friends)
sheepluva
parents:
6178
diff
changeset
|
231 |
|
0992fc5a4ad9
some changes to the css... display:none; works now (e.g. you can use it for user join/leave messages that are not your friends)
sheepluva
parents:
6178
diff
changeset
|
232 |
// matches definitions lacking display:none; (for removal) |
0992fc5a4ad9
some changes to the css... display:none; works now (e.g. you can use it for user join/leave messages that are not your friends)
sheepluva
parents:
6178
diff
changeset
|
233 |
QRegExp displayed( |
0992fc5a4ad9
some changes to the css... display:none; works now (e.g. you can use it for user join/leave messages that are not your friends)
sheepluva
parents:
6178
diff
changeset
|
234 |
"([^{}]*\\{)(?!([^}]*;)* ?display ?: ?none ?(;[^}]*)?\\})[^}]*\\}"); |
0992fc5a4ad9
some changes to the css... display:none; works now (e.g. you can use it for user join/leave messages that are not your friends)
sheepluva
parents:
6178
diff
changeset
|
235 |
|
0992fc5a4ad9
some changes to the css... display:none; works now (e.g. you can use it for user join/leave messages that are not your friends)
sheepluva
parents:
6178
diff
changeset
|
236 |
// matches all {...} and , (used as seperator for splitting into names) |
0992fc5a4ad9
some changes to the css... display:none; works now (e.g. you can use it for user join/leave messages that are not your friends)
sheepluva
parents:
6178
diff
changeset
|
237 |
QRegExp split(" *(\\{[^}]*\\}|,) *"); |
0992fc5a4ad9
some changes to the css... display:none; works now (e.g. you can use it for user join/leave messages that are not your friends)
sheepluva
parents:
6178
diff
changeset
|
238 |
|
0992fc5a4ad9
some changes to the css... display:none; works now (e.g. you can use it for user join/leave messages that are not your friends)
sheepluva
parents:
6178
diff
changeset
|
239 |
// matches class names that are referenced without hierachy |
0992fc5a4ad9
some changes to the css... display:none; works now (e.g. you can use it for user join/leave messages that are not your friends)
sheepluva
parents:
6178
diff
changeset
|
240 |
QRegExp nohierarchy("^.[^ .]+$"); |
0992fc5a4ad9
some changes to the css... display:none; works now (e.g. you can use it for user join/leave messages that are not your friends)
sheepluva
parents:
6178
diff
changeset
|
241 |
|
0992fc5a4ad9
some changes to the css... display:none; works now (e.g. you can use it for user join/leave messages that are not your friends)
sheepluva
parents:
6178
diff
changeset
|
242 |
QStringList victims = QString(style). |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6418
diff
changeset
|
243 |
remove(displayed). // remove visible stuff |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6418
diff
changeset
|
244 |
trimmed(). |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6418
diff
changeset
|
245 |
split(split). // get a list of the names |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6418
diff
changeset
|
246 |
filter(nohierarchy). // only direct class names |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6418
diff
changeset
|
247 |
replaceInStrings(QRegExp("^."),""); // crop . |
6180
0992fc5a4ad9
some changes to the css... display:none; works now (e.g. you can use it for user join/leave messages that are not your friends)
sheepluva
parents:
6178
diff
changeset
|
248 |
|
6197 | 249 |
|
250 |
if (victims.contains("timestamp")) |
|
251 |
{ |
|
252 |
s_isTimeStamped = false; |
|
253 |
victims.removeAll("timestamp"); |
|
254 |
} |
|
6229
4c834af76c3b
* fix highlighting (i just broke it by not negating a boolean expression)
sheepluva
parents:
6227
diff
changeset
|
255 |
else |
4c834af76c3b
* fix highlighting (i just broke it by not negating a boolean expression)
sheepluva
parents:
6227
diff
changeset
|
256 |
{ |
4c834af76c3b
* fix highlighting (i just broke it by not negating a boolean expression)
sheepluva
parents:
6227
diff
changeset
|
257 |
s_isTimeStamped = true; |
4c834af76c3b
* fix highlighting (i just broke it by not negating a boolean expression)
sheepluva
parents:
6227
diff
changeset
|
258 |
s_tsFormat = |
6231 | 259 |
((victims.contains("timestamp:hours"))?"":"hh:") + |
260 |
QString("mm") + |
|
261 |
((victims.contains("timestamp:seconds"))?"":":ss"); |
|
6229
4c834af76c3b
* fix highlighting (i just broke it by not negating a boolean expression)
sheepluva
parents:
6227
diff
changeset
|
262 |
} |
4c834af76c3b
* fix highlighting (i just broke it by not negating a boolean expression)
sheepluva
parents:
6227
diff
changeset
|
263 |
|
4c834af76c3b
* fix highlighting (i just broke it by not negating a boolean expression)
sheepluva
parents:
6227
diff
changeset
|
264 |
victims.removeAll("timestamp:hours"); |
4c834af76c3b
* fix highlighting (i just broke it by not negating a boolean expression)
sheepluva
parents:
6227
diff
changeset
|
265 |
victims.removeAll("timestamp:seconds"); |
6197 | 266 |
|
6180
0992fc5a4ad9
some changes to the css... display:none; works now (e.g. you can use it for user join/leave messages that are not your friends)
sheepluva
parents:
6178
diff
changeset
|
267 |
victims.removeDuplicates(); |
0992fc5a4ad9
some changes to the css... display:none; works now (e.g. you can use it for user join/leave messages that are not your friends)
sheepluva
parents:
6178
diff
changeset
|
268 |
|
6197 | 269 |
QStringList * oldDisplayNone = s_displayNone; |
270 |
QString * oldStyleSheet = s_styleSheet; |
|
271 |
||
6180
0992fc5a4ad9
some changes to the css... display:none; works now (e.g. you can use it for user join/leave messages that are not your friends)
sheepluva
parents:
6178
diff
changeset
|
272 |
s_displayNone = new QStringList(victims); |
6201
d88e7f6cf499
fix of /saveStyleSheet command, error message on stylesheet import fail
sheepluva
parents:
6198
diff
changeset
|
273 |
s_styleSheet = new QString(orgStyleSheet); |
6180
0992fc5a4ad9
some changes to the css... display:none; works now (e.g. you can use it for user join/leave messages that are not your friends)
sheepluva
parents:
6178
diff
changeset
|
274 |
|
6197 | 275 |
if (oldDisplayNone != NULL) |
276 |
delete oldDisplayNone; |
|
277 |
||
278 |
if (oldStyleSheet != NULL) |
|
279 |
delete oldStyleSheet; |
|
280 |
||
6180
0992fc5a4ad9
some changes to the css... display:none; works now (e.g. you can use it for user join/leave messages that are not your friends)
sheepluva
parents:
6178
diff
changeset
|
281 |
} |
0992fc5a4ad9
some changes to the css... display:none; works now (e.g. you can use it for user join/leave messages that are not your friends)
sheepluva
parents:
6178
diff
changeset
|
282 |
|
0992fc5a4ad9
some changes to the css... display:none; works now (e.g. you can use it for user join/leave messages that are not your friends)
sheepluva
parents:
6178
diff
changeset
|
283 |
void HWChatWidget::displayError(const QString & message) |
0992fc5a4ad9
some changes to the css... display:none; works now (e.g. you can use it for user join/leave messages that are not your friends)
sheepluva
parents:
6178
diff
changeset
|
284 |
{ |
6181
c739b503ae31
ugh wth... cleaned FL/IL change notifications up
sheepluva
parents:
6180
diff
changeset
|
285 |
addLine("msg_Error", " !!! " + message); |
6180
0992fc5a4ad9
some changes to the css... display:none; works now (e.g. you can use it for user join/leave messages that are not your friends)
sheepluva
parents:
6178
diff
changeset
|
286 |
// scroll to the end |
0992fc5a4ad9
some changes to the css... display:none; works now (e.g. you can use it for user join/leave messages that are not your friends)
sheepluva
parents:
6178
diff
changeset
|
287 |
chatText->moveCursor(QTextCursor::End); |
0992fc5a4ad9
some changes to the css... display:none; works now (e.g. you can use it for user join/leave messages that are not your friends)
sheepluva
parents:
6178
diff
changeset
|
288 |
} |
0992fc5a4ad9
some changes to the css... display:none; works now (e.g. you can use it for user join/leave messages that are not your friends)
sheepluva
parents:
6178
diff
changeset
|
289 |
|
0992fc5a4ad9
some changes to the css... display:none; works now (e.g. you can use it for user join/leave messages that are not your friends)
sheepluva
parents:
6178
diff
changeset
|
290 |
|
0992fc5a4ad9
some changes to the css... display:none; works now (e.g. you can use it for user join/leave messages that are not your friends)
sheepluva
parents:
6178
diff
changeset
|
291 |
void HWChatWidget::displayNotice(const QString & message) |
0992fc5a4ad9
some changes to the css... display:none; works now (e.g. you can use it for user join/leave messages that are not your friends)
sheepluva
parents:
6178
diff
changeset
|
292 |
{ |
6181
c739b503ae31
ugh wth... cleaned FL/IL change notifications up
sheepluva
parents:
6180
diff
changeset
|
293 |
addLine("msg_Notice", " *** " + message); |
6182
d56d18802481
some more chat fixes and changes, I think. hum. what was that? um. aaah, I better go catch some sheep ... er sleep.. um..
sheepluva
parents:
6181
diff
changeset
|
294 |
// scroll to the end |
d56d18802481
some more chat fixes and changes, I think. hum. what was that? um. aaah, I better go catch some sheep ... er sleep.. um..
sheepluva
parents:
6181
diff
changeset
|
295 |
chatText->moveCursor(QTextCursor::End); |
6180
0992fc5a4ad9
some changes to the css... display:none; works now (e.g. you can use it for user join/leave messages that are not your friends)
sheepluva
parents:
6178
diff
changeset
|
296 |
} |
0992fc5a4ad9
some changes to the css... display:none; works now (e.g. you can use it for user join/leave messages that are not your friends)
sheepluva
parents:
6178
diff
changeset
|
297 |
|
0992fc5a4ad9
some changes to the css... display:none; works now (e.g. you can use it for user join/leave messages that are not your friends)
sheepluva
parents:
6178
diff
changeset
|
298 |
|
0992fc5a4ad9
some changes to the css... display:none; works now (e.g. you can use it for user join/leave messages that are not your friends)
sheepluva
parents:
6178
diff
changeset
|
299 |
void HWChatWidget::displayWarning(const QString & message) |
0992fc5a4ad9
some changes to the css... display:none; works now (e.g. you can use it for user join/leave messages that are not your friends)
sheepluva
parents:
6178
diff
changeset
|
300 |
{ |
6181
c739b503ae31
ugh wth... cleaned FL/IL change notifications up
sheepluva
parents:
6180
diff
changeset
|
301 |
addLine("msg_Warning", " *!* " + message); |
6182
d56d18802481
some more chat fixes and changes, I think. hum. what was that? um. aaah, I better go catch some sheep ... er sleep.. um..
sheepluva
parents:
6181
diff
changeset
|
302 |
// scroll to the end |
d56d18802481
some more chat fixes and changes, I think. hum. what was that? um. aaah, I better go catch some sheep ... er sleep.. um..
sheepluva
parents:
6181
diff
changeset
|
303 |
chatText->moveCursor(QTextCursor::End); |
6180
0992fc5a4ad9
some changes to the css... display:none; works now (e.g. you can use it for user join/leave messages that are not your friends)
sheepluva
parents:
6178
diff
changeset
|
304 |
} |
0992fc5a4ad9
some changes to the css... display:none; works now (e.g. you can use it for user join/leave messages that are not your friends)
sheepluva
parents:
6178
diff
changeset
|
305 |
|
4897
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
306 |
|
6165
6fe3e922246e
moving and renaming SDLs.*, making it a singleton; cleaning up class responsibilties wrt SDLInteraction; some comments
sheepluva
parents:
6151
diff
changeset
|
307 |
HWChatWidget::HWChatWidget(QWidget* parent, QSettings * gameSettings, bool notify) : |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6418
diff
changeset
|
308 |
QWidget(parent), |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6418
diff
changeset
|
309 |
mainLayout(this) |
461 | 310 |
{ |
2773
e94f240a8a41
Have game beep when someone joins lobby/room. Controlled by Sound option
nemo
parents:
2706
diff
changeset
|
311 |
this->gameSettings = gameSettings; |
2775 | 312 |
this->notify = notify; |
6418
f1a3c3aab5b4
hide all context menu options for own nick, except for info
sheepluva
parents:
6240
diff
changeset
|
313 |
|
f1a3c3aab5b4
hide all context menu options for own nick, except for info
sheepluva
parents:
6240
diff
changeset
|
314 |
m_isAdmin = false; |
6929
c305d31642ac
reimplement auto-kick for ignored players (it was temporarily removed during refactoring)
sheepluva
parents:
6928
diff
changeset
|
315 |
m_autoKickEnabled = false; |
6418
f1a3c3aab5b4
hide all context menu options for own nick, except for info
sheepluva
parents:
6240
diff
changeset
|
316 |
|
6182
d56d18802481
some more chat fixes and changes, I think. hum. what was that? um. aaah, I better go catch some sheep ... er sleep.. um..
sheepluva
parents:
6181
diff
changeset
|
317 |
if(gameSettings->value("frontend/sound", true).toBool()) |
d56d18802481
some more chat fixes and changes, I think. hum. what was that? um. aaah, I better go catch some sheep ... er sleep.. um..
sheepluva
parents:
6181
diff
changeset
|
318 |
{ |
6928
9562ace15141
nemo said I was boring for removing the "hello" randomizer on room join.
sheepluva
parents:
6700
diff
changeset
|
319 |
QStringList vpList = |
9562ace15141
nemo said I was boring for removing the "hello" randomizer on room join.
sheepluva
parents:
6700
diff
changeset
|
320 |
QStringList() << "Classic" << "Default" << "Mobster" << "Russian"; |
9562ace15141
nemo said I was boring for removing the "hello" randomizer on room join.
sheepluva
parents:
6700
diff
changeset
|
321 |
|
9562ace15141
nemo said I was boring for removing the "hello" randomizer on room join.
sheepluva
parents:
6700
diff
changeset
|
322 |
foreach (QString vp, vpList) |
9562ace15141
nemo said I was boring for removing the "hello" randomizer on room join.
sheepluva
parents:
6700
diff
changeset
|
323 |
{ |
6930 | 324 |
m_helloSounds.append(DataManager::instance().findFileForRead( |
6928
9562ace15141
nemo said I was boring for removing the "hello" randomizer on room join.
sheepluva
parents:
6700
diff
changeset
|
325 |
QString("Sounds/voices/%1/Hello.ogg").arg(vp))); |
9562ace15141
nemo said I was boring for removing the "hello" randomizer on room join.
sheepluva
parents:
6700
diff
changeset
|
326 |
} |
6238 | 327 |
|
6930 | 328 |
m_hilightSound = DataManager::instance().findFileForRead( |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6418
diff
changeset
|
329 |
"Sounds/beep.ogg"); |
6238 | 330 |
|
6182
d56d18802481
some more chat fixes and changes, I think. hum. what was that? um. aaah, I better go catch some sheep ... er sleep.. um..
sheepluva
parents:
6181
diff
changeset
|
331 |
} |
2773
e94f240a8a41
Have game beep when someone joins lobby/room. Controlled by Sound option
nemo
parents:
2706
diff
changeset
|
332 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
333 |
mainLayout.setSpacing(1); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
334 |
mainLayout.setMargin(1); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
335 |
mainLayout.setSizeConstraint(QLayout::SetMinimumSize); |
3790 | 336 |
mainLayout.setColumnStretch(0, 76); |
337 |
mainLayout.setColumnStretch(1, 24); |
|
461 | 338 |
|
6147
b4d7d8d62feb
feature-pimpin'-up the chat input line in frontend:
sheepluva
parents:
6145
diff
changeset
|
339 |
chatEditLine = new SmartLineEdit(this); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
340 |
chatEditLine->setMaxLength(300); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
341 |
connect(chatEditLine, SIGNAL(returnPressed()), this, SLOT(returnPressed())); |
461 | 342 |
|
5094 | 343 |
mainLayout.addWidget(chatEditLine, 2, 0); |
462 | 344 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
345 |
chatText = new QTextBrowser(this); |
6177
5eba8970e8ae
same for chat. changed the paths to: css/qt.css css/chat.css
sheepluva
parents:
6167
diff
changeset
|
346 |
|
6180
0992fc5a4ad9
some changes to the css... display:none; works now (e.g. you can use it for user join/leave messages that are not your friends)
sheepluva
parents:
6178
diff
changeset
|
347 |
chatText->document()->setDefaultStyleSheet(styleSheet()); |
6177
5eba8970e8ae
same for chat. changed the paths to: css/qt.css css/chat.css
sheepluva
parents:
6167
diff
changeset
|
348 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
349 |
chatText->setMinimumHeight(20); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
350 |
chatText->setMinimumWidth(10); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
351 |
chatText->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding); |
4897
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
352 |
chatText->setOpenLinks(false); |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
353 |
connect(chatText, SIGNAL(anchorClicked(const QUrl&)), |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6418
diff
changeset
|
354 |
this, SLOT(linkClicked(const QUrl&))); |
5094 | 355 |
mainLayout.addWidget(chatText, 0, 0, 2, 1); |
462 | 356 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
357 |
chatNicks = new QListWidget(this); |
7720 | 358 |
chatNicks->setIconSize(QSize(24, 16)); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
359 |
chatNicks->setMinimumHeight(10); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
360 |
chatNicks->setMinimumWidth(10); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
361 |
chatNicks->setSortingEnabled(true); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
362 |
chatNicks->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
363 |
chatNicks->setContextMenuPolicy(Qt::ActionsContextMenu); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
364 |
connect(chatNicks, SIGNAL(itemDoubleClicked(QListWidgetItem *)), |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6418
diff
changeset
|
365 |
this, SLOT(chatNickDoubleClicked(QListWidgetItem *))); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
366 |
connect(chatNicks, SIGNAL(currentRowChanged(int)), |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6418
diff
changeset
|
367 |
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
|
368 |
|
5259
926958e3e87b
display player count below and with label, just because it's funny to mess with unC0Rr's code and make him cry :P
sheepluva
parents:
5252
diff
changeset
|
369 |
mainLayout.addWidget(chatNicks, 0, 1, 3, 1); |
1391 | 370 |
|
6222
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
371 |
// the userData is used to flag things that are even available when user |
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
372 |
// is offline |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
373 |
acInfo = new QAction(QAction::tr("Info"), chatNicks); |
3123 | 374 |
acInfo->setIcon(QIcon(":/res/info.png")); |
6222
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
375 |
acInfo->setData(QVariant(false)); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
376 |
connect(acInfo, SIGNAL(triggered(bool)), this, SLOT(onInfo())); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
377 |
acKick = new QAction(QAction::tr("Kick"), chatNicks); |
3123 | 378 |
acKick->setIcon(QIcon(":/res/kick.png")); |
6222
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
379 |
acKick->setData(QVariant(false)); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
380 |
connect(acKick, SIGNAL(triggered(bool)), this, SLOT(onKick())); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
381 |
acBan = new QAction(QAction::tr("Ban"), chatNicks); |
3123 | 382 |
acBan->setIcon(QIcon(":/res/ban.png")); |
6222
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
383 |
acBan->setData(QVariant(true)); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
384 |
connect(acBan, SIGNAL(triggered(bool)), this, SLOT(onBan())); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
385 |
acFollow = new QAction(QAction::tr("Follow"), chatNicks); |
3123 | 386 |
acFollow->setIcon(QIcon(":/res/follow.png")); |
6222
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
387 |
acFollow->setData(QVariant(false)); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
388 |
connect(acFollow, SIGNAL(triggered(bool)), this, SLOT(onFollow())); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
389 |
acIgnore = new QAction(QAction::tr("Ignore"), chatNicks); |
3123 | 390 |
acIgnore->setIcon(QIcon(":/res/ignore.png")); |
6222
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
391 |
acIgnore->setData(QVariant(true)); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
392 |
connect(acIgnore, SIGNAL(triggered(bool)), this, SLOT(onIgnore())); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
393 |
acFriend = new QAction(QAction::tr("Add friend"), chatNicks); |
3123 | 394 |
acFriend->setIcon(QIcon(":/res/addfriend.png")); |
6222
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
395 |
acFriend->setData(QVariant(true)); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
396 |
connect(acFriend, SIGNAL(triggered(bool)), this, SLOT(onFriend())); |
2377 | 397 |
|
4892 | 398 |
chatNicks->insertAction(0, acFriend); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
399 |
chatNicks->insertAction(0, acInfo); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
400 |
chatNicks->insertAction(0, acIgnore); |
3697 | 401 |
|
4892 | 402 |
setShowFollow(true); |
6182
d56d18802481
some more chat fixes and changes, I think. hum. what was that? um. aaah, I better go catch some sheep ... er sleep.. um..
sheepluva
parents:
6181
diff
changeset
|
403 |
|
6197 | 404 |
setAcceptDrops(true); |
6182
d56d18802481
some more chat fixes and changes, I think. hum. what was that? um. aaah, I better go catch some sheep ... er sleep.. um..
sheepluva
parents:
6181
diff
changeset
|
405 |
clear(); |
4892 | 406 |
} |
407 |
||
6178
affa860f2983
BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
6177
diff
changeset
|
408 |
|
4897
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
409 |
void HWChatWidget::linkClicked(const QUrl & link) |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
410 |
{ |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
411 |
if (link.scheme() == "http") |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
412 |
QDesktopServices::openUrl(link); |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
413 |
if (link.scheme() == "hwnick") |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
414 |
{ |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
415 |
// decode nick |
6222
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
416 |
QString nick = QString::fromUtf8(QByteArray::fromBase64(link.encodedQuery())); |
4897
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
417 |
QList<QListWidgetItem *> items = chatNicks->findItems(nick, Qt::MatchExactly); |
6222
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
418 |
|
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
419 |
bool isOffline = (items.size() < 1); |
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
420 |
|
5953 | 421 |
QMenu * popup = new QMenu(this); |
6222
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
422 |
|
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
423 |
if (isOffline) |
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
424 |
{ |
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
425 |
m_clickedNick = nick; |
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
426 |
chatNickSelected(0); // update friend and ignore entry |
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
427 |
chatNicks->setCurrentItem(NULL, QItemSelectionModel::Clear); |
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
428 |
} |
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
429 |
else |
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
430 |
{ |
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
431 |
// selecting an item will automatically scroll there, so let's save old position |
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
432 |
QScrollBar * scrollBar = chatNicks->verticalScrollBar(); |
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
433 |
int oldScrollPos = scrollBar->sliderPosition(); |
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
434 |
// select the nick which we want to see the actions for |
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
435 |
chatNicks->setCurrentItem(items[0], QItemSelectionModel::Clear); |
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
436 |
// selecting an item will automatically scroll there, so let's save old position |
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
437 |
scrollBar->setSliderPosition(oldScrollPos); |
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
438 |
} |
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
439 |
|
4897
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
440 |
// load actions |
6222
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
441 |
QList<QAction *> actions = chatNicks->actions(); |
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
442 |
|
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
443 |
foreach(QAction * action, actions) |
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
444 |
{ |
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
445 |
if ((!isOffline) || (action->data().toBool())) |
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
446 |
popup->addAction(action); |
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
447 |
} |
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
448 |
|
4897
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
449 |
// display menu popup at mouse cursor position |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
450 |
popup->popup(QCursor::pos()); |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
451 |
} |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
452 |
} |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
453 |
|
4892 | 454 |
void HWChatWidget::setShowFollow(bool enabled) |
455 |
{ |
|
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6418
diff
changeset
|
456 |
if (enabled) |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6418
diff
changeset
|
457 |
{ |
4892 | 458 |
if (!(chatNicks->actions().contains(acFollow))) |
459 |
chatNicks->insertAction(acFriend, acFollow); |
|
460 |
} |
|
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6418
diff
changeset
|
461 |
else |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6418
diff
changeset
|
462 |
{ |
4892 | 463 |
if (chatNicks->actions().contains(acFollow)) |
464 |
chatNicks->removeAction(acFollow); |
|
465 |
} |
|
2845 | 466 |
} |
467 |
||
6929
c305d31642ac
reimplement auto-kick for ignored players (it was temporarily removed during refactoring)
sheepluva
parents:
6928
diff
changeset
|
468 |
void HWChatWidget::setIgnoreListKick(bool enabled) |
c305d31642ac
reimplement auto-kick for ignored players (it was temporarily removed during refactoring)
sheepluva
parents:
6928
diff
changeset
|
469 |
{ |
c305d31642ac
reimplement auto-kick for ignored players (it was temporarily removed during refactoring)
sheepluva
parents:
6928
diff
changeset
|
470 |
m_autoKickEnabled = enabled; |
c305d31642ac
reimplement auto-kick for ignored players (it was temporarily removed during refactoring)
sheepluva
parents:
6928
diff
changeset
|
471 |
} |
c305d31642ac
reimplement auto-kick for ignored players (it was temporarily removed during refactoring)
sheepluva
parents:
6928
diff
changeset
|
472 |
|
2845 | 473 |
void HWChatWidget::loadList(QStringList & list, const QString & file) |
474 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
475 |
list.clear(); |
5735
08ac2d557392
Remove toLocal8Bit() conversion of file name as Qt should handle filenames on its own. Helps with filename on Windows, could help with issue #189.
unc0rr
parents:
5259
diff
changeset
|
476 |
QFile txt(cfgdir->absolutePath() + "/" + file); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
477 |
if(!txt.open(QIODevice::ReadOnly)) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
478 |
return; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
479 |
QTextStream stream(&txt); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
480 |
stream.setCodec("UTF-8"); |
2845 | 481 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
482 |
while(!stream.atEnd()) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
483 |
{ |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
484 |
QString str = stream.readLine(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
485 |
if(str.startsWith(";") || str.length() == 0) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
486 |
continue; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
487 |
list << str.trimmed(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
488 |
} |
3058 | 489 |
//readd once we require newer Qt than 4.4 |
490 |
//list.removeDuplicates(); |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
491 |
txt.close(); |
2845 | 492 |
} |
493 |
||
494 |
void HWChatWidget::saveList(QStringList & list, const QString & file) |
|
495 |
{ |
|
5735
08ac2d557392
Remove toLocal8Bit() conversion of file name as Qt should handle filenames on its own. Helps with filename on Windows, could help with issue #189.
unc0rr
parents:
5259
diff
changeset
|
496 |
QFile txt(cfgdir->absolutePath() + "/" + file); |
6145
e658c6f698dd
don't hoard empty friends/ignore-lists on the HDD
sheepluva
parents:
6060
diff
changeset
|
497 |
|
e658c6f698dd
don't hoard empty friends/ignore-lists on the HDD
sheepluva
parents:
6060
diff
changeset
|
498 |
// list empty? => rather have no file for the list than an empty one |
e658c6f698dd
don't hoard empty friends/ignore-lists on the HDD
sheepluva
parents:
6060
diff
changeset
|
499 |
if (list.isEmpty()) |
e658c6f698dd
don't hoard empty friends/ignore-lists on the HDD
sheepluva
parents:
6060
diff
changeset
|
500 |
{ |
e658c6f698dd
don't hoard empty friends/ignore-lists on the HDD
sheepluva
parents:
6060
diff
changeset
|
501 |
if (txt.exists()) |
e658c6f698dd
don't hoard empty friends/ignore-lists on the HDD
sheepluva
parents:
6060
diff
changeset
|
502 |
{ |
e658c6f698dd
don't hoard empty friends/ignore-lists on the HDD
sheepluva
parents:
6060
diff
changeset
|
503 |
// try to remove file, if successful we're done here. |
e658c6f698dd
don't hoard empty friends/ignore-lists on the HDD
sheepluva
parents:
6060
diff
changeset
|
504 |
if (txt.remove()) |
e658c6f698dd
don't hoard empty friends/ignore-lists on the HDD
sheepluva
parents:
6060
diff
changeset
|
505 |
return; |
e658c6f698dd
don't hoard empty friends/ignore-lists on the HDD
sheepluva
parents:
6060
diff
changeset
|
506 |
} |
e658c6f698dd
don't hoard empty friends/ignore-lists on the HDD
sheepluva
parents:
6060
diff
changeset
|
507 |
else |
e658c6f698dd
don't hoard empty friends/ignore-lists on the HDD
sheepluva
parents:
6060
diff
changeset
|
508 |
// there is no file |
e658c6f698dd
don't hoard empty friends/ignore-lists on the HDD
sheepluva
parents:
6060
diff
changeset
|
509 |
return; |
e658c6f698dd
don't hoard empty friends/ignore-lists on the HDD
sheepluva
parents:
6060
diff
changeset
|
510 |
} |
e658c6f698dd
don't hoard empty friends/ignore-lists on the HDD
sheepluva
parents:
6060
diff
changeset
|
511 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
512 |
if(!txt.open(QIODevice::WriteOnly | QIODevice::Truncate)) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
513 |
return; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
514 |
QTextStream stream(&txt); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
515 |
stream.setCodec("UTF-8"); |
2845 | 516 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
517 |
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
|
518 |
for(int i = 0; i < list.size(); i++) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
519 |
stream << list[i] << endl; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
520 |
txt.close(); |
2845 | 521 |
} |
522 |
||
4884 | 523 |
void HWChatWidget::updateNickItem(QListWidgetItem *nickItem) |
2845 | 524 |
{ |
4884 | 525 |
QString nick = nickItem->text(); |
526 |
ListWidgetNickItem * item = dynamic_cast<ListWidgetNickItem*>(nickItem); |
|
2845 | 527 |
|
7720 | 528 |
item->setData(ListWidgetNickItem::Friend, QVariant(friendsList.contains(nick, Qt::CaseInsensitive))); |
529 |
item->setData(ListWidgetNickItem::Ignore, QVariant(ignoreList.contains(nick, Qt::CaseInsensitive))); |
|
2845 | 530 |
} |
531 |
||
4884 | 532 |
void HWChatWidget::updateNickItems() |
2845 | 533 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
534 |
for(int i = 0; i < chatNicks->count(); i++) |
4884 | 535 |
updateNickItem(chatNicks->item(i)); |
536 |
||
537 |
chatNicks->sortItems(); |
|
2845 | 538 |
} |
539 |
||
540 |
void HWChatWidget::loadLists(const QString & nick) |
|
541 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
542 |
loadList(ignoreList, nick.toLower() + "_ignore.txt"); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
543 |
loadList(friendsList, nick.toLower() + "_friends.txt"); |
4884 | 544 |
updateNickItems(); |
2845 | 545 |
} |
546 |
||
547 |
void HWChatWidget::saveLists(const QString & nick) |
|
548 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
549 |
saveList(ignoreList, nick.toLower() + "_ignore.txt"); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
550 |
saveList(friendsList, nick.toLower() + "_friends.txt"); |
461 | 551 |
} |
552 |
||
6237
a66029015c18
whoopsy, my bad (segfault due to accepting empty lines)
sheepluva
parents:
6233
diff
changeset
|
553 |
|
461 | 554 |
void HWChatWidget::returnPressed() |
555 |
{ |
|
5990
578978418fe5
let frontend send (copypasta) multi-line messages line by line to avoid protocol violation
sheepluva
parents:
5953
diff
changeset
|
556 |
QStringList lines = chatEditLine->text().split('\n'); |
6150
1d98752c1fba
frontend chat input history, use arrow keys UP/DOWN
sheepluva
parents:
6149
diff
changeset
|
557 |
chatEditLine->rememberCurrentText(); |
6197 | 558 |
foreach (const QString &line, lines) |
559 |
{ |
|
6237
a66029015c18
whoopsy, my bad (segfault due to accepting empty lines)
sheepluva
parents:
6233
diff
changeset
|
560 |
// skip empty/whitespace lines |
a66029015c18
whoopsy, my bad (segfault due to accepting empty lines)
sheepluva
parents:
6233
diff
changeset
|
561 |
if (line.trimmed().isEmpty()) |
a66029015c18
whoopsy, my bad (segfault due to accepting empty lines)
sheepluva
parents:
6233
diff
changeset
|
562 |
continue; |
a66029015c18
whoopsy, my bad (segfault due to accepting empty lines)
sheepluva
parents:
6233
diff
changeset
|
563 |
|
6197 | 564 |
if (!parseCommand(line)) |
565 |
emit chatLine(line); |
|
566 |
} |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
567 |
chatEditLine->clear(); |
461 | 568 |
} |
2846 | 569 |
|
6222
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
570 |
// "link" nick, but before that encode it in base64 to make sure it can't |
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
571 |
// intefere with html/url syntax the nick is put as querystring as putting |
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
572 |
// it as host would convert it to it's lower case variant |
6227
ce60b734fff1
update name autocompletion after nick change (since own nick isn't suggested)
sheepluva
parents:
6222
diff
changeset
|
573 |
QString HWChatWidget::linkedNick(const QString & nickname) |
6222
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
574 |
{ |
6227
ce60b734fff1
update name autocompletion after nick change (since own nick isn't suggested)
sheepluva
parents:
6222
diff
changeset
|
575 |
if (nickname != m_userNick) |
6222
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
576 |
return QString("<a href=\"hwnick://?%1\" class=\"nick\">%2</a>").arg( |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6418
diff
changeset
|
577 |
QString(nickname.toUtf8().toBase64())).arg(Qt::escape(nickname)); |
6233 | 578 |
|
579 |
// unlinked nick (if own one) |
|
580 |
return QString("<span class=\"nick\">%1</span>").arg(Qt::escape(nickname)); |
|
6222
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
581 |
} |
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
582 |
|
4897
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
583 |
|
1360 | 584 |
void HWChatWidget::onChatString(const QString& str) |
461 | 585 |
{ |
4897
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
586 |
onChatString("", str); |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
587 |
} |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
588 |
|
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
|
589 |
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
|
590 |
|
4897
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
591 |
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
|
592 |
{ |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
593 |
bool isFriend = false; |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
594 |
|
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6418
diff
changeset
|
595 |
if (!nick.isEmpty()) |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6418
diff
changeset
|
596 |
{ |
4897
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
597 |
// 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
|
598 |
if (ignoreList.contains(nick, Qt::CaseInsensitive)) |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
599 |
return; |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
600 |
// friends will get special treatment, of course |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
601 |
isFriend = friendsList.contains(nick, Qt::CaseInsensitive); |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
602 |
} |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
603 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
604 |
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
|
605 |
// 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
|
606 |
formattedStr = formattedStr.replace(URLREGEXP, "<a href=\"http://\\3\">\\3</a>"); |
2845 | 607 |
|
6222
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
608 |
// link the nick |
4897
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
609 |
if(!nick.isEmpty()) |
6222
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
610 |
formattedStr.replace("|nick|", linkedNick(nick)); |
2845 | 611 |
|
6180
0992fc5a4ad9
some changes to the css... display:none; works now (e.g. you can use it for user join/leave messages that are not your friends)
sheepluva
parents:
6178
diff
changeset
|
612 |
QString cssClass("msg_UserChat"); |
3697 | 613 |
|
4897
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
614 |
// check first character for color code and set color properly |
6182
d56d18802481
some more chat fixes and changes, I think. hum. what was that? um. aaah, I better go catch some sheep ... er sleep.. um..
sheepluva
parents:
6181
diff
changeset
|
615 |
char c = str[0].toAscii(); |
6214 | 616 |
switch (c) |
617 |
{ |
|
4897
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
618 |
case 3: |
6180
0992fc5a4ad9
some changes to the css... display:none; works now (e.g. you can use it for user join/leave messages that are not your friends)
sheepluva
parents:
6178
diff
changeset
|
619 |
cssClass = (isFriend ? "msg_FriendJoin" : "msg_UserJoin"); |
4897
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
620 |
break; |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
621 |
case 2: |
6180
0992fc5a4ad9
some changes to the css... display:none; works now (e.g. you can use it for user join/leave messages that are not your friends)
sheepluva
parents:
6178
diff
changeset
|
622 |
cssClass = (isFriend ? "msg_FriendAction" : "msg_UserAction"); |
4897
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
623 |
break; |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
624 |
default: |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
625 |
if (isFriend) |
6180
0992fc5a4ad9
some changes to the css... display:none; works now (e.g. you can use it for user join/leave messages that are not your friends)
sheepluva
parents:
6178
diff
changeset
|
626 |
cssClass = "msg_FriendChat"; |
4897
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
627 |
} |
2396 | 628 |
|
6214 | 629 |
bool isHL = false; |
630 |
||
6227
ce60b734fff1
update name autocompletion after nick change (since own nick isn't suggested)
sheepluva
parents:
6222
diff
changeset
|
631 |
if ((c != 3) && (!nick.isEmpty()) && |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6418
diff
changeset
|
632 |
(nick != m_userNick) && (!m_userNick.isEmpty())) |
6214 | 633 |
{ |
634 |
QString lcStr = str.toLower(); |
|
635 |
||
636 |
foreach (const QRegExp & hl, m_highlights) |
|
637 |
{ |
|
638 |
if (lcStr.contains(hl)) |
|
639 |
{ |
|
640 |
isHL = true; |
|
641 |
break; |
|
642 |
} |
|
643 |
} |
|
644 |
} |
|
6193 | 645 |
|
646 |
addLine(cssClass, formattedStr, isHL); |
|
5998
e8f44e9433f0
many many netclient/frondent changes (just the beginning though):
sheepluva
parents:
5990
diff
changeset
|
647 |
} |
2377 | 648 |
|
6182
d56d18802481
some more chat fixes and changes, I think. hum. what was that? um. aaah, I better go catch some sheep ... er sleep.. um..
sheepluva
parents:
6181
diff
changeset
|
649 |
void HWChatWidget::addLine(const QString & cssClass, QString line, bool isHighlight) |
5998
e8f44e9433f0
many many netclient/frondent changes (just the beginning though):
sheepluva
parents:
5990
diff
changeset
|
650 |
{ |
6180
0992fc5a4ad9
some changes to the css... display:none; works now (e.g. you can use it for user join/leave messages that are not your friends)
sheepluva
parents:
6178
diff
changeset
|
651 |
if (s_displayNone->contains(cssClass)) |
0992fc5a4ad9
some changes to the css... display:none; works now (e.g. you can use it for user join/leave messages that are not your friends)
sheepluva
parents:
6178
diff
changeset
|
652 |
return; // the css forbids us to display this line |
0992fc5a4ad9
some changes to the css... display:none; works now (e.g. you can use it for user join/leave messages that are not your friends)
sheepluva
parents:
6178
diff
changeset
|
653 |
|
5998
e8f44e9433f0
many many netclient/frondent changes (just the beginning though):
sheepluva
parents:
5990
diff
changeset
|
654 |
if (chatStrings.size() > 250) |
e8f44e9433f0
many many netclient/frondent changes (just the beginning though):
sheepluva
parents:
5990
diff
changeset
|
655 |
chatStrings.removeFirst(); |
e8f44e9433f0
many many netclient/frondent changes (just the beginning though):
sheepluva
parents:
5990
diff
changeset
|
656 |
|
6197 | 657 |
if (s_isTimeStamped) |
658 |
{ |
|
659 |
QString tsMarkUp = "<span class=\"timestamp\">[%1]</span> "; |
|
660 |
QTime now = QDateTime::currentDateTime().time(); |
|
6229
4c834af76c3b
* fix highlighting (i just broke it by not negating a boolean expression)
sheepluva
parents:
6227
diff
changeset
|
661 |
line = tsMarkUp.arg(now.toString(s_tsFormat)) + line; |
6197 | 662 |
} |
663 |
||
6182
d56d18802481
some more chat fixes and changes, I think. hum. what was that? um. aaah, I better go catch some sheep ... er sleep.. um..
sheepluva
parents:
6181
diff
changeset
|
664 |
line = QString("<span class=\"%1\">%2</span>").arg(cssClass).arg(line); |
d56d18802481
some more chat fixes and changes, I think. hum. what was that? um. aaah, I better go catch some sheep ... er sleep.. um..
sheepluva
parents:
6181
diff
changeset
|
665 |
|
d56d18802481
some more chat fixes and changes, I think. hum. what was that? um. aaah, I better go catch some sheep ... er sleep.. um..
sheepluva
parents:
6181
diff
changeset
|
666 |
if (isHighlight) |
d56d18802481
some more chat fixes and changes, I think. hum. what was that? um. aaah, I better go catch some sheep ... er sleep.. um..
sheepluva
parents:
6181
diff
changeset
|
667 |
{ |
d56d18802481
some more chat fixes and changes, I think. hum. what was that? um. aaah, I better go catch some sheep ... er sleep.. um..
sheepluva
parents:
6181
diff
changeset
|
668 |
line = QString("<span class=\"highlight\">%1</span>").arg(line); |
d56d18802481
some more chat fixes and changes, I think. hum. what was that? um. aaah, I better go catch some sheep ... er sleep.. um..
sheepluva
parents:
6181
diff
changeset
|
669 |
SDLInteraction::instance().playSoundFile(m_hilightSound); |
d56d18802481
some more chat fixes and changes, I think. hum. what was that? um. aaah, I better go catch some sheep ... er sleep.. um..
sheepluva
parents:
6181
diff
changeset
|
670 |
} |
5998
e8f44e9433f0
many many netclient/frondent changes (just the beginning though):
sheepluva
parents:
5990
diff
changeset
|
671 |
|
e8f44e9433f0
many many netclient/frondent changes (just the beginning though):
sheepluva
parents:
5990
diff
changeset
|
672 |
chatStrings.append(line); |
2377 | 673 |
|
6197 | 674 |
chatText->setHtml("<html><body>"+chatStrings.join("<br>")+"</body></html>"); |
1587 | 675 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
676 |
chatText->moveCursor(QTextCursor::End); |
1587 | 677 |
} |
678 |
||
679 |
void HWChatWidget::onServerMessage(const QString& str) |
|
680 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
681 |
if (chatStrings.size() > 250) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
682 |
chatStrings.removeFirst(); |
2377 | 683 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
684 |
chatStrings.append("<hr>" + str + "<hr>"); |
2377 | 685 |
|
6197 | 686 |
chatText->setHtml("<html><body>"+chatStrings.join("<br>")+"</body></html>"); |
1516
bb9fa5809c49
Limit chat history to 250 entries to avoid DoS attack with its use
unc0rr
parents:
1457
diff
changeset
|
687 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
688 |
chatText->moveCursor(QTextCursor::End); |
461 | 689 |
} |
465 | 690 |
|
6182
d56d18802481
some more chat fixes and changes, I think. hum. what was that? um. aaah, I better go catch some sheep ... er sleep.. um..
sheepluva
parents:
6181
diff
changeset
|
691 |
void HWChatWidget::nickAdded(const QString & nick, bool notifyNick) |
465 | 692 |
{ |
6149 | 693 |
bool isIgnored = ignoreList.contains(nick, Qt::CaseInsensitive); |
6929
c305d31642ac
reimplement auto-kick for ignored players (it was temporarily removed during refactoring)
sheepluva
parents:
6928
diff
changeset
|
694 |
|
c305d31642ac
reimplement auto-kick for ignored players (it was temporarily removed during refactoring)
sheepluva
parents:
6928
diff
changeset
|
695 |
if (isIgnored && m_isAdmin && m_autoKickEnabled) |
c305d31642ac
reimplement auto-kick for ignored players (it was temporarily removed during refactoring)
sheepluva
parents:
6928
diff
changeset
|
696 |
{ |
c305d31642ac
reimplement auto-kick for ignored players (it was temporarily removed during refactoring)
sheepluva
parents:
6928
diff
changeset
|
697 |
emit kick(nick); |
c305d31642ac
reimplement auto-kick for ignored players (it was temporarily removed during refactoring)
sheepluva
parents:
6928
diff
changeset
|
698 |
return; |
c305d31642ac
reimplement auto-kick for ignored players (it was temporarily removed during refactoring)
sheepluva
parents:
6928
diff
changeset
|
699 |
} |
c305d31642ac
reimplement auto-kick for ignored players (it was temporarily removed during refactoring)
sheepluva
parents:
6928
diff
changeset
|
700 |
|
6149 | 701 |
QListWidgetItem * item = new ListWidgetNickItem(nick, friendsList.contains(nick, Qt::CaseInsensitive), isIgnored); |
4884 | 702 |
updateNickItem(item); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
703 |
chatNicks->addItem(item); |
2773
e94f240a8a41
Have game beep when someone joins lobby/room. Controlled by Sound option
nemo
parents:
2706
diff
changeset
|
704 |
|
6182
d56d18802481
some more chat fixes and changes, I think. hum. what was that? um. aaah, I better go catch some sheep ... er sleep.. um..
sheepluva
parents:
6181
diff
changeset
|
705 |
if ((!isIgnored) && (nick != m_userNick)) // don't auto-complete own name |
6149 | 706 |
chatEditLine->addNickname(nick); |
707 |
||
5259
926958e3e87b
display player count below and with label, just because it's funny to mess with unC0Rr's code and make him cry :P
sheepluva
parents:
5252
diff
changeset
|
708 |
emit nickCountUpdate(chatNicks->count()); |
5094 | 709 |
|
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6418
diff
changeset
|
710 |
if(notifyNick && notify && gameSettings->value("frontend/sound", true).toBool()) |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6418
diff
changeset
|
711 |
{ |
6928
9562ace15141
nemo said I was boring for removing the "hello" randomizer on room join.
sheepluva
parents:
6700
diff
changeset
|
712 |
SDLInteraction::instance().playSoundFile( |
9562ace15141
nemo said I was boring for removing the "hello" randomizer on room join.
sheepluva
parents:
6700
diff
changeset
|
713 |
m_helloSounds.at(rand() % m_helloSounds.size())); |
2773
e94f240a8a41
Have game beep when someone joins lobby/room. Controlled by Sound option
nemo
parents:
2706
diff
changeset
|
714 |
} |
465 | 715 |
} |
716 |
||
717 |
void HWChatWidget::nickRemoved(const QString& nick) |
|
718 |
{ |
|
6147
b4d7d8d62feb
feature-pimpin'-up the chat input line in frontend:
sheepluva
parents:
6145
diff
changeset
|
719 |
chatEditLine->removeNickname(nick); |
b4d7d8d62feb
feature-pimpin'-up the chat input line in frontend:
sheepluva
parents:
6145
diff
changeset
|
720 |
|
5772
c09c50efe8b5
Replace iterators with simple declarative foreach (not tested if it works)
unc0rr
parents:
5735
diff
changeset
|
721 |
foreach(QListWidgetItem * item, chatNicks->findItems(nick, Qt::MatchExactly)) |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6418
diff
changeset
|
722 |
chatNicks->takeItem(chatNicks->row(item)); |
5094 | 723 |
|
5259
926958e3e87b
display player count below and with label, just because it's funny to mess with unC0Rr's code and make him cry :P
sheepluva
parents:
5252
diff
changeset
|
724 |
emit nickCountUpdate(chatNicks->count()); |
465 | 725 |
} |
726 |
||
727 |
void HWChatWidget::clear() |
|
728 |
{ |
|
6151
9fd5b70acb1a
give the room name edit box a history of previous room. however I hate that box from the bottom of my heart, it shall dieeeee... later...
sheepluva
parents:
6150
diff
changeset
|
729 |
chatEditLine->reset(); |
6198
9aa9ed77d63c
unbreak command auto-completion (was broken since r0b92341adb6a - 52 commits ago)
sheepluva
parents:
6197
diff
changeset
|
730 |
|
9aa9ed77d63c
unbreak command auto-completion (was broken since r0b92341adb6a - 52 commits ago)
sheepluva
parents:
6197
diff
changeset
|
731 |
// add default commands |
9aa9ed77d63c
unbreak command auto-completion (was broken since r0b92341adb6a - 52 commits ago)
sheepluva
parents:
6197
diff
changeset
|
732 |
QStringList cmds; |
9aa9ed77d63c
unbreak command auto-completion (was broken since r0b92341adb6a - 52 commits ago)
sheepluva
parents:
6197
diff
changeset
|
733 |
cmds << "/me" << "/discardStyleSheet" << "/saveStyleSheet"; |
9aa9ed77d63c
unbreak command auto-completion (was broken since r0b92341adb6a - 52 commits ago)
sheepluva
parents:
6197
diff
changeset
|
734 |
chatEditLine->addCommands(cmds); |
9aa9ed77d63c
unbreak command auto-completion (was broken since r0b92341adb6a - 52 commits ago)
sheepluva
parents:
6197
diff
changeset
|
735 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
736 |
chatText->clear(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
737 |
chatStrings.clear(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
738 |
chatNicks->clear(); |
6214 | 739 |
|
740 |
// clear and re compile regexp for highlighting |
|
741 |
m_highlights.clear(); |
|
742 |
||
6215 | 743 |
QString hlRegExp("^(.* )?%1[^-a-z0-9_]*( .*)?$"); |
6214 | 744 |
QRegExp whitespace("\\s"); |
745 |
||
746 |
m_highlights.append(QRegExp(hlRegExp.arg(m_userNick))); |
|
747 |
||
748 |
QFile file(cfgdir->absolutePath() + "/" + m_userNick + "_highlight.txt"); |
|
749 |
||
750 |
if (file.exists() && (file.open(QIODevice::ReadOnly | QIODevice::Text))) |
|
751 |
{ |
|
752 |
QTextStream in(&file); |
|
753 |
while (!in.atEnd()) |
|
754 |
{ |
|
755 |
QString line = in.readLine(); |
|
756 |
QStringList list = line.split(whitespace); |
|
757 |
foreach (QString word, list) |
|
758 |
{ |
|
759 |
m_highlights.append(QRegExp( |
|
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6418
diff
changeset
|
760 |
hlRegExp.arg(QRegExp::escape(word.toLower())))); |
6214 | 761 |
} |
762 |
} |
|
763 |
||
764 |
if (file.isOpen()) |
|
765 |
file.close(); |
|
766 |
} |
|
767 |
||
768 |
QFile file2(cfgdir->absolutePath() + "/" + m_userNick + "_hlregexp.txt"); |
|
769 |
||
770 |
if (file2.exists() && (file2.open(QIODevice::ReadOnly | QIODevice::Text))) |
|
771 |
{ |
|
772 |
QTextStream in(&file2); |
|
773 |
while (!in.atEnd()) |
|
774 |
{ |
|
775 |
m_highlights.append(QRegExp(in.readLine().toLower())); |
|
776 |
} |
|
777 |
||
778 |
if (file2.isOpen()) |
|
779 |
file2.close(); |
|
780 |
} |
|
465 | 781 |
} |
1391 | 782 |
|
783 |
void HWChatWidget::onKick() |
|
784 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
785 |
QListWidgetItem * curritem = chatNicks->currentItem(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
786 |
if (curritem) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
787 |
emit kick(curritem->text()); |
1391 | 788 |
} |
1405 | 789 |
|
1860 | 790 |
void HWChatWidget::onBan() |
791 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
792 |
QListWidgetItem * curritem = chatNicks->currentItem(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
793 |
if (curritem) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
794 |
emit ban(curritem->text()); |
1860 | 795 |
} |
796 |
||
1577 | 797 |
void HWChatWidget::onInfo() |
798 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
799 |
QListWidgetItem * curritem = chatNicks->currentItem(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
800 |
if (curritem) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
801 |
emit info(curritem->text()); |
1577 | 802 |
} |
803 |
||
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
|
804 |
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
|
805 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
806 |
QListWidgetItem * curritem = chatNicks->currentItem(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
807 |
if (curritem) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
808 |
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
|
809 |
} |
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
|
810 |
|
2845 | 811 |
void HWChatWidget::onIgnore() |
812 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
813 |
QListWidgetItem * curritem = chatNicks->currentItem(); |
6222
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
814 |
QString nick = ""; |
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
815 |
if(curritem != NULL) |
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
816 |
nick = curritem->text(); |
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
817 |
else |
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
818 |
nick = m_clickedNick; |
2845 | 819 |
|
6222
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
820 |
if(ignoreList.contains(nick, Qt::CaseInsensitive)) // already on list - remove him |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
821 |
{ |
6222
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
822 |
ignoreList.removeAll(nick.toLower()); |
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
823 |
chatEditLine->addNickname(nick); |
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
824 |
displayNotice(tr("%1 has been removed from your ignore list").arg(linkedNick(nick))); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
825 |
} |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
826 |
else // not on list - add |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
827 |
{ |
4884 | 828 |
// don't consider ignored people friends |
6222
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
829 |
if(friendsList.contains(nick, Qt::CaseInsensitive)) |
4884 | 830 |
emit onFriend(); |
831 |
||
832 |
// scroll down on first ignore added so that people see where that nick went to |
|
833 |
if (ignoreList.isEmpty()) |
|
4897
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
834 |
chatNicks->scrollToBottom(); |
4884 | 835 |
|
6222
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
836 |
ignoreList << nick.toLower(); |
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
837 |
chatEditLine->removeNickname(nick); |
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
838 |
displayNotice(tr("%1 has been added to your ignore list").arg(linkedNick(nick))); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
839 |
} |
6222
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
840 |
|
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
841 |
if(curritem != NULL) |
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
842 |
{ |
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
843 |
updateNickItem(curritem); // update icon/sort order/etc |
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
844 |
chatNicks->sortItems(); |
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
845 |
chatNickSelected(0); // update context menu |
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
846 |
} |
2845 | 847 |
} |
848 |
||
849 |
void HWChatWidget::onFriend() |
|
850 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
851 |
QListWidgetItem * curritem = chatNicks->currentItem(); |
6222
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
852 |
QString nick = ""; |
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
853 |
if(curritem != NULL) |
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
854 |
nick = curritem->text(); |
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
855 |
else |
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
856 |
nick = m_clickedNick; |
2845 | 857 |
|
6222
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
858 |
if(friendsList.contains(nick, Qt::CaseInsensitive)) // already on list - remove him |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
859 |
{ |
6222
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
860 |
friendsList.removeAll(nick.toLower()); |
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
861 |
displayNotice(tr("%1 has been removed from your friends list").arg(linkedNick(nick))); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
862 |
} |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
863 |
else // not on list - add |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
864 |
{ |
4884 | 865 |
// don't ignore the new friend |
6222
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
866 |
if(ignoreList.contains(nick, Qt::CaseInsensitive)) |
4884 | 867 |
emit onIgnore(); |
868 |
||
869 |
// scroll up on first friend added so that people see where that nick went to |
|
870 |
if (friendsList.isEmpty()) |
|
4897
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
871 |
chatNicks->scrollToTop(); |
4884 | 872 |
|
6222
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
873 |
friendsList << nick.toLower(); |
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
874 |
displayNotice(tr("%1 has been added to your friends list").arg(linkedNick(nick))); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
875 |
} |
6222
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
876 |
|
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
877 |
if(curritem != NULL) |
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
878 |
{ |
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
879 |
updateNickItem(curritem); // update icon/sort order/etc |
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
880 |
chatNicks->sortItems(); |
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
881 |
chatNickSelected(0); // update context menu |
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
882 |
} |
2845 | 883 |
} |
884 |
||
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
|
885 |
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
|
886 |
{ |
6222
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
887 |
if (item != NULL) |
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
888 |
m_clickedNick = item->text(); |
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
889 |
else |
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
890 |
m_clickedNick = ""; |
4892 | 891 |
QList<QAction *> actions = chatNicks->actions(); |
892 |
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
|
893 |
} |
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
|
894 |
|
2847 | 895 |
void HWChatWidget::chatNickSelected(int index) |
2846 | 896 |
{ |
4560
5d6c7f88db73
- Some work on drawMap widget and scene to allow undo, clear, save and load operations
unc0rr
parents:
3925
diff
changeset
|
897 |
Q_UNUSED(index); |
5d6c7f88db73
- Some work on drawMap widget and scene to allow undo, clear, save and load operations
unc0rr
parents:
3925
diff
changeset
|
898 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
899 |
QListWidgetItem* item = chatNicks->currentItem(); |
6222
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
900 |
QString nick = ""; |
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
901 |
if (item != NULL) |
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
902 |
nick = item->text(); |
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
903 |
else |
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
904 |
nick = m_clickedNick; |
2846 | 905 |
|
6418
f1a3c3aab5b4
hide all context menu options for own nick, except for info
sheepluva
parents:
6240
diff
changeset
|
906 |
// don't display all actions for own nick |
f1a3c3aab5b4
hide all context menu options for own nick, except for info
sheepluva
parents:
6240
diff
changeset
|
907 |
bool isSelf = (nick == m_userNick); |
f1a3c3aab5b4
hide all context menu options for own nick, except for info
sheepluva
parents:
6240
diff
changeset
|
908 |
|
f1a3c3aab5b4
hide all context menu options for own nick, except for info
sheepluva
parents:
6240
diff
changeset
|
909 |
acFollow->setVisible(!isSelf); |
f1a3c3aab5b4
hide all context menu options for own nick, except for info
sheepluva
parents:
6240
diff
changeset
|
910 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
911 |
// update context menu labels according to possible action |
6222
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
912 |
if(ignoreList.contains(nick, Qt::CaseInsensitive)) |
3123 | 913 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
914 |
acIgnore->setText(QAction::tr("Unignore")); |
3123 | 915 |
acIgnore->setIcon(QIcon(":/res/unignore.png")); |
916 |
} |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
917 |
else |
3123 | 918 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
919 |
acIgnore->setText(QAction::tr("Ignore")); |
3123 | 920 |
acIgnore->setIcon(QIcon(":/res/ignore.png")); |
6418
f1a3c3aab5b4
hide all context menu options for own nick, except for info
sheepluva
parents:
6240
diff
changeset
|
921 |
acIgnore->setVisible(!isSelf); |
3123 | 922 |
} |
2846 | 923 |
|
6222
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
924 |
if(friendsList.contains(nick, Qt::CaseInsensitive)) |
3123 | 925 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
926 |
acFriend->setText(QAction::tr("Remove friend")); |
3123 | 927 |
acFriend->setIcon(QIcon(":/res/remfriend.png")); |
928 |
} |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
929 |
else |
3123 | 930 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
931 |
acFriend->setText(QAction::tr("Add friend")); |
3123 | 932 |
acFriend->setIcon(QIcon(":/res/addfriend.png")); |
6418
f1a3c3aab5b4
hide all context menu options for own nick, except for info
sheepluva
parents:
6240
diff
changeset
|
933 |
acFriend->setVisible(!isSelf); |
f1a3c3aab5b4
hide all context menu options for own nick, except for info
sheepluva
parents:
6240
diff
changeset
|
934 |
} |
f1a3c3aab5b4
hide all context menu options for own nick, except for info
sheepluva
parents:
6240
diff
changeset
|
935 |
|
f1a3c3aab5b4
hide all context menu options for own nick, except for info
sheepluva
parents:
6240
diff
changeset
|
936 |
if (m_isAdmin) |
f1a3c3aab5b4
hide all context menu options for own nick, except for info
sheepluva
parents:
6240
diff
changeset
|
937 |
{ |
f1a3c3aab5b4
hide all context menu options for own nick, except for info
sheepluva
parents:
6240
diff
changeset
|
938 |
acKick->setVisible(!isSelf); |
f1a3c3aab5b4
hide all context menu options for own nick, except for info
sheepluva
parents:
6240
diff
changeset
|
939 |
acBan->setVisible(!isSelf); |
3123 | 940 |
} |
2846 | 941 |
} |
942 |
||
7720 | 943 |
void HWChatWidget::setStatus(const QString & nick, ListWidgetNickItem::StateFlag flag, bool status) |
2845 | 944 |
{ |
7720 | 945 |
QList<QListWidgetItem *> items = chatNicks->findItems(nick, Qt::MatchExactly); |
946 |
||
947 |
if (items.size() == 1) |
|
948 |
{ |
|
949 |
items[0]->setData(flag, status); |
|
950 |
updateNickItem(items[0]); |
|
951 |
} |
|
2845 | 952 |
} |
953 |
||
1405 | 954 |
void HWChatWidget::setReadyStatus(const QString & nick, bool isReady) |
955 |
{ |
|
7720 | 956 |
setStatus(nick, ListWidgetNickItem::Ready, isReady); |
957 |
} |
|
958 |
||
959 |
void HWChatWidget::setAdminStatus(const QString & nick, bool isAdmin) |
|
960 |
{ |
|
961 |
setStatus(nick, ListWidgetNickItem::ServerAdmin, isAdmin); |
|
962 |
} |
|
1405 | 963 |
|
7720 | 964 |
void HWChatWidget::setRoomMasterStatus(const QString & nick, bool isAdmin) |
965 |
{ |
|
966 |
setStatus(nick, ListWidgetNickItem::RoomAdmin, isAdmin); |
|
967 |
} |
|
2845 | 968 |
|
7720 | 969 |
void HWChatWidget::setRegisteredStatus(const QStringList & nicks, bool isRegistered) |
970 |
{ |
|
971 |
foreach(const QString & nick, nicks) |
|
972 |
setStatus(nick, ListWidgetNickItem::Registered, isRegistered); |
|
1405 | 973 |
} |
1860 | 974 |
|
975 |
void HWChatWidget::adminAccess(bool b) |
|
976 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
977 |
chatNicks->removeAction(acKick); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
978 |
chatNicks->removeAction(acBan); |
2377 | 979 |
|
6418
f1a3c3aab5b4
hide all context menu options for own nick, except for info
sheepluva
parents:
6240
diff
changeset
|
980 |
m_isAdmin = b; |
f1a3c3aab5b4
hide all context menu options for own nick, except for info
sheepluva
parents:
6240
diff
changeset
|
981 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
982 |
if(b) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
983 |
{ |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
984 |
chatNicks->insertAction(0, acKick); |
7537
833a0c34fafc
Room bans. They're more simple, than the global ones: if you ban someone, he is banned by ip in this room for the rest of the room lifetime. Not tested.
unc0rr
parents:
6952
diff
changeset
|
985 |
chatNicks->insertAction(0, acBan); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
986 |
} |
1860 | 987 |
} |
6197 | 988 |
|
989 |
void HWChatWidget::dragEnterEvent(QDragEnterEvent * event) |
|
990 |
{ |
|
991 |
if (event->mimeData()->hasUrls()) |
|
992 |
{ |
|
993 |
QList<QUrl> urls = event->mimeData()->urls(); |
|
994 |
if (urls.count() == 1) |
|
6202
8e3f006b9b1e
this should fix stylesheet importing on windows, but we'll see
sheepluva
parents:
6201
diff
changeset
|
995 |
{ |
8e3f006b9b1e
this should fix stylesheet importing on windows, but we'll see
sheepluva
parents:
6201
diff
changeset
|
996 |
QUrl url = urls[0]; |
8e3f006b9b1e
this should fix stylesheet importing on windows, but we'll see
sheepluva
parents:
6201
diff
changeset
|
997 |
|
8e3f006b9b1e
this should fix stylesheet importing on windows, but we'll see
sheepluva
parents:
6201
diff
changeset
|
998 |
static QRegExp localFileRegExp("file://.*\\.css$"); |
8e3f006b9b1e
this should fix stylesheet importing on windows, but we'll see
sheepluva
parents:
6201
diff
changeset
|
999 |
localFileRegExp.setCaseSensitivity(Qt::CaseInsensitive); |
8e3f006b9b1e
this should fix stylesheet importing on windows, but we'll see
sheepluva
parents:
6201
diff
changeset
|
1000 |
|
8e3f006b9b1e
this should fix stylesheet importing on windows, but we'll see
sheepluva
parents:
6201
diff
changeset
|
1001 |
if (url.toString().contains(localFileRegExp)) |
6197 | 1002 |
event->acceptProposedAction(); |
6202
8e3f006b9b1e
this should fix stylesheet importing on windows, but we'll see
sheepluva
parents:
6201
diff
changeset
|
1003 |
} |
6197 | 1004 |
} |
1005 |
} |
|
1006 |
||
1007 |
void HWChatWidget::dropEvent(QDropEvent * event) |
|
1008 |
{ |
|
6201
d88e7f6cf499
fix of /saveStyleSheet command, error message on stylesheet import fail
sheepluva
parents:
6198
diff
changeset
|
1009 |
const QString path(event->mimeData()->urls()[0].toString()); |
6202
8e3f006b9b1e
this should fix stylesheet importing on windows, but we'll see
sheepluva
parents:
6201
diff
changeset
|
1010 |
|
8e3f006b9b1e
this should fix stylesheet importing on windows, but we'll see
sheepluva
parents:
6201
diff
changeset
|
1011 |
QFile file(event->mimeData()->urls()[0].toLocalFile()); |
6197 | 1012 |
|
1013 |
if (file.exists() && (file.open(QIODevice::ReadOnly | QIODevice::Text))) |
|
1014 |
{ |
|
1015 |
QString style; |
|
1016 |
QTextStream in(&file); |
|
1017 |
while (!in.atEnd()) |
|
1018 |
{ |
|
1019 |
QString line = in.readLine(); |
|
6202
8e3f006b9b1e
this should fix stylesheet importing on windows, but we'll see
sheepluva
parents:
6201
diff
changeset
|
1020 |
style.append(line + "\n"); |
6197 | 1021 |
} |
1022 |
||
1023 |
setStyleSheet(style); |
|
1024 |
chatText->document()->setDefaultStyleSheet(*s_styleSheet); |
|
6201
d88e7f6cf499
fix of /saveStyleSheet command, error message on stylesheet import fail
sheepluva
parents:
6198
diff
changeset
|
1025 |
displayNotice(tr("Stylesheet imported from %1").arg(path)); |
6239 | 1026 |
displayNotice(tr("Enter %1 if you want to use the current StyleSheet in future, enter %2 to reset!").arg("/saveStyleSheet").arg("/discardStyleSheet")); |
6197 | 1027 |
|
6214 | 1028 |
if (file.isOpen()) |
1029 |
file.close(); |
|
1030 |
||
6197 | 1031 |
event->acceptProposedAction(); |
1032 |
} |
|
6201
d88e7f6cf499
fix of /saveStyleSheet command, error message on stylesheet import fail
sheepluva
parents:
6198
diff
changeset
|
1033 |
else |
d88e7f6cf499
fix of /saveStyleSheet command, error message on stylesheet import fail
sheepluva
parents:
6198
diff
changeset
|
1034 |
displayError(tr("Couldn't read %1").arg(event->mimeData()->urls()[0].toString())); |
6197 | 1035 |
} |
1036 |
||
1037 |
||
1038 |
void HWChatWidget::discardStyleSheet() |
|
1039 |
{ |
|
1040 |
setStyleSheet(); |
|
1041 |
chatText->document()->setDefaultStyleSheet(*s_styleSheet); |
|
1042 |
displayNotice(tr("StyleSheet discarded")); |
|
1043 |
} |
|
1044 |
||
1045 |
||
1046 |
void HWChatWidget::saveStyleSheet() |
|
1047 |
{ |
|
1048 |
QString dest = |
|
6930 | 1049 |
DataManager::instance().findFileForWrite("css/chat.css"); |
6197 | 1050 |
|
1051 |
QFile file(dest); |
|
1052 |
if (file.open(QIODevice::WriteOnly | QIODevice::Text)) |
|
1053 |
{ |
|
1054 |
QTextStream out(&file); |
|
6201
d88e7f6cf499
fix of /saveStyleSheet command, error message on stylesheet import fail
sheepluva
parents:
6198
diff
changeset
|
1055 |
QStringList lines = s_styleSheet->split("\n", QString::KeepEmptyParts); |
d88e7f6cf499
fix of /saveStyleSheet command, error message on stylesheet import fail
sheepluva
parents:
6198
diff
changeset
|
1056 |
|
d88e7f6cf499
fix of /saveStyleSheet command, error message on stylesheet import fail
sheepluva
parents:
6198
diff
changeset
|
1057 |
// strip trailing empty lines |
d88e7f6cf499
fix of /saveStyleSheet command, error message on stylesheet import fail
sheepluva
parents:
6198
diff
changeset
|
1058 |
while (lines.last().isEmpty()) |
d88e7f6cf499
fix of /saveStyleSheet command, error message on stylesheet import fail
sheepluva
parents:
6198
diff
changeset
|
1059 |
lines.takeLast(); |
d88e7f6cf499
fix of /saveStyleSheet command, error message on stylesheet import fail
sheepluva
parents:
6198
diff
changeset
|
1060 |
|
d88e7f6cf499
fix of /saveStyleSheet command, error message on stylesheet import fail
sheepluva
parents:
6198
diff
changeset
|
1061 |
foreach (const QString & line, lines) |
d88e7f6cf499
fix of /saveStyleSheet command, error message on stylesheet import fail
sheepluva
parents:
6198
diff
changeset
|
1062 |
{ |
d88e7f6cf499
fix of /saveStyleSheet command, error message on stylesheet import fail
sheepluva
parents:
6198
diff
changeset
|
1063 |
out << line << endl; |
d88e7f6cf499
fix of /saveStyleSheet command, error message on stylesheet import fail
sheepluva
parents:
6198
diff
changeset
|
1064 |
} |
d88e7f6cf499
fix of /saveStyleSheet command, error message on stylesheet import fail
sheepluva
parents:
6198
diff
changeset
|
1065 |
out << endl; |
6197 | 1066 |
file.close(); |
1067 |
displayNotice(tr("StyleSheet saved to %1").arg(dest)); |
|
1068 |
} |
|
1069 |
else |
|
6201
d88e7f6cf499
fix of /saveStyleSheet command, error message on stylesheet import fail
sheepluva
parents:
6198
diff
changeset
|
1070 |
displayError(tr("Failed to save StyleSheet to %1").arg(dest)); |
6197 | 1071 |
} |
1072 |
||
1073 |
||
1074 |
bool HWChatWidget::parseCommand(const QString & line) |
|
1075 |
{ |
|
1076 |
if (line[0] == '/') |
|
1077 |
{ |
|
1078 |
QString tline = line.trimmed(); |
|
1079 |
if (tline.startsWith("/me")) |
|
1080 |
return false; // not a real command |
|
1081 |
||
1082 |
else if (tline == "/discardStyleSheet") |
|
1083 |
discardStyleSheet(); |
|
1084 |
else if (tline == "/saveStyleSheet") |
|
1085 |
saveStyleSheet(); |
|
1086 |
else |
|
1087 |
{ |
|
1088 |
static QRegExp post("\\s.*$"); |
|
1089 |
tline.remove(post); |
|
1090 |
displayWarning(tr("%1 is not a valid command!").arg(tline)); |
|
1091 |
} |
|
1092 |
||
1093 |
return true; |
|
1094 |
} |
|
1095 |
||
1096 |
return false; |
|
1097 |
} |
|
6227
ce60b734fff1
update name autocompletion after nick change (since own nick isn't suggested)
sheepluva
parents:
6222
diff
changeset
|
1098 |
|
ce60b734fff1
update name autocompletion after nick change (since own nick isn't suggested)
sheepluva
parents:
6222
diff
changeset
|
1099 |
|
ce60b734fff1
update name autocompletion after nick change (since own nick isn't suggested)
sheepluva
parents:
6222
diff
changeset
|
1100 |
void HWChatWidget::setUser(const QString & nickname) |
ce60b734fff1
update name autocompletion after nick change (since own nick isn't suggested)
sheepluva
parents:
6222
diff
changeset
|
1101 |
{ |
ce60b734fff1
update name autocompletion after nick change (since own nick isn't suggested)
sheepluva
parents:
6222
diff
changeset
|
1102 |
m_userNick = nickname; |
ce60b734fff1
update name autocompletion after nick change (since own nick isn't suggested)
sheepluva
parents:
6222
diff
changeset
|
1103 |
nickRemoved(nickname); |
ce60b734fff1
update name autocompletion after nick change (since own nick isn't suggested)
sheepluva
parents:
6222
diff
changeset
|
1104 |
clear(); |
ce60b734fff1
update name autocompletion after nick change (since own nick isn't suggested)
sheepluva
parents:
6222
diff
changeset
|
1105 |
} |