2017-04-06 02:06:42 +03: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/>.
|
|
|
|
*/
|
|
|
|
|
2017-05-16 21:46:45 +03:00
|
|
|
#pragma once
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2017-11-06 00:01:21 +03:00
|
|
|
#include <deque>
|
|
|
|
|
2017-04-06 02:06:42 +03:00
|
|
|
#include <QHBoxLayout>
|
|
|
|
#include <QPaintEvent>
|
2017-04-23 21:31:08 +03:00
|
|
|
#include <QTextEdit>
|
2017-04-06 02:06:42 +03:00
|
|
|
#include <QWidget>
|
|
|
|
|
2017-04-23 21:31:08 +03:00
|
|
|
#include "EmojiPickButton.h"
|
2017-04-06 02:06:42 +03:00
|
|
|
#include "FlatButton.h"
|
2017-09-10 12:58:00 +03:00
|
|
|
#include "Image.h"
|
|
|
|
#include "LoadingIndicator.h"
|
|
|
|
|
|
|
|
namespace msgs = matrix::events::messages;
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2017-04-23 21:31:08 +03:00
|
|
|
class FilteredTextEdit : public QTextEdit
|
|
|
|
{
|
2017-09-03 11:43:45 +03:00
|
|
|
Q_OBJECT
|
2017-10-31 21:11:49 +03:00
|
|
|
|
2017-04-23 21:31:08 +03:00
|
|
|
public:
|
2017-09-03 11:43:45 +03:00
|
|
|
explicit FilteredTextEdit(QWidget *parent = nullptr);
|
2017-04-23 21:31:08 +03:00
|
|
|
|
2017-10-31 21:11:49 +03:00
|
|
|
void stopTyping();
|
|
|
|
|
2017-11-06 00:01:21 +03:00
|
|
|
QSize sizeHint() const override;
|
|
|
|
QSize minimumSizeHint() const override;
|
|
|
|
|
|
|
|
void submit();
|
|
|
|
|
2017-04-23 21:31:08 +03:00
|
|
|
signals:
|
2017-10-31 21:11:49 +03:00
|
|
|
void startedTyping();
|
|
|
|
void stoppedTyping();
|
2017-11-06 00:01:21 +03:00
|
|
|
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 21:31:08 +03:00
|
|
|
};
|
|
|
|
|
2017-09-03 11:43:45 +03:00
|
|
|
class TextInputWidget : public QFrame
|
2017-04-06 02:06:42 +03:00
|
|
|
{
|
2017-09-03 11:43:45 +03:00
|
|
|
Q_OBJECT
|
2017-04-06 02:06:42 +03:00
|
|
|
|
|
|
|
public:
|
2017-09-03 11:43:45 +03:00
|
|
|
TextInputWidget(QWidget *parent = 0);
|
|
|
|
~TextInputWidget();
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2017-10-31 21:11:49 +03:00
|
|
|
void stopTyping();
|
|
|
|
|
2017-04-06 02:06:42 +03:00
|
|
|
public slots:
|
2017-09-10 12:58:00 +03:00
|
|
|
void openFileSelection();
|
|
|
|
void hideUploadSpinner();
|
2017-10-22 19:03:55 +03:00
|
|
|
void focusLineEdit() { input_->setFocus(); };
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2017-04-23 21:31:08 +03:00
|
|
|
private slots:
|
2017-09-03 11:43:45 +03:00
|
|
|
void addSelectedEmoji(const QString &emoji);
|
2017-04-23 21:31:08 +03:00
|
|
|
|
2017-04-06 02:06:42 +03:00
|
|
|
signals:
|
2017-09-03 11:43:45 +03:00
|
|
|
void sendTextMessage(QString msg);
|
|
|
|
void sendEmoteMessage(QString msg);
|
2017-09-10 12:58:00 +03:00
|
|
|
void uploadImage(QString filename);
|
2017-10-08 22:38:38 +03:00
|
|
|
void sendJoinRoomRequest(const QString &room);
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2017-10-31 21:11:49 +03:00
|
|
|
void startedTyping();
|
|
|
|
void stoppedTyping();
|
|
|
|
|
2017-11-03 09:54:17 +03:00
|
|
|
protected:
|
|
|
|
void focusInEvent(QFocusEvent *event);
|
|
|
|
|
2017-04-06 02:06:42 +03:00
|
|
|
private:
|
2017-09-10 12:58:00 +03:00
|
|
|
void showUploadSpinner();
|
2017-11-06 00:01:21 +03:00
|
|
|
void command(QString name, QString args);
|
2017-09-03 11:43:45 +03:00
|
|
|
|
2017-09-10 12:58:00 +03:00
|
|
|
QHBoxLayout *topLayout_;
|
2017-09-03 11:43:45 +03:00
|
|
|
FilteredTextEdit *input_;
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2017-09-10 12:58:00 +03:00
|
|
|
LoadingIndicator *spinner_;
|
|
|
|
|
|
|
|
FlatButton *sendFileBtn_;
|
|
|
|
FlatButton *sendMessageBtn_;
|
|
|
|
EmojiPickButton *emojiBtn_;
|
2017-04-06 02:06:42 +03:00
|
|
|
};
|