KODIVideoChecker Fix (#138)

* Update KODIVideoChecker.h

* Update KODIVideoChecker.cpp

* Update KODIVideoChecker.cpp
This commit is contained in:
Paulchen-Panther
2016-07-24 13:56:13 +02:00
committed by brindosch
parent 5bd8c33529
commit 01ec4a3655
2 changed files with 93 additions and 8 deletions

View File

@@ -112,6 +112,9 @@ private:
/// The JSON-RPC message to check the kodi version
QString _getKodiVersion;
/// The JSON-RPC message to check the current Playback State
const QString _getCurrentPlaybackState;
/// The QT TCP Socket with connection to KODI
QTcpSocket _socket;
@@ -142,6 +145,12 @@ private:
/// Previous emitted video mode
VideoMode _previousVideoMode;
/// Current Playback State
bool _currentPlaybackState;
/// Current Kodi PlayerID
int _currentPlayerID;
/// KODI version number
int _kodiVersion;