summaryrefslogtreecommitdiff
path: root/xineSetupPage.h
blob: 87792f9834ab0a4fa2c35b1d1e8690b9d3ad7dcb (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
31
32
33
34
35
36
37
38
39
40
41
42
43

#ifndef __XINESETUPPAGE_H
#define __XINESETUPPAGE_H



#include "xineCommon.h"

#include <vdr/menuitems.h>

#include "xineSettings.h"



namespace PluginXine
{

  class cXineLib;

  class cXineSetupPage : public cMenuSetupPage
  {
    cXineLib *const m_xineLib;

    cXineSettings &m_globalSettings;
    cXineSettings m_localSettings;

  protected:
    virtual void Store();
    
  public:
    cXineSetupPage(cXineLib *const xineLib, cXineSettings &settings);
    virtual ~cXineSetupPage();

    virtual eOSState ProcessKey(eKeys Key);

    friend class cXineSettings;
  };

};



#endif //__XINESETUPPAGE_H