1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 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