author | unc0rr |
Wed, 10 Oct 2012 23:30:34 +0400 | |
changeset 7741 | d216f0599291 |
parent 7740 | 076f57836ee3 |
child 7742 | e5e529dcc9bb |
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> |
7723 | 37 |
#include <QListView> |
6229
4c834af76c3b
* fix highlighting (i just broke it by not negating a boolean expression)
sheepluva
parents:
6227
diff
changeset
|
38 |
#include <QMessageBox> |
7737 | 39 |
#include <QModelIndexList> |
40 |
#include <QDebug> |
|
41 |
#include <QSortFilterProxyModel> |
|
7740 | 42 |
#include <QMenu> |
461 | 43 |
|
6930 | 44 |
#include "DataManager.h" |
2773
e94f240a8a41
Have game beep when someone joins lobby/room. Controlled by Sound option
nemo
parents:
2706
diff
changeset
|
45 |
#include "hwconsts.h" |
e94f240a8a41
Have game beep when someone joins lobby/room. Controlled by Sound option
nemo
parents:
2706
diff
changeset
|
46 |
#include "gameuiconfig.h" |
7737 | 47 |
#include "playerslistmodel.h" |
6165
6fe3e922246e
moving and renaming SDLs.*, making it a singleton; cleaning up class responsibilties wrt SDLInteraction; some comments
sheepluva
parents:
6151
diff
changeset
|
48 |
|
461 | 49 |
#include "chatwidget.h" |
50 |
||
7720 | 51 |
|
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
|
52 |
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
|
53 |
QStringList * HWChatWidget::s_displayNone = NULL; |
6197 | 54 |
bool HWChatWidget::s_isTimeStamped = true; |
6229
4c834af76c3b
* fix highlighting (i just broke it by not negating a boolean expression)
sheepluva
parents:
6227
diff
changeset
|
55 |
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
|
56 |
|
6201
d88e7f6cf499
fix of /saveStyleSheet command, error message on stylesheet import fail
sheepluva
parents:
6198
diff
changeset
|
57 |
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
|
58 |
{ |
6197 | 59 |
if (s_styleSheet != NULL) |
60 |
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
|
61 |
|
6197 | 62 |
setStyleSheet(); |
63 |
||
64 |
return *s_styleSheet; |
|
65 |
} |
|
66 |
||
67 |
void HWChatWidget::setStyleSheet(const QString & styleSheet) |
|
68 |
{ |
|
6201
d88e7f6cf499
fix of /saveStyleSheet command, error message on stylesheet import fail
sheepluva
parents:
6198
diff
changeset
|
69 |
QString orgStyleSheet = styleSheet; |
d88e7f6cf499
fix of /saveStyleSheet command, error message on stylesheet import fail
sheepluva
parents:
6198
diff
changeset
|
70 |
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
|
71 |
|
6197 | 72 |
// 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
|
73 |
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
|
74 |
{ |
6197 | 75 |
// load external stylesheet if there is any |
6930 | 76 |
QFile extFile(DataManager::instance().findFileForRead("css/chat.css")); |
6197 | 77 |
|
78 |
QFile resFile(":/res/css/chat.css"); |
|
79 |
||
80 |
QFile & file = (extFile.exists()?extFile:resFile); |
|
81 |
||
82 |
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
|
83 |
{ |
6197 | 84 |
QTextStream in(&file); |
85 |
while (!in.atEnd()) |
|
86 |
{ |
|
6201
d88e7f6cf499
fix of /saveStyleSheet command, error message on stylesheet import fail
sheepluva
parents:
6198
diff
changeset
|
87 |
style.append(in.readLine()+"\n"); |
6197 | 88 |
} |
6201
d88e7f6cf499
fix of /saveStyleSheet command, error message on stylesheet import fail
sheepluva
parents:
6198
diff
changeset
|
89 |
orgStyleSheet = style; |
6214 | 90 |
|
91 |
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
|
92 |
} |
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
|
93 |
} |
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
|
94 |
|
6197 | 95 |
// let's parse display:none; ... |
96 |
||
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
|
97 |
// 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
|
98 |
|
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
|
99 |
// 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
|
100 |
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
|
101 |
|
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
|
102 |
// 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
|
103 |
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
|
104 |
|
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
|
105 |
// 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
|
106 |
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
|
107 |
|
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
|
108 |
|
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
|
109 |
// 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
|
110 |
// 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
|
111 |
|
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
|
112 |
// 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
|
113 |
|
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
|
114 |
// 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
|
115 |
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
|
116 |
"([^{}]*\\{)(?!([^}]*;)* ?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
|
117 |
|
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
|
118 |
// 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
|
119 |
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
|
120 |
|
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
|
121 |
// 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
|
122 |
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
|
123 |
|
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
|
124 |
QStringList victims = QString(style). |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6418
diff
changeset
|
125 |
remove(displayed). // remove visible stuff |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6418
diff
changeset
|
126 |
trimmed(). |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6418
diff
changeset
|
127 |
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
|
128 |
filter(nohierarchy). // only direct class names |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6418
diff
changeset
|
129 |
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
|
130 |
|
6197 | 131 |
|
132 |
if (victims.contains("timestamp")) |
|
133 |
{ |
|
134 |
s_isTimeStamped = false; |
|
135 |
victims.removeAll("timestamp"); |
|
136 |
} |
|
6229
4c834af76c3b
* fix highlighting (i just broke it by not negating a boolean expression)
sheepluva
parents:
6227
diff
changeset
|
137 |
else |
4c834af76c3b
* fix highlighting (i just broke it by not negating a boolean expression)
sheepluva
parents:
6227
diff
changeset
|
138 |
{ |
4c834af76c3b
* fix highlighting (i just broke it by not negating a boolean expression)
sheepluva
parents:
6227
diff
changeset
|
139 |
s_isTimeStamped = true; |
4c834af76c3b
* fix highlighting (i just broke it by not negating a boolean expression)
sheepluva
parents:
6227
diff
changeset
|
140 |
s_tsFormat = |
6231 | 141 |
((victims.contains("timestamp:hours"))?"":"hh:") + |
142 |
QString("mm") + |
|
143 |
((victims.contains("timestamp:seconds"))?"":":ss"); |
|
6229
4c834af76c3b
* fix highlighting (i just broke it by not negating a boolean expression)
sheepluva
parents:
6227
diff
changeset
|
144 |
} |
4c834af76c3b
* fix highlighting (i just broke it by not negating a boolean expression)
sheepluva
parents:
6227
diff
changeset
|
145 |
|
4c834af76c3b
* fix highlighting (i just broke it by not negating a boolean expression)
sheepluva
parents:
6227
diff
changeset
|
146 |
victims.removeAll("timestamp:hours"); |
4c834af76c3b
* fix highlighting (i just broke it by not negating a boolean expression)
sheepluva
parents:
6227
diff
changeset
|
147 |
victims.removeAll("timestamp:seconds"); |
6197 | 148 |
|
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
|
149 |
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
|
150 |
|
6197 | 151 |
QStringList * oldDisplayNone = s_displayNone; |
152 |
QString * oldStyleSheet = s_styleSheet; |
|
153 |
||
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
|
154 |
s_displayNone = new QStringList(victims); |
6201
d88e7f6cf499
fix of /saveStyleSheet command, error message on stylesheet import fail
sheepluva
parents:
6198
diff
changeset
|
155 |
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
|
156 |
|
6197 | 157 |
if (oldDisplayNone != NULL) |
158 |
delete oldDisplayNone; |
|
159 |
||
160 |
if (oldStyleSheet != NULL) |
|
161 |
delete oldStyleSheet; |
|
162 |
||
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
|
163 |
} |
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
|
164 |
|
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
|
165 |
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
|
166 |
{ |
6181
c739b503ae31
ugh wth... cleaned FL/IL change notifications up
sheepluva
parents:
6180
diff
changeset
|
167 |
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
|
168 |
// 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
|
169 |
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
|
170 |
} |
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 |
|
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
|
172 |
|
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
|
173 |
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
|
174 |
{ |
6181
c739b503ae31
ugh wth... cleaned FL/IL change notifications up
sheepluva
parents:
6180
diff
changeset
|
175 |
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
|
176 |
// 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
|
177 |
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
|
178 |
} |
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 |
|
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
|
180 |
|
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
|
181 |
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
|
182 |
{ |
6181
c739b503ae31
ugh wth... cleaned FL/IL change notifications up
sheepluva
parents:
6180
diff
changeset
|
183 |
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
|
184 |
// 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
|
185 |
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
|
186 |
} |
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
|
187 |
|
4897
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
188 |
|
6165
6fe3e922246e
moving and renaming SDLs.*, making it a singleton; cleaning up class responsibilties wrt SDLInteraction; some comments
sheepluva
parents:
6151
diff
changeset
|
189 |
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
|
190 |
QWidget(parent), |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6418
diff
changeset
|
191 |
mainLayout(this) |
461 | 192 |
{ |
2773
e94f240a8a41
Have game beep when someone joins lobby/room. Controlled by Sound option
nemo
parents:
2706
diff
changeset
|
193 |
this->gameSettings = gameSettings; |
2775 | 194 |
this->notify = notify; |
6418
f1a3c3aab5b4
hide all context menu options for own nick, except for info
sheepluva
parents:
6240
diff
changeset
|
195 |
|
f1a3c3aab5b4
hide all context menu options for own nick, except for info
sheepluva
parents:
6240
diff
changeset
|
196 |
m_isAdmin = false; |
6929
c305d31642ac
reimplement auto-kick for ignored players (it was temporarily removed during refactoring)
sheepluva
parents:
6928
diff
changeset
|
197 |
m_autoKickEnabled = false; |
6418
f1a3c3aab5b4
hide all context menu options for own nick, except for info
sheepluva
parents:
6240
diff
changeset
|
198 |
|
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
|
199 |
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
|
200 |
{ |
6928
9562ace15141
nemo said I was boring for removing the "hello" randomizer on room join.
sheepluva
parents:
6700
diff
changeset
|
201 |
QStringList vpList = |
9562ace15141
nemo said I was boring for removing the "hello" randomizer on room join.
sheepluva
parents:
6700
diff
changeset
|
202 |
QStringList() << "Classic" << "Default" << "Mobster" << "Russian"; |
9562ace15141
nemo said I was boring for removing the "hello" randomizer on room join.
sheepluva
parents:
6700
diff
changeset
|
203 |
|
9562ace15141
nemo said I was boring for removing the "hello" randomizer on room join.
sheepluva
parents:
6700
diff
changeset
|
204 |
foreach (QString vp, vpList) |
9562ace15141
nemo said I was boring for removing the "hello" randomizer on room join.
sheepluva
parents:
6700
diff
changeset
|
205 |
{ |
6930 | 206 |
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
|
207 |
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
|
208 |
} |
6238 | 209 |
|
6930 | 210 |
m_hilightSound = DataManager::instance().findFileForRead( |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6418
diff
changeset
|
211 |
"Sounds/beep.ogg"); |
6238 | 212 |
|
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
|
213 |
} |
2773
e94f240a8a41
Have game beep when someone joins lobby/room. Controlled by Sound option
nemo
parents:
2706
diff
changeset
|
214 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
215 |
mainLayout.setSpacing(1); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
216 |
mainLayout.setMargin(1); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
217 |
mainLayout.setSizeConstraint(QLayout::SetMinimumSize); |
3790 | 218 |
mainLayout.setColumnStretch(0, 76); |
219 |
mainLayout.setColumnStretch(1, 24); |
|
461 | 220 |
|
6147
b4d7d8d62feb
feature-pimpin'-up the chat input line in frontend:
sheepluva
parents:
6145
diff
changeset
|
221 |
chatEditLine = new SmartLineEdit(this); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
222 |
chatEditLine->setMaxLength(300); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
223 |
connect(chatEditLine, SIGNAL(returnPressed()), this, SLOT(returnPressed())); |
461 | 224 |
|
5094 | 225 |
mainLayout.addWidget(chatEditLine, 2, 0); |
462 | 226 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
227 |
chatText = new QTextBrowser(this); |
6177
5eba8970e8ae
same for chat. changed the paths to: css/qt.css css/chat.css
sheepluva
parents:
6167
diff
changeset
|
228 |
|
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
|
229 |
chatText->document()->setDefaultStyleSheet(styleSheet()); |
6177
5eba8970e8ae
same for chat. changed the paths to: css/qt.css css/chat.css
sheepluva
parents:
6167
diff
changeset
|
230 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
231 |
chatText->setMinimumHeight(20); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
232 |
chatText->setMinimumWidth(10); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
233 |
chatText->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding); |
4897
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
234 |
chatText->setOpenLinks(false); |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
235 |
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
|
236 |
this, SLOT(linkClicked(const QUrl&))); |
5094 | 237 |
mainLayout.addWidget(chatText, 0, 0, 2, 1); |
462 | 238 |
|
7723 | 239 |
chatNicks = new QListView(this); |
7720 | 240 |
chatNicks->setIconSize(QSize(24, 16)); |
7725 | 241 |
chatNicks->setSelectionMode(QAbstractItemView::SingleSelection); |
242 |
chatNicks->setEditTriggers(QAbstractItemView::NoEditTriggers); |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
243 |
chatNicks->setMinimumHeight(10); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
244 |
chatNicks->setMinimumWidth(10); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
245 |
chatNicks->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding); |
7740 | 246 |
chatNicks->setContextMenuPolicy(Qt::CustomContextMenu); |
247 |
||
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
248 |
connect(chatNicks, SIGNAL(itemDoubleClicked(QListWidgetItem *)), |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6418
diff
changeset
|
249 |
this, SLOT(chatNickDoubleClicked(QListWidgetItem *))); |
7740 | 250 |
|
251 |
connect(chatNicks, SIGNAL(customContextMenuRequested(QPoint)), this, SLOT(nicksContextMenuRequested(QPoint))); |
|
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
|
252 |
|
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
|
253 |
mainLayout.addWidget(chatNicks, 0, 1, 3, 1); |
1391 | 254 |
|
6222
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
255 |
// 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
|
256 |
// is offline |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
257 |
acInfo = new QAction(QAction::tr("Info"), chatNicks); |
3123 | 258 |
acInfo->setIcon(QIcon(":/res/info.png")); |
6222
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
259 |
acInfo->setData(QVariant(false)); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
260 |
connect(acInfo, SIGNAL(triggered(bool)), this, SLOT(onInfo())); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
261 |
acKick = new QAction(QAction::tr("Kick"), chatNicks); |
3123 | 262 |
acKick->setIcon(QIcon(":/res/kick.png")); |
6222
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
263 |
acKick->setData(QVariant(false)); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
264 |
connect(acKick, SIGNAL(triggered(bool)), this, SLOT(onKick())); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
265 |
acBan = new QAction(QAction::tr("Ban"), chatNicks); |
3123 | 266 |
acBan->setIcon(QIcon(":/res/ban.png")); |
6222
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
267 |
acBan->setData(QVariant(true)); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
268 |
connect(acBan, SIGNAL(triggered(bool)), this, SLOT(onBan())); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
269 |
acFollow = new QAction(QAction::tr("Follow"), chatNicks); |
3123 | 270 |
acFollow->setIcon(QIcon(":/res/follow.png")); |
6222
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
271 |
acFollow->setData(QVariant(false)); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
272 |
connect(acFollow, SIGNAL(triggered(bool)), this, SLOT(onFollow())); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
273 |
acIgnore = new QAction(QAction::tr("Ignore"), chatNicks); |
3123 | 274 |
acIgnore->setIcon(QIcon(":/res/ignore.png")); |
6222
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
275 |
acIgnore->setData(QVariant(true)); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
276 |
connect(acIgnore, SIGNAL(triggered(bool)), this, SLOT(onIgnore())); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
277 |
acFriend = new QAction(QAction::tr("Add friend"), chatNicks); |
3123 | 278 |
acFriend->setIcon(QIcon(":/res/addfriend.png")); |
6222
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
279 |
acFriend->setData(QVariant(true)); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
280 |
connect(acFriend, SIGNAL(triggered(bool)), this, SLOT(onFriend())); |
2377 | 281 |
|
4892 | 282 |
chatNicks->insertAction(0, acFriend); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
283 |
chatNicks->insertAction(0, acInfo); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
284 |
chatNicks->insertAction(0, acIgnore); |
3697 | 285 |
|
4892 | 286 |
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
|
287 |
|
6197 | 288 |
setAcceptDrops(true); |
7740 | 289 |
|
290 |
m_nicksMenu = new QMenu(this); |
|
291 |
||
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
|
292 |
clear(); |
4892 | 293 |
} |
294 |
||
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
|
295 |
|
4897
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
296 |
void HWChatWidget::linkClicked(const QUrl & link) |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
297 |
{ |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
298 |
if (link.scheme() == "http") |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
299 |
QDesktopServices::openUrl(link); |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
300 |
if (link.scheme() == "hwnick") |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
301 |
{ |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
302 |
// decode nick |
6222
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
303 |
QString nick = QString::fromUtf8(QByteArray::fromBase64(link.encodedQuery())); |
7723 | 304 |
/*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
|
305 |
|
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
306 |
bool isOffline = (items.size() < 1); |
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
307 |
|
5953 | 308 |
QMenu * popup = new QMenu(this); |
6222
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
309 |
|
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
310 |
if (isOffline) |
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
311 |
{ |
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
312 |
m_clickedNick = nick; |
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
313 |
chatNickSelected(0); // update friend and ignore entry |
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
314 |
chatNicks->setCurrentItem(NULL, QItemSelectionModel::Clear); |
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
315 |
} |
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
316 |
else |
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
317 |
{ |
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
318 |
// 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
|
319 |
QScrollBar * scrollBar = chatNicks->verticalScrollBar(); |
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
320 |
int oldScrollPos = scrollBar->sliderPosition(); |
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
321 |
// 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
|
322 |
chatNicks->setCurrentItem(items[0], QItemSelectionModel::Clear); |
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
323 |
// 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
|
324 |
scrollBar->setSliderPosition(oldScrollPos); |
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
325 |
} |
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
326 |
|
4897
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
327 |
// load actions |
6222
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
328 |
QList<QAction *> actions = chatNicks->actions(); |
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
329 |
|
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
330 |
foreach(QAction * action, actions) |
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
331 |
{ |
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
332 |
if ((!isOffline) || (action->data().toBool())) |
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
333 |
popup->addAction(action); |
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
334 |
} |
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
335 |
|
4897
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
336 |
// display menu popup at mouse cursor position |
7723 | 337 |
popup->popup(QCursor::pos());*/ |
4897
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
338 |
} |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
339 |
} |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
340 |
|
4892 | 341 |
void HWChatWidget::setShowFollow(bool enabled) |
342 |
{ |
|
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6418
diff
changeset
|
343 |
if (enabled) |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6418
diff
changeset
|
344 |
{ |
4892 | 345 |
if (!(chatNicks->actions().contains(acFollow))) |
346 |
chatNicks->insertAction(acFriend, acFollow); |
|
347 |
} |
|
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6418
diff
changeset
|
348 |
else |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6418
diff
changeset
|
349 |
{ |
4892 | 350 |
if (chatNicks->actions().contains(acFollow)) |
351 |
chatNicks->removeAction(acFollow); |
|
352 |
} |
|
2845 | 353 |
} |
354 |
||
6929
c305d31642ac
reimplement auto-kick for ignored players (it was temporarily removed during refactoring)
sheepluva
parents:
6928
diff
changeset
|
355 |
void HWChatWidget::setIgnoreListKick(bool enabled) |
c305d31642ac
reimplement auto-kick for ignored players (it was temporarily removed during refactoring)
sheepluva
parents:
6928
diff
changeset
|
356 |
{ |
c305d31642ac
reimplement auto-kick for ignored players (it was temporarily removed during refactoring)
sheepluva
parents:
6928
diff
changeset
|
357 |
m_autoKickEnabled = enabled; |
c305d31642ac
reimplement auto-kick for ignored players (it was temporarily removed during refactoring)
sheepluva
parents:
6928
diff
changeset
|
358 |
} |
c305d31642ac
reimplement auto-kick for ignored players (it was temporarily removed during refactoring)
sheepluva
parents:
6928
diff
changeset
|
359 |
|
6237
a66029015c18
whoopsy, my bad (segfault due to accepting empty lines)
sheepluva
parents:
6233
diff
changeset
|
360 |
|
461 | 361 |
void HWChatWidget::returnPressed() |
362 |
{ |
|
5990
578978418fe5
let frontend send (copypasta) multi-line messages line by line to avoid protocol violation
sheepluva
parents:
5953
diff
changeset
|
363 |
QStringList lines = chatEditLine->text().split('\n'); |
6150
1d98752c1fba
frontend chat input history, use arrow keys UP/DOWN
sheepluva
parents:
6149
diff
changeset
|
364 |
chatEditLine->rememberCurrentText(); |
6197 | 365 |
foreach (const QString &line, lines) |
366 |
{ |
|
6237
a66029015c18
whoopsy, my bad (segfault due to accepting empty lines)
sheepluva
parents:
6233
diff
changeset
|
367 |
// skip empty/whitespace lines |
a66029015c18
whoopsy, my bad (segfault due to accepting empty lines)
sheepluva
parents:
6233
diff
changeset
|
368 |
if (line.trimmed().isEmpty()) |
a66029015c18
whoopsy, my bad (segfault due to accepting empty lines)
sheepluva
parents:
6233
diff
changeset
|
369 |
continue; |
a66029015c18
whoopsy, my bad (segfault due to accepting empty lines)
sheepluva
parents:
6233
diff
changeset
|
370 |
|
6197 | 371 |
if (!parseCommand(line)) |
372 |
emit chatLine(line); |
|
373 |
} |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
374 |
chatEditLine->clear(); |
461 | 375 |
} |
2846 | 376 |
|
6222
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
377 |
// "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
|
378 |
// 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
|
379 |
// 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
|
380 |
QString HWChatWidget::linkedNick(const QString & nickname) |
6222
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
381 |
{ |
6227
ce60b734fff1
update name autocompletion after nick change (since own nick isn't suggested)
sheepluva
parents:
6222
diff
changeset
|
382 |
if (nickname != m_userNick) |
6222
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
383 |
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
|
384 |
QString(nickname.toUtf8().toBase64())).arg(Qt::escape(nickname)); |
6233 | 385 |
|
386 |
// unlinked nick (if own one) |
|
387 |
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
|
388 |
} |
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
389 |
|
4897
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
390 |
|
1360 | 391 |
void HWChatWidget::onChatString(const QString& str) |
461 | 392 |
{ |
4897
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
393 |
onChatString("", str); |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
394 |
} |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
395 |
|
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
|
396 |
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
|
397 |
|
4897
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
398 |
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
|
399 |
{ |
7741 | 400 |
QSortFilterProxyModel * playersSortFilterModel = qobject_cast<QSortFilterProxyModel *>(chatNicks->model()); |
401 |
if(!playersSortFilterModel) |
|
402 |
return; |
|
403 |
||
404 |
PlayersListModel * players = qobject_cast<PlayersListModel *>(playersSortFilterModel->sourceModel()); |
|
405 |
||
406 |
if(!players) |
|
407 |
return; |
|
4897
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
408 |
|
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6418
diff
changeset
|
409 |
if (!nick.isEmpty()) |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6418
diff
changeset
|
410 |
{ |
4897
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
411 |
// don't show chat lines that are from ignored nicks |
7741 | 412 |
if (players->isFlagSet(nick, PlayersListModel::Ignore)) |
4897
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
413 |
return; |
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 |
|
7741 | 416 |
bool isFriend = (!nick.isEmpty()) && players->isFlagSet(nick, PlayersListModel::Friend); |
417 |
||
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
418 |
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
|
419 |
// 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
|
420 |
formattedStr = formattedStr.replace(URLREGEXP, "<a href=\"http://\\3\">\\3</a>"); |
2845 | 421 |
|
6222
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
422 |
// link the nick |
4897
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
423 |
if(!nick.isEmpty()) |
6222
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
424 |
formattedStr.replace("|nick|", linkedNick(nick)); |
2845 | 425 |
|
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
|
426 |
QString cssClass("msg_UserChat"); |
3697 | 427 |
|
4897
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
428 |
// 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
|
429 |
char c = str[0].toAscii(); |
6214 | 430 |
switch (c) |
431 |
{ |
|
4897
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
432 |
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
|
433 |
cssClass = (isFriend ? "msg_FriendJoin" : "msg_UserJoin"); |
4897
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
434 |
break; |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
435 |
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
|
436 |
cssClass = (isFriend ? "msg_FriendAction" : "msg_UserAction"); |
4897
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
437 |
break; |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
438 |
default: |
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
439 |
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
|
440 |
cssClass = "msg_FriendChat"; |
4897
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
441 |
} |
2396 | 442 |
|
6214 | 443 |
bool isHL = false; |
444 |
||
6227
ce60b734fff1
update name autocompletion after nick change (since own nick isn't suggested)
sheepluva
parents:
6222
diff
changeset
|
445 |
if ((c != 3) && (!nick.isEmpty()) && |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6418
diff
changeset
|
446 |
(nick != m_userNick) && (!m_userNick.isEmpty())) |
6214 | 447 |
{ |
448 |
QString lcStr = str.toLower(); |
|
449 |
||
450 |
foreach (const QRegExp & hl, m_highlights) |
|
451 |
{ |
|
452 |
if (lcStr.contains(hl)) |
|
453 |
{ |
|
454 |
isHL = true; |
|
455 |
break; |
|
456 |
} |
|
457 |
} |
|
458 |
} |
|
6193 | 459 |
|
460 |
addLine(cssClass, formattedStr, isHL); |
|
5998
e8f44e9433f0
many many netclient/frondent changes (just the beginning though):
sheepluva
parents:
5990
diff
changeset
|
461 |
} |
2377 | 462 |
|
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
|
463 |
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
|
464 |
{ |
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
|
465 |
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
|
466 |
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
|
467 |
|
5998
e8f44e9433f0
many many netclient/frondent changes (just the beginning though):
sheepluva
parents:
5990
diff
changeset
|
468 |
if (chatStrings.size() > 250) |
e8f44e9433f0
many many netclient/frondent changes (just the beginning though):
sheepluva
parents:
5990
diff
changeset
|
469 |
chatStrings.removeFirst(); |
e8f44e9433f0
many many netclient/frondent changes (just the beginning though):
sheepluva
parents:
5990
diff
changeset
|
470 |
|
6197 | 471 |
if (s_isTimeStamped) |
472 |
{ |
|
473 |
QString tsMarkUp = "<span class=\"timestamp\">[%1]</span> "; |
|
474 |
QTime now = QDateTime::currentDateTime().time(); |
|
6229
4c834af76c3b
* fix highlighting (i just broke it by not negating a boolean expression)
sheepluva
parents:
6227
diff
changeset
|
475 |
line = tsMarkUp.arg(now.toString(s_tsFormat)) + line; |
6197 | 476 |
} |
477 |
||
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
|
478 |
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
|
479 |
|
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
|
480 |
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
|
481 |
{ |
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
|
482 |
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
|
483 |
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
|
484 |
} |
5998
e8f44e9433f0
many many netclient/frondent changes (just the beginning though):
sheepluva
parents:
5990
diff
changeset
|
485 |
|
e8f44e9433f0
many many netclient/frondent changes (just the beginning though):
sheepluva
parents:
5990
diff
changeset
|
486 |
chatStrings.append(line); |
2377 | 487 |
|
6197 | 488 |
chatText->setHtml("<html><body>"+chatStrings.join("<br>")+"</body></html>"); |
1587 | 489 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
490 |
chatText->moveCursor(QTextCursor::End); |
1587 | 491 |
} |
492 |
||
493 |
void HWChatWidget::onServerMessage(const QString& str) |
|
494 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
495 |
if (chatStrings.size() > 250) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
496 |
chatStrings.removeFirst(); |
2377 | 497 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
498 |
chatStrings.append("<hr>" + str + "<hr>"); |
2377 | 499 |
|
6197 | 500 |
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
|
501 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
502 |
chatText->moveCursor(QTextCursor::End); |
461 | 503 |
} |
465 | 504 |
|
7741 | 505 |
|
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
|
506 |
void HWChatWidget::nickAdded(const QString & nick, bool notifyNick) |
465 | 507 |
{ |
7741 | 508 |
QSortFilterProxyModel * playersSortFilterModel = qobject_cast<QSortFilterProxyModel *>(chatNicks->model()); |
509 |
if(!playersSortFilterModel) |
|
510 |
return; |
|
511 |
||
512 |
PlayersListModel * players = qobject_cast<PlayersListModel *>(playersSortFilterModel->sourceModel()); |
|
513 |
||
514 |
if(!players) |
|
515 |
return; |
|
516 |
||
517 |
bool isIgnored = players->isFlagSet(nick, PlayersListModel::Ignore); |
|
6929
c305d31642ac
reimplement auto-kick for ignored players (it was temporarily removed during refactoring)
sheepluva
parents:
6928
diff
changeset
|
518 |
|
c305d31642ac
reimplement auto-kick for ignored players (it was temporarily removed during refactoring)
sheepluva
parents:
6928
diff
changeset
|
519 |
if (isIgnored && m_isAdmin && m_autoKickEnabled) |
c305d31642ac
reimplement auto-kick for ignored players (it was temporarily removed during refactoring)
sheepluva
parents:
6928
diff
changeset
|
520 |
{ |
c305d31642ac
reimplement auto-kick for ignored players (it was temporarily removed during refactoring)
sheepluva
parents:
6928
diff
changeset
|
521 |
emit kick(nick); |
c305d31642ac
reimplement auto-kick for ignored players (it was temporarily removed during refactoring)
sheepluva
parents:
6928
diff
changeset
|
522 |
return; |
c305d31642ac
reimplement auto-kick for ignored players (it was temporarily removed during refactoring)
sheepluva
parents:
6928
diff
changeset
|
523 |
} |
c305d31642ac
reimplement auto-kick for ignored players (it was temporarily removed during refactoring)
sheepluva
parents:
6928
diff
changeset
|
524 |
|
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
|
525 |
if ((!isIgnored) && (nick != m_userNick)) // don't auto-complete own name |
6149 | 526 |
chatEditLine->addNickname(nick); |
527 |
||
7740 | 528 |
emit nickCountUpdate(chatNicks->model()->rowCount()); |
5094 | 529 |
|
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6418
diff
changeset
|
530 |
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
|
531 |
{ |
6928
9562ace15141
nemo said I was boring for removing the "hello" randomizer on room join.
sheepluva
parents:
6700
diff
changeset
|
532 |
SDLInteraction::instance().playSoundFile( |
9562ace15141
nemo said I was boring for removing the "hello" randomizer on room join.
sheepluva
parents:
6700
diff
changeset
|
533 |
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
|
534 |
} |
465 | 535 |
} |
536 |
||
537 |
void HWChatWidget::nickRemoved(const QString& nick) |
|
538 |
{ |
|
6147
b4d7d8d62feb
feature-pimpin'-up the chat input line in frontend:
sheepluva
parents:
6145
diff
changeset
|
539 |
chatEditLine->removeNickname(nick); |
b4d7d8d62feb
feature-pimpin'-up the chat input line in frontend:
sheepluva
parents:
6145
diff
changeset
|
540 |
|
7741 | 541 |
emit nickCountUpdate(chatNicks->model()->rowCount()); |
465 | 542 |
} |
543 |
||
544 |
void HWChatWidget::clear() |
|
545 |
{ |
|
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
|
546 |
chatEditLine->reset(); |
6198
9aa9ed77d63c
unbreak command auto-completion (was broken since r0b92341adb6a - 52 commits ago)
sheepluva
parents:
6197
diff
changeset
|
547 |
|
9aa9ed77d63c
unbreak command auto-completion (was broken since r0b92341adb6a - 52 commits ago)
sheepluva
parents:
6197
diff
changeset
|
548 |
// add default commands |
9aa9ed77d63c
unbreak command auto-completion (was broken since r0b92341adb6a - 52 commits ago)
sheepluva
parents:
6197
diff
changeset
|
549 |
QStringList cmds; |
9aa9ed77d63c
unbreak command auto-completion (was broken since r0b92341adb6a - 52 commits ago)
sheepluva
parents:
6197
diff
changeset
|
550 |
cmds << "/me" << "/discardStyleSheet" << "/saveStyleSheet"; |
9aa9ed77d63c
unbreak command auto-completion (was broken since r0b92341adb6a - 52 commits ago)
sheepluva
parents:
6197
diff
changeset
|
551 |
chatEditLine->addCommands(cmds); |
9aa9ed77d63c
unbreak command auto-completion (was broken since r0b92341adb6a - 52 commits ago)
sheepluva
parents:
6197
diff
changeset
|
552 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
553 |
chatText->clear(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
554 |
chatStrings.clear(); |
7723 | 555 |
//chatNicks->clear(); |
6214 | 556 |
|
557 |
// clear and re compile regexp for highlighting |
|
558 |
m_highlights.clear(); |
|
559 |
||
6215 | 560 |
QString hlRegExp("^(.* )?%1[^-a-z0-9_]*( .*)?$"); |
6214 | 561 |
QRegExp whitespace("\\s"); |
562 |
||
563 |
m_highlights.append(QRegExp(hlRegExp.arg(m_userNick))); |
|
564 |
||
565 |
QFile file(cfgdir->absolutePath() + "/" + m_userNick + "_highlight.txt"); |
|
566 |
||
567 |
if (file.exists() && (file.open(QIODevice::ReadOnly | QIODevice::Text))) |
|
568 |
{ |
|
569 |
QTextStream in(&file); |
|
570 |
while (!in.atEnd()) |
|
571 |
{ |
|
572 |
QString line = in.readLine(); |
|
573 |
QStringList list = line.split(whitespace); |
|
574 |
foreach (QString word, list) |
|
575 |
{ |
|
576 |
m_highlights.append(QRegExp( |
|
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6418
diff
changeset
|
577 |
hlRegExp.arg(QRegExp::escape(word.toLower())))); |
6214 | 578 |
} |
579 |
} |
|
580 |
||
581 |
if (file.isOpen()) |
|
582 |
file.close(); |
|
583 |
} |
|
584 |
||
585 |
QFile file2(cfgdir->absolutePath() + "/" + m_userNick + "_hlregexp.txt"); |
|
586 |
||
587 |
if (file2.exists() && (file2.open(QIODevice::ReadOnly | QIODevice::Text))) |
|
588 |
{ |
|
589 |
QTextStream in(&file2); |
|
590 |
while (!in.atEnd()) |
|
591 |
{ |
|
592 |
m_highlights.append(QRegExp(in.readLine().toLower())); |
|
593 |
} |
|
594 |
||
595 |
if (file2.isOpen()) |
|
596 |
file2.close(); |
|
597 |
} |
|
465 | 598 |
} |
1391 | 599 |
|
600 |
void HWChatWidget::onKick() |
|
601 |
{ |
|
7737 | 602 |
QModelIndexList mil = chatNicks->selectionModel()->selectedRows(); |
603 |
||
604 |
if(mil.size()) |
|
605 |
emit kick(mil[0].data().toString()); |
|
1391 | 606 |
} |
1405 | 607 |
|
1860 | 608 |
void HWChatWidget::onBan() |
609 |
{ |
|
7737 | 610 |
QModelIndexList mil = chatNicks->selectionModel()->selectedRows(); |
611 |
||
612 |
if(mil.size()) |
|
613 |
emit ban(mil[0].data().toString()); |
|
1860 | 614 |
} |
615 |
||
1577 | 616 |
void HWChatWidget::onInfo() |
617 |
{ |
|
7737 | 618 |
QModelIndexList mil = chatNicks->selectionModel()->selectedRows(); |
619 |
||
620 |
if(mil.size()) |
|
621 |
emit info(mil[0].data().toString()); |
|
1577 | 622 |
} |
623 |
||
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
|
624 |
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
|
625 |
{ |
7737 | 626 |
QModelIndexList mil = chatNicks->selectionModel()->selectedRows(); |
627 |
||
628 |
if(mil.size()) |
|
629 |
emit follow(mil[0].data().toString()); |
|
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
|
630 |
} |
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
|
631 |
|
2845 | 632 |
void HWChatWidget::onIgnore() |
633 |
{ |
|
7737 | 634 |
QModelIndexList mil = chatNicks->selectionModel()->selectedRows(); |
635 |
||
636 |
QString nick; |
|
637 |
if(mil.size()) |
|
638 |
nick = mil[0].data().toString(); |
|
6222
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
639 |
else |
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
640 |
nick = m_clickedNick; |
2845 | 641 |
|
7737 | 642 |
QSortFilterProxyModel * playersSortFilterModel = qobject_cast<QSortFilterProxyModel *>(chatNicks->model()); |
643 |
if(!playersSortFilterModel) |
|
644 |
return; |
|
645 |
||
646 |
PlayersListModel * players = qobject_cast<PlayersListModel *>(playersSortFilterModel->sourceModel()); |
|
647 |
||
648 |
if(!players) |
|
649 |
return; |
|
650 |
||
651 |
if(players->isFlagSet(nick, PlayersListModel::Ignore)) |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
652 |
{ |
7737 | 653 |
players->setFlag(nick, PlayersListModel::Ignore, false); |
6222
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
654 |
chatEditLine->addNickname(nick); |
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
655 |
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
|
656 |
} |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
657 |
else // not on list - add |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
658 |
{ |
4884 | 659 |
// don't consider ignored people friends |
7737 | 660 |
if(players->isFlagSet(nick, PlayersListModel::Friend)) |
4884 | 661 |
emit onFriend(); |
662 |
||
7737 | 663 |
players->setFlag(nick, PlayersListModel::Ignore, true); |
6222
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
664 |
chatEditLine->removeNickname(nick); |
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
665 |
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
|
666 |
} |
6222
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
667 |
|
7737 | 668 |
if(mil.size()) |
669 |
chatNicks->scrollTo(chatNicks->selectionModel()->selectedRows()[0]); |
|
2845 | 670 |
} |
671 |
||
672 |
void HWChatWidget::onFriend() |
|
673 |
{ |
|
7737 | 674 |
QModelIndexList mil = chatNicks->selectionModel()->selectedRows(); |
675 |
||
676 |
QString nick; |
|
677 |
if(mil.size()) |
|
678 |
nick = mil[0].data().toString(); |
|
6222
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
679 |
else |
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
680 |
nick = m_clickedNick; |
2845 | 681 |
|
7737 | 682 |
QSortFilterProxyModel * playersSortFilterModel = qobject_cast<QSortFilterProxyModel *>(chatNicks->model()); |
683 |
if(!playersSortFilterModel) |
|
684 |
return; |
|
685 |
||
686 |
PlayersListModel * players = qobject_cast<PlayersListModel *>(playersSortFilterModel->sourceModel()); |
|
687 |
||
688 |
if(!players) |
|
689 |
return; |
|
690 |
||
691 |
if(players->isFlagSet(nick, PlayersListModel::Friend)) |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
692 |
{ |
7737 | 693 |
players->setFlag(nick, PlayersListModel::Friend, false); |
694 |
chatEditLine->removeNickname(nick); |
|
6222
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
695 |
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
|
696 |
} |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
697 |
else // not on list - add |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
698 |
{ |
7737 | 699 |
if(players->isFlagSet(nick, PlayersListModel::Ignore)) |
4884 | 700 |
emit onIgnore(); |
701 |
||
7737 | 702 |
players->setFlag(nick, PlayersListModel::Friend, true); |
703 |
chatEditLine->addNickname(nick); |
|
6222
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
704 |
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
|
705 |
} |
6222
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
706 |
|
7737 | 707 |
if(mil.size()) |
708 |
chatNicks->scrollTo(chatNicks->selectionModel()->selectedRows()[0]); |
|
2845 | 709 |
} |
7741 | 710 |
/* |
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
|
711 |
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
|
712 |
{ |
6222
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
713 |
if (item != NULL) |
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
714 |
m_clickedNick = item->text(); |
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
715 |
else |
96d10dcd6d84
+ make names in notice messages and leave messages clickable too
sheepluva
parents:
6221
diff
changeset
|
716 |
m_clickedNick = ""; |
4892 | 717 |
QList<QAction *> actions = chatNicks->actions(); |
718 |
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
|
719 |
} |
7741 | 720 |
*/ |
1860 | 721 |
|
722 |
void HWChatWidget::adminAccess(bool b) |
|
723 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
724 |
chatNicks->removeAction(acKick); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
725 |
chatNicks->removeAction(acBan); |
2377 | 726 |
|
6418
f1a3c3aab5b4
hide all context menu options for own nick, except for info
sheepluva
parents:
6240
diff
changeset
|
727 |
m_isAdmin = b; |
f1a3c3aab5b4
hide all context menu options for own nick, except for info
sheepluva
parents:
6240
diff
changeset
|
728 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
729 |
if(b) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
730 |
{ |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
731 |
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
|
732 |
chatNicks->insertAction(0, acBan); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2847
diff
changeset
|
733 |
} |
1860 | 734 |
} |
6197 | 735 |
|
736 |
void HWChatWidget::dragEnterEvent(QDragEnterEvent * event) |
|
737 |
{ |
|
738 |
if (event->mimeData()->hasUrls()) |
|
739 |
{ |
|
740 |
QList<QUrl> urls = event->mimeData()->urls(); |
|
741 |
if (urls.count() == 1) |
|
6202
8e3f006b9b1e
this should fix stylesheet importing on windows, but we'll see
sheepluva
parents:
6201
diff
changeset
|
742 |
{ |
8e3f006b9b1e
this should fix stylesheet importing on windows, but we'll see
sheepluva
parents:
6201
diff
changeset
|
743 |
QUrl url = urls[0]; |
8e3f006b9b1e
this should fix stylesheet importing on windows, but we'll see
sheepluva
parents:
6201
diff
changeset
|
744 |
|
8e3f006b9b1e
this should fix stylesheet importing on windows, but we'll see
sheepluva
parents:
6201
diff
changeset
|
745 |
static QRegExp localFileRegExp("file://.*\\.css$"); |
8e3f006b9b1e
this should fix stylesheet importing on windows, but we'll see
sheepluva
parents:
6201
diff
changeset
|
746 |
localFileRegExp.setCaseSensitivity(Qt::CaseInsensitive); |
8e3f006b9b1e
this should fix stylesheet importing on windows, but we'll see
sheepluva
parents:
6201
diff
changeset
|
747 |
|
8e3f006b9b1e
this should fix stylesheet importing on windows, but we'll see
sheepluva
parents:
6201
diff
changeset
|
748 |
if (url.toString().contains(localFileRegExp)) |
6197 | 749 |
event->acceptProposedAction(); |
6202
8e3f006b9b1e
this should fix stylesheet importing on windows, but we'll see
sheepluva
parents:
6201
diff
changeset
|
750 |
} |
6197 | 751 |
} |
752 |
} |
|
753 |
||
754 |
void HWChatWidget::dropEvent(QDropEvent * event) |
|
755 |
{ |
|
6201
d88e7f6cf499
fix of /saveStyleSheet command, error message on stylesheet import fail
sheepluva
parents:
6198
diff
changeset
|
756 |
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
|
757 |
|
8e3f006b9b1e
this should fix stylesheet importing on windows, but we'll see
sheepluva
parents:
6201
diff
changeset
|
758 |
QFile file(event->mimeData()->urls()[0].toLocalFile()); |
6197 | 759 |
|
760 |
if (file.exists() && (file.open(QIODevice::ReadOnly | QIODevice::Text))) |
|
761 |
{ |
|
762 |
QString style; |
|
763 |
QTextStream in(&file); |
|
764 |
while (!in.atEnd()) |
|
765 |
{ |
|
766 |
QString line = in.readLine(); |
|
6202
8e3f006b9b1e
this should fix stylesheet importing on windows, but we'll see
sheepluva
parents:
6201
diff
changeset
|
767 |
style.append(line + "\n"); |
6197 | 768 |
} |
769 |
||
770 |
setStyleSheet(style); |
|
771 |
chatText->document()->setDefaultStyleSheet(*s_styleSheet); |
|
6201
d88e7f6cf499
fix of /saveStyleSheet command, error message on stylesheet import fail
sheepluva
parents:
6198
diff
changeset
|
772 |
displayNotice(tr("Stylesheet imported from %1").arg(path)); |
6239 | 773 |
displayNotice(tr("Enter %1 if you want to use the current StyleSheet in future, enter %2 to reset!").arg("/saveStyleSheet").arg("/discardStyleSheet")); |
6197 | 774 |
|
6214 | 775 |
if (file.isOpen()) |
776 |
file.close(); |
|
777 |
||
6197 | 778 |
event->acceptProposedAction(); |
779 |
} |
|
6201
d88e7f6cf499
fix of /saveStyleSheet command, error message on stylesheet import fail
sheepluva
parents:
6198
diff
changeset
|
780 |
else |
d88e7f6cf499
fix of /saveStyleSheet command, error message on stylesheet import fail
sheepluva
parents:
6198
diff
changeset
|
781 |
displayError(tr("Couldn't read %1").arg(event->mimeData()->urls()[0].toString())); |
6197 | 782 |
} |
783 |
||
784 |
||
785 |
void HWChatWidget::discardStyleSheet() |
|
786 |
{ |
|
787 |
setStyleSheet(); |
|
788 |
chatText->document()->setDefaultStyleSheet(*s_styleSheet); |
|
789 |
displayNotice(tr("StyleSheet discarded")); |
|
790 |
} |
|
791 |
||
792 |
||
793 |
void HWChatWidget::saveStyleSheet() |
|
794 |
{ |
|
795 |
QString dest = |
|
6930 | 796 |
DataManager::instance().findFileForWrite("css/chat.css"); |
6197 | 797 |
|
798 |
QFile file(dest); |
|
799 |
if (file.open(QIODevice::WriteOnly | QIODevice::Text)) |
|
800 |
{ |
|
801 |
QTextStream out(&file); |
|
6201
d88e7f6cf499
fix of /saveStyleSheet command, error message on stylesheet import fail
sheepluva
parents:
6198
diff
changeset
|
802 |
QStringList lines = s_styleSheet->split("\n", QString::KeepEmptyParts); |
d88e7f6cf499
fix of /saveStyleSheet command, error message on stylesheet import fail
sheepluva
parents:
6198
diff
changeset
|
803 |
|
d88e7f6cf499
fix of /saveStyleSheet command, error message on stylesheet import fail
sheepluva
parents:
6198
diff
changeset
|
804 |
// strip trailing empty lines |
d88e7f6cf499
fix of /saveStyleSheet command, error message on stylesheet import fail
sheepluva
parents:
6198
diff
changeset
|
805 |
while (lines.last().isEmpty()) |
d88e7f6cf499
fix of /saveStyleSheet command, error message on stylesheet import fail
sheepluva
parents:
6198
diff
changeset
|
806 |
lines.takeLast(); |
d88e7f6cf499
fix of /saveStyleSheet command, error message on stylesheet import fail
sheepluva
parents:
6198
diff
changeset
|
807 |
|
d88e7f6cf499
fix of /saveStyleSheet command, error message on stylesheet import fail
sheepluva
parents:
6198
diff
changeset
|
808 |
foreach (const QString & line, lines) |
d88e7f6cf499
fix of /saveStyleSheet command, error message on stylesheet import fail
sheepluva
parents:
6198
diff
changeset
|
809 |
{ |
d88e7f6cf499
fix of /saveStyleSheet command, error message on stylesheet import fail
sheepluva
parents:
6198
diff
changeset
|
810 |
out << line << endl; |
d88e7f6cf499
fix of /saveStyleSheet command, error message on stylesheet import fail
sheepluva
parents:
6198
diff
changeset
|
811 |
} |
d88e7f6cf499
fix of /saveStyleSheet command, error message on stylesheet import fail
sheepluva
parents:
6198
diff
changeset
|
812 |
out << endl; |
6197 | 813 |
file.close(); |
814 |
displayNotice(tr("StyleSheet saved to %1").arg(dest)); |
|
815 |
} |
|
816 |
else |
|
6201
d88e7f6cf499
fix of /saveStyleSheet command, error message on stylesheet import fail
sheepluva
parents:
6198
diff
changeset
|
817 |
displayError(tr("Failed to save StyleSheet to %1").arg(dest)); |
6197 | 818 |
} |
819 |
||
820 |
||
821 |
bool HWChatWidget::parseCommand(const QString & line) |
|
822 |
{ |
|
823 |
if (line[0] == '/') |
|
824 |
{ |
|
825 |
QString tline = line.trimmed(); |
|
826 |
if (tline.startsWith("/me")) |
|
827 |
return false; // not a real command |
|
828 |
||
829 |
else if (tline == "/discardStyleSheet") |
|
830 |
discardStyleSheet(); |
|
831 |
else if (tline == "/saveStyleSheet") |
|
832 |
saveStyleSheet(); |
|
833 |
else |
|
834 |
{ |
|
835 |
static QRegExp post("\\s.*$"); |
|
836 |
tline.remove(post); |
|
837 |
displayWarning(tr("%1 is not a valid command!").arg(tline)); |
|
838 |
} |
|
839 |
||
840 |
return true; |
|
841 |
} |
|
842 |
||
843 |
return false; |
|
844 |
} |
|
6227
ce60b734fff1
update name autocompletion after nick change (since own nick isn't suggested)
sheepluva
parents:
6222
diff
changeset
|
845 |
|
ce60b734fff1
update name autocompletion after nick change (since own nick isn't suggested)
sheepluva
parents:
6222
diff
changeset
|
846 |
|
ce60b734fff1
update name autocompletion after nick change (since own nick isn't suggested)
sheepluva
parents:
6222
diff
changeset
|
847 |
void HWChatWidget::setUser(const QString & nickname) |
ce60b734fff1
update name autocompletion after nick change (since own nick isn't suggested)
sheepluva
parents:
6222
diff
changeset
|
848 |
{ |
ce60b734fff1
update name autocompletion after nick change (since own nick isn't suggested)
sheepluva
parents:
6222
diff
changeset
|
849 |
m_userNick = nickname; |
ce60b734fff1
update name autocompletion after nick change (since own nick isn't suggested)
sheepluva
parents:
6222
diff
changeset
|
850 |
nickRemoved(nickname); |
ce60b734fff1
update name autocompletion after nick change (since own nick isn't suggested)
sheepluva
parents:
6222
diff
changeset
|
851 |
clear(); |
ce60b734fff1
update name autocompletion after nick change (since own nick isn't suggested)
sheepluva
parents:
6222
diff
changeset
|
852 |
} |
7723 | 853 |
|
854 |
||
7725 | 855 |
void HWChatWidget::setUsersModel(QAbstractItemModel *model) |
7723 | 856 |
{ |
7740 | 857 |
chatNicks->selectionModel()->deleteLater(); |
858 |
||
7723 | 859 |
chatNicks->setModel(model); |
860 |
chatNicks->setModelColumn(0); |
|
7740 | 861 |
|
862 |
connect(chatNicks->selectionModel(), SIGNAL(currentRowChanged(QModelIndex,QModelIndex)), |
|
863 |
this, SLOT(chatNickSelected())); |
|
7723 | 864 |
} |
7740 | 865 |
|
866 |
void HWChatWidget::nicksContextMenuRequested(const QPoint &pos) |
|
867 |
{ |
|
868 |
QModelIndexList mil = chatNicks->selectionModel()->selectedRows(); |
|
869 |
||
870 |
QString nick; |
|
871 |
||
872 |
if(mil.size()) |
|
873 |
nick = mil[0].data().toString(); |
|
874 |
else |
|
875 |
nick = m_clickedNick; |
|
876 |
||
877 |
QSortFilterProxyModel * playersSortFilterModel = qobject_cast<QSortFilterProxyModel *>(chatNicks->model()); |
|
878 |
if(!playersSortFilterModel) |
|
879 |
return; |
|
880 |
||
881 |
PlayersListModel * players = qobject_cast<PlayersListModel *>(playersSortFilterModel->sourceModel()); |
|
882 |
||
883 |
if(!players) |
|
884 |
return; |
|
885 |
||
886 |
bool isSelf = (nick == m_userNick); |
|
887 |
||
888 |
acFollow->setVisible(!isSelf); |
|
889 |
||
890 |
// update context menu labels according to possible action |
|
891 |
if(players->isFlagSet(nick, PlayersListModel::Ignore)) |
|
892 |
{ |
|
893 |
acIgnore->setText(QAction::tr("Unignore")); |
|
894 |
acIgnore->setIcon(QIcon(":/res/unignore.png")); |
|
895 |
} |
|
896 |
else |
|
897 |
{ |
|
898 |
acIgnore->setText(QAction::tr("Ignore")); |
|
899 |
acIgnore->setIcon(QIcon(":/res/ignore.png")); |
|
900 |
acIgnore->setVisible(!isSelf); |
|
901 |
} |
|
902 |
||
903 |
if(players->isFlagSet(nick, PlayersListModel::Friend)) |
|
904 |
{ |
|
905 |
acFriend->setText(QAction::tr("Remove friend")); |
|
906 |
acFriend->setIcon(QIcon(":/res/remfriend.png")); |
|
907 |
} |
|
908 |
else |
|
909 |
{ |
|
910 |
acFriend->setText(QAction::tr("Add friend")); |
|
911 |
acFriend->setIcon(QIcon(":/res/addfriend.png")); |
|
912 |
acFriend->setVisible(!isSelf); |
|
913 |
} |
|
914 |
||
915 |
if (m_isAdmin) |
|
916 |
{ |
|
917 |
acKick->setVisible(!isSelf); |
|
918 |
acBan->setVisible(!isSelf); |
|
919 |
} |
|
920 |
||
921 |
m_nicksMenu->clear(); |
|
922 |
||
923 |
foreach(QAction * action, chatNicks->actions()) |
|
924 |
m_nicksMenu->addAction(action); |
|
925 |
||
926 |
m_nicksMenu->popup(chatNicks->mapToGlobal(pos)); |
|
927 |
} |