1
0
Fork 0
mirror of https://github.com/HenkKalkwater/harbour-sailfin.git synced 2025-09-05 10:12:46 +00:00

Add support for handling playstate commands

This commit is contained in:
Chris Josten 2021-09-10 01:36:30 +02:00
parent 7c21eb425d
commit 2a3bd51def
No known key found for this signature in database
GPG key ID: A69C050E9FD9FF6A
6 changed files with 112 additions and 15 deletions

View file

@ -25,6 +25,7 @@
namespace Jellyfin {
namespace DTO {
class UserItemDataDto;
class PlaystateRequest;
}
/**
@ -50,6 +51,8 @@ signals:
* @param timeout Timeout in MS to show the message. -1: no timeout supplied.
*/
void displayMessage(const QString &header, const QString &message, int timeout = -1);
void playstateCommandReceived(const Jellyfin::DTO::PlaystateRequest &request);
};
}