vdr-plugin-tvguide/footer.h

34 lines
1.0 KiB
C
Raw Normal View History

2013-01-17 13:16:44 +01:00
#ifndef __TVGUIDE_FOOTER_H
#define __TVGUIDE_FOOTER_H
2013-12-07 15:51:50 +01:00
#include <vdr/osd.h>
#include "channelgroups.h"
2013-01-17 13:16:44 +01:00
// --- cFooter -------------------------------------------------------------
class cFooter {
private:
2013-05-26 11:38:05 +02:00
cPixmap *footer;
int buttonY;
int positionButtons[4];
2013-05-31 13:58:22 +02:00
cChannelGroups *channelGroups;
int currentGroup;
void SetButtonPositions(void);
2013-12-21 11:25:03 +01:00
void DrawButton(const char *text, tColor color, tColor borderColor, eOsdElementType buttonType, int num);
void ClearButton(int num);
2013-01-17 13:16:44 +01:00
public:
2013-05-31 13:58:22 +02:00
cFooter(cChannelGroups *channelGroups);
2013-05-26 11:38:05 +02:00
virtual ~cFooter(void);
void drawRedButton();
void drawGreenButton();
2013-05-31 13:58:22 +02:00
void drawGreenButton(const char *text);
void drawYellowButton();
2013-05-31 13:58:22 +02:00
void drawYellowButton(const char *text);
void drawBlueButton(bool detailedEPG = false);
void UpdateGroupButtons(const cChannel *channel, bool force = false);
void SetDetailedViewMode(bool fromRecMenu = false);
void LeaveDetailedViewMode(const cChannel *channel);
2013-01-17 13:16:44 +01:00
};
2019-07-11 11:07:13 +02:00
#endif //__TVGUIDE_FOOTER_H