e1d94db88a106b44f103e9e6cfcf8f62b7f57681
[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
27 CAutorunMediaJob::CAutorunMediaJob(const CStdString &label, const CStdString &path)
28 {
29   m_label = label;
30   m_path  = path;
31 }
32
33 bool CAutorunMediaJob::DoWork()
34 {
35   CGUIDialogSelect* pDialog= (CGUIDialogSelect*)g_windowManager.GetWindow(WINDOW_DIALOG_SELECT);
36
37   // wake up and turn off the screensaver if it's active
38   g_application.WakeUpScreenSaverAndDPMS();
39
40   pDialog->Reset();
41   if (m_label.size() > 0)
42     pDialog->SetHeading(m_label);
43   else
44     pDialog->SetHeading("New media detected");
45
46   pDialog->Add("Browse videos");
47   pDialog->Add("Browse music");
48   pDialog->Add("Browse pictures");
49   pDialog->Add("Browse files");
50
51   pDialog->DoModal();
52
53   int selection = pDialog->GetSelectedLabel();
54   if (selection >= 0)
55   {
56     CStdString strAction;
57     strAction.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 }