mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-04-27 07:48:01 -07:00
18 lines
No EOL
317 B
C++
18 lines
No EOL
317 B
C++
#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 |