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

#ifndef _TITLEMENU_H
#define _TITLEMENU_H

#include <vdr/menuitems.h>

class cBDControl;

class cTitleMenu : public cOsdMenu {
 private:
  cBDControl *ctrl;

 public:
  cTitleMenu(cBDControl *Ctrl);

  virtual eOSState ProcessKey(eKeys Key);
};

#endif //_TITLEMENU_H