mirror of
https://projects.vdr-developer.org/git/vdr-plugin-tvguide.git
synced 2023-10-05 15:01:48 +02:00
Refactor cRecMenuConfirmTimer
This commit is contained in:
parent
9565eda1aa
commit
ce690366f8
12
recmenu.c
12
recmenu.c
@ -94,6 +94,18 @@ void cRecMenu::CreatePixmap(void) {
|
|||||||
pixmapScrollBar = NULL;
|
pixmapScrollBar = NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void cRecMenu::AddHeader(cRecMenuItem *header) {
|
||||||
|
this->header = header;
|
||||||
|
headerHeight = header->GetHeight();
|
||||||
|
height += headerHeight;
|
||||||
|
}
|
||||||
|
|
||||||
|
void cRecMenu::AddFooter(cRecMenuItem *footer) {
|
||||||
|
this->footer = footer;
|
||||||
|
footerHeight = footer->GetHeight();
|
||||||
|
height += footerHeight;
|
||||||
|
}
|
||||||
|
|
||||||
void cRecMenu::SetHeader(cRecMenuItem *header) {
|
void cRecMenu::SetHeader(cRecMenuItem *header) {
|
||||||
this->header = header;
|
this->header = header;
|
||||||
headerHeight = header->GetHeight();
|
headerHeight = header->GetHeight();
|
||||||
|
@ -37,6 +37,8 @@ protected:
|
|||||||
int CalculateOptimalWidth(void);
|
int CalculateOptimalWidth(void);
|
||||||
bool CalculateHeight(bool reDraw = false);
|
bool CalculateHeight(bool reDraw = false);
|
||||||
void CreatePixmap(void);
|
void CreatePixmap(void);
|
||||||
|
void AddHeader(cRecMenuItem *header);
|
||||||
|
void AddFooter(cRecMenuItem *footer);
|
||||||
void SetHeader(cRecMenuItem *header);
|
void SetHeader(cRecMenuItem *header);
|
||||||
void SetFooter(cRecMenuItem *footer);
|
void SetFooter(cRecMenuItem *footer);
|
||||||
void ClearMenuItems(bool destructor = false);
|
void ClearMenuItems(bool destructor = false);
|
||||||
@ -63,4 +65,4 @@ public:
|
|||||||
void UpdateActiveMenuItem(void);
|
void UpdateActiveMenuItem(void);
|
||||||
virtual eRecMenuState ProcessKey(eKeys Key);
|
virtual eRecMenuState ProcessKey(eKeys Key);
|
||||||
};
|
};
|
||||||
#endif //__TVGUIDE_RECMENU_H
|
#endif //__TVGUIDE_RECMENU_H
|
||||||
|
@ -266,15 +266,41 @@ cRecMenuItemInfo::cRecMenuItemInfo(const char *text, bool largeFont) {
|
|||||||
selectable = false;
|
selectable = false;
|
||||||
active = false;
|
active = false;
|
||||||
this->text = text;
|
this->text = text;
|
||||||
|
this->line1 = "";
|
||||||
|
this->line2 = "";
|
||||||
|
this->line3 = "";
|
||||||
|
this->line4 = "";
|
||||||
|
this->numLines = 1;
|
||||||
fontInfo = (largeFont) ? fontLarge : font;
|
fontInfo = (largeFont) ? fontLarge : font;
|
||||||
border = 10;
|
border = 10;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
cRecMenuItemInfo::cRecMenuItemInfo(std::string line1, int numLines, std::string line2, std::string line3, std::string line4, int width, bool largeFont) {
|
||||||
|
selectable = false;
|
||||||
|
fontInfo = (largeFont) ? fontLarge : font;
|
||||||
|
border = 10;
|
||||||
|
this->numLines = numLines;
|
||||||
|
this->line2 = line2;
|
||||||
|
this->line3 = line3;
|
||||||
|
this->line4 = line4;
|
||||||
|
if (numLines == 1) {
|
||||||
|
this->line1 = line1;
|
||||||
|
} else if (numLines == 2) {
|
||||||
|
this->line1 = cString::sprintf("%s\n%s", line1.c_str(), line2.c_str());
|
||||||
|
} else if (numLines == 3) {
|
||||||
|
this->line1 = cString::sprintf("%s\n%s\n%s", line1.c_str(), line2.c_str(), line3.c_str());
|
||||||
|
} else if (numLines == 4) {
|
||||||
|
this->line1 = cString::sprintf("%s\n%s\n%s\n%s", line1.c_str(), line2.c_str(), line3.c_str(), line4.c_str());
|
||||||
|
}
|
||||||
|
this->active = false;
|
||||||
|
CalculateHeight(width);
|
||||||
|
}
|
||||||
|
|
||||||
cRecMenuItemInfo::~cRecMenuItemInfo(void) {
|
cRecMenuItemInfo::~cRecMenuItemInfo(void) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void cRecMenuItemInfo::CalculateHeight(int textWidth) {
|
void cRecMenuItemInfo::CalculateHeight(int textWidth) {
|
||||||
wrapper.Set(*text, fontInfo, textWidth);
|
wrapper.Set((line1 == "") ? *text : line1.c_str(), fontInfo, textWidth);
|
||||||
height = fontInfo->Height() * wrapper.Lines() + 2 * border;
|
height = fontInfo->Height() * wrapper.Lines() + 2 * border;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -175,12 +175,18 @@ public:
|
|||||||
// --- cRecMenuItemInfo -------------------------------------------------------
|
// --- cRecMenuItemInfo -------------------------------------------------------
|
||||||
class cRecMenuItemInfo : public cRecMenuItem {
|
class cRecMenuItemInfo : public cRecMenuItem {
|
||||||
private:
|
private:
|
||||||
|
int numLines;
|
||||||
cString text;
|
cString text;
|
||||||
|
std::string line1;
|
||||||
|
std::string line2;
|
||||||
|
std::string line3;
|
||||||
|
std::string line4;
|
||||||
cTextWrapper wrapper;
|
cTextWrapper wrapper;
|
||||||
int border;
|
int border;
|
||||||
const cFont *fontInfo;
|
const cFont *fontInfo;
|
||||||
public:
|
public:
|
||||||
cRecMenuItemInfo(const char *text, bool largeFont = false);
|
cRecMenuItemInfo(const char *text, bool largeFont = false);
|
||||||
|
cRecMenuItemInfo(std::string line1, int numLines = 1, std::string line2 = "", std::string line3 = "", std::string line4 = "", int width = 80, bool largeFont = false);
|
||||||
virtual ~cRecMenuItemInfo(void);
|
virtual ~cRecMenuItemInfo(void);
|
||||||
void setBackground(void);
|
void setBackground(void);
|
||||||
void CalculateHeight(int textWidth);
|
void CalculateHeight(int textWidth);
|
||||||
|
46
recmenus.c
46
recmenus.c
@ -104,40 +104,40 @@ std::string cRecMenuAskFolder::GetFolder(void) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// --- cRecMenuConfirmTimer ---------------------------------------------------------
|
// --- cRecMenuConfirmTimer ---------------------------------------------------------
|
||||||
cRecMenuConfirmTimer::cRecMenuConfirmTimer(const cEvent *event, bool timerChanged) {
|
cRecMenuConfirmTimer::cRecMenuConfirmTimer(const cEvent *event, bool timerChanged) { // OK
|
||||||
SetWidthPercent(50);
|
SetWidthPercent(50);
|
||||||
#if VDRVERSNUM >= 20301
|
|
||||||
LOCK_CHANNELS_READ;
|
|
||||||
const cString channelName = Channels->GetByChannelID(event->ChannelID())->Name();
|
|
||||||
#else
|
|
||||||
const cString channelName = Channels.GetByChannelID(event->ChannelID())->Name();
|
|
||||||
#endif
|
|
||||||
bool eventHasTimer = false;
|
bool eventHasTimer = false;
|
||||||
if (config.useRemoteTimers && pRemoteTimers) {
|
if (config.useRemoteTimers && pRemoteTimers) {
|
||||||
RemoteTimers_GetMatch_v1_0 rtMatch;
|
RemoteTimers_GetMatch_v1_0 rtMatch;
|
||||||
rtMatch.event = event;
|
rtMatch.event = event;
|
||||||
pRemoteTimers->Service("RemoteTimers::GetMatch-v1.0", &rtMatch);
|
pRemoteTimers->Service("RemoteTimers::GetMatch-v1.0", &rtMatch);
|
||||||
if (rtMatch.timerMatch == tmFull) {
|
if (rtMatch.timerMatch == tmFull) {
|
||||||
eventHasTimer = true;
|
eventHasTimer = true;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
eventHasTimer = event->HasTimer();
|
eventHasTimer = event->HasTimer();
|
||||||
}
|
}
|
||||||
const cString message = (eventHasTimer) ? (timerChanged) ? tr("Timer changed")
|
|
||||||
: tr("Timer created")
|
const cChannels *channels = NULL;
|
||||||
: tr("Timer NOT created");
|
#if VDRVERSNUM >= 20301
|
||||||
cString text = cString::sprintf("%s\n%s\n%s %s - %s\n%s",
|
{
|
||||||
*message,
|
LOCK_CHANNELS_READ;
|
||||||
*channelName,
|
channels = Channels;
|
||||||
*event->GetDateString(),
|
}
|
||||||
*event->GetTimeString(),
|
#else
|
||||||
*event->GetEndTimeString(),
|
channels = &Channels;
|
||||||
event->Title()
|
#endif
|
||||||
);
|
const cString channelName = channels->GetByChannelID(event->ChannelID())->Name();
|
||||||
cRecMenuItemInfo *infoItem = new cRecMenuItemInfo(*text);
|
const cString line1 = (eventHasTimer) ? (timerChanged) ? tr("Timer changed")
|
||||||
infoItem->CalculateHeight(width - 2 * border);
|
: tr("Timer created")
|
||||||
AddMenuItem(infoItem);
|
: tr("Timer NOT created");
|
||||||
AddMenuItem(new cRecMenuItemButton(tr("OK"), rmsClose, true, true));
|
const cString line3 = cString::sprintf("%s %s - %s", *event->GetDateString(), *event->GetTimeString(), *event->GetEndTimeString());
|
||||||
|
const cString line4 = (event && event->Title()) ? cString::sprintf("\"%s\"", event->Title()) : "";
|
||||||
|
|
||||||
|
AddHeader(new cRecMenuItemInfo(*line1, 4, *channelName, *line3, *line4, width - 2 * border));
|
||||||
|
AddFooter(new cRecMenuItemButton(tr("OK"), rmsClose, true, true));
|
||||||
|
|
||||||
CalculateHeight();
|
CalculateHeight();
|
||||||
CreatePixmap();
|
CreatePixmap();
|
||||||
Arrange();
|
Arrange();
|
||||||
|
Loading…
Reference in New Issue
Block a user