vdr
1.7.27
|
00001 /* 00002 * menu.h: The DVB HD Full Featured device main menu 00003 * 00004 * See the README file for copyright information and how to reach the author. 00005 */ 00006 00007 #ifndef _HDFF_MENU_H_ 00008 #define _HDFF_MENU_H_ 00009 00010 #include <vdr/osd.h> 00011 #include <vdr/plugin.h> 00012 00013 #include "hdffcmd.h" 00014 00015 class cHdffMenu : public cOsdMenu 00016 { 00017 private: 00018 HDFF::cHdffCmdIf * mHdffCmdIf; 00019 00020 cOsdItem * mVideoConversionItem; 00021 00022 void SetVideoConversion(void); 00023 public: 00024 cHdffMenu(HDFF::cHdffCmdIf * pHdffCmdIf); 00025 virtual ~cHdffMenu(); 00026 virtual eOSState ProcessKey(eKeys Key); 00027 }; 00028 00029 #endif