author | sheepluva |
Tue, 25 Oct 2011 19:46:59 +0200 | |
changeset 6205 | 7764cbe4ddd7 |
parent 6201 | d88e7f6cf499 |
child 6214 | c06b7e2eb7a4 |
permissions | -rw-r--r-- |
480 | 1 |
/* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
486 | 3 |
* Copyright (c) 2007 Igor Ulyanov <iulyanov@gmail.com> |
4976 | 4 |
* Copyright (c) 2007-2011 Andrey Korotaev <unC0Rr@gmail.com> |
480 | 5 |
* |
6 |
* This program is free software; you can redistribute it and/or modify |
|
7 |
* it under the terms of the GNU General Public License as published by |
|
8 |
* the Free Software Foundation; version 2 of the License |
|
9 |
* |
|
10 |
* This program is distributed in the hope that it will be useful, |
|
11 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
12 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
13 |
* GNU General Public License for more details. |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License |
|
16 |
* along with this program; if not, write to the Free Software |
|
17 |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA |
|
18 |
*/ |
|
19 |
||
461 | 20 |
#ifndef _CHAT_WIDGET_INCLUDED |
21 |
#define _CHAT_WIDGET_INCLUDED |
|
22 |
||
23 |
#include <QWidget> |
|
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:
1860
diff
changeset
|
24 |
#include <QListWidget> |
461 | 25 |
#include <QString> |
26 |
#include <QGridLayout> |
|
4899
8163c9aaad0c
automatically convert hedgewars.org urls to actual links (in order to make support in the lobby/rooms easier
sheepluva
parents:
4897
diff
changeset
|
27 |
#include <QRegExp> |
461 | 28 |
|
6165
6fe3e922246e
moving and renaming SDLs.*, making it a singleton; cleaning up class responsibilties wrt SDLInteraction; some comments
sheepluva
parents:
6147
diff
changeset
|
29 |
#include "SDLInteraction.h" |
2775 | 30 |
|
6147
b4d7d8d62feb
feature-pimpin'-up the chat input line in frontend:
sheepluva
parents:
6060
diff
changeset
|
31 |
#include "SmartLineEdit.h" |
b4d7d8d62feb
feature-pimpin'-up the chat input line in frontend:
sheepluva
parents:
6060
diff
changeset
|
32 |
|
4876 | 33 |
class ListWidgetNickItem; |
1520
f72f538eba05
Refactor chat widget to use QTextBrower instead of QListWidget:
unc0rr
parents:
1405
diff
changeset
|
34 |
class QTextBrowser; |
f72f538eba05
Refactor chat widget to use QTextBrower instead of QListWidget:
unc0rr
parents:
1405
diff
changeset
|
35 |
class QLineEdit; |
461 | 36 |
class QListWidget; |
2773
e94f240a8a41
Have game beep when someone joins lobby/room. Controlled by Sound option
nemo
parents:
2706
diff
changeset
|
37 |
class QSettings; |
461 | 38 |
|
6200 | 39 |
/// Class for custom nickname sorting |
4876 | 40 |
class ListWidgetNickItem : public QListWidgetItem |
41 |
{ |
|
42 |
public: |
|
4884 | 43 |
ListWidgetNickItem(const QString& nick, bool isFriend, bool isIgnored); |
4876 | 44 |
bool operator<(const QListWidgetItem & other) const; |
4884 | 45 |
void setFriend(bool isFriend); |
46 |
void setIgnored(bool isIgnored); |
|
47 |
bool isFriend(); |
|
48 |
bool ignored(); |
|
49 |
||
50 |
private: |
|
51 |
bool aFriend; |
|
52 |
bool isIgnored; |
|
4876 | 53 |
}; |
54 |
||
6185 | 55 |
|
56 |
/** |
|
6200 | 57 |
* @brief Chat widget. |
6185 | 58 |
* |
59 |
* By default uses :res/css/chat.css as style sheet for chat. |
|
60 |
* See \repo{res/css/chat.css} for a more detailed description. |
|
61 |
* |
|
62 |
* @see http://doc.qt.nokia.com/4.5/richtext-html-subset.html#css-properties |
|
63 |
*/ |
|
64 |
||
461 | 65 |
class HWChatWidget : public QWidget |
66 |
{ |
|
67 |
Q_OBJECT |
|
68 |
||
69 |
public: |
|
6165
6fe3e922246e
moving and renaming SDLs.*, making it a singleton; cleaning up class responsibilties wrt SDLInteraction; some comments
sheepluva
parents:
6147
diff
changeset
|
70 |
HWChatWidget(QWidget* parent, QSettings * gameSettings, bool notify); |
2845 | 71 |
void loadLists(const QString & nick); |
72 |
void saveLists(const QString & nick); |
|
73 |
void setShowReady(bool s); |
|
4892 | 74 |
void setShowFollow(bool enabled); |
4958
84afe376a3b3
Autokick ignored players from game room on join. Needs testing.
nemo
parents:
4899
diff
changeset
|
75 |
QStringList ignoreList, friendsList; |
6201
d88e7f6cf499
fix of /saveStyleSheet command, error message on stylesheet import fail
sheepluva
parents:
6200
diff
changeset
|
76 |
static const QString & 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:
6165
diff
changeset
|
77 |
void 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:
6165
diff
changeset
|
78 |
void 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:
6165
diff
changeset
|
79 |
void displayWarning(const QString & message); |
2845 | 80 |
|
6197 | 81 |
protected: |
82 |
virtual void dragEnterEvent(QDragEnterEvent * event); |
|
83 |
virtual void dropEvent(QDropEvent * event); |
|
84 |
||
2845 | 85 |
private: |
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:
6165
diff
changeset
|
86 |
static QString * s_styleSheet; |
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:
6165
diff
changeset
|
87 |
static QStringList * s_displayNone; |
6197 | 88 |
static bool s_isTimeStamped; |
89 |
static const QRegExp URLREGEXP; |
|
90 |
||
91 |
static void setStyleSheet(const QString & 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:
6165
diff
changeset
|
92 |
|
2845 | 93 |
void loadList(QStringList & list, const QString & file); |
94 |
void saveList(QStringList & list, const QString & file); |
|
4884 | 95 |
void updateNickItem(QListWidgetItem *item); |
96 |
void updateNickItems(); |
|
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:
6180
diff
changeset
|
97 |
void addLine(const QString & cssClass, QString line, bool isHighlight = false); |
6197 | 98 |
bool parseCommand(const QString & line); |
99 |
void discardStyleSheet(); |
|
100 |
void saveStyleSheet(); |
|
461 | 101 |
|
102 |
public slots: |
|
1360 | 103 |
void onChatString(const QString& str); |
4897
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
104 |
void onChatString(const QString& nick, const QString& str); |
1587 | 105 |
void onServerMessage(const QString& str); |
2777 | 106 |
void nickAdded(const QString& nick, bool notifyNick); |
465 | 107 |
void nickRemoved(const QString& nick); |
108 |
void clear(); |
|
1405 | 109 |
void setReadyStatus(const QString & nick, bool isReady); |
1860 | 110 |
void adminAccess(bool); |
461 | 111 |
|
112 |
signals: |
|
113 |
void chatLine(const QString& str); |
|
1391 | 114 |
void kick(const QString & str); |
1860 | 115 |
void ban(const QString & str); |
1577 | 116 |
void info(const QString & str); |
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:
1860
diff
changeset
|
117 |
void follow(const QString &); |
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:
5094
diff
changeset
|
118 |
void nickCountUpdate(int cnt); |
461 | 119 |
|
120 |
private: |
|
121 |
QGridLayout mainLayout; |
|
1520
f72f538eba05
Refactor chat widget to use QTextBrower instead of QListWidget:
unc0rr
parents:
1405
diff
changeset
|
122 |
QTextBrowser* chatText; |
f72f538eba05
Refactor chat widget to use QTextBrower instead of QListWidget:
unc0rr
parents:
1405
diff
changeset
|
123 |
QStringList chatStrings; |
462 | 124 |
QListWidget* chatNicks; |
6147
b4d7d8d62feb
feature-pimpin'-up the chat input line in frontend:
sheepluva
parents:
6060
diff
changeset
|
125 |
SmartLineEdit* chatEditLine; |
1860 | 126 |
QAction * acInfo; |
127 |
QAction * acKick; |
|
128 |
QAction * acBan; |
|
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:
1860
diff
changeset
|
129 |
QAction * acFollow; |
2845 | 130 |
QAction * acIgnore; |
131 |
QAction * acFriend; |
|
2773
e94f240a8a41
Have game beep when someone joins lobby/room. Controlled by Sound option
nemo
parents:
2706
diff
changeset
|
132 |
QSettings * gameSettings; |
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:
6180
diff
changeset
|
133 |
QString m_helloSound; |
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:
6180
diff
changeset
|
134 |
QString 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:
6180
diff
changeset
|
135 |
QString m_userNick; |
6194 | 136 |
QRegExp m_hlRegExp; ///< regular expression used for highlighting messages |
2775 | 137 |
bool notify; |
2845 | 138 |
bool showReady; |
461 | 139 |
|
140 |
private slots: |
|
141 |
void returnPressed(); |
|
1860 | 142 |
void onBan(); |
1391 | 143 |
void onKick(); |
1577 | 144 |
void onInfo(); |
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:
1860
diff
changeset
|
145 |
void onFollow(); |
2845 | 146 |
void onIgnore(); |
147 |
void onFriend(); |
|
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:
1860
diff
changeset
|
148 |
void chatNickDoubleClicked(QListWidgetItem * item); |
2847 | 149 |
void chatNickSelected(int index); |
4897
11598e7aa7e6
make names in chats clickable. still color adjustments needed; and testing
sheepluva
parents:
4892
diff
changeset
|
150 |
void linkClicked(const QUrl & link); |
461 | 151 |
}; |
152 |
||
153 |
#endif // _CHAT_WIDGET_INCLUDED |