AeN64DriverConfig.h
1.14 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
#include <Vk/VkApp.h>
#include <Vk/VkPrefDialog.h>
#include <Vk/VkPrefItem.h>
class AeN64Config;
class AeN64ConfigDialog : public VkPrefDialog
{
public:
AeN64ConfigDialog (AeN64Config *);
virtual ~AeN64ConfigDialog (void);
virtual const char* className();
void GetValues (AeN64Config *);
void SetValues (AeN64Config *);
void configCallback (VkCallbackObject *, void *, void *);
protected:
VkPrefGroup * frameGroup;
VkPrefText * outputRate;
VkPrefText * frameSize;
VkPrefText * maxCommands;
VkPrefSeparator * sep1;
VkPrefGroup * dmaGroup;
VkPrefText * dmaBuffers;
VkPrefText * dmaBufferSize;
VkPrefText * dmaQueueSize;
VkPrefText * dmaFrameLag;
VkPrefSeparator * sep2;
VkPrefGroup * synthGroup;
VkPrefText * maxVVoices;
VkPrefText * maxPVoices;
VkPrefText * maxUpdates;
VkPrefSeparator *sep3;
VkPrefGroup * playerGroup;
VkPrefText * maxChannels;
VkPrefText * maxEvents;
VkPrefList * prefList;
AeN64Config * fConfig;
static String _defaultResources[];
virtual Widget createDialog(Widget parent);
};