mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
19 lines
262 B
C
19 lines
262 B
C
|
#ifndef CHATWIDGETINPUT_H
|
||
|
#define CHATWIDGETINPUT_H
|
||
|
|
||
|
#include "QWidget"
|
||
|
#include "QPaintEvent"
|
||
|
|
||
|
class ChatWidgetInput : public QWidget
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
ChatWidgetInput();
|
||
|
|
||
|
protected:
|
||
|
void paintEvent(QPaintEvent *);
|
||
|
};
|
||
|
|
||
|
#endif // CHATWIDGETINPUT_H
|