summaryrefslogtreecommitdiff
path: root/setup.h
diff options
context:
space:
mode:
authorroot <root@ion.localnet>2010-07-11 16:16:46 +0200
committerroot <root@ion.localnet>2010-07-11 16:16:46 +0200
commit387018c94f7cd138cba5fe85eb0c5c58a0a7f00c (patch)
tree60b3c85425f680c203e8416b7aa4ad7ac95d495b /setup.h
parentbb560a735a93448872e0d954bac3d36e3b410051 (diff)
downloadvdr-plugin-targavfd-387018c94f7cd138cba5fe85eb0c5c58a0a7f00c.tar.gz
vdr-plugin-targavfd-387018c94f7cd138cba5fe85eb0c5c58a0a7f00c.tar.bz2
* Add option to control volume bargraph
Diffstat (limited to 'setup.h')
-rw-r--r--setup.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/setup.h b/setup.h
index 12650b2..e9f5cf0 100644
--- a/setup.h
+++ b/setup.h
@@ -25,6 +25,13 @@ enum eOnExitMode {
,eOnExitMode_LASTITEM
};
+enum eVolumeMode {
+ eVolumeMode_ShowNever /**< Show the volume bar never */
+ ,eVolumeMode_ShowTimed /**< Show the volume bar short time */
+ ,eVolumeMode_ShowEver /**< Show the volume bar ever */
+ ,eVolumeMode_LASTITEM
+};
+
struct cVFDSetup
{
int m_nOnExit;
@@ -40,6 +47,8 @@ struct cVFDSetup
int m_bTwoLineMode; /** enable two line mode */
+ int m_nVolumeMode;
+
cVFDSetup(void);
cVFDSetup(const cVFDSetup& x);
cVFDSetup& operator = (const cVFDSetup& x);