summaryrefslogtreecommitdiff
path: root/setup.h
diff options
context:
space:
mode:
Diffstat (limited to 'setup.h')
-rw-r--r--setup.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/setup.h b/setup.h
new file mode 100644
index 0000000..a0f2410
--- /dev/null
+++ b/setup.h
@@ -0,0 +1,30 @@
+#ifndef __TVSCRAPER_SETUP_H
+#define __TVSCRAPER_SETUP_H
+
+using namespace std;
+
+class cTVScraperSetup : public cMenuSetupPage {
+ public:
+ cTVScraperSetup(cTVScraperWorker *workerThread);
+ virtual ~cTVScraperSetup();
+ private:
+ vector<int> channelsScrap;
+ cTVScraperWorker *worker;
+ void Setup(void);
+ protected:
+ virtual eOSState ProcessKey(eKeys Key);
+ virtual void Store(void);
+};
+
+class cTVScraperChannelSetup : public cOsdMenu {
+ public:
+ cTVScraperChannelSetup(vector<int> *channelsScrap);
+ virtual ~cTVScraperChannelSetup();
+ private:
+ vector<int> *channelsScrap;
+ void Setup(void);
+ protected:
+ virtual eOSState ProcessKey(eKeys Key);
+};
+
+#endif //__TVSCRAPER_SETUP_H \ No newline at end of file