summaryrefslogtreecommitdiff
path: root/setup.h
diff options
context:
space:
mode:
authormartin <martin@localhost.localdomain>2011-01-15 16:59:59 +0100
committermartin <martin@localhost.localdomain>2011-01-15 16:59:59 +0100
commit015380b9fd9f4e3b34edc83d2ee57db1aa809c34 (patch)
treeb5e817fc36c2199a27a54e2b9a94df5a0bb8a9ca /setup.h
parent807c23e6213b71abd46b62d9f07a05c1c57190ed (diff)
downloadvdr-plugin-live-015380b9fd9f4e3b34edc83d2ee57db1aa809c34.tar.gz
vdr-plugin-live-015380b9fd9f4e3b34edc83d2ee57db1aa809c34.tar.bz2
- make MultiSchedule duration configurable
- by default show the channel group containing the current channel - show "switch to this channel"-buttons
Diffstat (limited to 'setup.h')
-rw-r--r--setup.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/setup.h b/setup.h
index a700276..a22051e 100644
--- a/setup.h
+++ b/setup.h
@@ -45,6 +45,7 @@ class Setup
bool UseAuth() const;
std::string const GetTimes() const { return m_times; }
std::string const GetChannelGroups() const { return m_channelGroups; }
+ std::string const GetScheduleDuration() const { return m_scheduleDuration; }
std::string const GetStartScreen() const { return m_startscreen; }
std::string const GetStartScreenLink() const;
std::string const GetTheme() const { return m_theme; }
@@ -70,6 +71,7 @@ class Setup
void SetScreenshotInterval(int interval) { m_screenshotInterval = interval; }
void SetTimes(std::string const & times) { m_times = times; }
void SetChannelGroups(std::string const & channelGroups) { m_channelGroups = channelGroups; }
+ void SetScheduleDuration(std::string const & scheduleDuration) { m_scheduleDuration = scheduleDuration; }
void SetStartScreen(std::string const & startscreen) { m_startscreen = startscreen; }
void SetTheme(std::string const & theme) { m_theme = theme; }
void SetLocalNetMask(std::string const & localnetmask) { m_localnetmask = localnetmask; }
@@ -122,6 +124,7 @@ class Setup
std::string m_adminPasswordMD5;
std::string m_times;
std::string m_channelGroups;
+ std::string m_scheduleDuration;
std::string m_startscreen;
std::string m_theme;
std::string m_localnetmask;