/* * setup.h: Settings * * See the README file for copyright information and how to reach the author. */ #ifndef _EPGSYNC_SETUP__H #define _EPGSYNC_SETUP__H #include #define MAX_IP_LENGTH 16 enum eRedirectChannelModes { rcmId, rcmIdName, rcmNameId, rcm_Count }; enum eChannelTypes { ctAll, ctDVB_C, ctDVB_S, ctDVB_T, ctAnalog, ctIptv, ct_Count }; struct cEpgSyncSetup { int hideMainMenuEntry; char serverIp[MAX_IP_LENGTH]; int serverPort; int connectAttempts; int nowNext; int channelByChannel; int syncOnStart; int redirectChannels; int channelTypes; bool Parse(const char *Name, const char *Value); cEpgSyncSetup& operator=(const cEpgSyncSetup &Setup); cEpgSyncSetup(); }; extern cEpgSyncSetup EpgSyncSetup; class cEpgSyncMenuSetup: public cMenuSetupPage { private: cEpgSyncSetup setupTmp; const char* redirectChannelsTexts[rcm_Count]; const char* channelTypeTexts[ct_Count]; protected: virtual void Store(void); public: cEpgSyncMenuSetup(); virtual ~cEpgSyncMenuSetup(); }; #endif //_EPGSYNC_SETUP__H