mirror-chatterino2/src/widgets/chatwidgetinput.hpp

63 lines
1.4 KiB
C++
Raw Normal View History

#pragma once
2017-01-01 02:30:42 +01:00
#include "emotemanager.hpp"
2017-06-11 09:31:45 +02:00
#include "resizingtextedit.hpp"
#include "widgets/basewidget.hpp"
#include "widgets/emotepopup.hpp"
2017-09-16 16:49:52 +02:00
#include "widgets/rippleeffectlabel.hpp"
2017-01-21 05:14:27 +01:00
#include <QHBoxLayout>
#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-09-15 17:23:49 +02:00
#include <boost/signals2.hpp>
2017-01-18 21:30:23 +01:00
namespace chatterino {
namespace widgets {
2017-01-29 13:23:22 +01:00
class ChatWidget;
class ChatWidgetInput : public BaseWidget
2017-01-01 02:30:42 +01:00
{
Q_OBJECT
public:
2017-09-17 02:13:57 +02:00
ChatWidgetInput(ChatWidget *_chatWidget, EmoteManager &, WindowManager &);
2017-01-22 12:46:35 +01:00
~ChatWidgetInput();
2017-01-01 02:30:42 +01:00
protected:
virtual void paintEvent(QPaintEvent *) override;
virtual void resizeEvent(QResizeEvent *) override;
2017-07-31 01:26:20 +02:00
virtual void mousePressEvent(QMouseEvent *event) override;
2017-01-20 06:10:28 +01:00
private:
ChatWidget *const chatWidget;
2017-09-15 17:23:49 +02:00
EmotePopup *emotePopup = nullptr;
EmoteManager &emoteManager;
2017-09-17 02:13:57 +02:00
WindowManager &windowManager;
2017-01-29 13:23:22 +01:00
2017-09-15 17:23:49 +02:00
boost::signals2::connection textLengthVisibleChangedConnection;
QHBoxLayout hbox;
QVBoxLayout vbox;
QHBoxLayout editContainer;
ResizingTextEdit textInput;
QLabel textLengthLabel;
RippleEffectLabel emotesLabel;
QStringList prevMsg;
unsigned int prevIndex = 0;
virtual void refreshTheme() override;
private slots:
2017-01-29 13:23:22 +01:00
void editTextChanged();
friend class ChatWidget;
2017-01-01 02:30:42 +01:00
};
2017-04-14 17:52:22 +02:00
} // namespace widgets
} // namespace chatterino