diff options
author | Maniac <na@na.na> | 2015-07-03 22:29:41 +0200 |
---|---|---|
committer | Maniac <na@na.na> | 2015-07-03 22:29:41 +0200 |
commit | da407909879f82c15f786bda3fedda0cae892100 (patch) | |
tree | 143c2b842028c38e8f7facfe576567039459afd9 /setup.h | |
download | vdr-plugin-mpv-0.0.4.tar.gz vdr-plugin-mpv-0.0.4.tar.bz2 |
import 0.0.40.0.4
Diffstat (limited to 'setup.h')
-rw-r--r-- | setup.h | 34 |
1 files changed, 34 insertions, 0 deletions
@@ -0,0 +1,34 @@ +////////////////////////////////////////////////////////////////////////////// +/// /// +/// This file is part of the VDR mpv plugin and licensed under AGPLv3 /// +/// /// +/// See the README file for copyright information /// +/// /// +////////////////////////////////////////////////////////////////////////////// + +#ifndef __MPV_SETUP_H +#define __MPV_SETUP_H + +#include <vdr/plugin.h> + +class cMpvPluginSetup:public cMenuSetupPage +{ + private: + void Setup(); + virtual void Store(); + + int SetupHideMainMenuEntry; + int SetupUsePassthrough; + int SetupUseDtsHdPassthrough; + int SetupStereoDownmix; + int SetupPlaylistOnNextKey; + int SetupPlaylistIfNoChapters; + int SetupShowMediaTitle; + + public: + cMpvPluginSetup(); + virtual eOSState ProcessKey(eKeys); +}; + +#endif + |