mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
34 lines
489 B
C++
34 lines
489 B
C++
#ifndef CHATWIDGETINPUT_H
|
|
#define CHATWIDGETINPUT_H
|
|
|
|
#include "resizingtextedit.h"
|
|
|
|
#include <QHBoxLayout>
|
|
#include <QLineEdit>
|
|
#include <QPaintEvent>
|
|
#include <QTextEdit>
|
|
#include <QVBoxLayout>
|
|
#include <QWidget>
|
|
|
|
namespace chatterino {
|
|
namespace widgets {
|
|
|
|
class ChatWidgetInput : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
ChatWidgetInput();
|
|
|
|
protected:
|
|
void paintEvent(QPaintEvent *);
|
|
|
|
private:
|
|
QHBoxLayout hbox;
|
|
ResizingTextEdit edit;
|
|
};
|
|
}
|
|
}
|
|
|
|
#endif // CHATWIDGETINPUT_H
|