summaryrefslogtreecommitdiff
path: root/muse2/README.ladspaguis
diff options
context:
space:
mode:
authorFlorian Jung <flo@windfisch.org>2013-09-10 17:57:35 +0200
committerFlorian Jung <flo@windfisch.org>2013-09-10 17:57:35 +0200
commit95632f9f481e7448eb4dc45f697782ab4d233dba (patch)
tree6ed5680dbfe7db8dc47a01d08d6e9866c583c245 /muse2/README.ladspaguis
parentb05fdd7bd212cf664eb64ec292936f1843a400f5 (diff)
Moved READMEs to root directory so GitHub finds them
Diffstat (limited to 'muse2/README.ladspaguis')
-rw-r--r--muse2/README.ladspaguis56
1 files changed, 0 insertions, 56 deletions
diff --git a/muse2/README.ladspaguis b/muse2/README.ladspaguis
deleted file mode 100644
index c1b168ff..00000000
--- a/muse2/README.ladspaguis
+++ /dev/null
@@ -1,56 +0,0 @@
-MusE can create LADSPA GUI's (graphical user interfaces) from
-Qt designer *.ui files at runtime.
-This allows a user to create or modify customized LADSPA guis without
-recompiling MusE.
-
-======================
- Installation
-=====================
-
-Copy the file muse/widgets/musewidgetsplugin.so into a directory were
-Qt (designer) can find it.
-
-Example:
- if you installed Qt in /usr/qt3:
- su -c "cp -af musewidgetsplugin.so /usr/qt3/plugins/designer"
-Check:
- After starting the Qt designer you see all MusE specific widgets
- under Tools/MusE. If you cannot find any MusE widgets, designer
- did not find the file "musewidgetsplugin.so".
-
-======================
- Environment
-======================
-
-Naming:
- The Qt designer files are named after the LADSPA plugin ID.
- Example: the "freeverb" plugin has the id "1050". A gui for
- freeverb has to be named "1050.ui".
- The plugin ID is shown in the MusE plugin browser.
-
-Path:
- MusE looks for *ui files at (museglobalshare)/plugins/.
- If you installed MusE at "/usr" (configured with --prefix=/usr)
- MusE looks at "/usr/share/muse/plugins" for *ui files.
-
-======================
- Creating *.ui file
-======================
-
-The association between LADSPA plugin parameters and Qt-Widgets is
-done by name. All input widgets which manipulate a LADSPA parameter
-must have a name starting with the letter "P" followed by the parameter
-index.
- Example:
- A "Slider" widget which manipulates the 3th parameter of a
- plugin has the name "P3slider".
-
-Supported Widgets:
- "Slider" slider for float values
- "DoubleLabel" entry for float values
- "QCheckbox" to manipulate a on/off LADSPA parameter
- "QComboBox" select from a list of named values; sets
- integer LADSPA values
-
-(for more hints please look at the example *.ui files)
-