2013-05-31 13:58:22 +02:00
|
|
|
#ifndef __TVGUIDE_CHANNELGROUP_H
|
|
|
|
#define __TVGUIDE_CHANNELGROUP_H
|
|
|
|
|
2013-12-07 15:51:50 +01:00
|
|
|
#include <vdr/tools.h>
|
|
|
|
#include "styledpixmap.h"
|
|
|
|
|
|
|
|
|
2013-05-31 13:58:22 +02:00
|
|
|
// --- cChannelGroup -------------------------------------------------------------
|
|
|
|
|
|
|
|
class cChannelGroup {
|
|
|
|
private:
|
|
|
|
int channelStart;
|
|
|
|
int channelStop;
|
|
|
|
const char *name;
|
|
|
|
public:
|
|
|
|
cChannelGroup(const char *name);
|
|
|
|
virtual ~cChannelGroup(void);
|
|
|
|
void SetChannelStart(int start) { channelStart = start; };
|
|
|
|
int StartChannel(void) { return channelStart; };
|
|
|
|
void SetChannelStop(int stop) { channelStop = stop; };
|
|
|
|
int StopChannel(void) { return channelStop; };
|
|
|
|
const char* GetName(void) { return name; };
|
|
|
|
void Dump(void);
|
|
|
|
};
|
|
|
|
|
|
|
|
// --- cChannelGroupGrid -------------------------------------------------------------
|
|
|
|
|
|
|
|
class cChannelGroupGrid : public cListObject, public cStyledPixmap {
|
|
|
|
private:
|
|
|
|
const char *name;
|
|
|
|
bool isColor1;
|
2013-12-21 11:25:03 +01:00
|
|
|
void DrawHorizontal(tColor colorText, tColor colorTextBack);
|
|
|
|
void DrawVertical(tColor colorText, tColor colorTextBack);
|
2013-05-31 13:58:22 +02:00
|
|
|
public:
|
|
|
|
cChannelGroupGrid(const char *name);
|
|
|
|
virtual ~cChannelGroupGrid(void);
|
|
|
|
void SetColor(bool color) {isColor1 = color;};
|
|
|
|
void SetBackground(void);
|
|
|
|
void SetGeometry(int start, int end);
|
|
|
|
void Draw(void);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2013-06-03 09:52:54 +02:00
|
|
|
#endif //__TVGUIDE_CHANNELGROUP_H
|