summaryrefslogtreecommitdiff
path: root/setup.h
blob: a0f241044a7009bd4b202d4536c4f835947141ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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