mirror of
https://projects.vdr-developer.org/git/vdr-plugin-tvguide.git
synced 2023-10-05 15:01:48 +02:00
Refactor cRecMenuAskFolder
This commit is contained in:
parent
e707ec7d4f
commit
1f1498a734
14
recmenus.c
14
recmenus.c
@ -57,14 +57,16 @@ cRecMenuMain::cRecMenuMain(bool epgSearchAvailable, bool timerActive, bool switc
|
|||||||
******************************************************************************************/
|
******************************************************************************************/
|
||||||
|
|
||||||
// --- cRecMenuAskFolder ---------------------------------------------------------
|
// --- cRecMenuAskFolder ---------------------------------------------------------
|
||||||
cRecMenuAskFolder::cRecMenuAskFolder(const cEvent *event, eRecMenuState nextAction) {
|
cRecMenuAskFolder::cRecMenuAskFolder(const cEvent *event, eRecMenuState nextAction) { // OK
|
||||||
SetWidthPercent(80);
|
SetWidthPercent(80);
|
||||||
|
|
||||||
NextAction = nextAction;
|
NextAction = nextAction;
|
||||||
cString message = tr("Set Folder for");
|
|
||||||
cString headerText = cString::sprintf("%s\n\"%s\"", *message, event->Title());
|
const cString line1 = tr("Set Folder for");
|
||||||
cRecMenuItemInfo *infoItem = new cRecMenuItemInfo(*headerText, true);
|
const cString line2 = (event && event->Title()) ? cString::sprintf("\"%s\"", event->Title()) : "";
|
||||||
infoItem->CalculateHeight(width - 2 * border);
|
|
||||||
SetHeader(infoItem);
|
AddHeader(new cRecMenuItemInfo(*line1, 2, *line2, "", "", width - 2 * border, true));
|
||||||
|
AddFooter(new cRecMenuItemButton(tr("root video folder"), nextAction, true, false, true));
|
||||||
|
|
||||||
AddMenuItemInitial(new cRecMenuItemButton(tr("root video folder"), nextAction, true, false, true));
|
AddMenuItemInitial(new cRecMenuItemButton(tr("root video folder"), nextAction, true, false, true));
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user