75fe8262972c3928361f0f8c990f902add3b89dd
[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 class PluginLV2UI : public PluginLV2
36 {
37 public:
38         PluginLV2UI();
39         ~PluginLV2UI();
40
41         const LilvUI *lilv_ui;
42         const LilvNode *lilv_type;
43
44         LV2_Extension_Data_Feature *ext_data;
45         PluginLV2UriTable  uri_table;
46         LV2_URI_Map_Feature *uri_map;
47         LV2_URID_Map       map;
48         LV2_URID_Unmap     unmap;
49
50         char title[BCSTRLEN];
51         PluginLV2ClientConfig config;
52         uint32_t host_updates, updates;
53         int host_hidden, hidden;
54         int done, running;
55         const char *gtk_type;
56         GtkWidget *top_level;
57
58         void reset_gui();
59         int init_ui(const char *path, int sample_rate);
60         void start();
61         void stop();
62         int update_lv2(float *vals, int force);
63         int redraw;
64
65         void update_value(int idx, uint32_t bfrsz, uint32_t typ, const void *bfr);
66         void update_control(int idx, uint32_t bfrsz, uint32_t typ, const void *bfr);
67         static void write_from_ui(void *the, uint32_t idx,
68                 uint32_t bfrsz, uint32_t typ, const void *bfr);
69         static uint32_t port_index(void* obj, const char* sym);
70
71 //      static void touch(void *obj,uint32_t pidx,bool grabbed);
72         static uint32_t uri_to_id(LV2_URID_Map_Handle handle, const char *map, const char *uri);
73         static LV2_URID uri_table_map(LV2_URID_Map_Handle handle, const char *uri);
74         static const char *uri_table_unmap(LV2_URID_Map_Handle handle, LV2_URID urid);
75         void lv2ui_instantiate(void *parent);
76         bool lv2ui_resizable();
77         void start_gui();
78         int run_ui(PluginLV2ChildUI *child=0);
79         void run_buffer(int shmid);
80         void host_update(PluginLV2ChildUI *child);
81         int run(int ac, char **av);
82 };
83
84 class PluginLV2ChildUI : public ForkChild, public PluginLV2UI
85 {
86 public:
87         PluginLV2ChildUI();
88         ~PluginLV2ChildUI();
89         void run();
90
91         int handle_child();
92         int run(int ac, char **av);
93 };
94 #endif
95 #endif