Merge pull request #5039 from CEikermann/patch-1
[vuplus_xbmc] / xbmc / storage / AutorunMediaJob.cpp
1 /*
2  *      Copyright (C) 2005-2013 Team XBMC
3  *      http://xbmc.org
4  *
5  *  This Program is free software; you can redistribute it and/or modify
6  *  it under the terms of the GNU General Public License as published by
7  *  the Free Software Foundation; either version 2, or (at your option)
8  *  any later version.
9  *
10  *  This Program is distributed in the hope that it will be useful,
11  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  *  GNU General Public License for more details.
14  *
15  *  You should have received a copy of the GNU General Public License
16  *  along with XBMC; see the file COPYING.  If not, see
17  *  <http://www.gnu.org/licenses/>.
18  *
19  */
20 #include "AutorunMediaJob.h"
21 #include "Application.h"
22 #include "interfaces/Builtins.h"
23 #include "guilib/GUIWindowManager.h"
24 #include "dialogs/GUIDialogSelect.h"
25 #include "guilib/Key.h"
26 #include "utils/StringUtils.h"
27
28 CAutorunMediaJob::CAutorunMediaJob(const CStdString &label, const CStdString &path)
29 {
30   m_label = label;
31   m_path  = path;
32 }
33
34 bool CAutorunMediaJob::DoWork()
35 {
36   CGUIDialogSelect* pDialog= (CGUIDialogSelect*)g_windowManager.GetWindow(WINDOW_DIALOG_SELECT);
37
38   // wake up and turn off the screensaver if it's active
39   g_application.WakeUpScreenSaverAndDPMS();
40
41   pDialog->Reset();
42   if (m_label.size() > 0)
43     pDialog->SetHeading(m_label);
44   else
45     pDialog->SetHeading("New media detected");
46
47   pDialog->Add("Browse videos");
48   pDialog->Add("Browse music");
49   pDialog->Add("Browse pictures");
50   pDialog->Add("Browse files");
51
52   pDialog->DoModal();
53
54   int selection = pDialog->GetSelectedLabel();
55   if (selection >= 0)
56   {
57     CStdString strAction = StringUtils::Format("ActivateWindow(%s, %s)", GetWindowString(selection), m_path.c_str());
58     CBuiltins::Execute(strAction);
59   }
60
61   return true;
62 }
63
64 const char *CAutorunMediaJob::GetWindowString(int selection)
65 {
66   switch (selection)
67   {
68     case 0:
69       return "VideoFiles";
70     case 1:
71       return "MusicFiles";
72     case 2:
73       return "Pictures";
74     case 3:
75       return "FileManager";
76     default:
77       return "FileManager";
78   }
79 }