blob: 0c90dd28493e49909fb4e95c2f4f20da6ab9f680 (
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
/*
* 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 "GUIDialogMusicOverlay.h"
#include "guilib/GUIWindowManager.h"
#include "guilib/Key.h"
#include "input/MouseStat.h"
#define CONTROL_LOGO_PIC 1
CGUIDialogMusicOverlay::CGUIDialogMusicOverlay()
: CGUIDialog(WINDOW_DIALOG_MUSIC_OVERLAY, "MusicOverlay.xml")
{
m_renderOrder = 0;
m_loadType = KEEP_IN_MEMORY;
}
CGUIDialogMusicOverlay::~CGUIDialogMusicOverlay()
{
}
bool CGUIDialogMusicOverlay::OnMessage(CGUIMessage& message)
{ // check that the mouse wasn't clicked on the thumb...
if (message.GetMessage() == GUI_MSG_CLICKED)
{
if (message.GetControlId() == GetID() && message.GetSenderId() == 0)
{
if (message.GetParam1() == ACTION_SELECT_ITEM)
{ // switch to fullscreen visualisation mode...
CGUIMessage msg(GUI_MSG_FULLSCREEN, 0, GetID());
g_windowManager.SendMessage(msg);
}
}
}
return CGUIDialog::OnMessage(message);
}
EVENT_RESULT CGUIDialogMusicOverlay::OnMouseEvent(const CPoint &point, const CMouseEvent &event)
{
CGUIControl *pControl = GetControl(CONTROL_LOGO_PIC);
if (pControl && pControl->HitTest(point))
{
// send highlight message
g_Mouse.SetState(MOUSE_STATE_FOCUS);
if (event.m_id == ACTION_MOUSE_LEFT_CLICK)
{ // send mouse message
CGUIMessage message(GUI_MSG_FULLSCREEN, CONTROL_LOGO_PIC, GetID());
g_windowManager.SendMessage(message);
}
if (event.m_id == ACTION_MOUSE_RIGHT_CLICK)
{ // toggle the playlist window
if (g_windowManager.GetActiveWindow() == WINDOW_MUSIC_PLAYLIST)
g_windowManager.PreviousWindow();
else
g_windowManager.ActivateWindow(WINDOW_MUSIC_PLAYLIST);
}
return EVENT_RESULT_HANDLED;
}
return EVENT_RESULT_UNHANDLED;
}
void CGUIDialogMusicOverlay::SetDefaults()
{
CGUIDialog::SetDefaults();
m_renderOrder = 0;
SetVisibleCondition("skin.hasmusicoverlay");
}
|