blob: 9d62eea18f93d3426cc82058fe4e3a99076a57c4 (
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
|
/*
* Copyright (C) 2005-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.
*/
#pragma once
/**
* Playback settings
*/
enum BDPlaybackMode
{
BD_PLAYBACK_SIMPLE_MENU = 0,
BD_PLAYBACK_DISC_MENU,
BD_PLAYBACK_MAIN_TITLE,
};
#include "settings/lib/ISettingCallback.h"
class CDiscSettings : public ISettingCallback
{
public:
/* ISettingCallback*/
static CDiscSettings& GetInstance();
void OnSettingChanged(const std::shared_ptr<const CSetting>& setting) override;
private:
CDiscSettings() = default;
~CDiscSettings() override = default;
};
|