55 lines
1.3 KiB
C++
55 lines
1.3 KiB
C++
// SPDX-FileCopyrightText: 2020 Carl Schwan <carlschwan@kde.org>
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include <QObject>
|
|
|
|
#include <events/roommessageevent.h>
|
|
|
|
#include "neochatroom.h"
|
|
|
|
class CustomEmojiModel;
|
|
class NeoChatRoom;
|
|
|
|
/// \brief Handles user interactions with NeoChat (joining room, creating room,
|
|
/// sending message). Account management is handled by Controller.
|
|
class ActionsHandler : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
/// \brief The room that messages will be sent to.
|
|
Q_PROPERTY(NeoChatRoom *room READ room WRITE setRoom NOTIFY roomChanged)
|
|
|
|
public:
|
|
explicit ActionsHandler(QObject *parent = nullptr);
|
|
|
|
[[nodiscard]] NeoChatRoom *room() const;
|
|
void setRoom(NeoChatRoom *room);
|
|
|
|
Q_SIGNALS:
|
|
void roomChanged();
|
|
void showEffect(QString effect);
|
|
|
|
public Q_SLOTS:
|
|
|
|
/**
|
|
* @brief Pre-process text and send message.
|
|
*/
|
|
void handleNewMessage();
|
|
|
|
/**
|
|
* @brief Pre-process text and send edit.
|
|
*/
|
|
void handleEdit();
|
|
|
|
private:
|
|
NeoChatRoom *m_room = nullptr;
|
|
void checkEffects(const QString &text);
|
|
|
|
QString handleMentions(QString handledText, const bool &isEdit = false);
|
|
void handleMessage(const QString &text, QString handledText, const bool &isEdit = false);
|
|
};
|
|
|
|
QString markdownToHTML(const QString &markdown);
|