nheko/include/TextInputWidget.h

112 lines
2.7 KiB
C
Raw Normal View History

2017-04-06 01:06:42 +02:00
/*
* nheko Copyright (C) 2017 Konstantinos Sideris <siderisk@auth.gr>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#pragma once
2017-04-06 01:06:42 +02:00
#include <deque>
2017-04-06 01:06:42 +02:00
#include <QHBoxLayout>
#include <QPaintEvent>
2017-04-23 20:31:08 +02:00
#include <QTextEdit>
2017-04-06 01:06:42 +02:00
#include <QWidget>
#include "FlatButton.h"
2017-09-10 11:58:00 +02:00
#include "LoadingIndicator.h"
#include "emoji/PickButton.h"
2017-11-30 12:53:28 +01:00
2017-04-23 20:31:08 +02:00
class FilteredTextEdit : public QTextEdit
{
Q_OBJECT
2017-04-23 20:31:08 +02:00
public:
explicit FilteredTextEdit(QWidget *parent = nullptr);
2017-04-23 20:31:08 +02:00
void stopTyping();
QSize sizeHint() const override;
QSize minimumSizeHint() const override;
void submit();
2017-04-23 20:31:08 +02:00
signals:
void startedTyping();
void stoppedTyping();
void message(QString);
void command(QString name, QString args);
protected:
void keyPressEvent(QKeyEvent *event) override;
private:
std::deque<QString> true_history_, working_history_;
size_t history_index_;
QTimer *typingTimer_;
void textChanged();
void afterCompletion(int);
2017-04-23 20:31:08 +02:00
};
class TextInputWidget : public QFrame
2017-04-06 01:06:42 +02:00
{
Q_OBJECT
2017-04-06 01:06:42 +02:00
public:
TextInputWidget(QWidget *parent = 0);
~TextInputWidget();
2017-04-06 01:06:42 +02:00
void stopTyping();
2017-04-06 01:06:42 +02:00
public slots:
2017-09-10 11:58:00 +02:00
void openFileSelection();
void hideUploadSpinner();
void focusLineEdit() { input_->setFocus(); }
2017-04-06 01:06:42 +02:00
2017-04-23 20:31:08 +02:00
private slots:
void addSelectedEmoji(const QString &emoji);
2017-04-23 20:31:08 +02:00
2017-04-06 01:06:42 +02:00
signals:
void sendTextMessage(QString msg);
void sendEmoteMessage(QString msg);
2017-12-01 16:33:49 +01:00
2017-09-10 11:58:00 +02:00
void uploadImage(QString filename);
2017-11-29 22:39:35 +01:00
void uploadFile(QString filename);
2017-12-01 16:33:49 +01:00
void uploadAudio(QString filename);
2017-10-08 21:38:38 +02:00
void sendJoinRoomRequest(const QString &room);
2017-04-06 01:06:42 +02:00
void startedTyping();
void stoppedTyping();
protected:
void focusInEvent(QFocusEvent *event) override;
void paintEvent(QPaintEvent *) override;
2017-04-06 01:06:42 +02:00
private:
2017-09-10 11:58:00 +02:00
void showUploadSpinner();
void command(QString name, QString args);
2017-09-10 11:58:00 +02:00
QHBoxLayout *topLayout_;
FilteredTextEdit *input_;
2017-04-06 01:06:42 +02:00
2017-09-10 11:58:00 +02:00
LoadingIndicator *spinner_;
FlatButton *sendFileBtn_;
FlatButton *sendMessageBtn_;
emoji::PickButton *emojiBtn_;
2017-04-06 01:06:42 +02:00
};