Blame view

QChatClient/chatwidget.h 346 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef CHATWIDGET_H
#define CHATWIDGET_H

#include <QTextEdit>

class ChatWidget : public QTextEdit
{
    Q_OBJECT
public:
    explicit ChatWidget(QWidget *parent = 0);
    void printServerMsg(QString &str);
    void printMsg(QString& str);
    void printStatusMsg(QString& str);

signals:

public slots:

};

#endif // CHATWIDGET_H