mirror-chatterino2/src/widgets/helper/splitinput.hpp

63 lines
1.3 KiB
C++
Raw Normal View History

#pragma once
2017-01-01 02:30:42 +01:00
2017-06-11 09:31:45 +02:00
#include "resizingtextedit.hpp"
#include "widgets/basewidget.hpp"
#include "widgets/emotepopup.hpp"
2017-11-12 17:21:50 +01:00
#include "widgets/helper/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-01-18 21:30:23 +01:00
namespace chatterino {
namespace widgets {
2017-11-12 17:21:50 +01:00
class Split;
2017-01-29 13:23:22 +01:00
2017-11-12 17:21:50 +01:00
class SplitInput : public BaseWidget
2017-01-01 02:30:42 +01:00
{
Q_OBJECT
public:
2017-12-17 02:18:13 +01:00
SplitInput(Split *_chatWidget);
2017-01-01 02:30:42 +01:00
2017-09-21 02:20:02 +02:00
void clearSelection();
QString getInputText() const;
2018-01-24 20:58:53 +01:00
void insertText(const QString &text);
pajlada::Signals::Signal<const QString &> textChanged;
2017-09-21 02:20:02 +02:00
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:
2017-11-12 17:21:50 +01:00
Split *const chatWidget;
2018-01-24 20:58:53 +01:00
std::unique_ptr<EmotePopup> emotePopup;
2017-01-29 13:23:22 +01:00
std::vector<pajlada::Signals::ScopedConnection> managedConnections;
QHBoxLayout hbox;
QVBoxLayout vbox;
QHBoxLayout editContainer;
ResizingTextEdit textInput;
QLabel textLengthLabel;
RippleEffectLabel emotesLabel;
QStringList prevMsg;
int prevIndex = 0;
virtual void refreshTheme() override;
private slots:
2017-01-29 13:23:22 +01:00
void editTextChanged();
2017-11-12 17:21:50 +01:00
friend class Split;
2017-01-01 02:30:42 +01:00
};
2017-04-14 17:52:22 +02:00
} // namespace widgets
} // namespace chatterino