added stuff

This commit is contained in:
fourtf
2017-01-29 13:23:22 +01:00
parent 1c076b803e
commit ceded7ff96
10 changed files with 99 additions and 8 deletions
+7 -1
View File
@@ -15,12 +15,14 @@
namespace chatterino {
namespace widgets {
class ChatWidget;
class ChatWidgetInput : public QWidget
{
Q_OBJECT
public:
ChatWidgetInput();
ChatWidgetInput(ChatWidget *parent);
~ChatWidgetInput();
protected:
@@ -29,6 +31,8 @@ protected:
void resizeEvent(QResizeEvent *);
private:
ChatWidget *chatWidget;
QHBoxLayout hbox;
QVBoxLayout vbox;
QHBoxLayout editContainer;
@@ -43,6 +47,8 @@ private slots:
{
this->textLengthLabel.setHidden(!value);
}
void editTextChanged();
// void editKeyPressed(QKeyEvent *event);
};
}
}