mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Fixed setting the Blue button in the Schedule/Now/Next menus, so that it only shows "Switch" if the selected event is on a different channel
This commit is contained in:
parent
93ec1a9df2
commit
de6d37134c
2
HISTORY
2
HISTORY
@ -8482,3 +8482,5 @@ Video Disk Recorder Revision History
|
|||||||
- Updated the Hungarian OSD texts (thanks to István Füley).
|
- Updated the Hungarian OSD texts (thanks to István Füley).
|
||||||
- Fixed switching channels in the Schedule menu after going through various Now and
|
- Fixed switching channels in the Schedule menu after going through various Now and
|
||||||
Schedule menus for different channels (reported by Matthias Senzel).
|
Schedule menus for different channels (reported by Matthias Senzel).
|
||||||
|
- Fixed setting the Blue button in the Schedule/Now/Next menus, so that it only shows
|
||||||
|
"Switch" if the selected event is on a different channel.
|
||||||
|
56
menu.c
56
menu.c
@ -4,7 +4,7 @@
|
|||||||
* See the main source file 'vdr.c' for copyright information and
|
* See the main source file 'vdr.c' for copyright information and
|
||||||
* how to reach the author.
|
* how to reach the author.
|
||||||
*
|
*
|
||||||
* $Id: menu.c 3.37 2015/02/03 10:42:55 kls Exp $
|
* $Id: menu.c 3.38 2015/02/03 11:51:29 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "menu.h"
|
#include "menu.h"
|
||||||
@ -1377,6 +1377,7 @@ void cMenuScheduleItem::SetMenuItem(cSkinDisplayMenu *DisplayMenu, int Index, bo
|
|||||||
class cMenuWhatsOn : public cOsdMenu {
|
class cMenuWhatsOn : public cOsdMenu {
|
||||||
private:
|
private:
|
||||||
bool now;
|
bool now;
|
||||||
|
bool canSwitch;
|
||||||
int helpKeys;
|
int helpKeys;
|
||||||
int timerState;
|
int timerState;
|
||||||
eOSState Record(void);
|
eOSState Record(void);
|
||||||
@ -1401,7 +1402,8 @@ cMenuWhatsOn::cMenuWhatsOn(const cSchedules *Schedules, bool Now, int CurrentCha
|
|||||||
{
|
{
|
||||||
SetMenuCategory(Now ? mcScheduleNow : mcScheduleNext);
|
SetMenuCategory(Now ? mcScheduleNow : mcScheduleNext);
|
||||||
now = Now;
|
now = Now;
|
||||||
helpKeys = -1;
|
canSwitch = false;
|
||||||
|
helpKeys = 0;
|
||||||
timerState = 0;
|
timerState = 0;
|
||||||
Timers.Modified(timerState);
|
Timers.Modified(timerState);
|
||||||
for (cChannel *Channel = Channels.First(); Channel; Channel = Channels.Next(Channel)) {
|
for (cChannel *Channel = Channels.First(); Channel; Channel = Channels.Next(Channel)) {
|
||||||
@ -1434,16 +1436,27 @@ bool cMenuWhatsOn::Update(void)
|
|||||||
void cMenuWhatsOn::SetHelpKeys(void)
|
void cMenuWhatsOn::SetHelpKeys(void)
|
||||||
{
|
{
|
||||||
cMenuScheduleItem *item = (cMenuScheduleItem *)Get(Current());
|
cMenuScheduleItem *item = (cMenuScheduleItem *)Get(Current());
|
||||||
|
canSwitch = false;
|
||||||
int NewHelpKeys = 0;
|
int NewHelpKeys = 0;
|
||||||
if (item) {
|
if (item) {
|
||||||
if (item->timerMatch == tmFull)
|
if (item->timerMatch == tmFull)
|
||||||
NewHelpKeys = 2;
|
NewHelpKeys |= 0x02; // "Timer"
|
||||||
else
|
else
|
||||||
NewHelpKeys = 1;
|
NewHelpKeys |= 0x01; // "Record"
|
||||||
|
if (now)
|
||||||
|
NewHelpKeys |= 0x04; // "Next"
|
||||||
|
else
|
||||||
|
NewHelpKeys |= 0x08; // "Now"
|
||||||
|
if (cChannel *Channel = Channels.GetByChannelID(item->event->ChannelID(), true)) {
|
||||||
|
if (Channel->Number() != cDevice::CurrentChannel()) {
|
||||||
|
NewHelpKeys |= 0x10; // "Switch"
|
||||||
|
canSwitch = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if (NewHelpKeys != helpKeys) {
|
if (NewHelpKeys != helpKeys) {
|
||||||
const char *Red[] = { NULL, tr("Button$Record"), tr("Button$Timer") };
|
const char *Red[] = { NULL, tr("Button$Record"), tr("Button$Timer") };
|
||||||
SetHelp(Red[NewHelpKeys], now ? tr("Button$Next") : tr("Button$Now"), tr("Button$Schedule"), tr("Button$Switch"));
|
SetHelp(Red[NewHelpKeys & 0x03], now ? tr("Button$Next") : tr("Button$Now"), tr("Button$Schedule"), canSwitch ? tr("Button$Switch") : NULL);
|
||||||
helpKeys = NewHelpKeys;
|
helpKeys = NewHelpKeys;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -1519,10 +1532,12 @@ eOSState cMenuWhatsOn::ProcessKey(eKeys Key)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case kBlue: return Switch();
|
case kBlue: if (canSwitch)
|
||||||
|
return Switch();
|
||||||
|
break;
|
||||||
case kInfo:
|
case kInfo:
|
||||||
case kOk: if (Count())
|
case kOk: if (Count())
|
||||||
return AddSubMenu(new cMenuEvent(((cMenuScheduleItem *)Get(Current()))->event, true, true));
|
return AddSubMenu(new cMenuEvent(((cMenuScheduleItem *)Get(Current()))->event, canSwitch, true));
|
||||||
break;
|
break;
|
||||||
default: break;
|
default: break;
|
||||||
}
|
}
|
||||||
@ -1543,7 +1558,7 @@ private:
|
|||||||
cSchedulesLock schedulesLock;
|
cSchedulesLock schedulesLock;
|
||||||
const cSchedules *schedules;
|
const cSchedules *schedules;
|
||||||
bool now, next;
|
bool now, next;
|
||||||
int otherChannel;
|
bool canSwitch;
|
||||||
int helpKeys;
|
int helpKeys;
|
||||||
int timerState;
|
int timerState;
|
||||||
eOSState Number(void);
|
eOSState Number(void);
|
||||||
@ -1566,8 +1581,8 @@ cMenuSchedule::cMenuSchedule(void)
|
|||||||
{
|
{
|
||||||
SetMenuCategory(mcSchedule);
|
SetMenuCategory(mcSchedule);
|
||||||
now = next = false;
|
now = next = false;
|
||||||
otherChannel = 0;
|
canSwitch = false;
|
||||||
helpKeys = -1;
|
helpKeys = 0;
|
||||||
timerState = 0;
|
timerState = 0;
|
||||||
Timers.Modified(timerState);
|
Timers.Modified(timerState);
|
||||||
cMenuScheduleItem::SetSortMode(cMenuScheduleItem::ssmAllThis);
|
cMenuScheduleItem::SetSortMode(cMenuScheduleItem::ssmAllThis);
|
||||||
@ -1673,16 +1688,23 @@ bool cMenuSchedule::Update(void)
|
|||||||
void cMenuSchedule::SetHelpKeys(void)
|
void cMenuSchedule::SetHelpKeys(void)
|
||||||
{
|
{
|
||||||
cMenuScheduleItem *item = (cMenuScheduleItem *)Get(Current());
|
cMenuScheduleItem *item = (cMenuScheduleItem *)Get(Current());
|
||||||
|
canSwitch = false;
|
||||||
int NewHelpKeys = 0;
|
int NewHelpKeys = 0;
|
||||||
if (item) {
|
if (item) {
|
||||||
if (item->timerMatch == tmFull)
|
if (item->timerMatch == tmFull)
|
||||||
NewHelpKeys = 2;
|
NewHelpKeys |= 0x02; // "Timer"
|
||||||
else
|
else
|
||||||
NewHelpKeys = 1;
|
NewHelpKeys |= 0x01; // "Record"
|
||||||
|
if (cChannel *Channel = Channels.GetByChannelID(item->event->ChannelID(), true)) {
|
||||||
|
if (Channel->Number() != cDevice::CurrentChannel()) {
|
||||||
|
NewHelpKeys |= 0x10; // "Switch"
|
||||||
|
canSwitch = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if (NewHelpKeys != helpKeys) {
|
if (NewHelpKeys != helpKeys) {
|
||||||
const char *Red[] = { NULL, tr("Button$Record"), tr("Button$Timer") };
|
const char *Red[] = { NULL, tr("Button$Record"), tr("Button$Timer") };
|
||||||
SetHelp(Red[NewHelpKeys], tr("Button$Now"), tr("Button$Next"));
|
SetHelp(Red[NewHelpKeys & 0x03], tr("Button$Now"), tr("Button$Next"), canSwitch ? tr("Button$Switch") : NULL);
|
||||||
helpKeys = NewHelpKeys;
|
helpKeys = NewHelpKeys;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -1787,12 +1809,12 @@ eOSState cMenuSchedule::ProcessKey(eKeys Key)
|
|||||||
case kYellow: if (schedules)
|
case kYellow: if (schedules)
|
||||||
return AddSubMenu(new cMenuWhatsOn(schedules, false, cMenuWhatsOn::CurrentChannel()));
|
return AddSubMenu(new cMenuWhatsOn(schedules, false, cMenuWhatsOn::CurrentChannel()));
|
||||||
break;
|
break;
|
||||||
case kBlue: if (Count() && otherChannel)
|
case kBlue: if (canSwitch)
|
||||||
return Switch();
|
return Switch();
|
||||||
break;
|
break;
|
||||||
case kInfo:
|
case kInfo:
|
||||||
case kOk: if (Count())
|
case kOk: if (Count())
|
||||||
return AddSubMenu(new cMenuEvent(((cMenuScheduleItem *)Get(Current()))->event, otherChannel, true));
|
return AddSubMenu(new cMenuEvent(((cMenuScheduleItem *)Get(Current()))->event, canSwitch, true));
|
||||||
break;
|
break;
|
||||||
default: break;
|
default: break;
|
||||||
}
|
}
|
||||||
@ -1805,10 +1827,6 @@ eOSState cMenuSchedule::ProcessKey(eKeys Key)
|
|||||||
if (channel) {
|
if (channel) {
|
||||||
cMenuScheduleItem::SetSortMode(cMenuScheduleItem::ssmAllThis);
|
cMenuScheduleItem::SetSortMode(cMenuScheduleItem::ssmAllThis);
|
||||||
PrepareScheduleAllThis(NULL, channel);
|
PrepareScheduleAllThis(NULL, channel);
|
||||||
if (channel->Number() != cDevice::CurrentChannel()) {
|
|
||||||
otherChannel = channel->Number();
|
|
||||||
SetHelp(Count() ? tr("Button$Record") : NULL, tr("Button$Now"), tr("Button$Next"), tr("Button$Switch"));
|
|
||||||
}
|
|
||||||
Display();
|
Display();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user