Browse Source

Add initial files

tags/1.9.4
falkTX 12 years ago
parent
commit
39a46da372
32 changed files with 5172 additions and 0 deletions
  1. +11
    -0
      data/carla
  2. +10
    -0
      data/carla-control
  3. +9
    -0
      data/carla-control.desktop
  4. +109
    -0
      data/carla-standalone
  5. +9
    -0
      data/carla.desktop
  6. +49
    -0
      doc/Carla-TODO
  7. +140
    -0
      doc/Carla-TestCases
  8. BIN
      resources/128x128/carla-control.png
  9. BIN
      resources/128x128/carla.png
  10. BIN
      resources/16x16/carla-control.png
  11. BIN
      resources/16x16/carla.png
  12. BIN
      resources/256x256/carla-control.png
  13. BIN
      resources/256x256/carla.png
  14. BIN
      resources/48x48/carla-control.png
  15. BIN
      resources/48x48/carla.png
  16. BIN
      resources/ico/carla-control.ico
  17. +1
    -0
      resources/ico/carla-control.rc
  18. BIN
      resources/ico/carla.ico
  19. +1
    -0
      resources/ico/carla.rc
  20. +111
    -0
      resources/resources.qrc
  21. +845
    -0
      resources/scalable/carla-control.svg
  22. +853
    -0
      resources/scalable/carla.svg
  23. +305
    -0
      resources/ui/carla.ui
  24. +366
    -0
      resources/ui/carla_about.ui
  25. +160
    -0
      resources/ui/carla_control.ui
  26. +350
    -0
      resources/ui/carla_database.ui
  27. +78
    -0
      resources/ui/carla_driver.ui
  28. +494
    -0
      resources/ui/carla_edit.ui
  29. +77
    -0
      resources/ui/carla_parameter.ui
  30. +625
    -0
      resources/ui/carla_plugin.ui
  31. +483
    -0
      resources/ui/carla_refresh.ui
  32. +86
    -0
      resources/ui/inputdialog_value.ui

+ 11
- 0
data/carla View File

@@ -0,0 +1,11 @@
#!/bin/bash

if [ -f /usr/bin/python3 ]; then
PYTHON=/usr/bin/python3
else
PYTHON=python
fi

INSTALL_PREFIX="X-PREFIX-X"
export PATH="$INSTALL_PREFIX"/lib/cadence:$PATH
exec $PYTHON $INSTALL_PREFIX/share/cadence/src/carla.py --with-libprefix="$INSTALL_PREFIX" "$@"

+ 10
- 0
data/carla-control View File

@@ -0,0 +1,10 @@
#!/bin/bash

if [ -f /usr/bin/python3 ]; then
PYTHON=/usr/bin/python3
else
PYTHON=python
fi

INSTALL_PREFIX="X-PREFIX-X"
exec $PYTHON $INSTALL_PREFIX/share/cadence/src/carla_control.py "$@"

+ 9
- 0
data/carla-control.desktop View File

@@ -0,0 +1,9 @@
[Desktop Entry]
Name=Carla Control
GenericName=Carla Control
Comment=Multi-Plugin Audio Host (OSC Control)
Exec=carla-control
Icon=carla-control
Terminal=false
Type=Application
Categories=AudioVideo;AudioEditing;Qt;

+ 109
- 0
data/carla-standalone View File

@@ -0,0 +1,109 @@
#!/bin/bash
# Script to start Carla bridges

INSTALL_PREFIX="X-PREFIX-X"
CADENCE_PREFIX="$INSTALL_PREFIX"/lib/cadence

# ----------------------------------------------------------------------
# Check for enough arguments

if [ "$3"x == ""x ]; then
echo "usage: $0 [arch] [mode] [filename] [label/uri]

Possible archs:
- \"native\"
- \"posix32\"
- \"posix64\"
- \"win32\"
- \"win64\"

Possible modes:
- \"ladspa\"
- \"dssi\"
- \"lv2\"
- \"vst\"

Examples:
$0 native dssi \"/usr/lib/dssi/hexter.so\" \"hexter\"
$0 native lv2 \"/usr/lib/lv2/calf/\" \"http://calf.sourceforge.net/plugins/Compressor\"
$0 native vst \"/usr/lib/vst/TAL-NoiseMaker.so\"
"
exit
fi

# ----------------------------------------------------------------------
# Set client name (from environment)

if [ "$CARLA_CLIENT_NAME"x == ""x ]; then
CARLA_CLIENT_NAME="(none)"
fi

# ----------------------------------------------------------------------
# Set variables

RUN_ARCH="$1"
RUN_MODE="$2"
RUN_FILE="$3"
RUN_LABEL="$4"

# ----------------------------------------------------------------------
# Fix arch for windows bridges

if [ $RUN_ARCH == "win32" ]; then
RUN_ARCH="win32.exe"
fi

if [ $RUN_ARCH == "win64" ]; then
RUN_ARCH="win64.exe"
fi

# ----------------------------------------------------------------------
# Check for existing cadence folder

if [ ! -d $CADENCE_PREFIX ]; then
echo "$0: Cadence folder non-existing, is it installed?"
exit
fi

# ----------------------------------------------------------------------
# Check for existing arch binary

CARLA_EXEC="$CADENCE_PREFIX/carla-bridge-$RUN_ARCH"

if [ ! -f $CARLA_EXEC ]; then
echo "$0: Invalid arch (may not be installed)"
exit
fi

# ----------------------------------------------------------------------
# Check mode

if [ "$RUN_MODE"x == "ladspa"x ]; then
if [ "$RUN_LABEL"x == ""x ]; then
echo "$0: LADSPA needs label"
exit
fi
RUN_MODE="DSSI"
elif [ "$RUN_MODE"x == "dssi"x ]; then
if [ "$RUN_LABEL"x == ""x ]; then
echo "$0: DSSI needs label"
exit
fi
RUN_MODE="DSSI"
elif [ "$RUN_MODE"x == "lv2"x ]; then
if [ "$RUN_LABEL"x == ""x ]; then
echo "$0: LV2 needs uri"
exit
fi
RUN_MODE="LV2"
elif [ "$RUN_MODE"x == "vst"x ]; then
RUN_MODE="VST"
else
echo "$0: Invalid mode"
exit
fi

# ----------------------------------------------------------------------
# Exec

exec $CARLA_EXEC "null" "$RUN_MODE" "$RUN_FILE" "$CARLA_CLIENT_NAME" "$RUN_LABEL"

+ 9
- 0
data/carla.desktop View File

@@ -0,0 +1,9 @@
[Desktop Entry]
Name=Carla
GenericName=Carla
Comment=Multi-Plugin Audio Host
Exec=carla
Icon=carla
Terminal=false
Type=Application
Categories=AudioVideo;AudioEditing;Qt;

+ 49
- 0
doc/Carla-TODO View File

@@ -0,0 +1,49 @@
# Carla TODO

CODE CLEANUP:
- Create PluginGUI class in C++ code, remove python one (need to handle parent somehow)
- Smarter audio/midi port names (count == 1: "audio-in" else: "audio-in-x")

GENERAL:
- add direct program access on ui-dialogs (needed for standalone bridges), maybe add extra buttons too (reset plugin, fix ui size)
- implement osc-based uis in bridge mode
- implement midi-learn (new dialog)
- implement midi-cc automation special rules (invert, half, logarithmic, etc)
- allow to change position of plugins (up/down)
- allow to set m_ctrlInChannel from GUI (needs GUI widget)
- add macro to get midi channel (status & 0x0F)

ENGINE:
- complete RtAudio+RtMidi support
- implement Haiku Media support (based from JACK?)
- implement latency in continuous-rack mode
- DSSI/LV2/VST version (needs add-new support on control side)
- Handle sample-rate changes in JACK (made possible by switch-master)

LADSPA:
- on reload() only set def,min,max after all changes, apply to dssi and lv2

DSSI:

LV2:
- implement lv2-preset support
- implement lv2-time messages support
- complete lv2-atom messages support
- complete lv2-worker support

VST:
- add support for old X11 UIs
- implement cockos extensions
- compare with dssi-vst code

LinuxSampler:
- implement midi-program changes

FluidSynth:

Native:
- Cleanup API
- Document API

Carla:
- auto-tab height fix

+ 140
- 0
doc/Carla-TestCases View File

@@ -0,0 +1,140 @@
# This document describes manual test cases for Carla.

----------------------------------------------------------------------------------------
----Section 1. -----------------------------------------------------------------------

REFRESH PLUGINS

Native plugins:
-N- LADSPA
-N- DSSI
-N- LV2
-N- VST
-N- GIG
-N- SF2
-N- SFZ
-N- Native

Non-native, posix plugins:
-N- LADSPA
-N- DSSI
-N- LV2
-N- VST

Non-native, win32 plugins:
-N- LADSPA
-N- DSSI [*]
-N- LV2
-N- VST

Non-native, win64 plugins:
-N- LADSPA [*]
-N- DSSI [*]
-N- LV2
-N- VST

----------------------------------------------------------------------------------------
----Section 2. -----------------------------------------------------------------------

LOADING PLUGINS (load and safely remove)

Native plugins:
-N- LADSPA
-N- DSSI
-N- LV2
-N- VST
-N- GIG
-N- SF2
-N- SFZ
-N- Native

Non-native, posix plugins:
-N- LADSPA
-N- DSSI
-N- LV2
-N- VST

Non-native, win32 plugins:
-N- LADSPA
-N- DSSI [*]
-N- LV2
-N- VST

Non-native, win64 plugins:
-N- LADSPA [*]
-N- DSSI [*]
-N- LV2
-N- VST

----------------------------------------------------------------------------------------
----Section 3. -----------------------------------------------------------------------

SAVE & RESTORE PLUGIN STATE (Manual and In-Project, verify data)

Native plugins:
-N- LADSPA
-N- DSSI
-N- LV2
-N- VST
-N- SF2

Non-native, posix plugins:
-N- LADSPA
-N- DSSI
-N- LV2
-N- VST

Non-native, win32 plugins:
-N- LADSPA
-N- DSSI [*]
-N- LV2
-N- VST

Non-native, win64 plugins:
-N- LADSPA [*]
-N- DSSI [*]
-N- LV2
-N- VST

----------------------------------------------------------------------------------------
----Section 4. -----------------------------------------------------------------------

LOADING PLUGIN'S GUI (load, show/hide, close/reopen)

Native plugins:
-N- DSSI (OSC based)
-N- LV2 (External-UI, internal)
-N- LV2 (Qt4-UI, internal)
-N- LV2 (X11-UI, internal)
-N- LV2 (Suil-UI, internal)
-N- LV2 (Gtk2-UI, OSC bridged)
-N- LV2 (Gtk3-UI, OSC bridged) [*]
-N- LV2 (Qt4-UI, OSC bridged)
-N- LV2 (X11-UI, OSC bridged)
-N- VST (internal)
-N- VST (OSC bridged)

Non-native, posix plugins:
-N- LV2 (External-UI, internal)
-N- LV2 (Qt4-UI, internal)
-N- LV2 (X11-UI, internal)
-N- VST (internal)

Non-native, win32 plugins:
-N- LV2 (External-UI, internal)
-N- LV2 (Qt4-UI, internal) [*]
-N- LV2 (Windows-UI, internal) [*]
-N- VST (internal)

Non-native, win64 plugins:
-N- LV2 (External-UI, internal)
-N- LV2 (Qt4-UI, internal) [*]
-N- LV2 (Windows-UI, internal) [*]
-N- VST (internal)


----------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------

[*] Cannot test, no such plugins yet

BIN
resources/128x128/carla-control.png View File

Before After
Width: 128  |  Height: 128  |  Size: 13KB

BIN
resources/128x128/carla.png View File

Before After
Width: 128  |  Height: 128  |  Size: 12KB

BIN
resources/16x16/carla-control.png View File

Before After
Width: 16  |  Height: 16  |  Size: 708B

BIN
resources/16x16/carla.png View File

Before After
Width: 16  |  Height: 16  |  Size: 708B

BIN
resources/256x256/carla-control.png View File

Before After
Width: 256  |  Height: 256  |  Size: 32KB

BIN
resources/256x256/carla.png View File

Before After
Width: 256  |  Height: 256  |  Size: 29KB

BIN
resources/48x48/carla-control.png View File

Before After
Width: 48  |  Height: 48  |  Size: 3.3KB

BIN
resources/48x48/carla.png View File

Before After
Width: 48  |  Height: 48  |  Size: 3.2KB

BIN
resources/ico/carla-control.ico View File

Before After

+ 1
- 0
resources/ico/carla-control.rc View File

@@ -0,0 +1 @@
id ICON "carla-control.ico"

BIN
resources/ico/carla.ico View File

Before After

+ 1
- 0
resources/ico/carla.rc View File

@@ -0,0 +1 @@
id ICON "carla.ico"

+ 111
- 0
resources/resources.qrc View File

@@ -0,0 +1,111 @@
<RCC version="1.0">
<qresource prefix="/">
<file>16x16/cadence.png</file>
<file>16x16/catarina.png</file>
<file>16x16/catia.png</file>
<file>16x16/claudia.png</file>
<file>16x16/claudia-launcher.png</file>
<file>16x16/carla.png</file>
<file>16x16/carla-control.png</file>

<file>16x16/application-exit.png</file>
<file>16x16/arrow-right.png</file>
<file>16x16/configure.png</file>
<file>16x16/dialog-cancel.png</file>
<file>16x16/dialog-error.png</file>
<file>16x16/dialog-information.png</file>
<file>16x16/dialog-ok-apply.png</file>
<file>16x16/document-new.png</file>
<file>16x16/document-open.png</file>
<file>16x16/document-print.png</file>
<file>16x16/document-save.png</file>
<file>16x16/document-save-as.png</file>
<file>16x16/edit-clear.png</file>
<file>16x16/edit-delete.png</file>
<file>16x16/edit-rename.png</file>
<file>16x16/list-add.png</file>
<file>16x16/list-remove.png</file>
<file>16x16/media-playback-pause.png</file>
<file>16x16/media-playback-start.png</file>
<file>16x16/media-playback-stop.png</file>
<file>16x16/media-record.png</file>
<file>16x16/media-seek-backward.png</file>
<file>16x16/media-seek-forward.png</file>
<file>16x16/network-connect.png</file>
<file>16x16/network-disconnect.png</file>
<file>16x16/system-run.png</file>
<file>16x16/user-trash.png</file>
<file>16x16/view-refresh.png</file>
<file>16x16/view-sort-ascending.png</file>
<file>16x16/window-close.png</file>
<file>16x16/zoom-fit-best.png</file>
<file>16x16/zoom-in.png</file>
<file>16x16/zoom-original.png</file>
<file>16x16/zoom-out.png</file>

<file>48x48/cadence.png</file>
<file>48x48/catarina.png</file>
<file>48x48/catia.png</file>
<file>48x48/claudia.png</file>
<file>48x48/claudia-launcher.png</file>
<file>48x48/carla.png</file>
<file>48x48/carla-control.png</file>

<file>48x48/canvas.png</file>
<file>48x48/exec.png</file>
<file>48x48/folder.png</file>
<file>48x48/jack.png</file>
<file>48x48/ladish.png</file>
<file>48x48/media-record.png</file>

<file>scalable/cadence.svg</file>
<file>scalable/catarina.svg</file>
<file>scalable/catia.svg</file>
<file>scalable/claudia.svg</file>
<file>scalable/claudia-launcher.svg</file>
<file>scalable/carla.svg</file>
<file>scalable/carla-control.svg</file>
<file>scalable/jack.svg</file>

<file>scalable/pb_generic.svg</file>
<file>scalable/pb_hardware.svg</file>
<file>scalable/pb_audacious.svg</file>
<file>scalable/pb_clementine.svg</file>
<file>scalable/pb_jamin.svg</file>
<file>scalable/pb_mplayer.svg</file>
<file>scalable/pb_vlc.svg</file>

<file>bitmaps/dial_01.png</file>
<file>bitmaps/dial_01d.png</file>
<file>bitmaps/dial_02.png</file>
<file>bitmaps/dial_02d.png</file>
<file>bitmaps/dial_03.png</file>
<file>bitmaps/dial_03d.png</file>
<file>bitmaps/dial_04.png</file>
<file>bitmaps/dial_04d.png</file>
<file>bitmaps/kbd_h_classic.png</file>
<file>bitmaps/kbd_h_orange.png</file>
<file>bitmaps/kbd_v_classic.png</file>
<file>bitmaps/kbd_v_orange.png</file>
<file>bitmaps/led_off.png</file>
<file>bitmaps/led_blue.png</file>
<file>bitmaps/led_green.png</file>
<file>bitmaps/led_red.png</file>
<file>bitmaps/led_yellow.png</file>
<file>bitmaps/led-big_on.png</file>
<file>bitmaps/led-big_off.png</file>
<file>bitmaps/carla_about.png</file>
<file>bitmaps/carla_knobs1.png</file>

<file>bitmaps/canvas/frame_node_header.png</file>
<file>bitmaps/canvas/frame_port_bg.png</file>
<file>bitmaps/textures/metal_9-512px.jpg</file>

<file>screens/cadence-logs.png</file>
<file>screens/cadence-render.png</file>
<file>screens/cadence-xycontroller.png</file>
<file>screens/catia.png</file>
<file>screens/claudia.png</file>
<file>screens/carla.png</file>
</qresource>
</RCC>

+ 845
- 0
resources/scalable/carla-control.svg View File

@@ -0,0 +1,845 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->

<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="256"
height="256"
id="svg7563"
version="1.1"
inkscape:version="0.48.2 r9819"
sodipodi:docname="carla-control.svg">
<defs
id="defs7565">
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6174-3-8-7-3-7-8"
id="linearGradient4914"
gradientUnits="userSpaceOnUse"
x1="10.874059"
y1="218.95074"
x2="-19.337217"
y2="186.92368" />
<linearGradient
id="linearGradient6174-3-8-7-3-7-8">
<stop
style="stop-color:#4d4d4d;stop-opacity:1;"
offset="0"
id="stop6176-1-8-6-0-6-8" />
<stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="1"
id="stop6178-8-8-4-9-31-9" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6174-3-8-7-03-6"
id="linearGradient4912"
gradientUnits="userSpaceOnUse"
x1="10.874059"
y1="218.95074"
x2="-19.337217"
y2="186.92368" />
<linearGradient
id="linearGradient6174-3-8-7-03-6">
<stop
style="stop-color:#4d4d4d;stop-opacity:1;"
offset="0"
id="stop6176-1-8-6-04-0" />
<stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="1"
id="stop6178-8-8-4-4-4" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6174-3-8-9-3"
id="linearGradient4910"
gradientUnits="userSpaceOnUse"
x1="10.874059"
y1="218.95074"
x2="-19.337217"
y2="186.92368" />
<linearGradient
id="linearGradient6174-3-8-9-3">
<stop
style="stop-color:#4d4d4d;stop-opacity:1;"
offset="0"
id="stop6176-1-8-8-3" />
<stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="1"
id="stop6178-8-8-48-3" />
</linearGradient>
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient6174-29-7"
id="radialGradient4906"
gradientUnits="userSpaceOnUse"
cx="-2.1428571"
cy="203.07646"
fx="-2.1428571"
fy="203.07646"
r="22.184671" />
<linearGradient
id="linearGradient6174-29-7">
<stop
style="stop-color:#4d4d4d;stop-opacity:1;"
offset="0"
id="stop6176-3-5" />
<stop
id="stop8118-9-3"
offset="0.06451613"
style="stop-color:#636363;stop-opacity:1;" />
<stop
id="stop8116-0-8"
offset="0.28928199"
style="stop-color:#797979;stop-opacity:1;" />
<stop
id="stop8114-8-8"
offset="0.58732504"
style="stop-color:#a6a6a6;stop-opacity:1;" />
<stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="1"
id="stop6178-850-3" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6182-63-8"
id="linearGradient4908"
gradientUnits="userSpaceOnUse"
x1="-19.337217"
y1="186.92368"
x2="10.874059"
y2="218.95074" />
<linearGradient
id="linearGradient6182-63-8">
<stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="0"
id="stop6184-856-9" />
<stop
style="stop-color:#3b3b3b;stop-opacity:1;"
offset="1"
id="stop6186-11-6" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6164-63-1"
id="linearGradient4904"
gradientUnits="userSpaceOnUse"
x1="-26.607141"
y1="171.6479"
x2="43.750004"
y2="251.6479" />
<linearGradient
id="linearGradient6164-63-1">
<stop
style="stop-color:#919191;stop-opacity:1;"
offset="0"
id="stop6166-94-8" />
<stop
style="stop-color:#f0f0f0;stop-opacity:1;"
offset="1"
id="stop6168-8-5" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6187-8-7"
id="linearGradient5018"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-318.57139,-494.85713)"
x1="375.71429"
y1="946.64789"
x2="331.42856"
y2="839.50507" />
<linearGradient
id="linearGradient6187-8-7">
<stop
style="stop-color:#1a1a1a;stop-opacity:1;"
offset="0"
id="stop6189-7-89" />
<stop
style="stop-color:#202020;stop-opacity:1;"
offset="1"
id="stop6191-2-1" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6174-3-8-7-3-0"
id="linearGradient4900"
gradientUnits="userSpaceOnUse"
x1="10.874059"
y1="218.95074"
x2="-19.337217"
y2="186.92368" />
<linearGradient
id="linearGradient6174-3-8-7-3-0">
<stop
style="stop-color:#4d4d4d;stop-opacity:1;"
offset="0"
id="stop6176-1-8-6-0-3" />
<stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="1"
id="stop6178-8-8-4-9-0" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6174-3-8-7-9"
id="linearGradient4898"
gradientUnits="userSpaceOnUse"
x1="10.874059"
y1="218.95074"
x2="-19.337217"
y2="186.92368" />
<linearGradient
id="linearGradient6174-3-8-7-9">
<stop
style="stop-color:#4d4d4d;stop-opacity:1;"
offset="0"
id="stop6176-1-8-6-8" />
<stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="1"
id="stop6178-8-8-4-48" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6174-3-8-6"
id="linearGradient4896"
gradientUnits="userSpaceOnUse"
x1="10.874059"
y1="218.95074"
x2="-19.337217"
y2="186.92368" />
<linearGradient
id="linearGradient6174-3-8-6">
<stop
style="stop-color:#4d4d4d;stop-opacity:1;"
offset="0"
id="stop6176-1-8-1" />
<stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="1"
id="stop6178-8-8-1" />
</linearGradient>
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient6174-9"
id="radialGradient4892"
gradientUnits="userSpaceOnUse"
cx="-2.1428571"
cy="203.07646"
fx="-2.1428571"
fy="203.07646"
r="22.184671" />
<linearGradient
id="linearGradient6174-9">
<stop
style="stop-color:#4d4d4d;stop-opacity:1;"
offset="0"
id="stop6176-0" />
<stop
id="stop8118-8"
offset="0.06451613"
style="stop-color:#636363;stop-opacity:1;" />
<stop
id="stop8116-8"
offset="0.28928199"
style="stop-color:#797979;stop-opacity:1;" />
<stop
id="stop8114-5"
offset="0.58732504"
style="stop-color:#a6a6a6;stop-opacity:1;" />
<stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="1"
id="stop6178-0" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6182-6"
id="linearGradient4894"
gradientUnits="userSpaceOnUse"
x1="-19.337217"
y1="186.92368"
x2="10.874059"
y2="218.95074" />
<linearGradient
id="linearGradient6182-6">
<stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="0"
id="stop6184-3" />
<stop
style="stop-color:#3b3b3b;stop-opacity:1;"
offset="1"
id="stop6186-8" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6164-1"
id="linearGradient5147"
gradientUnits="userSpaceOnUse"
x1="-26.607141"
y1="171.6479"
x2="43.750004"
y2="251.6479" />
<linearGradient
id="linearGradient6164-1">
<stop
style="stop-color:#919191;stop-opacity:1;"
offset="0"
id="stop6166-2" />
<stop
style="stop-color:#f0f0f0;stop-opacity:1;"
offset="1"
id="stop6168-9" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6187-8-2"
id="linearGradient5041"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-318.57139,-494.85713)"
x1="375.71429"
y1="946.64789"
x2="331.42856"
y2="839.50507" />
<linearGradient
id="linearGradient6187-8-2">
<stop
style="stop-color:#1a1a1a;stop-opacity:1;"
offset="0"
id="stop6189-7-8" />
<stop
style="stop-color:#202020;stop-opacity:1;"
offset="1"
id="stop6191-2-3" />
</linearGradient>
<filter
color-interpolation-filters="sRGB"
inkscape:collect="always"
id="filter6576-0"
x="-0.10272374"
width="1.2054476"
y="-0.10272374"
height="1.2054476">
<feGaussianBlur
inkscape:collect="always"
stdDeviation="6.8910506"
id="feGaussianBlur6578-6" />
</filter>
<filter
color-interpolation-filters="sRGB"
inkscape:collect="always"
id="filter8786-1-1">
<feGaussianBlur
inkscape:collect="always"
stdDeviation="8.96"
id="feGaussianBlur8788-3-4" />
</filter>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4657-7-2"
id="linearGradient4884"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.83385449,0,0,0.83385449,-12.083733,130.8065)"
x1="241.21584"
y1="795.42145"
x2="-21.002575"
y2="516.61938" />
<linearGradient
id="linearGradient4657-7-2">
<stop
style="stop-color:#282212;stop-opacity:0.62280703;"
offset="0"
id="stop4659-6-0" />
<stop
id="stop4661-39-6"
offset="0.29307336"
style="stop-color:#2d2a23;stop-opacity:1;" />
<stop
id="stop4663-1-8"
offset="0.80562556"
style="stop-color:#4e5e42;stop-opacity:1;" />
<stop
style="stop-color:#676d67;stop-opacity:1;"
offset="1"
id="stop4665-0-9" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3902-1-6"
id="linearGradient4886"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.83385449,0,0,0.83385449,-12.083733,130.8065)"
x1="320.00772"
y1="662.08124"
x2="-128.07874"
y2="629.75647" />
<linearGradient
id="linearGradient3902-1-6">
<stop
style="stop-color:#141414;stop-opacity:0.87719297;"
offset="0"
id="stop3904-18-6" />
<stop
id="stop3936-6-4"
offset="0.07563529"
style="stop-color:#000000;stop-opacity:1;" />
<stop
id="stop3934-4-9"
offset="0.14044002"
style="stop-color:#262422;stop-opacity:1;" />
<stop
id="stop3932-3-5"
offset="0.20430526"
style="stop-color:#5f5f59;stop-opacity:1;" />
<stop
id="stop3930-4-0"
offset="0.26901498"
style="stop-color:#211f1e;stop-opacity:1;" />
<stop
id="stop3928-7-4"
offset="0.3417097"
style="stop-color:#3c3b38;stop-opacity:1;" />
<stop
id="stop3926-7-8"
offset="0.41261438"
style="stop-color:#6c6c66;stop-opacity:1;" />
<stop
id="stop3924-0-7"
offset="0.48499879"
style="stop-color:#4c4740;stop-opacity:1;" />
<stop
id="stop3922-7-1"
offset="0.54586536"
style="stop-color:#696965;stop-opacity:1;" />
<stop
id="stop3920-45-7"
offset="0.62692177"
style="stop-color:#727272;stop-opacity:1;" />
<stop
id="stop3918-3-2"
offset="0.68774176"
style="stop-color:#42403e;stop-opacity:1;" />
<stop
id="stop3916-0-7"
offset="0.75042593"
style="stop-color:#3a3a3a;stop-opacity:0.93725491;" />
<stop
id="stop3914-7-2"
offset="0.81777459"
style="stop-color:#1a140e;stop-opacity:1;" />
<stop
id="stop3912-2-2"
offset="0.87812954"
style="stop-color:#000000;stop-opacity:0.74901962;" />
<stop
id="stop3910-9-6"
offset="0.94099933"
style="stop-color:#000000;stop-opacity:1;" />
<stop
style="stop-color:#000000;stop-opacity:1;"
offset="1"
id="stop3906-9-1" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4657-7-2"
id="linearGradient3131"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.83385449,0,0,0.83385449,313.93511,-98.98949)"
x1="241.21584"
y1="795.42145"
x2="-21.002575"
y2="516.61938" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3902-1-6"
id="linearGradient3133"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.83385449,0,0,0.83385449,313.93511,-98.98949)"
x1="320.00772"
y1="662.08124"
x2="-128.07874"
y2="629.75647" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.979899"
inkscape:cx="123.91535"
inkscape:cy="125.96023"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1028"
inkscape:window-height="660"
inkscape:window-x="332"
inkscape:window-y="0"
inkscape:window-maximized="0" />
<metadata
id="metadata7568">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-263.42857,-301.50504)">
<rect
style="opacity:0.93280634;fill:#1a1a1a;fill-opacity:1;stroke:#1a1a1a;stroke-width:8;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline;filter:url(#filter8786-1-1)"
id="rect3756-4-1-0-0-5"
width="256"
height="256"
x="-37.086269"
y="505.79703"
rx="32"
ry="32"
transform="matrix(0.83385449,0,0,0.83385449,315.61975,-98.98946)" />
<rect
style="fill:url(#linearGradient3131);fill-opacity:1.0;stroke:url(#linearGradient3133);stroke-width:6.67083596999999973;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
id="rect3756-4-1-2-9"
width="213.46675"
height="213.46675"
x="284.69519"
y="322.77164"
rx="26.683344"
ry="26.683344" />
<rect
style="opacity:0.89723319000000001;color:#000000;fill:#af9191;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter6576-0);enable-background:accumulate"
id="rect6570-4"
width="161"
height="161"
x="308.26733"
y="345.81552"
inkscape:export-filename="/home/pj/Documents/svg/path10192-9.png"
inkscape:export-xdpi="89.989967"
inkscape:export-ydpi="89.989967" />
<rect
style="color:#000000;fill:url(#linearGradient5041);fill-opacity:1.0;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:3.71435570999999998;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
id="rect3534-2"
width="160.31299"
height="79.151245"
x="308.61084"
y="346.66428" />
<path
sodipodi:type="arc"
style="opacity:0.5;fill:#ff0000;stroke:url(#linearGradient5147);stroke-width:4.71404982;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
id="path6162-2"
sodipodi:cx="-4.2857141"
sodipodi:cy="198.79076"
sodipodi:rx="35.714287"
sodipodi:ry="35"
d="m 31.428573,198.79076 c 0,19.32996 -15.989831,35 -35.7142871,35 -19.7244559,0 -35.7142869,-15.67004 -35.7142869,-35 0,-19.32997 15.989831,-35 35.7142869,-35 19.7244561,0 35.7142871,15.67003 35.7142871,35 z"
transform="matrix(0.47724548,0,0,0.48698502,335.16334,289.43179)" />
<path
sodipodi:type="arc"
style="fill:url(#radialGradient4892);fill-opacity:1;stroke:url(#linearGradient4894);stroke-width:2.94077349;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
id="path6172-4"
sodipodi:cx="-2.1428571"
sodipodi:cy="203.07646"
sodipodi:rx="20.714285"
sodipodi:ry="20.714285"
d="m 18.571428,203.07646 c 0,11.44019 -9.2741014,20.71429 -20.7142851,20.71429 -11.4401839,0 -20.7142849,-9.2741 -20.7142849,-20.71429 0,-11.44018 9.274101,-20.71428 20.7142849,-20.71428 11.4401837,0 20.7142851,9.2741 20.7142851,20.71428 z"
transform="matrix(0.63497502,0,0,0.64793348,334.47874,254.65988)" />
<rect
style="opacity:0.66000001;color:#000000;fill:#4b4b4b;fill-opacity:1;fill-rule:nonzero;stroke:#949494;stroke-width:0.63269919;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
id="rect3534-6-7"
width="51.698875"
height="62.038593"
x="357.92554"
y="354.54916" />
<text
xml:space="preserve"
style="font-size:16.68160248px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;display:inline;font-family:Sans"
x="366.28452"
y="383.95786"
id="text4618-7"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4620-5"
x="366.28452"
y="383.95786">OSC</tspan></text>
<path
sodipodi:type="arc"
style="fill:url(#linearGradient4896);fill-opacity:1;stroke:#2a2a2a;stroke-width:2.94077349;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
id="path6172-3-9-4"
sodipodi:cx="-2.1428571"
sodipodi:cy="203.07646"
sodipodi:rx="20.714285"
sodipodi:ry="20.714285"
d="m 18.571428,203.07646 c 0,11.44019 -9.2741014,20.71429 -20.7142851,20.71429 -11.4401839,0 -20.7142849,-9.2741 -20.7142849,-20.71429 0,-11.44018 9.274101,-20.71428 20.7142849,-20.71428 11.4401837,0 20.7142851,9.2741 20.7142851,20.71428 z"
transform="matrix(0.34133826,0,0,0.34830423,368.00834,328.43419)" />
<rect
style="opacity:0.66000001;fill:#4b4b4b;fill-opacity:1;stroke:#949494;stroke-width:0.63269919;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
id="rect3534-6-4-8"
width="46.528988"
height="61.944588"
x="414.79419"
y="354.64645" />
<rect
style="fill:#000000;fill-opacity:1;stroke:none;display:inline"
id="rect3534-6-4-4-1"
width="41.3591"
height="26.326447"
x="417.37915"
y="357.74368" />
<rect
style="fill:#000000;fill-opacity:1;stroke:none;display:inline"
id="rect3534-6-4-4-4-2"
width="41.3591"
height="26.326456"
x="417.37915"
y="387.16739" />
<rect
style="fill:#00ff00;fill-opacity:1;stroke:none;display:inline"
id="rect3534-6-4-4-9-89"
width="21.972023"
height="12.388914"
x="417.37915"
y="357.74368" />
<rect
style="fill:#00ff00;fill-opacity:1;stroke:none;display:inline"
id="rect3534-6-4-4-9-8-3"
width="27.141911"
height="12.388914"
x="417.37915"
y="371.68124" />
<rect
style="fill:#00ffd0;fill-opacity:1;stroke:none;display:inline"
id="rect3534-6-4-4-9-86-6"
width="14.217191"
height="12.388914"
x="417.37915"
y="387.16739" />
<rect
style="fill:#00ffd0;fill-opacity:1;stroke:none;display:inline"
id="rect3534-6-4-4-9-8-8-8"
width="37.481686"
height="12.388914"
x="417.37915"
y="401.10489" />
<g
style="display:inline"
id="g8185-0"
transform="translate(263.42854,-494.85714)">
<path
transform="matrix(0.34133826,0,0,0.34830423,121.07781,823.29132)"
d="m 18.571428,203.07646 c 0,11.44019 -9.2741014,20.71429 -20.7142851,20.71429 -11.4401839,0 -20.7142849,-9.2741 -20.7142849,-20.71429 0,-11.44018 9.274101,-20.71428 20.7142849,-20.71428 11.4401837,0 20.7142851,9.2741 20.7142851,20.71428 z"
sodipodi:ry="20.714285"
sodipodi:rx="20.714285"
sodipodi:cy="203.07646"
sodipodi:cx="-2.1428571"
id="path6172-3-9-3-21"
style="fill:url(#linearGradient4898);fill-opacity:1;stroke:#2a2a2a;stroke-width:2.94077349;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
sodipodi:type="arc" />
<path
inkscape:connector-curvature="0"
id="path8165-0"
d="m 120.34637,888.07647 0,4.64285"
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
</g>
<g
style="display:inline"
id="g8273-5"
transform="translate(263.42854,-494.85714)">
<path
transform="matrix(0.34133826,0,0,0.34830423,137.57584,823.29132)"
d="m 18.571428,203.07646 c 0,11.44019 -9.2741014,20.71429 -20.7142851,20.71429 -11.4401839,0 -20.7142849,-9.2741 -20.7142849,-20.71429 0,-11.44018 9.274101,-20.71428 20.7142849,-20.71428 11.4401837,0 20.7142851,9.2741 20.7142851,20.71428 z"
sodipodi:ry="20.714285"
sodipodi:rx="20.714285"
sodipodi:cy="203.07646"
sodipodi:cx="-2.1428571"
id="path6172-3-9-3-2-1"
style="fill:url(#linearGradient4900);fill-opacity:1;stroke:#2a2a2a;stroke-width:2.94077349;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
sodipodi:type="arc" />
<path
inkscape:connector-curvature="0"
id="path8165-9-10"
d="m 142.2413,891.52509 -4.21321,1.95061"
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
</g>
<path
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
d="m 362.05344,396.32314 4.0778,2.21981"
id="path8165-9-4-85"
inkscape:connector-curvature="0" />
<rect
style="color:#000000;fill:url(#linearGradient5018);fill-opacity:1;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:3.71435571;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
id="rect3534-5-6"
width="160.31299"
height="79.151245"
x="308.61084"
y="426.81552" />
<path
sodipodi:type="arc"
style="opacity:0.50000006;fill:#ff0000;stroke:url(#linearGradient4904);stroke-width:4.71404982;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
id="path6162-9-4"
sodipodi:cx="-4.2857141"
sodipodi:cy="198.79076"
sodipodi:rx="35.714287"
sodipodi:ry="35"
d="m 31.428573,198.79076 c 0,19.32996 -15.989831,35 -35.7142871,35 -19.7244559,0 -35.7142869,-15.67004 -35.7142869,-35 0,-19.32997 15.989831,-35 35.7142869,-35 19.7244561,0 35.7142871,15.67003 35.7142871,35 z"
transform="matrix(0.47724548,0,0,0.48698502,335.16334,369.58303)" />
<path
sodipodi:type="arc"
style="fill:url(#radialGradient4906);fill-opacity:1;stroke:url(#linearGradient4908);stroke-width:2.94077349;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
id="path6172-6-6"
sodipodi:cx="-2.1428571"
sodipodi:cy="203.07646"
sodipodi:rx="20.714285"
sodipodi:ry="20.714285"
d="m 18.571428,203.07646 c 0,11.44019 -9.2741014,20.71429 -20.7142851,20.71429 -11.4401839,0 -20.7142849,-9.2741 -20.7142849,-20.71429 0,-11.44018 9.274101,-20.71428 20.7142849,-20.71428 11.4401837,0 20.7142851,9.2741 20.7142851,20.71428 z"
transform="matrix(0.63497502,0,0,0.64793348,334.47874,334.81112)" />
<rect
style="opacity:0.66000001;color:#000000;fill:#4b4b4b;fill-opacity:1;fill-rule:nonzero;stroke:#949494;stroke-width:0.63269919;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
id="rect3534-6-2-2"
width="51.698875"
height="62.038593"
x="357.92554"
y="434.70041" />
<text
xml:space="preserve"
style="font-size:16.68160248px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;display:inline;font-family:Sans"
x="366.28452"
y="464.1091"
id="text4618-1-5"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4620-7-8"
x="366.28452"
y="464.1091">OSC</tspan></text>
<path
sodipodi:type="arc"
style="fill:url(#linearGradient4910);fill-opacity:1;stroke:#2a2a2a;stroke-width:2.94077349;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
id="path6172-3-9-8-6"
sodipodi:cx="-2.1428571"
sodipodi:cy="203.07646"
sodipodi:rx="20.714285"
sodipodi:ry="20.714285"
d="m 18.571428,203.07646 c 0,11.44019 -9.2741014,20.71429 -20.7142851,20.71429 -11.4401839,0 -20.7142849,-9.2741 -20.7142849,-20.71429 0,-11.44018 9.274101,-20.71428 20.7142849,-20.71428 11.4401837,0 20.7142851,9.2741 20.7142851,20.71428 z"
transform="matrix(0.34133826,0,0,0.34830423,368.00834,408.58542)" />
<rect
style="opacity:0.66000001;color:#000000;fill:#4b4b4b;fill-opacity:1;fill-rule:nonzero;stroke:#949494;stroke-width:0.63269919;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
id="rect3534-6-4-5-2"
width="46.528988"
height="61.944588"
x="414.79419"
y="434.7977" />
<rect
style="fill:#000000;fill-opacity:1;stroke:none;display:inline"
id="rect3534-6-4-4-7-8"
width="41.3591"
height="26.326447"
x="417.37915"
y="437.89493" />
<rect
style="fill:#000000;fill-opacity:1;stroke:none;display:inline"
id="rect3534-6-4-4-4-4-4"
width="41.3591"
height="26.326456"
x="417.37915"
y="467.31863" />
<rect
style="fill:#00ff00;fill-opacity:1;stroke:none;display:inline"
id="rect3534-6-4-4-9-1-7"
width="21.972023"
height="12.388914"
x="417.37915"
y="437.89493" />
<rect
style="fill:#00ff00;fill-opacity:1;stroke:none;display:inline"
id="rect3534-6-4-4-9-8-85-2"
width="27.141911"
height="12.388914"
x="417.37915"
y="451.83249" />
<rect
style="fill:#00ffd0;fill-opacity:1;stroke:none;display:inline"
id="rect3534-6-4-4-9-86-9-4"
width="14.217191"
height="12.388914"
x="417.37915"
y="467.31863" />
<rect
style="fill:#00ffd0;fill-opacity:1;stroke:none;display:inline"
id="rect3534-6-4-4-9-8-8-7-0"
width="37.481686"
height="12.388914"
x="417.37915"
y="481.25613" />
<g
style="display:inline"
id="g8185-5-6"
transform="translate(263.42854,-414.7059)">
<path
transform="matrix(0.34133826,0,0,0.34830423,121.07781,823.29132)"
d="m 18.571428,203.07646 c 0,11.44019 -9.2741014,20.71429 -20.7142851,20.71429 -11.4401839,0 -20.7142849,-9.2741 -20.7142849,-20.71429 0,-11.44018 9.274101,-20.71428 20.7142849,-20.71428 11.4401837,0 20.7142851,9.2741 20.7142851,20.71428 z"
sodipodi:ry="20.714285"
sodipodi:rx="20.714285"
sodipodi:cy="203.07646"
sodipodi:cx="-2.1428571"
id="path6172-3-9-3-3-2"
style="fill:url(#linearGradient4912);fill-opacity:1;stroke:#2a2a2a;stroke-width:2.94077349;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
sodipodi:type="arc" />
<path
inkscape:connector-curvature="0"
id="path8165-8-9"
d="m 120.34637,888.07647 0,4.64285"
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
</g>
<g
style="display:inline"
id="g8273-8-9"
transform="translate(263.42854,-414.7059)">
<path
transform="matrix(0.34133826,0,0,0.34830423,137.57584,823.29132)"
d="m 18.571428,203.07646 c 0,11.44019 -9.2741014,20.71429 -20.7142851,20.71429 -11.4401839,0 -20.7142849,-9.2741 -20.7142849,-20.71429 0,-11.44018 9.274101,-20.71428 20.7142849,-20.71428 11.4401837,0 20.7142851,9.2741 20.7142851,20.71428 z"
sodipodi:ry="20.714285"
sodipodi:rx="20.714285"
sodipodi:cy="203.07646"
sodipodi:cx="-2.1428571"
id="path6172-3-9-3-2-3-0"
style="fill:url(#linearGradient4914);fill-opacity:1;stroke:#2a2a2a;stroke-width:2.94077349;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
sodipodi:type="arc" />
<path
inkscape:connector-curvature="0"
id="path8165-9-1-8"
d="m 142.2413,891.52509 -4.21321,1.95061"
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
</g>
<path
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
d="m 362.05344,476.47437 4.0778,2.21981"
id="path8165-9-4-8-1"
inkscape:connector-curvature="0" />
</g>
</svg>

+ 853
- 0
resources/scalable/carla.svg View File

@@ -0,0 +1,853 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->

<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="256"
height="256"
id="svg7563"
version="1.1"
inkscape:version="0.48.2 r9819"
sodipodi:docname="carla.svg">
<defs
id="defs7565">
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6174-3-8-7-3-7-8"
id="linearGradient4914"
gradientUnits="userSpaceOnUse"
x1="10.874059"
y1="218.95074"
x2="-19.337217"
y2="186.92368" />
<linearGradient
id="linearGradient6174-3-8-7-3-7-8">
<stop
style="stop-color:#4d4d4d;stop-opacity:1;"
offset="0"
id="stop6176-1-8-6-0-6-8" />
<stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="1"
id="stop6178-8-8-4-9-31-9" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6174-3-8-7-03-6"
id="linearGradient4912"
gradientUnits="userSpaceOnUse"
x1="10.874059"
y1="218.95074"
x2="-19.337217"
y2="186.92368" />
<linearGradient
id="linearGradient6174-3-8-7-03-6">
<stop
style="stop-color:#4d4d4d;stop-opacity:1;"
offset="0"
id="stop6176-1-8-6-04-0" />
<stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="1"
id="stop6178-8-8-4-4-4" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6174-3-8-9-3"
id="linearGradient4910"
gradientUnits="userSpaceOnUse"
x1="10.874059"
y1="218.95074"
x2="-19.337217"
y2="186.92368" />
<linearGradient
id="linearGradient6174-3-8-9-3">
<stop
style="stop-color:#4d4d4d;stop-opacity:1;"
offset="0"
id="stop6176-1-8-8-3" />
<stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="1"
id="stop6178-8-8-48-3" />
</linearGradient>
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient6174-29-7"
id="radialGradient4906"
gradientUnits="userSpaceOnUse"
cx="-2.1428571"
cy="203.07646"
fx="-2.1428571"
fy="203.07646"
r="22.184671" />
<linearGradient
id="linearGradient6174-29-7">
<stop
style="stop-color:#4d4d4d;stop-opacity:1;"
offset="0"
id="stop6176-3-5" />
<stop
id="stop8118-9-3"
offset="0.06451613"
style="stop-color:#636363;stop-opacity:1;" />
<stop
id="stop8116-0-8"
offset="0.28928199"
style="stop-color:#797979;stop-opacity:1;" />
<stop
id="stop8114-8-8"
offset="0.58732504"
style="stop-color:#a6a6a6;stop-opacity:1;" />
<stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="1"
id="stop6178-850-3" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6182-63-8"
id="linearGradient4908"
gradientUnits="userSpaceOnUse"
x1="-19.337217"
y1="186.92368"
x2="10.874059"
y2="218.95074" />
<linearGradient
id="linearGradient6182-63-8">
<stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="0"
id="stop6184-856-9" />
<stop
style="stop-color:#3b3b3b;stop-opacity:1;"
offset="1"
id="stop6186-11-6" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6164-63-1"
id="linearGradient4904"
gradientUnits="userSpaceOnUse"
x1="-26.607141"
y1="171.6479"
x2="43.750004"
y2="251.6479" />
<linearGradient
id="linearGradient6164-63-1">
<stop
style="stop-color:#919191;stop-opacity:1;"
offset="0"
id="stop6166-94-8" />
<stop
style="stop-color:#f0f0f0;stop-opacity:1;"
offset="1"
id="stop6168-8-5" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6187-8-7"
id="linearGradient5018"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-318.57139,-494.85713)"
x1="375.71429"
y1="946.64789"
x2="331.42856"
y2="839.50507" />
<linearGradient
id="linearGradient6187-8-7">
<stop
style="stop-color:#1a1a1a;stop-opacity:1;"
offset="0"
id="stop6189-7-89" />
<stop
style="stop-color:#202020;stop-opacity:1;"
offset="1"
id="stop6191-2-1" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6174-3-8-7-3-0"
id="linearGradient4900"
gradientUnits="userSpaceOnUse"
x1="10.874059"
y1="218.95074"
x2="-19.337217"
y2="186.92368" />
<linearGradient
id="linearGradient6174-3-8-7-3-0">
<stop
style="stop-color:#4d4d4d;stop-opacity:1;"
offset="0"
id="stop6176-1-8-6-0-3" />
<stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="1"
id="stop6178-8-8-4-9-0" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6174-3-8-7-9"
id="linearGradient4898"
gradientUnits="userSpaceOnUse"
x1="10.874059"
y1="218.95074"
x2="-19.337217"
y2="186.92368" />
<linearGradient
id="linearGradient6174-3-8-7-9">
<stop
style="stop-color:#4d4d4d;stop-opacity:1;"
offset="0"
id="stop6176-1-8-6-8" />
<stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="1"
id="stop6178-8-8-4-48" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6174-3-8-6"
id="linearGradient4896"
gradientUnits="userSpaceOnUse"
x1="10.874059"
y1="218.95074"
x2="-19.337217"
y2="186.92368" />
<linearGradient
id="linearGradient6174-3-8-6">
<stop
style="stop-color:#4d4d4d;stop-opacity:1;"
offset="0"
id="stop6176-1-8-1" />
<stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="1"
id="stop6178-8-8-1" />
</linearGradient>
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient6174-9"
id="radialGradient4892"
gradientUnits="userSpaceOnUse"
cx="-2.1428571"
cy="203.07646"
fx="-2.1428571"
fy="203.07646"
r="22.184671" />
<linearGradient
id="linearGradient6174-9">
<stop
style="stop-color:#4d4d4d;stop-opacity:1;"
offset="0"
id="stop6176-0" />
<stop
id="stop8118-8"
offset="0.06451613"
style="stop-color:#636363;stop-opacity:1;" />
<stop
id="stop8116-8"
offset="0.28928199"
style="stop-color:#797979;stop-opacity:1;" />
<stop
id="stop8114-5"
offset="0.58732504"
style="stop-color:#a6a6a6;stop-opacity:1;" />
<stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="1"
id="stop6178-0" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6182-6"
id="linearGradient4894"
gradientUnits="userSpaceOnUse"
x1="-19.337217"
y1="186.92368"
x2="10.874059"
y2="218.95074" />
<linearGradient
id="linearGradient6182-6">
<stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="0"
id="stop6184-3" />
<stop
style="stop-color:#3b3b3b;stop-opacity:1;"
offset="1"
id="stop6186-8" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6164-1"
id="linearGradient5147"
gradientUnits="userSpaceOnUse"
x1="-26.607141"
y1="171.6479"
x2="43.750004"
y2="251.6479" />
<linearGradient
id="linearGradient6164-1">
<stop
style="stop-color:#919191;stop-opacity:1;"
offset="0"
id="stop6166-2" />
<stop
style="stop-color:#f0f0f0;stop-opacity:1;"
offset="1"
id="stop6168-9" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6187-8-2"
id="linearGradient5041"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-318.57139,-494.85713)"
x1="375.71429"
y1="946.64789"
x2="331.42856"
y2="839.50507" />
<linearGradient
id="linearGradient6187-8-2">
<stop
style="stop-color:#1a1a1a;stop-opacity:1;"
offset="0"
id="stop6189-7-8" />
<stop
style="stop-color:#202020;stop-opacity:1;"
offset="1"
id="stop6191-2-3" />
</linearGradient>
<filter
color-interpolation-filters="sRGB"
inkscape:collect="always"
id="filter6576-0"
x="-0.10272374"
width="1.2054476"
y="-0.10272374"
height="1.2054476">
<feGaussianBlur
inkscape:collect="always"
stdDeviation="6.8910506"
id="feGaussianBlur6578-6" />
</filter>
<filter
color-interpolation-filters="sRGB"
inkscape:collect="always"
id="filter8786-1-1">
<feGaussianBlur
inkscape:collect="always"
stdDeviation="8.96"
id="feGaussianBlur8788-3-4" />
</filter>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4657-7-2"
id="linearGradient4884"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.83385449,0,0,0.83385449,-12.083733,130.8065)"
x1="241.21584"
y1="795.42145"
x2="-21.002575"
y2="516.61938" />
<linearGradient
id="linearGradient4657-7-2">
<stop
style="stop-color:#000000;stop-opacity:1"
offset="0"
id="stop4659-6-0" />
<stop
id="stop4661-39-6"
offset="0.29307336"
style="stop-color:#500000;stop-opacity:1" />
<stop
id="stop4663-1-8"
offset="0.80562556"
style="stop-color:#a00000;stop-opacity:1" />
<stop
style="stop-color:#d40000;stop-opacity:1"
offset="1"
id="stop4665-0-9" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3902-1-6"
id="linearGradient4886"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.83385449,0,0,0.83385449,-12.083733,130.8065)"
x1="320.00772"
y1="662.08124"
x2="-128.07874"
y2="629.75647" />
<linearGradient
id="linearGradient3902-1-6">
<stop
style="stop-color:#783c00;stop-opacity:1"
offset="0"
id="stop3904-18-6" />
<stop
id="stop3936-6-4"
offset="0.07563529"
style="stop-color:#d4a41c;stop-opacity:1" />
<stop
id="stop3934-4-9"
offset="0.14044002"
style="stop-color:#743800;stop-opacity:1" />
<stop
id="stop3932-3-5"
offset="0.20430526"
style="stop-color:#fcf87c;stop-opacity:1" />
<stop
id="stop3930-4-0"
offset="0.26901498"
style="stop-color:#a86c00;stop-opacity:1" />
<stop
id="stop3928-7-4"
offset="0.3417097"
style="stop-color:#9c6000;stop-opacity:1" />
<stop
id="stop3926-7-8"
offset="0.41261438"
style="stop-color:#fcfc80;stop-opacity:1" />
<stop
id="stop3924-0-7"
offset="0.48499879"
style="stop-color:#8c5000;stop-opacity:1" />
<stop
id="stop3922-7-1"
offset="0.54586536"
style="stop-color:#fcfc80;stop-opacity:1" />
<stop
id="stop3920-45-7"
offset="0.62692177"
style="stop-color:#d09c14;stop-opacity:1" />
<stop
id="stop3918-3-2"
offset="0.68774176"
style="stop-color:#804400;stop-opacity:1" />
<stop
id="stop3916-0-7"
offset="0.75042593"
style="stop-color:#d0a014;stop-opacity:0.9372549;" />
<stop
id="stop3914-7-2"
offset="0.81777459"
style="stop-color:#743800;stop-opacity:1" />
<stop
id="stop3912-2-2"
offset="0.87812954"
style="stop-color:#d0a014;stop-opacity:0.74901961;" />
<stop
id="stop3910-9-6"
offset="0.94099933"
style="stop-color:#743800;stop-opacity:1" />
<stop
style="stop-color:#fcfc80;stop-opacity:1"
offset="1"
id="stop3906-9-1" />
</linearGradient>
<linearGradient
y2="516.61938"
x2="-21.002575"
y1="795.42145"
x1="241.21584"
gradientTransform="matrix(0.83385449,0,0,0.83385449,-12.083733,130.8065)"
gradientUnits="userSpaceOnUse"
id="linearGradient7559"
xlink:href="#linearGradient4657-7-2"
inkscape:collect="always" />
<linearGradient
y2="629.75647"
x2="-128.07874"
y1="662.08124"
x1="320.00772"
gradientTransform="matrix(0.83385449,0,0,0.83385449,-12.083733,130.8065)"
gradientUnits="userSpaceOnUse"
id="linearGradient7561"
xlink:href="#linearGradient3902-1-6"
inkscape:collect="always" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.4"
inkscape:cx="56.017745"
inkscape:cy="139.84931"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1177"
inkscape:window-height="615"
inkscape:window-x="183"
inkscape:window-y="0"
inkscape:window-maximized="0" />
<metadata
id="metadata7568">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-263.42857,-301.50504)">
<g
transform="translate(326.01884,-229.79599)"
style="display:inline"
id="g8790-3-0"
inkscape:export-filename="/home/pj/Documents/svg/path10192-9.png"
inkscape:export-xdpi="89.989967"
inkscape:export-ydpi="89.989967">
<rect
transform="matrix(0.83385449,0,0,0.83385449,-10.399092,130.80653)"
ry="32"
rx="32"
y="505.79703"
x="-37.086269"
height="256"
width="256"
id="rect3756-4-1-0-0-5"
style="opacity:0.93280634;fill:#1a1a1a;fill-opacity:1;stroke:#1a1a1a;stroke-width:8;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline;filter:url(#filter8786-1-1)" />
<rect
ry="26.683344"
rx="26.683344"
y="552.56763"
x="-41.323643"
height="213.46675"
width="213.46675"
id="rect3756-4-1-2-9"
style="fill:url(#linearGradient7559);fill-opacity:1;stroke:url(#linearGradient7561);stroke-width:6.67083597;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
</g>
<rect
style="opacity:0.89723319;color:#000000;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter6576-0);enable-background:accumulate"
id="rect6570-4"
width="161"
height="161"
x="308.26733"
y="345.81552"
inkscape:export-filename="/home/pj/Documents/svg/path10192-9.png"
inkscape:export-xdpi="89.989967"
inkscape:export-ydpi="89.989967" />
<rect
style="color:#000000;fill:url(#linearGradient5041);fill-opacity:1;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:3.71435571;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
id="rect3534-2"
width="160.31299"
height="79.151245"
x="308.61084"
y="346.66428" />
<path
sodipodi:type="arc"
style="opacity:0.5;fill:#ff0000;stroke:url(#linearGradient5147);stroke-width:4.71404982;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
id="path6162-2"
sodipodi:cx="-4.2857141"
sodipodi:cy="198.79076"
sodipodi:rx="35.714287"
sodipodi:ry="35"
d="m 31.428573,198.79076 c 0,19.32996 -15.989831,35 -35.7142871,35 -19.7244559,0 -35.7142869,-15.67004 -35.7142869,-35 0,-19.32997 15.989831,-35 35.7142869,-35 19.7244561,0 35.7142871,15.67003 35.7142871,35 z"
transform="matrix(0.47724548,0,0,0.48698502,335.16334,289.43179)" />
<path
sodipodi:type="arc"
style="fill:url(#radialGradient4892);fill-opacity:1;stroke:url(#linearGradient4894);stroke-width:2.94077349;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
id="path6172-4"
sodipodi:cx="-2.1428571"
sodipodi:cy="203.07646"
sodipodi:rx="20.714285"
sodipodi:ry="20.714285"
d="m 18.571428,203.07646 c 0,11.44019 -9.2741014,20.71429 -20.7142851,20.71429 -11.4401839,0 -20.7142849,-9.2741 -20.7142849,-20.71429 0,-11.44018 9.274101,-20.71428 20.7142849,-20.71428 11.4401837,0 20.7142851,9.2741 20.7142851,20.71428 z"
transform="matrix(0.63497502,0,0,0.64793348,334.47874,254.65988)" />
<rect
style="opacity:0.66000001;color:#000000;fill:#4b4b4b;fill-opacity:1;fill-rule:nonzero;stroke:#949494;stroke-width:0.63269919;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
id="rect3534-6-7"
width="51.698875"
height="62.038593"
x="357.92554"
y="354.54916" />
<text
xml:space="preserve"
style="font-size:16.68160248px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;display:inline;font-family:Sans"
x="362.2439"
y="383.95786"
id="text4618-7"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4620-5"
x="362.2439"
y="383.95786">Carla</tspan></text>
<path
sodipodi:type="arc"
style="fill:url(#linearGradient4896);fill-opacity:1;stroke:#2a2a2a;stroke-width:2.94077349;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
id="path6172-3-9-4"
sodipodi:cx="-2.1428571"
sodipodi:cy="203.07646"
sodipodi:rx="20.714285"
sodipodi:ry="20.714285"
d="m 18.571428,203.07646 c 0,11.44019 -9.2741014,20.71429 -20.7142851,20.71429 -11.4401839,0 -20.7142849,-9.2741 -20.7142849,-20.71429 0,-11.44018 9.274101,-20.71428 20.7142849,-20.71428 11.4401837,0 20.7142851,9.2741 20.7142851,20.71428 z"
transform="matrix(0.34133826,0,0,0.34830423,368.00834,328.43419)" />
<rect
style="opacity:0.66000001;fill:#4b4b4b;fill-opacity:1;stroke:#949494;stroke-width:0.63269919;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
id="rect3534-6-4-8"
width="46.528988"
height="61.944588"
x="414.79419"
y="354.64645" />
<rect
style="fill:#000000;fill-opacity:1;stroke:none;display:inline"
id="rect3534-6-4-4-1"
width="41.3591"
height="26.326447"
x="417.37915"
y="357.74368" />
<rect
style="fill:#000000;fill-opacity:1;stroke:none;display:inline"
id="rect3534-6-4-4-4-2"
width="41.3591"
height="26.326456"
x="417.37915"
y="387.16739" />
<rect
style="fill:#00ff00;fill-opacity:1;stroke:none;display:inline"
id="rect3534-6-4-4-9-89"
width="21.972023"
height="12.388914"
x="417.37915"
y="357.74368" />
<rect
style="fill:#00ff00;fill-opacity:1;stroke:none;display:inline"
id="rect3534-6-4-4-9-8-3"
width="27.141911"
height="12.388914"
x="417.37915"
y="371.68124" />
<rect
style="fill:#00ffd2;fill-opacity:1;stroke:none;display:inline"
id="rect3534-6-4-4-9-86-6"
width="14.217191"
height="12.388914"
x="417.37915"
y="387.16739" />
<rect
style="fill:#00ffd2;fill-opacity:1;stroke:none;display:inline"
id="rect3534-6-4-4-9-8-8-8"
width="37.481686"
height="12.388914"
x="417.37915"
y="401.10489" />
<g
style="display:inline"
id="g8185-0"
transform="translate(263.42854,-494.85714)">
<path
transform="matrix(0.34133826,0,0,0.34830423,121.07781,823.29132)"
d="m 18.571428,203.07646 c 0,11.44019 -9.2741014,20.71429 -20.7142851,20.71429 -11.4401839,0 -20.7142849,-9.2741 -20.7142849,-20.71429 0,-11.44018 9.274101,-20.71428 20.7142849,-20.71428 11.4401837,0 20.7142851,9.2741 20.7142851,20.71428 z"
sodipodi:ry="20.714285"
sodipodi:rx="20.714285"
sodipodi:cy="203.07646"
sodipodi:cx="-2.1428571"
id="path6172-3-9-3-21"
style="fill:url(#linearGradient4898);fill-opacity:1;stroke:#2a2a2a;stroke-width:2.94077349;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
sodipodi:type="arc" />
<path
inkscape:connector-curvature="0"
id="path8165-0"
d="m 120.34637,888.07647 0,4.64285"
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
</g>
<g
style="display:inline"
id="g8273-5"
transform="translate(263.42854,-494.85714)">
<path
transform="matrix(0.34133826,0,0,0.34830423,137.57584,823.29132)"
d="m 18.571428,203.07646 c 0,11.44019 -9.2741014,20.71429 -20.7142851,20.71429 -11.4401839,0 -20.7142849,-9.2741 -20.7142849,-20.71429 0,-11.44018 9.274101,-20.71428 20.7142849,-20.71428 11.4401837,0 20.7142851,9.2741 20.7142851,20.71428 z"
sodipodi:ry="20.714285"
sodipodi:rx="20.714285"
sodipodi:cy="203.07646"
sodipodi:cx="-2.1428571"
id="path6172-3-9-3-2-1"
style="fill:url(#linearGradient4900);fill-opacity:1;stroke:#2a2a2a;stroke-width:2.94077349;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
sodipodi:type="arc" />
<path
inkscape:connector-curvature="0"
id="path8165-9-10"
d="m 142.2413,891.52509 -4.21321,1.95061"
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
</g>
<path
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
d="m 362.05344,396.32314 4.0778,2.21981"
id="path8165-9-4-85"
inkscape:connector-curvature="0" />
<rect
style="color:#000000;fill:url(#linearGradient5018);fill-opacity:1;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:3.71435571;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
id="rect3534-5-6"
width="160.31299"
height="79.151245"
x="308.61084"
y="426.81552" />
<path
sodipodi:type="arc"
style="opacity:0.50000006;fill:#ff0000;stroke:url(#linearGradient4904);stroke-width:4.71404982;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
id="path6162-9-4"
sodipodi:cx="-4.2857141"
sodipodi:cy="198.79076"
sodipodi:rx="35.714287"
sodipodi:ry="35"
d="m 31.428573,198.79076 c 0,19.32996 -15.989831,35 -35.7142871,35 -19.7244559,0 -35.7142869,-15.67004 -35.7142869,-35 0,-19.32997 15.989831,-35 35.7142869,-35 19.7244561,0 35.7142871,15.67003 35.7142871,35 z"
transform="matrix(0.47724548,0,0,0.48698502,335.16334,369.58303)" />
<path
sodipodi:type="arc"
style="fill:url(#radialGradient4906);fill-opacity:1;stroke:url(#linearGradient4908);stroke-width:2.94077349;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
id="path6172-6-6"
sodipodi:cx="-2.1428571"
sodipodi:cy="203.07646"
sodipodi:rx="20.714285"
sodipodi:ry="20.714285"
d="m 18.571428,203.07646 c 0,11.44019 -9.2741014,20.71429 -20.7142851,20.71429 -11.4401839,0 -20.7142849,-9.2741 -20.7142849,-20.71429 0,-11.44018 9.274101,-20.71428 20.7142849,-20.71428 11.4401837,0 20.7142851,9.2741 20.7142851,20.71428 z"
transform="matrix(0.63497502,0,0,0.64793348,334.47874,334.81112)" />
<rect
style="opacity:0.66000001;color:#000000;fill:#4b4b4b;fill-opacity:1;fill-rule:nonzero;stroke:#949494;stroke-width:0.63269919;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
id="rect3534-6-2-2"
width="51.698875"
height="62.038593"
x="357.92554"
y="434.70041" />
<text
xml:space="preserve"
style="font-size:16.68160248px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;display:inline;font-family:Sans"
x="362.2439"
y="464.1091"
id="text4618-1-5"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4620-7-8"
x="362.2439"
y="464.1091">Carla</tspan></text>
<path
sodipodi:type="arc"
style="fill:url(#linearGradient4910);fill-opacity:1;stroke:#2a2a2a;stroke-width:2.94077349;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
id="path6172-3-9-8-6"
sodipodi:cx="-2.1428571"
sodipodi:cy="203.07646"
sodipodi:rx="20.714285"
sodipodi:ry="20.714285"
d="m 18.571428,203.07646 c 0,11.44019 -9.2741014,20.71429 -20.7142851,20.71429 -11.4401839,0 -20.7142849,-9.2741 -20.7142849,-20.71429 0,-11.44018 9.274101,-20.71428 20.7142849,-20.71428 11.4401837,0 20.7142851,9.2741 20.7142851,20.71428 z"
transform="matrix(0.34133826,0,0,0.34830423,368.00834,408.58542)" />
<rect
style="opacity:0.66000001;color:#000000;fill:#4b4b4b;fill-opacity:1;fill-rule:nonzero;stroke:#949494;stroke-width:0.63269919;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
id="rect3534-6-4-5-2"
width="46.528988"
height="61.944588"
x="414.79419"
y="434.7977" />
<rect
style="fill:#000000;fill-opacity:1;stroke:none;display:inline"
id="rect3534-6-4-4-7-8"
width="41.3591"
height="26.326447"
x="417.37915"
y="437.89493" />
<rect
style="fill:#000000;fill-opacity:1;stroke:none;display:inline"
id="rect3534-6-4-4-4-4-4"
width="41.3591"
height="26.326456"
x="417.37915"
y="467.31863" />
<rect
style="fill:#00ff00;fill-opacity:1;stroke:none;display:inline"
id="rect3534-6-4-4-9-1-7"
width="21.972023"
height="12.388914"
x="417.37915"
y="437.89493" />
<rect
style="fill:#00ff00;fill-opacity:1;stroke:none;display:inline"
id="rect3534-6-4-4-9-8-85-2"
width="27.141911"
height="12.388914"
x="417.37915"
y="451.83249" />
<rect
style="fill:#00ffd2;fill-opacity:1;stroke:none;display:inline"
id="rect3534-6-4-4-9-86-9-4"
width="14.217191"
height="12.388914"
x="417.37915"
y="467.31863" />
<rect
style="fill:#00ffd2;fill-opacity:1;stroke:none;display:inline"
id="rect3534-6-4-4-9-8-8-7-0"
width="37.481686"
height="12.388914"
x="417.37915"
y="481.25613" />
<g
style="display:inline"
id="g8185-5-6"
transform="translate(263.42854,-414.7059)">
<path
transform="matrix(0.34133826,0,0,0.34830423,121.07781,823.29132)"
d="m 18.571428,203.07646 c 0,11.44019 -9.2741014,20.71429 -20.7142851,20.71429 -11.4401839,0 -20.7142849,-9.2741 -20.7142849,-20.71429 0,-11.44018 9.274101,-20.71428 20.7142849,-20.71428 11.4401837,0 20.7142851,9.2741 20.7142851,20.71428 z"
sodipodi:ry="20.714285"
sodipodi:rx="20.714285"
sodipodi:cy="203.07646"
sodipodi:cx="-2.1428571"
id="path6172-3-9-3-3-2"
style="fill:url(#linearGradient4912);fill-opacity:1;stroke:#2a2a2a;stroke-width:2.94077349;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
sodipodi:type="arc" />
<path
inkscape:connector-curvature="0"
id="path8165-8-9"
d="m 120.34637,888.07647 0,4.64285"
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
</g>
<g
style="display:inline"
id="g8273-8-9"
transform="translate(263.42854,-414.7059)">
<path
transform="matrix(0.34133826,0,0,0.34830423,137.57584,823.29132)"
d="m 18.571428,203.07646 c 0,11.44019 -9.2741014,20.71429 -20.7142851,20.71429 -11.4401839,0 -20.7142849,-9.2741 -20.7142849,-20.71429 0,-11.44018 9.274101,-20.71428 20.7142849,-20.71428 11.4401837,0 20.7142851,9.2741 20.7142851,20.71428 z"
sodipodi:ry="20.714285"
sodipodi:rx="20.714285"
sodipodi:cy="203.07646"
sodipodi:cx="-2.1428571"
id="path6172-3-9-3-2-3-0"
style="fill:url(#linearGradient4914);fill-opacity:1;stroke:#2a2a2a;stroke-width:2.94077349;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
sodipodi:type="arc" />
<path
inkscape:connector-curvature="0"
id="path8165-9-1-8"
d="m 142.2413,891.52509 -4.21321,1.95061"
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
</g>
<path
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
d="m 362.05344,476.47437 4.0778,2.21981"
id="path8165-9-4-8-1"
inkscape:connector-curvature="0" />
</g>
</svg>

+ 305
- 0
resources/ui/carla.ui View File

@@ -0,0 +1,305 @@
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>CarlaMainW</class>
<widget class="QMainWindow" name="CarlaMainW">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>756</width>
<height>218</height>
</rect>
</property>
<property name="windowTitle">
<string>Carla</string>
</property>
<widget class="QWidget" name="centralwidget">
<layout class="QVBoxLayout" name="verticalLayout">
<property name="leftMargin">
<number>0</number>
</property>
<property name="topMargin">
<number>2</number>
</property>
<property name="rightMargin">
<number>0</number>
</property>
<property name="bottomMargin">
<number>2</number>
</property>
<item>
<widget class="QWidget" name="w_plugins" native="true">
<layout class="QVBoxLayout" name="layout">
<property name="spacing">
<number>1</number>
</property>
<property name="margin">
<number>0</number>
</property>
</layout>
</widget>
</item>
<item>
<spacer name="verticalSpacer">
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>20</width>
<height>40</height>
</size>
</property>
</spacer>
</item>
</layout>
</widget>
<widget class="QMenuBar" name="menubar">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>756</width>
<height>19</height>
</rect>
</property>
<widget class="QMenu" name="menu_File">
<property name="title">
<string>&amp;File</string>
</property>
<addaction name="act_file_new"/>
<addaction name="act_file_open"/>
<addaction name="act_file_save"/>
<addaction name="act_file_save_as"/>
<addaction name="separator"/>
<addaction name="act_file_quit"/>
</widget>
<widget class="QMenu" name="menu_Plugin">
<property name="title">
<string>&amp;Plugin</string>
</property>
<addaction name="act_plugin_add"/>
<addaction name="separator"/>
<addaction name="act_plugin_remove_all"/>
</widget>
<widget class="QMenu" name="menu_Help">
<property name="title">
<string>&amp;Help</string>
</property>
<addaction name="act_help_about"/>
<addaction name="act_help_about_qt"/>
</widget>
<widget class="QMenu" name="menu_Settings">
<property name="title">
<string>&amp;Settings</string>
</property>
<addaction name="act_settings_show_toolbar"/>
<addaction name="separator"/>
<addaction name="act_settings_configure"/>
</widget>
<widget class="QMenu" name="menu_Engine">
<property name="title">
<string>&amp;Engine</string>
</property>
<addaction name="act_engine_start"/>
<addaction name="act_engine_stop"/>
<addaction name="separator"/>
<addaction name="act_engine_configure"/>
</widget>
<addaction name="menu_File"/>
<addaction name="menu_Engine"/>
<addaction name="menu_Plugin"/>
<addaction name="menu_Settings"/>
<addaction name="menu_Help"/>
</widget>
<widget class="QStatusBar" name="statusbar"/>
<widget class="QToolBar" name="toolBar">
<property name="windowTitle">
<string>toolBar</string>
</property>
<property name="movable">
<bool>false</bool>
</property>
<property name="allowedAreas">
<set>Qt::NoToolBarArea</set>
</property>
<property name="toolButtonStyle">
<enum>Qt::ToolButtonTextBesideIcon</enum>
</property>
<attribute name="toolBarArea">
<enum>TopToolBarArea</enum>
</attribute>
<attribute name="toolBarBreak">
<bool>false</bool>
</attribute>
<addaction name="act_file_new"/>
<addaction name="act_file_open"/>
<addaction name="act_file_save"/>
<addaction name="act_file_save_as"/>
<addaction name="separator"/>
<addaction name="act_engine_start"/>
<addaction name="act_engine_stop"/>
<addaction name="act_engine_configure"/>
<addaction name="separator"/>
<addaction name="act_plugin_add"/>
<addaction name="act_plugin_remove_all"/>
</widget>
<action name="act_file_save">
<property name="icon">
<iconset resource="../resources.qrc">
<normaloff>:/16x16/document-save.png</normaloff>:/16x16/document-save.png</iconset>
</property>
<property name="text">
<string>&amp;Save</string>
</property>
</action>
<action name="act_file_save_as">
<property name="icon">
<iconset resource="../resources.qrc">
<normaloff>:/16x16/document-save-as.png</normaloff>:/16x16/document-save-as.png</iconset>
</property>
<property name="text">
<string>Save &amp;As...</string>
</property>
</action>
<action name="act_file_new">
<property name="icon">
<iconset resource="../resources.qrc">
<normaloff>:/16x16/document-new.png</normaloff>:/16x16/document-new.png</iconset>
</property>
<property name="text">
<string>&amp;New</string>
</property>
</action>
<action name="act_file_open">
<property name="icon">
<iconset resource="../resources.qrc">
<normaloff>:/16x16/document-open.png</normaloff>:/16x16/document-open.png</iconset>
</property>
<property name="text">
<string>&amp;Open...</string>
</property>
</action>
<action name="act_file_quit">
<property name="icon">
<iconset resource="../resources.qrc">
<normaloff>:/16x16/application-exit.png</normaloff>:/16x16/application-exit.png</iconset>
</property>
<property name="text">
<string>&amp;Quit</string>
</property>
</action>
<action name="act_plugin_remove_all">
<property name="icon">
<iconset resource="../resources.qrc">
<normaloff>:/16x16/edit-delete.png</normaloff>:/16x16/edit-delete.png</iconset>
</property>
<property name="text">
<string>&amp;Remove All</string>
</property>
</action>
<action name="act_help_about">
<property name="text">
<string>&amp;About</string>
</property>
</action>
<action name="act_help_about_qt">
<property name="text">
<string>About &amp;Qt</string>
</property>
</action>
<action name="act_plugin_add">
<property name="icon">
<iconset resource="../resources.qrc">
<normaloff>:/16x16/list-add.png</normaloff>:/16x16/list-add.png</iconset>
</property>
<property name="text">
<string>&amp;Add New...</string>
</property>
</action>
<action name="act_settings_show_toolbar">
<property name="checkable">
<bool>true</bool>
</property>
<property name="text">
<string>Show &amp;Toolbar</string>
</property>
</action>
<action name="act_settings_configure">
<property name="icon">
<iconset resource="../resources.qrc">
<normaloff>:/16x16/configure.png</normaloff>:/16x16/configure.png</iconset>
</property>
<property name="text">
<string>Configure Carla</string>
</property>
</action>
<action name="act_engine_start">
<property name="icon">
<iconset resource="../resources.qrc">
<normaloff>:/16x16/media-playback-start.png</normaloff>:/16x16/media-playback-start.png</iconset>
</property>
<property name="text">
<string>&amp;Start</string>
</property>
</action>
<action name="act_engine_stop">
<property name="icon">
<iconset resource="../resources.qrc">
<normaloff>:/16x16/media-playback-stop.png</normaloff>:/16x16/media-playback-stop.png</iconset>
</property>
<property name="text">
<string>St&amp;op</string>
</property>
</action>
<action name="act_engine_configure">
<property name="enabled">
<bool>false</bool>
</property>
<property name="icon">
<iconset resource="../resources.qrc">
<normaloff>:/16x16/configure.png</normaloff>:/16x16/configure.png</iconset>
</property>
<property name="text">
<string>Configure Driver</string>
</property>
</action>
</widget>
<resources>
<include location="../resources.qrc"/>
</resources>
<connections>
<connection>
<sender>act_file_quit</sender>
<signal>triggered()</signal>
<receiver>CarlaMainW</receiver>
<slot>close()</slot>
<hints>
<hint type="sourcelabel">
<x>-1</x>
<y>-1</y>
</hint>
<hint type="destinationlabel">
<x>189</x>
<y>34</y>
</hint>
</hints>
</connection>
<connection>
<sender>act_settings_show_toolbar</sender>
<signal>triggered(bool)</signal>
<receiver>toolBar</receiver>
<slot>setVisible(bool)</slot>
<hints>
<hint type="sourcelabel">
<x>-1</x>
<y>-1</y>
</hint>
<hint type="destinationlabel">
<x>354</x>
<y>35</y>
</hint>
</hints>
</connection>
</connections>
</ui>

+ 366
- 0
resources/ui/carla_about.ui View File

@@ -0,0 +1,366 @@
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>CarlaAboutW</class>
<widget class="QDialog" name="CarlaAboutW">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>484</width>
<height>433</height>
</rect>
</property>
<property name="windowTitle">
<string>About Carla</string>
</property>
<layout class="QVBoxLayout" name="verticalLayout">
<item>
<widget class="QTabWidget" name="tabWidget">
<property name="currentIndex">
<number>0</number>
</property>
<widget class="QWidget" name="about">
<attribute name="title">
<string>About</string>
</attribute>
<layout class="QGridLayout" name="gridLayout_3">
<item row="2" column="1">
<widget class="QLabel" name="l_about">
<property name="text">
<string>About text here</string>
</property>
</widget>
</item>
<item row="7" column="0" colspan="2">
<spacer name="verticalSpacer">
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>20</width>
<height>40</height>
</size>
</property>
</spacer>
</item>
<item row="2" column="0">
<spacer name="horizontalSpacer">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
</spacer>
</item>
<item row="2" column="2">
<spacer name="horizontalSpacer_2">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
</spacer>
</item>
<item row="1" column="0" colspan="3">
<widget class="QLabel" name="l_icons">
<property name="text">
<string/>
</property>
<property name="pixmap">
<pixmap resource="../../resources/resources.qrc">:/bitmaps/carla_about.png</pixmap>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
</widget>
</item>
<item row="0" column="0" colspan="3">
<spacer name="verticalSpacer_4">
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>20</width>
<height>40</height>
</size>
</property>
</spacer>
</item>
<item row="3" column="0" colspan="3">
<widget class="QLabel" name="l_extended">
<property name="text">
<string>Extended licensing here</string>
</property>
<property name="wordWrap">
<bool>true</bool>
</property>
</widget>
</item>
</layout>
</widget>
<widget class="QWidget" name="features">
<attribute name="title">
<string>Features</string>
</attribute>
<layout class="QGridLayout" name="gridLayout">
<item row="0" column="0">
<widget class="QLabel" name="label_3">
<property name="text">
<string>LADSPA:</string>
</property>
<property name="alignment">
<set>Qt::AlignRight|Qt::AlignTop|Qt::AlignTrailing</set>
</property>
</widget>
</item>
<item row="0" column="1">
<widget class="QLabel" name="l_ladspa">
<property name="text">
<string>TextLabel</string>
</property>
<property name="alignment">
<set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set>
</property>
</widget>
</item>
<item row="2" column="0">
<widget class="QLabel" name="label_4">
<property name="text">
<string>DSSI:</string>
</property>
<property name="alignment">
<set>Qt::AlignRight|Qt::AlignTop|Qt::AlignTrailing</set>
</property>
</widget>
</item>
<item row="2" column="1">
<widget class="QLabel" name="l_dssi">
<property name="text">
<string>TextLabel</string>
</property>
<property name="alignment">
<set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set>
</property>
</widget>
</item>
<item row="4" column="0">
<widget class="QLabel" name="label_5">
<property name="text">
<string>LV2:</string>
</property>
<property name="alignment">
<set>Qt::AlignRight|Qt::AlignTop|Qt::AlignTrailing</set>
</property>
</widget>
</item>
<item row="4" column="1">
<widget class="QLabel" name="l_lv2">
<property name="text">
<string>TextLabel</string>
</property>
<property name="alignment">
<set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set>
</property>
</widget>
</item>
<item row="6" column="0">
<widget class="QLabel" name="label_6">
<property name="text">
<string>VST:</string>
</property>
<property name="alignment">
<set>Qt::AlignRight|Qt::AlignTop|Qt::AlignTrailing</set>
</property>
</widget>
</item>
<item row="6" column="1">
<widget class="QLabel" name="l_vst">
<property name="text">
<string>TextLabel</string>
</property>
<property name="alignment">
<set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set>
</property>
</widget>
</item>
<item row="1" column="0" colspan="2">
<widget class="Line" name="line">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
</widget>
</item>
<item row="5" column="0" colspan="2">
<widget class="Line" name="line_2">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
</widget>
</item>
<item row="3" column="0" colspan="2">
<widget class="Line" name="line_3">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
</widget>
</item>
<item row="7" column="0" colspan="2">
<spacer name="verticalSpacer_3">
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>20</width>
<height>40</height>
</size>
</property>
</spacer>
</item>
</layout>
</widget>
<widget class="QWidget" name="osc">
<attribute name="title">
<string>OSC</string>
</attribute>
<layout class="QGridLayout" name="gridLayout_2">
<item row="0" column="0">
<widget class="QLabel" name="label_2">
<property name="text">
<string>Host URL:</string>
</property>
<property name="alignment">
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
</widget>
</item>
<item row="0" column="1">
<widget class="QLineEdit" name="le_osc_url">
<property name="readOnly">
<bool>true</bool>
</property>
</widget>
</item>
<item row="1" column="0">
<widget class="QLabel" name="label_7">
<property name="text">
<string>Valid commands:</string>
</property>
<property name="alignment">
<set>Qt::AlignRight|Qt::AlignTop|Qt::AlignTrailing</set>
</property>
</widget>
</item>
<item row="1" column="1">
<widget class="QLabel" name="l_osc_cmds">
<property name="font">
<font>
<family>DejaVu Sans Mono</family>
</font>
</property>
<property name="text">
<string>valid osc commands here</string>
</property>
<property name="alignment">
<set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set>
</property>
</widget>
</item>
<item row="2" column="0">
<widget class="QLabel" name="label">
<property name="text">
<string>Example:</string>
</property>
<property name="alignment">
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
</widget>
</item>
<item row="2" column="1">
<widget class="QLabel" name="l_example">
<property name="font">
<font>
<family>DejaVu Sans Mono</family>
</font>
</property>
<property name="text">
<string>TextLabel</string>
</property>
</widget>
</item>
<item row="3" column="1">
<widget class="QLabel" name="l_example_help">
<property name="text">
<string>TextLabel</string>
</property>
<property name="alignment">
<set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter</set>
</property>
</widget>
</item>
<item row="4" column="0" colspan="2">
<spacer name="verticalSpacer_2">
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>456</width>
<height>35</height>
</size>
</property>
</spacer>
</item>
</layout>
</widget>
</widget>
</item>
<item>
<widget class="QDialogButtonBox" name="buttonBox">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="standardButtons">
<set>QDialogButtonBox::Ok</set>
</property>
</widget>
</item>
</layout>
</widget>
<resources>
<include location="../../resources/resources.qrc"/>
<include location="../../resources/resources.qrc"/>
</resources>
<connections>
<connection>
<sender>buttonBox</sender>
<signal>accepted()</signal>
<receiver>CarlaAboutW</receiver>
<slot>accept()</slot>
<hints>
<hint type="sourcelabel">
<x>248</x>
<y>254</y>
</hint>
<hint type="destinationlabel">
<x>157</x>
<y>274</y>
</hint>
</hints>
</connection>
<connection>
<sender>buttonBox</sender>
<signal>rejected()</signal>
<receiver>CarlaAboutW</receiver>
<slot>reject()</slot>
<hints>
<hint type="sourcelabel">
<x>316</x>
<y>260</y>
</hint>
<hint type="destinationlabel">
<x>286</x>
<y>274</y>
</hint>
</hints>
</connection>
</connections>
</ui>

+ 160
- 0
resources/ui/carla_control.ui View File

@@ -0,0 +1,160 @@
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>CarlaControlW</class>
<widget class="QMainWindow" name="CarlaControlW">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>648</width>
<height>155</height>
</rect>
</property>
<property name="windowTitle">
<string>Carla Control</string>
</property>
<widget class="QWidget" name="centralwidget">
<layout class="QVBoxLayout" name="verticalLayout">
<property name="margin">
<number>0</number>
</property>
<item>
<widget class="QWidget" name="w_plugins" native="true">
<layout class="QVBoxLayout" name="layout">
<property name="spacing">
<number>3</number>
</property>
<property name="margin">
<number>0</number>
</property>
</layout>
</widget>
</item>
<item>
<spacer name="verticalSpacer">
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>20</width>
<height>40</height>
</size>
</property>
</spacer>
</item>
</layout>
</widget>
<widget class="QMenuBar" name="menubar">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>648</width>
<height>19</height>
</rect>
</property>
<widget class="QMenu" name="menu_File">
<property name="title">
<string>&amp;File</string>
</property>
<addaction name="act_file_connect"/>
<addaction name="act_file_refresh"/>
<addaction name="separator"/>
<addaction name="act_file_quit"/>
</widget>
<widget class="QMenu" name="menu_Help">
<property name="title">
<string>&amp;Help</string>
</property>
<addaction name="act_help_about"/>
<addaction name="act_help_about_qt"/>
</widget>
<addaction name="menu_File"/>
<addaction name="menu_Help"/>
</widget>
<widget class="QStatusBar" name="statusbar"/>
<widget class="QToolBar" name="toolBar">
<property name="windowTitle">
<string>toolBar</string>
</property>
<property name="movable">
<bool>false</bool>
</property>
<property name="allowedAreas">
<set>Qt::NoToolBarArea</set>
</property>
<property name="toolButtonStyle">
<enum>Qt::ToolButtonTextBesideIcon</enum>
</property>
<attribute name="toolBarArea">
<enum>TopToolBarArea</enum>
</attribute>
<attribute name="toolBarBreak">
<bool>false</bool>
</attribute>
<addaction name="act_file_connect"/>
<addaction name="act_file_refresh"/>
<addaction name="separator"/>
<addaction name="act_file_quit"/>
</widget>
<action name="act_file_connect">
<property name="icon">
<iconset resource="../../resources/resources.qrc">
<normaloff>:/16x16/network-connect.png</normaloff>:/16x16/network-connect.png</iconset>
</property>
<property name="text">
<string>&amp;Connect...</string>
</property>
</action>
<action name="act_file_quit">
<property name="icon">
<iconset resource="../../resources/resources.qrc">
<normaloff>:/16x16/application-exit.png</normaloff>:/16x16/application-exit.png</iconset>
</property>
<property name="text">
<string>&amp;Quit</string>
</property>
</action>
<action name="act_help_about">
<property name="text">
<string>&amp;About</string>
</property>
</action>
<action name="act_help_about_qt">
<property name="text">
<string>About &amp;Qt</string>
</property>
</action>
<action name="act_file_refresh">
<property name="icon">
<iconset resource="../../resources/resources.qrc">
<normaloff>:/16x16/view-refresh.png</normaloff>:/16x16/view-refresh.png</iconset>
</property>
<property name="text">
<string>&amp;Refresh</string>
</property>
</action>
</widget>
<resources>
<include location="../../resources/resources.qrc"/>
</resources>
<connections>
<connection>
<sender>act_file_quit</sender>
<signal>triggered()</signal>
<receiver>CarlaControlW</receiver>
<slot>close()</slot>
<hints>
<hint type="sourcelabel">
<x>-1</x>
<y>-1</y>
</hint>
<hint type="destinationlabel">
<x>189</x>
<y>34</y>
</hint>
</hints>
</connection>
</connections>
</ui>

+ 350
- 0
resources/ui/carla_database.ui View File

@@ -0,0 +1,350 @@
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>PluginDatabaseW</class>
<widget class="QDialog" name="PluginDatabaseW">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>929</width>
<height>565</height>
</rect>
</property>
<property name="windowTitle">
<string>Carla - Add New</string>
</property>
<layout class="QVBoxLayout" name="verticalLayout">
<item>
<layout class="QHBoxLayout" name="horizontalLayout">
<item>
<widget class="QLineEdit" name="lineEdit"/>
</item>
<item>
<widget class="QLabel" name="label_filters">
<property name="text">
<string>Special Filters:</string>
</property>
<property name="alignment">
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
</widget>
</item>
<item>
<widget class="QToolButton" name="tb_filters">
<property name="autoRaise">
<bool>true</bool>
</property>
<property name="arrowType">
<enum>Qt::UpArrow</enum>
</property>
</widget>
</item>
<item>
<widget class="QPushButton" name="b_refresh">
<property name="text">
<string>Refresh</string>
</property>
<property name="icon">
<iconset resource="../../resources/resources.qrc">
<normaloff>:/16x16/view-refresh.png</normaloff>:/16x16/view-refresh.png</iconset>
</property>
</widget>
</item>
</layout>
</item>
<item>
<widget class="QFrame" name="frame">
<property name="frameShape">
<enum>QFrame::StyledPanel</enum>
</property>
<property name="frameShadow">
<enum>QFrame::Sunken</enum>
</property>
<layout class="QGridLayout" name="gridLayout">
<item row="2" column="0">
<widget class="QCheckBox" name="ch_dssi">
<property name="text">
<string>DSSI</string>
</property>
</widget>
</item>
<item row="3" column="0">
<widget class="QCheckBox" name="ch_lv2">
<property name="text">
<string>LV2</string>
</property>
</widget>
</item>
<item row="4" column="0">
<widget class="QCheckBox" name="ch_vst">
<property name="text">
<string>VST</string>
</property>
</widget>
</item>
<item row="1" column="0">
<widget class="QCheckBox" name="ch_ladspa">
<property name="text">
<string>LADSPA</string>
</property>
</widget>
</item>
<item row="5" column="0">
<widget class="QCheckBox" name="ch_kits">
<property name="text">
<string>Sound Kits</string>
</property>
</widget>
</item>
<item row="0" column="0">
<widget class="QCheckBox" name="ch_internal">
<property name="text">
<string>Internal</string>
</property>
</widget>
</item>
<item row="0" column="1">
<widget class="QCheckBox" name="ch_effects">
<property name="text">
<string>Effects</string>
</property>
</widget>
</item>
<item row="1" column="1">
<widget class="QCheckBox" name="ch_instruments">
<property name="text">
<string>Instruments</string>
</property>
</widget>
</item>
<item row="2" column="1">
<widget class="QCheckBox" name="ch_midi">
<property name="text">
<string>MIDI Plugins</string>
</property>
</widget>
</item>
<item row="3" column="1">
<widget class="QCheckBox" name="ch_other">
<property name="text">
<string>Other/Misc</string>
</property>
</widget>
</item>
<item row="0" column="2">
<widget class="QCheckBox" name="ch_native">
<property name="text">
<string>Native</string>
</property>
</widget>
</item>
<item row="1" column="2">
<widget class="QCheckBox" name="ch_bridged">
<property name="text">
<string>Bridged</string>
</property>
</widget>
</item>
<item row="2" column="2">
<widget class="QCheckBox" name="ch_bridged_wine">
<property name="text">
<string>Bridged (Wine)</string>
</property>
</widget>
</item>
<item row="3" column="2">
<widget class="QCheckBox" name="ch_stereo">
<property name="text">
<string>Stereo only</string>
</property>
</widget>
</item>
<item row="4" column="2">
<widget class="QCheckBox" name="ch_gui">
<property name="text">
<string>With GUI Only</string>
</property>
</widget>
</item>
</layout>
</widget>
</item>
<item>
<widget class="QTableWidget" name="tableWidget">
<property name="editTriggers">
<set>QAbstractItemView::NoEditTriggers</set>
</property>
<property name="showDropIndicator" stdset="0">
<bool>false</bool>
</property>
<property name="dragDropOverwriteMode">
<bool>false</bool>
</property>
<property name="alternatingRowColors">
<bool>true</bool>
</property>
<property name="selectionMode">
<enum>QAbstractItemView::SingleSelection</enum>
</property>
<property name="selectionBehavior">
<enum>QAbstractItemView::SelectRows</enum>
</property>
<property name="showGrid">
<bool>false</bool>
</property>
<property name="gridStyle">
<enum>Qt::NoPen</enum>
</property>
<property name="sortingEnabled">
<bool>true</bool>
</property>
<attribute name="horizontalHeaderStretchLastSection">
<bool>true</bool>
</attribute>
<attribute name="verticalHeaderVisible">
<bool>false</bool>
</attribute>
<attribute name="verticalHeaderDefaultSectionSize">
<number>22</number>
</attribute>
<attribute name="verticalHeaderMinimumSectionSize">
<number>12</number>
</attribute>
<column>
<property name="text">
<string>Name</string>
</property>
</column>
<column>
<property name="text">
<string>Label</string>
</property>
</column>
<column>
<property name="text">
<string>Maker</string>
</property>
</column>
<column>
<property name="text">
<string>ID</string>
</property>
</column>
<column>
<property name="text">
<string>Audio Ins</string>
</property>
</column>
<column>
<property name="text">
<string>Audio Outs</string>
</property>
</column>
<column>
<property name="text">
<string>Param Ins</string>
</property>
</column>
<column>
<property name="text">
<string>Param Outs</string>
</property>
</column>
<column>
<property name="text">
<string>Programs</string>
</property>
</column>
<column>
<property name="text">
<string>Has GUI</string>
</property>
</column>
<column>
<property name="text">
<string>Is Synth</string>
</property>
</column>
<column>
<property name="text">
<string>Is Bridged</string>
</property>
</column>
<column>
<property name="text">
<string>Type</string>
</property>
</column>
<column>
<property name="text">
<string>Binary</string>
</property>
</column>
</widget>
</item>
<item>
<layout class="QHBoxLayout" name="horizontalLayout_2">
<item>
<widget class="QLabel" name="label">
<property name="text">
<string>(Number of Plugins go here)</string>
</property>
</widget>
</item>
<item>
<spacer name="horizontalSpacer">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>40</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
<item>
<widget class="QPushButton" name="b_add">
<property name="text">
<string>&amp;Add Plugin</string>
</property>
<property name="icon">
<iconset resource="../../resources/resources.qrc">
<normaloff>:/16x16/list-add.png</normaloff>:/16x16/list-add.png</iconset>
</property>
</widget>
</item>
</layout>
</item>
</layout>
</widget>
<tabstops>
<tabstop>lineEdit</tabstop>
<tabstop>b_add</tabstop>
<tabstop>tb_filters</tabstop>
<tabstop>b_refresh</tabstop>
<tabstop>tableWidget</tabstop>
</tabstops>
<resources>
<include location="../../resources/resources.qrc"/>
</resources>
<connections>
<connection>
<sender>tb_filters</sender>
<signal>toggled(bool)</signal>
<receiver>frame</receiver>
<slot>setVisible(bool)</slot>
<hints>
<hint type="sourcelabel">
<x>723</x>
<y>21</y>
</hint>
<hint type="destinationlabel">
<x>736</x>
<y>39</y>
</hint>
</hints>
</connection>
</connections>
</ui>

+ 78
- 0
resources/ui/carla_driver.ui View File

@@ -0,0 +1,78 @@
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>Dialog</class>
<widget class="QDialog" name="Dialog">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>400</width>
<height>300</height>
</rect>
</property>
<property name="windowTitle">
<string>Dialog</string>
</property>
<widget class="QComboBox" name="comboBox">
<property name="geometry">
<rect>
<x>210</x>
<y>30</y>
<width>64</width>
<height>24</height>
</rect>
</property>
</widget>
<widget class="QComboBox" name="comboBox_2">
<property name="geometry">
<rect>
<x>210</x>
<y>70</y>
<width>64</width>
<height>24</height>
</rect>
</property>
</widget>
<widget class="QLabel" name="label">
<property name="geometry">
<rect>
<x>90</x>
<y>30</y>
<width>111</width>
<height>20</height>
</rect>
</property>
<property name="text">
<string>Preferred buffer size:</string>
</property>
</widget>
<widget class="QLabel" name="label_2">
<property name="geometry">
<rect>
<x>90</x>
<y>80</y>
<width>111</width>
<height>16</height>
</rect>
</property>
<property name="text">
<string>Preferred sample rate:</string>
</property>
</widget>
<widget class="QPushButton" name="pushButton">
<property name="geometry">
<rect>
<x>150</x>
<y>110</y>
<width>131</width>
<height>51</height>
</rect>
</property>
<property name="text">
<string>Show Control Panel</string>
</property>
</widget>
</widget>
<resources/>
<connections/>
</ui>

+ 494
- 0
resources/ui/carla_edit.ui View File

@@ -0,0 +1,494 @@
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>PluginEdit</class>
<widget class="QDialog" name="PluginEdit">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>726</width>
<height>476</height>
</rect>
</property>
<property name="windowTitle">
<string>Plugin Editor</string>
</property>
<layout class="QVBoxLayout" name="verticalLayout">
<item>
<widget class="QTabWidget" name="tabWidget">
<property name="tabPosition">
<enum>QTabWidget::South</enum>
</property>
<property name="currentIndex">
<number>0</number>
</property>
<widget class="QWidget" name="tab_params">
<attribute name="title">
<string>Information</string>
</attribute>
<layout class="QGridLayout" name="gridLayout_3">
<item row="0" column="0" colspan="2">
<layout class="QHBoxLayout" name="horizontalLayout">
<item>
<spacer name="horizontalSpacer">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeType">
<enum>QSizePolicy::Fixed</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>40</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
<item>
<widget class="QLabel" name="label_plugin">
<property name="font">
<font>
<pointsize>11</pointsize>
<weight>75</weight>
<bold>true</bold>
</font>
</property>
<property name="text">
<string>
Plugin Name
</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
</widget>
</item>
<item>
<spacer name="horizontalSpacer_2">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>40</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
<item>
<widget class="QPushButton" name="b_save_state">
<property name="text">
<string>Save State</string>
</property>
<property name="icon">
<iconset resource="../resources.qrc">
<normaloff>:/16x16/document-save.png</normaloff>:/16x16/document-save.png</iconset>
</property>
</widget>
</item>
<item>
<widget class="QPushButton" name="b_load_state">
<property name="text">
<string>Load State</string>
</property>
<property name="icon">
<iconset resource="../resources.qrc">
<normaloff>:/16x16/document-open.png</normaloff>:/16x16/document-open.png</iconset>
</property>
</widget>
</item>
</layout>
</item>
<item row="1" column="0" rowspan="3">
<widget class="QGroupBox" name="group_meta">
<property name="sizePolicy">
<sizepolicy hsizetype="Preferred" vsizetype="Expanding">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="title">
<string>Meta-Data</string>
</property>
<layout class="QGridLayout" name="gridLayout">
<item row="0" column="0">
<widget class="QLabel" name="label_real_name">
<property name="text">
<string>Name:</string>
</property>
<property name="alignment">
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
</widget>
</item>
<item row="0" column="1">
<widget class="QLineEdit" name="le_name">
<property name="readOnly">
<bool>true</bool>
</property>
</widget>
</item>
<item row="1" column="0">
<widget class="QLabel" name="label_label">
<property name="text">
<string>Label/Product:</string>
</property>
<property name="alignment">
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
</widget>
</item>
<item row="1" column="1">
<widget class="QLineEdit" name="le_label">
<property name="readOnly">
<bool>true</bool>
</property>
</widget>
</item>
<item row="2" column="0">
<widget class="QLabel" name="label_maker">
<property name="text">
<string>Maker:</string>
</property>
<property name="alignment">
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
</widget>
</item>
<item row="2" column="1">
<widget class="QLineEdit" name="le_maker">
<property name="readOnly">
<bool>true</bool>
</property>
</widget>
</item>
<item row="3" column="0">
<widget class="QLabel" name="label_copyright">
<property name="text">
<string>Copyright:</string>
</property>
<property name="alignment">
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
</widget>
</item>
<item row="3" column="1">
<widget class="QLineEdit" name="le_copyright">
<property name="readOnly">
<bool>true</bool>
</property>
</widget>
</item>
<item row="4" column="0">
<widget class="QLabel" name="label_unique_id">
<property name="text">
<string>Unique ID:</string>
</property>
<property name="alignment">
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
</widget>
</item>
<item row="4" column="1">
<widget class="QLineEdit" name="le_unique_id">
<property name="readOnly">
<bool>true</bool>
</property>
</widget>
</item>
<item row="5" column="0">
<widget class="QLabel" name="label_type">
<property name="text">
<string>Type:</string>
</property>
<property name="alignment">
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
</widget>
</item>
<item row="5" column="1">
<widget class="QLineEdit" name="le_type">
<property name="readOnly">
<bool>true</bool>
</property>
</widget>
</item>
</layout>
</widget>
</item>
<item row="1" column="1">
<widget class="QGroupBox" name="group_proc">
<property name="sizePolicy">
<sizepolicy hsizetype="Preferred" vsizetype="Expanding">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="title">
<string>Processing Data</string>
</property>
<layout class="QGridLayout" name="gridLayout_2">
<item row="0" column="0">
<widget class="QLabel" name="label_ains">
<property name="text">
<string>Audio Inputs:</string>
</property>
<property name="alignment">
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
</widget>
</item>
<item row="0" column="1">
<widget class="QLineEdit" name="le_ains">
<property name="readOnly">
<bool>true</bool>
</property>
</widget>
</item>
<item row="1" column="0">
<widget class="QLabel" name="label_aouts">
<property name="text">
<string>Audio Outputs:</string>
</property>
<property name="alignment">
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
</widget>
</item>
<item row="1" column="1">
<widget class="QLineEdit" name="le_aouts">
<property name="readOnly">
<bool>true</bool>
</property>
</widget>
</item>
<item row="2" column="0">
<widget class="QLabel" name="label_params">
<property name="text">
<string>Parameters:</string>
</property>
<property name="alignment">
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
</widget>
</item>
<item row="2" column="1">
<widget class="QLineEdit" name="le_params">
<property name="readOnly">
<bool>true</bool>
</property>
</widget>
</item>
<item row="4" column="0">
<widget class="QLabel" name="label_is_synth">
<property name="text">
<string>Is Synth:</string>
</property>
<property name="alignment">
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
</widget>
</item>
<item row="4" column="1">
<widget class="QLineEdit" name="le_is_synth">
<property name="readOnly">
<bool>true</bool>
</property>
</widget>
</item>
<item row="5" column="0">
<widget class="QLabel" name="label_has_gui">
<property name="text">
<string>Has External GUI:</string>
</property>
<property name="alignment">
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
</widget>
</item>
<item row="5" column="1">
<widget class="QLineEdit" name="le_has_gui">
<property name="readOnly">
<bool>true</bool>
</property>
</widget>
</item>
<item row="3" column="1">
<widget class="QLineEdit" name="le_couts">
<property name="readOnly">
<bool>true</bool>
</property>
</widget>
</item>
<item row="3" column="0">
<widget class="QLabel" name="label_couts">
<property name="text">
<string>Control Outputs:</string>
</property>
<property name="alignment">
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
</widget>
</item>
</layout>
</widget>
</item>
<item row="2" column="1">
<widget class="QTabWidget" name="tab_programs">
<property name="sizePolicy">
<sizepolicy hsizetype="Expanding" vsizetype="Preferred">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="currentIndex">
<number>0</number>
</property>
<widget class="QWidget" name="programs">
<attribute name="title">
<string>Programs</string>
</attribute>
<layout class="QHBoxLayout" name="horizontalLayout_3">
<item>
<widget class="QComboBox" name="cb_programs"/>
</item>
<item>
<widget class="QToolButton" name="b_reload_program">
<property name="text">
<string/>
</property>
<property name="icon">
<iconset resource="../resources.qrc">
<normaloff>:/16x16/document-open.png</normaloff>:/16x16/document-open.png</iconset>
</property>
</widget>
</item>
</layout>
</widget>
<widget class="QWidget" name="midi_programs">
<attribute name="title">
<string>MIDI Programs</string>
</attribute>
<layout class="QHBoxLayout" name="horizontalLayout_4">
<item>
<widget class="QComboBox" name="cb_midi_programs"/>
</item>
<item>
<widget class="QToolButton" name="b_reload_midi_program">
<property name="text">
<string/>
</property>
<property name="icon">
<iconset resource="../resources.qrc">
<normaloff>:/16x16/document-open.png</normaloff>:/16x16/document-open.png</iconset>
</property>
</widget>
</item>
</layout>
</widget>
</widget>
</item>
</layout>
</widget>
</widget>
</item>
<item>
<widget class="QScrollArea" name="scrollArea">
<property name="sizePolicy">
<sizepolicy hsizetype="Expanding" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="minimumSize">
<size>
<width>0</width>
<height>84</height>
</size>
</property>
<property name="verticalScrollBarPolicy">
<enum>Qt::ScrollBarAlwaysOff</enum>
</property>
<property name="horizontalScrollBarPolicy">
<enum>Qt::ScrollBarAlwaysOn</enum>
</property>
<property name="widgetResizable">
<bool>true</bool>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
<widget class="QWidget" name="scrollAreaWidgetContents">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>864</width>
<height>64</height>
</rect>
</property>
<property name="sizePolicy">
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="minimumSize">
<size>
<width>864</width>
<height>64</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>864</width>
<height>64</height>
</size>
</property>
<layout class="QHBoxLayout" name="horizontalLayout_2">
<property name="margin">
<number>0</number>
</property>
<item>
<widget class="PixmapKeyboard" name="keyboard" native="true">
<property name="sizePolicy">
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="minimumSize">
<size>
<width>864</width>
<height>64</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>864</width>
<height>64</height>
</size>
</property>
</widget>
</item>
</layout>
</widget>
</widget>
</item>
</layout>
</widget>
<customwidgets>
<customwidget>
<class>PixmapKeyboard</class>
<extends>QWidget</extends>
<header>pixmapkeyboard.h</header>
<container>1</container>
</customwidget>
</customwidgets>
<resources>
<include location="../resources.qrc"/>
</resources>
<connections/>
</ui>

+ 77
- 0
resources/ui/carla_parameter.ui View File

@@ -0,0 +1,77 @@
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>PluginParameter</class>
<widget class="QWidget" name="PluginParameter">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>452</width>
<height>35</height>
</rect>
</property>
<property name="windowTitle">
<string>Form</string>
</property>
<layout class="QHBoxLayout" name="horizontalLayout">
<item>
<widget class="QLabel" name="label">
<property name="text">
<string>Parameter Name</string>
</property>
<property name="alignment">
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
</widget>
</item>
<item>
<widget class="ParamSpinBox" name="widget" native="true">
<property name="sizePolicy">
<sizepolicy hsizetype="Expanding" vsizetype="Preferred">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="contextMenuPolicy">
<enum>Qt::CustomContextMenu</enum>
</property>
</widget>
</item>
<item>
<widget class="QComboBox" name="combo">
<item>
<property name="text">
<string>(none)</string>
</property>
</item>
</widget>
</item>
<item>
<widget class="QSpinBox" name="sb_channel">
<property name="prefix">
<string>ch </string>
</property>
<property name="minimum">
<number>1</number>
</property>
<property name="maximum">
<number>16</number>
</property>
<property name="value">
<number>1</number>
</property>
</widget>
</item>
</layout>
</widget>
<customwidgets>
<customwidget>
<class>ParamSpinBox</class>
<extends>QWidget</extends>
<header>paramspinbox.h</header>
<container>1</container>
</customwidget>
</customwidgets>
<resources/>
<connections/>
</ui>

+ 625
- 0
resources/ui/carla_plugin.ui View File

@@ -0,0 +1,625 @@
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>PluginWidget</class>
<widget class="QFrame" name="PluginWidget">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>731</width>
<height>46</height>
</rect>
</property>
<property name="sizePolicy">
<sizepolicy hsizetype="Preferred" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="minimumSize">
<size>
<width>0</width>
<height>0</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>16777215</width>
<height>16777215</height>
</size>
</property>
<property name="windowTitle">
<string>Form</string>
</property>
<property name="styleSheet">
<string notr="true"/>
</property>
<layout class="QHBoxLayout" name="horizontalLayout_3">
<property name="spacing">
<number>0</number>
</property>
<property name="leftMargin">
<number>2</number>
</property>
<property name="topMargin">
<number>0</number>
</property>
<property name="rightMargin">
<number>2</number>
</property>
<property name="bottomMargin">
<number>0</number>
</property>
<item>
<widget class="QWidget" name="area_left" native="true">
<property name="sizePolicy">
<sizepolicy hsizetype="Expanding" vsizetype="Preferred">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<layout class="QHBoxLayout" name="horizontalLayout_2">
<property name="spacing">
<number>0</number>
</property>
<property name="margin">
<number>0</number>
</property>
<item>
<widget class="LEDButton" name="led_enable">
<property name="minimumSize">
<size>
<width>32</width>
<height>32</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>32</width>
<height>32</height>
</size>
</property>
<property name="statusTip">
<string>Activate/Deactivate plugin</string>
</property>
</widget>
</item>
<item>
<widget class="QPushButton" name="b_gui">
<property name="minimumSize">
<size>
<width>22</width>
<height>22</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>22</width>
<height>22</height>
</size>
</property>
<property name="statusTip">
<string>Show plugin's custom GUI</string>
</property>
<property name="text">
<string>G</string>
</property>
<property name="checkable">
<bool>true</bool>
</property>
</widget>
</item>
<item>
<widget class="QPushButton" name="b_edit">
<property name="minimumSize">
<size>
<width>22</width>
<height>22</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>22</width>
<height>22</height>
</size>
</property>
<property name="statusTip">
<string>Edit parameters</string>
</property>
<property name="text">
<string>E</string>
</property>
<property name="checkable">
<bool>true</bool>
</property>
</widget>
</item>
<item>
<widget class="QPushButton" name="b_configure">
<property name="enabled">
<bool>false</bool>
</property>
<property name="minimumSize">
<size>
<width>22</width>
<height>22</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>22</width>
<height>22</height>
</size>
</property>
<property name="statusTip">
<string>Configure plugin</string>
</property>
<property name="text">
<string>C</string>
</property>
<property name="checkable">
<bool>true</bool>
</property>
</widget>
</item>
<item>
<widget class="QLabel" name="label_name">
<property name="sizePolicy">
<sizepolicy hsizetype="Expanding" vsizetype="Preferred">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="statusTip">
<string>Plugin name</string>
</property>
<property name="text">
<string>Plugin Name</string>
</property>
<property name="wordWrap">
<bool>true</bool>
</property>
</widget>
</item>
</layout>
</widget>
</item>
<item>
<widget class="QFrame" name="frame_controls">
<property name="sizePolicy">
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="minimumSize">
<size>
<width>160</width>
<height>40</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>160</width>
<height>40</height>
</size>
</property>
<property name="frameShape">
<enum>QFrame::StyledPanel</enum>
</property>
<property name="frameShadow">
<enum>QFrame::Raised</enum>
</property>
<widget class="PixmapDial" name="dial_drywet">
<property name="geometry">
<rect>
<x>8</x>
<y>0</y>
<width>34</width>
<height>34</height>
</rect>
</property>
<property name="minimumSize">
<size>
<width>34</width>
<height>34</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>34</width>
<height>34</height>
</size>
</property>
<property name="contextMenuPolicy">
<enum>Qt::CustomContextMenu</enum>
</property>
<property name="statusTip">
<string>Output dry/wet (100%)</string>
</property>
<property name="maximum">
<number>1000</number>
</property>
<property name="value">
<number>1000</number>
</property>
</widget>
<widget class="PixmapDial" name="dial_vol">
<property name="geometry">
<rect>
<x>57</x>
<y>0</y>
<width>34</width>
<height>34</height>
</rect>
</property>
<property name="minimumSize">
<size>
<width>34</width>
<height>34</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>34</width>
<height>34</height>
</size>
</property>
<property name="contextMenuPolicy">
<enum>Qt::CustomContextMenu</enum>
</property>
<property name="statusTip">
<string>Output volume (100%)</string>
</property>
<property name="maximum">
<number>1270</number>
</property>
<property name="value">
<number>1000</number>
</property>
</widget>
<widget class="PixmapDial" name="dial_b_left">
<property name="geometry">
<rect>
<x>103</x>
<y>0</y>
<width>26</width>
<height>26</height>
</rect>
</property>
<property name="minimumSize">
<size>
<width>26</width>
<height>26</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>26</width>
<height>26</height>
</size>
</property>
<property name="contextMenuPolicy">
<enum>Qt::CustomContextMenu</enum>
</property>
<property name="statusTip">
<string>Balance Left (0%)</string>
</property>
<property name="minimum">
<number>-1000</number>
</property>
<property name="maximum">
<number>1000</number>
</property>
<property name="value">
<number>-1000</number>
</property>
</widget>
<widget class="PixmapDial" name="dial_b_right">
<property name="geometry">
<rect>
<x>130</x>
<y>0</y>
<width>26</width>
<height>26</height>
</rect>
</property>
<property name="minimumSize">
<size>
<width>26</width>
<height>26</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>26</width>
<height>26</height>
</size>
</property>
<property name="contextMenuPolicy">
<enum>Qt::CustomContextMenu</enum>
</property>
<property name="statusTip">
<string>Balance Right (0%)</string>
</property>
<property name="minimum">
<number>-1000</number>
</property>
<property name="maximum">
<number>1000</number>
</property>
<property name="value">
<number>1000</number>
</property>
</widget>
</widget>
</item>
<item>
<widget class="QWidget" name="area_right" native="true">
<property name="sizePolicy">
<sizepolicy hsizetype="Fixed" vsizetype="Preferred">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<layout class="QHBoxLayout" name="horizontalLayout">
<property name="spacing">
<number>0</number>
</property>
<property name="margin">
<number>0</number>
</property>
<item>
<widget class="LEDButton" name="led_control">
<property name="maximumSize">
<size>
<width>14</width>
<height>14</height>
</size>
</property>
<property name="statusTip">
<string>Parameter/Program Activity LED</string>
</property>
</widget>
</item>
<item>
<widget class="LEDButton" name="led_midi">
<property name="maximumSize">
<size>
<width>14</width>
<height>14</height>
</size>
</property>
<property name="statusTip">
<string>MIDI Activity LED</string>
</property>
<property name="text">
<string/>
</property>
</widget>
</item>
<item>
<widget class="LEDButton" name="led_audio_in">
<property name="maximumSize">
<size>
<width>14</width>
<height>14</height>
</size>
</property>
<property name="statusTip">
<string>Audio Input Activity LED</string>
</property>
</widget>
</item>
<item>
<widget class="LEDButton" name="led_audio_out">
<property name="maximumSize">
<size>
<width>14</width>
<height>14</height>
</size>
</property>
<property name="statusTip">
<string>Audio Output Activity LED</string>
</property>
<property name="text">
<string/>
</property>
</widget>
</item>
<item>
<layout class="QVBoxLayout" name="peak_layout">
<property name="spacing">
<number>1</number>
</property>
<item>
<widget class="DigitalPeakMeter" name="peak_in" native="true">
<property name="sizePolicy">
<sizepolicy hsizetype="Expanding" vsizetype="Expanding">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="minimumSize">
<size>
<width>150</width>
<height>0</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>150</width>
<height>16777215</height>
</size>
</property>
<layout class="QHBoxLayout" name="horizontalLayout_5">
<property name="spacing">
<number>0</number>
</property>
<property name="margin">
<number>0</number>
</property>
</layout>
</widget>
</item>
<item>
<widget class="DigitalPeakMeter" name="peak_out" native="true">
<property name="sizePolicy">
<sizepolicy hsizetype="Expanding" vsizetype="Expanding">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="minimumSize">
<size>
<width>150</width>
<height>0</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>150</width>
<height>16777215</height>
</size>
</property>
<layout class="QHBoxLayout" name="horizontalLayout_4">
<property name="spacing">
<number>0</number>
</property>
<property name="margin">
<number>0</number>
</property>
</layout>
</widget>
</item>
</layout>
</item>
<item>
<layout class="QGridLayout" name="gridLayout">
<property name="spacing">
<number>0</number>
</property>
<item row="0" column="0">
<widget class="QPushButton" name="pushButton">
<property name="enabled">
<bool>false</bool>
</property>
<property name="minimumSize">
<size>
<width>22</width>
<height>22</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>22</width>
<height>22</height>
</size>
</property>
<property name="text">
<string>A</string>
</property>
</widget>
</item>
<item row="0" column="1">
<widget class="QPushButton" name="b_remove">
<property name="minimumSize">
<size>
<width>22</width>
<height>22</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>22</width>
<height>22</height>
</size>
</property>
<property name="statusTip">
<string>Remove this plugin</string>
</property>
<property name="styleSheet">
<string notr="true"/>
</property>
<property name="text">
<string>X</string>
</property>
</widget>
</item>
<item row="1" column="0">
<widget class="QPushButton" name="pushButton_2">
<property name="enabled">
<bool>false</bool>
</property>
<property name="minimumSize">
<size>
<width>22</width>
<height>22</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>22</width>
<height>22</height>
</size>
</property>
<property name="text">
<string>V</string>
</property>
</widget>
</item>
<item row="1" column="1">
<widget class="QPushButton" name="pushButton_3">
<property name="enabled">
<bool>false</bool>
</property>
<property name="minimumSize">
<size>
<width>22</width>
<height>22</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>22</width>
<height>22</height>
</size>
</property>
<property name="text">
<string>M</string>
</property>
</widget>
</item>
</layout>
</item>
</layout>
</widget>
</item>
</layout>
<zorder>frame_controls</zorder>
<zorder>area_right</zorder>
<zorder>area_left</zorder>
</widget>
<customwidgets>
<customwidget>
<class>PixmapDial</class>
<extends>QDial</extends>
<header>pixmapdial.h</header>
</customwidget>
<customwidget>
<class>DigitalPeakMeter</class>
<extends>QWidget</extends>
<header>digitalpeakmeter.h</header>
<container>1</container>
</customwidget>
<customwidget>
<class>LEDButton</class>
<extends>QPushButton</extends>
<header>ledbutton.h</header>
</customwidget>
</customwidgets>
<resources>
<include location="../resources.qrc"/>
</resources>
<connections/>
</ui>

+ 483
- 0
resources/ui/carla_refresh.ui View File

@@ -0,0 +1,483 @@
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>PluginRefreshW</class>
<widget class="QDialog" name="PluginRefreshW">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>615</width>
<height>255</height>
</rect>
</property>
<property name="windowTitle">
<string>Carla - Refresh</string>
</property>
<layout class="QVBoxLayout" name="verticalLayout_3">
<item>
<layout class="QHBoxLayout" name="horizontalLayout_3">
<item>
<spacer name="horizontalSpacer">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeType">
<enum>QSizePolicy::Preferred</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>30</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
<item>
<widget class="QGroupBox" name="groupBox">
<property name="title">
<string>Search for new...</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
<layout class="QHBoxLayout" name="horizontalLayout_2">
<item>
<layout class="QVBoxLayout" name="verticalLayout">
<item>
<widget class="QCheckBox" name="ch_ladspa">
<property name="text">
<string>LADSPA</string>
</property>
</widget>
</item>
<item>
<widget class="QCheckBox" name="ch_dssi">
<property name="text">
<string>DSSI</string>
</property>
</widget>
</item>
<item>
<widget class="QCheckBox" name="ch_lv2">
<property name="text">
<string>LV2</string>
</property>
</widget>
</item>
<item>
<widget class="QCheckBox" name="ch_vst">
<property name="text">
<string>VST</string>
</property>
</widget>
</item>
<item>
<widget class="Line" name="line_3">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
</widget>
</item>
<item>
<widget class="QCheckBox" name="ch_gig">
<property name="text">
<string>GIG</string>
</property>
</widget>
</item>
<item>
<widget class="QCheckBox" name="ch_sf2">
<property name="text">
<string>SF2</string>
</property>
</widget>
</item>
<item>
<widget class="QCheckBox" name="ch_sfz">
<property name="text">
<string>SFZ</string>
</property>
</widget>
</item>
<item>
<spacer name="verticalSpacer_3">
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>20</width>
<height>40</height>
</size>
</property>
</spacer>
</item>
</layout>
</item>
<item>
<spacer name="horizontalSpacer_4">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>40</width>
<height>5</height>
</size>
</property>
</spacer>
</item>
<item>
<widget class="Line" name="line_2">
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
</widget>
</item>
<item>
<layout class="QVBoxLayout" name="verticalLayout_2">
<item>
<widget class="QCheckBox" name="ch_native">
<property name="text">
<string>Native</string>
</property>
</widget>
</item>
<item>
<widget class="Line" name="line_4">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
</widget>
</item>
<item>
<widget class="QCheckBox" name="ch_posix32">
<property name="text">
<string>POSIX 32bit</string>
</property>
</widget>
</item>
<item>
<widget class="QCheckBox" name="ch_posix64">
<property name="text">
<string>POSIX 64bit</string>
</property>
</widget>
</item>
<item>
<widget class="QCheckBox" name="ch_win32">
<property name="text">
<string>Windows 32bit</string>
</property>
</widget>
</item>
<item>
<widget class="QCheckBox" name="ch_win64">
<property name="text">
<string>Windows 64bit</string>
</property>
</widget>
</item>
<item>
<spacer name="verticalSpacer_2">
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>20</width>
<height>40</height>
</size>
</property>
</spacer>
</item>
</layout>
</item>
</layout>
</widget>
</item>
<item>
<spacer name="horizontalSpacer_3">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeType">
<enum>QSizePolicy::Fixed</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>20</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
<item>
<widget class="QGroupBox" name="groupBox_2">
<property name="title">
<string>Available tools:</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
<property name="flat">
<bool>true</bool>
</property>
<layout class="QGridLayout" name="gridLayout">
<item row="0" column="0">
<widget class="QLabel" name="ico_native">
<property name="maximumSize">
<size>
<width>22</width>
<height>16777215</height>
</size>
</property>
<property name="text">
<string/>
</property>
<property name="pixmap">
<pixmap resource="../../resources/resources.qrc">:/16x16/dialog-ok-apply.png</pixmap>
</property>
</widget>
</item>
<item row="1" column="0">
<widget class="QLabel" name="ico_posix32">
<property name="maximumSize">
<size>
<width>22</width>
<height>16777215</height>
</size>
</property>
<property name="text">
<string/>
</property>
<property name="pixmap">
<pixmap resource="../../resources/resources.qrc">:/16x16/dialog-ok-apply.png</pixmap>
</property>
</widget>
</item>
<item row="5" column="1">
<widget class="QLabel" name="label_rdflib">
<property name="text">
<string>python3-rdflib (LADSPA-RDF support)</string>
</property>
</widget>
</item>
<item row="4" column="1">
<widget class="QLabel" name="label_win64">
<property name="text">
<string>carla-discovery-win64</string>
</property>
</widget>
</item>
<item row="0" column="1">
<widget class="QLabel" name="label_native">
<property name="text">
<string>carla-discovery-native</string>
</property>
</widget>
</item>
<item row="2" column="0">
<widget class="QLabel" name="ico_posix64">
<property name="text">
<string/>
</property>
<property name="pixmap">
<pixmap resource="../../resources/resources.qrc">:/16x16/dialog-ok-apply.png</pixmap>
</property>
</widget>
</item>
<item row="5" column="0">
<widget class="QLabel" name="ico_rdflib">
<property name="maximumSize">
<size>
<width>22</width>
<height>16777215</height>
</size>
</property>
<property name="text">
<string/>
</property>
<property name="pixmap">
<pixmap resource="../../resources/resources.qrc">:/16x16/dialog-ok-apply.png</pixmap>
</property>
</widget>
</item>
<item row="1" column="1">
<widget class="QLabel" name="label_posix32">
<property name="text">
<string>carla-discovery-posix32</string>
</property>
</widget>
</item>
<item row="3" column="0">
<widget class="QLabel" name="ico_win32">
<property name="maximumSize">
<size>
<width>22</width>
<height>16777215</height>
</size>
</property>
<property name="text">
<string/>
</property>
<property name="pixmap">
<pixmap resource="../../resources/resources.qrc">:/16x16/dialog-ok-apply.png</pixmap>
</property>
</widget>
</item>
<item row="4" column="0">
<widget class="QLabel" name="ico_win64">
<property name="text">
<string/>
</property>
<property name="pixmap">
<pixmap resource="../../resources/resources.qrc">:/16x16/dialog-ok-apply.png</pixmap>
</property>
</widget>
</item>
<item row="2" column="1">
<widget class="QLabel" name="label_posix64">
<property name="text">
<string>carla-discovery-posix64</string>
</property>
</widget>
</item>
<item row="3" column="1">
<widget class="QLabel" name="label_win32">
<property name="text">
<string>carla-discovery-win32</string>
</property>
</widget>
</item>
<item row="6" column="1">
<spacer name="verticalSpacer_4">
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>20</width>
<height>40</height>
</size>
</property>
</spacer>
</item>
</layout>
</widget>
</item>
<item>
<spacer name="horizontalSpacer_2">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeType">
<enum>QSizePolicy::Preferred</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>30</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
</layout>
</item>
<item>
<spacer name="verticalSpacer">
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>20</width>
<height>6</height>
</size>
</property>
</spacer>
</item>
<item>
<widget class="Line" name="line">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
</widget>
</item>
<item>
<layout class="QHBoxLayout" name="horizontalLayout">
<item>
<widget class="QProgressBar" name="progressBar">
<property name="sizePolicy">
<sizepolicy hsizetype="Expanding" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="maximum">
<number>100</number>
</property>
<property name="value">
<number>0</number>
</property>
<property name="format">
<string>Press 'Start' to begin the search</string>
</property>
</widget>
</item>
<item>
<widget class="QPushButton" name="b_start">
<property name="text">
<string>Start</string>
</property>
<property name="icon">
<iconset resource="../../resources/resources.qrc">
<normaloff>:/16x16/arrow-right.png</normaloff>:/16x16/arrow-right.png</iconset>
</property>
</widget>
</item>
<item>
<widget class="QPushButton" name="b_skip">
<property name="text">
<string>&gt;&gt; Skip</string>
</property>
</widget>
</item>
<item>
<widget class="QPushButton" name="b_close">
<property name="text">
<string>Close</string>
</property>
<property name="icon">
<iconset resource="../../resources/resources.qrc">
<normaloff>:/16x16/window-close.png</normaloff>:/16x16/window-close.png</iconset>
</property>
</widget>
</item>
</layout>
</item>
</layout>
</widget>
<resources>
<include location="../../resources/resources.qrc"/>
<include location="../../resources/resources.qrc"/>
</resources>
<connections>
<connection>
<sender>b_close</sender>
<signal>clicked()</signal>
<receiver>PluginRefreshW</receiver>
<slot>close()</slot>
<hints>
<hint type="sourcelabel">
<x>426</x>
<y>231</y>
</hint>
<hint type="destinationlabel">
<x>236</x>
<y>125</y>
</hint>
</hints>
</connection>
</connections>
</ui>

+ 86
- 0
resources/ui/inputdialog_value.ui View File

@@ -0,0 +1,86 @@
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>Dialog</class>
<widget class="QDialog" name="Dialog">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>269</width>
<height>183</height>
</rect>
</property>
<property name="windowTitle">
<string>Set value</string>
</property>
<layout class="QVBoxLayout" name="verticalLayout_2">
<item>
<widget class="QLabel" name="label">
<property name="text">
<string>TextLabel</string>
</property>
</widget>
</item>
<item>
<widget class="QDoubleSpinBox" name="doubleSpinBox"/>
</item>
<item>
<widget class="QGroupBox" name="groupBox">
<property name="title">
<string>Scale Points</string>
</property>
<layout class="QVBoxLayout" name="verticalLayout">
<item>
<widget class="QTextBrowser" name="textBrowser"/>
</item>
</layout>
</widget>
</item>
<item>
<widget class="QDialogButtonBox" name="buttonBox">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="standardButtons">
<set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set>
</property>
</widget>
</item>
</layout>
</widget>
<resources/>
<connections>
<connection>
<sender>buttonBox</sender>
<signal>accepted()</signal>
<receiver>Dialog</receiver>
<slot>accept()</slot>
<hints>
<hint type="sourcelabel">
<x>248</x>
<y>254</y>
</hint>
<hint type="destinationlabel">
<x>157</x>
<y>274</y>
</hint>
</hints>
</connection>
<connection>
<sender>buttonBox</sender>
<signal>rejected()</signal>
<receiver>Dialog</receiver>
<slot>reject()</slot>
<hints>
<hint type="sourcelabel">
<x>316</x>
<y>260</y>
</hint>
<hint type="destinationlabel">
<x>286</x>
<y>274</y>
</hint>
</hints>
</connection>
</connections>
</ui>

Loading…
Cancel
Save