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
98
99
|
/*
* 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.
*/
#ifndef _SHERLOCK_NK_H
#define _SHERLOCK_NK_H
#include "nk_pugl.h"
#include <osc.lv2/osc.h>
#include <sratom/sratom.h>
typedef struct _plughandle_t plughandle_t;
typedef struct _atom_ser_t atom_ser_t;
struct _atom_ser_t {
uint32_t size;
uint32_t offset;
union {
uint8_t *buf;
LV2_Atom *atom;
};
};
struct _plughandle_t {
LV2UI_Write_Function write_function;
LV2UI_Controller controller;
LV2_URID_Map *map;
LV2_URID_Unmap *unmap;
LV2_Atom_Forge forge;
LV2_Atom_Forge mem;
int32_t count;
bool bottom;
LV2_Atom_Forge_Frame frame;
LV2_URID event_transfer;
LV2_OSC_URID osc_urid;
PROPS_T(props, MAX_NPROPS);
struct {
LV2_URID count;
LV2_URID overwrite;
LV2_URID block;
LV2_URID follow;
} urid;
state_t state;
state_t stash;
nk_pugl_window_t win;
atom_ser_t ser;
const LV2_Atom *selected;
struct nk_text_edit edit;
Sratom *sratom;
const char *base_uri;
};
extern const char *max_items [5];
extern const int32_t max_values [5];
void
_midi_inspector_expose(struct nk_context *ctx, struct nk_rect wbounds, void *data);
void
_atom_inspector_expose(struct nk_context *ctx, struct nk_rect wbounds, void *data);
void
_osc_inspector_expose(struct nk_context *ctx, struct nk_rect wbounds, void *data);
void
_empty(struct nk_context *ctx);
void
_toggle(plughandle_t *handle, LV2_URID property, int32_t val, bool is_bool);
void
_clear(plughandle_t *handle);
void
_ruler(struct nk_context *ctx, float line_thickness, struct nk_color color);
void
_post_redisplay(plughandle_t *handle);
#endif // _SHERLOCK_NK_H
|