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/>.
28 #include "messagequeue.h"
32 displayVolume = Audio::getInstance()->getVolume();
36 if (Video::getInstance()->getFormat() == Video::PAL)
38 setPosition(100, 499);
48 // Make sure the timer is deleted
49 Timers::getInstance()->cancelTimer(this, 1);
56 fillColour(DrawStyle::VIEWBACKGROUND);
60 w.nextSymbol = WSymbol::VOLUME2;
66 for(; i < displayVolume; i++)
68 w.nextSymbol = WSymbol::VOLBAR;
69 w.setPosition(40 + (i * 9), 3);
75 w.nextSymbol = WSymbol::VOLDOT;
76 w.setPosition(40 + (i * 9), 13);
80 Timers::getInstance()->setTimerD(this, 1, 2);
83 void VVolume::timercall(int /* clientReference */)
86 Message* m = new Message(); // Delete self
87 m->message = Message::CLOSE_ME;
88 m->to = BoxStack::getInstance();
90 MessageQueue::getInstance()->postMessage(m);
93 int VVolume::handleCommand(int command)
97 case Input::VOLUMEDOWN:
99 displayVolume = Audio::getInstance()->volumeDown();
101 BoxStack::getInstance()->update(this);
105 case Input::VOLUMEUP:
107 displayVolume = Audio::getInstance()->volumeUp();
109 BoxStack::getInstance()->update(this);
115 // allow command to drop through to other views