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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
|
#ifndef __NOPACITY_MENUITEM_H
#define __NOPACITY_MENUITEM_H
class cNopacityMenuItem : public cListObject, public cThread {
protected:
cOsd *osd;
cPixmap *pixmap;
cPixmap *pixmapIcon;
cPixmap *pixmapTextScroller;
bool hasIcon;
int *handleBackgrounds;
const char *Text;
bool selectable;
bool current;
bool wasCurrent;
bool scrollable;
bool drawn;
cFont *font;
cFont *fontSmall;
int width, height;
int top, left;
int textLeft;
int index;
cString *itemTabs;
int *tabWidth;
int numTabs;
void DrawDelimiter(const char *del, const char *icon, int handleBgrd);
virtual void Action(void);
virtual void SetTextFull(void) {};
virtual void SetTextShort(void) {};
public:
cNopacityMenuItem(cOsd *osd, const char *text, bool sel);
virtual ~cNopacityMenuItem(void);
void CreatePixmap();
void CreatePixmapIcon(int iconWidth, int iconHeight);
virtual void CreatePixmapTextScroller(int totalWidth);
void SetGeometry(int index, int top, int left, int width, int height);
void SetFont(cFont *font) {this->font = font;}
void SetFontSmall(cFont *fontSmall) {this->fontSmall = fontSmall;}
void SetCurrent(bool cur);
void SetAlpha(int alpha) {this->pixmap->SetAlpha(alpha);}
void SetAlphaIcon(int alpha) {if (hasIcon) this->pixmapIcon->SetAlpha(alpha);}
void SetAlphaText(int alpha) {if (pixmapTextScroller) this->pixmapTextScroller->SetAlpha(alpha);}
void SetTabs(cString *tabs, int *tabWidths, int numtabs);
void SetBackgrounds(int *handleBackgrounds);
virtual void CreateText(void) {};
virtual void SetDisplayMode(void) {};
virtual int CheckScrollable(bool hasIcon) {return 0;};
virtual void Render() = 0;
};
class cNopacityMainMenuItem : public cNopacityMenuItem {
private:
cString menuNumber;
cString menuEntry;
std::string strEntry;
std::string strEntryFull;
static std::string items[6];
cString GetIconName();
void SetTextFull(void);
void SetTextShort(void);
public:
cNopacityMainMenuItem(cOsd *osd, const char *text, bool sel);
~cNopacityMainMenuItem(void);
void CreatePixmapTextScroller(int totalWidth);
void CreateText(void);
int CheckScrollable(bool hasIcon);
void Render();
};
enum eMenuSubCategory { mcSubUndefined = -1,
mcSubSchedule = 0,
mcSubScheduleWhatsOn,
mcSubScheduleWhatsOnNow,
mcSubScheduleWhatsOnNext,
mcSubScheduleWhatsOnElse,
mcSubScheduleSearchResults,
mcSubScheduleFavorites,
mcSubScheduleTimerconflict,
mcSubScheduleTimer,
mcSubChannels,
mcSubChannelEdit};
class cNopacityScheduleMenuItem : public cNopacityMenuItem {
private:
eMenuSubCategory subCategory;
std::string strDateTime;
std::string strTitle;
std::string strSubTitle;
std::string strTitleFull;
std::string strSubTitleFull;
std::string strChannelName;
std::string strProgressbar;
bool hasProgressBar;
eEPGModes mode;
bool hasLogo;
int titleY;
std::string delimiterType;
void DrawRemaining(cString remaining, int x, int y, int width);
void SetTextFull(void);
void SetTextShort(void);
public:
cNopacityScheduleMenuItem(cOsd *osd, const char *text, bool sel, eMenuSubCategory subCat);
~cNopacityScheduleMenuItem(void);
void CreatePixmapTextScroller(int totalWidth);
void SetDisplayMode(void);
void CreateText(void);
int CheckScrollable(bool hasIcon);
void Render();
};
class cNopacityChannelMenuItem : public cNopacityMenuItem {
private:
std::string strLogo;
std::string strEntry;
std::string strEntryFull;
void SetTextFull(void);
void SetTextShort(void);
public:
cNopacityChannelMenuItem(cOsd *osd, const char *text, bool sel);
~cNopacityChannelMenuItem(void);
void CreatePixmapTextScroller(int totalWidth);
void CreateText(void);
int CheckScrollable(bool hasIcon);
void Render();
};
class cNopacityDefaultMenuItem : public cNopacityMenuItem {
private:
std::string strEntry;
std::string strEntryFull;
int scrollCol;
void SetTextFull(void);
void SetTextShort(void);
public:
cNopacityDefaultMenuItem(cOsd *osd, const char *text, bool sel);
~cNopacityDefaultMenuItem(void);
int CheckScrollable(bool hasIcon);
void Render();
};
class cNopacityTrackMenuItem : public cNopacityMenuItem {
private:
public:
cNopacityTrackMenuItem(cOsd *osd, const char *text);
~cNopacityTrackMenuItem(void);
void Render();
};
#endif //__NOPACITY_MENUITEM_H
|