blob: bc422685c78577da091e329cb51934bbff6bbf5f (
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
|
/*
* sndctl - a plugin for the Video Disk Recorder
* file: mainmenu.h
* description: header file for mainmenu.c
*
* author: Thomas Hildebrandt <toxym@web.de>
*
* inspired by and reengineered from 'avolctl'
* thanks to Martin Prochnow <nordlichtl@martins-kabuff.de>
*/
#ifndef SNDCTL_MAINMENU_H
#define SNDCTL_MAINMENU_H
/*
* cMainMenuSndctl
* the main menu OSD
*/
class cMainMenuSndctl:public cOsdMenu {
private:
cPluginSndctl *plugin;
void Set( void );
void SetHelpKeys( void );
public:
cMainMenuSndctl( cPluginSndctl* );
virtual void Display( void );
virtual eOSState ProcessKey( eKeys );
};
#endif //SNDCTL_MAINMENU_H
|