Add status message to D-Bus API

This commit is contained in:
Loren Burkholder 2022-11-05 13:13:18 -04:00
parent 76347f1c6f
commit de3cdd590f
4 changed files with 20 additions and 0 deletions

View File

@ -152,6 +152,15 @@ directChat(const QString &userId)
interface.isValid())
interface.call(QDBus::NoBlock, QStringLiteral("directChat"), userId);
}
void
setStatusMessage(const QString &message)
{
if (QDBusInterface interface{QStringLiteral(NHEKO_DBUS_SERVICE_NAME), QStringLiteral("/")};
interface.isValid())
interface.call(QDBus::NoBlock, QStringLiteral("setStatusMessage"), message);
}
} // nheko::dbus
/**

View File

@ -80,6 +80,9 @@ joinRoom(const QString &alias);
//! desired).
void
directChat(const QString &userId);
//! Sets the user's status message (if supported by the homeserver).
void
setStatusMessage(const QString &message);
QDBusArgument &
operator<<(QDBusArgument &arg, const RoomInfoItem &item);

View File

@ -100,6 +100,12 @@ NhekoDBusBackend::directChat(const QString &userId) const
ChatPage::instance()->startChat(userId);
}
void
NhekoDBusBackend::setStatusMessage(const QString &message)
{
ChatPage::instance()->setStatus(message);
}
void
NhekoDBusBackend::bringWindowToTop() const
{

View File

@ -37,6 +37,8 @@ public slots:
//! Starts or activates a direct chat. It is your responsibility to ask for confirmation (if
//! desired).
Q_SCRIPTABLE void directChat(const QString &userId) const;
//! Sets the user's status message.
Q_SCRIPTABLE void setStatusMessage(const QString &message);
private:
void bringWindowToTop() const;