added auto resizing input & settings

This commit is contained in:
fourtf
2017-01-21 05:14:27 +01:00
parent d215bd58b0
commit a114bd1204
12 changed files with 108 additions and 9 deletions
+7 -1
View File
@@ -1,8 +1,13 @@
#ifndef CHATWIDGETINPUT_H
#define CHATWIDGETINPUT_H
#include "resizingtextedit.h"
#include <QHBoxLayout>
#include <QLineEdit>
#include <QPaintEvent>
#include <QTextEdit>
#include <QVBoxLayout>
#include <QWidget>
namespace chatterino {
@@ -19,7 +24,8 @@ protected:
void paintEvent(QPaintEvent *);
private:
QTextEdit edit;
QHBoxLayout hbox;
ResizingTextEdit edit;
};
}
}