This is the start of a significant refactoring of everything related to sending messages, which is roughly:
- the chatbox
- action handling
- message sending on the c++ side
- autocompletion of users/rooms/emojis/commands/things i forgot
Notable changes so far include:
- ChatBox is now a ColumnLayout. As part of this, i removed the height animations for now. <del>as far as i can tell, they were broken anyway.</del> I'll readd them later
- Actions were refactored to live outside of the message sending function and are now each an object; it's mostly a wrapper around a function that is executed when the action is invoked
- Everything that used to live in ChatBoxHelper is now in NeoChatRoom; that means that the exact input status (text, message being replied to, message being edited, attachment) is now saved between room switching).
- To edit/reply an event, set `NeoChatRoom::chatBox{edit,reply}Id` to the desired event id, `NeoChatRoom::chatBox{reply,edit}{User,Message}` will then be updated automatically
- Attachments behave equivalently with `NeoChatRoom::chatBoxAttachmentPath`
- Error message reporting from ActionsHandler has been fixed (same fix as in !517) and moved to NeoChatRoom
Broken at the moment:
- [x] Any kind of autocompletion
- [x] Mentions
- [x] Fancy effects
- [x] sed-style edits
- [x] last-user-message edits and replies
- [x] Some of the actions, probably
- [x] Replies from notifications
- [x] Lots of keyboard shortcuts
- [x] Custom emojis
- [x] ChatBox height animations
TODO:
- [x] User / room mentions based on QTextCursors instead of the hack we currently use
- [x] Refactor autocompletion stuff
- [x] ???
- [x] Profit
50 lines
1.5 KiB
C++
50 lines
1.5 KiB
C++
// SPDX-FileCopyrightText: 2022 Tobias Fella <fella@posteo.de>
|
|
// SPDX-License-Identifier: LGPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include <KLazyLocalizedString>
|
|
#include <QAbstractListModel>
|
|
#include <events/roommessageevent.h>
|
|
|
|
class NeoChatRoom;
|
|
|
|
class ActionsModel : public QAbstractListModel
|
|
{
|
|
public:
|
|
struct Action {
|
|
// The prefix, without '/' and space after the word
|
|
QString prefix;
|
|
std::function<QString(const QString &, NeoChatRoom *)> handle;
|
|
// If this is true, this action transforms a message to a different message and it will be sent.
|
|
// If this is false, this message does some action on the client and should not be sent as a message.
|
|
bool messageAction;
|
|
// If this action changes the message type, this is the new message type. Otherwise it's nullopt
|
|
std::optional<Quotient::RoomMessageEvent::MsgType> messageType = std::nullopt;
|
|
KLazyLocalizedString parameters;
|
|
KLazyLocalizedString description;
|
|
};
|
|
static ActionsModel &instance()
|
|
{
|
|
static ActionsModel _instance;
|
|
return _instance;
|
|
}
|
|
|
|
enum Roles {
|
|
Prefix = Qt::DisplayRole,
|
|
Description,
|
|
CompletionType,
|
|
Parameters,
|
|
};
|
|
Q_ENUM(Roles);
|
|
|
|
int rowCount(const QModelIndex &parent = QModelIndex()) const override;
|
|
QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override;
|
|
QHash<int, QByteArray> roleNames() const override;
|
|
|
|
QVector<Action> &allActions() const;
|
|
|
|
private:
|
|
ActionsModel() = default;
|
|
};
|