mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
65 lines
1.4 KiB
C++
65 lines
1.4 KiB
C++
#pragma once
|
|
|
|
#include "emotemanager.hpp"
|
|
#include "resizingtextedit.hpp"
|
|
#include "widgets/basewidget.hpp"
|
|
#include "widgets/emotepopup.hpp"
|
|
#include "widgets/helper/rippleeffectlabel.hpp"
|
|
|
|
#include <QHBoxLayout>
|
|
#include <QLabel>
|
|
#include <QLineEdit>
|
|
#include <QPaintEvent>
|
|
#include <QTextEdit>
|
|
#include <QVBoxLayout>
|
|
#include <QWidget>
|
|
|
|
#include <boost/signals2.hpp>
|
|
|
|
namespace chatterino {
|
|
namespace widgets {
|
|
|
|
class Split;
|
|
|
|
class SplitInput : public BaseWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
SplitInput(Split *_chatWidget, EmoteManager &, WindowManager &);
|
|
~SplitInput();
|
|
|
|
void clearSelection();
|
|
|
|
protected:
|
|
virtual void paintEvent(QPaintEvent *) override;
|
|
virtual void resizeEvent(QResizeEvent *) override;
|
|
|
|
virtual void mousePressEvent(QMouseEvent *event) override;
|
|
|
|
private:
|
|
Split *const chatWidget;
|
|
EmotePopup *emotePopup = nullptr;
|
|
EmoteManager &emoteManager;
|
|
WindowManager &windowManager;
|
|
|
|
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:
|
|
void editTextChanged();
|
|
|
|
friend class Split;
|
|
};
|
|
|
|
} // namespace widgets
|
|
} // namespace chatterino
|