blob: b66ce89af4588c98dda4220f5f95f20c235f267a (
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
57
58
59
|
/*
* Copyright (C) 2016-2018 Team Kodi
* This file is part of Kodi - https://kodi.tv
*
* SPDX-License-Identifier: GPL-2.0-or-later
* See LICENSES/README.md for more information.
*/
#include "GUIDialogNewJoystick.h"
#include "ServiceBroker.h"
#include "guilib/GUIComponent.h"
#include "guilib/GUIWindowManager.h"
#include "guilib/WindowIDs.h"
#include "messaging/helpers/DialogHelper.h"
#include "settings/Settings.h"
#include "settings/SettingsComponent.h"
using namespace KODI;
using namespace JOYSTICK;
CGUIDialogNewJoystick::CGUIDialogNewJoystick() : CThread("NewJoystickDlg")
{
}
void CGUIDialogNewJoystick::ShowAsync()
{
bool bShow = true;
if (IsRunning())
bShow = false;
else if (!CServiceBroker::GetSettingsComponent()->GetSettings()->GetBool(
CSettings::SETTING_INPUT_ASKNEWCONTROLLERS))
bShow = false;
else if (CServiceBroker::GetGUI()->GetWindowManager().IsWindowActive(
WINDOW_DIALOG_GAME_CONTROLLERS, false))
bShow = false;
if (bShow)
Create();
}
void CGUIDialogNewJoystick::Process()
{
using namespace MESSAGING::HELPERS;
// "New controller detected"
// "A new controller has been detected. Configuration can be done at any time in "Settings ->
// System Settings -> Input". Would you like to configure it now?"
if (ShowYesNoDialogText(CVariant{35011}, CVariant{35012}) == DialogResponse::CHOICE_YES)
{
CServiceBroker::GetGUI()->GetWindowManager().ActivateWindow(WINDOW_DIALOG_GAME_CONTROLLERS);
}
else
{
CServiceBroker::GetSettingsComponent()->GetSettings()->SetBool(
CSettings::SETTING_INPUT_ASKNEWCONTROLLERS, false);
}
}
|