mirror of
https://git.jami.net/savoirfairelinux/jami-client-qt.git
synced 2025-07-15 21:15:24 +02:00
126 lines
5.5 KiB
C++
126 lines
5.5 KiB
C++
/*!
|
|
* Copyright (C) 2020 by Savoir-faire Linux
|
|
* Author: Mingrui Zhang <mingrui.zhang@savoirfairelinux.com>
|
|
*
|
|
* 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
|
|
|
|
#include "lrcinstance.h"
|
|
#include "qmladapterbase.h"
|
|
#include "api/chatview.h"
|
|
|
|
#include <QObject>
|
|
#include <QString>
|
|
|
|
class AppSettingsManager;
|
|
|
|
class MessagesAdapter final : public QmlAdapterBase
|
|
{
|
|
Q_OBJECT
|
|
Q_PROPERTY(QVariantMap chatviewTranslatedStrings MEMBER chatviewTranslatedStrings_ CONSTANT)
|
|
|
|
public:
|
|
explicit MessagesAdapter(AppSettingsManager* settingsManager,
|
|
LRCInstance* instance,
|
|
QObject* parent = nullptr);
|
|
~MessagesAdapter() = default;
|
|
|
|
protected:
|
|
void safeInit() override;
|
|
|
|
Q_INVOKABLE void setupChatView(const QString& convUid);
|
|
Q_INVOKABLE void connectConversationModel();
|
|
Q_INVOKABLE void sendConversationRequest();
|
|
Q_INVOKABLE void removeConversation(const QString& accountId,
|
|
const QString& convUid,
|
|
bool banContact = false);
|
|
Q_INVOKABLE void clearConversationHistory(const QString& accountId, const QString& convUid);
|
|
Q_INVOKABLE void acceptInvitation(const QString& convId = {});
|
|
Q_INVOKABLE void refuseInvitation(const QString& convUid = "");
|
|
Q_INVOKABLE void blockConversation(const QString& convUid = "");
|
|
|
|
// JS Q_INVOKABLE.
|
|
Q_INVOKABLE void setDisplayLinks();
|
|
Q_INVOKABLE void sendMessage(const QString& message);
|
|
Q_INVOKABLE void sendFile(const QString& message);
|
|
Q_INVOKABLE void retryInteraction(const QString& interactionId);
|
|
Q_INVOKABLE void deleteInteraction(const QString& interactionId);
|
|
Q_INVOKABLE void openUrl(const QString& url);
|
|
Q_INVOKABLE void openFile(const QString& arg);
|
|
Q_INVOKABLE void acceptFile(const QString& arg);
|
|
Q_INVOKABLE void refuseFile(const QString& arg);
|
|
Q_INVOKABLE void pasteKeyDetected();
|
|
Q_INVOKABLE void userIsComposing(bool isComposing);
|
|
Q_INVOKABLE void loadMessages(int n);
|
|
Q_INVOKABLE void copyToDownloads(const QString& interactionId, const QString& displayName);
|
|
|
|
// Run corrsponding js functions, c++ to qml.
|
|
void setMessagesVisibility(bool visible);
|
|
void setIsSwarm(bool isSwarm);
|
|
void clearChatView();
|
|
void printHistory(ConversationModel& conversationModel, MessagesList interactions);
|
|
void updateHistory(ConversationModel& conversationModel,
|
|
MessagesList interactions,
|
|
bool allLoaded);
|
|
void setSenderImage(const QString& sender, const QString& senderImage);
|
|
void printNewInteraction(lrc::api::ConversationModel& conversationModel,
|
|
const QString& msgId,
|
|
const lrc::api::interaction::Info& interaction);
|
|
void updateInteraction(lrc::api::ConversationModel& conversationModel,
|
|
const QString& msgId,
|
|
const lrc::api::interaction::Info& interaction);
|
|
void setMessagesImageContent(const QString& path, bool isBased64 = false);
|
|
void setMessagesFileContent(const QString& path);
|
|
void removeInteraction(const QString& interactionId);
|
|
void setSendMessageContent(const QString& content);
|
|
void contactIsComposing(const QString& contactUri, bool isComposing);
|
|
|
|
Q_SIGNALS:
|
|
void newInteraction(int type);
|
|
void newMessageBarPlaceholderText(QString placeholderText);
|
|
void newFilePasted(QString filePath);
|
|
void newTextPasted();
|
|
void changeInvitationViewRequest(bool show,
|
|
bool isSwarm = false,
|
|
bool needsSyncing = false,
|
|
QString contactTitle = {},
|
|
QString contactUri = {});
|
|
|
|
private Q_SLOTS:
|
|
void slotMessagesCleared();
|
|
void slotMessagesLoaded();
|
|
void onNewInteraction(const QString& convUid,
|
|
const QString& interactionId,
|
|
const interaction::Info& interaction);
|
|
void onInteractionStatusUpdated(const QString& convUid,
|
|
const QString& interactionId,
|
|
const interaction::Info& interaction);
|
|
void onInteractionRemoved(const QString& convUid, const QString& interactionId);
|
|
void onNewMessagesAvailable(const QString& accountId, const QString& conversationId);
|
|
void updateConversation(const QString& conversationId);
|
|
void onComposingStatusChanged(const QString& uid, const QString& contactUri, bool isComposing);
|
|
|
|
private:
|
|
void setConversationProfileData(const lrc::api::conversation::Info& convInfo);
|
|
void newInteraction(const QString& accountId,
|
|
const QString& convUid,
|
|
const QString& interactionId,
|
|
const interaction::Info& interaction);
|
|
|
|
const QVariantMap chatviewTranslatedStrings_ {lrc::api::chatview::getTranslatedStrings()};
|
|
|
|
AppSettingsManager* settingsManager_;
|
|
};
|