mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
22 lines
292 B
C
22 lines
292 B
C
|
#ifndef CHATWIDGET_H
|
||
|
#define CHATWIDGET_H
|
||
|
|
||
|
#include <QWidget>
|
||
|
|
||
|
#include "QFont"
|
||
|
class ChatWidget : public QWidget
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
ChatWidget(QWidget *parent = 0);
|
||
|
|
||
|
protected:
|
||
|
void paintEvent(QPaintEvent *) Q_DECL_OVERRIDE;
|
||
|
|
||
|
private:
|
||
|
QFont font;
|
||
|
};
|
||
|
|
||
|
#endif // CHATWIDGET_H
|