blob: 48fe717b61c2d746601b2447ff37625688334ddb (
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) 2016 Team Kodi
* http://kodi.tv
*
* 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 "storage/MediaManager.h"
#include "ContextMenus.h"
namespace CONTEXTMENU
{
bool CEjectDisk::IsVisible(const CFileItem& item) const
{
#ifdef HAS_DVD_DRIVE
return item.IsRemovable() && (item.IsDVD() || item.IsCDDA());
#else
return false;
#endif
}
bool CEjectDisk::Execute(const CFileItemPtr& item) const
{
#ifdef HAS_DVD_DRIVE
g_mediaManager.ToggleTray(g_mediaManager.TranslateDevicePath(item->GetPath())[0]);
#endif
return true;
}
bool CEjectDrive::IsVisible(const CFileItem& item) const
{
// Must be HDD
return item.IsRemovable() && !item.IsDVD() && !item.IsCDDA();
}
bool CEjectDrive::Execute(const CFileItemPtr& item) const
{
return g_mediaManager.Eject(item->GetPath());
}
} // namespace CONTEXTMENU
|