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