summaryrefslogtreecommitdiffstats
path: root/doc/c/uis.rst
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2023-05-14 20:03:30 -0400
committerDavid Robillard <d@drobilla.net>2023-05-14 20:03:30 -0400
commitd564baafed0863813a87d872f8663134e74228c8 (patch)
tree69c80abc4ed6d011beac6a2904938830024dc220 /doc/c/uis.rst
parent99540a8f30408d15339ececc4c28f27e2e2f06ab (diff)
downloadlilv-d564baafed0863813a87d872f8663134e74228c8.tar.gz
lilv-d564baafed0863813a87d872f8663134e74228c8.tar.bz2
lilv-d564baafed0863813a87d872f8663134e74228c8.zip
Clean up documentation and remove junk files from install
Diffstat (limited to 'doc/c/uis.rst')
-rw-r--r--doc/c/uis.rst25
1 files changed, 0 insertions, 25 deletions
diff --git a/doc/c/uis.rst b/doc/c/uis.rst
deleted file mode 100644
index 1169060..0000000
--- a/doc/c/uis.rst
+++ /dev/null
@@ -1,25 +0,0 @@
-..
- Copyright 2020-2022 David Robillard <d@drobilla.net>
- SPDX-License-Identifier: ISC
-
-.. default-domain:: c
-.. highlight:: c
-
-###############
-User Interfaces
-###############
-
-Plugins may have custom user interfaces, or `UIs`,
-which are installed in bundles just like plugins.
-
-The available UIs for a plugin can be accessed with :func:`lilv_plugin_get_uis`:
-
-.. code-block:: c
-
- LilvUIs* uis = lilv_plugin_get_uis(plugin);
-
-:struct:`LilvUIs` is a collection much like `LilvPlugins`,
-except it is of course a set of :struct:`LilvUI` rather than a set of :struct:`LilvPlugin`.
-Also like plugins,
-the :struct:`LilvUI` class has various accessors that can be used to get information about the UI.
-See the :doc:`API reference <api/lilv_ui>` for details.