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