VTB: release CVBuffer after it actually has been rendered
[xbmc.git] / xbmc / storage / AutorunMediaJob.cpp
blob28fd03419cb2d4dcb4f38c3c89abc9dbd4b3ec2b
1 /*
2 * Copyright (C) 2005-2015 Team Kodi
3 * http://kodi.tv
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.
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.
15 * You should have received a copy of the GNU General Public License
16 * along with Kodi; see the file COPYING. If not, see
17 * <http://www.gnu.org/licenses/>.
20 #include "AutorunMediaJob.h"
21 #include "Application.h"
22 #include "interfaces/builtins/Builtins.h"
23 #include "guilib/GUIWindowManager.h"
24 #include "guilib/LocalizeStrings.h"
25 #include "dialogs/GUIDialogSelect.h"
26 #include "utils/StringUtils.h"
27 #include "utils/Variant.h"
29 CAutorunMediaJob::CAutorunMediaJob(const std::string &label, const std::string &path):
30 m_path(path),
31 m_label(label)
35 bool CAutorunMediaJob::DoWork()
37 CGUIDialogSelect* pDialog= (CGUIDialogSelect*)g_windowManager.GetWindow(WINDOW_DIALOG_SELECT);
39 // wake up and turn off the screensaver if it's active
40 g_application.WakeUpScreenSaverAndDPMS();
42 pDialog->Reset();
43 if (!m_label.empty())
44 pDialog->SetHeading(CVariant{m_label});
45 else
46 pDialog->SetHeading(CVariant{g_localizeStrings.Get(21331)});
48 pDialog->Add(g_localizeStrings.Get(21332));
49 pDialog->Add(g_localizeStrings.Get(21333));
50 pDialog->Add(g_localizeStrings.Get(21334));
51 pDialog->Add(g_localizeStrings.Get(21335));
53 pDialog->Open();
55 int selection = pDialog->GetSelectedItem();
56 if (selection >= 0)
58 std::string strAction = StringUtils::Format("ActivateWindow(%s, %s)", GetWindowString(selection), m_path.c_str());
59 CBuiltins::GetInstance().Execute(strAction);
62 return true;
65 const char *CAutorunMediaJob::GetWindowString(int selection)
67 switch (selection)
69 case 0:
70 return "Videos";
71 case 1:
72 return "Music";
73 case 2:
74 return "Pictures";
75 case 3:
76 return "FileManager";
77 default:
78 return "FileManager";