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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
/*
* Copyright (c) 2015-2016 Hanspeter Portner (dev@open-music-kontrollers.ch)
*
* This is free software: you can redistribute it and/or modify
* it under the terms of the Artistic License 2.0 as published by
* The Perl Foundation.
*
* This source is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* Artistic License 2.0 for more details.
*
* You should have received a copy of the Artistic License 2.0
* along the source as a COPYING file. If not, obtain it from
* http://www.perlfoundation.org/artistic_license_2_0.
*/
#include <sherlock.h>
#include <sandbox_ui.h>
const LV2UI_Descriptor atom_inspector_ui= {
.URI = SHERLOCK_ATOM_INSPECTOR_UI_URI,
.instantiate = sandbox_ui_instantiate,
.cleanup = sandbox_ui_cleanup,
.port_event = sandbox_ui_port_event,
.extension_data = sandbox_ui_extension_data
};
const LV2UI_Descriptor atom_inspector_kx= {
.URI = SHERLOCK_ATOM_INSPECTOR_KX_URI,
.instantiate = sandbox_ui_instantiate,
.cleanup = sandbox_ui_cleanup,
.port_event = sandbox_ui_port_event,
.extension_data = NULL
};
const LV2UI_Descriptor midi_inspector_ui= {
.URI = SHERLOCK_MIDI_INSPECTOR_UI_URI,
.instantiate = sandbox_ui_instantiate,
.cleanup = sandbox_ui_cleanup,
.port_event = sandbox_ui_port_event,
.extension_data = sandbox_ui_extension_data
};
const LV2UI_Descriptor midi_inspector_kx= {
.URI = SHERLOCK_MIDI_INSPECTOR_KX_URI,
.instantiate = sandbox_ui_instantiate,
.cleanup = sandbox_ui_cleanup,
.port_event = sandbox_ui_port_event,
.extension_data = NULL
};
const LV2UI_Descriptor osc_inspector_ui= {
.URI = SHERLOCK_OSC_INSPECTOR_UI_URI,
.instantiate = sandbox_ui_instantiate,
.cleanup = sandbox_ui_cleanup,
.port_event = sandbox_ui_port_event,
.extension_data = sandbox_ui_extension_data
};
const LV2UI_Descriptor osc_inspector_kx= {
.URI = SHERLOCK_OSC_INSPECTOR_KX_URI,
.instantiate = sandbox_ui_instantiate,
.cleanup = sandbox_ui_cleanup,
.port_event = sandbox_ui_port_event,
.extension_data = NULL
};
#ifdef _WIN32
__declspec(dllexport)
#else
__attribute__((visibility("default")))
#endif
const LV2UI_Descriptor*
lv2ui_descriptor(uint32_t index)
{
switch(index)
{
case 0:
return &atom_inspector_ui;
case 1:
return &atom_inspector_kx;
case 2:
return &midi_inspector_ui;
case 3:
return &midi_inspector_kx;
case 4:
return &osc_inspector_ui;
case 5:
return &osc_inspector_kx;
default:
return NULL;
}
}
|