2 Copyright 2004-2005 Chris Tallon
4 This file is part of VOMP.
6 VOMP is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 VOMP is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with VOMP. If not, see <https://www.gnu.org/licenses/>.
26 #include "messagequeue.h"
32 isMuted = Audio::getInstance()->toggleUserMute();
36 if (Video::getInstance()->getFormat() == Video::PAL)
38 setPosition(600, 500);
42 setPosition(590, 400);
48 // Make sure the timer is deleted
49 Timers::getInstance()->cancelTimer(this, 1);
55 fillColour(DrawStyle::VIEWBACKGROUND);
59 if (isMuted) w.nextSymbol = WSymbol::MUTE;
60 else w.nextSymbol = WSymbol::UNMUTE;
64 Timers::getInstance()->setTimerD(this, 1, 2);
67 void VMute::timercall(int /* clientReference */)
70 Message* m = new Message(); // Delete self
71 m->message = Message::CLOSE_ME;
72 m->p_to = Message::BOXSTACK;
74 MessageQueue::getInstance()->postMessage(m);
77 int VMute::handleCommand(int command)
83 isMuted = Audio::getInstance()->toggleUserMute();
85 BoxStack::getInstance()->update(this);
86 return BoxStack::COMMAND_HANDLED;
90 // allow command to drop through to other views
91 return BoxStack::DROP_THROUGH;