Files
pokerth/src/gui/qt/chattools/chattools.h
T

89 lines
2.9 KiB
C++
Raw Normal View History

/***************************************************************************
* Copyright (C) 2006 by FThauer FHammer *
* f.thauer@web.de *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 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 General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the *
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#ifndef CHATTOOLS_H
#define CHATTOOLS_H
#include <string>
#include <QtCore>
#include <QtGui>
2008-10-07 21:16:27 +00:00
#include <boost/shared_ptr.hpp>
2009-08-17 23:20:58 +00:00
enum ChatType { INET_LOBBY_CHAT, LAN_LOBBY_CHAT, INGAME_CHAT };
class Session;
2007-10-14 17:59:40 +00:00
class ConfigFile;
class GameTableStyleReader;
2009-08-17 23:20:58 +00:00
class gameLobbyDialogImpl;
class ChatTools : public QObject
{
Q_OBJECT
public:
2009-08-17 23:20:58 +00:00
ChatTools(QLineEdit*, ConfigFile*, ChatType, QTextBrowser *b = NULL, QTreeWidget *t = NULL, gameLobbyDialogImpl *lo = NULL);
~ChatTools();
2009-08-17 23:20:58 +00:00
void setSession(boost::shared_ptr<Session> session) { mySession = session; }
public slots:
void sendMessage();
void receiveMessage(QString playerName, QString message);
void clearChat();
void checkInputLength(QString string);
void fillChatLinesHistory(QString fillString);
void showChatHistoryIndex(int index);
int getChatLinesHistorySize() { return chatLinesHistory.size(); }
void nickAutoCompletition();
void setChatTextEdited();
void setPlayerNicksList(QStringList value) { myNickStringList = value; }
void setMyNick ( const QString& theValue ) { myNick = theValue; }
2009-08-17 23:20:58 +00:00
QString getMyNick () { return myNick; }
void setMyStyle ( GameTableStyleReader* theValue ) { myStyle = theValue; }
private:
QStringList chatLinesHistory;
QString lastChatString;
QStringList lastMatchStringList;
int nickAutoCompletitionCounter;
QLineEdit *myLineEdit;
QTreeWidget *myNickTreeWidget;
QStringList myNickStringList;
QTextBrowser *myTextBrowser;
2008-10-07 21:16:27 +00:00
boost::shared_ptr<Session> mySession;
2009-08-17 23:20:58 +00:00
ChatType myChatType;
2007-10-14 17:59:40 +00:00
ConfigFile *myConfig;
2007-12-09 14:00:11 +00:00
QString myNick;
GameTableStyleReader *myStyle;
2009-08-17 23:20:58 +00:00
gameLobbyDialogImpl *myLobby;
};
#endif