summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2001-09-23 14:36:38 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2001-09-23 14:36:38 +0200
commit0ed710a8435bc3430b0c713e3d1162b11a06deb4 (patch)
treef99c92f3d02f5c54309d4348626c3c5fc2c7ae41
parent34e6eaad5834f9ec459ef4b925c79d00b0f4899d (diff)
downloadvdr-0.9.6.tar.gz
vdr-0.9.6.tar.bz2
Made the volume, mute and power keys work when a menu is active, too0.9.6
-rw-r--r--CONTRIBUTORS3
-rw-r--r--HISTORY2
-rw-r--r--vdr.c203
3 files changed, 109 insertions, 99 deletions
diff --git a/CONTRIBUTORS b/CONTRIBUTORS
index 9090ca9f..f1157b1f 100644
--- a/CONTRIBUTORS
+++ b/CONTRIBUTORS
@@ -139,3 +139,6 @@ Rolf Hakenes <hakenes@hippomi.de>
Andreas Vitting <Andreas@huji.de>
for providing code that closes all unused file descriptors in the child
process of a pipe (used in cPipe)
+
+Matthias Weingart <matthias@pentax.boerde.de>
+ for fixing handling of the volume, mute and power keys when menus are active
diff --git a/HISTORY b/HISTORY
index b4265046..143c2f45 100644
--- a/HISTORY
+++ b/HISTORY
@@ -784,3 +784,5 @@ Video Disk Recorder Revision History
- Writing the current time (as seen by VDR) into the log file when starting
a timer recording (this may help debugging cases where timers don't start
at the expected time).
+- Made the volume, mute and power keys work when a menu is active, too (thanks
+ to Matthias Weingart).
diff --git a/vdr.c b/vdr.c
index a095dc9d..d7c3f06e 100644
--- a/vdr.c
+++ b/vdr.c
@@ -22,7 +22,7 @@
*
* The project's page is at http://www.cadsoft.de/people/kls/vdr
*
- * $Id: vdr.c 1.78 2001/09/23 10:59:29 kls Exp $
+ * $Id: vdr.c 1.79 2001/09/23 14:33:39 kls Exp $
*/
#define _GNU_SOURCE
@@ -367,106 +367,111 @@ int main(int argc, char *argv[])
EITScanner.Activity();
LastActivity = time(NULL);
}
- if (*Interact && key != kPower) {
- switch ((*Interact)->ProcessKey(key)) {
- case osMenu: DELETENULL(Menu);
- Menu = new cMenuMain(ReplayControl);
- break;
- case osRecord: DELETENULL(Menu);
- if (!cRecordControls::Start())
- Interface->Error(tr("No free DVB device to record!"));
- break;
- case osRecordings:
- DELETENULL(Menu);
- DELETENULL(ReplayControl);
- Menu = new cMenuRecordings;
- break;
- case osReplay: DELETENULL(Menu);
- DELETENULL(ReplayControl);
- ReplayControl = new cReplayControl;
- break;
+ // Keys that must work independent of any interactive mode:
+ switch (key) {
+ // Volume Control:
+ case kVolUp|k_Repeat:
+ case kVolUp:
+ case kVolDn|k_Repeat:
+ case kVolDn:
+ cDvbApi::PrimaryDvbApi->SetVolume(NORMALKEY(key) == kVolDn ? -VOLUMEDELTA : VOLUMEDELTA);
+ break;
+ case kMute:
+ cDvbApi::PrimaryDvbApi->ToggleMute();
+ break;
+ // Power off:
+ case kPower: isyslog(LOG_INFO, "Power button pressed");
+ DELETENULL(*Interact);
+ if (!Shutdown) {
+ Interface->Error(tr("Can't shutdown - option '-s' not given!"));
+ break;
+ }
+ if (cRecordControls::Active()) {
+ if (Interface->Confirm(tr("Recording - shut down anyway?")))
+ ForceShutdown = true;
+ }
+ LastActivity = 1; // not 0, see below!
+ break;
+ default:
+ if (*Interact) {
+ switch ((*Interact)->ProcessKey(key)) {
+ case osMenu: DELETENULL(Menu);
+ Menu = new cMenuMain(ReplayControl);
+ break;
+ case osRecord: DELETENULL(Menu);
+ if (!cRecordControls::Start())
+ Interface->Error(tr("No free DVB device to record!"));
+ break;
+ case osRecordings:
+ DELETENULL(Menu);
+ DELETENULL(ReplayControl);
+ Menu = new cMenuRecordings;
+ break;
+ case osReplay: DELETENULL(Menu);
+ DELETENULL(ReplayControl);
+ ReplayControl = new cReplayControl;
+ break;
#ifdef DVDSUPPORT
- case osDVD: DELETENULL(Menu);
- DELETENULL(ReplayControl);
- Menu = new cMenuDVD;
- break;
+ case osDVD: DELETENULL(Menu);
+ DELETENULL(ReplayControl);
+ Menu = new cMenuDVD;
+ break;
#endif //DVDSUPPORT
- case osStopReplay:
- DELETENULL(*Interact);
- DELETENULL(ReplayControl);
- break;
- case osSwitchDvb:
- DELETENULL(*Interact);
- Interface->Info(tr("Switching primary DVB..."));
- cDvbApi::SetPrimaryDvbApi(Setup.PrimaryDVB);
- break;
- case osBack:
- case osEnd: DELETENULL(*Interact);
- break;
- default: ;
- }
- }
- else {
- switch (key) {
- // Toggle channels:
- case k0: {
- int CurrentChannel = cDvbApi::CurrentChannel();
- Channels.SwitchTo(PreviousChannel);
- PreviousChannel = CurrentChannel;
- break;
- }
- // Direct Channel Select:
- case k1 ... k9:
- Menu = new cDisplayChannel(key);
- break;
- // Left/Right rotates trough channel groups:
- case kLeft|k_Repeat:
- case kLeft:
- case kRight|k_Repeat:
- case kRight:
- Menu = new cDisplayChannel(NORMALKEY(key));
- break;
- // Up/Down Channel Select:
- case kUp|k_Repeat:
- case kUp:
- case kDown|k_Repeat:
- case kDown: {
- int n = cDvbApi::CurrentChannel() + (NORMALKEY(key) == kUp ? 1 : -1);
- cChannel *channel = Channels.GetByNumber(n);
- if (channel)
- channel->Switch();
- break;
- }
- // Menu Control:
- case kMenu: Menu = new cMenuMain(ReplayControl); break;
- // Viewing Control:
- case kOk: LastChannel = -1; break; // forces channel display
- // Volume Control:
- case kVolUp|k_Repeat:
- case kVolUp:
- case kVolDn|k_Repeat:
- case kVolDn:
- cDvbApi::PrimaryDvbApi->SetVolume(NORMALKEY(key) == kVolDn ? -VOLUMEDELTA : VOLUMEDELTA);
- break;
- case kMute:
- cDvbApi::PrimaryDvbApi->ToggleMute();
- break;
- // Power off:
- case kPower: isyslog(LOG_INFO, "Power button pressed");
- DELETENULL(*Interact);
- if (!Shutdown) {
- Interface->Error(tr("Can't shutdown - option '-s' not given!"));
- break;
- }
- if (cRecordControls::Active()) {
- if (Interface->Confirm(tr("Recording - shut down anyway?")))
- ForceShutdown = true;
- }
- LastActivity = 1; // not 0, see below!
- break;
- default: break;
- }
- }
+ case osStopReplay:
+ DELETENULL(*Interact);
+ DELETENULL(ReplayControl);
+ break;
+ case osSwitchDvb:
+ DELETENULL(*Interact);
+ Interface->Info(tr("Switching primary DVB..."));
+ cDvbApi::SetPrimaryDvbApi(Setup.PrimaryDVB);
+ break;
+ case osBack:
+ case osEnd: DELETENULL(*Interact);
+ break;
+ default: ;
+ }
+ }
+ else {
+ // Key functions in "normal" viewing mode:
+ switch (key) {
+ // Toggle channels:
+ case k0: {
+ int CurrentChannel = cDvbApi::CurrentChannel();
+ Channels.SwitchTo(PreviousChannel);
+ PreviousChannel = CurrentChannel;
+ break;
+ }
+ // Direct Channel Select:
+ case k1 ... k9:
+ Menu = new cDisplayChannel(key);
+ break;
+ // Left/Right rotates trough channel groups:
+ case kLeft|k_Repeat:
+ case kLeft:
+ case kRight|k_Repeat:
+ case kRight:
+ Menu = new cDisplayChannel(NORMALKEY(key));
+ break;
+ // Up/Down Channel Select:
+ case kUp|k_Repeat:
+ case kUp:
+ case kDown|k_Repeat:
+ case kDown: {
+ int n = cDvbApi::CurrentChannel() + (NORMALKEY(key) == kUp ? 1 : -1);
+ cChannel *channel = Channels.GetByNumber(n);
+ if (channel)
+ channel->Switch();
+ break;
+ }
+ // Menu Control:
+ case kMenu: Menu = new cMenuMain(ReplayControl); break;
+ // Viewing Control:
+ case kOk: LastChannel = -1; break; // forces channel display
+ default: break;
+ }
+ }
+ }
if (!Menu) {
EITScanner.Process();
cVideoCutter::Active();