diff options
author | Martin Schirrmacher <vdr.lightpack@schirrmacher.eu> | 2013-05-07 14:30:44 +0200 |
---|---|---|
committer | Martin Schirrmacher <vdr.lightpack@schirrmacher.eu> | 2013-05-07 14:30:44 +0200 |
commit | 5ab076d93a99e84dca20d685f30821ae61bcc762 (patch) | |
tree | d1f2aa7a220d556c9dbf2433fd9f25502739ddcd /osdmenu.h | |
download | vdr-plugin-lightpack-5ab076d93a99e84dca20d685f30821ae61bcc762.tar.gz vdr-plugin-lightpack-5ab076d93a99e84dca20d685f30821ae61bcc762.tar.bz2 |
initial commit
Diffstat (limited to 'osdmenu.h')
-rw-r--r-- | osdmenu.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/osdmenu.h b/osdmenu.h new file mode 100644 index 0000000..5c8163b --- /dev/null +++ b/osdmenu.h @@ -0,0 +1,22 @@ +#ifndef __OSDMENU_H__ +#define __OSDMENU_H__ + +#include <vdr/menu.h> +#include <vdr/status.h> + +class myOsdMenu : public cOsdMenu +{ +private: + int LastGamma, LastBrightness, LastSmooth; + int LastStatus, LastMode; + + void MySetHelp(void); +public: + myOsdMenu(); + ~myOsdMenu(); + + virtual eOSState ProcessKey(eKeys Key); +}; + + +#endif
\ No newline at end of file |