2013-07-09 00:17:42 +02:00
|
|
|
#ifndef __TVGUIDE_RECMENUMANAGER_H
|
|
|
|
#define __TVGUIDE_RECMENUMANAGER_H
|
|
|
|
|
|
|
|
// --- cRecMenuManager -------------------------------------------------------------
|
|
|
|
class cRecMenuManager {
|
|
|
|
private:
|
|
|
|
bool active;
|
|
|
|
cRecMenu *activeMenu;
|
|
|
|
cRecMenu *activeMenuBuffer;
|
|
|
|
const cEvent *event;
|
|
|
|
cRecManager *recManager;
|
|
|
|
std::vector<TVGuideTimerConflict> conflictList;
|
|
|
|
std::vector<TVGuideEPGSearchTemplate> epgSearchTemplates;
|
|
|
|
bool instantRecord;
|
2013-07-18 17:59:59 +02:00
|
|
|
bool folderChoosen;
|
2013-07-09 00:17:42 +02:00
|
|
|
int currentConflict;
|
|
|
|
int templateID;
|
|
|
|
bool searchWithOptions;
|
|
|
|
cTimer *timer;
|
2013-07-19 15:30:41 +02:00
|
|
|
cString recFolder;
|
2013-07-09 00:17:42 +02:00
|
|
|
cString searchString;
|
|
|
|
cDetailView *detailView;
|
|
|
|
cPixmap *pixmapBackground;
|
|
|
|
bool detailViewActive;
|
|
|
|
void SetBackground(void);
|
|
|
|
void DeleteBackground(void);
|
|
|
|
bool displayTimerConflict(cTimer *timer);
|
|
|
|
bool displayTimerConflict(int timerID);
|
|
|
|
bool createSearchTimer(std::string epgSearchString);
|
|
|
|
public:
|
|
|
|
cRecMenuManager(void);
|
|
|
|
virtual ~cRecMenuManager(void);
|
|
|
|
bool isActive(void) { return active; };
|
|
|
|
void Start(const cEvent *event);
|
|
|
|
void Close(void);
|
|
|
|
eOSState StateMachine(eRecMenuState nextState);
|
|
|
|
eOSState ProcessKey(eKeys Key);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif //__TVGUIDE_RECMENUMANAGER_H
|