connect lv2 output controls
[goodguy/history.git] / cinelerra-5.1 / cinelerra / pluginlv2ui.h
1
2 /*
3  * CINELERRA
4  * Copyright (C) 2008 Adam Williams <broadcast at earthling dot net>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  *
20  */
21
22 #ifndef __PLUGINLV2UI_H__
23 #define __PLUGINLV2UI_H__
24
25 #ifdef HAVE_LV2UI
26
27 #include "forkbase.h"
28 #include "pluginlv2.h"
29 #include "pluginlv2client.h"
30 #include "pluginlv2gui.inc"
31 #include "pluginlv2ui.inc"
32
33 typedef struct _GtkWidget GtkWidget;
34
35 #define UPDATE_HOST 1
36 #define UPDATE_PORTS 2
37
38 class PluginLV2UI : public PluginLV2
39 {
40 public:
41         PluginLV2UI();
42         ~PluginLV2UI();
43
44         const LilvUI *lilv_ui;
45         const LilvNode *lilv_type;
46
47         LV2_Extension_Data_Feature *ext_data;
48         PluginLV2UriTable  uri_table;
49         LV2_URI_Map_Feature *uri_map;
50         LV2_URID_Map       map;
51         LV2_URID_Unmap     unmap;
52
53         char title[BCSTRLEN];
54         PluginLV2ClientConfig config;
55         int updates, hidden;
56         int done, running;
57         const char *gtk_type;
58         GtkWidget *top_level;
59         PluginLV2ChildUI *child;
60
61         void reset_gui();
62         int init_ui(const char *path, int sample_rate);
63         void start();
64         void stop();
65         int send_host(int64_t token, const void *data, int bytes);
66         int update_lv2_input(float *vals, int force);
67         void update_lv2_output();
68
69         void run_lilv(int samples);
70         void update_value(int idx, uint32_t bfrsz, uint32_t typ, const void *bfr);
71         void update_control(int idx, uint32_t bfrsz, uint32_t typ, const void *bfr);
72         static void write_from_ui(void *the, uint32_t idx,
73                 uint32_t bfrsz, uint32_t typ, const void *bfr);
74         static uint32_t port_index(void* obj, const char* sym);
75
76 //      static void touch(void *obj,uint32_t pidx,bool grabbed);
77         static uint32_t uri_to_id(LV2_URID_Map_Handle handle, const char *map, const char *uri);
78         static LV2_URID uri_table_map(LV2_URID_Map_Handle handle, const char *uri);
79         static const char *uri_table_unmap(LV2_URID_Map_Handle handle, LV2_URID urid);
80         void lv2ui_instantiate(void *parent);
81         bool lv2ui_resizable();
82         void start_gui();
83         int run_ui(PluginLV2ChildUI *child=0);
84         void update_host();
85         int run(int ac, char **av);
86 };
87
88 class PluginLV2ChildUI : public ForkChild, public PluginLV2UI
89 {
90 public:
91         PluginLV2ChildUI();
92         ~PluginLV2ChildUI();
93         void run();
94         void run_buffer(int shmid);
95
96         int handle_child();
97         int run(int ac, char **av);
98 };
99 #endif
100 #endif