blob: b5684e534e28d65b5a5a99b3ef5cf21d864855f1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
/*
* Copyright (C) 2005-2013 Team XBMC
* http://xbmc.org
*
* This Program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This Program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with XBMC; see the file COPYING. If not, see
* <http://www.gnu.org/licenses/>.
*
*/
#include "GUIDialogVolumeBar.h"
#include "guilib/Key.h"
#include "utils/TimeUtils.h"
#define VOLUME_BAR_DISPLAY_TIME 1000L
CGUIDialogVolumeBar::CGUIDialogVolumeBar(void)
: CGUIDialog(WINDOW_DIALOG_VOLUME_BAR, "DialogVolumeBar.xml")
{
m_loadType = LOAD_ON_GUI_INIT;
SetAutoClose(VOLUME_BAR_DISPLAY_TIME);
}
CGUIDialogVolumeBar::~CGUIDialogVolumeBar(void)
{}
bool CGUIDialogVolumeBar::OnAction(const CAction &action)
{
if (action.GetID() == ACTION_VOLUME_UP || action.GetID() == ACTION_VOLUME_DOWN)
{ // reset the timer, as we've changed the volume level
SetAutoClose(VOLUME_BAR_DISPLAY_TIME);
return true;
}
return CGUIDialog::OnAction(action);
}
bool CGUIDialogVolumeBar::OnMessage(CGUIMessage& message)
{
switch ( message.GetMessage() )
{
case GUI_MSG_WINDOW_INIT:
case GUI_MSG_WINDOW_DEINIT:
return CGUIDialog::OnMessage(message);
}
return false; // don't process anything other than what we need!
}
|