]> git.vomp.tv Git - vompclient.git/blob - vmute.cc
20 CWFs, fix some snprintf calls
[vompclient.git] / vmute.cc
1 /*
2     Copyright 2004-2005 Chris Tallon
3
4     This file is part of VOMP.
5
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.
10
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.
15
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/>.
18 */
19
20 #include "vmute.h"
21
22 #include "input.h"
23 #include "audio.h"
24 #include "video.h"
25 #include "wsymbol.h"
26 #include "colour.h"
27 #include "timers.h"
28 #include "boxstack.h"
29 #include "messagequeue.h"
30
31 VMute::VMute()
32 {
33   isMuted = Audio::getInstance()->toggleUserMute();
34
35   setSize(40, 40);
36   createBuffer();
37   if (Video::getInstance()->getFormat() == Video::PAL)
38   {
39     setPosition(600, 500);
40   }
41   else
42   {
43     setPosition(590, 400);
44   }
45 }
46
47 VMute::~VMute()
48 {
49   // Make sure the timer is deleted
50   Timers::getInstance()->cancelTimer(this, 1);
51 }
52
53 void VMute::draw()
54 {
55   // draw background?
56   fillColour(DrawStyle::VIEWBACKGROUND);
57
58   WSymbol w;
59   TEMPADD(&w);
60   if (isMuted) w.nextSymbol = WSymbol::MUTE;
61   else w.nextSymbol = WSymbol::UNMUTE;
62   w.setPosition(5, 5);
63   w.draw();
64
65   Timers::getInstance()->setTimerD(this, 1, 2);
66 }
67
68 void VMute::timercall(int /* clientReference */)
69 {
70   // delete me!
71   Message* m = new Message(); // Delete self
72   m->message = Message::CLOSE_ME;
73   m->to = BoxStack::getInstance();
74   m->from = this;
75   MessageQueue::getInstance()->postMessage(m);
76 }
77
78 int VMute::handleCommand(int command)
79 {
80   switch(command)
81   {
82     case Input::MUTE:
83     {
84       isMuted = Audio::getInstance()->toggleUserMute();
85       draw();
86       BoxStack::getInstance()->update(this);
87       // handled
88       return 2;
89     }
90   }
91
92   // allow command to drop through to other views
93   return 0;
94 }