Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F116426
matrix-room.cpp
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
matrix-room.cpp
View Options
/*
* This file is part of kazv.
* SPDX-FileCopyrightText: 2020 Tusooa Zhu <tusooa@kazv.moe>
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
#include
<libkazv-config.hpp>
#include
<immer/config.hpp>
// https://github.com/arximboldi/immer/issues/168
#include
<lager/setter.hpp>
#include
"matrix-room.hpp"
#include
"matrix-room-timeline.hpp"
#include
"matrix-room-member.hpp"
#include
"helper.hpp"
MatrixRoom
::
MatrixRoom
(
Kazv
::
Room
room
,
QObject
*
parent
)
:
QObject
(
parent
)
,
m_room
(
room
)
,
m_memberNames
(
m_room
.
members
())
,
LAGER_QT
(
roomId
)(
m_room
.
roomId
().
xform
(
strToQt
))
,
LAGER_QT
(
name
)(
m_room
.
nameOpt
()[
lager
::
lenses
::
or_default
].
xform
(
strToQt
))
,
LAGER_QT
(
heroNames
)(
m_room
.
heroDisplayNames
().
xform
(
strListToQt
))
,
LAGER_QT
(
avatarMxcUri
)(
m_room
.
avatarMxcUri
().
xform
(
strToQt
))
,
LAGER_QT
(
localDraft
)(
lager
::
with_setter
(
m_room
.
localDraft
().
xform
(
strToQt
).
make
(),
[
this
](
QString
localDraft
)
{
m_room
.
setLocalDraft
(
localDraft
.
toStdString
());
},
lager
::
automatic_tag
{}))
,
LAGER_QT
(
memberNames
)(
m_memberNames
.
xform
(
strListToQt
))
{
}
MatrixRoom
::~
MatrixRoom
()
=
default
;
MatrixRoomTimeline
*
MatrixRoom::timeline
()
const
{
return
new
MatrixRoomTimeline
(
m_room
);
}
void
MatrixRoom::sendTextMessage
(
QString
text
)
const
{
m_room
.
sendTextMessage
(
text
.
toStdString
());
}
MatrixRoomMember
*
MatrixRoom::memberAt
(
int
index
)
const
{
return
new
MatrixRoomMember
(
m_room
.
memberEventByCursor
(
m_memberNames
[
index
][
lager
::
lenses
::
or_default
]));
}
MatrixRoomMember
*
MatrixRoom::member
(
QString
userId
)
const
{
return
new
MatrixRoomMember
(
m_room
.
memberEventFor
(
userId
.
toStdString
()));
}
File Metadata
Details
Attached
Mime Type
text/x-c
Expires
Sun, Dec 1, 1:34 PM (1 d, 15 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
41706
Default Alt Text
matrix-room.cpp (1 KB)
Attached To
Mode
rK kazv
Attached
Detach File
Event Timeline
Log In to Comment