summaryrefslogtreecommitdiff
path: root/discmenu.h
blob: 8503c5962b5ff9b023a5b54bf1618f97f8c3d118 (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
/*
 * titlemenu.h: BluRay disc library menu
 *
 * See the README file for copyright information and how to reach the author.
 *
 */

#ifndef _DISCMENU_H
#define _DISCMENU_H

#include <vdr/menuitems.h>

#include "discmgr.h"

class cDiscMenu : public cOsdMenu {
 private:
  void Scan(cString& Root);

  cDiscMgr& mgr;

 public:
  cDiscMenu(cDiscMgr& Mgr, cString& Root);

  virtual eOSState ProcessKey(eKeys Key);
};

#endif //_DISCMENU_H