2 * Copyright (C) 2005-2015 Team Kodi
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)
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
):
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();
44 pDialog
->SetHeading(CVariant
{m_label
});
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));
55 int selection
= pDialog
->GetSelectedItem();
58 std::string strAction
= StringUtils::Format("ActivateWindow(%s, %s)", GetWindowString(selection
), m_path
.c_str());
59 CBuiltins::GetInstance().Execute(strAction
);
65 const char *CAutorunMediaJob::GetWindowString(int selection
)