blob: 69c242b2ea2152930619127d3e54d9bd51bcd8be (
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
|
/*
* sndctl - a plugin for the Video Disk Recorder
* file: soundsetmenu.h
* description: header file for soundsetmenu.c
*
* author: Thomas Hildebrandt <toxym@web.de>
*
* inspired by and reengineered from 'avolctl'
* thanks to Martin Prochnow <nordlichtl@martins-kabuff.de>
*/
#ifndef SNDCTL_SOUNDSETMENU_H
#define SNDCTL_SOUNDSETMENU_H
/*
* cSoundsetMenuSndctl
* the sound set editor menu
*/
class cSoundsetMenuSndctl:public cMenuSetupPage {
private:
bool isActive;
char *name;
cSoundSet *soundset;
void Set();
protected:
virtual void Store( void );
public:
cSoundsetMenuSndctl( cSoundSet*, string );
};
#endif //SNDCTL_SOUNDSETMENU_H
|