Backport stickerevents
This commit is contained in:
committed by
Carl Schwan
parent
cc2b183fc5
commit
7ff54f62f3
26
src/stickerevent.cpp
Normal file
26
src/stickerevent.cpp
Normal file
@@ -0,0 +1,26 @@
|
||||
// SDPX-FileCopyrightText: 2020 Carl Schwan <carlschwan@kde.org>
|
||||
// SPDX-License-Identifier: LGPL-2.1-or-later
|
||||
|
||||
#include "stickerevent.h"
|
||||
|
||||
using namespace Quotient;
|
||||
|
||||
StickerEvent::StickerEvent(const QJsonObject &obj)
|
||||
: RoomEvent(typeId(), obj)
|
||||
, m_imageContent(EventContent::ImageContent(obj["content"_ls].toObject()))
|
||||
{}
|
||||
|
||||
QString StickerEvent::body() const
|
||||
{
|
||||
return content<QString>("body"_ls);
|
||||
}
|
||||
|
||||
const EventContent::ImageContent &StickerEvent::image() const
|
||||
{
|
||||
return m_imageContent;
|
||||
}
|
||||
|
||||
QUrl StickerEvent::url() const
|
||||
{
|
||||
return m_imageContent.url;
|
||||
}
|
||||
Reference in New Issue
Block a user