src/gui/eventlist.cpp-add program category filter to epg-search

This commit is contained in:
Jacek Jendrzej
2015-06-30 14:23:39 +02:00
parent e6e8eb9d93
commit 39796eda68
8 changed files with 92 additions and 9 deletions

View File

@@ -69,6 +69,7 @@ class CEventList
std::string m_search_keyword;
std::string m_search_autokeyword;
int m_search_list;
int m_search_genre;
t_channel_id m_search_channel_id;
t_bouquet_id m_search_bouquet_id;
bool m_showChannel;
@@ -142,6 +143,7 @@ class CEventFinderMenu : public CMenuTarget, CChangeObserver
CMenuForwarder* m_search_channelname_mf;
int* m_event;
int* m_search_epg_item;
int* m_search_genre;
std::string* m_search_keyword;
int* m_search_list;
std::string m_search_channelname;
@@ -156,7 +158,9 @@ class CEventFinderMenu : public CMenuTarget, CChangeObserver
std::string* search_keyword,
int* search_list,
t_channel_id* search_channel_id,
t_bouquet_id* search_bouquet_id);
t_bouquet_id* search_bouquet_id,
int* search_genre
);
int exec( CMenuTarget* parent, const std::string &actionkey);
bool changeNotify(const neutrino_locale_t OptionName, void *);