diff options
Diffstat (limited to 'xbmc/settings/DiscSettings.h')
-rw-r--r-- | xbmc/settings/DiscSettings.h | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/xbmc/settings/DiscSettings.h b/xbmc/settings/DiscSettings.h new file mode 100644 index 0000000..9d62eea --- /dev/null +++ b/xbmc/settings/DiscSettings.h @@ -0,0 +1,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; +}; |