summaryrefslogtreecommitdiffstats
path: root/slv2/pluginclass.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2007-04-21 07:13:35 +0000
committerDavid Robillard <d@drobilla.net>2007-04-21 07:13:35 +0000
commitac3f3ffe14e0e01710e0ded24914d5ca1f31f55d (patch)
treef8b5b1762233efa142f8ee840a4ebf9211325a04 /slv2/pluginclass.h
parent081352a14c7c4f73113d9a491280e327eec14c83 (diff)
downloadlilv-ac3f3ffe14e0e01710e0ded24914d5ca1f31f55d.tar.gz
lilv-ac3f3ffe14e0e01710e0ded24914d5ca1f31f55d.tar.bz2
lilv-ac3f3ffe14e0e01710e0ded24914d5ca1f31f55d.zip
Plugin classes (categories) progress.
git-svn-id: http://svn.drobilla.net/lad/slv2@467 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'slv2/pluginclass.h')
-rw-r--r--slv2/pluginclass.h22
1 files changed, 21 insertions, 1 deletions
diff --git a/slv2/pluginclass.h b/slv2/pluginclass.h
index 1124bd8..7260d7d 100644
--- a/slv2/pluginclass.h
+++ b/slv2/pluginclass.h
@@ -30,6 +30,15 @@ extern "C" {
*/
+/** Get the URI of this class' superclass.
+ *
+ * Returned value is owned by \a plugin_class and must not be freed by caller.
+ *
+ * Time = O(1)
+ */
+const char* slv2_plugin_class_get_parent_uri(SLV2PluginClass plugin_class);
+
+
/** Get the URI of this plugin class.
*
* Returned value is owned by \a plugin_class and must not be freed by caller.
@@ -39,7 +48,7 @@ extern "C" {
const char* slv2_plugin_class_get_uri(SLV2PluginClass plugin_class);
-/** Get the label of this plugin_class, ie "Oscillators".
+/** Get the label of this plugin class, ie "Oscillators".
*
* Returned value is owned by \a plugin_class and must not be freed by caller.
*
@@ -47,6 +56,17 @@ const char* slv2_plugin_class_get_uri(SLV2PluginClass plugin_class);
*/
const char* slv2_plugin_class_get_label(SLV2PluginClass plugin_class);
+
+/** Get the subclasses of this plugin class.
+ *
+ * Returned value must be freed by caller with slv2_plugin_classes_free.
+ *
+ * Time = O(nclasses)
+ */
+SLV2PluginClasses
+slv2_plugin_class_get_children(SLV2PluginClass plugin_class);
+
+
#if 0
/** Get the path of this plugin_class, ie "Plugins/Generators/Oscillators".
*