diff options
author | David Robillard <d@drobilla.net> | 2007-06-30 22:29:56 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2007-06-30 22:29:56 +0000 |
commit | 435bc2fc2c0eb78addac1e688411ad8fad02517a (patch) | |
tree | 68eb0a9f6ceac13a9cd634f9cf8ea4fb5f7da75c /src/slv2_internal.h | |
parent | 8d964fa7e72ebf076cd40a0b72caf778ce82fb85 (diff) | |
download | lilv-435bc2fc2c0eb78addac1e688411ad8fad02517a.tar.gz lilv-435bc2fc2c0eb78addac1e688411ad8fad02517a.tar.bz2 lilv-435bc2fc2c0eb78addac1e688411ad8fad02517a.zip |
Added support for (Lars Luthman's) GTK GUI extension (SLV2 still does NOT depend on GTK!).
git-svn-id: http://svn.drobilla.net/lad/slv2@546 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/slv2_internal.h')
-rw-r--r-- | src/slv2_internal.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/slv2_internal.h b/src/slv2_internal.h index 31913ad..4d20e4f 100644 --- a/src/slv2_internal.h +++ b/src/slv2_internal.h @@ -28,6 +28,7 @@ extern "C" { #include <inttypes.h> #include <librdf.h> #include <slv2/types.h> +#include <slv2/lv2-gtk2gui.h> @@ -97,6 +98,14 @@ struct _InstanceImpl { }; +/* ********* GUI Instance ********* */ +struct _GUIInstanceImpl { + void* lib_handle; + const LV2UI_Descriptor* lv2ui_descriptor; + LV2UI_Handle lv2ui_handle; + void* widget; +}; + /* ********* Plugin Class ********* */ |