- channellist.cpp: add epg-desc to blue button ...

... if g_settings.channellist_additional is not off.

initially patch by TangoCash with marginal modifications
This commit is contained in:
TangoCash
2013-02-09 10:36:11 +01:00
committed by svenhoefer
parent c2668d2f2c
commit 31080fa98c
2 changed files with 119 additions and 4 deletions

View File

@@ -84,9 +84,11 @@ private:
int infozone_height;
int previous_channellist_additional;
CEPGData epgData;
bool historyMode;
bool vlist; // "virtual" list, not bouquet
bool displayNext;
bool displayList;
int info_height;
bool new_mode_active;
@@ -108,6 +110,12 @@ private:
void paint_events(int index);
CChannelEventList evtlist;
void readEvents(const t_channel_id channel_id);
void showdescription(int index);
typedef std::pair<std::string,int> epg_pair;
std::vector<epg_pair> epgText;
int emptyLineCount;
void addTextToArray( const std::string & text, int screening );
void processTextToArray(std::string text, int screening = 0);
public:
CChannelList(const char * const Name, bool historyMode = false, bool _vlist = false, bool new_mode_active = false );