diff options
author | louis <louis.braun@gmx.de> | 2016-03-13 16:07:21 +0100 |
---|---|---|
committer | louis <louis.braun@gmx.de> | 2016-03-13 16:07:21 +0100 |
commit | 4623e7b345f850ac44cdcacbd0e43e139a4baa6a (patch) | |
tree | 8046f612d0a0821624e7de006021f551ea512d15 /recmenuview.h | |
parent | d4ef992f8256d324221d15d3bef967eb044a9a86 (diff) | |
download | vdr-plugin-tvguideng-4623e7b345f850ac44cdcacbd0e43e139a4baa6a.tar.gz vdr-plugin-tvguideng-4623e7b345f850ac44cdcacbd0e43e139a4baa6a.tar.bz2 |
added VDR 2.3.1 compatibility
Diffstat (limited to 'recmenuview.h')
-rw-r--r-- | recmenuview.h | 92 |
1 files changed, 46 insertions, 46 deletions
diff --git a/recmenuview.h b/recmenuview.h index 6f1d03a..718379e 100644 --- a/recmenuview.h +++ b/recmenuview.h @@ -1,46 +1,46 @@ -#ifndef __TVGUIDE_RECMENUVIEW_H
-#define __TVGUIDE_RECMENUVIEW_H
-
-#include "config.h"
-#include <libskindesignerapi/skindesignerosdbase.h>
-#include "recmanager.h"
-#include "recmenus.h"
-
-class cRecMenuView {
-private:
- bool active;
- skindesignerapi::cOsdView *recMenuView;
- skindesignerapi::cOsdView *recMenuViewBuffer;
- skindesignerapi::cOsdView *recMenuViewBuffer2;
- const cEvent *event;
- const cEvent *displayEvent;
- cRecManager *recManager;
- cRecMenu *activeMenu;
- cRecMenu *activeMenuBuffer;
- cRecMenu *activeMenuBuffer2;
- cTVGuideTimerConflicts *timerConflicts;
- void DrawBackground(int menuWidth, int menuHeight, bool scrolling);
- void DisplayMenu(bool buffer = false, bool buffer2 = false);
- void DisplaySearchTimerList(void);
- bool DisplayTimerConflict(cTimer *timer);
- bool DisplayTimerConflict(int timerID);
- void DisplayFavoriteResults(string header, const cEvent **result, int numResults);
- eOSState StateMachine(eRecMenuState nextState);
-public:
- cRecMenuView(void);
- virtual ~cRecMenuView(void);
- void Init(skindesignerapi::cOsdView *recMenuView, skindesignerapi::cOsdView *recMenuViewBuffer, skindesignerapi::cOsdView *recMenuViewBuffer2);
- void DisplayRecMenu(const cEvent *event);
- void DisplayFavorites(void);
- void DisplayRecSearch(const cEvent *e);
- void DisplaySearchEPG(const cEvent *e);
- void Close(void);
- void Hide(bool full = false);
- void Activate(bool full = false);
- eOSState ProcessKey(eKeys Key);
- void Flush(void) { activeMenu->Flush(); };
- const cEvent *GetEvent(void) { return displayEvent; };
- bool Active(void) { return active; };
-};
-
-#endif //__TVGUIDE_RECMENUVIEW_H
+#ifndef __TVGUIDE_RECMENUVIEW_H +#define __TVGUIDE_RECMENUVIEW_H + +#include "config.h" +#include <libskindesignerapi/skindesignerosdbase.h> +#include "recmanager.h" +#include "recmenus.h" + +class cRecMenuView { +private: + bool active; + skindesignerapi::cOsdView *recMenuView; + skindesignerapi::cOsdView *recMenuViewBuffer; + skindesignerapi::cOsdView *recMenuViewBuffer2; + const cEvent *event; + const cEvent *displayEvent; + cRecManager *recManager; + cRecMenu *activeMenu; + cRecMenu *activeMenuBuffer; + cRecMenu *activeMenuBuffer2; + cTVGuideTimerConflicts *timerConflicts; + void DrawBackground(int menuWidth, int menuHeight, bool scrolling); + void DisplayMenu(bool buffer = false, bool buffer2 = false); + void DisplaySearchTimerList(void); + bool DisplayTimerConflict(const cTimer *timer); + bool DisplayTimerConflict(int timerID); + void DisplayFavoriteResults(string header, const cEvent **result, int numResults); + eOSState StateMachine(eRecMenuState nextState); +public: + cRecMenuView(void); + virtual ~cRecMenuView(void); + void Init(skindesignerapi::cOsdView *recMenuView, skindesignerapi::cOsdView *recMenuViewBuffer, skindesignerapi::cOsdView *recMenuViewBuffer2); + void DisplayRecMenu(const cEvent *event); + void DisplayFavorites(void); + void DisplayRecSearch(const cEvent *e); + void DisplaySearchEPG(const cEvent *e); + void Close(void); + void Hide(bool full = false); + void Activate(bool full = false); + eOSState ProcessKey(eKeys Key); + void Flush(void) { activeMenu->Flush(); }; + const cEvent *GetEvent(void) { return displayEvent; }; + bool Active(void) { return active; }; +}; + +#endif //__TVGUIDE_RECMENUVIEW_H |