2017-06-07 10:09:24 +02:00
|
|
|
#pragma once
|
2017-01-01 02:30:42 +01:00
|
|
|
|
2017-06-11 09:31:45 +02:00
|
|
|
#include "resizingtextedit.hpp"
|
2017-06-26 16:41:20 +02:00
|
|
|
#include "widgets/basewidget.hpp"
|
2017-06-11 09:31:45 +02:00
|
|
|
#include "widgets/chatwidgetheaderbutton.hpp"
|
2017-01-21 05:14:27 +01:00
|
|
|
|
|
|
|
#include <QHBoxLayout>
|
2017-01-22 05:58:23 +01:00
|
|
|
#include <QLabel>
|
2017-01-21 05:14:27 +01:00
|
|
|
#include <QLineEdit>
|
2017-01-18 04:52:47 +01:00
|
|
|
#include <QPaintEvent>
|
2017-01-20 06:10:28 +01:00
|
|
|
#include <QTextEdit>
|
2017-01-21 05:14:27 +01:00
|
|
|
#include <QVBoxLayout>
|
2017-01-18 04:52:47 +01:00
|
|
|
#include <QWidget>
|
2017-01-01 02:30:42 +01:00
|
|
|
|
2017-01-18 21:30:23 +01:00
|
|
|
namespace chatterino {
|
|
|
|
namespace widgets {
|
|
|
|
|
2017-01-29 13:23:22 +01:00
|
|
|
class ChatWidget;
|
|
|
|
|
2017-06-26 16:41:20 +02:00
|
|
|
class ChatWidgetInput : public BaseWidget
|
2017-01-01 02:30:42 +01:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2017-06-11 11:36:42 +02:00
|
|
|
ChatWidgetInput(ChatWidget *_chatWidget);
|
2017-01-22 12:46:35 +01:00
|
|
|
~ChatWidgetInput();
|
2017-01-01 02:30:42 +01:00
|
|
|
|
|
|
|
protected:
|
2017-06-11 11:36:42 +02:00
|
|
|
virtual void paintEvent(QPaintEvent *) override;
|
|
|
|
virtual void resizeEvent(QResizeEvent *) override;
|
2017-01-22 05:58:23 +01:00
|
|
|
|
2017-01-20 06:10:28 +01:00
|
|
|
private:
|
2017-06-11 20:53:43 +02:00
|
|
|
ChatWidget *const chatWidget;
|
2017-01-29 13:23:22 +01:00
|
|
|
|
2017-06-11 11:36:42 +02:00
|
|
|
QHBoxLayout hbox;
|
|
|
|
QVBoxLayout vbox;
|
|
|
|
QHBoxLayout editContainer;
|
|
|
|
ResizingTextEdit textInput;
|
|
|
|
QLabel textLengthLabel;
|
|
|
|
ChatWidgetHeaderButton emotesLabel;
|
2017-01-22 05:58:23 +01:00
|
|
|
|
|
|
|
private slots:
|
|
|
|
void refreshTheme();
|
2017-04-12 17:46:44 +02:00
|
|
|
void setMessageLengthVisisble(bool value)
|
2017-01-22 12:46:35 +01:00
|
|
|
{
|
2017-06-11 11:36:42 +02:00
|
|
|
textLengthLabel.setHidden(!value);
|
2017-01-22 12:46:35 +01:00
|
|
|
}
|
2017-01-29 13:23:22 +01:00
|
|
|
void editTextChanged();
|
|
|
|
// void editKeyPressed(QKeyEvent *event);
|
2017-06-11 20:53:43 +02:00
|
|
|
|
|
|
|
friend class ChatWidget;
|
2017-01-01 02:30:42 +01:00
|
|
|
};
|
2017-06-07 10:09:24 +02:00
|
|
|
|
2017-04-14 17:52:22 +02:00
|
|
|
} // namespace widgets
|
|
|
|
} // namespace chatterino
|