2011-07-02 23:03:18 +00:00
|
|
|
/*****************************************************************************
|
|
|
|
|
* PokerTH - The open source texas holdem engine *
|
|
|
|
|
* Copyright (C) 2006-2011 Felix Hammer, Florian Thauer, Lothar May *
|
|
|
|
|
* *
|
|
|
|
|
* This program is free software: you can redistribute it and/or modify *
|
|
|
|
|
* it under the terms of the GNU Affero General Public License as *
|
|
|
|
|
* published by the Free Software Foundation, either version 3 of the *
|
|
|
|
|
* License, or (at your option) any later version. *
|
|
|
|
|
* *
|
|
|
|
|
* This program is distributed in the hope that it will be useful, *
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
|
|
|
* GNU Affero General Public License for more details. *
|
|
|
|
|
* *
|
|
|
|
|
* You should have received a copy of the GNU Affero General Public License *
|
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
|
2011-07-03 19:45:08 +00:00
|
|
|
*****************************************************************************/
|
|
|
|
|
#ifndef CHATTOOLS_H
|
2007-10-11 21:58:24 +00:00
|
|
|
#define CHATTOOLS_H
|
|
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
#include <QtCore>
|
|
|
|
|
#include <QtGui>
|
2008-10-07 21:16:27 +00:00
|
|
|
#include <boost/shared_ptr.hpp>
|
2007-10-11 21:58:24 +00:00
|
|
|
|
2009-08-17 23:20:58 +00:00
|
|
|
enum ChatType { INET_LOBBY_CHAT, LAN_LOBBY_CHAT, INGAME_CHAT };
|
|
|
|
|
|
2007-10-13 13:06:12 +00:00
|
|
|
class Session;
|
2007-10-14 17:59:40 +00:00
|
|
|
class ConfigFile;
|
2009-04-01 12:27:31 +00:00
|
|
|
class GameTableStyleReader;
|
2009-08-17 23:20:58 +00:00
|
|
|
class gameLobbyDialogImpl;
|
2007-10-13 13:06:12 +00:00
|
|
|
|
2007-10-11 21:58:24 +00:00
|
|
|
class ChatTools : public QObject
|
|
|
|
|
{
|
2011-02-11 20:02:08 +00:00
|
|
|
Q_OBJECT
|
2007-10-11 21:58:24 +00:00
|
|
|
|
|
|
|
|
public:
|
2011-02-11 20:02:08 +00:00
|
|
|
ChatTools(QLineEdit*, ConfigFile*, ChatType, QTextBrowser *b = NULL, QStandardItemModel *m = NULL, gameLobbyDialogImpl *lo = NULL);
|
2007-10-11 21:58:24 +00:00
|
|
|
|
2011-02-11 20:02:08 +00:00
|
|
|
~ChatTools();
|
2007-10-11 21:58:24 +00:00
|
|
|
|
2011-02-11 20:02:08 +00:00
|
|
|
void setSession(boost::shared_ptr<Session> session) {
|
|
|
|
|
mySession = session;
|
|
|
|
|
}
|
2007-10-13 13:06:12 +00:00
|
|
|
|
2007-10-11 21:58:24 +00:00
|
|
|
public slots:
|
|
|
|
|
|
2011-02-11 20:02:08 +00:00
|
|
|
void sendMessage();
|
2011-10-20 14:13:25 +00:00
|
|
|
void receiveMessage(QString playerName, QString message, bool pm=false);
|
2011-02-11 23:02:29 +00:00
|
|
|
void privateMessage(QString playerName, QString message);
|
2011-02-11 20:02:08 +00:00
|
|
|
void clearChat();
|
|
|
|
|
void checkInputLength(QString string);
|
2010-03-30 17:30:33 +00:00
|
|
|
|
2011-02-11 20:02:08 +00:00
|
|
|
void fillChatLinesHistory(QString fillString);
|
|
|
|
|
void showChatHistoryIndex(int index);
|
|
|
|
|
int getChatLinesHistorySize() {
|
|
|
|
|
return chatLinesHistory.size();
|
|
|
|
|
}
|
2010-03-30 17:30:33 +00:00
|
|
|
|
2011-02-11 20:02:08 +00:00
|
|
|
void nickAutoCompletition();
|
|
|
|
|
void setChatTextEdited();
|
2010-03-30 17:30:33 +00:00
|
|
|
|
2011-02-11 20:02:08 +00:00
|
|
|
void setPlayerNicksList(QStringList value) {
|
|
|
|
|
myNickStringList = value;
|
|
|
|
|
}
|
|
|
|
|
void setMyNick ( const QString& theValue ) {
|
|
|
|
|
myNick = theValue;
|
|
|
|
|
}
|
|
|
|
|
QString getMyNick () {
|
|
|
|
|
return myNick;
|
|
|
|
|
}
|
2010-03-30 17:30:33 +00:00
|
|
|
|
2011-02-11 20:02:08 +00:00
|
|
|
void setMyStyle ( GameTableStyleReader* theValue ) {
|
|
|
|
|
myStyle = theValue;
|
|
|
|
|
}
|
|
|
|
|
void refreshIgnoreList();
|
2012-12-21 01:01:01 +01:00
|
|
|
QString checkForEmotes(QString);
|
2009-04-01 12:27:31 +00:00
|
|
|
|
2011-02-11 23:02:29 +00:00
|
|
|
protected:
|
|
|
|
|
|
|
|
|
|
unsigned parsePrivateMessageTarget(QString &chatText);
|
2007-10-12 11:07:42 +00:00
|
|
|
|
2007-10-11 21:58:24 +00:00
|
|
|
private:
|
2007-12-12 22:01:40 +00:00
|
|
|
|
2011-02-11 20:02:08 +00:00
|
|
|
QStringList chatLinesHistory;
|
|
|
|
|
QString lastChatString;
|
|
|
|
|
QStringList lastMatchStringList;
|
|
|
|
|
int nickAutoCompletitionCounter;
|
2007-10-11 21:58:24 +00:00
|
|
|
|
2011-02-11 20:02:08 +00:00
|
|
|
QLineEdit *myLineEdit;
|
|
|
|
|
QStandardItemModel *myNickListModel;
|
|
|
|
|
QStringList myNickStringList;
|
|
|
|
|
QTextBrowser *myTextBrowser;
|
|
|
|
|
boost::shared_ptr<Session> mySession;
|
|
|
|
|
ChatType myChatType;
|
|
|
|
|
ConfigFile *myConfig;
|
2009-04-01 12:27:31 +00:00
|
|
|
|
2011-02-11 20:02:08 +00:00
|
|
|
QString myNick;
|
2010-03-30 17:30:33 +00:00
|
|
|
|
2011-02-11 20:02:08 +00:00
|
|
|
GameTableStyleReader *myStyle;
|
|
|
|
|
gameLobbyDialogImpl *myLobby;
|
2010-03-31 12:33:00 +00:00
|
|
|
|
2011-02-11 20:02:08 +00:00
|
|
|
std::list<std::string> ignoreList;
|
2007-10-11 21:58:24 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif
|