diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2008-02-23 14:40:58 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2008-02-23 14:40:58 +0100 |
commit | 300d402663e3378d3710b40e29c79a1cc4f4c262 (patch) | |
tree | 42dabe052b9e8f4b56322e1fb15660e0c0224b18 /remote.h | |
parent | edfe5829417bea8879bd2e45892b4465ea69b6eb (diff) | |
download | vdr-300d402663e3378d3710b40e29c79a1cc4f4c262.tar.gz vdr-300d402663e3378d3710b40e29c79a1cc4f4c262.tar.bz2 |
The CAM menu now stays open as long as it is automatically updated
Diffstat (limited to 'remote.h')
-rw-r--r-- | remote.h | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: remote.h 1.40 2007/04/30 12:37:37 kls Exp $ + * $Id: remote.h 1.41 2008/02/23 14:38:47 kls Exp $ */ #ifndef __REMOTE_H @@ -67,6 +67,9 @@ public: static eKeys Get(int WaitMs = 1000, char **UnknownCode = NULL); static time_t LastActivity(void) { return lastActivity; } ///< Absolute time when last key was delivered by Get(). + static void TriggerLastActivity(void); + ///< Simulates user activity, for instance to keep the current menu open + ///< even if no remote control key has been pressed. }; class cRemotes : public cList<cRemote> {}; |