mirror-chatterino2/widgets/chatwidgetinput.h

24 lines
311 B
C
Raw Normal View History

2017-01-01 02:30:42 +01:00
#ifndef CHATWIDGETINPUT_H
#define CHATWIDGETINPUT_H
2017-01-18 04:52:47 +01:00
#include <QPaintEvent>
#include <QWidget>
2017-01-01 02:30:42 +01:00
2017-01-18 21:30:23 +01:00
namespace chatterino {
namespace widgets {
2017-01-01 02:30:42 +01:00
class ChatWidgetInput : public QWidget
{
Q_OBJECT
public:
ChatWidgetInput();
protected:
void paintEvent(QPaintEvent *);
};
2017-01-18 21:30:23 +01:00
}
}
2017-01-01 02:30:42 +01:00
2017-01-11 18:52:09 +01:00
#endif // CHATWIDGETINPUT_H