diff options
author | Martin Prochnow <nordlicht@martins-kabuff.de> | 2006-03-12 18:14:36 +0100 |
---|---|---|
committer | Andreas Mair <andreas@vdr-developer.org> | 2006-03-12 18:14:36 +0100 |
commit | 17f89bafd559b28b5a175aa82730226dfe9f7d69 (patch) | |
tree | 7098824c14f462d44eaaccf5dc4c6975673ed275 /mymenusetup.h | |
parent | babfdd26f9d2fbe164205951413d74aa6d21ef23 (diff) | |
download | vdr-plugin-extrecmenu-17f89bafd559b28b5a175aa82730226dfe9f7d69.tar.gz vdr-plugin-extrecmenu-17f89bafd559b28b5a175aa82730226dfe9f7d69.tar.bz2 |
Version 0.3v0.3
- details for directories are shown now (# of entries, # of new entries)
- option to shown the length of a recording
- option to hide recording date, time and/or length
Diffstat (limited to 'mymenusetup.h')
-rw-r--r-- | mymenusetup.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/mymenusetup.h b/mymenusetup.h new file mode 100644 index 0000000..b137789 --- /dev/null +++ b/mymenusetup.h @@ -0,0 +1,21 @@ +class mySetup +{ + public: + int ShowRecDate; + int ShowRecTime; + int ShowRecLength; +}; + +extern mySetup mysetup; + +class myMenuSetup:public cMenuSetupPage +{ + private: + int showrecdate; + int showrectime; + int showreclength; + protected: + virtual void Store(); + public: + myMenuSetup(); +}; |