1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
// --- cLCARSNGDisplayChannel ----------------------------------------------
class cLCARSNGDisplayChannel : public cSkinDisplayChannel, cThread {
private:
cOsd *osd;
int xc00, xc00m, xc01, xc02, xc02m, xc03, xc04, xc05, xc06, xc06k, xc06l, xc06m, xc06n, xc07, xc08, xc09, xc10, xc10m, xc10n, xc11, xc12, xc13, xc14, xc15;
int yc0B, yc0A, yc00, yc00m, yc01, yc02, yc03, yc04, yc05, yc06, yc07, yc08, yc09, yc10, yc11, yc12;
int xs; // starting column for signal display
bool withInfo;
int iconHeight;
int lineHeight;
bool lastOn;
bool On;
int Margin;
cFont *tinyFont;
cFont *tallFont;
tColor frameColorFg;
tColor frameColorBg;
tColor frameColorBr;
tColor textColorBg;
bool message;
const cEvent *present;
const cEvent *following;
bool initial;
cString lastDate;
int lastSeen;
int lastCurrentPosition;
int lastDeviceNumber;
cString lastDeviceType;
cCamSlot *lastCamSlot;
int lastSignalStrength;
int lastSignalQuality;
time_t lastSignalDisplay;
tTrackId lastTrackId;
static cBitmap bmTeletext, bmRadio, bmAudio, bmDolbyDigital, bmEncrypted, bmRecording;
void Action(void);
void DrawDate(void);
void DrawTrack(void);
void DrawSeen(int Current, int Total);
void DrawDevice(void);
void DrawSignal(void);
void DrawBlinkingRec(void);
void DrawEventRec(const cEvent *Present, const cEvent *Following);
void DrawTimer(void);
public:
cLCARSNGDisplayChannel(bool WithInfo);
virtual ~cLCARSNGDisplayChannel();
virtual void SetChannel(const cChannel *Channel, int Number);
virtual void SetEvents(const cEvent *Present, const cEvent *Following);
virtual void SetMessage(eMessageType Type, const char *Text);
#if APIVERSNUM > 20101
virtual void SetPositioner(const cPositioner *Positioner);
#endif
virtual void Flush(void);
};
|