fixed direct chat, fixed in-game attachment bugs

This commit is contained in:
Max-Wilhelm Bruker 2011-01-25 00:12:35 +01:00
parent c39539b73a
commit 92e842bb74
18 changed files with 127 additions and 96 deletions

18
cockatrice/src/chatview.h Normal file
View file

@ -0,0 +1,18 @@
#ifndef CHATVIEW_H
#define CHATVIEW_H
#include <QTextEdit>
class QTextTable;
class ChatView : public QTextEdit {
Q_OBJECT;
private:
QTextTable *table;
QString ownName;
public:
ChatView(const QString &_ownName, QWidget *parent = 0);
void appendMessage(const QString &sender, const QString &message);
};
#endif