summaryrefslogtreecommitdiff
path: root/plugin/setup.h
diff options
context:
space:
mode:
authorJochen Dolze <vdr@dolze.de>2010-12-31 16:47:19 +0100
committerJochen Dolze <vdr@dolze.de>2010-12-31 16:47:19 +0100
commitfaccdbdac791a6d5277485f75a69f2c9264b4f7a (patch)
tree1a968b27af62ceb9aaa69402ffe930fed3121dbb /plugin/setup.h
parentb4a5cef7ea681eb9b65970621835852288ada66a (diff)
downloadvdr-plugin-markad-faccdbdac791a6d5277485f75a69f2c9264b4f7a.tar.gz
vdr-plugin-markad-faccdbdac791a6d5277485f75a69f2c9264b4f7a.tar.bz2
Added new plugin option 'scan channel with logos only'
Abort markad if timer gets deleted by user (reported by Mase) New logo DAS-VIERTE
Diffstat (limited to 'plugin/setup.h')
-rw-r--r--plugin/setup.h14
1 files changed, 13 insertions, 1 deletions
diff --git a/plugin/setup.h b/plugin/setup.h
index cd9cc0f..0080dfc 100644
--- a/plugin/setup.h
+++ b/plugin/setup.h
@@ -24,6 +24,9 @@ struct setup
bool AC3Always;
bool HideMainMenuEntry;
bool Log2Rec;
+ bool LogoOnly;
+ const char *LogoDir;
+ const char *PluginName;
};
class cSetupMarkAd : public cMenuSetupPage
@@ -45,11 +48,20 @@ private:
int hidemainmenuentry;
int ac3always;
int log2rec;
+ int logoonly;
void write(void);
+ int lpos;
protected:
virtual void Store(void);
public:
- cSetupMarkAd(struct setup *setup);
+ cSetupMarkAd(struct setup *Setup);
+ eOSState ProcessKey(eKeys Key);
+};
+
+class cSetupMarkAdList : public cOsdMenu
+{
+public:
+ cSetupMarkAdList(struct setup *Setup);
eOSState ProcessKey(eKeys Key);
};