diff options
author | louis <louis.braun@gmx.de> | 2015-04-06 13:13:32 +0200 |
---|---|---|
committer | louis <louis.braun@gmx.de> | 2015-04-06 13:13:32 +0200 |
commit | 252bd209395cbad7bec01e7259fca799a696d898 (patch) | |
tree | 545854d59255c93d18f15a812e34835741df7400 /recmenu.h | |
parent | 15b166628fe52ba9bc166e0567443824427598fe (diff) | |
download | vdr-plugin-tvguideng-252bd209395cbad7bec01e7259fca799a696d898.tar.gz vdr-plugin-tvguideng-252bd209395cbad7bec01e7259fca799a696d898.tar.bz2 |
added wraparound scrolling in recording menus
Diffstat (limited to 'recmenu.h')
-rw-r--r-- | recmenu.h | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -27,7 +27,8 @@ private: bool scrolling;
bool SeekForward(bool page);
bool SeekBack(bool page);
- void AdjustActive(bool down);
+ void SetFirst(void);
+ void SetLast(void);
void DrawScrollbar(void);
void DrawHeader(void);
void DrawFooter(void);
@@ -42,8 +43,9 @@ protected: bool ScrollDown(bool retry);
bool PageUp(void);
bool PageDown(void);
- void ClearMenuItems(void);
+ void ClearMenuItems(bool deleteItems);
void InitMenuItems(void);
+ void InitMenuItemsLast(void);
int GetWidth(void) { return menuWidth; };
int GetHeight(void);
public:
|