mirror of
https://projects.vdr-developer.org/git/vdr-plugin-tvguide.git
synced 2023-10-05 15:01:48 +02:00
set ff=unix recmenuview.*
This commit is contained in:
parent
27e9004629
commit
e09279ca32
1878
recmenuview.c
1878
recmenuview.c
File diff suppressed because it is too large
Load Diff
@ -1,43 +1,43 @@
|
|||||||
#ifndef __TVGUIDE_RECMENUVIEW_H
|
#ifndef __TVGUIDE_RECMENUVIEW_H
|
||||||
#define __TVGUIDE_RECMENUVIEW_H
|
#define __TVGUIDE_RECMENUVIEW_H
|
||||||
|
|
||||||
#include "recmenu.h"
|
#include "recmenu.h"
|
||||||
#include "recmanager.h"
|
#include "recmanager.h"
|
||||||
#include "services/epgsearch.h"
|
#include "services/epgsearch.h"
|
||||||
#include "footer.h"
|
#include "footer.h"
|
||||||
|
|
||||||
// --- cRecMenuView -------------------------------------------------------------
|
// --- cRecMenuView -------------------------------------------------------------
|
||||||
class cRecMenuView {
|
class cRecMenuView {
|
||||||
private:
|
private:
|
||||||
cFooter *footer;
|
cFooter *footer;
|
||||||
bool active;
|
bool active;
|
||||||
cRecMenu *activeMenu;
|
cRecMenu *activeMenu;
|
||||||
cRecMenu *activeMenuBuffer;
|
cRecMenu *activeMenuBuffer;
|
||||||
cRecMenu *activeMenuBuffer2;
|
cRecMenu *activeMenuBuffer2;
|
||||||
const cEvent *event;
|
const cEvent *event;
|
||||||
const cEvent *displayEvent;
|
const cEvent *displayEvent;
|
||||||
cRecManager *recManager;
|
cRecManager *recManager;
|
||||||
cTVGuideTimerConflicts *timerConflicts;
|
cTVGuideTimerConflicts *timerConflicts;
|
||||||
cDetailView *detailView;
|
cDetailView *detailView;
|
||||||
cPixmap *pixmapBackground;
|
cPixmap *pixmapBackground;
|
||||||
bool detailViewActive;
|
bool detailViewActive;
|
||||||
void SetBackground(void);
|
void SetBackground(void);
|
||||||
void DeleteBackground(void);
|
void DeleteBackground(void);
|
||||||
void DisplaySearchTimerList(void);
|
void DisplaySearchTimerList(void);
|
||||||
bool DisplayTimerConflict(const cTimer *timer);
|
bool DisplayTimerConflict(const cTimer *timer);
|
||||||
bool DisplayTimerConflict(int timerID);
|
bool DisplayTimerConflict(int timerID);
|
||||||
void DisplayDetailedView(const cEvent *ev);
|
void DisplayDetailedView(const cEvent *ev);
|
||||||
void DisplayFavoriteResults(std::string header, const cEvent **result, int numResults);
|
void DisplayFavoriteResults(std::string header, const cEvent **result, int numResults);
|
||||||
eOSState StateMachine(eRecMenuState nextState);
|
eOSState StateMachine(eRecMenuState nextState);
|
||||||
public:
|
public:
|
||||||
cRecMenuView(void);
|
cRecMenuView(void);
|
||||||
virtual ~cRecMenuView(void);
|
virtual ~cRecMenuView(void);
|
||||||
void SetFooter(cFooter *footer) { this->footer = footer; };
|
void SetFooter(cFooter *footer) { this->footer = footer; };
|
||||||
bool isActive(void) { return active; };
|
bool isActive(void) { return active; };
|
||||||
void Start(const cEvent *event);
|
void Start(const cEvent *event);
|
||||||
void StartFavorites(void);
|
void StartFavorites(void);
|
||||||
void Close(void);
|
void Close(void);
|
||||||
eOSState ProcessKey(eKeys Key);
|
eOSState ProcessKey(eKeys Key);
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //__TVGUIDE_RECMENUVIEW_H
|
#endif //__TVGUIDE_RECMENUVIEW_H
|
||||||
|
Loading…
Reference in New Issue
Block a user