├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── developer_report.md ├── PULL_REQUEST_TEMPLATE │ ├── feature_or_fix.md │ └── new_fixture.md ├── pull_request_template.md └── workflows │ └── build.yml ├── .gitignore ├── .obs └── workflows.yml ├── CMakeLists.txt ├── CONTRIBUTING.md ├── COPYING ├── README.md ├── SUPPORT.md ├── check-licenses.sh ├── cmake_uninstall.cmake.in ├── coverage.cmake ├── coverage.pri ├── coverage.sh ├── coverage_cmake.sh ├── create-appimage-cmake.sh ├── create-appimage.sh ├── create-deb.sh ├── create-dmg-cmake.sh ├── create-dmg.sh ├── create-exe.sh ├── create-rpm.sh ├── debian ├── .gitignore ├── changelog ├── changelog-old ├── compat ├── control ├── copyright ├── qlcplus-ola.install ├── qlcplus.docs ├── qlcplus.install ├── qlcplus.menu ├── qlcplus.postinst ├── qlcplus.postrm └── rules ├── engine ├── CMakeLists.txt ├── audio │ ├── CMakeLists.txt │ ├── audio.pro │ ├── plugins │ │ ├── CMakeLists.txt │ │ ├── mad │ │ │ ├── CMakeLists.txt │ │ │ ├── audiodecoder_mad.cpp │ │ │ ├── audiodecoder_mad.h │ │ │ └── mad.pro │ │ ├── plugins.pro │ │ └── sndfile │ │ │ ├── CMakeLists.txt │ │ │ ├── audiodecoder_sndfile.cpp │ │ │ ├── audiodecoder_sndfile.h │ │ │ └── sndfile.pro │ └── src │ │ ├── CMakeLists.txt │ │ ├── audio.cpp │ │ ├── audio.h │ │ ├── audiocapture.cpp │ │ ├── audiocapture.h │ │ ├── audiocapture_alsa.cpp │ │ ├── audiocapture_alsa.h │ │ ├── audiocapture_portaudio.cpp │ │ ├── audiocapture_portaudio.h │ │ ├── audiocapture_qt5.cpp │ │ ├── audiocapture_qt5.h │ │ ├── audiocapture_qt6.cpp │ │ ├── audiocapture_qt6.h │ │ ├── audiocapture_wavein.cpp │ │ ├── audiocapture_wavein.h │ │ ├── audiodecoder.cpp │ │ ├── audiodecoder.h │ │ ├── audioparameters.cpp │ │ ├── audioparameters.h │ │ ├── audioplugincache.cpp │ │ ├── audioplugincache.h │ │ ├── audiorenderer.cpp │ │ ├── audiorenderer.h │ │ ├── audiorenderer_alsa.cpp │ │ ├── audiorenderer_alsa.h │ │ ├── audiorenderer_coreaudio.cpp │ │ ├── audiorenderer_coreaudio.h │ │ ├── audiorenderer_null.cpp │ │ ├── audiorenderer_null.h │ │ ├── audiorenderer_portaudio.cpp │ │ ├── audiorenderer_portaudio.h │ │ ├── audiorenderer_qt5.cpp │ │ ├── audiorenderer_qt5.h │ │ ├── audiorenderer_qt6.cpp │ │ ├── audiorenderer_qt6.h │ │ ├── audiorenderer_waveout.cpp │ │ ├── audiorenderer_waveout.h │ │ ├── beattracker.cpp │ │ ├── beattracker.h │ │ └── src.pro ├── engine.pro ├── src │ ├── CMakeLists.txt │ ├── avolitesd4parser.cpp │ ├── avolitesd4parser.h │ ├── bus.cpp │ ├── bus.h │ ├── channelmodifier.cpp │ ├── channelmodifier.h │ ├── channelsgroup.cpp │ ├── channelsgroup.h │ ├── chaser.cpp │ ├── chaser.h │ ├── chaseraction.h │ ├── chaserrunner.cpp │ ├── chaserrunner.h │ ├── chaserstep.cpp │ ├── chaserstep.h │ ├── collection.cpp │ ├── collection.h │ ├── cue.cpp │ ├── cue.h │ ├── cuestack.cpp │ ├── cuestack.h │ ├── dmxdumpfactoryproperties.cpp │ ├── dmxdumpfactoryproperties.h │ ├── dmxsource.h │ ├── doc.cpp │ ├── doc.h │ ├── efx.cpp │ ├── efx.h │ ├── efxfixture.cpp │ ├── efxfixture.h │ ├── fadechannel.cpp │ ├── fadechannel.h │ ├── fixture.cpp │ ├── fixture.h │ ├── fixturegroup.cpp │ ├── fixturegroup.h │ ├── function.cpp │ ├── function.h │ ├── functionparent.h │ ├── genericdmxsource.cpp │ ├── genericdmxsource.h │ ├── genericfader.cpp │ ├── genericfader.h │ ├── gradient.cpp │ ├── gradient.h │ ├── grandmaster.cpp │ ├── grandmaster.h │ ├── grouphead.cpp │ ├── grouphead.h │ ├── inputoutputmap.cpp │ ├── inputoutputmap.h │ ├── inputpatch.cpp │ ├── inputpatch.h │ ├── ioplugincache.cpp │ ├── ioplugincache.h │ ├── keypadparser.cpp │ ├── keypadparser.h │ ├── mastertimer-unix.cpp │ ├── mastertimer-unix.h │ ├── mastertimer-win32.cpp │ ├── mastertimer-win32.h │ ├── mastertimer.cpp │ ├── mastertimer.h │ ├── monitorproperties.cpp │ ├── monitorproperties.h │ ├── outputpatch.cpp │ ├── outputpatch.h │ ├── qlccapability.cpp │ ├── qlccapability.h │ ├── qlcchannel.cpp │ ├── qlcchannel.h │ ├── qlcclipboard.cpp │ ├── qlcclipboard.h │ ├── qlcconfig.h.in │ ├── qlcconfig.h.noroot.in │ ├── qlcfile.cpp │ ├── qlcfile.h │ ├── qlcfixturedef.cpp │ ├── qlcfixturedef.h │ ├── qlcfixturedefcache.cpp │ ├── qlcfixturedefcache.h │ ├── qlcfixturehead.cpp │ ├── qlcfixturehead.h │ ├── qlcfixturemode.cpp │ ├── qlcfixturemode.h │ ├── qlci18n.cpp │ ├── qlci18n.h │ ├── qlcinputchannel.cpp │ ├── qlcinputchannel.h │ ├── qlcinputfeedback.cpp │ ├── qlcinputfeedback.h │ ├── qlcinputprofile.cpp │ ├── qlcinputprofile.h │ ├── qlcinputsource.cpp │ ├── qlcinputsource.h │ ├── qlcmodifierscache.cpp │ ├── qlcmodifierscache.h │ ├── qlcpalette.cpp │ ├── qlcpalette.h │ ├── qlcphysical.cpp │ ├── qlcphysical.h │ ├── qlcpoint.cpp │ ├── qlcpoint.h │ ├── rgbalgorithm.cpp │ ├── rgbalgorithm.h │ ├── rgbaudio.cpp │ ├── rgbaudio.h │ ├── rgbimage.cpp │ ├── rgbimage.h │ ├── rgbmatrix.cpp │ ├── rgbmatrix.h │ ├── rgbplain.cpp │ ├── rgbplain.h │ ├── rgbscript.cpp │ ├── rgbscript.h │ ├── rgbscriptproperty.h │ ├── rgbscriptscache.cpp │ ├── rgbscriptscache.h │ ├── rgbscriptv4.cpp │ ├── rgbscriptv4.h │ ├── rgbtext.cpp │ ├── rgbtext.h │ ├── scene.cpp │ ├── scene.h │ ├── scenevalue.cpp │ ├── scenevalue.h │ ├── script.cpp │ ├── script.h │ ├── scriptrunner.cpp │ ├── scriptrunner.h │ ├── scriptv4.cpp │ ├── scriptv4.h │ ├── scriptwrapper.h │ ├── sequence.cpp │ ├── sequence.h │ ├── show.cpp │ ├── show.h │ ├── showfunction.cpp │ ├── showfunction.h │ ├── showrunner.cpp │ ├── showrunner.h │ ├── src.pro │ ├── track.cpp │ ├── track.h │ ├── universe.cpp │ ├── universe.h │ ├── video.cpp │ └── video.h └── test │ ├── CMakeLists.txt │ ├── bus │ ├── CMakeLists.txt │ ├── bus.pro │ ├── bus_test.cpp │ ├── bus_test.h │ └── test.sh │ ├── channelmodifier │ ├── CMakeLists.txt │ ├── channelmodifier.pro │ ├── channelmodifier_test.cpp │ ├── channelmodifier_test.h │ └── test.sh │ ├── channelsgroup │ ├── CMakeLists.txt │ ├── channelsgroup.pro │ ├── channelsgroup_test.cpp │ ├── channelsgroup_test.h │ └── test.sh │ ├── chaser │ ├── CMakeLists.txt │ ├── chaser.pro │ ├── chaser_test.cpp │ ├── chaser_test.h │ └── test.sh │ ├── chaserrunner │ ├── CMakeLists.txt │ ├── chaserrunner.pro │ ├── chaserrunner_test.cpp │ ├── chaserrunner_test.h │ └── test.sh │ ├── chaserstep │ ├── CMakeLists.txt │ ├── chaserstep.pro │ ├── chaserstep_test.cpp │ ├── chaserstep_test.h │ └── test.sh │ ├── collection │ ├── CMakeLists.txt │ ├── collection.pro │ ├── collection_test.cpp │ ├── collection_test.h │ └── test.sh │ ├── common │ ├── resource_paths.h │ └── test.sh │ ├── cue │ ├── CMakeLists.txt │ ├── cue.pro │ ├── cue_test.cpp │ ├── cue_test.h │ └── test.sh │ ├── cuestack │ ├── CMakeLists.txt │ ├── cuestack.pro │ ├── cuestack_test.cpp │ ├── cuestack_test.h │ └── test.sh │ ├── dmxdumpfactoryproperties │ ├── CMakeLists.txt │ ├── dmxdumpfactoryproperties.pro │ ├── dmxdumpfactoryproperties_test.cpp │ ├── dmxdumpfactoryproperties_test.h │ └── test.sh │ ├── doc │ ├── CMakeLists.txt │ ├── doc.pro │ ├── doc_test.cpp │ ├── doc_test.h │ └── test.sh │ ├── efx │ ├── CMakeLists.txt │ ├── efx.pro │ ├── efx_test.cpp │ ├── efx_test.h │ └── test.sh │ ├── efxfixture │ ├── CMakeLists.txt │ ├── efxfixture.pro │ ├── efxfixture_test.cpp │ ├── efxfixture_test.h │ └── test.sh │ ├── fadechannel │ ├── CMakeLists.txt │ ├── fadechannel.pro │ ├── fadechannel_test.cpp │ ├── fadechannel_test.h │ └── test.sh │ ├── fixture │ ├── CMakeLists.txt │ ├── fixture.pro │ ├── fixture_test.cpp │ ├── fixture_test.h │ └── test.sh │ ├── fixturegroup │ ├── CMakeLists.txt │ ├── fixturegroup.pro │ ├── fixturegroup_test.cpp │ ├── fixturegroup_test.h │ └── test.sh │ ├── function │ ├── CMakeLists.txt │ ├── function.pro │ ├── function_stub.cpp │ ├── function_stub.h │ ├── function_test.cpp │ ├── function_test.h │ └── test.sh │ ├── genericdmxsource │ ├── CMakeLists.txt │ ├── genericdmxsource.pro │ ├── genericdmxsource_test.cpp │ ├── genericdmxsource_test.h │ └── test.sh │ ├── genericfader │ ├── CMakeLists.txt │ ├── genericfader.pro │ ├── genericfader_test.cpp │ ├── genericfader_test.h │ └── test.sh │ ├── grandmaster │ ├── CMakeLists.txt │ ├── grandmaster.pro │ ├── grandmaster_test.cpp │ ├── grandmaster_test.h │ └── test.sh │ ├── inputoutputmap │ ├── CMakeLists.txt │ ├── inputoutputmap.pro │ ├── inputoutputmap_test.cpp │ ├── inputoutputmap_test.h │ └── test.sh │ ├── inputpatch │ ├── CMakeLists.txt │ ├── inputpatch.pro │ ├── inputpatch_test.cpp │ ├── inputpatch_test.h │ └── test.sh │ ├── iopluginstub │ ├── CMakeLists.txt │ ├── iopluginstub.cpp │ ├── iopluginstub.h │ ├── iopluginstub.pro │ └── test.sh │ ├── keypadparser │ ├── CMakeLists.txt │ ├── keypadparser.pro │ ├── keypadparser_test.cpp │ ├── keypadparser_test.h │ └── test.sh │ ├── mastertimer │ ├── CMakeLists.txt │ ├── dmxsource_stub.cpp │ ├── dmxsource_stub.h │ ├── mastertimer.pro │ ├── mastertimer_stub.cpp │ ├── mastertimer_stub.h │ ├── mastertimer_test.cpp │ ├── mastertimer_test.h │ └── test.sh │ ├── monitorproperties │ ├── CMakeLists.txt │ ├── monitorproperties.pro │ ├── monitorproperties_test.cpp │ ├── monitorproperties_test.h │ └── test.sh │ ├── outputpatch │ ├── CMakeLists.txt │ ├── outputpatch.pro │ ├── outputpatch_test.cpp │ ├── outputpatch_test.h │ └── test.sh │ ├── qlccapability │ ├── CMakeLists.txt │ ├── qlccapability.pro │ ├── qlccapability_test.cpp │ ├── qlccapability_test.h │ └── test.sh │ ├── qlcchannel │ ├── CMakeLists.txt │ ├── qlcchannel.pro │ ├── qlcchannel_test.cpp │ ├── qlcchannel_test.h │ └── test.sh │ ├── qlcclipboard │ ├── CMakeLists.txt │ ├── qlcclipboard.pro │ ├── qlcclipboard_test.cpp │ ├── qlcclipboard_test.h │ └── test.sh │ ├── qlcfile │ ├── .gitignore │ ├── CMakeLists.txt │ ├── broken.xml │ ├── qlcfile.pro │ ├── qlcfile_test.cpp │ ├── qlcfile_test.h │ ├── readonly.xml.in │ └── test.sh │ ├── qlcfixturedef │ ├── CMakeLists.txt │ ├── qlcfixturedef.pro │ ├── qlcfixturedef_test.cpp │ ├── qlcfixturedef_test.h │ └── test.sh │ ├── qlcfixturedefcache │ ├── CMakeLists.txt │ ├── qlcfixturedefcache.pro │ ├── qlcfixturedefcache_test.cpp │ ├── qlcfixturedefcache_test.h │ └── test.sh │ ├── qlcfixturehead │ ├── CMakeLists.txt │ ├── qlcfixturehead.pro │ ├── qlcfixturehead_test.cpp │ ├── qlcfixturehead_test.h │ └── test.sh │ ├── qlcfixturemode │ ├── CMakeLists.txt │ ├── qlcfixturemode.pro │ ├── qlcfixturemode_test.cpp │ ├── qlcfixturemode_test.h │ └── test.sh │ ├── qlci18n │ ├── CMakeLists.txt │ ├── qlci18n.pro │ ├── qlci18n_fi_FI.ts │ ├── qlci18n_test.cpp │ ├── qlci18n_test.h │ └── test.sh │ ├── qlcinputchannel │ ├── CMakeLists.txt │ ├── qlcinputchannel.pro │ ├── qlcinputchannel_test.cpp │ ├── qlcinputchannel_test.h │ └── test.sh │ ├── qlcinputprofile │ ├── CMakeLists.txt │ ├── qlcinputprofile.pro │ ├── qlcinputprofile_test.cpp │ ├── qlcinputprofile_test.h │ └── test.sh │ ├── qlcmacros │ ├── CMakeLists.txt │ ├── qlcmacros.pro │ ├── qlcmacros_test.cpp │ ├── qlcmacros_test.h │ └── test.sh │ ├── qlcmodifierscache │ ├── CMakeLists.txt │ ├── qlcmodifierscache.pro │ ├── qlcmodifierscache_test.cpp │ ├── qlcmodifierscache_test.h │ └── test.sh │ ├── qlcpalette │ ├── CMakeLists.txt │ ├── qlcpalette.pro │ ├── qlcpalette_test.cpp │ ├── qlcpalette_test.h │ └── test.sh │ ├── qlcphysical │ ├── CMakeLists.txt │ ├── qlcphysical.pro │ ├── qlcphysical_test.cpp │ ├── qlcphysical_test.h │ └── test.sh │ ├── qlcpoint │ ├── CMakeLists.txt │ ├── qlcpoint.pro │ ├── qlcpoint_test.cpp │ ├── qlcpoint_test.h │ └── test.sh │ ├── rgbalgorithm │ ├── CMakeLists.txt │ ├── rgbalgorithm.pro │ ├── rgbalgorithm_test.cpp │ ├── rgbalgorithm_test.h │ └── test.sh │ ├── rgbmatrix │ ├── CMakeLists.txt │ ├── rgbmatrix.pro │ ├── rgbmatrix_test.cpp │ ├── rgbmatrix_test.h │ └── test.sh │ ├── rgbplain │ ├── CMakeLists.txt │ ├── rgbplain.pro │ ├── rgbplain_test.cpp │ ├── rgbplain_test.h │ └── test.sh │ ├── rgbscript │ ├── CMakeLists.txt │ ├── rgbscript.pro │ ├── rgbscript_test.cpp │ ├── rgbscript_test.h │ └── test.sh │ ├── rgbtext │ ├── CMakeLists.txt │ ├── rgbtext.pro │ ├── rgbtext_test.cpp │ ├── rgbtext_test.h │ └── test.sh │ ├── scene │ ├── CMakeLists.txt │ ├── scene.pro │ ├── scene_test.cpp │ ├── scene_test.h │ └── test.sh │ ├── scenevalue │ ├── CMakeLists.txt │ ├── scenevalue.pro │ ├── scenevalue_test.cpp │ ├── scenevalue_test.h │ └── test.sh │ ├── script │ ├── CMakeLists.txt │ ├── script.pro │ ├── script_test.cpp │ ├── script_test.h │ └── test.sh │ ├── sequence │ ├── CMakeLists.txt │ ├── sequence.pro │ ├── sequence_test.cpp │ ├── sequence_test.h │ └── test.sh │ ├── show │ ├── CMakeLists.txt │ ├── show.pro │ ├── show_test.cpp │ ├── show_test.h │ └── test.sh │ ├── showfunction │ ├── CMakeLists.txt │ ├── showfunction.pro │ ├── showfunction_test.cpp │ ├── showfunction_test.h │ └── test.sh │ ├── showrunner │ ├── CMakeLists.txt │ ├── showrunner.pro │ ├── showrunner_test.cpp │ ├── showrunner_test.h │ └── test.sh │ ├── test.pro │ ├── track │ ├── CMakeLists.txt │ ├── test.sh │ ├── track.pro │ ├── track_test.cpp │ └── track_test.h │ ├── universe │ ├── CMakeLists.txt │ ├── test.sh │ ├── universe.pro │ ├── universe_test.cpp │ └── universe_test.h │ └── video │ ├── CMakeLists.txt │ ├── test.sh │ ├── video.pro │ ├── video_test.cpp │ └── video_test.h ├── fixtureeditor ├── CMakeLists.txt ├── addchannelsdialog.cpp ├── addchannelsdialog.h ├── addchannelsdialog.ui ├── app.cpp ├── app.h ├── capabilitywizard.cpp ├── capabilitywizard.h ├── capabilitywizard.ui ├── editchannel.cpp ├── editchannel.h ├── editchannel.ui ├── edithead.cpp ├── edithead.h ├── edithead.ui ├── editmode.cpp ├── editmode.h ├── editmode.ui ├── editphysical.cpp ├── editphysical.h ├── editphysical.ui ├── fixtureeditor.cpp ├── fixtureeditor.h ├── fixtureeditor.pro ├── fixtureeditor.rc ├── fixtureeditor.ui ├── fixtureeditor_ca_ES.ts ├── fixtureeditor_cz_CZ.ts ├── fixtureeditor_de_DE.ts ├── fixtureeditor_es_ES.ts ├── fixtureeditor_fi_FI.ts ├── fixtureeditor_fr_FR.ts ├── fixtureeditor_it_IT.ts ├── fixtureeditor_ja_JP.ts ├── fixtureeditor_nl_NL.ts ├── fixtureeditor_pt_BR.ts ├── main.cpp └── util.h ├── hotplugmonitor ├── CMakeLists.txt ├── hotplugmonitor.pri ├── hotplugmonitor.pro ├── src │ ├── CMakeLists.txt │ ├── hotplugmonitor.cpp │ ├── hotplugmonitor.h │ ├── hpmprivate-iokit.cpp │ ├── hpmprivate-iokit.h │ ├── hpmprivate-udev.cpp │ ├── hpmprivate-udev.h │ ├── hpmprivate-win32.cpp │ ├── hpmprivate-win32.h │ └── src.pro └── test │ ├── CMakeLists.txt │ ├── hpmtest.cpp │ ├── hpmtest.h │ ├── main.cpp │ ├── test.pro │ └── test.sh ├── launcher ├── CMakeLists.txt ├── launcher.cpp ├── launcher.h ├── launcher.pro ├── launcher.qrc ├── launcher_ca_ES.ts ├── launcher_cz_CZ.ts ├── launcher_de_DE.ts ├── launcher_es_ES.ts ├── launcher_fi_FI.ts ├── launcher_fr_FR.ts ├── launcher_it_IT.ts ├── launcher_ja_JP.ts ├── launcher_nl_NL.ts ├── launcher_pt_BR.ts └── main.cpp ├── main ├── CMakeLists.txt ├── main.cpp ├── main.pro └── main.rc ├── platforms ├── CMakeLists.txt ├── android │ ├── .gitignore │ ├── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── res │ │ └── drawable │ │ └── icon.png ├── ios │ ├── Info.plist │ ├── qlcplus.png │ ├── qlcplus~ipad.png │ └── qlcplus~ipad@2x.png ├── linux │ ├── CMakeLists.txt │ ├── linux.pro │ ├── org.qlcplus.QLCPlus.appdata.xml │ ├── org.qlcplus.QLCPlusFixtureEditor.appdata.xml │ ├── qlcplus-fixtureeditor.1 │ ├── qlcplus-fixtureeditor.desktop │ ├── qlcplus-start.sh │ ├── qlcplus.1 │ ├── qlcplus.desktop │ ├── qlcplus.service │ ├── qlcplus.spec │ └── qlcplus.xml ├── macos │ ├── CMakeLists.txt │ ├── Info.plist │ ├── Info.plist.qmlui │ ├── dmg │ │ ├── background.png │ │ ├── create-dmg │ │ └── support │ │ │ ├── eula-resources-template.xml │ │ │ └── template.applescript │ ├── fix_dylib_deps.sh │ ├── qlcplus.entitlements │ ├── qt.conf │ └── svg2icns.sh ├── platforms.pro └── windows │ ├── CMakeLists.txt │ ├── apache_2.0.txt │ ├── qlcplus4Qt5.nsi │ ├── qlcplus4Qt6.nsi │ ├── qlcplus5Qt6.nsi │ └── windows.pro ├── plugins ├── CMakeLists.txt ├── E1.31 │ ├── CMakeLists.txt │ ├── E1.31.pro │ ├── E131_ca_ES.ts │ ├── E131_cz_CZ.ts │ ├── E131_de_DE.ts │ ├── E131_es_ES.ts │ ├── E131_fi_FI.ts │ ├── E131_fr_FR.ts │ ├── E131_it_IT.ts │ ├── E131_ja_JP.ts │ ├── E131_nl_NL.ts │ ├── E131_pt_BR.ts │ ├── configuree131.cpp │ ├── configuree131.h │ ├── configuree131.ui │ ├── e131controller.cpp │ ├── e131controller.h │ ├── e131packetizer.cpp │ ├── e131packetizer.h │ ├── e131plugin.cpp │ ├── e131plugin.h │ └── org.qlcplus.QLCPlus.e131.metainfo.xml ├── artnet │ ├── CMakeLists.txt │ ├── artnet.pro │ ├── src │ │ ├── ArtNet_ca_ES.ts │ │ ├── ArtNet_cz_CZ.ts │ │ ├── ArtNet_de_DE.ts │ │ ├── ArtNet_es_ES.ts │ │ ├── ArtNet_fi_FI.ts │ │ ├── ArtNet_fr_FR.ts │ │ ├── ArtNet_it_IT.ts │ │ ├── ArtNet_ja_JP.ts │ │ ├── ArtNet_nl_NL.ts │ │ ├── ArtNet_pt_BR.ts │ │ ├── CMakeLists.txt │ │ ├── artnetcontroller.cpp │ │ ├── artnetcontroller.h │ │ ├── artnetpacketizer.cpp │ │ ├── artnetpacketizer.h │ │ ├── artnetplugin.cpp │ │ ├── artnetplugin.h │ │ ├── configureartnet.cpp │ │ ├── configureartnet.h │ │ ├── configureartnet.ui │ │ ├── org.qlcplus.QLCPlus.artnet.metainfo.xml │ │ └── src.pro │ └── test │ │ ├── CMakeLists.txt │ │ ├── artnet_test.cpp │ │ ├── artnet_test.h │ │ ├── test.pro │ │ └── test.sh ├── dmx4linux │ ├── CMakeLists.txt │ ├── DMX4Linux_ca_ES.ts │ ├── DMX4Linux_cz_CZ.ts │ ├── DMX4Linux_de_DE.ts │ ├── DMX4Linux_es_ES.ts │ ├── DMX4Linux_fi_FI.ts │ ├── DMX4Linux_fr_FR.ts │ ├── DMX4Linux_it_IT.ts │ ├── DMX4Linux_ja_JP.ts │ ├── DMX4Linux_nl_NL.ts │ ├── DMX4Linux_pt_BR.ts │ ├── dmx4linux.cpp │ ├── dmx4linux.h │ ├── dmx4linux.pro │ └── org.qlcplus.QLCPlus.dmx4linux.metainfo.xml ├── dmxusb │ ├── CMakeLists.txt │ ├── dmxusb.pro │ └── src │ │ ├── CMakeLists.txt │ │ ├── DMX_USB_ca_ES.ts │ │ ├── DMX_USB_cz_CZ.ts │ │ ├── DMX_USB_de_DE.ts │ │ ├── DMX_USB_es_ES.ts │ │ ├── DMX_USB_fi_FI.ts │ │ ├── DMX_USB_fr_FR.ts │ │ ├── DMX_USB_it_IT.ts │ │ ├── DMX_USB_ja_JP.ts │ │ ├── DMX_USB_nl_NL.ts │ │ ├── DMX_USB_pt_BR.ts │ │ ├── dmxinterface.cpp │ │ ├── dmxinterface.h │ │ ├── dmxusb.cpp │ │ ├── dmxusb.h │ │ ├── dmxusbconfig.cpp │ │ ├── dmxusbconfig.h │ │ ├── dmxusbopenrx.cpp │ │ ├── dmxusbopenrx.h │ │ ├── dmxusbwidget.cpp │ │ ├── dmxusbwidget.h │ │ ├── enttecdmxusbopen.cpp │ │ ├── enttecdmxusbopen.h │ │ ├── enttecdmxusbpro.cpp │ │ ├── enttecdmxusbpro.h │ │ ├── euroliteusbdmxpro.cpp │ │ ├── euroliteusbdmxpro.h │ │ ├── ftd2xx-interface.cpp │ │ ├── ftd2xx-interface.h │ │ ├── libftdi-interface.cpp │ │ ├── libftdi-interface.h │ │ ├── nanodmx.cpp │ │ ├── nanodmx.h │ │ ├── org.qlcplus.QLCPlus.dmxusb.metainfo.xml │ │ ├── qtserial-interface.cpp │ │ ├── qtserial-interface.h │ │ ├── src.pro │ │ ├── stageprofi.cpp │ │ ├── stageprofi.h │ │ ├── vinceusbdmx512.cpp │ │ ├── vinceusbdmx512.h │ │ └── z65-dmxusb.rules ├── dummy │ ├── CMakeLists.txt │ ├── dummy.pro │ ├── dummyconfiguration.cpp │ ├── dummyconfiguration.h │ ├── dummyconfiguration.ui │ ├── dummyplugin.cpp │ └── dummyplugin.h ├── enttecwing │ ├── CMakeLists.txt │ ├── enttecwing.pro │ ├── src │ │ ├── CMakeLists.txt │ │ ├── ENTTEC_Wing_ca_ES.ts │ │ ├── ENTTEC_Wing_cz_CZ.ts │ │ ├── ENTTEC_Wing_de_DE.ts │ │ ├── ENTTEC_Wing_es_ES.ts │ │ ├── ENTTEC_Wing_fi_FI.ts │ │ ├── ENTTEC_Wing_fr_FR.ts │ │ ├── ENTTEC_Wing_it_IT.ts │ │ ├── ENTTEC_Wing_ja_JP.ts │ │ ├── ENTTEC_Wing_nl_NL.ts │ │ ├── ENTTEC_Wing_pt_BR.ts │ │ ├── enttecwing.cpp │ │ ├── enttecwing.h │ │ ├── org.qlcplus.QLCPlus.enttecwing.metainfo.xml │ │ ├── playbackwing.cpp │ │ ├── playbackwing.h │ │ ├── programwing.cpp │ │ ├── programwing.h │ │ ├── shortcutwing.cpp │ │ ├── shortcutwing.h │ │ ├── src.pro │ │ ├── wing.cpp │ │ └── wing.h │ └── test │ │ ├── CMakeLists.txt │ │ ├── main.cpp │ │ ├── playbackwing_test.cpp │ │ ├── playbackwing_test.h │ │ ├── programwing_test.cpp │ │ ├── programwing_test.h │ │ ├── shortcutwing_test.cpp │ │ ├── shortcutwing_test.h │ │ ├── test.pro │ │ ├── test.sh │ │ ├── wing_test.cpp │ │ └── wing_test.h ├── gpio │ ├── CMakeLists.txt │ ├── GPIO_ca_ES.ts │ ├── GPIO_cz_CZ.ts │ ├── GPIO_de_DE.ts │ ├── GPIO_es_ES.ts │ ├── GPIO_fi_FI.ts │ ├── GPIO_fr_FR.ts │ ├── GPIO_it_IT.ts │ ├── GPIO_ja_JP.ts │ ├── GPIO_nl_NL.ts │ ├── GPIO_pt_BR.ts │ ├── gpio.pro │ ├── gpioconfiguration.cpp │ ├── gpioconfiguration.h │ ├── gpioconfiguration.ui │ ├── gpioplugin.cpp │ ├── gpioplugin.h │ ├── gpioreaderthread.cpp │ └── gpioreaderthread.h ├── hid │ ├── CMakeLists.txt │ ├── HID_ca_ES.ts │ ├── HID_cz_CZ.ts │ ├── HID_de_DE.ts │ ├── HID_es_ES.ts │ ├── HID_fi_FI.ts │ ├── HID_fr_FR.ts │ ├── HID_it_IT.ts │ ├── HID_ja_JP.ts │ ├── HID_nl_NL.ts │ ├── HID_pt_BR.ts │ ├── configurehid.cpp │ ├── configurehid.h │ ├── configurehid.ui │ ├── hid.pro │ ├── hidapi.h │ ├── hiddevice.cpp │ ├── hiddevice.h │ ├── hiddmxdevice.cpp │ ├── hiddmxdevice.h │ ├── hidjsdevice.cpp │ ├── hidjsdevice.h │ ├── hidplugin.cpp │ ├── hidplugin.h │ ├── linux │ │ ├── hidapi.cpp │ │ ├── hidlinuxjoystick.cpp │ │ ├── hidlinuxjoystick.h │ │ ├── org.qlcplus.QLCPlus.hid.metainfo.xml │ │ └── z65-fx5-hid.rules │ ├── macx │ │ ├── hidapi.cpp │ │ ├── hidosxjoystick.cpp │ │ └── hidosxjoystick.h │ └── win32 │ │ ├── hidapi.cpp │ │ ├── hidwindowsjoystick.cpp │ │ └── hidwindowsjoystick.h ├── interfaces │ ├── qlcioplugin.cpp │ ├── qlcioplugin.h │ ├── qlcmacros.h │ ├── rdmprotocol.cpp │ ├── rdmprotocol.h │ └── utils.h ├── loopback │ ├── CMakeLists.txt │ ├── loopback.pro │ └── src │ │ ├── CMakeLists.txt │ │ ├── loopback.cpp │ │ ├── loopback.h │ │ ├── loopback_ca_ES.ts │ │ ├── loopback_cz_CZ.ts │ │ ├── loopback_de_DE.ts │ │ ├── loopback_es_ES.ts │ │ ├── loopback_fi_FI.ts │ │ ├── loopback_fr_FR.ts │ │ ├── loopback_it_IT.ts │ │ ├── loopback_ja_JP.ts │ │ ├── loopback_nl_NL.ts │ │ ├── loopback_pt_BR.ts │ │ ├── org.qlcplus.QLCPlus.loopback.metainfo.xml │ │ └── src.pro ├── midi │ ├── CMakeLists.txt │ ├── midi.pro │ ├── src │ │ ├── CMakeLists.txt │ │ ├── MIDI_ca_ES.ts │ │ ├── MIDI_cz_CZ.ts │ │ ├── MIDI_de_DE.ts │ │ ├── MIDI_es_ES.ts │ │ ├── MIDI_fi_FI.ts │ │ ├── MIDI_fr_FR.ts │ │ ├── MIDI_it_IT.ts │ │ ├── MIDI_ja_JP.ts │ │ ├── MIDI_nl_NL.ts │ │ ├── MIDI_pt_BR.ts │ │ ├── alsa │ │ │ ├── CMakeLists.txt │ │ │ ├── alsa.pro │ │ │ ├── alsamidienumerator.cpp │ │ │ ├── alsamidienumerator.h │ │ │ ├── alsamidiinputdevice.cpp │ │ │ ├── alsamidiinputdevice.h │ │ │ ├── alsamidiinputthread.cpp │ │ │ ├── alsamidiinputthread.h │ │ │ ├── alsamidioutputdevice.cpp │ │ │ ├── alsamidioutputdevice.h │ │ │ ├── alsamidiutil.cpp │ │ │ └── alsamidiutil.h │ │ ├── common │ │ │ ├── common.pri │ │ │ ├── configuremidiplugin.cpp │ │ │ ├── configuremidiplugin.h │ │ │ ├── configuremidiplugin.ui │ │ │ ├── mididevice.cpp │ │ │ ├── mididevice.h │ │ │ ├── midienumerator.h │ │ │ ├── midiinputdevice.cpp │ │ │ ├── midiinputdevice.h │ │ │ ├── midioutputdevice.cpp │ │ │ ├── midioutputdevice.h │ │ │ ├── midiplugin.cpp │ │ │ ├── midiplugin.h │ │ │ ├── midiprotocol.cpp │ │ │ ├── midiprotocol.h │ │ │ ├── miditemplate.cpp │ │ │ └── miditemplate.h │ │ ├── macx │ │ │ ├── CMakeLists.txt │ │ │ ├── coremidienumerator.cpp │ │ │ ├── coremidienumeratorprivate.h │ │ │ ├── coremidiinputdevice.cpp │ │ │ ├── coremidiinputdevice.h │ │ │ ├── coremidioutputdevice.cpp │ │ │ ├── coremidioutputdevice.h │ │ │ └── macx.pro │ │ ├── org.qlcplus.QLCPlus.midi.metainfo.xml │ │ ├── src.pro │ │ └── win32 │ │ │ ├── CMakeLists.txt │ │ │ ├── win32.pro │ │ │ ├── win32midienumerator.cpp │ │ │ ├── win32midienumeratorprivate.h │ │ │ ├── win32midiinputdevice.cpp │ │ │ ├── win32midiinputdevice.h │ │ │ ├── win32midioutputdevice.cpp │ │ │ └── win32midioutputdevice.h │ └── test │ │ ├── CMakeLists.txt │ │ ├── midi_test.cpp │ │ ├── midi_test.h │ │ ├── test.pro │ │ └── test.sh ├── ola │ ├── CMakeLists.txt │ ├── OLA_ca_ES.ts │ ├── OLA_cz_CZ.ts │ ├── OLA_de_DE.ts │ ├── OLA_es_ES.ts │ ├── OLA_fi_FI.ts │ ├── OLA_fr_FR.ts │ ├── OLA_it_IT.ts │ ├── OLA_ja_JP.ts │ ├── OLA_nl_NL.ts │ ├── OLA_pt_BR.ts │ ├── README │ ├── configureolaio.cpp │ ├── configureolaio.h │ ├── configureolaio.ui │ ├── ola.pro │ ├── olaio.cpp │ ├── olaio.h │ ├── olaoutthread.cpp │ ├── olaoutthread.h │ ├── org.qlcplus.QLCPlus.ola.metainfo.xml │ ├── qlclogdestination.cpp │ └── qlclogdestination.h ├── os2l │ ├── CMakeLists.txt │ ├── OS2L_ca_ES.ts │ ├── OS2L_de_DE.ts │ ├── OS2L_es_ES.ts │ ├── OS2L_fr_FR.ts │ ├── OS2L_it_IT.ts │ ├── OS2L_ja_JP.ts │ ├── OS2L_nl_NL.ts │ ├── org.qlcplus.QLCPlus.os2l.metainfo.xml │ ├── os2l.pro │ ├── os2lconfiguration.cpp │ ├── os2lconfiguration.h │ ├── os2lconfiguration.ui │ ├── os2lplugin.cpp │ └── os2lplugin.h ├── osc │ ├── CMakeLists.txt │ ├── OSC_ca_ES.ts │ ├── OSC_cz_CZ.ts │ ├── OSC_de_DE.ts │ ├── OSC_es_ES.ts │ ├── OSC_fi_FI.ts │ ├── OSC_fr_FR.ts │ ├── OSC_it_IT.ts │ ├── OSC_ja_JP.ts │ ├── OSC_nl_NL.ts │ ├── OSC_pt_BR.ts │ ├── configureosc.cpp │ ├── configureosc.h │ ├── configureosc.ui │ ├── org.qlcplus.QLCPlus.osc.metainfo.xml │ ├── osc.pro │ ├── osccontroller.cpp │ ├── osccontroller.h │ ├── oscpacketizer.cpp │ ├── oscpacketizer.h │ ├── oscplugin.cpp │ └── oscplugin.h ├── peperoni │ ├── CMakeLists.txt │ ├── Peperoni_ca_ES.ts │ ├── Peperoni_cz_CZ.ts │ ├── Peperoni_de_DE.ts │ ├── Peperoni_es_ES.ts │ ├── Peperoni_fi_FI.ts │ ├── Peperoni_fr_FR.ts │ ├── Peperoni_it_IT.ts │ ├── Peperoni_ja_JP.ts │ ├── Peperoni_nl_NL.ts │ ├── Peperoni_pt_BR.ts │ ├── common │ │ ├── CMakeLists.txt │ │ ├── common.pro │ │ ├── inputdevice.cpp │ │ ├── inputdevice.h │ │ ├── iodevice.cpp │ │ ├── iodevice.h │ │ ├── ioenumerator.cpp │ │ ├── ioenumerator.h │ │ ├── main.cpp │ │ ├── outputdevice.cpp │ │ ├── outputdevice.h │ │ ├── peperonidefs.h │ │ ├── unixioenumerator.cpp │ │ ├── unixioenumerator.h │ │ ├── unixpeperonidevice.cpp │ │ ├── unixpeperonidevice.h │ │ ├── win32ioenumerator.cpp │ │ ├── win32ioenumerator.h │ │ ├── win32peperonidevice.cpp │ │ └── win32peperonidevice.h │ ├── peperoni.pro │ ├── unix │ │ ├── CMakeLists.txt │ │ ├── org.qlcplus.QLCPlus.peperoni.metainfo.xml │ │ ├── peperoni.cpp │ │ ├── peperoni.h │ │ ├── peperonidevice.cpp │ │ ├── peperonidevice.h │ │ ├── unix.pro │ │ └── z65-peperoni.rules │ └── win32 │ │ ├── CMakeLists.txt │ │ ├── peperoni.cpp │ │ ├── peperoni.h │ │ ├── peperoni │ │ ├── usbdmx-dynamic.cpp │ │ └── usbdmx-dynamic.h │ │ ├── peperonidevice.cpp │ │ ├── peperonidevice.h │ │ └── win32.pro ├── plugins.pro ├── spi │ ├── CMakeLists.txt │ ├── SPI_ca_ES.ts │ ├── SPI_cz_CZ.ts │ ├── SPI_de_DE.ts │ ├── SPI_es_ES.ts │ ├── SPI_fi_FI.ts │ ├── SPI_fr_FR.ts │ ├── SPI_it_IT.ts │ ├── SPI_ja_JP.ts │ ├── SPI_nl_NL.ts │ ├── SPI_pt_BR.ts │ ├── org.qlcplus.QLCPlus.spi.metainfo.xml │ ├── spi.pro │ ├── spiconfiguration.cpp │ ├── spiconfiguration.h │ ├── spiconfiguration.ui │ ├── spioutthread.cpp │ ├── spioutthread.h │ ├── spiplugin.cpp │ ├── spiplugin.h │ └── z65-spi.rules ├── uart │ ├── CMakeLists.txt │ ├── UART_ca_ES.ts │ ├── UART_cz_CZ.ts │ ├── UART_de_DE.ts │ ├── UART_es_ES.ts │ ├── UART_fi_FI.ts │ ├── UART_fr_FR.ts │ ├── UART_it_IT.ts │ ├── UART_ja_JP.ts │ ├── UART_nl_NL.ts │ ├── UART_pt_BR.ts │ ├── uart.pro │ ├── uartplugin.cpp │ ├── uartplugin.h │ ├── uartwidget.cpp │ └── uartwidget.h ├── udmx │ ├── CMakeLists.txt │ ├── src │ │ ├── CMakeLists.txt │ │ ├── org.qlcplus.QLCPlus.udmx.metainfo.xml │ │ ├── src.pro │ │ ├── uDMX_ca_ES.ts │ │ ├── uDMX_cz_CZ.ts │ │ ├── uDMX_de_DE.ts │ │ ├── uDMX_es_ES.ts │ │ ├── uDMX_fi_FI.ts │ │ ├── uDMX_fr_FR.ts │ │ ├── uDMX_it_IT.ts │ │ ├── uDMX_ja_JP.ts │ │ ├── uDMX_nl_NL.ts │ │ ├── uDMX_pt_BR.ts │ │ ├── udmx.cpp │ │ ├── udmx.h │ │ ├── udmxdevice.cpp │ │ ├── udmxdevice.h │ │ └── z65-anyma-udmx.rules │ └── udmx.pro └── velleman │ ├── CMakeLists.txt │ ├── src │ ├── CMakeLists.txt │ ├── Velleman_ca_ES.ts │ ├── Velleman_cz_CZ.ts │ ├── Velleman_de_DE.ts │ ├── Velleman_es_ES.ts │ ├── Velleman_fi_FI.ts │ ├── Velleman_fr_FR.ts │ ├── Velleman_it_IT.ts │ ├── Velleman_ja_JP.ts │ ├── Velleman_nl_NL.ts │ ├── Velleman_pt_BR.ts │ ├── src.pro │ ├── velleman.cpp │ ├── velleman.h │ └── velleman_mock.cpp │ ├── test │ ├── CMakeLists.txt │ ├── test.pro │ ├── test.sh │ ├── velleman_test.cpp │ └── velleman_test.h │ └── velleman.pro ├── qlc.pro ├── qmake2cmake.md ├── qmlui ├── CMakeLists.txt ├── app.cpp ├── app.h ├── audioeditor.cpp ├── audioeditor.h ├── chasereditor.cpp ├── chasereditor.h ├── collectioneditor.cpp ├── collectioneditor.h ├── colorfilters.cpp ├── colorfilters.h ├── contextmanager.cpp ├── contextmanager.h ├── efxeditor.cpp ├── efxeditor.h ├── fixturebrowser.cpp ├── fixturebrowser.h ├── fixtureeditor │ ├── channeledit.cpp │ ├── channeledit.h │ ├── editorview.cpp │ ├── editorview.h │ ├── fixtureeditor.cpp │ ├── fixtureeditor.h │ ├── modeedit.cpp │ ├── modeedit.h │ ├── physicaledit.cpp │ └── physicaledit.h ├── fixturegroupeditor.cpp ├── fixturegroupeditor.h ├── fixturemanager.cpp ├── fixturemanager.h ├── fixtureutils.cpp ├── fixtureutils.h ├── folderbrowser.cpp ├── folderbrowser.h ├── functioneditor.cpp ├── functioneditor.h ├── functionmanager.cpp ├── functionmanager.h ├── importmanager.cpp ├── importmanager.h ├── inputoutputmanager.cpp ├── inputoutputmanager.h ├── inputprofileeditor.cpp ├── inputprofileeditor.h ├── js │ ├── CanvasDrawFunctions.js │ ├── FixtureDrag.js │ ├── GenericHelpers.js │ ├── Math3DView.js │ └── TimeUtils.js ├── listmodel.cpp ├── listmodel.h ├── main.cpp ├── mainview2d.cpp ├── mainview2d.h ├── mainview3d.cpp ├── mainview3d.h ├── mainviewdmx.cpp ├── mainviewdmx.h ├── modelselector.cpp ├── modelselector.h ├── palettemanager.cpp ├── palettemanager.h ├── previewcontext.cpp ├── previewcontext.h ├── qlcplus_ca_ES.ts ├── qlcplus_de_DE.ts ├── qlcplus_es_ES.ts ├── qlcplus_fr_FR.ts ├── qlcplus_it_IT.ts ├── qlcplus_ja_JP.ts ├── qlcplus_nl_NL.ts ├── qlcplus_pl_PL.ts ├── qlcplus_ru_RU.ts ├── qlcplus_uk_UA.ts ├── qml │ ├── ActionsMenu.qml │ ├── BeatGeneratorsPanel.qml │ ├── ChannelToolLoader.qml │ ├── ChaserStepDelegate.qml │ ├── ChaserWidget.qml │ ├── ColorTool.qml │ ├── ColorToolBasic.qml │ ├── ColorToolFilters.qml │ ├── ColorToolFull.qml │ ├── ColorToolPrimary.qml │ ├── ContextMenuEntry.qml │ ├── CustomCheckBox.qml │ ├── CustomComboBox.qml │ ├── CustomDoubleSpinBox.qml │ ├── CustomScrollBar.qml │ ├── CustomSlider.qml │ ├── CustomSpinBox.qml │ ├── CustomTextEdit.qml │ ├── CustomTextInput.qml │ ├── DMXAddressTool.qml │ ├── DMXAddressWidget.qml │ ├── DMXPercentageButton.qml │ ├── DayTimeTool.qml │ ├── ExternalControlDelegate.qml │ ├── ExternalControls.qml │ ├── FixtureConsole.qml │ ├── FixtureDelegate.qml │ ├── FontAwesomeVariables.qml │ ├── FunctionDelegate.qml │ ├── GenericButton.qml │ ├── GenericMultiDragItem.qml │ ├── IconButton.qml │ ├── IconPopupButton.qml │ ├── IconTextEntry.qml │ ├── InputChannelDelegate.qml │ ├── KeyPad.qml │ ├── KeyboardSequenceDelegate.qml │ ├── MainView.qml │ ├── MenuBarEntry.qml │ ├── MultiColorBox.qml │ ├── PaletteFanningBox.qml │ ├── QLCPlusFader.qml │ ├── QLCPlusKnob.qml │ ├── RobotoText.qml │ ├── SectionBox.qml │ ├── SidePanel.qml │ ├── SimpleDesk.qml │ ├── SingleAxisTool.qml │ ├── TimeEditTool.qml │ ├── TreeNodeDelegate.qml │ ├── UISettings.qml │ ├── UISettingsEditor.qml │ ├── UsageList.qml │ ├── WidgetDelegate.qml │ ├── WindowLoader.qml │ ├── ZoomItem.qml │ ├── fixtureeditor │ │ ├── ChannelEditor.qml │ │ ├── EditorView.qml │ │ ├── FixtureEditor.qml │ │ ├── ModeEditor.qml │ │ ├── PhysicalProperties.qml │ │ └── qmldir │ ├── fixturesfunctions │ │ ├── 2DView.qml │ │ ├── 3DView │ │ │ ├── 3DView.qml │ │ │ ├── 3DViewUnsupported.qml │ │ │ ├── BlitEffect.qml │ │ │ ├── BlitFilter.qml │ │ │ ├── DeferredRenderer.qml │ │ │ ├── DepthTarget.qml │ │ │ ├── DirectionalLightFilter.qml │ │ │ ├── DownsampleEffect.qml │ │ │ ├── DownsampleFilter.qml │ │ │ ├── FXAAEffect.qml │ │ │ ├── FXAAFilter.qml │ │ │ ├── FillGBufferFilter.qml │ │ │ ├── Fixture3DItem.qml │ │ │ ├── FrameTarget.qml │ │ │ ├── GBuffer.qml │ │ │ ├── GammaCorrectEffect.qml │ │ │ ├── GammaCorrectFilter.qml │ │ │ ├── Generic3DItem.qml │ │ │ ├── GenericScreenQuadEntity.qml │ │ │ ├── GeometryPassEffect.qml │ │ │ ├── GrabBrightEffect.qml │ │ │ ├── GrabBrightFilter.qml │ │ │ ├── LightEntity.qml │ │ │ ├── LightPassEffect.qml │ │ │ ├── MultiBeams3DItem.qml │ │ │ ├── OutputFrontDepthEffect.qml │ │ │ ├── OutputFrontDepthFilter.qml │ │ │ ├── PixelBar3DItem.qml │ │ │ ├── RenderSelectionBoxesFilter.qml │ │ │ ├── RenderShadowMapFilter.qml │ │ │ ├── SceneEntity.qml │ │ │ ├── ScreenQuadEntity.qml │ │ │ ├── ScreenQuadGammaCorrectEntity.qml │ │ │ ├── SelectionEntity.qml │ │ │ ├── SelectionGeometry.qml │ │ │ ├── SettingsView3D.qml │ │ │ ├── SpotlightConeEntity.qml │ │ │ ├── SpotlightScatteringEffect.qml │ │ │ ├── SpotlightScatteringFilter.qml │ │ │ ├── SpotlightShadingEffect.qml │ │ │ ├── SpotlightShadingFilter.qml │ │ │ ├── StageBox.qml │ │ │ ├── StageRock.qml │ │ │ ├── StageSimple.qml │ │ │ ├── StageTheatre.qml │ │ │ ├── Strobe3DItem.qml │ │ │ ├── UpsampleEffect.qml │ │ │ ├── UpsampleFilter.qml │ │ │ └── shaders │ │ │ │ ├── blit.frag │ │ │ │ ├── directional.frag │ │ │ │ ├── downsample.frag │ │ │ │ ├── fullscreen.vert │ │ │ │ ├── fxaa.frag │ │ │ │ ├── gamma_correct.frag │ │ │ │ ├── geo.frag │ │ │ │ ├── geo.vert │ │ │ │ ├── grab_bright.frag │ │ │ │ ├── output_depth.frag │ │ │ │ ├── output_depth.vert │ │ │ │ ├── output_front_depth.frag │ │ │ │ ├── spotlight.vert │ │ │ │ ├── spotlight_scattering.frag │ │ │ │ ├── spotlight_shading.frag │ │ │ │ └── upsample.frag │ │ ├── AddFunctionMenu.qml │ │ ├── AudioEditor.qml │ │ ├── BeamTool.qml │ │ ├── BottomPanel.qml │ │ ├── ChaserEditor.qml │ │ ├── CollectionEditor.qml │ │ ├── CollectionFunctionDelegate.qml │ │ ├── DMXView.qml │ │ ├── EFXEditor.qml │ │ ├── EFXPreview.qml │ │ ├── EditorTopBar.qml │ │ ├── Fixture2DItem.qml │ │ ├── FixtureBrowser.qml │ │ ├── FixtureBrowserDelegate.qml │ │ ├── FixtureChannelDelegate.qml │ │ ├── FixtureDMXItem.qml │ │ ├── FixtureDragItem.qml │ │ ├── FixtureGroupEditor.qml │ │ ├── FixtureGroupManager.qml │ │ ├── FixtureHeadDelegate.qml │ │ ├── FixtureNodeDelegate.qml │ │ ├── FixtureProperties.qml │ │ ├── FixtureSummary.qml │ │ ├── FixturesAndFunctions.qml │ │ ├── FunctionManager.qml │ │ ├── GridEditor.qml │ │ ├── IntensityTool.qml │ │ ├── LeftPanel.qml │ │ ├── PaletteManager.qml │ │ ├── PositionTool.qml │ │ ├── PresetCapabilityItem.qml │ │ ├── PresetsTool.qml │ │ ├── RGBMatrixEditor.qml │ │ ├── RGBMatrixPreview.qml │ │ ├── RGBPanelProperties.qml │ │ ├── RightPanel.qml │ │ ├── SceneEditor.qml │ │ ├── SceneFixtureConsole.qml │ │ ├── ScriptEditor.qml │ │ ├── SequenceEditor.qml │ │ ├── SettingsView2D.qml │ │ ├── SettingsViewDMX.qml │ │ ├── ShutterAnimator.qml │ │ ├── UniverseGridView.qml │ │ ├── UniverseSummary.qml │ │ ├── VideoContext.qml │ │ ├── VideoEditor.qml │ │ └── qmldir │ ├── inputoutput │ │ ├── AudioCardsList.qml │ │ ├── AudioDeviceItem.qml │ │ ├── AudioIOItem.qml │ │ ├── IOLeftPanel.qml │ │ ├── IORightPanel.qml │ │ ├── InputOutputManager.qml │ │ ├── InputPatchItem.qml │ │ ├── InputProfileEditor.qml │ │ ├── OutputPatchItem.qml │ │ ├── PatchWireBox.qml │ │ ├── PluginDragItem.qml │ │ ├── PluginsList.qml │ │ ├── ProfilesList.qml │ │ ├── UniverseIOItem.qml │ │ └── qmldir │ ├── popup │ │ ├── CustomPopupDialog.qml │ │ ├── PopupAbout.qml │ │ ├── PopupChannelModifiers.qml │ │ ├── PopupChannelWizard.qml │ │ ├── PopupCreatePalette.qml │ │ ├── PopupCustomFeedback.qml │ │ ├── PopupDMXDump.qml │ │ ├── PopupDisclaimer.qml │ │ ├── PopupFolderBrowser.qml │ │ ├── PopupImportProject.qml │ │ ├── PopupInputChannelEditor.qml │ │ ├── PopupInputNumber.qml │ │ ├── PopupManualInputSource.qml │ │ ├── PopupMonitor.qml │ │ ├── PopupNetworkClient.qml │ │ ├── PopupNetworkConnect.qml │ │ ├── PopupNetworkServer.qml │ │ ├── PopupPINRequest.qml │ │ ├── PopupPINSetup.qml │ │ ├── PopupRenameItems.qml │ │ └── qmldir │ ├── qmldir │ ├── showmanager │ │ ├── HeaderAndCursor.qml │ │ ├── ShowItem.qml │ │ ├── ShowManager.qml │ │ ├── TrackDelegate.qml │ │ └── qmldir │ └── virtualconsole │ │ ├── VCAnimationItem.qml │ │ ├── VCAnimationProperties.qml │ │ ├── VCAudioTriggersItem.qml │ │ ├── VCAudioTriggersProperties.qml │ │ ├── VCButtonItem.qml │ │ ├── VCButtonProperties.qml │ │ ├── VCClockItem.qml │ │ ├── VCClockProperties.qml │ │ ├── VCCueListItem.qml │ │ ├── VCCueListProperties.qml │ │ ├── VCFrameItem.qml │ │ ├── VCFrameProperties.qml │ │ ├── VCLabelItem.qml │ │ ├── VCPageArea.qml │ │ ├── VCPageProperties.qml │ │ ├── VCRightPanel.qml │ │ ├── VCSliderItem.qml │ │ ├── VCSliderProperties.qml │ │ ├── VCSpeedDialItem.qml │ │ ├── VCSpeedDialProperties.qml │ │ ├── VCWidgetItem.qml │ │ ├── VCWidgetProperties.qml │ │ ├── VCXYPadItem.qml │ │ ├── VCXYPadProperties.qml │ │ ├── VirtualConsole.qml │ │ ├── WidgetDragItem.qml │ │ ├── WidgetsList.qml │ │ └── qmldir ├── qmlui.pro ├── qmlui.qrc ├── qmlui.rc ├── rgbmatrixeditor.cpp ├── rgbmatrixeditor.h ├── sceneeditor.cpp ├── sceneeditor.h ├── scripteditor.cpp ├── scripteditor.h ├── showmanager.cpp ├── showmanager.h ├── simpledesk.cpp ├── simpledesk.h ├── tardis │ ├── networkmanager.cpp │ ├── networkmanager.h │ ├── networkpacketizer.cpp │ ├── networkpacketizer.h │ ├── simplecrypt.cpp │ ├── simplecrypt.h │ ├── tardis.cpp │ └── tardis.h ├── treemodel.cpp ├── treemodel.h ├── treemodelitem.cpp ├── treemodelitem.h ├── uimanager.cpp ├── uimanager.h ├── videoeditor.cpp ├── videoeditor.h ├── videoprovider.cpp ├── videoprovider.h ├── virtualconsole │ ├── vcanimation.cpp │ ├── vcanimation.h │ ├── vcaudiotriggers.cpp │ ├── vcaudiotriggers.h │ ├── vcbutton.cpp │ ├── vcbutton.h │ ├── vcclock.cpp │ ├── vcclock.h │ ├── vccuelist.cpp │ ├── vccuelist.h │ ├── vcframe.cpp │ ├── vcframe.h │ ├── vclabel.cpp │ ├── vclabel.h │ ├── vcpage.cpp │ ├── vcpage.h │ ├── vcslider.cpp │ ├── vcslider.h │ ├── vcsoloframe.cpp │ ├── vcsoloframe.h │ ├── vcspeeddial.cpp │ ├── vcspeeddial.h │ ├── vcwidget.cpp │ ├── vcwidget.h │ ├── vcxypad.cpp │ ├── vcxypad.h │ ├── virtualconsole.cpp │ └── virtualconsole.h ├── waveformimageprovider.cpp └── waveformimageprovider.h ├── resources ├── CMakeLists.txt ├── colorfilters │ ├── CMakeLists.txt │ ├── colorfilters.pro │ └── namedrgb.qxcf ├── docs │ ├── CMakeLists.txt │ ├── createpdf.sh │ ├── docs.pro │ ├── html_en_EN │ │ ├── addeditfixtures.html │ │ ├── addresstool.html │ │ ├── addrgbpanel.html │ │ ├── addvcbuttonmatrix.html │ │ ├── artnetplugin.html │ │ ├── audio-input-output.html │ │ ├── audioeditor.html │ │ ├── audiotriggers.html │ │ ├── channelproperties.html │ │ ├── channelsgroupeditor.html │ │ ├── chasereditor.html │ │ ├── collectioneditor.html │ │ ├── commandlineparameters.html │ │ ├── concept.html │ │ ├── disable_apple_ftdi_driver.html │ │ ├── dmxdump.html │ │ ├── dmxusbplugin.html │ │ ├── e131plugin.html │ │ ├── efxeditor.html │ │ ├── fixturedefinitioneditor.html │ │ ├── fixturegroupeditor.html │ │ ├── fixturemanager.html │ │ ├── fixturemonitor.html │ │ ├── fixturesremap.html │ │ ├── functionmanager.html │ │ ├── functionwizard.html │ │ ├── guicustomstyles.html │ │ ├── hidplugin.html │ │ ├── howto-add-fixtures.html │ │ ├── howto-input-output-mapping.html │ │ ├── howto-input-profiles.html │ │ ├── index.html │ │ ├── index_pdf.html │ │ ├── kioskmode.html │ │ ├── liveedit.html │ │ ├── loopbackplugin.html │ │ ├── mainwindow.html │ │ ├── midiplugin.html │ │ ├── modeeditor.html │ │ ├── olaplugin.html │ │ ├── os2lplugin.html │ │ ├── oscplugin.html │ │ ├── parameterstuning.html │ │ ├── pdf_cover.html │ │ ├── peperonioutput.html │ │ ├── questionsandanswers.html │ │ ├── rgbmatrixeditor.html │ │ ├── rgbscriptapi.html │ │ ├── sceneeditor.html │ │ ├── scripteditor.html │ │ ├── selectfixture.html │ │ ├── selectfunction.html │ │ ├── selectinputchannel.html │ │ ├── showeditor.html │ │ ├── showmanager.html │ │ ├── simpledesk.html │ │ ├── style.css │ │ ├── supported-input-devices.html │ │ ├── tutorial-bcf-lc2412.html │ │ ├── tutorial-multipage.html │ │ ├── tutorial-soundcontrol.html │ │ ├── tutorial.html │ │ ├── udmxoutput.html │ │ ├── utility.js │ │ ├── vcbutton.html │ │ ├── vcbuttonmatrix.html │ │ ├── vccuelist.html │ │ ├── vcframe.html │ │ ├── vclabel.html │ │ ├── vcmatrix.html │ │ ├── vcslider.html │ │ ├── vcslidermatrix.html │ │ ├── vcsoloframe.html │ │ ├── vcspeeddial.html │ │ ├── vcstylingplacement.html │ │ ├── vcxypad.html │ │ ├── vellemanoutput.html │ │ ├── videoeditor.html │ │ ├── virtualconsole.html │ │ └── webinterface.html │ ├── html_ja_JP │ │ ├── addeditfixtures.html │ │ ├── addresstool.html │ │ ├── addrgbpanel.html │ │ ├── addvcbuttonmatrix.html │ │ ├── artnetplugin.html │ │ ├── audio-input-output.html │ │ ├── audioeditor.html │ │ ├── audiotriggers.html │ │ ├── channelproperties.html │ │ ├── channelsgroupeditor.html │ │ ├── chasereditor.html │ │ ├── collectioneditor.html │ │ ├── commandlineparameters.html │ │ ├── concept.html │ │ ├── disable_apple_ftdi_driver.html │ │ ├── dmxdump.html │ │ ├── dmxusbplugin.html │ │ ├── e131plugin.html │ │ ├── efxeditor.html │ │ ├── fixturedefinitioneditor.html │ │ ├── fixturegroupeditor.html │ │ ├── fixturemanager.html │ │ ├── fixturemonitor.html │ │ ├── fixturesremap.html │ │ ├── functionmanager.html │ │ ├── functionwizard.html │ │ ├── guicustomstyles.html │ │ ├── hidplugin.html │ │ ├── howto-add-fixtures.html │ │ ├── howto-input-output-mapping.html │ │ ├── howto-input-profiles.html │ │ ├── index.html │ │ ├── index_pdf.html │ │ ├── kioskmode.html │ │ ├── liveedit.html │ │ ├── loopbackplugin.html │ │ ├── mainwindow.html │ │ ├── midiplugin.html │ │ ├── modeeditor.html │ │ ├── olaplugin.html │ │ ├── os2lplugin.html │ │ ├── oscplugin.html │ │ ├── parameterstuning.html │ │ ├── pdf_cover.html │ │ ├── peperonioutput.html │ │ ├── questionsandanswers.html │ │ ├── rgbmatrixeditor.html │ │ ├── rgbscriptapi.html │ │ ├── sceneeditor.html │ │ ├── scripteditor.html │ │ ├── selectfixture.html │ │ ├── selectfunction.html │ │ ├── selectinputchannel.html │ │ ├── showeditor.html │ │ ├── showmanager.html │ │ ├── simpledesk.html │ │ ├── style.css │ │ ├── supported-input-devices.html │ │ ├── tutorial-bcf-lc2412.html │ │ ├── tutorial-multipage.html │ │ ├── tutorial-soundcontrol.html │ │ ├── tutorial.html │ │ ├── udmxoutput.html │ │ ├── utility.js │ │ ├── vcbutton.html │ │ ├── vcbuttonmatrix.html │ │ ├── vccuelist.html │ │ ├── vcframe.html │ │ ├── vclabel.html │ │ ├── vcmatrix.html │ │ ├── vcslider.html │ │ ├── vcslidermatrix.html │ │ ├── vcsoloframe.html │ │ ├── vcspeeddial.html │ │ ├── vcstylingplacement.html │ │ ├── vcxypad.html │ │ ├── vellemanoutput.html │ │ ├── videoeditor.html │ │ ├── virtualconsole.html │ │ └── webinterface.html │ ├── images │ │ ├── bcf2000-lc2412.png │ │ ├── bcf2000-lc2412.svg │ │ ├── blending.png │ │ ├── channelmodifier.png │ │ ├── e131_configuration.png │ │ ├── efx-general.png │ │ ├── efx-movement.png │ │ ├── fixremap.png │ │ ├── fixtureeditor_aliases.png │ │ ├── fixtureeditor_channel_color.png │ │ ├── fixtureeditor_channel_gobo.png │ │ ├── fixtureeditor_channel_preset.png │ │ ├── fixtureeditor_channel_shutter.png │ │ ├── fixtureeditor_channel_wizard.png │ │ ├── fixtureeditor_channels.png │ │ ├── fixtureeditor_general.png │ │ ├── fixtureeditor_mode_channels.png │ │ ├── fixtureeditor_mode_edit_head.png │ │ ├── fixtureeditor_mode_heads.png │ │ ├── fixtureeditor_modes.png │ │ ├── fixtureeditor_physical.png │ │ ├── locale.png │ │ ├── mainwindow.png │ │ ├── multipage1.png │ │ ├── multipage2.png │ │ ├── multipage3.png │ │ ├── multipage4.png │ │ ├── pan-tilt.png │ │ ├── speeddial.png │ │ ├── track-mute.png │ │ ├── track-solo.png │ │ ├── tutorial1_1.png │ │ ├── tutorial1_2.png │ │ ├── tutorial1_3.png │ │ ├── xypad-efx.png │ │ ├── xypad.png │ │ └── xypad2.png │ └── make_docs.rb ├── doxygen │ ├── .gitignore │ ├── doxygen.h │ └── qlcplus.dox ├── fixtures │ ├── ADB │ │ ├── ADB-ALC4.qxf │ │ └── ADB-Warp-M.qxf │ ├── AFX │ │ ├── AFX-BARLED200-FX.qxf │ │ ├── AFX-CLUB-MIX3-19x10W-RGBW.qxf │ │ ├── AFX-Spot-180-LED.qxf │ │ └── AFX-Spot-60-LED.qxf │ ├── AGPtek │ │ └── AGPtek-RGB-6ch-crystal-ball.qxf │ ├── AVE │ │ ├── AVE-Cobra-Wash-200.qxf │ │ ├── AVE-Quad-Pro-Flat.qxf │ │ └── AVE-StagePar-Hex18.qxf │ ├── Abstract │ │ ├── Abstract-Twister-4.qxf │ │ └── Abstract-VR8.qxf │ ├── Acme │ │ ├── Acme-Dotline180.qxf │ │ ├── Acme-Dotline360.qxf │ │ ├── Acme-Ginamp.qxf │ │ ├── Acme-Oxygen.qxf │ │ ├── Acme-Pixel-Line-IP.qxf │ │ └── Acme-Super-Dotline.qxf │ ├── Alkalite │ │ └── Alkalite-Octopod-DP-80.qxf │ ├── Altman │ │ └── Altman-Spectra-CYC-100.qxf │ ├── American_DJ │ │ ├── American-DJ-12P-Hex-IP.qxf │ │ ├── American-DJ-12P-Hex.qxf │ │ ├── American-DJ-18P-Hex.qxf │ │ ├── American-DJ-5P-Hex.qxf │ │ ├── American-DJ-64B-LED-PRO.qxf │ │ ├── American-DJ-Accu-Fog-1000.qxf │ │ ├── American-DJ-Accu-Roller-250.qxf │ │ ├── American-DJ-Accu-Spot-250-II.qxf │ │ ├── American-DJ-Accu-Spot-Pro.qxf │ │ ├── American-DJ-Accu-UFO.qxf │ │ ├── American-DJ-Asteroid-1200.qxf │ │ ├── American-DJ-Auto-Spot-150.qxf │ │ ├── American-DJ-Boom-Box-Fx2.qxf │ │ ├── American-DJ-COB-Cannon-Wash-DW.qxf │ │ ├── American-DJ-COB-Cannon-Wash-Pearl.qxf │ │ ├── American-DJ-COB-Cannon-Wash-ST.qxf │ │ ├── American-DJ-Chameleon-QBar-Pro.qxf │ │ ├── American-DJ-Comscan-LED.qxf │ │ ├── American-DJ-DJ-Spot-250.qxf │ │ ├── American-DJ-DJ-Spot-300.qxf │ │ ├── American-DJ-Dekker-LED.qxf │ │ ├── American-DJ-Dotz-Bar-1.4.qxf │ │ ├── American-DJ-Dotz-Flood.qxf │ │ ├── American-DJ-Dotz-Matrix.qxf │ │ ├── American-DJ-Dotz-Panel-2.4.qxf │ │ ├── American-DJ-Dotz-Par.qxf │ │ ├── American-DJ-Dotz-TPar.qxf │ │ ├── American-DJ-Double-Phase.qxf │ │ ├── American-DJ-ECO-UV-BAR-DMX.qxf │ │ ├── American-DJ-Emerald-Scan.qxf │ │ ├── American-DJ-Encore-Burst-RGBW-IP.qxf │ │ ├── American-DJ-Encore-FR150z.qxf │ │ ├── American-DJ-Encore-FR50z.qxf │ │ ├── American-DJ-Entour-Faze.qxf │ │ ├── American-DJ-Entour-Venue.qxf │ │ ├── American-DJ-Entourage.qxf │ │ ├── American-DJ-Event-Bar-LED.qxf │ │ ├── American-DJ-Event-Bar-Pro.qxf │ │ ├── American-DJ-Event-Bar-Q4.qxf │ │ ├── American-DJ-FREQ-16-Strobe.qxf │ │ ├── American-DJ-FREQ-5-Strobe.qxf │ │ ├── American-DJ-FREQ-Matrix-Quad.qxf │ │ ├── American-DJ-Flat-Par-QA12X.qxf │ │ ├── American-DJ-Flat-Par-TW12.qxf │ │ ├── American-DJ-Flat-Par-Tri7X.qxf │ │ ├── American-DJ-Focus-Spot-4Z.qxf │ │ ├── American-DJ-Focus-Spot-5Z.qxf │ │ ├── American-DJ-Focus-Spot-Three-Z.qxf │ │ ├── American-DJ-Fog-Fury-3000-WiFly.qxf │ │ ├── American-DJ-Fog-Fury-Jett-Pro.qxf │ │ ├── American-DJ-Fog-Fury-Jett.qxf │ │ ├── American-DJ-Fog-Storm.qxf │ │ ├── American-DJ-Fusion-FX-Bar-1.qxf │ │ ├── American-DJ-Fusion-FX-Bar-2.qxf │ │ ├── American-DJ-Fusion-FX-Bar-5.qxf │ │ ├── American-DJ-Galaxian-3D.qxf │ │ ├── American-DJ-Galaxian-Gem-IR.qxf │ │ ├── American-DJ-Galaxian-Sky.qxf │ │ ├── American-DJ-H2O-DMX-PRO.qxf │ │ ├── American-DJ-Hyper-Gem-LED.qxf │ │ ├── American-DJ-Hypnotic-RGB.qxf │ │ ├── American-DJ-Ikon-Profile.qxf │ │ ├── American-DJ-Illusion-Dotz-4-dot-4.qxf │ │ ├── American-DJ-Inno-Color-Beam-LED.qxf │ │ ├── American-DJ-Inno-Color-Beam-Quad-7.qxf │ │ ├── American-DJ-Inno-Color-Beam-Z7.qxf │ │ ├── American-DJ-Inno-Pocket-Beam-Q4.qxf │ │ ├── American-DJ-Inno-Pocket-Roll.qxf │ │ ├── American-DJ-Inno-Pocket-Scan.qxf │ │ ├── American-DJ-Inno-Pocket-Spot-Twins.qxf │ │ ├── American-DJ-Inno-Pocket-Spot.qxf │ │ ├── American-DJ-Inno-Pocket-Wash.qxf │ │ ├── American-DJ-Inno-Pocket-Z4.qxf │ │ ├── American-DJ-Inno-Scan-LED.qxf │ │ ├── American-DJ-Inno-Spot-Elite.qxf │ │ ├── American-DJ-Inno-Spot-LED.qxf │ │ ├── American-DJ-Inno-Spot-Pro.qxf │ │ ├── American-DJ-Jellydome.qxf │ │ ├── American-DJ-Jolt-300.qxf │ │ ├── American-DJ-LED-Trispot.qxf │ │ ├── American-DJ-MB-DMX-II.qxf │ │ ├── American-DJ-Mega-Bar-50RGB.qxf │ │ ├── American-DJ-Mega-Bar-LED.qxf │ │ ├── American-DJ-Mega-Bar-RGBA.qxf │ │ ├── American-DJ-Mega-Flash-DMX.qxf │ │ ├── American-DJ-Mega-Hex-Par.qxf │ │ ├── American-DJ-Mega-PAR-Profile-Plus.qxf │ │ ├── American-DJ-Mega-PAR-Profile.qxf │ │ ├── American-DJ-Mega-Panel-LED.qxf │ │ ├── American-DJ-Mega-QA-Par38.qxf │ │ ├── American-DJ-Mega-Tri-Bar.qxf │ │ ├── American-DJ-Mega-Tri-Par.qxf │ │ ├── American-DJ-Mega-TriPar-Profile-Plus.qxf │ │ ├── American-DJ-Micro-Wash-RGBW.qxf │ │ ├── American-DJ-Mini-Dekker.qxf │ │ ├── American-DJ-Monster-Fun.qxf │ │ ├── American-DJ-Nucleus-LED.qxf │ │ ├── American-DJ-Nucleus-PRO.qxf │ │ ├── American-DJ-On-X.qxf │ │ ├── American-DJ-P64-LED-Plus.qxf │ │ ├── American-DJ-Par-38-Pro.qxf │ │ ├── American-DJ-Par-Z4.qxf │ │ ├── American-DJ-Pearl-LED-WH.qxf │ │ ├── American-DJ-Pinspot-LED-Quad-DMX.qxf │ │ ├── American-DJ-Pocket-Pro.qxf │ │ ├── American-DJ-ProPAR-56RGB.qxf │ │ ├── American-DJ-Profile-Panel-RGB.qxf │ │ ├── American-DJ-Punch-LED-Pro.qxf │ │ ├── American-DJ-QA5-IP.qxf │ │ ├── American-DJ-Quad-Gem-DMX.qxf │ │ ├── American-DJ-Quad-Phase.qxf │ │ ├── American-DJ-Quad-Scan-LED.qxf │ │ ├── American-DJ-Revo-3.qxf │ │ ├── American-DJ-Revo-4-256.qxf │ │ ├── American-DJ-Revo-4.qxf │ │ ├── American-DJ-Revo-Burst.qxf │ │ ├── American-DJ-Revo-Sweep.qxf │ │ ├── American-DJ-SP1500-MKII.qxf │ │ ├── American-DJ-Saber-Spot-RGBW.qxf │ │ ├── American-DJ-Spherion-Tri-LED.qxf │ │ ├── American-DJ-Starball-LED-DMX.qxf │ │ ├── American-DJ-Starburst.qxf │ │ ├── American-DJ-Stinger-II.qxf │ │ ├── American-DJ-Stinger-Spot.qxf │ │ ├── American-DJ-Stinger.qxf │ │ ├── American-DJ-Sweeper-Beam-LED.qxf │ │ ├── American-DJ-Sweeper-Beam-Quad-LED.qxf │ │ ├── American-DJ-TRI64-Profile.qxf │ │ ├── American-DJ-Tri-Phase.qxf │ │ ├── American-DJ-Tribar-Spot2.qxf │ │ ├── American-DJ-UB-12H.qxf │ │ ├── American-DJ-UB-6H.qxf │ │ ├── American-DJ-UV-COB-Cannon.qxf │ │ ├── American-DJ-UV-LED-Bar-20.qxf │ │ ├── American-DJ-UVLed-Bar-16.qxf │ │ ├── American-DJ-Ultra-Bar-12.qxf │ │ ├── American-DJ-Ultra-Bar-6.qxf │ │ ├── American-DJ-Ultra-Bar-9.qxf │ │ ├── American-DJ-Ultra-Hex-Bar-12.qxf │ │ ├── American-DJ-Ultra-Hex-Par3.qxf │ │ ├── American-DJ-VBar.qxf │ │ ├── American-DJ-VPar.qxf │ │ ├── American-DJ-Vizi-BSW-300.qxf │ │ ├── American-DJ-Vizi-Beam-5R.qxf │ │ ├── American-DJ-Vizi-Beam-5RX.qxf │ │ ├── American-DJ-Vizi-Beam-RXONE.qxf │ │ ├── American-DJ-Vizi-Hex-Wash7.qxf │ │ ├── American-DJ-Vizi-LED-Spot.qxf │ │ ├── American-DJ-Vizi-Roller-Beam-2R.qxf │ │ ├── American-DJ-Vizi-Wash-LED-108.qxf │ │ ├── American-DJ-Warlock.qxf │ │ ├── American-DJ-WiFLY-Chameleon.qxf │ │ ├── American-DJ-WiFly-Bar-QA5.qxf │ │ ├── American-DJ-WiFly-EXR-Dotz-Par.qxf │ │ ├── American-DJ-WiFly-EXR-HEX5-IP.qxf │ │ ├── American-DJ-WiFly-PAR-QA5.qxf │ │ ├── American-DJ-X-Scan-LED-Plus.qxf │ │ ├── American-DJ-XS-400.qxf │ │ └── American-DJ-XS-600.qxf │ ├── Antari │ │ ├── Antari-F-5D-Fazer.qxf │ │ ├── Antari-X-310-Pro-Fazer.qxf │ │ ├── Antari-Z-1000-MKII.qxf │ │ └── Antari-Z-1520-RGB.qxf │ ├── Art_System │ │ └── Art-System-GC-18x15-RGBWA.qxf │ ├── Astera │ │ ├── Astera-AX3-Lightdrop.qxf │ │ └── Astera-Titan-Tube-FP1.qxf │ ├── Audibax │ │ └── Audibax-Iowa-70.qxf │ ├── Ayra │ │ ├── Ayra-ALO-Micro-Scan.qxf │ │ ├── Ayra-ComPar-10.qxf │ │ ├── Ayra-ComPar20.qxf │ │ ├── Ayra-Compar-Kit-1.qxf │ │ ├── Ayra-Compar-Kit-3.qxf │ │ ├── Ayra-ERO-075.qxf │ │ ├── Ayra-ERO-406.qxf │ │ ├── Ayra-ERO-506.qxf │ │ ├── Ayra-ERO-Micro-Beam-FX.qxf │ │ ├── Ayra-ERO-Microspot.qxf │ │ ├── Ayra-IntenZ-CB-150.qxf │ │ ├── Ayra-TDC-Agaricus.qxf │ │ ├── Ayra-TDC-Triple-Burst.qxf │ │ └── Ayra-WSM02-WSM03-MKII.qxf │ ├── Ayrton │ │ ├── Ayrton-Arcaline-100-RGB.qxf │ │ ├── Ayrton-Domino-LT.qxf │ │ ├── Ayrton-Kyalami.qxf │ │ ├── Ayrton-MagicBlade-R.qxf │ │ ├── Ayrton-MagicPanel-602.qxf │ │ ├── Ayrton-MiniPanel-FX.qxf │ │ ├── Ayrton-Mistral.qxf │ │ ├── Ayrton-NandoBeam-S3.qxf │ │ └── Ayrton-Rivale-Profile.qxf │ ├── Betopper │ │ ├── Betopper-LB230.qxf │ │ ├── Betopper-LM108.qxf │ │ ├── Betopper-LM70.qxf │ │ ├── Betopper-LPC-004.qxf │ │ ├── Betopper-LPC-006.qxf │ │ ├── Betopper-LPC-007.qxf │ │ ├── Betopper-LPC-017.qxf │ │ └── Betopper-LPC-120.qxf │ ├── Blizzard_Lighting │ │ ├── Blizzard-Lighting-Blade-RGBW.qxf │ │ ├── Blizzard-Lighting-Flurry-5.qxf │ │ ├── Blizzard-Lighting-HotBox-Infiniwhite.qxf │ │ ├── Blizzard-Lighting-Hotbox-EXA.qxf │ │ ├── Blizzard-Lighting-Hotbox-RGBAW.qxf │ │ ├── Blizzard-Lighting-Hotbox-RGBW.qxf │ │ ├── Blizzard-Lighting-LB-Hex-Unplugged.qxf │ │ ├── Blizzard-Lighting-LB-Par-Hex.qxf │ │ ├── Blizzard-Lighting-Lil-G.qxf │ │ ├── Blizzard-Lighting-Lo-Pro-CSI.qxf │ │ ├── Blizzard-Lighting-Pixellicious.qxf │ │ ├── Blizzard-Lighting-Puck-Fab5.qxf │ │ ├── Blizzard-Lighting-Puck-RGBAW.qxf │ │ ├── Blizzard-Lighting-Rocklite-RGBAW.qxf │ │ ├── Blizzard-Lighting-RokBox-Infiniwhite.qxf │ │ ├── Blizzard-Lighting-Snowball.qxf │ │ ├── Blizzard-Lighting-Stimul-Eye.qxf │ │ ├── Blizzard-Lighting-StormChaser.qxf │ │ └── Blizzard-Lighting-Weather-System.qxf │ ├── BoomToneDJ │ │ ├── BoomToneDJ-Froggy-LED-RGBW.qxf │ │ ├── BoomToneDJ-KUB-500-RGB.qxf │ │ ├── BoomToneDJ-LED-PAR-7X10W-5in1.qxf │ │ ├── BoomToneDJ-Maxi-Spot-60.qxf │ │ ├── BoomToneDJ-Moving-Wash-5X15-Speed.qxf │ │ ├── BoomToneDJ-Quattro-Scan-LED.qxf │ │ ├── BoomToneDJ-SilentPAR-12x10w-6in1.qxf │ │ ├── BoomToneDJ-Sky-Bar-288-LED.qxf │ │ ├── BoomToneDJ-Slim-PAR-7x3W-LED-RGB.qxf │ │ └── BoomToneDJ-Strob-LED-18.qxf │ ├── Botex │ │ ├── Botex-DPX-620-III.qxf │ │ ├── Botex-DSP-405.qxf │ │ └── Botex-SP-1500.qxf │ ├── Bright │ │ └── Bright-XBAR.qxf │ ├── Briteq │ │ ├── Briteq-BT-575S.qxf │ │ ├── Briteq-BT-575W.qxf │ │ ├── Briteq-BT-70LS.qxf │ │ ├── Briteq-BT-ORBIT.qxf │ │ ├── Briteq-BT-Smartzoom.qxf │ │ ├── Briteq-BT-Theatre-100EC.qxf │ │ ├── Briteq-BT-Theatre-250EZ-Mk3.qxf │ │ ├── Briteq-BT-Theatre-250EZ.qxf │ │ ├── Briteq-BT-Theatre-50WW.qxf │ │ ├── Briteq-BT-Theatre-HD1.qxf │ │ ├── Briteq-BT-Theatre-HD2.qxf │ │ ├── Briteq-BT-Vintage.qxf │ │ ├── Briteq-BT-W07L12.qxf │ │ ├── Briteq-BT-W12L10.qxf │ │ ├── Briteq-BTX-180LS.qxf │ │ ├── Briteq-BTX-Saturn.qxf │ │ ├── Briteq-COB-Blinder-2x100W.qxf │ │ ├── Briteq-COB-PAR56-RGB.qxf │ │ ├── Briteq-COB-slim-100-RGB.qxf │ │ ├── Briteq-Giga-Flash-RGB.qxf │ │ ├── Briteq-LDP-COBWASH-150TC.qxf │ │ ├── Briteq-LDP-COBWASH-60TC.qxf │ │ ├── Briteq-LDP-Powerbar-12TC.qxf │ │ ├── Briteq-LDP-Powerbar-6TC.qxf │ │ ├── Briteq-LED-UV-Gun.qxf │ │ ├── Briteq-Pro-Beamer-Zoom.qxf │ │ ├── Briteq-Spectra-3D-Laser.qxf │ │ ├── Briteq-Stagepainter-12.qxf │ │ └── Briteq-Tornado-7.qxf │ ├── CLF │ │ ├── CLF-JUNO.qxf │ │ └── CLF-Tricolor-Mini-Par.qxf │ ├── CMakeLists.txt │ ├── Cameo │ │ ├── Cameo-Auro-Spot-100.qxf │ │ ├── Cameo-Auro-Spot-200.qxf │ │ ├── Cameo-Auro-Spot-300.qxf │ │ ├── Cameo-Auro-Spot-400.qxf │ │ ├── Cameo-CL-Superfly-HP.qxf │ │ ├── Cameo-CLBARL10RGBA.qxf │ │ ├── Cameo-CLHB400RGBW.qxf │ │ ├── Cameo-CLM-PAR-COB-1.qxf │ │ ├── Cameo-CLMPAR3.qxf │ │ ├── Cameo-CLPFLATPRO-Series.qxf │ │ ├── Cameo-CLPIXBAR200PRO.qxf │ │ ├── Cameo-CLPIXBAR300PRO.qxf │ │ ├── Cameo-CLPIXBAR400PRO.qxf │ │ ├── Cameo-CLPIXBAR450PRO-CLPIXBAR650PRO.qxf │ │ ├── Cameo-F2-T-PO.qxf │ │ ├── Cameo-FLAT-PRO-12.qxf │ │ ├── Cameo-FLAT-PRO-18.qxf │ │ ├── Cameo-FLAT-PRO-7.qxf │ │ ├── Cameo-Flash-Bar-150.qxf │ │ ├── Cameo-Flat-PAR-CAN-TRI-3W.qxf │ │ ├── Cameo-Gobo-Scanner-60.qxf │ │ ├── Cameo-HydraBeam-4000.qxf │ │ ├── Cameo-Hydrabeam-1000-RGBW.qxf │ │ ├── Cameo-Hydrabeam-400-Series.qxf │ │ ├── Cameo-LED-Gobo-Scanner-80.qxf │ │ ├── Cameo-LED-Mini-PAR-CAN-RGB-7x3W.qxf │ │ ├── Cameo-LED-Mini-PAR-CAN-RGBW-7x8W.qxf │ │ ├── Cameo-LED-Mini-PAR-CAN-White-7x4W.qxf │ │ ├── Cameo-LED-Moving-Head-60W-CLMHRGB60W.qxf │ │ ├── Cameo-LED-MultiPAR-CLM-PAR-COB1.qxf │ │ ├── Cameo-LED-PAR-64-CAN-RGB-36x1W.qxf │ │ ├── Cameo-LED-RGB-PAR56-9x3W.qxf │ │ ├── Cameo-LED-RGB-PAR56-Can.qxf │ │ ├── Cameo-LED-RGB-PAR64-18x3W.qxf │ │ ├── Cameo-LED-RGBW-PAR64-18x8W.qxf │ │ ├── Cameo-Movo-Beam-100.qxf │ │ ├── Cameo-Movo-Beam-Z-100.qxf │ │ ├── Cameo-Multi-FX-Bar-EZ.qxf │ │ ├── Cameo-Multi-FX-Bar.qxf │ │ ├── Cameo-Multi-PAR-1.qxf │ │ ├── Cameo-Multi-PAR-3.qxf │ │ ├── Cameo-NanoBeam-300.qxf │ │ ├── Cameo-Octafly-XS.qxf │ │ ├── Cameo-P2-FC.qxf │ │ ├── Cameo-P2-T.qxf │ │ ├── Cameo-Pixbar-600-PRO.qxf │ │ ├── Cameo-Q-Spot-15-RGBW.qxf │ │ ├── Cameo-Q-Spot-40-RGBW.qxf │ │ ├── Cameo-ROOT-Par-6.qxf │ │ ├── Cameo-Storm.qxf │ │ ├── Cameo-Strobe-3x3.5W.qxf │ │ ├── Cameo-Strobe-6x10W.qxf │ │ ├── Cameo-Studio-PAR-64-Q-8W-(CLPST64Q8W).qxf │ │ ├── Cameo-Studio-PAR-64-RGBWA-UV-12W.qxf │ │ ├── Cameo-Superfly-XS.qxf │ │ ├── Cameo-TS-100-WW.qxf │ │ ├── Cameo-TS-200-WW.qxf │ │ ├── Cameo-TS-40-WW.qxf │ │ ├── Cameo-TS-60-RGBW.qxf │ │ ├── Cameo-Thunder-Wash-100-RGB.qxf │ │ ├── Cameo-Thunder-Wash-100-W.qxf │ │ ├── Cameo-Thunder-Wash-600-RGB.qxf │ │ ├── Cameo-Thunder-Wash-600-W.qxf │ │ ├── Cameo-Thunderwash-600-RGBW.qxf │ │ ├── Cameo-Thunderwash-600-UV.qxf │ │ ├── Cameo-Tribar-200-IR.qxf │ │ ├── Cameo-Twinscan-20.qxf │ │ ├── Cameo-Wookie-series.qxf │ │ ├── Cameo-Zenit-B200.qxf │ │ ├── Cameo-Zenit-B60.qxf │ │ └── Cameo-Zenit-Z120-G2.qxf │ ├── Chauvet │ │ ├── Chauvet-200b.qxf │ │ ├── Chauvet-4Bar-Tri.qxf │ │ ├── Chauvet-4Bar.qxf │ │ ├── Chauvet-4Play.qxf │ │ ├── Chauvet-6-Spot.qxf │ │ ├── Chauvet-Abyss-USB.qxf │ │ ├── Chauvet-COLORado-1-Quad-Zoom-Tour.qxf │ │ ├── Chauvet-COLORado-1-Solo.qxf │ │ ├── Chauvet-COLORado-1-Tour.qxf │ │ ├── Chauvet-COLORado-2-Quad-Zoom.qxf │ │ ├── Chauvet-COLORado-3P.qxf │ │ ├── Chauvet-COLORado-Batten-72-Tour.qxf │ │ ├── Chauvet-COLORado-Batten-72x.qxf │ │ ├── Chauvet-COLORband-Q3BT.qxf │ │ ├── Chauvet-COLORband-T3-BT.qxf │ │ ├── Chauvet-COLORband-T3-USB.qxf │ │ ├── Chauvet-COLORbar-SMD.qxf │ │ ├── Chauvet-COLORdash-Accent-Quad.qxf │ │ ├── Chauvet-COLORdash-Accent-RGBW.qxf │ │ ├── Chauvet-COLORdash-Batten.qxf │ │ ├── Chauvet-COLORdash-Par-Hex-12.qxf │ │ ├── Chauvet-COLORdash-Par-Hex-7.qxf │ │ ├── Chauvet-COLORdash-Par-Quad-18.qxf │ │ ├── Chauvet-COLORdash-Par-Quad-7.qxf │ │ ├── Chauvet-COLORpalette.qxf │ │ ├── Chauvet-COLORrail-IRC2.qxf │ │ ├── Chauvet-COLORstrip-Mini-FX.qxf │ │ ├── Chauvet-COLORtube-3.0-EQ-Controller.qxf │ │ ├── Chauvet-CORE-3x3.qxf │ │ ├── Chauvet-COREpar-40-USB.qxf │ │ ├── Chauvet-COREpar-80-USB.qxf │ │ ├── Chauvet-COREpar-80.qxf │ │ ├── Chauvet-COREpar-UV-USB.qxf │ │ ├── Chauvet-Circus-2.qxf │ │ ├── Chauvet-Circus.qxf │ │ ├── Chauvet-ColorBand-Pix-IP.qxf │ │ ├── Chauvet-ColorBand-Pix-M-USB.qxf │ │ ├── Chauvet-ColorBand-Pix-M.qxf │ │ ├── Chauvet-ColorStrip-Mini.qxf │ │ ├── Chauvet-Colorpalette-II.qxf │ │ ├── Chauvet-Cubix-2.0.qxf │ │ ├── Chauvet-DMF-10.qxf │ │ ├── Chauvet-DMX-Mega-Strobe-III.qxf │ │ ├── Chauvet-Derby-X.qxf │ │ ├── Chauvet-Double-Derby-X.qxf │ │ ├── Chauvet-EVE-P-160-RGBW.qxf │ │ ├── Chauvet-EZPAR-64-RGBA.qxf │ │ ├── Chauvet-Eclipse-RGB.qxf │ │ ├── Chauvet-FXpar9.qxf │ │ ├── Chauvet-Followspot-120ST.qxf │ │ ├── Chauvet-Freedom-H1.qxf │ │ ├── Chauvet-Freedom-Stick.qxf │ │ ├── Chauvet-Geyser-P6.qxf │ │ ├── Chauvet-Geyser-RGB.qxf │ │ ├── Chauvet-GigBAR-2.qxf │ │ ├── Chauvet-GigBAR-Flex.qxf │ │ ├── Chauvet-GigBAR-Move.qxf │ │ ├── Chauvet-GigBar-IRC.qxf │ │ ├── Chauvet-Gobo-Zoom-LED-2.0.qxf │ │ ├── Chauvet-Gobozap.qxf │ │ ├── Chauvet-Gyser-RGB.qxf │ │ ├── Chauvet-Hemisphere-5.1.qxf │ │ ├── Chauvet-Hive.qxf │ │ ├── Chauvet-Hurricane-1800-Flex.qxf │ │ ├── Chauvet-Hurricane-Haze-2.qxf │ │ ├── Chauvet-Intimidator-Barrel-300.qxf │ │ ├── Chauvet-Intimidator-Barrel-305-IRC.qxf │ │ ├── Chauvet-Intimidator-Beam-LED-350.qxf │ │ ├── Chauvet-Intimidator-Beam-Q60.qxf │ │ ├── Chauvet-Intimidator-Hybrid-140SR.qxf │ │ ├── Chauvet-Intimidator-Scan-305-IRC.qxf │ │ ├── Chauvet-Intimidator-Scan-LED-100.qxf │ │ ├── Chauvet-Intimidator-Scan-LED-200.qxf │ │ ├── Chauvet-Intimidator-Scan-LED-300.qxf │ │ ├── Chauvet-Intimidator-Spot-100-IRC.qxf │ │ ├── Chauvet-Intimidator-Spot-110.qxf │ │ ├── Chauvet-Intimidator-Spot-155.qxf │ │ ├── Chauvet-Intimidator-Spot-250.qxf │ │ ├── Chauvet-Intimidator-Spot-255-IRC.qxf │ │ ├── Chauvet-Intimidator-Spot-355-IRC.qxf │ │ ├── Chauvet-Intimidator-Spot-355Z-IRC.qxf │ │ ├── Chauvet-Intimidator-Spot-375Z-IRC.qxf │ │ ├── Chauvet-Intimidator-Spot-400-IRC.qxf │ │ ├── Chauvet-Intimidator-Spot-475ZX.qxf │ │ ├── Chauvet-Intimidator-Spot-Duo-155.qxf │ │ ├── Chauvet-Intimidator-Spot-Duo.qxf │ │ ├── Chauvet-Intimidator-Spot-LED-150.qxf │ │ ├── Chauvet-Intimidator-Spot-LED-250.qxf │ │ ├── Chauvet-Intimidator-Spot-LED-260.qxf │ │ ├── Chauvet-Intimidator-Spot-LED-350.qxf │ │ ├── Chauvet-Intimidator-Trio.qxf │ │ ├── Chauvet-Intimidator-Wash-Zoom-350-IRC.qxf │ │ ├── Chauvet-Intimidator-Wash-Zoom-450-IRC.qxf │ │ ├── Chauvet-Intimidator-Wave-360-IRC.qxf │ │ ├── Chauvet-Kinta-FX.qxf │ │ ├── Chauvet-LED-PAR-64-36B.qxf │ │ ├── Chauvet-LED-PAR-64-Tri-B.qxf │ │ ├── Chauvet-LED-PAR-64-Tri-C.qxf │ │ ├── Chauvet-LED-Shadow.qxf │ │ ├── Chauvet-LED-Splash-86b.qxf │ │ ├── Chauvet-LED-Techno-Strobe-RGB.qxf │ │ ├── Chauvet-LEDSplash-Jr.qxf │ │ ├── Chauvet-LEDrain64.qxf │ │ ├── Chauvet-Legend-230SR-Beam.qxf │ │ ├── Chauvet-Legend-330SR-Spot.qxf │ │ ├── Chauvet-Legend-412Z.qxf │ │ ├── Chauvet-Maverick-MK3-Profile-CX.qxf │ │ ├── Chauvet-Mayhem.qxf │ │ ├── Chauvet-MiN-Spot-RGBW.qxf │ │ ├── Chauvet-Mini-Kinta-IRC.qxf │ │ ├── Chauvet-Mini-Kinta.qxf │ │ ├── Chauvet-Omega-I-DMX-155.qxf │ │ ├── Chauvet-Ovation-E-910FC.qxf │ │ ├── Chauvet-Ovation-F-415FC.qxf │ │ ├── Chauvet-Ovation-F-915FC.qxf │ │ ├── Chauvet-Ovation-FD-165WW.qxf │ │ ├── Chauvet-Ovation-H-105WW.qxf │ │ ├── Chauvet-Ovation-H-605FC.qxf │ │ ├── Chauvet-Ovation-P-56FC.qxf │ │ ├── Chauvet-Q-Beam-260-LED.qxf │ │ ├── Chauvet-Q-Spot-250.qxf │ │ ├── Chauvet-Q-Spot-260-LED.qxf │ │ ├── Chauvet-Q-Spot-560-LED.qxf │ │ ├── Chauvet-Q-Wash-560Z-LED.qxf │ │ ├── Chauvet-Rogue-R1-FX-B.qxf │ │ ├── Chauvet-Rogue-R1-Spot.qxf │ │ ├── Chauvet-Rogue-R2-Spot.qxf │ │ ├── Chauvet-Rogue-R2-wash.qxf │ │ ├── Chauvet-Rogue-RH1-Hybrid.qxf │ │ ├── Chauvet-RotoSphere-LED.qxf │ │ ├── Chauvet-Rotosphere-Q3.qxf │ │ ├── Chauvet-Scorpion-Bar-RG.qxf │ │ ├── Chauvet-Scorpion-Dual-RGB.qxf │ │ ├── Chauvet-Scorpion-Dual.qxf │ │ ├── Chauvet-Scorpion-Storm-FX-RGB.qxf │ │ ├── Chauvet-Scorpion-Storm-RGX.qxf │ │ ├── Chauvet-Shocker-90-IRC-QRG.qxf │ │ ├── Chauvet-Slim-Par-Pro-RGBA.qxf │ │ ├── Chauvet-Slim-Par-Pro-VW.qxf │ │ ├── Chauvet-SlimBANK-TRI-18.qxf │ │ ├── Chauvet-SlimPAR-38.qxf │ │ ├── Chauvet-SlimPAR-56.qxf │ │ ├── Chauvet-SlimPAR-64-RGBA.qxf │ │ ├── Chauvet-SlimPAR-64.qxf │ │ ├── Chauvet-SlimPAR-HEX-3.qxf │ │ ├── Chauvet-SlimPAR-Pro-H-USB.qxf │ │ ├── Chauvet-SlimPAR-Pro-Pix.qxf │ │ ├── Chauvet-SlimPAR-Pro-Q-USB.qxf │ │ ├── Chauvet-SlimPAR-Pro-W-USB.qxf │ │ ├── Chauvet-SlimPAR-Q12-USB.qxf │ │ ├── Chauvet-SlimPAR-Q12BT.qxf │ │ ├── Chauvet-SlimPAR-Q12ILS.qxf │ │ ├── Chauvet-SlimPAR-Q6-USB.qxf │ │ ├── Chauvet-SlimPAR-QUAD-12-IRC.qxf │ │ ├── Chauvet-SlimPAR-QUV12-USB.qxf │ │ ├── Chauvet-SlimPAR-T12BT.qxf │ │ ├── Chauvet-SlimPAR-T6-USB.qxf │ │ ├── Chauvet-SlimPAR-TRI-12-IRC.qxf │ │ ├── Chauvet-SlimPar-Hex-6.qxf │ │ ├── Chauvet-SlimPar-Pro-Tri.qxf │ │ ├── Chauvet-SlimPar-Tri-7-IRC.qxf │ │ ├── Chauvet-SlimSTRIP-UV-18-IRC.qxf │ │ ├── Chauvet-Swarm-4-FX.qxf │ │ ├── Chauvet-Swarm-5-FX.qxf │ │ ├── Chauvet-Swarm-Wash-FX.qxf │ │ ├── Chauvet-Techno-Strobe-168.qxf │ │ ├── Chauvet-Trident.qxf │ │ ├── Chauvet-Vue-1.1.qxf │ │ ├── Chauvet-Vue-3.1.qxf │ │ ├── Chauvet-Vue-6.1.qxf │ │ ├── Chauvet-Wash-FX-Hex.qxf │ │ ├── Chauvet-Wash-FX.qxf │ │ ├── Chauvet-Wash-FX2.qxf │ │ └── Chauvet-Wedge-Tri.qxf │ ├── Clay_Paky │ │ ├── Clay-Paky-A.LEDA-Wash-K10.qxf │ │ ├── Clay-Paky-A.LEDA-Wash-K20.qxf │ │ ├── Clay-Paky-A.LEDA-Wash-K5.qxf │ │ ├── Clay-Paky-A.leda-B-EYE-K10-EASY.qxf │ │ ├── Clay-Paky-A.leda-B-EYE-K10.qxf │ │ ├── Clay-Paky-A.leda-B-EYE-K20.qxf │ │ ├── Clay-Paky-Alpha-Beam-1500.qxf │ │ ├── Clay-Paky-Alpha-Beam-300.qxf │ │ ├── Clay-Paky-Alpha-Spot-575-HPE.qxf │ │ ├── Clay-Paky-Alpha-Wash-700.qxf │ │ ├── Clay-Paky-Arolla-Profile-HP.qxf │ │ ├── Clay-Paky-Arolla-Profile-MP.qxf │ │ ├── Clay-Paky-Arolla-Spot-MP.qxf │ │ ├── Clay-Paky-Atlas.qxf │ │ ├── Clay-Paky-Axcor-Profile-600.qxf │ │ ├── Clay-Paky-CP-Color-400.qxf │ │ ├── Clay-Paky-Glow-Up.qxf │ │ ├── Clay-Paky-HY-B-EYE-K15.qxf │ │ ├── Clay-Paky-HY-B-EYE-K25.qxf │ │ ├── Clay-Paky-Hepikos.qxf │ │ ├── Clay-Paky-Midi-B.qxf │ │ ├── Clay-Paky-Mini-B-Spot.qxf │ │ ├── Clay-Paky-Mini-B.qxf │ │ ├── Clay-Paky-Mini-Scan-150.qxf │ │ ├── Clay-Paky-Mini-Scan-300.qxf │ │ ├── Clay-Paky-Mini-Scan-HPE.qxf │ │ ├── Clay-Paky-Mythos.qxf │ │ ├── Clay-Paky-Pin-Scan.qxf │ │ ├── Clay-Paky-Scenius-Unico.qxf │ │ ├── Clay-Paky-Sharpy-Plus.qxf │ │ ├── Clay-Paky-Sharpy-X-Frame.qxf │ │ ├── Clay-Paky-Sharpy.qxf │ │ ├── Clay-Paky-Show-Batten-100.qxf │ │ ├── Clay-Paky-Stage-Color-300-AE.qxf │ │ ├── Clay-Paky-Stormy-CC.qxf │ │ ├── Clay-Paky-Stormy.qxf │ │ ├── Clay-Paky-SuperSharpy.qxf │ │ ├── Clay-Paky-Tambora-Batten.qxf │ │ ├── Clay-Paky-Tambora-Flash.qxf │ │ ├── Clay-Paky-Tambora-Linear-100.qxf │ │ ├── Clay-Paky-Tiger-Scan-HMI-1200.qxf │ │ ├── Clay-Paky-Tiger-Scan-HMI-575.qxf │ │ ├── Clay-Paky-Tornado.qxf │ │ ├── Clay-Paky-Volero-Wave.qxf │ │ └── Clay-Paky-Xtylos.qxf │ ├── Coemar │ │ ├── Coemar-LEDko-FullSpectrum-6.qxf │ │ ├── Coemar-Par-Lite-LED-RGB.qxf │ │ ├── Coemar-ProSpot-250-LX.qxf │ │ ├── Coemar-ProWash-250-LX.qxf │ │ ├── Coemar-Stage-Lite-LED.qxf │ │ └── Coemar-iSpot-150.qxf │ ├── ColorKey │ │ ├── ColorKey-Scorpius.qxf │ │ └── ColorKey-WaferPar-Quad-W-12-v2.qxf │ ├── Color_Imagination │ │ └── Color-Imagination-LedSpot-90-SI-052.qxf │ ├── Contest │ │ ├── Contest-Delirium.qxf │ │ ├── Contest-Evora-Beam-15R.qxf │ │ ├── Contest-Evora-Beam-5R.qxf │ │ ├── Contest-Evora-DUO-B2R.qxf │ │ ├── Contest-EvoraB2R.qxf │ │ ├── Contest-HazeTEC.qxf │ │ ├── Contest-LedColor.qxf │ │ ├── Contest-Mini-Head-10W.qxf │ │ ├── Contest-MiniCube-6TCb.qxf │ │ ├── Contest-Oz-37x15QC.qxf │ │ ├── Contest-PSC-930.qxf │ │ ├── Contest-SFX-HO150QC.qxf │ │ ├── Contest-SFX-HO150W.qxf │ │ ├── Contest-STB-520-1500W-Strobe.qxf │ │ ├── Contest-Tri4U.qxf │ │ └── Contest-irLED64-18x10FIVE.qxf │ ├── DNA │ │ └── DNA-Pro-Slim-18-RGBW.qxf │ ├── DTS │ │ ├── DTS-Jack.qxf │ │ ├── DTS-Katana.qxf │ │ ├── DTS-Max-FAR.qxf │ │ ├── DTS-Nick-NRG1201.qxf │ │ ├── DTS-Scena-LED-200.qxf │ │ ├── DTS-XR5-Wash.qxf │ │ └── DTS-XR7-Spot.qxf │ ├── Dia_Lighting │ │ └── Dia-Lighting-Diapro-Spot-LED-300.qxf │ ├── Dune_Lighting │ │ ├── Dune-Lighting-Fireworks-Pro-II.qxf │ │ ├── Dune-Lighting-LED-Blender-220.qxf │ │ ├── Dune-Lighting-MOVLED60W.qxf │ │ └── Dune-Lighting-PAR-LED-64.qxf │ ├── EK │ │ ├── EK-E3-LED-Spot.qxf │ │ └── EK-R3-Wash.qxf │ ├── ENTTEC │ │ ├── ENTTEC-CVC4.qxf │ │ ├── ENTTEC-SMART-PXL-40-Dot.qxf │ │ └── ENTTEC-SMART-PXL-60-Dot.qxf │ ├── ETC │ │ ├── ETC-ColorSource-Fresnel-V.qxf │ │ ├── ETC-ColorSource-PAR.qxf │ │ ├── ETC-ColorSource-Spot.qxf │ │ ├── ETC-Desire-D22-Lustr+.qxf │ │ ├── ETC-Desire-D40-Vivid.qxf │ │ └── ETC-s4-Lustr2.qxf │ ├── ETEC │ │ ├── ETEC-LED-PAR-64-18x10W-RGBWA.qxf │ │ ├── ETEC-LED-PAR-64-18x15W-RGBWA.qxf │ │ └── ETEC-Moving-Spot-60E.qxf │ ├── Elation │ │ ├── Elation-Color-Spot-150.qxf │ │ ├── Elation-Cuepix-Batten.qxf │ │ ├── Elation-Cuepix-Blinder-WW2.qxf │ │ ├── Elation-DW-Fresnel.qxf │ │ ├── Elation-E-Spot-III.qxf │ │ ├── Elation-ELED-B48.qxf │ │ ├── Elation-EVC-MH.qxf │ │ ├── Elation-Fuze-PAR-Z175.qxf │ │ ├── Elation-Fuze-Wash-Z350.qxf │ │ ├── Elation-OPTI-TRI-30.qxf │ │ ├── Elation-Paladin.qxf │ │ ├── Elation-Platinum-Beam-5R.qxf │ │ ├── Elation-Platinum-Spot-5R.qxf │ │ ├── Elation-Platinum-Spot-III.qxf │ │ ├── Elation-Proteus-Beam.qxf │ │ ├── Elation-Proteus-Hybrid.qxf │ │ ├── Elation-Rayzor-Q7.qxf │ │ ├── Elation-SIX-PAR-Z19-IP.qxf │ │ ├── Elation-SIXPAR-200IP.qxf │ │ ├── Elation-Sniper-2R.qxf │ │ ├── Elation-TVL-CYC-RGBW.qxf │ │ └── Elation-Vision-250.qxf │ ├── Electroconcept │ │ ├── Electroconcept-Club-Scan-120.qxf │ │ ├── Electroconcept-Club-Scan-30.qxf │ │ ├── Electroconcept-LED-Blinder.qxf │ │ ├── Electroconcept-Micro-Spot-60-LED.qxf │ │ ├── Electroconcept-PAR-56-LED-Full-RGB-18x3W.qxf │ │ ├── Electroconcept-Profile-120-Spot-LED.qxf │ │ └── Electroconcept-SPC029.qxf │ ├── Eliminator_Lighting │ │ ├── Eliminator-Lighting-Electro-86.qxf │ │ ├── Eliminator-Lighting-Electro-MH25R.qxf │ │ ├── Eliminator-Lighting-Follow-Spot-100-LED.qxf │ │ ├── Eliminator-Lighting-LP-12-HEX.qxf │ │ ├── Eliminator-Lighting-MEGA-HEX-L-PAR.qxf │ │ ├── Eliminator-Lighting-Stealth-Beam.qxf │ │ └── Eliminator-Lighting-Stealth-Wash-Zoom.qxf │ ├── Elumen8 │ │ ├── Elumen8-COB-Tri-4-Pixel-Batten.qxf │ │ ├── Elumen8-MP-120.qxf │ │ ├── Elumen8-MP-60-Mk1.qxf │ │ ├── Elumen8-MP-60-Mk2.qxf │ │ └── Elumen8-MS-700PE.qxf │ ├── Enterius │ │ └── Enterius-EC-133DMX.qxf │ ├── Epsilon │ │ └── Epsilon-PixBeam.qxf │ ├── Equinox │ │ ├── Equinox-Butterfly-Quad-EQLED100.qxf │ │ ├── Equinox-Domin8R-II.qxf │ │ ├── Equinox-Fusion-50-Mkii.qxf │ │ ├── Equinox-Fusion-Orbit-MKII.qxf │ │ ├── Equinox-Fusion-Spot-MKIII.qxf │ │ ├── Equinox-Fusion-Spot-Max-MKIII.qxf │ │ ├── Equinox-Gigabar.qxf │ │ ├── Equinox-Microbar-Quad-System.qxf │ │ ├── Equinox-Party-Par-LED-PAR-56.qxf │ │ ├── Equinox-Photon.qxf │ │ ├── Equinox-Quad-Pix-Batten.qxf │ │ ├── Equinox-SpectraPix-Batten.qxf │ │ ├── Equinox-Swing-Batten.qxf │ │ └── Equinox-Ultra-Scan-LED.qxf │ ├── Eurolite │ │ ├── EuroLite-LED-Super-Strobe-ABL.qxf │ │ ├── Eurolite-DMXSuperstrobe-2700.qxf │ │ ├── Eurolite-EDX-4RT.qxf │ │ ├── Eurolite-GKF-60.qxf │ │ ├── Eurolite-KLS-180-6.qxf │ │ ├── Eurolite-KLS200.qxf │ │ ├── Eurolite-LED-ACS-BAR-12.qxf │ │ ├── Eurolite-LED-B-40-Beam.qxf │ │ ├── Eurolite-LED-Bar-2-RGBA-252_10_40__Indoor.qxf │ │ ├── Eurolite-LED-Bar-RGB-252_10_40__Indoor.qxf │ │ ├── Eurolite-LED-CBB-3-COB-RGB-3x15W-Bar.qxf │ │ ├── Eurolite-LED-CLS-9-QCL-RGBW-9x8W-12.qxf │ │ ├── Eurolite-LED-D-1000.qxf │ │ ├── Eurolite-LED-D-400-RGBAW-3W-DMX.qxf │ │ ├── Eurolite-LED-DMX-Pixel-Tube-16-RGB.qxf │ │ ├── Eurolite-LED-FE-1500.qxf │ │ ├── Eurolite-LED-FE-700.qxf │ │ ├── Eurolite-LED-FE-800.qxf │ │ ├── Eurolite-LED-Flood-Light-252-RGB-19.qxf │ │ ├── Eurolite-LED-H2O-Water-Effect.qxf │ │ ├── Eurolite-LED-KLS-120-FX.qxf │ │ ├── Eurolite-LED-KLS-180.qxf │ │ ├── Eurolite-LED-KLS-2500.qxf │ │ ├── Eurolite-LED-KLS-401.qxf │ │ ├── Eurolite-LED-KLS-Laser-Bar-FX-Light-Set.qxf │ │ ├── Eurolite-LED-KLS-Scan-Pro-Next-FX-Light.qxf │ │ ├── Eurolite-LED-ML-56-QCL-RGBW-RGBA-18x8W.qxf │ │ ├── Eurolite-LED-Mini-Strobe-Cluster-SMD48.qxf │ │ ├── Eurolite-LED-Multi-FX-Laser-Bar.qxf │ │ ├── Eurolite-LED-PAR-56-RGB-DMX.qxf │ │ ├── Eurolite-LED-PAR-64-RGBW+UV.qxf │ │ ├── Eurolite-LED-PAR56.qxf │ │ ├── Eurolite-LED-PAR64-QCL-12x8W.qxf │ │ ├── Eurolite-LED-PAR64-RGB.qxf │ │ ├── Eurolite-LED-PAR64-RGBA.qxf │ │ ├── Eurolite-LED-PAR64-White.qxf │ │ ├── Eurolite-LED-PARty-Hybrid-spot.qxf │ │ ├── Eurolite-LED-PARty-RGBW.qxf │ │ ├── Eurolite-LED-PARty-TCL-spot.qxf │ │ ├── Eurolite-LED-PIX-12-HCL-Bar.qxf │ │ ├── Eurolite-LED-PIX-16-QCL-Bar.qxf │ │ ├── Eurolite-LED-PLL-480-CW-WW.qxf │ │ ├── Eurolite-LED-PMB-4-COB-RGB-30W-Bar.qxf │ │ ├── Eurolite-LED-PMB-8-COB-RGB-30W.qxf │ │ ├── Eurolite-LED-PT-100-32-Pixel-DMX-Tube.qxf │ │ ├── Eurolite-LED-PT-100.qxf │ │ ├── Eurolite-LED-Party-Panel-RGB+UV.qxf │ │ ├── Eurolite-LED-QDF-Bar.qxf │ │ ├── Eurolite-LED-SCY-100-RGBW-DMX.qxf │ │ ├── Eurolite-LED-SL-600.qxf │ │ ├── Eurolite-LED-SLS-18-TCL.qxf │ │ ├── Eurolite-LED-SLS-180-RGB.qxf │ │ ├── Eurolite-LED-SLS-183-10-RGB.qxf │ │ ├── Eurolite-LED-SLS-5-BCL.qxf │ │ ├── Eurolite-LED-SLS-603.qxf │ │ ├── Eurolite-LED-SLS-7-HCL.qxf │ │ ├── Eurolite-LED-SLS-X-QCL.qxf │ │ ├── Eurolite-LED-Silent-PAR6.qxf │ │ ├── Eurolite-LED-Strobe-PRO-DMX.qxf │ │ ├── Eurolite-LED-Strobe-SMD-PRO-132-DMX-RGB.qxf │ │ ├── Eurolite-LED-T-36-RGB-Pinspot.qxf │ │ ├── Eurolite-LED-T-36-RGB-Spot.qxf │ │ ├── Eurolite-LED-THA-250F.qxf │ │ ├── Eurolite-LED-TMH-17.qxf │ │ ├── Eurolite-LED-TMH-40.qxf │ │ ├── Eurolite-LED-TMH-46.qxf │ │ ├── Eurolite-LED-TMH-51.qxf │ │ ├── Eurolite-LED-TMH-6.qxf │ │ ├── Eurolite-LED-TMH-9.qxf │ │ ├── Eurolite-LED-TMH-FE-1800.qxf │ │ ├── Eurolite-LED-TMH-FE-600.qxf │ │ ├── Eurolite-LED-TMH-X10.qxf │ │ ├── Eurolite-LED-TMH-X4.qxf │ │ ├── Eurolite-LED-TMH-X5.qxf │ │ ├── Eurolite-LED-TSL-1000-Scan-MK2.qxf │ │ ├── Eurolite-LED-Theatre-COB-200-RGB+WW.qxf │ │ ├── Eurolite-LED-Twin-Scan-Bar.qxf │ │ ├── Eurolite-LED-Z-200-TCL.qxf │ │ ├── Eurolite-Led-Theatre-36x3W-CW-WW.qxf │ │ ├── Eurolite-NH-30-MK2.qxf │ │ ├── Eurolite-PST-15W-QCL-RGB.qxf │ │ ├── Eurolite-PST-9W-RGB.qxf │ │ ├── Eurolite-Party-TCL-Spot-RGB.qxf │ │ ├── Eurolite-TB-250.qxf │ │ ├── Eurolite-TC-150.qxf │ │ ├── Eurolite-TC-200.qxf │ │ ├── Eurolite-TC-250.qxf │ │ ├── Eurolite-TC-300.qxf │ │ ├── Eurolite-TC-5.qxf │ │ ├── Eurolite-TF-5.qxf │ │ ├── Eurolite-TG-5.qxf │ │ ├── Eurolite-THA-100F-COB.qxf │ │ ├── Eurolite-TMH-10.qxf │ │ ├── Eurolite-TMH-11-Moving-Head-Wash.qxf │ │ ├── Eurolite-TMH-14.qxf │ │ ├── Eurolite-TMH-15.qxf │ │ ├── Eurolite-TMH-155.qxf │ │ ├── Eurolite-TMH-250.qxf │ │ ├── Eurolite-TMH-30-60-mk2.qxf │ │ ├── Eurolite-TMH-8.qxf │ │ ├── Eurolite-TMH-S90-Moving-Head-Spot.qxf │ │ ├── Eurolite-TMH-X3.qxf │ │ ├── Eurolite-TMH-X4.qxf │ │ ├── Eurolite-TR-5.qxf │ │ ├── Eurolite-TS-10.qxf │ │ ├── Eurolite-TS-150.qxf │ │ ├── Eurolite-TS-155.qxf │ │ ├── Eurolite-TS-2.qxf │ │ ├── Eurolite-TS-250.qxf │ │ ├── Eurolite-TS-255.qxf │ │ ├── Eurolite-TS-5.qxf │ │ ├── Eurolite-TS-7.qxf │ │ ├── Eurolite-TS-7B.qxf │ │ ├── Eurolite-TSL-100.qxf │ │ ├── Eurolite-TSL-150.qxf │ │ └── Eurolite-TSL-200.qxf │ ├── Event_Lighting │ │ ├── Event-Lighting-PAR19X12O.qxf │ │ ├── Event-Lighting-PAR6X12OB.qxf │ │ ├── Event-Lighting-PAR6X12OB2.qxf │ │ ├── Event-Lighting-Pixbar12x12.qxf │ │ ├── Event-Lighting-StrobeX-RGB.qxf │ │ └── Event-Lighting-StrobeX.qxf │ ├── Evolight │ │ └── Evolight-Colours-SL3.qxf │ ├── Expolite │ │ ├── Expolite-AkkuLED-Power-Compact.qxf │ │ ├── Expolite-TourBar-32PIX-RGBW.qxf │ │ ├── Expolite-TourLED-MC180.qxf │ │ ├── Expolite-TourLed-42.qxf │ │ ├── Expolite-TourSpot-50-Mini.qxf │ │ ├── Expolite-TourSpot-60.qxf │ │ └── Expolite-TourStick-72-RGBWA.qxf │ ├── FOS_Technologies │ │ ├── FOS-Technologies-IQ-28x12-Wash.qxf │ │ ├── FOS-Technologies-IQ-Par.qxf │ │ └── FOS-Technologies-Iridium-75W-Spot.qxf │ ├── FixturesMap.xml │ ├── Flash-Butrym │ │ ├── Flash-Butrym-LED-Moving-Head-Mini-Beam-18x3W-RGB-CREE.qxf │ │ ├── Flash-Butrym-LED-PAR-64-4x30W-COB-RGBW.qxf │ │ ├── Flash-Butrym-LED-PAR-64-7x10W-RGBW.qxf │ │ └── Flash-Butrym-LED-PAR-64-COB-250W-2xWhite-Mk2.qxf │ ├── Fun-Generation │ │ ├── Fun-Generation-LED-Diamond-Dome-MK-2.qxf │ │ ├── Fun-Generation-LED-Diamond-Dome.qxf │ │ ├── Fun-Generation-LED-Pot-12x1W-QCL-RGB-WW.qxf │ │ ├── Fun-Generation-LED-Pot-12x1W-RGBW.qxf │ │ ├── Fun-Generation-MiniSpider-FX.qxf │ │ ├── Fun-Generation-Mr.-Beam-120-W.qxf │ │ ├── Fun-Generation-PicoBeam-60.qxf │ │ ├── Fun-Generation-PicoSpot-20.qxf │ │ ├── Fun-Generation-PicoWash-40-Pixel-Quad-LED.qxf │ │ ├── Fun-Generation-PicoWash-40Z-Pixel-Quad-LED.qxf │ │ ├── Fun-Generation-SePar-Hex-LED-RGBAW-UV-IR.qxf │ │ └── Fun-Generation-SePar-Quad-UV.qxf │ ├── Futurelight │ │ ├── Futurelight-AHS-150.qxf │ │ ├── Futurelight-CF-200.qxf │ │ ├── Futurelight-CY-200.qxf │ │ ├── Futurelight-CY-250.qxf │ │ ├── Futurelight-DJ-Color200.qxf │ │ ├── Futurelight-DJ-HEAD-575-SPOT.qxf │ │ ├── Futurelight-DJ-LEDScan100.qxf │ │ ├── Futurelight-DJ-Scan-600.qxf │ │ ├── Futurelight-DJScan200.qxf │ │ ├── Futurelight-DJScan250.qxf │ │ ├── Futurelight-EVO-5.qxf │ │ ├── Futurelight-EVO-7.qxf │ │ ├── Futurelight-EYE-18.qxf │ │ ├── Futurelight-EYE-36.qxf │ │ ├── Futurelight-EYE-7.i.qxf │ │ ├── Futurelight-Genesis-575.qxf │ │ ├── Futurelight-MCF-200.qxf │ │ ├── Futurelight-MH-440.qxf │ │ ├── Futurelight-MH-660.qxf │ │ ├── Futurelight-MH-840.qxf │ │ ├── Futurelight-PCC-1200.qxf │ │ ├── Futurelight-PCC-250.qxf │ │ ├── Futurelight-PCC-250CMY.qxf │ │ ├── Futurelight-PCC-500.qxf │ │ ├── Futurelight-PFE-1200.qxf │ │ ├── Futurelight-PHS-150.qxf │ │ ├── Futurelight-PHS-200.qxf │ │ ├── Futurelight-PHS-220.qxf │ │ ├── Futurelight-PHS-250.qxf │ │ ├── Futurelight-PHS-260.qxf │ │ ├── Futurelight-PHS-700.qxf │ │ ├── Futurelight-PHW-250.qxf │ │ ├── Futurelight-PHW-260.qxf │ │ ├── Futurelight-PHW-700.qxf │ │ ├── Futurelight-PRO-Slim-PAR-12-HCL.qxf │ │ ├── Futurelight-PRO-Slim-PAR-12-MK2-HCL.qxf │ │ ├── Futurelight-PSC-1200.qxf │ │ ├── Futurelight-PSC-250.qxf │ │ ├── Futurelight-PSC-575.qxf │ │ └── Futurelight-XF-200.qxf │ ├── GLP │ │ ├── GLP-Impression-FR1-TM.qxf │ │ ├── GLP-Impression-X4-Bar-10.qxf │ │ ├── GLP-Impression-X4-S.qxf │ │ ├── GLP-Impression-X4.qxf │ │ ├── GLP-Impression-X5.qxf │ │ ├── GLP-Impression.qxf │ │ ├── GLP-ImpressionWA.qxf │ │ ├── GLP-ImpressionXL.qxf │ │ ├── GLP-JDC1.qxf │ │ ├── GLP-Junior-Scan-1.qxf │ │ ├── GLP-Junior-Scan-2.qxf │ │ ├── GLP-PocketScan.qxf │ │ ├── GLP-Volkslicht.qxf │ │ ├── GLP-YPOC250.qxf │ │ ├── GLP-YPOC250Pro.qxf │ │ ├── GLP-YPOC575-PRO.qxf │ │ ├── GLP-YPOC575.qxf │ │ ├── GLP-YPOC700CMY.qxf │ │ ├── GLP-YPOCBasic250.qxf │ │ ├── GLP-YPOCBasicColor.qxf │ │ ├── GLP-YPOCColor.qxf │ │ └── GLP-YPOCColor575.qxf │ ├── GLX_Lighting │ │ └── GLX-Lighting-Power-LED-Beam-38-Narrow.qxf │ ├── GTD │ │ └── GTD-LM150-Spot.qxf │ ├── Generic │ │ ├── Generic-Generic-RGB.qxf │ │ ├── Generic-Generic-RGBW.qxf │ │ └── Generic-Generic-Smoke.qxf │ ├── Geni │ │ ├── Geni-Mojo-Color-Moc.qxf │ │ ├── Geni-Mojo-Spin-Master-Series.qxf │ │ ├── Geni-OBY-5.qxf │ │ └── Geni-OBY-600.qxf │ ├── Ghost │ │ ├── Ghost-Green-30.qxf │ │ ├── Ghost-Lumy.qxf │ │ └── Ghost-Venum-12W-RGBW.qxf │ ├── Griven │ │ ├── Griven-Gobostorm-Plus-MK2.qxf │ │ └── Griven-Kolorado-2500.qxf │ ├── HQ_Power │ │ ├── HQ-Power-Power-Space-250.qxf │ │ ├── HQ-Power-VDPL110CC-LED-Tri-Spot.qxf │ │ └── HQ-Power-Wash-575.qxf │ ├── High_End_Systems │ │ ├── High-End-Systems-Studio-Beam.qxf │ │ ├── High-End-Systems-Studio-Command-1200.qxf │ │ ├── High-End-Systems-TechnoSpot.qxf │ │ ├── High-End-Systems-Technobeam.qxf │ │ ├── High-End-Systems-Trackspot.qxf │ │ └── High-End-Systems-Xspot-Xtreme.qxf │ ├── IMG_Stageline │ │ ├── IMG-Stageline-BEAM-40-WS-RGBW.qxf │ │ ├── IMG-Stageline-PARL-20-DMX.qxf │ │ ├── IMG-Stageline-PARL-36DMX.qxf │ │ ├── IMG-Stageline-PARL-40Set.qxf │ │ ├── IMG-Stageline-PARL-4Set.qxf │ │ ├── IMG-Stageline-PARL-73-RGB.qxf │ │ └── IMG-Stageline-Wash-40-LED.qxf │ ├── Ibiza │ │ ├── Ibiza-400-RGB.qxf │ │ ├── Ibiza-Mini-Moving-STAR-WASH.qxf │ │ ├── Ibiza-PAR-LED-710.qxf │ │ ├── Ibiza-PAR-LED-712IR.qxf │ │ ├── Ibiza-PAR-LED50-COB.qxf │ │ └── Ibiza-Star-Beam.qxf │ ├── Involight │ │ ├── Involight-AX470.qxf │ │ ├── Involight-COBBAR815.qxf │ │ ├── Involight-FM1200UP.qxf │ │ ├── Involight-FM1500-DMX.qxf │ │ ├── Involight-FM3000-PRO.qxf │ │ ├── Involight-FM900-DMX.qxf │ │ ├── Involight-LED-CC60S.qxf │ │ ├── Involight-LED-MH50S.qxf │ │ ├── Involight-LED-MH60S.qxf │ │ ├── Involight-LED-MH77S.qxf │ │ ├── Involight-LED-PAR-180.qxf │ │ ├── Involight-LEDSTROB400.qxf │ │ ├── Involight-NL410.qxf │ │ ├── Involight-SBL2000.qxf │ │ ├── Involight-SBL3000.qxf │ │ └── Involight-SlimPar56-PRO.qxf │ ├── JB-Lighting │ │ ├── JB-Lighting-A12-Tunable-White.qxf │ │ ├── JB-Lighting-JBLED-A7.qxf │ │ ├── JB-Lighting-Varycolor-P3.qxf │ │ ├── JB-Lighting-Varyscan-2.qxf │ │ ├── JB-Lighting-Varyscan-3-Special.qxf │ │ ├── JB-Lighting-Varyscan-3-SpecialPlus.qxf │ │ ├── JB-Lighting-Varyscan-4-Compact-Plus.qxf │ │ ├── JB-Lighting-Varyscan-4-EV.qxf │ │ ├── JB-Lighting-Varyscan-P2.qxf │ │ ├── JB-Lighting-Varyscan-P3.qxf │ │ ├── JB-Lighting-Varyscan-P4.qxf │ │ ├── JB-Lighting-Varyscan-P6.qxf │ │ └── JB-Lighting-Varyscan-P7.qxf │ ├── JB_Systems │ │ ├── JB-Systems-COB-4BAR.qxf │ │ ├── JB-Systems-COB-Plano.qxf │ │ ├── JB-Systems-Challenger-BSW.qxf │ │ ├── JB-Systems-Dynamo-250.qxf │ │ ├── JB-Systems-Dynaspot.qxf │ │ ├── JB-Systems-Emperor.qxf │ │ ├── JB-Systems-LED-DJ-BAR.qxf │ │ ├── JB-Systems-LED-Devil.qxf │ │ ├── JB-Systems-Lounge-Laser-DMX.qxf │ │ ├── JB-Systems-MINI-PAR-12RGBW.qxf │ │ ├── JB-Systems-Panther.qxf │ │ ├── JB-Systems-Plano-Spot-7TC.qxf │ │ ├── JB-Systems-Plano-Spot-LED.qxf │ │ ├── JB-Systems-Space-4-Laser.qxf │ │ ├── JB-Systems-Space-Color-Laser.qxf │ │ ├── JB-Systems-Space-Laser-3.qxf │ │ ├── JB-Systems-Super-Solar-RGBW.qxf │ │ ├── JB-Systems-Super-Solar-White.qxf │ │ ├── JB-Systems-The-WinnerII.qxf │ │ └── JB-Systems-iRock-5C.qxf │ ├── KOOLlight │ │ └── KOOLlight-3D-RGB-Laser.qxf │ ├── Kam │ │ ├── Kam-KMH-Series.qxf │ │ ├── Kam-LED-PartyBar.qxf │ │ ├── Kam-Laserscan-1000-3D.qxf │ │ ├── Kam-Powercan-TRI54W-Slim.qxf │ │ ├── Kam-Powercan84W.qxf │ │ └── Kam-iLink-All-Colour-Models.qxf │ ├── LDDE │ │ ├── LDDE-NanoPix-Cyc.qxf │ │ ├── LDDE-Spectra-MasterD-1000.qxf │ │ └── LDDE-SpectraConnecT5.qxf │ ├── Lanta │ │ ├── Lanta-Fireball-P64s.qxf │ │ └── Lanta-Orion-Link-V2.qxf │ ├── Laserworld │ │ ├── Laserworld-CS-1000RGB-Mk3.qxf │ │ ├── Laserworld-CS-1000RGB-MkII.qxf │ │ ├── Laserworld-CS-1000RGB.qxf │ │ ├── Laserworld-DS-1000RGB.qxf │ │ ├── Laserworld-EL-200RGY.qxf │ │ ├── Laserworld-EL-230RGB-MK2.qxf │ │ ├── Laserworld-EL-400RGB-MK2.qxf │ │ ├── Laserworld-EL-900RGB.qxf │ │ ├── Laserworld-ES-600B.qxf │ │ ├── Laserworld-PRO-1600RGB.qxf │ │ ├── Laserworld-PRO-730RGB.qxf │ │ ├── Laserworld-PRO-800RGB.qxf │ │ └── Laserworld-RS400G.qxf │ ├── LedProLight │ │ ├── LedProLight-LP04-36x18W-RGBWAP.qxf │ │ └── LedProLight-LP05-36x15W-RGBWAP.qxf │ ├── Ledj │ │ ├── Ledj-58-7Q5-RGBW.qxf │ │ ├── Ledj-59-7Q5-RGBA.qxf │ │ ├── Ledj-59-7Q5-RGBW.qxf │ │ ├── Ledj-Alu-Quad-Par-64.qxf │ │ ├── Ledj-Colour-Storm-Quad.qxf │ │ ├── Ledj-Performer-18-Quad-Zoom.qxf │ │ ├── Ledj-Performer-18-Quad.qxf │ │ ├── Ledj-Performer-18-RGBWA.qxf │ │ ├── Ledj-Slimline-12Q5-Batten.qxf │ │ ├── Ledj-Slimline-36-RGBA.qxf │ │ ├── Ledj-Slimline-36-RGBW.qxf │ │ ├── Ledj-Stage-Color-24.qxf │ │ ├── Ledj-Stage-Color-Quad.qxf │ │ └── Ledj-Tri-LED-back-drop-controller.qxf │ ├── Light_Emotion │ │ └── Light-Emotion-LED-Parbar.qxf │ ├── Lightronics │ │ └── Lightronics-FXLD618C2I.qxf │ ├── Lite-Works │ │ └── Lite-Works-ColorChanger.qxf │ ├── Litecraft │ │ ├── Litecraft-LED-PAR-64-AT3.qxf │ │ ├── Litecraft-Mini-PAR-AT10.qxf │ │ ├── Litecraft-OutLED-AT10.qxf │ │ ├── Litecraft-OutLED-AT60.zoom.qxf │ │ ├── Litecraft-PowerBar-4.qxf │ │ ├── Litecraft-PowerBar-AT10.sx.qxf │ │ ├── Litecraft-WashX.21.qxf │ │ └── Litecraft-WashX.36.qxf │ ├── Lixada │ │ ├── Lixada-12-RGBW-LED-Par-Light.qxf │ │ ├── Lixada-5LED-50W-Beam-Wash-Double-Sides-RGBW.qxf │ │ ├── Lixada-Mini-Gobo-Moving-Head.qxf │ │ ├── Lixada-Mini-Wash-RGBW.qxf │ │ ├── Lixada-RGBW-LED-Mini-Moving-Head.qxf │ │ └── Lixada-Triangle-Spider-Beam.qxf │ ├── Look_Solutions │ │ ├── Look-Solutions-Unique-2.1.qxf │ │ └── Look-Solutions-Viper-NT.qxf │ ├── Lumeri │ │ ├── Lumeri-Eco-COB-15.qxf │ │ └── Lumeri-PRO-COB-200.qxf │ ├── Luxibel │ │ └── Luxibel-LX161.qxf │ ├── MARQ │ │ ├── MARQ-Colormax-Bat.qxf │ │ ├── MARQ-Colormax-Par64.qxf │ │ ├── MARQ-Gamut-PAR-H7.qxf │ │ ├── MARQ-Gesture-Beam-Wash-102.qxf │ │ ├── MARQ-Gesture-Spot-100-.qxf │ │ └── MARQ-Gesture-Spot-300.qxf │ ├── MEGA-Lite │ │ └── MegaLite-M-Sphere.qxf │ ├── MFL │ │ └── MFL-Spot-G60.qxf │ ├── Mac_Mah │ │ ├── Mac-Mah-FLAT-PAR-7x12W-6in1.qxf │ │ ├── Mac-Mah-Mac-FOG-DMX.qxf │ │ ├── Mac-Mah-Mac-Follow-1200.qxf │ │ ├── Mac-Mah-Moving-FX-Bar.qxf │ │ └── Mac-Mah-WiderPanel.qxf │ ├── MagicFX │ │ ├── MagicFX-Eco2Jet.qxf │ │ ├── MagicFX-Psyco2Jet.qxf │ │ ├── MagicFX-SmokeJet.qxf │ │ ├── MagicFX-StadiumBlaster.qxf │ │ ├── MagicFX-StadiumBlower.qxf │ │ ├── MagicFX-StadiumShot-III.qxf │ │ ├── MagicFX-Stage-Flame.qxf │ │ └── MagicFX-SwirlFan-II.qxf │ ├── Martin │ │ ├── Martin-24-7-Hazer.qxf │ │ ├── Martin-Acrobat.qxf │ │ ├── Martin-Atomic-3000-LED.qxf │ │ ├── Martin-Atomic-3000.qxf │ │ ├── Martin-CX-10-Extreme.qxf │ │ ├── Martin-Destroyer.qxf │ │ ├── Martin-EFX-500.qxf │ │ ├── Martin-EFX-600.qxf │ │ ├── Martin-EFX-700.qxf │ │ ├── Martin-EFX-800.qxf │ │ ├── Martin-ELP-CL-Profile.qxf │ │ ├── Martin-ERA-150-Wash.qxf │ │ ├── Martin-ERA-300-Profile.qxf │ │ ├── Martin-ERA-400-Performance.qxf │ │ ├── Martin-Ego-X6.qxf │ │ ├── Martin-JEM-K1-Hazer.qxf │ │ ├── Martin-JEM-ZR24-7.qxf │ │ ├── Martin-JEM-ZR44.qxf │ │ ├── Martin-Jem-Compact-Hazer-Pro.qxf │ │ ├── Martin-MAC-101.qxf │ │ ├── Martin-MAC-2000-Performance-II.qxf │ │ ├── Martin-MAC-2000-Profile-II.qxf │ │ ├── Martin-MAC-2000-Wash.qxf │ │ ├── Martin-MAC-250-Wash.qxf │ │ ├── Martin-MAC-301-Wash.qxf │ │ ├── Martin-MAC-401-Dual-CT.qxf │ │ ├── Martin-MAC-401-Dual-RGB.qxf │ │ ├── Martin-MAC-700-Profile.qxf │ │ ├── Martin-MAC-700-Wash.qxf │ │ ├── Martin-MAC-Aura.qxf │ │ ├── Martin-MAC-Axiom-Hybrid.qxf │ │ ├── Martin-MAC-Encore-Performance.qxf │ │ ├── Martin-MAC-Quantum-Profile.qxf │ │ ├── Martin-MAC-Viper-Performance.qxf │ │ ├── Martin-MAC-Viper-Wash-DX.qxf │ │ ├── Martin-MAC250-Entour.qxf │ │ ├── Martin-MAC250-Krypton.qxf │ │ ├── Martin-MAC250plus.qxf │ │ ├── Martin-MAC300.qxf │ │ ├── Martin-MAC500.qxf │ │ ├── Martin-MAC600-NT.qxf │ │ ├── Martin-MAC600E.qxf │ │ ├── Martin-MH2-Wash.qxf │ │ ├── Martin-MX-1.qxf │ │ ├── Martin-MX-10.qxf │ │ ├── Martin-MX-4.qxf │ │ ├── Martin-Mac-350-Entour.qxf │ │ ├── Martin-Magnum-Hazer.qxf │ │ ├── Martin-MiniMAC-Maestro.qxf │ │ ├── Martin-MiniMAC-Profile.qxf │ │ ├── Martin-MiniMAC-Wash.qxf │ │ ├── Martin-Punisher.qxf │ │ ├── Martin-RUSH-Par-1-RGBW.qxf │ │ ├── Martin-RUSH-Par-2-RGBW-Zoom.qxf │ │ ├── Martin-RoboColor-III.qxf │ │ ├── Martin-Robocolor-Pro-400.qxf │ │ ├── Martin-Roboscan-218.qxf │ │ ├── Martin-Roboscan-518.qxf │ │ ├── Martin-Roboscan-812.qxf │ │ ├── Martin-Roboscan-Pro-918.qxf │ │ ├── Martin-Rush-MH1-Profile.qxf │ │ ├── Martin-Rush-MH3.qxf │ │ ├── Martin-Rush-MH5-Profile.qxf │ │ ├── Martin-Rush-MH6-Wash.qxf │ │ ├── Martin-SCX-500.qxf │ │ ├── Martin-SCX-600.qxf │ │ ├── Martin-SCX-700.qxf │ │ ├── Martin-SCX-800.qxf │ │ ├── Martin-Thrill-Mini-Profile.qxf │ │ ├── Martin-Viper-AirFX.qxf │ │ └── Martin-smartMAC.qxf │ ├── Microh │ │ ├── Microh-Firefly-RGY-II.qxf │ │ ├── Microh-LED-Tri-Bar.qxf │ │ └── Microh-Plasmawave-1-RGB.qxf │ ├── Monacor │ │ ├── Monacor-CPL-3DMX.qxf │ │ └── Monacor-LSX-142SRGY.qxf │ ├── Movitec │ │ ├── Movitec-SL-250.qxf │ │ ├── Movitec-SL-575.qxf │ │ ├── Movitec-WL-250.qxf │ │ └── Movitec-WL-575.qxf │ ├── N-Gear │ │ └── N-Gear-SP12.qxf │ ├── NJD │ │ └── NJD-Spectre.qxf │ ├── Nicols │ │ ├── Nicols-Birdy-Wash-122.qxf │ │ ├── Nicols-Galaxy-Laser.qxf │ │ ├── Nicols-IP-Wash-120.qxf │ │ ├── Nicols-Movelight.qxf │ │ ├── Nicols-Strob-LED-W.qxf │ │ └── Nicols-WP600Z.qxf │ ├── OXO │ │ ├── OXO-ColorBeam-7-FCW-IR.qxf │ │ ├── OXO-ColorZoom-180.qxf │ │ └── OXO-LED-Funstrip-DMX.qxf │ ├── Optima_Lighting │ │ └── Optima-Lighting-PAR64-LED.qxf │ ├── Orion_Effects_Lighting │ │ └── Orion-Effects-Lighting-ORCAN2.qxf │ ├── PR_Lighting │ │ ├── PR-Lighting-JNR-Flat-PAR-8160C.qxf │ │ ├── PR-Lighting-PR-5000-Spot.qxf │ │ ├── PR-Lighting-Pilot-150-PR-2150.qxf │ │ ├── PR-Lighting-Pilot-575.qxf │ │ ├── PR-Lighting-XL-250-PR-2225M.qxf │ │ ├── PR-Lighting-XL-700-Spot-PR-2700.qxf │ │ ├── PR-Lighting-XL-700-Wash-PR-2705.qxf │ │ ├── PR-Lighting-XLED-1037.qxf │ │ └── PR-Lighting-XR-230-Spot.qxf │ ├── PSL │ │ └── PSL-Strip-Led-RGB-code-K2014.qxf │ ├── Philips_Selecon │ │ ├── Philips-ColorBlaze-72.qxf │ │ └── Philips-Selecon-PLProfile1-MkII.qxf │ ├── PixelRANGE │ │ └── PixelRANGE-PixelPar-44.qxf │ ├── Pro-Lights │ │ ├── Pro-Lights-ARCLED7314HD.qxf │ │ ├── Pro-Lights-Accent1Q.qxf │ │ ├── Pro-Lights-BB5Pix.qxf │ │ ├── Pro-Lights-CromoSpot150.qxf │ │ ├── Pro-Lights-CromoSpot300.qxf │ │ ├── Pro-Lights-CromoWash100.qxf │ │ ├── Pro-Lights-CromoWash300.qxf │ │ ├── Pro-Lights-EVO90F.qxf │ │ ├── Pro-Lights-Explo-3000D.qxf │ │ ├── Pro-Lights-Fury-FY250S.qxf │ │ ├── Pro-Lights-Fury-FY250W.qxf │ │ ├── Pro-Lights-Genesis.qxf │ │ ├── Pro-Lights-GoboMix.qxf │ │ ├── Pro-Lights-LedPar-64363-RGB.qxf │ │ ├── Pro-Lights-LumiPAR12Q.qxf │ │ ├── Pro-Lights-LumiPAR18QPRO.qxf │ │ ├── Pro-Lights-LumiPAR18QTour.qxf │ │ ├── Pro-Lights-LumiPIX-12Q.qxf │ │ ├── Pro-Lights-LumiPar-18-Tri.qxf │ │ ├── Pro-Lights-LumiPar-7QPro.qxf │ │ ├── Pro-Lights-Miniruby.qxf │ │ ├── Pro-Lights-Moonstone.qxf │ │ ├── Pro-Lights-Omni-Tri-9.qxf │ │ ├── Pro-Lights-Onyx.qxf │ │ ├── Pro-Lights-PIXIEWASH.qxf │ │ ├── Pro-Lights-Pixie-Spot.qxf │ │ ├── Pro-Lights-SmartBat.qxf │ │ ├── Pro-Lights-SmartBatHEX.qxf │ │ ├── Pro-Lights-Strobo-1500DMX.qxf │ │ ├── Pro-Lights-StudioCOBFC.qxf │ │ ├── Pro-Lights-StudioCOBPLUSFC.qxf │ │ ├── Pro-Lights-SunPix-12TRI.qxf │ │ ├── Pro-Lights-UVStrip18.qxf │ │ ├── Pro-Lights-V200.qxf │ │ ├── Pro-Lights-XP250.qxf │ │ ├── Pro-Lights-XP575-Spot.qxf │ │ └── Pro-Lights-XP575-Wash.qxf │ ├── Proel │ │ ├── Proel-Analogue-Dimmer-6Ch.qxf │ │ ├── Proel-Dreamlight-250-Eclipse-Spot.qxf │ │ ├── Proel-Moving-Head-3Wx108-LED-RGBW.qxf │ │ ├── Proel-PLLED64RGB.qxf │ │ ├── Proel-PLLEDMLBG.qxf │ │ ├── Proel-PLLEDSP.qxf │ │ └── Proel-Tarkus-575-Spot.qxf │ ├── Pulse │ │ ├── Pulse-ECO-LED-PAR56.qxf │ │ ├── Pulse-Impstar-40.qxf │ │ ├── Pulse-LEDBAR-320.qxf │ │ └── Pulse-SlimLite-56.qxf │ ├── QTX │ │ ├── QTX-Flare-1000.qxf │ │ ├── QTX-HZ-3.qxf │ │ ├── QTX-MHS-60.qxf │ │ ├── QTX-PAR-180.qxf │ │ └── QTX-SL-Series.qxf │ ├── RVE │ │ ├── RVE-Sereniled-EVO2.qxf │ │ ├── RVE-Sereniled-Plus.qxf │ │ └── RVE-Twinled-EVO2.qxf │ ├── ReelEfx │ │ └── ReelEfx-DF-50.qxf │ ├── Robe │ │ ├── Robe-ClubScan-150CT.qxf │ │ ├── Robe-ClubScan-250CT.qxf │ │ ├── Robe-ClubSpot-150CT.qxf │ │ ├── Robe-ClubSpot-160CT.qxf │ │ ├── Robe-ClubSpot-250CT.qxf │ │ ├── Robe-ClubSpot-300-CT.qxf │ │ ├── Robe-ClubSpot-500-CT.qxf │ │ ├── Robe-ClubWash-250CT.qxf │ │ ├── Robe-ClubWash-300CT.qxf │ │ ├── Robe-ClubWash-500-CT.qxf │ │ ├── Robe-ClubWash-600-CT.qxf │ │ ├── Robe-ColorMix-240-AT.qxf │ │ ├── Robe-ColorSpot-170-AT.qxf │ │ ├── Robe-ColorSpot-250-AT.qxf │ │ ├── Robe-ColorSpot-250-XT.qxf │ │ ├── Robe-ColorSpot-575-AT.qxf │ │ ├── Robe-ColorSpot-700E-AT.qxf │ │ ├── Robe-ColorWash-1200E-AT.qxf │ │ ├── Robe-Colorwash-250-AT.qxf │ │ ├── Robe-DJ-Scan-150-XT.qxf │ │ ├── Robe-Fog-1500-FT.qxf │ │ ├── Robe-LED-Blinder-196LT.qxf │ │ ├── Robe-LEDBeam-350-RGBA.qxf │ │ ├── Robe-LEDBeam-350.qxf │ │ ├── Robe-ParFect-150.qxf │ │ ├── Robe-Pointe.qxf │ │ ├── Robe-Robin-100-LEDBeam.qxf │ │ ├── Robe-Robin-150-LEDBeam.qxf │ │ ├── Robe-Robin-300E-Beam.qxf │ │ ├── Robe-Robin-600-LED-Wash.qxf │ │ ├── Robe-Robin-600E-Beam.qxf │ │ ├── Robe-Robin-600E-Spot.qxf │ │ ├── Robe-Robin-600E-Wash.qxf │ │ ├── Robe-Robin-800-LEDWash.qxf │ │ ├── Robe-Robin-DLX-Spot.qxf │ │ ├── Robe-Robin-MiniMe.qxf │ │ ├── Robe-Robin-Spikie.qxf │ │ ├── Robe-Robin-Tetra-1.qxf │ │ ├── Robe-Robin-Tetra-2.qxf │ │ ├── Robe-Robin-Viva-CMY.qxf │ │ ├── Robe-Scan-575-XT.qxf │ │ ├── Robe-Spiider.qxf │ │ ├── Robe-Spot-160-XT.qxf │ │ ├── Robe-Spot-575-XT.qxf │ │ └── Robe-Wash-575-XT.qxf │ ├── Robert_Juliat │ │ └── Robert-Juliat-DArtagnan-934SNX.qxf │ ├── Rockville │ │ ├── Rockville-Battery-Strip-24.qxf │ │ ├── Rockville-Best-Strip-60-RGBWAUV.qxf │ │ ├── Rockville-Motionstrip-RGBW.qxf │ │ └── Rockville-Rockwedge-LED.qxf │ ├── Rosco │ │ └── Rosco-I-Cue.qxf │ ├── SGM │ │ ├── SGM-Colorlab-250.qxf │ │ ├── SGM-G-Profile.qxf │ │ ├── SGM-Giotto-Spot-250.qxf │ │ ├── SGM-Giotto-Spot-400-CMY.qxf │ │ ├── SGM-Giotto-Spot-400.qxf │ │ ├── SGM-Giotto-Wash-400.qxf │ │ ├── SGM-Idea-Beam-300.qxf │ │ ├── SGM-Idea-Led-Bar-100.qxf │ │ ├── SGM-Idea-Spot-250.qxf │ │ ├── SGM-Idea-Spot-575.qxf │ │ ├── SGM-Idea-Spot-700.qxf │ │ ├── SGM-Newton-1200.qxf │ │ ├── SGM-P-5.qxf │ │ ├── SGM-Victory-250.qxf │ │ ├── SGM-Victory-II-250.qxf │ │ └── SGM-Victory-II-Pro150.qxf │ ├── Sagitter │ │ ├── Sagitter-ARS1500FC.qxf │ │ ├── Sagitter-Lite-Beam-5R.qxf │ │ ├── Sagitter-Miniscan-2001.qxf │ │ ├── Sagitter-Prince.qxf │ │ ├── Sagitter-Slimpar-12DL.qxf │ │ ├── Sagitter-Slimpar-18-RGB.qxf │ │ ├── Sagitter-Slimpar-7DL.qxf │ │ └── Sagitter-Smart-DL-Wash.qxf │ ├── Scanic │ │ └── Scanic-Astute-LED-108.qxf │ ├── Shehds │ │ ├── Shehds-2-Eyes-200W-LED-COB-Cool-Warm-White.qxf │ │ ├── Shehds-230W-LED-Beam-Moving-Head.qxf │ │ ├── Shehds-3000mW-RGB-Laser.qxf │ │ ├── Shehds-Big-Bee-Eyes-LED-Wash-19x40W-RGBW.qxf │ │ ├── Shehds-Constellaser-12W-Waterproof-Scan-Laser.qxf │ │ ├── Shehds-GalaxyJet-LED-Beam-300W-Beam&Spot&Wash-3in1.qxf │ │ ├── Shehds-GalaxyJet-Waterproof-IP65-380W-19R-Beam-Moving-Head.qxf │ │ ├── Shehds-JMS-WEBB-LED-Wash-BigBeeEye-19X40W.qxf │ │ ├── Shehds-LED-200W-RGB-FLASH.qxf │ │ ├── Shehds-LED-Beam+Wash-19x15W-RGBW-Zoom.qxf │ │ ├── Shehds-LED-Beam-12x12W-RGBW.qxf │ │ ├── Shehds-LED-Beam-8x12W-RGBW.qxf │ │ ├── Shehds-LED-Flat-Par-18x18W-RGBWA+UV.qxf │ │ ├── Shehds-LED-Flat-Par-7x18W-RGBWA+UV.qxf │ │ ├── Shehds-LED-Wall-Wash-18x18W-RGBWA+UV.qxf │ │ └── Shehds-Wash-Zoom-36x18W.qxf │ ├── Showlite │ │ ├── Showlite-Flood-Light-Panel-144x10mm-LED-RGBW.qxf │ │ ├── Showlite-LB-4390.qxf │ │ └── Showlite-LED-Stage-Bar.qxf │ ├── Showtec │ │ ├── Showtec-ACT-PC-60-RGBW.qxf │ │ ├── Showtec-Acrobat.qxf │ │ ├── Showtec-Atmos-F-350.qxf │ │ ├── Showtec-Blade-Runner.qxf │ │ ├── Showtec-Club-Par-12-4-RGBW.qxf │ │ ├── Showtec-Club-Par-12x6-RGBWAUV.qxf │ │ ├── Showtec-Compact-Par-18-MKII.qxf │ │ ├── Showtec-Compact-Par-18-Tri-MKII.qxf │ │ ├── Showtec-Compact-Par-7-Q4.qxf │ │ ├── Showtec-Compact-Par-7-Tri.qxf │ │ ├── Showtec-Compact-Power-Lightset-COB.qxf │ │ ├── Showtec-Cyclone-4.qxf │ │ ├── Showtec-Dominator.qxf │ │ ├── Showtec-Dragon-F-350.qxf │ │ ├── Showtec-Dynamic-LED-v3.qxf │ │ ├── Showtec-Event-Spot-1800-Q4.qxf │ │ ├── Showtec-Explorer-250-Pro-MKII.qxf │ │ ├── Showtec-Explorer-575.qxf │ │ ├── Showtec-Expression-5000.qxf │ │ ├── Showtec-Giant-XL-LED.qxf │ │ ├── Showtec-Indigo-150-LED.qxf │ │ ├── Showtec-Indigo-4500.qxf │ │ ├── Showtec-Indigo-4600.qxf │ │ ├── Showtec-Indigo-6500.qxf │ │ ├── Showtec-Infinity-XPLO-15-LED-Strobe.qxf │ │ ├── Showtec-Infinity-iB-5R.qxf │ │ ├── Showtec-Infinity-iW-1915.qxf │ │ ├── Showtec-Infinity-iW-715.qxf │ │ ├── Showtec-Infinity-iW-720.qxf │ │ ├── Showtec-Kanjo-Spot-60.qxf │ │ ├── Showtec-Kanjo-Wash-RGB.qxf │ │ ├── Showtec-LED-Blinder-2-COB.qxf │ │ ├── Showtec-LED-Light-Bar-8.qxf │ │ ├── Showtec-LED-Light-Bar-RGB-V3.qxf │ │ ├── Showtec-LED-Par-56.qxf │ │ ├── Showtec-LED-Par-64-36x3W.qxf │ │ ├── Showtec-LED-Par-64-Short-V2.qxf │ │ ├── Showtec-LED-Pixel-Track-Pro.qxf │ │ ├── Showtec-LED-Powerline-16-Bar.qxf │ │ ├── Showtec-Led-Air-Cone-Pro.qxf │ │ ├── Showtec-Lightbrick.qxf │ │ ├── Showtec-Luna-Par-120-Q4.qxf │ │ ├── Showtec-Mini-Max-LED-RGB.qxf │ │ ├── Showtec-MiniMax-250.qxf │ │ ├── Showtec-MultiDim-MK-III-DMX.qxf │ │ ├── Showtec-Par-56-90W-COB-RGB.qxf │ │ ├── Showtec-Par-64-100W-COB-UV.qxf │ │ ├── Showtec-Performer-2000-RGBAL.qxf │ │ ├── Showtec-Phantom-130-LED-Spot.qxf │ │ ├── Showtec-Phantom-180-Wash.qxf │ │ ├── Showtec-Phantom-20-LED-Beam.qxf │ │ ├── Showtec-Phantom-250-Wash.qxf │ │ ├── Showtec-Phantom-250.qxf │ │ ├── Showtec-Phantom-50.qxf │ │ ├── Showtec-Phantom-65.qxf │ │ ├── Showtec-Phantom-75-LED-Spot-V2.qxf │ │ ├── Showtec-Phantom-95-LED-Spot.qxf │ │ ├── Showtec-Pixel-Bar-12-RGBW.qxf │ │ ├── Showtec-Pixel-Bar-12.qxf │ │ ├── Showtec-Power-Spot-9-Q6-Tour-V1.qxf │ │ ├── Showtec-Power-Spot-Q5.qxf │ │ ├── Showtec-QFX-Multi.qxf │ │ ├── Showtec-Quatro.qxf │ │ ├── Showtec-Shark-Beam-FX-One.qxf │ │ ├── Showtec-Shark-Wash-One.qxf │ │ ├── Showtec-Slidebar-4.qxf │ │ ├── Showtec-Spectral-850-RGBA-Tour.qxf │ │ ├── Showtec-Spectral-CYC650.qxf │ │ ├── Showtec-Spectral-M1000-Tour-Q4-MKII.qxf │ │ ├── Showtec-Spectral-M800-IPX.qxf │ │ ├── Showtec-Spectral-ZP-5.qxf │ │ ├── Showtec-Stage-Blinder-Series.qxf │ │ ├── Showtec-Star-Dream-144-LED-White.qxf │ │ ├── Showtec-Starforce-LED.qxf │ │ ├── Showtec-Sunraise-LED.qxf │ │ ├── Showtec-Sunstrip-Active.qxf │ │ ├── Showtec-Vintage-Blaze.qxf │ │ ├── Showtec-XB-Wave.qxf │ │ ├── Showtec-XS-1W-Mini-Moving-Beam.qxf │ │ └── Showtec-ZIPP-LED-DMX.qxf │ ├── Smoke_Factory │ │ └── Smoke-Factory-Tour-Hazer-II.qxf │ ├── Solena │ │ ├── Solena-Max-Bar-28-RGB.qxf │ │ └── Solena-Mini-Par-12.qxf │ ├── StageTech │ │ └── StageTech-LeaderScan-Roto.qxf │ ├── Stage_Right │ │ ├── Stage-Right-10Wx9-LED-Flat-PAR.qxf │ │ ├── Stage-Right-200W-COB-LED-Ellipsoidal.qxf │ │ ├── Stage-Right-3-Color-LED-Light-Bar.qxf │ │ ├── Stage-Right-30W-LED-Spot.qxf │ │ ├── Stage-Right-7x20W-COB-LED-Theater-PAR.qxf │ │ ├── Stage-Right-Stage-Wash-18Wx18-LED-PAR.qxf │ │ └── Stage-Right-StageLight-12Wx7-LED-PAR.qxf │ ├── Stagg │ │ └── Stagg-Headbanger-10.qxf │ ├── Stairville │ │ ├── Stairville-AF-150.qxf │ │ ├── Stairville-AF-180-LED-Fogger-Co2-FX.qxf │ │ ├── Stairville-AF-40-DMX.qxf │ │ ├── Stairville-AFH-600.qxf │ │ ├── Stairville-All-FX-Bar.qxf │ │ ├── Stairville-BEL4-Battery-Event-Light-4x15W.qxf │ │ ├── Stairville-BEL6-IP-Bar-HEX.qxf │ │ ├── Stairville-BS-280-R10-BeamSpot.qxf │ │ ├── Stairville-BSW-350-LED.qxf │ │ ├── Stairville-Beam-Moving-Head-B5R.qxf │ │ ├── Stairville-Blade-Sting-8-RGBW-Beam-Mover.qxf │ │ ├── Stairville-CLB2.4-CompactLED.qxf │ │ ├── Stairville-CLB4-RGB-Compact-LED-Bar-4.qxf │ │ ├── Stairville-CLB5-6P-RGB-WW-Compact-LED-Bar.qxf │ │ ├── Stairville-CLB5-Compact-LED-Bar-RGBW-RGBWW.qxf │ │ ├── Stairville-Compact-LED-Bar-CLB8.qxf │ │ ├── Stairville-Crown-FX-PAR77.qxf │ │ ├── Stairville-DCL-Flat-Par-18x4W-CW-WW.qxf │ │ ├── Stairville-DDS-405.qxf │ │ ├── Stairville-DJ-Lase-150-RGY-MkII.qxf │ │ ├── Stairville-DJ-Lase-25+25-G-MK-II.qxf │ │ ├── Stairville-DJ-Lase-40-G-MK-III.qxf │ │ ├── Stairville-DJ-Lase-BlueStar-MK-II-LED.qxf │ │ ├── Stairville-DJ-Lase-GR-140-RGY-MKII.qxf │ │ ├── Stairville-DJ-Lase-Polar-200.qxf │ │ ├── Stairville-FS-x75-Follow-Spot.qxf │ │ ├── Stairville-HF-900-Haze-Fogger.qxf │ │ ├── Stairville-HL-x9-18-DCL-CW-WWFlood-9-18x6W.qxf │ │ ├── Stairville-HL-x9-Quad-Color-Flood-9x8W.qxf │ │ ├── Stairville-Hz-200-DMX.qxf │ │ ├── Stairville-Infinite-Pixel-250.qxf │ │ ├── Stairville-JunoScan-MKII.qxf │ │ ├── Stairville-LED-BAR-240-8-RGB.qxf │ │ ├── Stairville-LED-BAR-RGB-252.qxf │ │ ├── Stairville-LED-Blinder-2-COB-2x65W.qxf │ │ ├── Stairville-LED-Flood-Panel-150.qxf │ │ ├── Stairville-LED-Flood-Panel-7x3W.qxf │ │ ├── Stairville-LED-Matrix-Blinder-5x5.qxf │ │ ├── Stairville-LED-PAR-36-COB-RGBW-12W.qxf │ │ ├── Stairville-LED-PAR-64-Alu.qxf │ │ ├── Stairville-LED-PAR-64-COB-RGBW-60W.qxf │ │ ├── Stairville-LED-PAR56-10MM-UV.qxf │ │ ├── Stairville-LED-PAR56-MKII-RGBA.qxf │ │ ├── Stairville-LED-PAR56-MKII-RGBW.qxf │ │ ├── Stairville-LED-PAR56.qxf │ │ ├── Stairville-LED-PAR64-MKII-RGBW.qxf │ │ ├── Stairville-LED-PAR64.qxf │ │ ├── Stairville-LED-Show-Bar-Tri-18x3W-RGB.qxf │ │ ├── Stairville-LED-Vintage-Bowl-50-RGBA.qxf │ │ ├── Stairville-M-Fog-1000-DMX.qxf │ │ ├── Stairville-MH-100-Beam-36x3-LED.qxf │ │ ├── Stairville-MH-110-Wash.qxf │ │ ├── Stairville-MH-250-S.qxf │ │ ├── Stairville-MH-360.qxf │ │ ├── Stairville-MH-X20.qxf │ │ ├── Stairville-MH-X25.qxf │ │ ├── Stairville-MH-X50.qxf │ │ ├── Stairville-MH-X60th-LED-Spot.qxf │ │ ├── Stairville-MH-x200-Pro-Spot.qxf │ │ ├── Stairville-MH-x30-LED-Beam.qxf │ │ ├── Stairville-MH-x30-LED-Spot.qxf │ │ ├── Stairville-MH-z1915.qxf │ │ ├── Stairville-MH-z720.qxf │ │ ├── Stairville-Matrixx-FL-110-DMX.qxf │ │ ├── Stairville-Mini-Stage-Par-RGBW.qxf │ │ ├── Stairville-Mobile-Color.qxf │ │ ├── Stairville-Octagon-Theater.qxf │ │ ├── Stairville-Outdoor-Stage-PAR-12x3W-Tri.qxf │ │ ├── Stairville-PAR64-CX-3-RGBW.qxf │ │ ├── Stairville-PAR64-CX-6-RGBWAUV.qxf │ │ ├── Stairville-PS1500DMX.qxf │ │ ├── Stairville-Pixel-Panel-144-RGB.qxf │ │ ├── Stairville-Quad-Par-Profile-RGBW-5x8W.qxf │ │ ├── Stairville-Remus-HexSpot-515.qxf │ │ ├── Stairville-Remus-QuadZoom-610.qxf │ │ ├── Stairville-RevueLED-120-COB-True-White.qxf │ │ ├── Stairville-SC-100.qxf │ │ ├── Stairville-SC-X50-MKII.qxf │ │ ├── Stairville-SC250H.qxf │ │ ├── Stairville-SF-1500.qxf │ │ ├── Stairville-SonicPulse-LED-Bar-05.qxf │ │ ├── Stairville-SonicPulse-LED-Bar-10.qxf │ │ ├── Stairville-SonicPulse-MH-Wash-1208.qxf │ │ ├── Stairville-Stage-PAR-CX-2-RGBAW.qxf │ │ ├── Stairville-Stage-Quad-LED-Bundle-RGB-WW.qxf │ │ ├── Stairville-TRI-LED-Bundle-Complete.qxf │ │ ├── Stairville-Tri-Flat-PAR-Profile-5x3W-RGB.qxf │ │ ├── Stairville-WGF-2000.qxf │ │ ├── Stairville-Wild-Wash-132-LED-CW.qxf │ │ ├── Stairville-Wild-Wash-132-RGB-LED.qxf │ │ ├── Stairville-Wild-Wash-9x3W-LED-UV.qxf │ │ ├── Stairville-WildWash-Pro-648-LED-RGB.qxf │ │ ├── Stairville-Z100M.qxf │ │ ├── Stairville-ZF-1500.qxf │ │ ├── Stairville-maTrixx-SC-100.qxf │ │ ├── Stairville-novaWash-Quad-LED.qxf │ │ ├── Stairville-xBrick-Full-Colour-16X3W.qxf │ │ ├── Stairville-xBrick-Full-Colour.qxf │ │ └── Stairville-xBrick-Quad-16x8W-RGBW.qxf │ ├── Star-Lights │ │ └── Star-Lights-mini-Wash-Moving-Head.qxf │ ├── Starway │ │ ├── Starway-Axis-250.qxf │ │ ├── Starway-EventKolor.qxf │ │ ├── Starway-FullKolor.qxf │ │ ├── Starway-MaxKolor-18.qxf │ │ ├── Starway-MaxSpot500.qxf │ │ ├── Starway-MiniKolor.qxf │ │ ├── Starway-Mode-B.qxf │ │ ├── Starway-NanoKolor.qxf │ │ ├── Starway-PCKolor-HD.qxf │ │ ├── Starway-ParKolor-120HD.qxf │ │ ├── Starway-Servo-Beam-10R.qxf │ │ ├── Starway-Servo-Beam-5R.qxf │ │ ├── Starway-Servo-Color-4k.qxf │ │ ├── Starway-Servocolor-600.qxf │ │ ├── Starway-Servocolor-800.qxf │ │ ├── Starway-TourKolor.qxf │ │ └── Starway-UrbanKolor.qxf │ ├── Stellar_Labs │ │ ├── Stellar-Labs-ECO-LED-PAR56.qxf │ │ └── Stellar-Labs-LED-PAR38-RGB.qxf │ ├── Studio_Due │ │ ├── Studio-Due-City-Color-1800.qxf │ │ └── Studio-Due-Shark-150C.qxf │ ├── TSSS │ │ └── TSSS-XL35.qxf │ ├── Talent │ │ ├── Talent-BL252A.qxf │ │ ├── Talent-BL63-10-LED-Bar.qxf │ │ ├── Talent-SSL1.qxf │ │ └── Talent-SSL2.qxf │ ├── Tecshow │ │ └── Tecshow-Nebula-6.qxf │ ├── Tomshine │ │ └── Tomshine-Mini-Gobo-Moving-Head.qxf │ ├── Triton_Blue │ │ └── Triton-Blue-Wally-MH-20.qxf │ ├── UKing │ │ ├── UKing-36W-UV-PAR.qxf │ │ ├── UKing-4-Head-Beam-RGBW.qxf │ │ ├── UKing-7x10W-Mini-Moving-Head.qxf │ │ ├── UKing-LED-Spot-Moving-Head-100W.qxf │ │ ├── UKing-Mini-Double-Sided-Moving-Head.qxf │ │ ├── UKing-Mini-RGBW-Moving-Head.qxf │ │ ├── UKing-Par-36.qxf │ │ ├── UKing-Wall-Washer-24x3W.qxf │ │ ├── UKing-ZQ01137-18x-RGB+UV-PAR.qxf │ │ ├── UKing-ZQ01495-200W-Three-in-one-Four-eye-COB-Lamp.qxf │ │ ├── UKing-ZQ01513-100WCOB-Cast-Aluminum-Park-Light.qxf │ │ ├── UKing-ZQ02021-Beam-Pro.qxf │ │ ├── UKing-ZQ02319-Mini-40W-Beam-Moving-Head.qxf │ │ ├── UKing-ZQ06122-9-Eye-COB-Matrix.qxf │ │ ├── UKing-ZQB117-Par-Can-4in1-RGBW.qxf │ │ ├── UKing-ZQB20-Mini-Spider.qxf │ │ ├── UKing-ZQB243-50W-Moving-Head-With-LED-Belt.qxf │ │ ├── UKing-ZQB370-Laser.qxf │ │ ├── UKing-ZQB55-Par-Can-12-LED-RGBW-12W.qxf │ │ └── UKing-ZQB93-Pinspot-RGBW.qxf │ ├── Vari-Lite │ │ ├── Vari-Lite-VL2202-Spot.qxf │ │ ├── Vari-Lite-VL2402-Wash.qxf │ │ ├── Vari-Lite-VL2500-Wash.qxf │ │ ├── Vari-Lite-VL3000-Spot.qxf │ │ ├── Vari-Lite-VL3000-Wash.qxf │ │ ├── Vari-Lite-VL3500-Spot.qxf │ │ └── Vari-Lite-VL4000-Spot.qxf │ ├── Varytec │ │ ├── Varytec-ARC-One.qxf │ │ ├── Varytec-BAT.BAR-8-RGBW.qxf │ │ ├── Varytec-BAT.PAR-6-RGBUV.qxf │ │ ├── Varytec-BAT.PAR-6-RGBWA.qxf │ │ ├── Varytec-Blitz-Bar-240.qxf │ │ ├── Varytec-Colors-NerveStrobe-HP.qxf │ │ ├── Varytec-Easy-Move-LED-XS-Spot.qxf │ │ ├── Varytec-Easy-Move-LED-XS-Wash.qxf │ │ ├── Varytec-Easy-Scan-XT-Mini.qxf │ │ ├── Varytec-Giga-Bar-HEX-3.qxf │ │ ├── Varytec-Giga-Bar-LED-240-RGB-.qxf │ │ ├── Varytec-Giga-Bar-Pix-8-RGB.qxf │ │ ├── Varytec-Giga-Bar-Pix-8-UV.qxf │ │ ├── Varytec-Gigabar-II.qxf │ │ ├── Varytec-Hero-Beam-100.qxf │ │ ├── Varytec-Hero-Spot-230.qxf │ │ ├── Varytec-Hero-Spot-60.qxf │ │ ├── Varytec-Hero-Spot-90.qxf │ │ ├── Varytec-Hero-Spot-Wash-140-2in1-RGBW+W.qxf │ │ ├── Varytec-Hero-Spot-Wash-80-2in1-RGBW+W.qxf │ │ ├── Varytec-Hero-Wash-300-FC.qxf │ │ ├── Varytec-Hero-Wash-340FX-RGBW-Zoom.qxf │ │ ├── Varytec-Hero-Wash-640FX.qxf │ │ ├── Varytec-Hero-Wash-712-Z-RGBW-Zoom.qxf │ │ ├── Varytec-Hero-Wash-715-HEX-LED.qxf │ │ ├── Varytec-LED-BAR-240-8-CW-WW.qxf │ │ ├── Varytec-LED-Derby-ST.qxf │ │ ├── Varytec-LED-Easy-Move-Mini-Beam-Wash-RGBW.qxf │ │ ├── Varytec-LED-Giga-bar-4-MKII.qxf │ │ ├── Varytec-LED-Hellball-3.qxf │ │ ├── Varytec-LED-Laser-4.qxf │ │ ├── Varytec-LED-Magic-Mushroom.qxf │ │ ├── Varytec-LED-PAR-14x8W.qxf │ │ ├── Varytec-LED-PAR-64-Floor-5in1.qxf │ │ ├── Varytec-LED-PAR56.qxf │ │ ├── Varytec-LED-Pad-7-BA-D.qxf │ │ ├── Varytec-LED-Pad-Bar-Compact-ST-RGB.qxf │ │ ├── Varytec-LED-Theater-Spot-100.qxf │ │ ├── Varytec-LED-Typhoon-PAR-Outdoor-12x10.qxf │ │ ├── Varytec-RGB-LED-Spot-38.qxf │ │ ├── Varytec-Street-Bar.qxf │ │ ├── Varytec-Thunderscan-FX.qxf │ │ └── Varytec-Typhoon-True-Kid-720Z-RGBW-IP65.qxf │ ├── Velleman │ │ ├── Velleman-Beam-Driver-250.qxf │ │ └── Velleman-VDP1500SM.qxf │ ├── Venue │ │ ├── Venue-LEDPAR64.qxf │ │ ├── Venue-Scanner-4.qxf │ │ ├── Venue-THINPAR-64.qxf │ │ ├── Venue-Tetra-Bar.qxf │ │ ├── Venue-ThinPar-38.qxf │ │ └── Venue-TriStrip3Z.qxf │ ├── XStatic │ │ └── XStatic-X-240Bar-RGB.qxf │ ├── beamZ │ │ ├── beamZ-BAC302.qxf │ │ ├── beamZ-BAC406.qxf │ │ ├── beamZ-BAC500.qxf │ │ ├── beamZ-BAC503.qxf │ │ ├── beamZ-BAC506.qxf │ │ ├── beamZ-BBP96-Uplight-PAR.qxf │ │ ├── beamZ-BT270-LED-FlatPAR.qxf │ │ ├── beamZ-BT310-LED-FlatPAR.qxf │ │ ├── beamZ-BT430.qxf │ │ ├── beamZ-Blaze-1200.qxf │ │ ├── beamZ-COB-50.qxf │ │ ├── beamZ-Cobra-720.qxf │ │ ├── beamZ-Fuze-75B-Beam.qxf │ │ ├── beamZ-Illusion-II.qxf │ │ ├── beamZ-LCB-252.qxf │ │ ├── beamZ-LCB244.qxf │ │ ├── beamZ-LED-FlatPAR-154.qxf │ │ ├── beamZ-LS-3DRG.qxf │ │ ├── beamZ-Lucid-1.2.qxf │ │ ├── beamZ-MHL-74-Wash-7x10W-4in1-RGBW.qxf │ │ ├── beamZ-MHL108-Wash-MKII.qxf │ │ ├── beamZ-MHL75-Hybrid-Moving-Head.qxf │ │ ├── beamZ-MHL90-Wash-5x18W-RGBAW-UV.qxf │ │ ├── beamZ-PS10W.qxf │ │ ├── beamZ-Panther-60-LED-Beam-RGBW.qxf │ │ ├── beamZ-Panther-70.qxf │ │ ├── beamZ-Radical-II.qxf │ │ ├── beamZ-SB200-Stage-Blinder-2x50w.qxf │ │ ├── beamZ-SB400.qxf │ │ ├── beamZ-SparkleWall.qxf │ │ └── beamz-Panther-25-LED-Spot.qxf │ ├── fixtures.pro │ ├── i-Pix │ │ └── i-Pix-BB4.qxf │ ├── iSolution │ │ ├── iSolution-5-Series.qxf │ │ ├── iSolution-iColor-4.qxf │ │ └── iSolution-iMove-250w.qxf │ ├── lightmaXX │ │ ├── lightmaXX-5ive-STAR-LED.qxf │ │ ├── lightmaXX-COMPLETE-PAR-56-9x12-W-RGBAW-UV.qxf │ │ ├── lightmaXX-EASY-Wash-5IVE-LED.qxf │ │ ├── lightmaXX-LED-Gun.qxf │ │ ├── lightmaXX-LED-MEGA-PAR-64-RGBW-18x8-W.qxf │ │ ├── lightmaXX-LED-PAR-64.qxf │ │ ├── lightmaXX-Platinum-CLS-1.qxf │ │ ├── lightmaXX-Platinum-CLS-2.qxf │ │ ├── lightmaXX-Platinum-CLS-3-MKII.qxf │ │ ├── lightmaXX-Platinum-CLS-3-Quad-LED-(19-CH),-RGBW.qxf │ │ ├── lightmaXX-Platinum-Line-Flat-PAR-COB.qxf │ │ ├── lightmaXX-Platinum-Line-Mini-PAR-QUAD-7x8W.qxf │ │ ├── lightmaXX-Platinum-Line-Mini-TRI-PAR-7x3-W.qxf │ │ ├── lightmaXX-Star-Sphere-6-RGBAW.qxf │ │ ├── lightmaXX-Tour-Spot-ARC-MKII.qxf │ │ ├── lightmaXX-Vector-ARC-Flood-II.qxf │ │ ├── lightmaXX-Vega-Arc-Pro-II-MkII.qxf │ │ ├── lightmaXX-Vega-Shiggy-Beam-Wash.qxf │ │ ├── lightmaXX-Vega-Spot-60.qxf │ │ └── lightmaXX-Vega-Zoom-Wash-Beam.qxf │ └── scripts │ │ ├── check │ │ ├── check.bat │ │ └── fixtures-tool.py ├── fonts │ ├── FontAwesome7-Free-Solid-900.otf │ ├── OFL.txt │ ├── RobotoCondensed-Regular.ttf │ ├── RobotoMono-Regular.ttf │ └── fonts.qrc ├── gobos │ ├── CMakeLists.txt │ ├── Chauvet │ │ ├── gobo00001.svg │ │ ├── gobo00002.svg │ │ ├── gobo00003.svg │ │ ├── gobo00004.svg │ │ ├── gobo00005.svg │ │ ├── gobo00006.svg │ │ ├── gobo00007.svg │ │ ├── gobo00008.svg │ │ ├── gobo00009.svg │ │ ├── gobo00010.svg │ │ ├── gobo00011.png │ │ ├── gobo00012.svg │ │ ├── gobo00013.svg │ │ ├── gobo00014.svg │ │ ├── gobo00015.png │ │ ├── gobo00016.svg │ │ ├── gobo00017.svg │ │ ├── gobo00018.svg │ │ ├── gobo00019.svg │ │ ├── gobo00020.svg │ │ ├── gobo00021.svg │ │ ├── gobo00022.svg │ │ ├── gobo00023.svg │ │ ├── gobo00024.svg │ │ ├── gobo00025.svg │ │ ├── gobo00026.svg │ │ ├── gobo00027.svg │ │ ├── gobo00028.svg │ │ ├── gobo00029.svg │ │ ├── gobo00030.svg │ │ ├── gobo00031.svg │ │ ├── gobo00032.svg │ │ ├── gobo00033.svg │ │ ├── gobo00034.svg │ │ ├── gobo00035.svg │ │ ├── gobo00036.svg │ │ ├── gobo00037.svg │ │ ├── gobo00038.svg │ │ ├── gobo00039.svg │ │ ├── gobo00040.svg │ │ ├── gobo00041.svg │ │ ├── gobo00042.svg │ │ ├── gobo00043.svg │ │ ├── gobo00044.svg │ │ ├── gobo00045.svg │ │ ├── gobo00046.png │ │ ├── gobo00047.svg │ │ ├── gobo00048.svg │ │ ├── gobo00049.svg │ │ ├── gobo00050.png │ │ ├── gobo00051.svg │ │ ├── gobo00052.svg │ │ ├── gobo00053.svg │ │ ├── gobo00054.svg │ │ ├── gobo00055.png │ │ ├── gobo00056.svg │ │ ├── gobo00057.svg │ │ ├── gobo00058.svg │ │ ├── gobo00059.svg │ │ ├── gobo00060.svg │ │ ├── gobo00061.png │ │ ├── gobo00062.svg │ │ ├── gobo00063.svg │ │ ├── gobo00064.svg │ │ ├── gobo00065.svg │ │ ├── gobo00066.png │ │ ├── gobo00067.svg │ │ ├── gobo00068.png │ │ ├── gobo00069.svg │ │ ├── gobo00070.svg │ │ ├── gobo00071.png │ │ ├── gobo00072.png │ │ ├── gobo00073.png │ │ ├── gobo00074.png │ │ ├── gobo00075.svg │ │ ├── gobo00076.svg │ │ ├── gobo00077.svg │ │ ├── gobo00078.png │ │ ├── gobo00079.png │ │ ├── gobo00080.png │ │ ├── gobo00081.png │ │ ├── gobo00082.svg │ │ ├── gobo00083.svg │ │ ├── gobo00084.svg │ │ ├── gobo00085.svg │ │ ├── gobo00086.svg │ │ ├── gobo00087.svg │ │ ├── gobo00088.svg │ │ ├── gobo00089.svg │ │ ├── gobo00090.svg │ │ ├── gobo00091.svg │ │ ├── gobo00092.svg │ │ ├── gobo00093.svg │ │ ├── gobo00094.svg │ │ ├── gobo00095.svg │ │ ├── gobo00096.svg │ │ ├── gobo00097.svg │ │ ├── gobo00098.svg │ │ ├── gobo00099.svg │ │ ├── gobo00100.svg │ │ ├── gobo00101.svg │ │ ├── gobo00102.svg │ │ ├── gobo00103.svg │ │ ├── gobo00104.svg │ │ ├── gobo00105.svg │ │ ├── gobo00106.svg │ │ ├── gobo00107.svg │ │ ├── gobo00108.svg │ │ └── gobo00109.svg │ ├── ClayPaky │ │ ├── gobo00001.svg │ │ ├── gobo00002.svg │ │ ├── gobo00003.svg │ │ ├── gobo00004.svg │ │ ├── gobo00005.svg │ │ ├── gobo00006.svg │ │ ├── gobo00007.svg │ │ ├── gobo00008.svg │ │ ├── gobo00009.svg │ │ ├── gobo00010.svg │ │ ├── gobo00011.svg │ │ ├── gobo00012.svg │ │ ├── gobo00013.svg │ │ ├── gobo00014.svg │ │ ├── gobo00015.svg │ │ ├── gobo00016.svg │ │ ├── gobo00017.svg │ │ ├── gobo00018.svg │ │ ├── gobo00019.svg │ │ ├── gobo00020.svg │ │ ├── gobo00021.svg │ │ ├── gobo00022.svg │ │ ├── gobo00023.svg │ │ ├── gobo00024.svg │ │ ├── gobo00025.svg │ │ ├── gobo00026.svg │ │ ├── gobo00027.svg │ │ ├── gobo00028.svg │ │ ├── gobo00029.svg │ │ ├── gobo00030.png │ │ ├── gobo00031.svg │ │ ├── gobo00032.png │ │ ├── gobo00034.png │ │ ├── gobo00035.png │ │ ├── gobo00036.png │ │ ├── gobo00037.png │ │ ├── gobo00038.png │ │ ├── gobo00039.png │ │ ├── gobo00040.svg │ │ ├── gobo00041.png │ │ ├── gobo00042.svg │ │ ├── gobo00043.png │ │ ├── gobo00044.png │ │ ├── gobo00045.png │ │ ├── gobo00046.png │ │ ├── gobo00047.svg │ │ ├── gobo00048.png │ │ ├── gobo00049.svg │ │ ├── gobo00050.png │ │ ├── gobo00051.png │ │ ├── gobo00052.svg │ │ ├── gobo00053.svg │ │ ├── gobo00054.svg │ │ ├── gobo00055.svg │ │ ├── gobo00056.svg │ │ ├── gobo00057.svg │ │ ├── gobo00058.svg │ │ ├── gobo00059.svg │ │ ├── gobo00060.svg │ │ ├── gobo00061.svg │ │ ├── gobo00062.svg │ │ ├── gobo00063.svg │ │ ├── gobo00064.svg │ │ ├── gobo00065.svg │ │ ├── gobo00066.svg │ │ ├── gobo00067.svg │ │ ├── gobo00068.svg │ │ ├── gobo00069.svg │ │ ├── gobo00070.svg │ │ ├── gobo00071.svg │ │ ├── gobo00072.svg │ │ ├── gobo00073.png │ │ ├── gobo00074.png │ │ ├── gobo00075.svg │ │ ├── gobo00076.svg │ │ ├── gobo00077.png │ │ ├── gobo00078.png │ │ ├── gobo00079.svg │ │ ├── gobo00080.png │ │ ├── gobo00081.png │ │ ├── gobo00082.png │ │ ├── gobo00083.png │ │ ├── gobo00084.svg │ │ ├── gobo00085.svg │ │ ├── gobo00086.svg │ │ ├── gobo00087.svg │ │ ├── gobo00088.svg │ │ ├── gobo00089.svg │ │ ├── gobo00090.svg │ │ ├── gobo00091.svg │ │ ├── gobo00092.svg │ │ ├── gobo00093.svg │ │ ├── gobo00094.svg │ │ ├── gobo00095.svg │ │ ├── gobo00096.svg │ │ ├── gobo00097.svg │ │ ├── gobo00098.svg │ │ ├── gobo00099.svg │ │ ├── gobo00100.svg │ │ ├── gobo00101.svg │ │ ├── gobo00102.svg │ │ ├── gobo00103.svg │ │ ├── gobo00104.svg │ │ ├── gobo00105.svg │ │ ├── gobo00106.svg │ │ ├── gobo00107.svg │ │ ├── gobo00108.svg │ │ ├── gobo00109.svg │ │ ├── gobo00110.svg │ │ ├── gobo00111.svg │ │ ├── gobo00112.svg │ │ └── gobo00113.svg │ ├── GLP │ │ ├── gobo00001.svg │ │ ├── gobo00002.svg │ │ ├── gobo00003.png │ │ ├── gobo00004.svg │ │ ├── gobo00005.svg │ │ ├── gobo00006.svg │ │ ├── gobo00007.png │ │ ├── gobo00008.png │ │ ├── gobo00009.png │ │ ├── gobo00010.svg │ │ ├── gobo00011.png │ │ ├── gobo00012.svg │ │ ├── gobo00013.svg │ │ ├── gobo00014.svg │ │ ├── gobo00015.svg │ │ ├── gobo00016.png │ │ ├── gobo00020.svg │ │ ├── gobo00021.png │ │ ├── gobo00022.svg │ │ ├── gobo00023.png │ │ ├── gobo00024.svg │ │ ├── gobo00026.svg │ │ ├── gobo00028.png │ │ ├── gobo00029.png │ │ ├── gobo00030.png │ │ └── gobo00031.png │ ├── Others │ │ ├── gobo00001.svg │ │ ├── gobo00002.png │ │ ├── gobo00003.png │ │ ├── gobo00004.png │ │ ├── gobo00005.svg │ │ ├── gobo00006.svg │ │ ├── gobo00007.svg │ │ ├── gobo00008.svg │ │ ├── gobo00009.svg │ │ ├── gobo00011.svg │ │ ├── gobo00012.svg │ │ ├── gobo00013.svg │ │ ├── gobo00014.svg │ │ ├── gobo00015.svg │ │ ├── gobo00016.svg │ │ ├── gobo00017.svg │ │ ├── gobo00018.svg │ │ ├── gobo00019.svg │ │ ├── gobo00020.svg │ │ ├── gobo00021.svg │ │ ├── gobo00023.svg │ │ ├── gobo00024.svg │ │ ├── gobo00025.svg │ │ ├── gobo00026.svg │ │ ├── gobo00027.svg │ │ ├── gobo00028.svg │ │ ├── gobo00029.svg │ │ ├── gobo00030.svg │ │ ├── gobo00031.svg │ │ ├── gobo00033.svg │ │ ├── gobo00034.png │ │ ├── gobo00035.png │ │ ├── gobo00036.svg │ │ ├── gobo00037.svg │ │ ├── gobo00038.svg │ │ ├── gobo00039.svg │ │ ├── gobo00040.svg │ │ ├── gobo00041.svg │ │ ├── gobo00042.svg │ │ ├── gobo00043.svg │ │ ├── gobo00044.svg │ │ ├── gobo00045.svg │ │ ├── gobo00046.svg │ │ ├── gobo00047.svg │ │ ├── gobo00048.svg │ │ ├── gobo00050.png │ │ ├── gobo00051.svg │ │ ├── gobo00055.png │ │ ├── gobo00058.png │ │ ├── gobo00059.svg │ │ ├── gobo00060.svg │ │ ├── gobo00061.svg │ │ ├── gobo00062.svg │ │ ├── gobo00063.png │ │ ├── gobo00064.svg │ │ ├── gobo00065.svg │ │ ├── gobo00066.svg │ │ ├── gobo00067.svg │ │ ├── gobo00068.svg │ │ ├── gobo00069.svg │ │ ├── gobo00070.svg │ │ ├── gobo00071.svg │ │ ├── gobo00072.svg │ │ ├── gobo00073.svg │ │ ├── gobo00074.svg │ │ ├── gobo00075.svg │ │ ├── gobo00076.svg │ │ ├── gobo00077.svg │ │ ├── gobo00078.svg │ │ ├── gobo00079.svg │ │ ├── gobo00080.svg │ │ ├── gobo00081.svg │ │ ├── gobo00082.svg │ │ ├── gobo00083.svg │ │ ├── gobo00084.svg │ │ ├── gobo00085.svg │ │ ├── gobo00086.svg │ │ ├── gobo00087.svg │ │ ├── gobo00088.svg │ │ ├── gobo00089.svg │ │ ├── gobo00090.svg │ │ ├── gobo00091.svg │ │ ├── gobo00092.svg │ │ ├── gobo00093.svg │ │ ├── gobo00094.svg │ │ ├── gobo00095.svg │ │ ├── gobo00096.svg │ │ ├── gobo00097.svg │ │ ├── gobo00098.svg │ │ ├── gobo00099.svg │ │ ├── gobo00100.svg │ │ ├── gobo00101.svg │ │ ├── gobo00102.svg │ │ ├── gobo00103.svg │ │ ├── gobo00104.svg │ │ ├── gobo00105.svg │ │ ├── gobo00106.svg │ │ ├── gobo00107.svg │ │ ├── gobo00108.svg │ │ ├── gobo00109.svg │ │ ├── gobo00110.svg │ │ ├── gobo00111.svg │ │ ├── gobo00112.svg │ │ ├── gobo00113.png │ │ ├── gobo00114.svg │ │ ├── gobo00115.svg │ │ ├── gobo00116.svg │ │ ├── gobo00117.svg │ │ ├── gobo00118.svg │ │ ├── gobo00119.svg │ │ ├── gobo00120.svg │ │ ├── gobo00121.svg │ │ ├── gobo00122.svg │ │ ├── gobo00123.svg │ │ ├── gobo00124.svg │ │ ├── gobo00125.svg │ │ ├── gobo00126.svg │ │ ├── gobo00127.svg │ │ ├── gobo00128.svg │ │ ├── gobo00129.svg │ │ ├── gobo00130.svg │ │ ├── gobo00131.svg │ │ ├── gobo00132.svg │ │ ├── gobo00133.svg │ │ ├── gobo00134.svg │ │ ├── gobo00135.svg │ │ ├── gobo00136.svg │ │ ├── gobo00137.svg │ │ ├── gobo00138.svg │ │ ├── gobo00139.svg │ │ ├── gobo00140.svg │ │ ├── gobo00141.svg │ │ ├── gobo00142.svg │ │ ├── gobo00143.svg │ │ ├── gobo00144.svg │ │ ├── gobo00145.svg │ │ ├── gobo00146.svg │ │ ├── gobo00147.svg │ │ ├── gobo00148.svg │ │ ├── open.svg │ │ └── rainbow.png │ ├── Robe │ │ ├── gobo00001.png │ │ ├── gobo00002.png │ │ ├── gobo00003.png │ │ ├── gobo00004.png │ │ ├── gobo00005.png │ │ ├── gobo00007.png │ │ ├── gobo00009.svg │ │ ├── gobo00010.png │ │ ├── gobo00011.svg │ │ ├── gobo00012.svg │ │ ├── gobo00013.svg │ │ ├── gobo00014.svg │ │ ├── gobo00015.svg │ │ ├── gobo00016.svg │ │ ├── gobo00017.svg │ │ ├── gobo00018.svg │ │ ├── gobo00019.svg │ │ ├── gobo00020.svg │ │ ├── gobo00021.png │ │ ├── gobo00022.svg │ │ ├── gobo00023.svg │ │ ├── gobo00024.svg │ │ ├── gobo00025.svg │ │ ├── gobo00026.svg │ │ ├── gobo00027.svg │ │ ├── gobo00028.svg │ │ ├── gobo00029.svg │ │ ├── gobo00030.svg │ │ ├── gobo00031.svg │ │ ├── gobo00032.svg │ │ ├── gobo00033.svg │ │ ├── gobo00034.svg │ │ ├── gobo00035.svg │ │ ├── gobo00036.svg │ │ ├── gobo00037.svg │ │ ├── gobo00038.svg │ │ ├── gobo00039.png │ │ ├── gobo00040.png │ │ ├── gobo00042.png │ │ ├── gobo00043.png │ │ ├── gobo00044.png │ │ ├── gobo00045.svg │ │ ├── gobo00046.svg │ │ ├── gobo00047.png │ │ ├── gobo00048.png │ │ ├── gobo00049.png │ │ ├── gobo00050.png │ │ ├── gobo00051.png │ │ ├── gobo00052.png │ │ ├── gobo00053.svg │ │ ├── gobo00054.svg │ │ ├── gobo00055.svg │ │ ├── gobo00056.svg │ │ ├── gobo00057.png │ │ ├── gobo00058.svg │ │ ├── gobo00060.png │ │ ├── gobo00061.svg │ │ ├── gobo00062.svg │ │ ├── gobo00063.svg │ │ ├── gobo00064.svg │ │ ├── gobo00065.svg │ │ ├── gobo00066.svg │ │ ├── gobo00067.svg │ │ ├── gobo00068.svg │ │ ├── gobo00069.png │ │ └── gobo00070.svg │ ├── SGM-Color │ │ ├── gobo00363.png │ │ ├── gobo00368.png │ │ ├── gobo00372.png │ │ ├── gobo00373.png │ │ ├── gobo00374.png │ │ ├── gobo00375.svg │ │ ├── gobo00377.png │ │ ├── gobo00378.png │ │ ├── gobo00379.png │ │ ├── gobo00380.png │ │ ├── gobo00381.png │ │ ├── gobo00382.png │ │ ├── gobo00383.png │ │ ├── gobo00384.png │ │ ├── gobo00385.png │ │ ├── gobo00386.png │ │ ├── gobo00387.png │ │ ├── gobo00388.png │ │ ├── gobo00389.png │ │ ├── gobo00390.png │ │ ├── gobo00391.png │ │ ├── gobo00392.png │ │ ├── gobo00393.png │ │ ├── gobo00394.png │ │ ├── gobo00395.png │ │ ├── gobo00396.png │ │ ├── gobo00397.png │ │ ├── gobo00398.png │ │ ├── gobo00399.png │ │ ├── gobo00400.png │ │ ├── gobo00401.png │ │ ├── gobo00402.png │ │ ├── gobo00403.png │ │ ├── gobo00404.png │ │ ├── gobo00405.png │ │ ├── gobo00406.png │ │ ├── gobo00407.png │ │ ├── gobo00408.png │ │ ├── gobo00409.png │ │ ├── gobo00410.png │ │ ├── gobo00411.png │ │ ├── gobo00412.png │ │ ├── gobo00413.png │ │ ├── gobo00414.png │ │ ├── gobo00415.png │ │ ├── gobo00416.png │ │ ├── gobo00417.png │ │ ├── gobo00418.png │ │ ├── gobo00419.png │ │ ├── gobo00420.png │ │ ├── gobo00421.png │ │ ├── gobo00422.png │ │ ├── gobo00423.png │ │ ├── gobo00424.png │ │ ├── gobo00425.png │ │ ├── gobo00426.png │ │ ├── gobo00427.png │ │ ├── gobo00428.png │ │ ├── gobo00429.png │ │ ├── gobo00430.png │ │ ├── gobo00431.png │ │ ├── gobo00432.png │ │ ├── gobo00433.png │ │ ├── gobo00434.png │ │ ├── gobo00435.png │ │ ├── gobo00436.png │ │ ├── gobo00437.png │ │ ├── gobo00438.png │ │ ├── gobo00439.png │ │ ├── gobo00440.png │ │ ├── gobo00441.png │ │ ├── gobo00442.png │ │ ├── gobo00443.png │ │ ├── gobo00444.png │ │ ├── gobo00445.png │ │ ├── gobo00446.png │ │ ├── gobo00447.png │ │ ├── gobo00448.png │ │ ├── gobo00449.png │ │ ├── gobo00450.png │ │ ├── gobo00451.png │ │ ├── gobo00452.png │ │ ├── gobo00453.png │ │ ├── gobo00454.png │ │ ├── gobo00455.png │ │ ├── gobo00456.png │ │ ├── gobo00457.png │ │ ├── gobo00458.png │ │ ├── gobo00459.png │ │ ├── gobo00460.png │ │ ├── gobo00461.png │ │ ├── gobo00462.png │ │ ├── gobo00463.png │ │ ├── gobo00464.png │ │ ├── gobo00465.png │ │ ├── gobo00466.png │ │ ├── gobo00467.png │ │ ├── gobo00468.png │ │ ├── gobo00469.png │ │ ├── gobo00470.png │ │ ├── gobo00471.png │ │ ├── gobo00472.png │ │ ├── gobo00473.png │ │ ├── gobo00474.png │ │ ├── gobo00475.png │ │ ├── gobo00476.png │ │ ├── gobo00477.png │ │ ├── gobo00478.png │ │ ├── gobo00479.png │ │ ├── gobo00480.png │ │ ├── gobo00481.png │ │ ├── gobo00482.png │ │ ├── gobo00483.png │ │ ├── gobo00484.png │ │ ├── gobo00485.png │ │ ├── gobo00486.png │ │ ├── gobo00487.png │ │ ├── gobo00488.png │ │ ├── gobo00489.png │ │ ├── gobo00490.png │ │ ├── gobo00491.png │ │ ├── gobo00492.png │ │ ├── gobo00493.png │ │ ├── gobo00494.png │ │ ├── gobo00495.png │ │ ├── gobo00496.png │ │ ├── gobo00497.png │ │ ├── gobo00498.png │ │ ├── gobo00499.png │ │ ├── gobo00500.png │ │ ├── gobo00501.png │ │ ├── gobo00502.png │ │ ├── gobo00503.png │ │ ├── gobo00504.png │ │ ├── gobo00505.png │ │ ├── gobo00506.png │ │ ├── gobo00507.png │ │ ├── gobo00508.png │ │ ├── gobo00509.png │ │ ├── gobo00510.png │ │ ├── gobo00511.png │ │ ├── gobo00512.png │ │ ├── gobo00513.png │ │ ├── gobo00514.png │ │ ├── gobo00515.png │ │ ├── gobo00516.png │ │ ├── gobo00517.png │ │ ├── gobo00518.png │ │ ├── gobo00519.png │ │ ├── gobo00520.png │ │ ├── gobo00521.png │ │ ├── gobo00522.png │ │ ├── gobo00523.png │ │ ├── gobo00524.png │ │ ├── gobo00525.png │ │ ├── gobo00526.png │ │ ├── gobo00527.png │ │ ├── gobo00528.png │ │ ├── gobo00529.png │ │ ├── gobo00530.png │ │ ├── gobo00531.png │ │ ├── gobo00532.png │ │ ├── gobo00533.png │ │ ├── gobo00534.png │ │ ├── gobo00535.png │ │ ├── gobo00536.png │ │ ├── gobo00537.png │ │ ├── gobo00538.png │ │ ├── gobo00539.png │ │ ├── gobo00540.png │ │ ├── gobo00541.png │ │ ├── gobo00542.png │ │ ├── gobo00543.png │ │ ├── gobo00544.png │ │ ├── gobo00545.png │ │ ├── gobo00546.png │ │ ├── gobo00547.png │ │ ├── gobo00548.png │ │ ├── gobo00549.png │ │ ├── gobo00550.png │ │ ├── gobo00551.png │ │ ├── gobo00552.png │ │ ├── gobo00553.png │ │ ├── gobo00554.png │ │ ├── gobo00555.png │ │ ├── gobo00556.png │ │ ├── gobo00557.png │ │ ├── gobo00558.png │ │ ├── gobo00559.png │ │ ├── gobo00560.png │ │ ├── gobo00561.png │ │ └── gobo00562.png │ ├── SGM │ │ ├── gobo00001.svg │ │ ├── gobo00002.svg │ │ ├── gobo00003.svg │ │ ├── gobo00004.svg │ │ ├── gobo00005.png │ │ ├── gobo00006.png │ │ ├── gobo00007.png │ │ ├── gobo00008.svg │ │ ├── gobo00009.svg │ │ ├── gobo00010.png │ │ ├── gobo00011.png │ │ ├── gobo00012.png │ │ ├── gobo00013.png │ │ ├── gobo00014.png │ │ ├── gobo00015.png │ │ ├── gobo00016.png │ │ ├── gobo00017.svg │ │ ├── gobo00018.svg │ │ ├── gobo00019.png │ │ ├── gobo00020.svg │ │ ├── gobo00021.png │ │ ├── gobo00022.png │ │ ├── gobo00024.svg │ │ ├── gobo00025.svg │ │ ├── gobo00026.png │ │ ├── gobo00027.svg │ │ ├── gobo00028.png │ │ ├── gobo00029.png │ │ ├── gobo00030.svg │ │ ├── gobo00031.png │ │ ├── gobo00032.png │ │ ├── gobo00033.png │ │ ├── gobo00034.png │ │ ├── gobo00035.png │ │ ├── gobo00036.png │ │ ├── gobo00037.svg │ │ ├── gobo00038.png │ │ ├── gobo00039.png │ │ ├── gobo00040.png │ │ ├── gobo00041.png │ │ ├── gobo00042.svg │ │ ├── gobo00043.png │ │ ├── gobo00044.png │ │ ├── gobo00045.svg │ │ ├── gobo00046.png │ │ ├── gobo00047.png │ │ ├── gobo00048.png │ │ ├── gobo00049.png │ │ ├── gobo00050.png │ │ ├── gobo00051.png │ │ ├── gobo00052.png │ │ ├── gobo00053.png │ │ ├── gobo00054.png │ │ ├── gobo00055.png │ │ ├── gobo00056.png │ │ ├── gobo00057.png │ │ ├── gobo00058.png │ │ ├── gobo00059.svg │ │ ├── gobo00060.png │ │ ├── gobo00061.svg │ │ ├── gobo00062.svg │ │ ├── gobo00063.svg │ │ ├── gobo00064.svg │ │ ├── gobo00065.svg │ │ ├── gobo00066.svg │ │ ├── gobo00067.svg │ │ ├── gobo00068.svg │ │ ├── gobo00069.svg │ │ ├── gobo00070.svg │ │ ├── gobo00071.svg │ │ ├── gobo00072.svg │ │ ├── gobo00073.svg │ │ ├── gobo00074.svg │ │ ├── gobo00075.svg │ │ ├── gobo00076.svg │ │ ├── gobo00077.svg │ │ ├── gobo00078.svg │ │ ├── gobo00079.svg │ │ ├── gobo00080.svg │ │ ├── gobo00081.svg │ │ ├── gobo00082.svg │ │ ├── gobo00083.svg │ │ ├── gobo00084.svg │ │ ├── gobo00085.svg │ │ ├── gobo00086.svg │ │ ├── gobo00087.svg │ │ ├── gobo00088.svg │ │ ├── gobo00089.svg │ │ ├── gobo00090.svg │ │ ├── gobo00091.png │ │ ├── gobo00092.png │ │ ├── gobo00093.svg │ │ ├── gobo00094.svg │ │ ├── gobo00095.svg │ │ ├── gobo00096.svg │ │ ├── gobo00097.svg │ │ ├── gobo00098.svg │ │ ├── gobo00099.svg │ │ ├── gobo00100.svg │ │ ├── gobo00101.svg │ │ ├── gobo00102.svg │ │ ├── gobo00103.png │ │ ├── gobo00104.svg │ │ ├── gobo00105.svg │ │ ├── gobo00106.svg │ │ ├── gobo00107.svg │ │ ├── gobo00108.svg │ │ ├── gobo00109.svg │ │ ├── gobo00110.svg │ │ ├── gobo00111.svg │ │ ├── gobo00112.svg │ │ ├── gobo00113.svg │ │ ├── gobo00114.svg │ │ ├── gobo00115.svg │ │ ├── gobo00116.svg │ │ ├── gobo00117.svg │ │ ├── gobo00118.svg │ │ ├── gobo00119.svg │ │ ├── gobo00120.svg │ │ ├── gobo00121.svg │ │ ├── gobo00122.svg │ │ ├── gobo00123.svg │ │ ├── gobo00124.png │ │ ├── gobo00125.png │ │ ├── gobo00126.png │ │ ├── gobo00127.png │ │ ├── gobo00128.png │ │ ├── gobo00129.png │ │ ├── gobo00130.svg │ │ ├── gobo00131.svg │ │ ├── gobo00132.svg │ │ ├── gobo00133.svg │ │ ├── gobo00134.svg │ │ ├── gobo00135.svg │ │ ├── gobo00136.svg │ │ ├── gobo00137.svg │ │ ├── gobo00138.svg │ │ ├── gobo00139.svg │ │ ├── gobo00140.svg │ │ ├── gobo00141.svg │ │ ├── gobo00142.svg │ │ ├── gobo00143.svg │ │ ├── gobo00144.svg │ │ ├── gobo00145.svg │ │ ├── gobo00146.svg │ │ ├── gobo00147.svg │ │ ├── gobo00148.svg │ │ ├── gobo00149.svg │ │ ├── gobo00150.svg │ │ ├── gobo00151.svg │ │ ├── gobo00152.svg │ │ ├── gobo00153.svg │ │ ├── gobo00154.svg │ │ ├── gobo00155.svg │ │ ├── gobo00156.svg │ │ ├── gobo00157.svg │ │ ├── gobo00158.svg │ │ ├── gobo00159.svg │ │ ├── gobo00160.svg │ │ ├── gobo00161.svg │ │ ├── gobo00162.svg │ │ ├── gobo00163.svg │ │ ├── gobo00164.svg │ │ ├── gobo00165.svg │ │ ├── gobo00166.svg │ │ ├── gobo00167.svg │ │ ├── gobo00168.svg │ │ ├── gobo00169.svg │ │ ├── gobo00170.svg │ │ ├── gobo00171.svg │ │ ├── gobo00172.svg │ │ ├── gobo00173.svg │ │ ├── gobo00174.svg │ │ ├── gobo00175.svg │ │ ├── gobo00176.svg │ │ ├── gobo00177.svg │ │ ├── gobo00178.svg │ │ ├── gobo00179.svg │ │ ├── gobo00180.svg │ │ ├── gobo00181.svg │ │ ├── gobo00182.svg │ │ ├── gobo00183.png │ │ ├── gobo00184.svg │ │ ├── gobo00185.svg │ │ ├── gobo00186.svg │ │ ├── gobo00187.svg │ │ ├── gobo00188.svg │ │ ├── gobo00189.svg │ │ ├── gobo00190.svg │ │ ├── gobo00191.svg │ │ ├── gobo00192.svg │ │ ├── gobo00193.svg │ │ ├── gobo00194.svg │ │ ├── gobo00195.svg │ │ ├── gobo00196.svg │ │ ├── gobo00197.svg │ │ ├── gobo00198.svg │ │ ├── gobo00199.svg │ │ ├── gobo00200.svg │ │ ├── gobo00201.svg │ │ ├── gobo00202.svg │ │ ├── gobo00203.svg │ │ ├── gobo00204.svg │ │ ├── gobo00205.svg │ │ ├── gobo00206.svg │ │ ├── gobo00207.svg │ │ ├── gobo00208.svg │ │ ├── gobo00209.svg │ │ ├── gobo00210.svg │ │ ├── gobo00211.svg │ │ ├── gobo00212.svg │ │ ├── gobo00213.svg │ │ ├── gobo00214.svg │ │ ├── gobo00215.svg │ │ ├── gobo00216.svg │ │ ├── gobo00217.svg │ │ ├── gobo00218.svg │ │ ├── gobo00219.svg │ │ ├── gobo00220.svg │ │ ├── gobo00221.svg │ │ ├── gobo00222.svg │ │ ├── gobo00223.svg │ │ ├── gobo00224.svg │ │ ├── gobo00225.svg │ │ ├── gobo00226.svg │ │ ├── gobo00227.svg │ │ ├── gobo00228.svg │ │ ├── gobo00229.svg │ │ ├── gobo00230.svg │ │ ├── gobo00231.svg │ │ ├── gobo00232.svg │ │ ├── gobo00233.svg │ │ ├── gobo00234.svg │ │ ├── gobo00235.svg │ │ ├── gobo00236.svg │ │ ├── gobo00237.svg │ │ ├── gobo00238.svg │ │ ├── gobo00239.png │ │ ├── gobo00240.png │ │ ├── gobo00241.png │ │ ├── gobo00242.png │ │ ├── gobo00243.png │ │ ├── gobo00244.png │ │ ├── gobo00245.png │ │ ├── gobo00246.png │ │ ├── gobo00247.png │ │ ├── gobo00248.png │ │ ├── gobo00249.png │ │ ├── gobo00250.png │ │ ├── gobo00251.png │ │ ├── gobo00252.png │ │ ├── gobo00253.png │ │ ├── gobo00254.png │ │ ├── gobo00255.png │ │ ├── gobo00256.png │ │ ├── gobo00257.png │ │ ├── gobo00258.png │ │ ├── gobo00259.png │ │ ├── gobo00260.png │ │ ├── gobo00261.png │ │ ├── gobo00262.png │ │ ├── gobo00263.png │ │ ├── gobo00264.png │ │ ├── gobo00265.png │ │ ├── gobo00266.png │ │ ├── gobo00267.png │ │ ├── gobo00268.png │ │ ├── gobo00269.png │ │ ├── gobo00270.png │ │ ├── gobo00271.png │ │ ├── gobo00272.png │ │ ├── gobo00273.png │ │ ├── gobo00274.png │ │ ├── gobo00275.png │ │ ├── gobo00276.png │ │ ├── gobo00277.png │ │ ├── gobo00278.png │ │ ├── gobo00279.png │ │ ├── gobo00280.png │ │ ├── gobo00281.png │ │ ├── gobo00282.png │ │ ├── gobo00283.png │ │ ├── gobo00284.png │ │ ├── gobo00285.png │ │ ├── gobo00286.png │ │ ├── gobo00287.png │ │ ├── gobo00288.png │ │ ├── gobo00289.png │ │ ├── gobo00290.png │ │ ├── gobo00291.png │ │ ├── gobo00292.png │ │ ├── gobo00293.png │ │ ├── gobo00294.png │ │ ├── gobo00295.png │ │ ├── gobo00296.png │ │ ├── gobo00297.png │ │ ├── gobo00298.png │ │ ├── gobo00299.png │ │ ├── gobo00300.png │ │ ├── gobo00301.png │ │ ├── gobo00302.png │ │ ├── gobo00303.png │ │ ├── gobo00305.png │ │ ├── gobo00306.png │ │ ├── gobo00307.png │ │ ├── gobo00308.png │ │ ├── gobo00309.png │ │ ├── gobo00310.png │ │ ├── gobo00311.png │ │ ├── gobo00312.png │ │ ├── gobo00313.png │ │ ├── gobo00314.png │ │ ├── gobo00315.png │ │ ├── gobo00316.png │ │ ├── gobo00317.png │ │ ├── gobo00318.png │ │ ├── gobo00319.png │ │ ├── gobo00320.png │ │ ├── gobo00321.png │ │ ├── gobo00322.png │ │ ├── gobo00323.png │ │ ├── gobo00324.png │ │ ├── gobo00325.png │ │ ├── gobo00326.png │ │ ├── gobo00327.png │ │ ├── gobo00328.png │ │ ├── gobo00329.png │ │ ├── gobo00330.png │ │ ├── gobo00331.png │ │ ├── gobo00332.png │ │ ├── gobo00333.png │ │ ├── gobo00334.png │ │ ├── gobo00335.png │ │ ├── gobo00336.png │ │ ├── gobo00337.png │ │ ├── gobo00338.png │ │ ├── gobo00339.png │ │ ├── gobo00340.png │ │ ├── gobo00341.png │ │ ├── gobo00342.png │ │ ├── gobo00343.png │ │ ├── gobo00344.png │ │ ├── gobo00345.png │ │ ├── gobo00346.png │ │ ├── gobo00347.png │ │ ├── gobo00348.png │ │ ├── gobo00349.png │ │ ├── gobo00350.png │ │ ├── gobo00351.png │ │ ├── gobo00352.png │ │ ├── gobo00353.png │ │ ├── gobo00354.png │ │ ├── gobo00355.png │ │ ├── gobo00358.png │ │ ├── gobo00360.svg │ │ ├── gobo00361.svg │ │ ├── gobo00362.svg │ │ ├── gobo00364.svg │ │ ├── gobo00365.svg │ │ ├── gobo00366.png │ │ ├── gobo00367.svg │ │ ├── gobo00369.svg │ │ ├── gobo00370.svg │ │ ├── gobo00371.svg │ │ └── gobo00376.svg │ └── gobos.pro ├── icons │ ├── png │ │ ├── add_dump.png │ │ ├── animation.png │ │ ├── attach.png │ │ ├── audio.png │ │ ├── audioinput.png │ │ ├── autostart.png │ │ ├── back.png │ │ ├── beam.png │ │ ├── blackout.png │ │ ├── blind.png │ │ ├── button.png │ │ ├── buttonmatrix.png │ │ ├── chaser.png │ │ ├── check.png │ │ ├── checkbox_empty.png │ │ ├── checkbox_full.png │ │ ├── clock.png │ │ ├── collection.png │ │ ├── color.png │ │ ├── colorwheel.png │ │ ├── configure.png │ │ ├── cuelist.png │ │ ├── current.png │ │ ├── delete.png │ │ ├── design.png │ │ ├── detach.png │ │ ├── dimmer.png │ │ ├── diptool.png │ │ ├── down.png │ │ ├── ds_border.png │ │ ├── ds_bottom.png │ │ ├── ds_off.png │ │ ├── ds_on.png │ │ ├── ds_top.png │ │ ├── edit.png │ │ ├── edit_add.png │ │ ├── edit_remove.png │ │ ├── editclear.png │ │ ├── editcopy.png │ │ ├── editcopyall.png │ │ ├── editcut.png │ │ ├── editdelete.png │ │ ├── editpaste.png │ │ ├── effect.png │ │ ├── efx.png │ │ ├── exit.png │ │ ├── expand.png │ │ ├── fade.png │ │ ├── fan.png │ │ ├── fileclose.png │ │ ├── fileexport.png │ │ ├── fileimport.png │ │ ├── filenew.png │ │ ├── fileopen.png │ │ ├── filesave.png │ │ ├── filesaveas.png │ │ ├── fixture.png │ │ ├── flash.png │ │ ├── flower.png │ │ ├── folder.png │ │ ├── fontcolor.png │ │ ├── fonts.png │ │ ├── forward.png │ │ ├── frame.png │ │ ├── frameraised.png │ │ ├── framesunken.png │ │ ├── fullscreen.png │ │ ├── function.png │ │ ├── global.png │ │ ├── gobo.png │ │ ├── grid.png │ │ ├── group.png │ │ ├── hazer.png │ │ ├── help.png │ │ ├── image.png │ │ ├── input.png │ │ ├── input_output.png │ │ ├── intensity.png │ │ ├── key_bindings.png │ │ ├── knob.png │ │ ├── label.png │ │ ├── laser.png │ │ ├── ledbar_beams.png │ │ ├── ledbar_pixels.png │ │ ├── liveedit.png │ │ ├── liveedit_vc.png │ │ ├── lock.png │ │ ├── monitor.png │ │ ├── movinghead.png │ │ ├── operate.png │ │ ├── other.png │ │ ├── pan.png │ │ ├── panic.png │ │ ├── player_pause.png │ │ ├── player_play.png │ │ ├── player_stop.png │ │ ├── prism.png │ │ ├── qlcplus-fixtureeditor.png │ │ ├── qlcplus.png │ │ ├── qt.png │ │ ├── rainbow.png │ │ ├── random.png │ │ ├── record.png │ │ ├── refresh.png │ │ ├── remap.png │ │ ├── resize.png │ │ ├── rgbmatrix.png │ │ ├── rgbpanel.png │ │ ├── scanner.png │ │ ├── scene.png │ │ ├── script.png │ │ ├── sequence.png │ │ ├── show.png │ │ ├── shutter.png │ │ ├── slider.png │ │ ├── slidermatrix.png │ │ ├── smoke.png │ │ ├── soloframe.png │ │ ├── speed.png │ │ ├── square.png │ │ ├── star.png │ │ ├── strobe.png │ │ ├── tabview.png │ │ ├── tilt.png │ │ ├── uncheck.png │ │ ├── undo.png │ │ ├── ungroup.png │ │ ├── unlock.png │ │ ├── up.png │ │ ├── video.png │ │ ├── virtualconsole.png │ │ ├── wizard.png │ │ ├── wizard_256.png │ │ ├── xypad-point-blue.png │ │ ├── xypad-point-yellow.png │ │ ├── xypad-point.png │ │ └── xypad.png │ ├── qlcplus-fixtureeditor.icns │ ├── qlcplus-fixtureeditor.ico │ ├── qlcplus.icns │ ├── qlcplus.ico │ └── svg │ │ ├── 2dview.svg │ │ ├── 3dview.svg │ │ ├── add.svg │ │ ├── algo-flat.svg │ │ ├── algo-linear.svg │ │ ├── algo-saw.svg │ │ ├── algo-sine.svg │ │ ├── algo-square.svg │ │ ├── align-bottom.svg │ │ ├── align-left.svg │ │ ├── align-right.svg │ │ ├── align-top.svg │ │ ├── amber.svg │ │ ├── animation.svg │ │ ├── arrow-corner.svg │ │ ├── arrow-up.svg │ │ ├── artnetplugin.svg │ │ ├── audio.svg │ │ ├── audiocard.svg │ │ ├── audiotriggers.svg │ │ ├── autostart.svg │ │ ├── back.svg │ │ ├── beam.svg │ │ ├── blackout.svg │ │ ├── blue.svg │ │ ├── button.svg │ │ ├── buttonmatrix.svg │ │ ├── chaser.svg │ │ ├── clock.svg │ │ ├── collection.svg │ │ ├── color.svg │ │ ├── colorwheel.svg │ │ ├── configure.svg │ │ ├── cuelist.svg │ │ ├── cyan.svg │ │ ├── dimmer-back.svg │ │ ├── dimmer-fill.svg │ │ ├── dimmer.svg │ │ ├── diptool.svg │ │ ├── distribute-x.svg │ │ ├── distribute-y.svg │ │ ├── dmxdump.svg │ │ ├── dmxusbplugin.svg │ │ ├── dmxview.svg │ │ ├── e131plugin.svg │ │ ├── edit.svg │ │ ├── editor.svg │ │ ├── effect.svg │ │ ├── efx.svg │ │ ├── fan.svg │ │ ├── fanning.svg │ │ ├── filenew.svg │ │ ├── fileopen.svg │ │ ├── filesave.svg │ │ ├── filesaveas.svg │ │ ├── fixture-editor.svg │ │ ├── fixture.svg │ │ ├── flag_ca.svg │ │ ├── flag_de.svg │ │ ├── flag_es.svg │ │ ├── flag_fr.svg │ │ ├── flag_it.svg │ │ ├── flag_jp.svg │ │ ├── flag_nl.svg │ │ ├── flag_pl.svg │ │ ├── flag_ru.svg │ │ ├── flag_ua.svg │ │ ├── flag_uk_us.svg │ │ ├── flash.svg │ │ ├── flower.svg │ │ ├── folder.svg │ │ ├── forward.svg │ │ ├── frame.svg │ │ ├── fullscreen.svg │ │ ├── functions.svg │ │ ├── gobo.svg │ │ ├── green.svg │ │ ├── grid.svg │ │ ├── group.svg │ │ ├── hazer.svg │ │ ├── help.svg │ │ ├── hidplugin.svg │ │ ├── import.svg │ │ ├── indigo.svg │ │ ├── inputoutput.svg │ │ ├── intensity.svg │ │ ├── keybinding.svg │ │ ├── knob.svg │ │ ├── label.svg │ │ ├── laser.svg │ │ ├── layout-btf.svg │ │ ├── layout-btt.svg │ │ ├── layout-center.svg │ │ ├── layout-ftb.svg │ │ ├── layout-ltr.svg │ │ ├── layout-rtl.svg │ │ ├── layout-ttb.svg │ │ ├── ledbar_beams.svg │ │ ├── ledbar_pixels.svg │ │ ├── lime.svg │ │ ├── lock.svg │ │ ├── loop.svg │ │ ├── magenta.svg │ │ ├── midiplugin.svg │ │ ├── movinghead.svg │ │ ├── multiple.svg │ │ ├── network.svg │ │ ├── olaplugin.svg │ │ ├── oscplugin.svg │ │ ├── other.svg │ │ ├── palette.svg │ │ ├── pan.svg │ │ ├── pause.svg │ │ ├── position.svg │ │ ├── prism.svg │ │ ├── qlcplus.svg │ │ ├── qt.svg │ │ ├── red.svg │ │ ├── redo.svg │ │ ├── remap.svg │ │ ├── rename.svg │ │ ├── reset.svg │ │ ├── resize.svg │ │ ├── rgbmatrix.svg │ │ ├── scanner.svg │ │ ├── scene.svg │ │ ├── script.svg │ │ ├── search.svg │ │ ├── selectall.svg │ │ ├── sequence.svg │ │ ├── showmanager.svg │ │ ├── shutter.svg │ │ ├── simpledesk.svg │ │ ├── slider.svg │ │ ├── sliders.svg │ │ ├── smoke.svg │ │ ├── soloframe.svg │ │ ├── speed.svg │ │ ├── star.svg │ │ ├── stop.svg │ │ ├── stopall.svg │ │ ├── strobe.svg │ │ ├── svgicons.qrc │ │ ├── tilt.svg │ │ ├── uncheck.svg │ │ ├── undo.svg │ │ ├── uniview.svg │ │ ├── unlock.svg │ │ ├── uv.svg │ │ ├── video.svg │ │ ├── virtualconsole.svg │ │ ├── white.svg │ │ ├── xypad.svg │ │ └── yellow.svg ├── inputprofiles │ ├── ADJ-MIDICON-2.qxi │ ├── Akai-APC20.qxi │ ├── Akai-APC40-mkII.qxi │ ├── Akai-APC40.qxi │ ├── Akai-APCMini-mk2.qxi │ ├── Akai-APCMini.qxi │ ├── Behringer-BCF2000.qxi │ ├── Behringer-BCF2000inMackieControlMode.qxi │ ├── Behringer-BCR2000.qxi │ ├── Behringer-LC2412.qxi │ ├── Behringer-X-TouchExtender.qxi │ ├── CMakeLists.txt │ ├── Elation-MIDIcon.qxi │ ├── Enttec-PlaybackWing.qxi │ ├── Enttec-ShortcutWing.qxi │ ├── Generic-MIDI.qxi │ ├── KORG-nanoKONTROL.qxi │ ├── KORG-nanoKONTROL2.qxi │ ├── KORG-nanoKONTROLStudio.qxi │ ├── KORG-nanoPAD.qxi │ ├── KORG-nanoPAD2.qxi │ ├── Lemur-iPadStudioCombo.qxi │ ├── Logitech-WingManAttack2.qxi │ ├── M-Wave-SMCMixer.qxi │ ├── Mixxx-MIDI.qxi │ ├── Novation-LaunchControl.qxi │ ├── Novation-LaunchControlXL.qxi │ ├── Novation-LaunchPadMiniMK3.qxi │ ├── Novation-Launchpad.qxi │ ├── Novation-LaunchpadMK2.qxi │ ├── Novation-LaunchpadPro.qxi │ ├── PMJ-9-Faders-Controller.qxi │ ├── PMJ-Circus.qxi │ ├── PMJ-MidiKey.qxi │ ├── ShowTec-ShowMaster24.qxi │ ├── TouchOSC-Automat5.qxi │ ├── TouchOSC-Mix16.qxi │ ├── Worlde-Easypad.12.qxi │ ├── Worlde-OrcaPAD16.qxi │ ├── Zoom-R16.qxi │ ├── check │ └── inputprofiles.pro ├── meshes │ ├── CMakeLists.txt │ ├── fixtures │ │ ├── CMakeLists.txt │ │ ├── README.txt │ │ ├── fixtures.pro │ │ ├── hazer.dae │ │ ├── moving_head.dae │ │ ├── par.dae │ │ ├── scanner.dae │ │ ├── smoke.dae │ │ └── strobe.dae │ ├── generic │ │ ├── CMakeLists.txt │ │ ├── cone.obj │ │ ├── cube.obj │ │ ├── cylinder.obj │ │ ├── generic.pro │ │ ├── plane.obj │ │ ├── sphere.obj │ │ └── torus.obj │ ├── meshes.pro │ └── stage │ │ ├── CMakeLists.txt │ │ ├── stage.pro │ │ ├── truss_flat_1m.obj │ │ ├── truss_flat_2m.obj │ │ ├── truss_square_1m.obj │ │ ├── truss_square_2m.obj │ │ ├── truss_square_corner.obj │ │ ├── truss_triangle_1m.obj │ │ └── truss_triangle_2m.obj ├── miditemplates │ ├── APC20.qxm │ ├── APC40.qxm │ ├── APC40MK2.qxm │ ├── APCmini.qxm │ ├── APCminiMK2.qxm │ ├── CMakeLists.txt │ ├── Novation-LaunchPadMiniMK3.qxm │ └── miditemplates.pro ├── modifierstemplates │ ├── Always_Full.qxmt │ ├── Always_Half.qxmt │ ├── Always_Off.qxmt │ ├── CMakeLists.txt │ ├── Exponential_Deep.qxmt │ ├── Exponential_Medium.qxmt │ ├── Exponential_Shallow.qxmt │ ├── Exponential_Simple.qxmt │ ├── Invert.qxmt │ ├── Linear.qxmt │ ├── Logarithmic_Deep.qxmt │ ├── Logarithmic_Medium.qxmt │ ├── Logarithmic_Shallow.qxmt │ ├── Preheat_5_Percent.qxmt │ ├── S-curve.qxmt │ ├── Threshold.qxmt │ ├── check │ └── modifierstemplates.pro ├── resources.pro ├── rgbscripts │ ├── CMakeLists.txt │ ├── alternate.js │ ├── balls.js │ ├── blinder.js │ ├── circles.js │ ├── circular.js │ ├── devtool.html │ ├── devtool │ │ └── devtool.js │ ├── empty.js │ ├── evenodd.js │ ├── fill.js │ ├── fillfromcenter.js │ ├── fillunfill.js │ ├── fillunfillfromcenter.js │ ├── fillunfillsquaresfromcenter.js │ ├── fireworks.js │ ├── flyingobjects.js │ ├── gradient.js │ ├── lines.js │ ├── marquee.js │ ├── noise.js │ ├── onebyone.js │ ├── opposite.js │ ├── plasma.js │ ├── randomcolumn.js │ ├── randomfillcolumn.js │ ├── randomfillrow.js │ ├── randomfillsingle.js │ ├── randompixelperrow.js │ ├── randompixelperrowmulticolor.js │ ├── randomrow.js │ ├── randomsingle.js │ ├── rgbscripts.pro │ ├── sinewave.js │ ├── snowbubbles.js │ ├── squares.js │ ├── squaresfromcenter.js │ ├── starfield.js │ ├── stripes.js │ ├── stripesfromcenter.js │ ├── strobe.js │ ├── verticalfall.js │ └── waves.js ├── samples │ ├── CMakeLists.txt │ ├── Sample.qxw │ └── samples.pro └── schemas │ ├── fixture.xsd │ ├── fixturesmap.xsd │ ├── inputprofile.xsd │ └── modifiertemplate.xsd ├── translate.sh ├── ui ├── CMakeLists.txt ├── src │ ├── CMakeLists.txt │ ├── aboutbox.cpp │ ├── aboutbox.h │ ├── aboutbox.ui │ ├── addchannelsgroup.cpp │ ├── addchannelsgroup.h │ ├── addchannelsgroup.ui │ ├── addfixture.cpp │ ├── addfixture.h │ ├── addfixture.ui │ ├── addresstool.cpp │ ├── addresstool.h │ ├── addresstool.ui │ ├── addrgbpanel.cpp │ ├── addrgbpanel.h │ ├── addrgbpanel.ui │ ├── app.cpp │ ├── app.h │ ├── apputil.cpp │ ├── apputil.h │ ├── assignhotkey.cpp │ ├── assignhotkey.h │ ├── assignhotkey.ui │ ├── audiobar.cpp │ ├── audiobar.h │ ├── audioeditor.cpp │ ├── audioeditor.h │ ├── audioeditor.ui │ ├── audiotriggerwidget.cpp │ ├── audiotriggerwidget.h │ ├── channelmodifiereditor.cpp │ ├── channelmodifiereditor.h │ ├── channelmodifiereditor.ui │ ├── channelmodifiergraphicsview.cpp │ ├── channelmodifiergraphicsview.h │ ├── channelsselection.cpp │ ├── channelsselection.h │ ├── channelsselection.ui │ ├── chasereditor.cpp │ ├── chasereditor.h │ ├── chasereditor.ui │ ├── clickandgoslider.cpp │ ├── clickandgoslider.h │ ├── clickandgowidget.cpp │ ├── clickandgowidget.h │ ├── collectioneditor.cpp │ ├── collectioneditor.h │ ├── collectioneditor.ui │ ├── consolechannel.cpp │ ├── consolechannel.h │ ├── createfixturegroup.cpp │ ├── createfixturegroup.h │ ├── createfixturegroup.ui │ ├── ctkrangeslider.cpp │ ├── ctkrangeslider.h │ ├── cuestackmodel.cpp │ ├── cuestackmodel.h │ ├── customfeedbackdialog.cpp │ ├── customfeedbackdialog.h │ ├── customfeedbackdialog.ui │ ├── debugbox.cpp │ ├── debugbox.h │ ├── debugbox.ui │ ├── dmxdumpfactory.cpp │ ├── dmxdumpfactory.h │ ├── dmxdumpfactory.ui │ ├── efxeditor.cpp │ ├── efxeditor.h │ ├── efxeditor.ui │ ├── efxpreviewarea.cpp │ ├── efxpreviewarea.h │ ├── fixtureconsole.cpp │ ├── fixtureconsole.h │ ├── fixturegroupeditor.cpp │ ├── fixturegroupeditor.h │ ├── fixturegroupeditor.ui │ ├── fixturemanager.cpp │ ├── fixturemanager.h │ ├── fixtureremap.cpp │ ├── fixtureremap.h │ ├── fixtureremap.ui │ ├── fixtureselection.cpp │ ├── fixtureselection.h │ ├── fixtureselection.ui │ ├── fixturetreewidget.cpp │ ├── fixturetreewidget.h │ ├── flowlayout.cpp │ ├── flowlayout.h │ ├── functionliveeditdialog.cpp │ ├── functionliveeditdialog.h │ ├── functionmanager.cpp │ ├── functionmanager.h │ ├── functionselection.cpp │ ├── functionselection.h │ ├── functionselection.ui │ ├── functionstreewidget.cpp │ ├── functionstreewidget.h │ ├── functionwizard.cpp │ ├── functionwizard.h │ ├── functionwizard.ui │ ├── grandmasterslider.cpp │ ├── grandmasterslider.h │ ├── groupsconsole.cpp │ ├── groupsconsole.h │ ├── include_ui.cmake │ ├── inputchanneleditor.cpp │ ├── inputchanneleditor.h │ ├── inputchanneleditor.ui │ ├── inputoutputmanager.cpp │ ├── inputoutputmanager.h │ ├── inputoutputpatcheditor.cpp │ ├── inputoutputpatcheditor.h │ ├── inputoutputpatcheditor.ui │ ├── inputprofileeditor.cpp │ ├── inputprofileeditor.h │ ├── inputprofileeditor.ui │ ├── inputselectionwidget.cpp │ ├── inputselectionwidget.h │ ├── inputselectionwidget.ui │ ├── knobwidget.cpp │ ├── knobwidget.h │ ├── monitor │ │ ├── monitor.cpp │ │ ├── monitor.h │ │ ├── monitorbackgroundselection.cpp │ │ ├── monitorbackgroundselection.h │ │ ├── monitorbackgroundselection.ui │ │ ├── monitorfixture.cpp │ │ ├── monitorfixture.h │ │ ├── monitorfixtureitem.cpp │ │ ├── monitorfixtureitem.h │ │ ├── monitorfixturepropertieseditor.cpp │ │ ├── monitorfixturepropertieseditor.h │ │ ├── monitorfixturepropertieseditor.ui │ │ ├── monitorgraphicsview.cpp │ │ ├── monitorgraphicsview.h │ │ ├── monitorlayout.cpp │ │ └── monitorlayout.h │ ├── palettegenerator.cpp │ ├── palettegenerator.h │ ├── playbackslider.cpp │ ├── playbackslider.h │ ├── positiontool.cpp │ ├── positiontool.h │ ├── positiontool.ui │ ├── qlcplus_ca_ES.ts │ ├── qlcplus_cz_CZ.ts │ ├── qlcplus_de_DE.ts │ ├── qlcplus_es_ES.ts │ ├── qlcplus_fi_FI.ts │ ├── qlcplus_fr_FR.ts │ ├── qlcplus_it_IT.ts │ ├── qlcplus_ja_JP.ts │ ├── qlcplus_nl_NL.ts │ ├── qlcplus_pt_BR.ts │ ├── qlcui.qrc │ ├── rdmmanager.cpp │ ├── rdmmanager.h │ ├── rdmmanager.ui │ ├── remapwidget.cpp │ ├── remapwidget.h │ ├── rgbitem.cpp │ ├── rgbitem.h │ ├── rgbmatrixeditor.cpp │ ├── rgbmatrixeditor.h │ ├── rgbmatrixeditor.ui │ ├── sceneeditor.cpp │ ├── sceneeditor.h │ ├── sceneeditor.ui │ ├── scripteditor.cpp │ ├── scripteditor.h │ ├── scripteditor.ui │ ├── selectinputchannel.cpp │ ├── selectinputchannel.h │ ├── selectinputchannel.ui │ ├── showmanager │ │ ├── audioitem.cpp │ │ ├── audioitem.h │ │ ├── efxitem.cpp │ │ ├── efxitem.h │ │ ├── headeritems.cpp │ │ ├── headeritems.h │ │ ├── multitrackview.cpp │ │ ├── multitrackview.h │ │ ├── rgbmatrixitem.cpp │ │ ├── rgbmatrixitem.h │ │ ├── sequenceitem.cpp │ │ ├── sequenceitem.h │ │ ├── showeditor.cpp │ │ ├── showeditor.h │ │ ├── showeditor.ui │ │ ├── showitem.cpp │ │ ├── showitem.h │ │ ├── showmanager.cpp │ │ ├── showmanager.h │ │ ├── timingstool.cpp │ │ ├── timingstool.h │ │ ├── trackitem.cpp │ │ ├── trackitem.h │ │ ├── videoitem.cpp │ │ └── videoitem.h │ ├── simpledesk.cpp │ ├── simpledesk.h │ ├── simpledeskengine.cpp │ ├── simpledeskengine.h │ ├── speeddial.cpp │ ├── speeddial.h │ ├── speeddialwidget.cpp │ ├── speeddialwidget.h │ ├── src.pro │ ├── universeitemwidget.cpp │ ├── universeitemwidget.h │ ├── videoeditor.cpp │ ├── videoeditor.h │ ├── videoeditor.ui │ ├── videoprovider.cpp │ ├── videoprovider.h │ └── virtualconsole │ │ ├── addvcbuttonmatrix.cpp │ │ ├── addvcbuttonmatrix.h │ │ ├── addvcbuttonmatrix.ui │ │ ├── addvcslidermatrix.cpp │ │ ├── addvcslidermatrix.h │ │ ├── addvcslidermatrix.ui │ │ ├── vcaudiotriggers.cpp │ │ ├── vcaudiotriggers.h │ │ ├── vcaudiotriggersproperties.cpp │ │ ├── vcaudiotriggersproperties.h │ │ ├── vcaudiotriggersproperties.ui │ │ ├── vcbutton.cpp │ │ ├── vcbutton.h │ │ ├── vcbuttonproperties.cpp │ │ ├── vcbuttonproperties.h │ │ ├── vcbuttonproperties.ui │ │ ├── vcclock.cpp │ │ ├── vcclock.h │ │ ├── vcclockproperties.cpp │ │ ├── vcclockproperties.h │ │ ├── vcclockproperties.ui │ │ ├── vccuelist.cpp │ │ ├── vccuelist.h │ │ ├── vccuelistproperties.cpp │ │ ├── vccuelistproperties.h │ │ ├── vccuelistproperties.ui │ │ ├── vcdockarea.cpp │ │ ├── vcdockarea.h │ │ ├── vcframe.cpp │ │ ├── vcframe.h │ │ ├── vcframepageshortcut.cpp │ │ ├── vcframepageshortcut.h │ │ ├── vcframeproperties.cpp │ │ ├── vcframeproperties.h │ │ ├── vcframeproperties.ui │ │ ├── vclabel.cpp │ │ ├── vclabel.h │ │ ├── vcmatrix.cpp │ │ ├── vcmatrix.h │ │ ├── vcmatrixcontrol.cpp │ │ ├── vcmatrixcontrol.h │ │ ├── vcmatrixpresetselection.cpp │ │ ├── vcmatrixpresetselection.h │ │ ├── vcmatrixpresetselection.ui │ │ ├── vcmatrixproperties.cpp │ │ ├── vcmatrixproperties.h │ │ ├── vcmatrixproperties.ui │ │ ├── vcproperties.cpp │ │ ├── vcproperties.h │ │ ├── vcproperties.ui │ │ ├── vcpropertieseditor.cpp │ │ ├── vcpropertieseditor.h │ │ ├── vcslider.cpp │ │ ├── vcslider.h │ │ ├── vcsliderproperties.cpp │ │ ├── vcsliderproperties.h │ │ ├── vcsliderproperties.ui │ │ ├── vcsoloframe.cpp │ │ ├── vcsoloframe.h │ │ ├── vcsoloframeproperties.cpp │ │ ├── vcsoloframeproperties.h │ │ ├── vcspeeddial.cpp │ │ ├── vcspeeddial.h │ │ ├── vcspeeddialfunction.cpp │ │ ├── vcspeeddialfunction.h │ │ ├── vcspeeddialpreset.cpp │ │ ├── vcspeeddialpreset.h │ │ ├── vcspeeddialproperties.cpp │ │ ├── vcspeeddialproperties.h │ │ ├── vcspeeddialproperties.ui │ │ ├── vcwidget.cpp │ │ ├── vcwidget.h │ │ ├── vcwidgetproperties.cpp │ │ ├── vcwidgetproperties.h │ │ ├── vcwidgetselection.cpp │ │ ├── vcwidgetselection.h │ │ ├── vcwidgetselection.ui │ │ ├── vcxypad.cpp │ │ ├── vcxypad.h │ │ ├── vcxypadarea.cpp │ │ ├── vcxypadarea.h │ │ ├── vcxypadfixture.cpp │ │ ├── vcxypadfixture.h │ │ ├── vcxypadfixtureeditor.cpp │ │ ├── vcxypadfixtureeditor.h │ │ ├── vcxypadfixtureeditor.ui │ │ ├── vcxypadpreset.cpp │ │ ├── vcxypadpreset.h │ │ ├── vcxypadproperties.cpp │ │ ├── vcxypadproperties.h │ │ ├── vcxypadproperties.ui │ │ ├── virtualconsole.cpp │ │ └── virtualconsole.h ├── test │ ├── CMakeLists.txt │ ├── aboutbox │ │ ├── CMakeLists.txt │ │ ├── aboutbox.pro │ │ ├── aboutbox_test.cpp │ │ ├── aboutbox_test.h │ │ └── test.sh │ ├── addfixture │ │ ├── CMakeLists.txt │ │ ├── addfixture.pro │ │ ├── addfixture_test.cpp │ │ ├── addfixture_test.h │ │ └── test.sh │ ├── assignhotkey │ │ ├── CMakeLists.txt │ │ ├── assignhotkey.pro │ │ ├── assignhotkey_test.cpp │ │ ├── assignhotkey_test.h │ │ └── test.sh │ ├── audiobar │ │ ├── CMakeLists.txt │ │ ├── audiobar.pro │ │ ├── audiobar_test.cpp │ │ ├── audiobar_test.h │ │ └── test.sh │ ├── audiotriggerwidget │ │ ├── CMakeLists.txt │ │ ├── audiotriggerwidget.pro │ │ ├── audiotriggerwidget_test.cpp │ │ ├── audiotriggerwidget_test.h │ │ └── test.sh │ ├── efxpreviewarea │ │ ├── CMakeLists.txt │ │ ├── efxpreviewarea.pro │ │ ├── efxpreviewarea_test.cpp │ │ ├── efxpreviewarea_test.h │ │ └── test.sh │ ├── fixtureselection │ │ ├── CMakeLists.txt │ │ ├── fixtureselection.pro │ │ ├── fixtureselection_test.cpp │ │ ├── fixtureselection_test.h │ │ └── test.sh │ ├── fixturetreewidget │ │ ├── CMakeLists.txt │ │ ├── fixturetreewidget.pro │ │ ├── fixturetreewidget_test.cpp │ │ ├── fixturetreewidget_test.h │ │ └── test.sh │ ├── functionselection │ │ ├── CMakeLists.txt │ │ ├── functionselection.pro │ │ ├── functionselection_test.cpp │ │ ├── functionselection_test.h │ │ └── test.sh │ ├── monitorfixture │ │ ├── CMakeLists.txt │ │ ├── monitorfixture.pro │ │ ├── monitorfixture_test.cpp │ │ ├── monitorfixture_test.h │ │ └── test.sh │ ├── monitorfixtureitem │ │ ├── CMakeLists.txt │ │ ├── monitorfixtureitem.pro │ │ ├── monitorfixtureitem_test.cpp │ │ ├── monitorfixtureitem_test.h │ │ └── test.sh │ ├── palettegenerator │ │ ├── CMakeLists.txt │ │ ├── palettegenerator.pro │ │ ├── palettegenerator_test.cpp │ │ ├── palettegenerator_test.h │ │ └── test.sh │ ├── positiontool │ │ ├── CMakeLists.txt │ │ ├── positiontool.pro │ │ ├── positiontool_test.cpp │ │ ├── positiontool_test.h │ │ └── test.sh │ ├── rgbitem │ │ ├── CMakeLists.txt │ │ ├── rgbitem.pro │ │ ├── rgbitem_test.cpp │ │ ├── rgbitem_test.h │ │ └── test.sh │ ├── simpledeskengine │ │ ├── CMakeLists.txt │ │ ├── simpledeskengine.pro │ │ ├── simpledeskengine_test.cpp │ │ ├── simpledeskengine_test.h │ │ └── test.sh │ ├── speeddial │ │ ├── CMakeLists.txt │ │ ├── speeddial.pro │ │ ├── speeddial_test.cpp │ │ ├── speeddial_test.h │ │ └── test.sh │ ├── test.pro │ ├── vcbutton │ │ ├── CMakeLists.txt │ │ ├── test.sh │ │ ├── vcbutton.pro │ │ ├── vcbutton_test.cpp │ │ └── vcbutton_test.h │ ├── vccuelist │ │ ├── CMakeLists.txt │ │ ├── test.sh │ │ ├── vccuelist.pro │ │ ├── vccuelist_test.cpp │ │ └── vccuelist_test.h │ ├── vcframe │ │ ├── CMakeLists.txt │ │ ├── test.sh │ │ ├── vcframe.pro │ │ ├── vcframe_test.cpp │ │ └── vcframe_test.h │ ├── vcframeproperties │ │ ├── CMakeLists.txt │ │ ├── test.sh │ │ ├── vcframeproperties.pro │ │ ├── vcframeproperties_test.cpp │ │ └── vcframeproperties_test.h │ ├── vclabel │ │ ├── CMakeLists.txt │ │ ├── test.sh │ │ ├── vclabel.pro │ │ ├── vclabel_test.cpp │ │ └── vclabel_test.h │ ├── vcproperties │ │ ├── CMakeLists.txt │ │ ├── test.sh │ │ ├── vcproperties.pro │ │ ├── vcproperties_test.cpp │ │ └── vcproperties_test.h │ ├── vcwidget │ │ ├── CMakeLists.txt │ │ ├── stubwidget.cpp │ │ ├── stubwidget.h │ │ ├── test.sh │ │ ├── vcwidget.pro │ │ ├── vcwidget_test.cpp │ │ └── vcwidget_test.h │ ├── vcwidgetproperties │ │ ├── CMakeLists.txt │ │ ├── test.sh │ │ ├── vcwidgetproperties.pro │ │ ├── vcwidgetproperties_test.cpp │ │ └── vcwidgetproperties_test.h │ ├── vcxypad │ │ ├── CMakeLists.txt │ │ ├── test.sh │ │ ├── vcxypad.pro │ │ ├── vcxypad_test.cpp │ │ └── vcxypad_test.h │ ├── vcxypadarea │ │ ├── CMakeLists.txt │ │ ├── test.sh │ │ ├── vcxypadarea.pro │ │ ├── vcxypadarea_test.cpp │ │ └── vcxypadarea_test.h │ ├── vcxypadfixture │ │ ├── CMakeLists.txt │ │ ├── test.sh │ │ ├── vcxypadfixture.pro │ │ ├── vcxypadfixture_test.cpp │ │ └── vcxypadfixture_test.h │ └── vcxypadfixtureeditor │ │ ├── CMakeLists.txt │ │ ├── test.sh │ │ ├── vcxypadfixtureeditor.pro │ │ ├── vcxypadfixtureeditor_test.cpp │ │ └── vcxypadfixtureeditor_test.h └── ui.pro ├── unittest.bat ├── unittest.sh ├── unittest_cmake.sh ├── variables.cmake ├── variables.pri └── webaccess ├── CMakeLists.txt ├── res ├── CMakeLists.txt ├── Test_Web_API.html ├── common.css ├── configuration.js ├── favicon-192x192.png ├── favicon.ico ├── keypad.html ├── networkconfig.js ├── res.pro ├── simpledesk.css ├── simpledesk.js ├── virtualconsole.css ├── virtualconsole.js └── websocket.js ├── src ├── CMakeLists.txt ├── commonjscss.h ├── qhttpserver │ ├── http-parser.LICENSE-MIT │ ├── http_parser.c │ ├── http_parser.h │ ├── qhttpconnection.cpp │ ├── qhttpconnection.h │ ├── qhttprequest.cpp │ ├── qhttprequest.h │ ├── qhttpresponse.cpp │ ├── qhttpresponse.h │ ├── qhttpserver.LICENSE │ ├── qhttpserver.cpp │ ├── qhttpserver.h │ └── qhttpserverfwd.h ├── src.pro ├── webaccess.cpp ├── webaccess.h ├── webaccess_ca_ES.ts ├── webaccess_cz_CZ.ts ├── webaccess_de_DE.ts ├── webaccess_es_ES.ts ├── webaccess_fi_FI.ts ├── webaccess_fr_FR.ts ├── webaccess_it_IT.ts ├── webaccess_ja_JP.ts ├── webaccess_nl_NL.ts ├── webaccess_pt_BR.ts ├── webaccessauth.cpp ├── webaccessauth.h ├── webaccessconfiguration.cpp ├── webaccessconfiguration.h ├── webaccessnetwork.cpp ├── webaccessnetwork.h ├── webaccesssimpledesk.cpp └── webaccesssimpledesk.h └── webaccess.pro /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/.gitignore -------------------------------------------------------------------------------- /.obs/workflows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/.obs/workflows.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/README.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /check-licenses.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/check-licenses.sh -------------------------------------------------------------------------------- /cmake_uninstall.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/cmake_uninstall.cmake.in -------------------------------------------------------------------------------- /coverage.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/coverage.cmake -------------------------------------------------------------------------------- /coverage.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/coverage.pri -------------------------------------------------------------------------------- /coverage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/coverage.sh -------------------------------------------------------------------------------- /coverage_cmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/coverage_cmake.sh -------------------------------------------------------------------------------- /create-appimage-cmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/create-appimage-cmake.sh -------------------------------------------------------------------------------- /create-appimage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/create-appimage.sh -------------------------------------------------------------------------------- /create-deb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/create-deb.sh -------------------------------------------------------------------------------- /create-dmg-cmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/create-dmg-cmake.sh -------------------------------------------------------------------------------- /create-dmg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/create-dmg.sh -------------------------------------------------------------------------------- /create-exe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/create-exe.sh -------------------------------------------------------------------------------- /create-rpm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/create-rpm.sh -------------------------------------------------------------------------------- /debian/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/debian/.gitignore -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/changelog-old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/debian/changelog-old -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/qlcplus-ola.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/debian/qlcplus-ola.install -------------------------------------------------------------------------------- /debian/qlcplus.docs: -------------------------------------------------------------------------------- 1 | README.md 2 | -------------------------------------------------------------------------------- /debian/qlcplus.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/debian/qlcplus.install -------------------------------------------------------------------------------- /debian/qlcplus.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/debian/qlcplus.menu -------------------------------------------------------------------------------- /debian/qlcplus.postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/debian/qlcplus.postinst -------------------------------------------------------------------------------- /debian/qlcplus.postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/debian/qlcplus.postrm -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/debian/rules -------------------------------------------------------------------------------- /engine/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/CMakeLists.txt -------------------------------------------------------------------------------- /engine/audio/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/audio/CMakeLists.txt -------------------------------------------------------------------------------- /engine/audio/audio.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/audio/audio.pro -------------------------------------------------------------------------------- /engine/audio/src/audio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/audio/src/audio.cpp -------------------------------------------------------------------------------- /engine/audio/src/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/audio/src/audio.h -------------------------------------------------------------------------------- /engine/audio/src/src.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/audio/src/src.pro -------------------------------------------------------------------------------- /engine/engine.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/engine.pro -------------------------------------------------------------------------------- /engine/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/CMakeLists.txt -------------------------------------------------------------------------------- /engine/src/avolitesd4parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/avolitesd4parser.h -------------------------------------------------------------------------------- /engine/src/bus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/bus.cpp -------------------------------------------------------------------------------- /engine/src/bus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/bus.h -------------------------------------------------------------------------------- /engine/src/channelmodifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/channelmodifier.h -------------------------------------------------------------------------------- /engine/src/channelsgroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/channelsgroup.cpp -------------------------------------------------------------------------------- /engine/src/channelsgroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/channelsgroup.h -------------------------------------------------------------------------------- /engine/src/chaser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/chaser.cpp -------------------------------------------------------------------------------- /engine/src/chaser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/chaser.h -------------------------------------------------------------------------------- /engine/src/chaseraction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/chaseraction.h -------------------------------------------------------------------------------- /engine/src/chaserrunner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/chaserrunner.cpp -------------------------------------------------------------------------------- /engine/src/chaserrunner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/chaserrunner.h -------------------------------------------------------------------------------- /engine/src/chaserstep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/chaserstep.cpp -------------------------------------------------------------------------------- /engine/src/chaserstep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/chaserstep.h -------------------------------------------------------------------------------- /engine/src/collection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/collection.cpp -------------------------------------------------------------------------------- /engine/src/collection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/collection.h -------------------------------------------------------------------------------- /engine/src/cue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/cue.cpp -------------------------------------------------------------------------------- /engine/src/cue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/cue.h -------------------------------------------------------------------------------- /engine/src/cuestack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/cuestack.cpp -------------------------------------------------------------------------------- /engine/src/cuestack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/cuestack.h -------------------------------------------------------------------------------- /engine/src/dmxsource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/dmxsource.h -------------------------------------------------------------------------------- /engine/src/doc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/doc.cpp -------------------------------------------------------------------------------- /engine/src/doc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/doc.h -------------------------------------------------------------------------------- /engine/src/efx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/efx.cpp -------------------------------------------------------------------------------- /engine/src/efx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/efx.h -------------------------------------------------------------------------------- /engine/src/efxfixture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/efxfixture.cpp -------------------------------------------------------------------------------- /engine/src/efxfixture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/efxfixture.h -------------------------------------------------------------------------------- /engine/src/fadechannel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/fadechannel.cpp -------------------------------------------------------------------------------- /engine/src/fadechannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/fadechannel.h -------------------------------------------------------------------------------- /engine/src/fixture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/fixture.cpp -------------------------------------------------------------------------------- /engine/src/fixture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/fixture.h -------------------------------------------------------------------------------- /engine/src/fixturegroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/fixturegroup.cpp -------------------------------------------------------------------------------- /engine/src/fixturegroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/fixturegroup.h -------------------------------------------------------------------------------- /engine/src/function.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/function.cpp -------------------------------------------------------------------------------- /engine/src/function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/function.h -------------------------------------------------------------------------------- /engine/src/functionparent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/functionparent.h -------------------------------------------------------------------------------- /engine/src/genericdmxsource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/genericdmxsource.h -------------------------------------------------------------------------------- /engine/src/genericfader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/genericfader.cpp -------------------------------------------------------------------------------- /engine/src/genericfader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/genericfader.h -------------------------------------------------------------------------------- /engine/src/gradient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/gradient.cpp -------------------------------------------------------------------------------- /engine/src/gradient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/gradient.h -------------------------------------------------------------------------------- /engine/src/grandmaster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/grandmaster.cpp -------------------------------------------------------------------------------- /engine/src/grandmaster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/grandmaster.h -------------------------------------------------------------------------------- /engine/src/grouphead.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/grouphead.cpp -------------------------------------------------------------------------------- /engine/src/grouphead.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/grouphead.h -------------------------------------------------------------------------------- /engine/src/inputoutputmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/inputoutputmap.cpp -------------------------------------------------------------------------------- /engine/src/inputoutputmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/inputoutputmap.h -------------------------------------------------------------------------------- /engine/src/inputpatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/inputpatch.cpp -------------------------------------------------------------------------------- /engine/src/inputpatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/inputpatch.h -------------------------------------------------------------------------------- /engine/src/ioplugincache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/ioplugincache.cpp -------------------------------------------------------------------------------- /engine/src/ioplugincache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/ioplugincache.h -------------------------------------------------------------------------------- /engine/src/keypadparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/keypadparser.cpp -------------------------------------------------------------------------------- /engine/src/keypadparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/keypadparser.h -------------------------------------------------------------------------------- /engine/src/mastertimer-unix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/mastertimer-unix.h -------------------------------------------------------------------------------- /engine/src/mastertimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/mastertimer.cpp -------------------------------------------------------------------------------- /engine/src/mastertimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/mastertimer.h -------------------------------------------------------------------------------- /engine/src/outputpatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/outputpatch.cpp -------------------------------------------------------------------------------- /engine/src/outputpatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/outputpatch.h -------------------------------------------------------------------------------- /engine/src/qlccapability.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/qlccapability.cpp -------------------------------------------------------------------------------- /engine/src/qlccapability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/qlccapability.h -------------------------------------------------------------------------------- /engine/src/qlcchannel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/qlcchannel.cpp -------------------------------------------------------------------------------- /engine/src/qlcchannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/qlcchannel.h -------------------------------------------------------------------------------- /engine/src/qlcclipboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/qlcclipboard.cpp -------------------------------------------------------------------------------- /engine/src/qlcclipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/qlcclipboard.h -------------------------------------------------------------------------------- /engine/src/qlcconfig.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/qlcconfig.h.in -------------------------------------------------------------------------------- /engine/src/qlcfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/qlcfile.cpp -------------------------------------------------------------------------------- /engine/src/qlcfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/qlcfile.h -------------------------------------------------------------------------------- /engine/src/qlcfixturedef.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/qlcfixturedef.cpp -------------------------------------------------------------------------------- /engine/src/qlcfixturedef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/qlcfixturedef.h -------------------------------------------------------------------------------- /engine/src/qlcfixturehead.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/qlcfixturehead.cpp -------------------------------------------------------------------------------- /engine/src/qlcfixturehead.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/qlcfixturehead.h -------------------------------------------------------------------------------- /engine/src/qlcfixturemode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/qlcfixturemode.cpp -------------------------------------------------------------------------------- /engine/src/qlcfixturemode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/qlcfixturemode.h -------------------------------------------------------------------------------- /engine/src/qlci18n.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/qlci18n.cpp -------------------------------------------------------------------------------- /engine/src/qlci18n.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/qlci18n.h -------------------------------------------------------------------------------- /engine/src/qlcinputchannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/qlcinputchannel.h -------------------------------------------------------------------------------- /engine/src/qlcinputfeedback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/qlcinputfeedback.h -------------------------------------------------------------------------------- /engine/src/qlcinputprofile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/qlcinputprofile.h -------------------------------------------------------------------------------- /engine/src/qlcinputsource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/qlcinputsource.cpp -------------------------------------------------------------------------------- /engine/src/qlcinputsource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/qlcinputsource.h -------------------------------------------------------------------------------- /engine/src/qlcpalette.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/qlcpalette.cpp -------------------------------------------------------------------------------- /engine/src/qlcpalette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/qlcpalette.h -------------------------------------------------------------------------------- /engine/src/qlcphysical.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/qlcphysical.cpp -------------------------------------------------------------------------------- /engine/src/qlcphysical.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/qlcphysical.h -------------------------------------------------------------------------------- /engine/src/qlcpoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/qlcpoint.cpp -------------------------------------------------------------------------------- /engine/src/qlcpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/qlcpoint.h -------------------------------------------------------------------------------- /engine/src/rgbalgorithm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/rgbalgorithm.cpp -------------------------------------------------------------------------------- /engine/src/rgbalgorithm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/rgbalgorithm.h -------------------------------------------------------------------------------- /engine/src/rgbaudio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/rgbaudio.cpp -------------------------------------------------------------------------------- /engine/src/rgbaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/rgbaudio.h -------------------------------------------------------------------------------- /engine/src/rgbimage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/rgbimage.cpp -------------------------------------------------------------------------------- /engine/src/rgbimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/rgbimage.h -------------------------------------------------------------------------------- /engine/src/rgbmatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/rgbmatrix.cpp -------------------------------------------------------------------------------- /engine/src/rgbmatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/rgbmatrix.h -------------------------------------------------------------------------------- /engine/src/rgbplain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/rgbplain.cpp -------------------------------------------------------------------------------- /engine/src/rgbplain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/rgbplain.h -------------------------------------------------------------------------------- /engine/src/rgbscript.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/rgbscript.cpp -------------------------------------------------------------------------------- /engine/src/rgbscript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/rgbscript.h -------------------------------------------------------------------------------- /engine/src/rgbscriptscache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/rgbscriptscache.h -------------------------------------------------------------------------------- /engine/src/rgbscriptv4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/rgbscriptv4.cpp -------------------------------------------------------------------------------- /engine/src/rgbscriptv4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/rgbscriptv4.h -------------------------------------------------------------------------------- /engine/src/rgbtext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/rgbtext.cpp -------------------------------------------------------------------------------- /engine/src/rgbtext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/rgbtext.h -------------------------------------------------------------------------------- /engine/src/scene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/scene.cpp -------------------------------------------------------------------------------- /engine/src/scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/scene.h -------------------------------------------------------------------------------- /engine/src/scenevalue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/scenevalue.cpp -------------------------------------------------------------------------------- /engine/src/scenevalue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/scenevalue.h -------------------------------------------------------------------------------- /engine/src/script.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/script.cpp -------------------------------------------------------------------------------- /engine/src/script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/script.h -------------------------------------------------------------------------------- /engine/src/scriptrunner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/scriptrunner.cpp -------------------------------------------------------------------------------- /engine/src/scriptrunner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/scriptrunner.h -------------------------------------------------------------------------------- /engine/src/scriptv4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/scriptv4.cpp -------------------------------------------------------------------------------- /engine/src/scriptv4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/scriptv4.h -------------------------------------------------------------------------------- /engine/src/scriptwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/scriptwrapper.h -------------------------------------------------------------------------------- /engine/src/sequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/sequence.cpp -------------------------------------------------------------------------------- /engine/src/sequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/sequence.h -------------------------------------------------------------------------------- /engine/src/show.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/show.cpp -------------------------------------------------------------------------------- /engine/src/show.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/show.h -------------------------------------------------------------------------------- /engine/src/showfunction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/showfunction.cpp -------------------------------------------------------------------------------- /engine/src/showfunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/showfunction.h -------------------------------------------------------------------------------- /engine/src/showrunner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/showrunner.cpp -------------------------------------------------------------------------------- /engine/src/showrunner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/showrunner.h -------------------------------------------------------------------------------- /engine/src/src.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/src.pro -------------------------------------------------------------------------------- /engine/src/track.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/track.cpp -------------------------------------------------------------------------------- /engine/src/track.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/track.h -------------------------------------------------------------------------------- /engine/src/universe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/universe.cpp -------------------------------------------------------------------------------- /engine/src/universe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/universe.h -------------------------------------------------------------------------------- /engine/src/video.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/video.cpp -------------------------------------------------------------------------------- /engine/src/video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/src/video.h -------------------------------------------------------------------------------- /engine/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/test/CMakeLists.txt -------------------------------------------------------------------------------- /engine/test/bus/bus.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/test/bus/bus.pro -------------------------------------------------------------------------------- /engine/test/bus/bus_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/test/bus/bus_test.cpp -------------------------------------------------------------------------------- /engine/test/bus/bus_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/test/bus/bus_test.h -------------------------------------------------------------------------------- /engine/test/bus/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/test/bus/test.sh -------------------------------------------------------------------------------- /engine/test/chaser/chaser.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/test/chaser/chaser.pro -------------------------------------------------------------------------------- /engine/test/chaser/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/test/chaser/test.sh -------------------------------------------------------------------------------- /engine/test/common/test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | echo "Nothing to test here." 3 | exit 0 4 | -------------------------------------------------------------------------------- /engine/test/cue/cue.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/test/cue/cue.pro -------------------------------------------------------------------------------- /engine/test/cue/cue_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/test/cue/cue_test.cpp -------------------------------------------------------------------------------- /engine/test/cue/cue_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/test/cue/cue_test.h -------------------------------------------------------------------------------- /engine/test/cue/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/test/cue/test.sh -------------------------------------------------------------------------------- /engine/test/cuestack/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/test/cuestack/test.sh -------------------------------------------------------------------------------- /engine/test/doc/doc.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/test/doc/doc.pro -------------------------------------------------------------------------------- /engine/test/doc/doc_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/test/doc/doc_test.cpp -------------------------------------------------------------------------------- /engine/test/doc/doc_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/test/doc/doc_test.h -------------------------------------------------------------------------------- /engine/test/doc/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/test/doc/test.sh -------------------------------------------------------------------------------- /engine/test/efx/efx.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/test/efx/efx.pro -------------------------------------------------------------------------------- /engine/test/efx/efx_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/test/efx/efx_test.cpp -------------------------------------------------------------------------------- /engine/test/efx/efx_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/test/efx/efx_test.h -------------------------------------------------------------------------------- /engine/test/efx/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/test/efx/test.sh -------------------------------------------------------------------------------- /engine/test/fixture/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/test/fixture/test.sh -------------------------------------------------------------------------------- /engine/test/function/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/test/function/test.sh -------------------------------------------------------------------------------- /engine/test/iopluginstub/test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | echo "Nothing to test here." 3 | exit 0 4 | -------------------------------------------------------------------------------- /engine/test/qlcfile/.gitignore: -------------------------------------------------------------------------------- 1 | readonly.xml 2 | -------------------------------------------------------------------------------- /engine/test/qlcfile/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/test/qlcfile/test.sh -------------------------------------------------------------------------------- /engine/test/qlci18n/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/test/qlci18n/test.sh -------------------------------------------------------------------------------- /engine/test/qlcmacros/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/test/qlcmacros/test.sh -------------------------------------------------------------------------------- /engine/test/qlcpoint/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/test/qlcpoint/test.sh -------------------------------------------------------------------------------- /engine/test/rgbmatrix/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/test/rgbmatrix/test.sh -------------------------------------------------------------------------------- /engine/test/rgbplain/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/test/rgbplain/test.sh -------------------------------------------------------------------------------- /engine/test/rgbscript/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/test/rgbscript/test.sh -------------------------------------------------------------------------------- /engine/test/rgbtext/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/test/rgbtext/test.sh -------------------------------------------------------------------------------- /engine/test/scene/scene.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/test/scene/scene.pro -------------------------------------------------------------------------------- /engine/test/scene/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/test/scene/test.sh -------------------------------------------------------------------------------- /engine/test/script/script.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/test/script/script.pro -------------------------------------------------------------------------------- /engine/test/script/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/test/script/test.sh -------------------------------------------------------------------------------- /engine/test/sequence/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/test/sequence/test.sh -------------------------------------------------------------------------------- /engine/test/show/show.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/test/show/show.pro -------------------------------------------------------------------------------- /engine/test/show/show_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/test/show/show_test.h -------------------------------------------------------------------------------- /engine/test/show/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/test/show/test.sh -------------------------------------------------------------------------------- /engine/test/test.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/test/test.pro -------------------------------------------------------------------------------- /engine/test/track/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/test/track/test.sh -------------------------------------------------------------------------------- /engine/test/track/track.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/test/track/track.pro -------------------------------------------------------------------------------- /engine/test/universe/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/test/universe/test.sh -------------------------------------------------------------------------------- /engine/test/video/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/test/video/test.sh -------------------------------------------------------------------------------- /engine/test/video/video.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/engine/test/video/video.pro -------------------------------------------------------------------------------- /fixtureeditor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/fixtureeditor/CMakeLists.txt -------------------------------------------------------------------------------- /fixtureeditor/app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/fixtureeditor/app.cpp -------------------------------------------------------------------------------- /fixtureeditor/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/fixtureeditor/app.h -------------------------------------------------------------------------------- /fixtureeditor/editchannel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/fixtureeditor/editchannel.cpp -------------------------------------------------------------------------------- /fixtureeditor/editchannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/fixtureeditor/editchannel.h -------------------------------------------------------------------------------- /fixtureeditor/editchannel.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/fixtureeditor/editchannel.ui -------------------------------------------------------------------------------- /fixtureeditor/edithead.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/fixtureeditor/edithead.cpp -------------------------------------------------------------------------------- /fixtureeditor/edithead.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/fixtureeditor/edithead.h -------------------------------------------------------------------------------- /fixtureeditor/edithead.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/fixtureeditor/edithead.ui -------------------------------------------------------------------------------- /fixtureeditor/editmode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/fixtureeditor/editmode.cpp -------------------------------------------------------------------------------- /fixtureeditor/editmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/fixtureeditor/editmode.h -------------------------------------------------------------------------------- /fixtureeditor/editmode.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/fixtureeditor/editmode.ui -------------------------------------------------------------------------------- /fixtureeditor/editphysical.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/fixtureeditor/editphysical.h -------------------------------------------------------------------------------- /fixtureeditor/editphysical.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/fixtureeditor/editphysical.ui -------------------------------------------------------------------------------- /fixtureeditor/fixtureeditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/fixtureeditor/fixtureeditor.h -------------------------------------------------------------------------------- /fixtureeditor/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/fixtureeditor/main.cpp -------------------------------------------------------------------------------- /fixtureeditor/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/fixtureeditor/util.h -------------------------------------------------------------------------------- /hotplugmonitor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/hotplugmonitor/CMakeLists.txt -------------------------------------------------------------------------------- /hotplugmonitor/src/src.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/hotplugmonitor/src/src.pro -------------------------------------------------------------------------------- /hotplugmonitor/test/hpmtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/hotplugmonitor/test/hpmtest.h -------------------------------------------------------------------------------- /hotplugmonitor/test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/hotplugmonitor/test/main.cpp -------------------------------------------------------------------------------- /hotplugmonitor/test/test.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/hotplugmonitor/test/test.pro -------------------------------------------------------------------------------- /hotplugmonitor/test/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/hotplugmonitor/test/test.sh -------------------------------------------------------------------------------- /launcher/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/launcher/CMakeLists.txt -------------------------------------------------------------------------------- /launcher/launcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/launcher/launcher.cpp -------------------------------------------------------------------------------- /launcher/launcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/launcher/launcher.h -------------------------------------------------------------------------------- /launcher/launcher.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/launcher/launcher.pro -------------------------------------------------------------------------------- /launcher/launcher.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/launcher/launcher.qrc -------------------------------------------------------------------------------- /launcher/launcher_ca_ES.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/launcher/launcher_ca_ES.ts -------------------------------------------------------------------------------- /launcher/launcher_cz_CZ.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/launcher/launcher_cz_CZ.ts -------------------------------------------------------------------------------- /launcher/launcher_de_DE.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/launcher/launcher_de_DE.ts -------------------------------------------------------------------------------- /launcher/launcher_es_ES.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/launcher/launcher_es_ES.ts -------------------------------------------------------------------------------- /launcher/launcher_fi_FI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/launcher/launcher_fi_FI.ts -------------------------------------------------------------------------------- /launcher/launcher_fr_FR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/launcher/launcher_fr_FR.ts -------------------------------------------------------------------------------- /launcher/launcher_it_IT.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/launcher/launcher_it_IT.ts -------------------------------------------------------------------------------- /launcher/launcher_ja_JP.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/launcher/launcher_ja_JP.ts -------------------------------------------------------------------------------- /launcher/launcher_nl_NL.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/launcher/launcher_nl_NL.ts -------------------------------------------------------------------------------- /launcher/launcher_pt_BR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/launcher/launcher_pt_BR.ts -------------------------------------------------------------------------------- /launcher/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/launcher/main.cpp -------------------------------------------------------------------------------- /main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/main/CMakeLists.txt -------------------------------------------------------------------------------- /main/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/main/main.cpp -------------------------------------------------------------------------------- /main/main.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/main/main.pro -------------------------------------------------------------------------------- /main/main.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/main/main.rc -------------------------------------------------------------------------------- /platforms/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/platforms/CMakeLists.txt -------------------------------------------------------------------------------- /platforms/android/.gitignore: -------------------------------------------------------------------------------- 1 | assets -------------------------------------------------------------------------------- /platforms/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/platforms/android/gradlew -------------------------------------------------------------------------------- /platforms/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/platforms/android/gradlew.bat -------------------------------------------------------------------------------- /platforms/ios/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/platforms/ios/Info.plist -------------------------------------------------------------------------------- /platforms/ios/qlcplus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/platforms/ios/qlcplus.png -------------------------------------------------------------------------------- /platforms/linux/linux.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/platforms/linux/linux.pro -------------------------------------------------------------------------------- /platforms/linux/qlcplus.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/platforms/linux/qlcplus.1 -------------------------------------------------------------------------------- /platforms/linux/qlcplus.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/platforms/linux/qlcplus.spec -------------------------------------------------------------------------------- /platforms/linux/qlcplus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/platforms/linux/qlcplus.xml -------------------------------------------------------------------------------- /platforms/macos/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/platforms/macos/Info.plist -------------------------------------------------------------------------------- /platforms/macos/qt.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/platforms/macos/qt.conf -------------------------------------------------------------------------------- /platforms/macos/svg2icns.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/platforms/macos/svg2icns.sh -------------------------------------------------------------------------------- /platforms/platforms.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/platforms/platforms.pro -------------------------------------------------------------------------------- /platforms/windows/windows.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/platforms/windows/windows.pro -------------------------------------------------------------------------------- /plugins/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/E1.31/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/E1.31/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/E1.31/E1.31.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/E1.31/E1.31.pro -------------------------------------------------------------------------------- /plugins/E1.31/E131_ca_ES.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/E1.31/E131_ca_ES.ts -------------------------------------------------------------------------------- /plugins/E1.31/E131_cz_CZ.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/E1.31/E131_cz_CZ.ts -------------------------------------------------------------------------------- /plugins/E1.31/E131_de_DE.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/E1.31/E131_de_DE.ts -------------------------------------------------------------------------------- /plugins/E1.31/E131_es_ES.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/E1.31/E131_es_ES.ts -------------------------------------------------------------------------------- /plugins/E1.31/E131_fi_FI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/E1.31/E131_fi_FI.ts -------------------------------------------------------------------------------- /plugins/E1.31/E131_fr_FR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/E1.31/E131_fr_FR.ts -------------------------------------------------------------------------------- /plugins/E1.31/E131_it_IT.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/E1.31/E131_it_IT.ts -------------------------------------------------------------------------------- /plugins/E1.31/E131_ja_JP.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/E1.31/E131_ja_JP.ts -------------------------------------------------------------------------------- /plugins/E1.31/E131_nl_NL.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/E1.31/E131_nl_NL.ts -------------------------------------------------------------------------------- /plugins/E1.31/E131_pt_BR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/E1.31/E131_pt_BR.ts -------------------------------------------------------------------------------- /plugins/E1.31/configuree131.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/E1.31/configuree131.h -------------------------------------------------------------------------------- /plugins/E1.31/e131plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/E1.31/e131plugin.cpp -------------------------------------------------------------------------------- /plugins/E1.31/e131plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/E1.31/e131plugin.h -------------------------------------------------------------------------------- /plugins/artnet/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/artnet/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/artnet/artnet.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/artnet/artnet.pro -------------------------------------------------------------------------------- /plugins/artnet/src/src.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/artnet/src/src.pro -------------------------------------------------------------------------------- /plugins/artnet/test/test.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/artnet/test/test.pro -------------------------------------------------------------------------------- /plugins/artnet/test/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/artnet/test/test.sh -------------------------------------------------------------------------------- /plugins/dmx4linux/dmx4linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/dmx4linux/dmx4linux.h -------------------------------------------------------------------------------- /plugins/dmxusb/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | project(dmxusb) 2 | 3 | add_subdirectory(src) 4 | -------------------------------------------------------------------------------- /plugins/dmxusb/dmxusb.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = subdirs 2 | CONFIG += ordered 3 | SUBDIRS += src 4 | -------------------------------------------------------------------------------- /plugins/dmxusb/src/dmxusb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/dmxusb/src/dmxusb.cpp -------------------------------------------------------------------------------- /plugins/dmxusb/src/dmxusb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/dmxusb/src/dmxusb.h -------------------------------------------------------------------------------- /plugins/dmxusb/src/nanodmx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/dmxusb/src/nanodmx.h -------------------------------------------------------------------------------- /plugins/dmxusb/src/src.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/dmxusb/src/src.pro -------------------------------------------------------------------------------- /plugins/dummy/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/dummy/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/dummy/dummy.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/dummy/dummy.pro -------------------------------------------------------------------------------- /plugins/dummy/dummyplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/dummy/dummyplugin.cpp -------------------------------------------------------------------------------- /plugins/dummy/dummyplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/dummy/dummyplugin.h -------------------------------------------------------------------------------- /plugins/enttecwing/src/wing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/enttecwing/src/wing.h -------------------------------------------------------------------------------- /plugins/gpio/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/gpio/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/gpio/GPIO_ca_ES.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/gpio/GPIO_ca_ES.ts -------------------------------------------------------------------------------- /plugins/gpio/GPIO_cz_CZ.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/gpio/GPIO_cz_CZ.ts -------------------------------------------------------------------------------- /plugins/gpio/GPIO_de_DE.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/gpio/GPIO_de_DE.ts -------------------------------------------------------------------------------- /plugins/gpio/GPIO_es_ES.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/gpio/GPIO_es_ES.ts -------------------------------------------------------------------------------- /plugins/gpio/GPIO_fi_FI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/gpio/GPIO_fi_FI.ts -------------------------------------------------------------------------------- /plugins/gpio/GPIO_fr_FR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/gpio/GPIO_fr_FR.ts -------------------------------------------------------------------------------- /plugins/gpio/GPIO_it_IT.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/gpio/GPIO_it_IT.ts -------------------------------------------------------------------------------- /plugins/gpio/GPIO_ja_JP.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/gpio/GPIO_ja_JP.ts -------------------------------------------------------------------------------- /plugins/gpio/GPIO_nl_NL.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/gpio/GPIO_nl_NL.ts -------------------------------------------------------------------------------- /plugins/gpio/GPIO_pt_BR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/gpio/GPIO_pt_BR.ts -------------------------------------------------------------------------------- /plugins/gpio/gpio.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/gpio/gpio.pro -------------------------------------------------------------------------------- /plugins/gpio/gpioplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/gpio/gpioplugin.cpp -------------------------------------------------------------------------------- /plugins/gpio/gpioplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/gpio/gpioplugin.h -------------------------------------------------------------------------------- /plugins/hid/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/hid/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/hid/HID_ca_ES.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/hid/HID_ca_ES.ts -------------------------------------------------------------------------------- /plugins/hid/HID_cz_CZ.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/hid/HID_cz_CZ.ts -------------------------------------------------------------------------------- /plugins/hid/HID_de_DE.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/hid/HID_de_DE.ts -------------------------------------------------------------------------------- /plugins/hid/HID_es_ES.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/hid/HID_es_ES.ts -------------------------------------------------------------------------------- /plugins/hid/HID_fi_FI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/hid/HID_fi_FI.ts -------------------------------------------------------------------------------- /plugins/hid/HID_fr_FR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/hid/HID_fr_FR.ts -------------------------------------------------------------------------------- /plugins/hid/HID_it_IT.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/hid/HID_it_IT.ts -------------------------------------------------------------------------------- /plugins/hid/HID_ja_JP.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/hid/HID_ja_JP.ts -------------------------------------------------------------------------------- /plugins/hid/HID_nl_NL.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/hid/HID_nl_NL.ts -------------------------------------------------------------------------------- /plugins/hid/HID_pt_BR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/hid/HID_pt_BR.ts -------------------------------------------------------------------------------- /plugins/hid/configurehid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/hid/configurehid.cpp -------------------------------------------------------------------------------- /plugins/hid/configurehid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/hid/configurehid.h -------------------------------------------------------------------------------- /plugins/hid/configurehid.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/hid/configurehid.ui -------------------------------------------------------------------------------- /plugins/hid/hid.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/hid/hid.pro -------------------------------------------------------------------------------- /plugins/hid/hidapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/hid/hidapi.h -------------------------------------------------------------------------------- /plugins/hid/hiddevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/hid/hiddevice.cpp -------------------------------------------------------------------------------- /plugins/hid/hiddevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/hid/hiddevice.h -------------------------------------------------------------------------------- /plugins/hid/hiddmxdevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/hid/hiddmxdevice.cpp -------------------------------------------------------------------------------- /plugins/hid/hiddmxdevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/hid/hiddmxdevice.h -------------------------------------------------------------------------------- /plugins/hid/hidjsdevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/hid/hidjsdevice.cpp -------------------------------------------------------------------------------- /plugins/hid/hidjsdevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/hid/hidjsdevice.h -------------------------------------------------------------------------------- /plugins/hid/hidplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/hid/hidplugin.cpp -------------------------------------------------------------------------------- /plugins/hid/hidplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/hid/hidplugin.h -------------------------------------------------------------------------------- /plugins/hid/linux/hidapi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/hid/linux/hidapi.cpp -------------------------------------------------------------------------------- /plugins/hid/macx/hidapi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/hid/macx/hidapi.cpp -------------------------------------------------------------------------------- /plugins/hid/win32/hidapi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/hid/win32/hidapi.cpp -------------------------------------------------------------------------------- /plugins/interfaces/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/interfaces/utils.h -------------------------------------------------------------------------------- /plugins/loopback/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | project(loopback) 2 | 3 | add_subdirectory(src) 4 | -------------------------------------------------------------------------------- /plugins/loopback/loopback.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = subdirs 2 | CONFIG += ordered 3 | SUBDIRS += src 4 | -------------------------------------------------------------------------------- /plugins/loopback/src/src.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/loopback/src/src.pro -------------------------------------------------------------------------------- /plugins/midi/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/midi/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/midi/midi.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/midi/midi.pro -------------------------------------------------------------------------------- /plugins/midi/src/src.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/midi/src/src.pro -------------------------------------------------------------------------------- /plugins/midi/test/midi_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/midi/test/midi_test.h -------------------------------------------------------------------------------- /plugins/midi/test/test.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/midi/test/test.pro -------------------------------------------------------------------------------- /plugins/midi/test/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/midi/test/test.sh -------------------------------------------------------------------------------- /plugins/ola/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/ola/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/ola/OLA_ca_ES.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/ola/OLA_ca_ES.ts -------------------------------------------------------------------------------- /plugins/ola/OLA_cz_CZ.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/ola/OLA_cz_CZ.ts -------------------------------------------------------------------------------- /plugins/ola/OLA_de_DE.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/ola/OLA_de_DE.ts -------------------------------------------------------------------------------- /plugins/ola/OLA_es_ES.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/ola/OLA_es_ES.ts -------------------------------------------------------------------------------- /plugins/ola/OLA_fi_FI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/ola/OLA_fi_FI.ts -------------------------------------------------------------------------------- /plugins/ola/OLA_fr_FR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/ola/OLA_fr_FR.ts -------------------------------------------------------------------------------- /plugins/ola/OLA_it_IT.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/ola/OLA_it_IT.ts -------------------------------------------------------------------------------- /plugins/ola/OLA_ja_JP.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/ola/OLA_ja_JP.ts -------------------------------------------------------------------------------- /plugins/ola/OLA_nl_NL.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/ola/OLA_nl_NL.ts -------------------------------------------------------------------------------- /plugins/ola/OLA_pt_BR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/ola/OLA_pt_BR.ts -------------------------------------------------------------------------------- /plugins/ola/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/ola/README -------------------------------------------------------------------------------- /plugins/ola/configureolaio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/ola/configureolaio.h -------------------------------------------------------------------------------- /plugins/ola/configureolaio.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/ola/configureolaio.ui -------------------------------------------------------------------------------- /plugins/ola/ola.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/ola/ola.pro -------------------------------------------------------------------------------- /plugins/ola/olaio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/ola/olaio.cpp -------------------------------------------------------------------------------- /plugins/ola/olaio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/ola/olaio.h -------------------------------------------------------------------------------- /plugins/ola/olaoutthread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/ola/olaoutthread.cpp -------------------------------------------------------------------------------- /plugins/ola/olaoutthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/ola/olaoutthread.h -------------------------------------------------------------------------------- /plugins/os2l/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/os2l/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/os2l/OS2L_ca_ES.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/os2l/OS2L_ca_ES.ts -------------------------------------------------------------------------------- /plugins/os2l/OS2L_de_DE.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/os2l/OS2L_de_DE.ts -------------------------------------------------------------------------------- /plugins/os2l/OS2L_es_ES.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/os2l/OS2L_es_ES.ts -------------------------------------------------------------------------------- /plugins/os2l/OS2L_fr_FR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/os2l/OS2L_fr_FR.ts -------------------------------------------------------------------------------- /plugins/os2l/OS2L_it_IT.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/os2l/OS2L_it_IT.ts -------------------------------------------------------------------------------- /plugins/os2l/OS2L_ja_JP.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/os2l/OS2L_ja_JP.ts -------------------------------------------------------------------------------- /plugins/os2l/OS2L_nl_NL.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/os2l/OS2L_nl_NL.ts -------------------------------------------------------------------------------- /plugins/os2l/os2l.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/os2l/os2l.pro -------------------------------------------------------------------------------- /plugins/os2l/os2lplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/os2l/os2lplugin.cpp -------------------------------------------------------------------------------- /plugins/os2l/os2lplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/os2l/os2lplugin.h -------------------------------------------------------------------------------- /plugins/osc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/osc/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/osc/OSC_ca_ES.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/osc/OSC_ca_ES.ts -------------------------------------------------------------------------------- /plugins/osc/OSC_cz_CZ.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/osc/OSC_cz_CZ.ts -------------------------------------------------------------------------------- /plugins/osc/OSC_de_DE.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/osc/OSC_de_DE.ts -------------------------------------------------------------------------------- /plugins/osc/OSC_es_ES.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/osc/OSC_es_ES.ts -------------------------------------------------------------------------------- /plugins/osc/OSC_fi_FI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/osc/OSC_fi_FI.ts -------------------------------------------------------------------------------- /plugins/osc/OSC_fr_FR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/osc/OSC_fr_FR.ts -------------------------------------------------------------------------------- /plugins/osc/OSC_it_IT.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/osc/OSC_it_IT.ts -------------------------------------------------------------------------------- /plugins/osc/OSC_ja_JP.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/osc/OSC_ja_JP.ts -------------------------------------------------------------------------------- /plugins/osc/OSC_nl_NL.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/osc/OSC_nl_NL.ts -------------------------------------------------------------------------------- /plugins/osc/OSC_pt_BR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/osc/OSC_pt_BR.ts -------------------------------------------------------------------------------- /plugins/osc/configureosc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/osc/configureosc.cpp -------------------------------------------------------------------------------- /plugins/osc/configureosc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/osc/configureosc.h -------------------------------------------------------------------------------- /plugins/osc/configureosc.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/osc/configureosc.ui -------------------------------------------------------------------------------- /plugins/osc/osc.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/osc/osc.pro -------------------------------------------------------------------------------- /plugins/osc/osccontroller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/osc/osccontroller.cpp -------------------------------------------------------------------------------- /plugins/osc/osccontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/osc/osccontroller.h -------------------------------------------------------------------------------- /plugins/osc/oscpacketizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/osc/oscpacketizer.cpp -------------------------------------------------------------------------------- /plugins/osc/oscpacketizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/osc/oscpacketizer.h -------------------------------------------------------------------------------- /plugins/osc/oscplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/osc/oscplugin.cpp -------------------------------------------------------------------------------- /plugins/osc/oscplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/osc/oscplugin.h -------------------------------------------------------------------------------- /plugins/peperoni/peperoni.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/peperoni/peperoni.pro -------------------------------------------------------------------------------- /plugins/plugins.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/plugins.pro -------------------------------------------------------------------------------- /plugins/spi/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/spi/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/spi/SPI_ca_ES.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/spi/SPI_ca_ES.ts -------------------------------------------------------------------------------- /plugins/spi/SPI_cz_CZ.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/spi/SPI_cz_CZ.ts -------------------------------------------------------------------------------- /plugins/spi/SPI_de_DE.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/spi/SPI_de_DE.ts -------------------------------------------------------------------------------- /plugins/spi/SPI_es_ES.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/spi/SPI_es_ES.ts -------------------------------------------------------------------------------- /plugins/spi/SPI_fi_FI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/spi/SPI_fi_FI.ts -------------------------------------------------------------------------------- /plugins/spi/SPI_fr_FR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/spi/SPI_fr_FR.ts -------------------------------------------------------------------------------- /plugins/spi/SPI_it_IT.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/spi/SPI_it_IT.ts -------------------------------------------------------------------------------- /plugins/spi/SPI_ja_JP.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/spi/SPI_ja_JP.ts -------------------------------------------------------------------------------- /plugins/spi/SPI_nl_NL.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/spi/SPI_nl_NL.ts -------------------------------------------------------------------------------- /plugins/spi/SPI_pt_BR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/spi/SPI_pt_BR.ts -------------------------------------------------------------------------------- /plugins/spi/spi.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/spi/spi.pro -------------------------------------------------------------------------------- /plugins/spi/spioutthread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/spi/spioutthread.cpp -------------------------------------------------------------------------------- /plugins/spi/spioutthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/spi/spioutthread.h -------------------------------------------------------------------------------- /plugins/spi/spiplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/spi/spiplugin.cpp -------------------------------------------------------------------------------- /plugins/spi/spiplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/spi/spiplugin.h -------------------------------------------------------------------------------- /plugins/spi/z65-spi.rules: -------------------------------------------------------------------------------- 1 | SUBSYSTEM=="spidev", MODE="0666" 2 | 3 | -------------------------------------------------------------------------------- /plugins/uart/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/uart/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/uart/UART_ca_ES.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/uart/UART_ca_ES.ts -------------------------------------------------------------------------------- /plugins/uart/UART_cz_CZ.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/uart/UART_cz_CZ.ts -------------------------------------------------------------------------------- /plugins/uart/UART_de_DE.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/uart/UART_de_DE.ts -------------------------------------------------------------------------------- /plugins/uart/UART_es_ES.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/uart/UART_es_ES.ts -------------------------------------------------------------------------------- /plugins/uart/UART_fi_FI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/uart/UART_fi_FI.ts -------------------------------------------------------------------------------- /plugins/uart/UART_fr_FR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/uart/UART_fr_FR.ts -------------------------------------------------------------------------------- /plugins/uart/UART_it_IT.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/uart/UART_it_IT.ts -------------------------------------------------------------------------------- /plugins/uart/UART_ja_JP.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/uart/UART_ja_JP.ts -------------------------------------------------------------------------------- /plugins/uart/UART_nl_NL.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/uart/UART_nl_NL.ts -------------------------------------------------------------------------------- /plugins/uart/UART_pt_BR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/uart/UART_pt_BR.ts -------------------------------------------------------------------------------- /plugins/uart/uart.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/uart/uart.pro -------------------------------------------------------------------------------- /plugins/uart/uartplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/uart/uartplugin.cpp -------------------------------------------------------------------------------- /plugins/uart/uartplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/uart/uartplugin.h -------------------------------------------------------------------------------- /plugins/uart/uartwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/uart/uartwidget.cpp -------------------------------------------------------------------------------- /plugins/uart/uartwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/uart/uartwidget.h -------------------------------------------------------------------------------- /plugins/udmx/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | project(udmx VERSION 1.0 LANGUAGES C CXX) 2 | 3 | add_subdirectory(src) 4 | -------------------------------------------------------------------------------- /plugins/udmx/src/src.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/udmx/src/src.pro -------------------------------------------------------------------------------- /plugins/udmx/src/udmx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/udmx/src/udmx.cpp -------------------------------------------------------------------------------- /plugins/udmx/src/udmx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/udmx/src/udmx.h -------------------------------------------------------------------------------- /plugins/udmx/src/udmxdevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/udmx/src/udmxdevice.h -------------------------------------------------------------------------------- /plugins/udmx/udmx.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = subdirs 2 | CONFIG += ordered 3 | SUBDIRS += src 4 | -------------------------------------------------------------------------------- /plugins/velleman/src/src.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/velleman/src/src.pro -------------------------------------------------------------------------------- /plugins/velleman/test/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/velleman/test/test.sh -------------------------------------------------------------------------------- /plugins/velleman/velleman.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/plugins/velleman/velleman.pro -------------------------------------------------------------------------------- /qlc.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qlc.pro -------------------------------------------------------------------------------- /qmake2cmake.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmake2cmake.md -------------------------------------------------------------------------------- /qmlui/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/CMakeLists.txt -------------------------------------------------------------------------------- /qmlui/app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/app.cpp -------------------------------------------------------------------------------- /qmlui/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/app.h -------------------------------------------------------------------------------- /qmlui/audioeditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/audioeditor.cpp -------------------------------------------------------------------------------- /qmlui/audioeditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/audioeditor.h -------------------------------------------------------------------------------- /qmlui/chasereditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/chasereditor.cpp -------------------------------------------------------------------------------- /qmlui/chasereditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/chasereditor.h -------------------------------------------------------------------------------- /qmlui/collectioneditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/collectioneditor.cpp -------------------------------------------------------------------------------- /qmlui/collectioneditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/collectioneditor.h -------------------------------------------------------------------------------- /qmlui/colorfilters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/colorfilters.cpp -------------------------------------------------------------------------------- /qmlui/colorfilters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/colorfilters.h -------------------------------------------------------------------------------- /qmlui/contextmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/contextmanager.cpp -------------------------------------------------------------------------------- /qmlui/contextmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/contextmanager.h -------------------------------------------------------------------------------- /qmlui/efxeditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/efxeditor.cpp -------------------------------------------------------------------------------- /qmlui/efxeditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/efxeditor.h -------------------------------------------------------------------------------- /qmlui/fixturebrowser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/fixturebrowser.cpp -------------------------------------------------------------------------------- /qmlui/fixturebrowser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/fixturebrowser.h -------------------------------------------------------------------------------- /qmlui/fixturegroupeditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/fixturegroupeditor.cpp -------------------------------------------------------------------------------- /qmlui/fixturegroupeditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/fixturegroupeditor.h -------------------------------------------------------------------------------- /qmlui/fixturemanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/fixturemanager.cpp -------------------------------------------------------------------------------- /qmlui/fixturemanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/fixturemanager.h -------------------------------------------------------------------------------- /qmlui/fixtureutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/fixtureutils.cpp -------------------------------------------------------------------------------- /qmlui/fixtureutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/fixtureutils.h -------------------------------------------------------------------------------- /qmlui/folderbrowser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/folderbrowser.cpp -------------------------------------------------------------------------------- /qmlui/folderbrowser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/folderbrowser.h -------------------------------------------------------------------------------- /qmlui/functioneditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/functioneditor.cpp -------------------------------------------------------------------------------- /qmlui/functioneditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/functioneditor.h -------------------------------------------------------------------------------- /qmlui/functionmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/functionmanager.cpp -------------------------------------------------------------------------------- /qmlui/functionmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/functionmanager.h -------------------------------------------------------------------------------- /qmlui/importmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/importmanager.cpp -------------------------------------------------------------------------------- /qmlui/importmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/importmanager.h -------------------------------------------------------------------------------- /qmlui/inputoutputmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/inputoutputmanager.cpp -------------------------------------------------------------------------------- /qmlui/inputoutputmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/inputoutputmanager.h -------------------------------------------------------------------------------- /qmlui/inputprofileeditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/inputprofileeditor.cpp -------------------------------------------------------------------------------- /qmlui/inputprofileeditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/inputprofileeditor.h -------------------------------------------------------------------------------- /qmlui/js/FixtureDrag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/js/FixtureDrag.js -------------------------------------------------------------------------------- /qmlui/js/GenericHelpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/js/GenericHelpers.js -------------------------------------------------------------------------------- /qmlui/js/Math3DView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/js/Math3DView.js -------------------------------------------------------------------------------- /qmlui/js/TimeUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/js/TimeUtils.js -------------------------------------------------------------------------------- /qmlui/listmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/listmodel.cpp -------------------------------------------------------------------------------- /qmlui/listmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/listmodel.h -------------------------------------------------------------------------------- /qmlui/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/main.cpp -------------------------------------------------------------------------------- /qmlui/mainview2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/mainview2d.cpp -------------------------------------------------------------------------------- /qmlui/mainview2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/mainview2d.h -------------------------------------------------------------------------------- /qmlui/mainview3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/mainview3d.cpp -------------------------------------------------------------------------------- /qmlui/mainview3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/mainview3d.h -------------------------------------------------------------------------------- /qmlui/mainviewdmx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/mainviewdmx.cpp -------------------------------------------------------------------------------- /qmlui/mainviewdmx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/mainviewdmx.h -------------------------------------------------------------------------------- /qmlui/modelselector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/modelselector.cpp -------------------------------------------------------------------------------- /qmlui/modelselector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/modelselector.h -------------------------------------------------------------------------------- /qmlui/palettemanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/palettemanager.cpp -------------------------------------------------------------------------------- /qmlui/palettemanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/palettemanager.h -------------------------------------------------------------------------------- /qmlui/previewcontext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/previewcontext.cpp -------------------------------------------------------------------------------- /qmlui/previewcontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/previewcontext.h -------------------------------------------------------------------------------- /qmlui/qlcplus_ca_ES.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/qlcplus_ca_ES.ts -------------------------------------------------------------------------------- /qmlui/qlcplus_de_DE.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/qlcplus_de_DE.ts -------------------------------------------------------------------------------- /qmlui/qlcplus_es_ES.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/qlcplus_es_ES.ts -------------------------------------------------------------------------------- /qmlui/qlcplus_fr_FR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/qlcplus_fr_FR.ts -------------------------------------------------------------------------------- /qmlui/qlcplus_it_IT.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/qlcplus_it_IT.ts -------------------------------------------------------------------------------- /qmlui/qlcplus_ja_JP.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/qlcplus_ja_JP.ts -------------------------------------------------------------------------------- /qmlui/qlcplus_nl_NL.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/qlcplus_nl_NL.ts -------------------------------------------------------------------------------- /qmlui/qlcplus_pl_PL.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/qlcplus_pl_PL.ts -------------------------------------------------------------------------------- /qmlui/qlcplus_ru_RU.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/qlcplus_ru_RU.ts -------------------------------------------------------------------------------- /qmlui/qlcplus_uk_UA.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/qlcplus_uk_UA.ts -------------------------------------------------------------------------------- /qmlui/qml/ActionsMenu.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/qml/ActionsMenu.qml -------------------------------------------------------------------------------- /qmlui/qml/ChaserWidget.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/qml/ChaserWidget.qml -------------------------------------------------------------------------------- /qmlui/qml/ColorTool.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/qml/ColorTool.qml -------------------------------------------------------------------------------- /qmlui/qml/ColorToolBasic.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/qml/ColorToolBasic.qml -------------------------------------------------------------------------------- /qmlui/qml/ColorToolFull.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/qml/ColorToolFull.qml -------------------------------------------------------------------------------- /qmlui/qml/CustomCheckBox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/qml/CustomCheckBox.qml -------------------------------------------------------------------------------- /qmlui/qml/CustomComboBox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/qml/CustomComboBox.qml -------------------------------------------------------------------------------- /qmlui/qml/CustomScrollBar.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/qml/CustomScrollBar.qml -------------------------------------------------------------------------------- /qmlui/qml/CustomSlider.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/qml/CustomSlider.qml -------------------------------------------------------------------------------- /qmlui/qml/CustomSpinBox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/qml/CustomSpinBox.qml -------------------------------------------------------------------------------- /qmlui/qml/CustomTextEdit.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/qml/CustomTextEdit.qml -------------------------------------------------------------------------------- /qmlui/qml/CustomTextInput.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/qml/CustomTextInput.qml -------------------------------------------------------------------------------- /qmlui/qml/DMXAddressTool.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/qml/DMXAddressTool.qml -------------------------------------------------------------------------------- /qmlui/qml/DayTimeTool.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/qml/DayTimeTool.qml -------------------------------------------------------------------------------- /qmlui/qml/FixtureConsole.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/qml/FixtureConsole.qml -------------------------------------------------------------------------------- /qmlui/qml/FixtureDelegate.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/qml/FixtureDelegate.qml -------------------------------------------------------------------------------- /qmlui/qml/GenericButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/qml/GenericButton.qml -------------------------------------------------------------------------------- /qmlui/qml/IconButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/qml/IconButton.qml -------------------------------------------------------------------------------- /qmlui/qml/IconPopupButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/qml/IconPopupButton.qml -------------------------------------------------------------------------------- /qmlui/qml/IconTextEntry.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/qml/IconTextEntry.qml -------------------------------------------------------------------------------- /qmlui/qml/KeyPad.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/qml/KeyPad.qml -------------------------------------------------------------------------------- /qmlui/qml/MainView.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/qml/MainView.qml -------------------------------------------------------------------------------- /qmlui/qml/MenuBarEntry.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/qml/MenuBarEntry.qml -------------------------------------------------------------------------------- /qmlui/qml/MultiColorBox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/qml/MultiColorBox.qml -------------------------------------------------------------------------------- /qmlui/qml/QLCPlusFader.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/qml/QLCPlusFader.qml -------------------------------------------------------------------------------- /qmlui/qml/QLCPlusKnob.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/qml/QLCPlusKnob.qml -------------------------------------------------------------------------------- /qmlui/qml/RobotoText.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/qml/RobotoText.qml -------------------------------------------------------------------------------- /qmlui/qml/SectionBox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/qml/SectionBox.qml -------------------------------------------------------------------------------- /qmlui/qml/SidePanel.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/qml/SidePanel.qml -------------------------------------------------------------------------------- /qmlui/qml/SimpleDesk.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/qml/SimpleDesk.qml -------------------------------------------------------------------------------- /qmlui/qml/SingleAxisTool.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/qml/SingleAxisTool.qml -------------------------------------------------------------------------------- /qmlui/qml/TimeEditTool.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/qml/TimeEditTool.qml -------------------------------------------------------------------------------- /qmlui/qml/UISettings.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/qml/UISettings.qml -------------------------------------------------------------------------------- /qmlui/qml/UsageList.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/qml/UsageList.qml -------------------------------------------------------------------------------- /qmlui/qml/WidgetDelegate.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/qml/WidgetDelegate.qml -------------------------------------------------------------------------------- /qmlui/qml/WindowLoader.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/qml/WindowLoader.qml -------------------------------------------------------------------------------- /qmlui/qml/ZoomItem.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/qml/ZoomItem.qml -------------------------------------------------------------------------------- /qmlui/qml/inputoutput/qmldir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/qml/inputoutput/qmldir -------------------------------------------------------------------------------- /qmlui/qml/popup/qmldir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/qml/popup/qmldir -------------------------------------------------------------------------------- /qmlui/qml/qmldir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/qml/qmldir -------------------------------------------------------------------------------- /qmlui/qml/showmanager/qmldir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/qml/showmanager/qmldir -------------------------------------------------------------------------------- /qmlui/qmlui.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/qmlui.pro -------------------------------------------------------------------------------- /qmlui/qmlui.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/qmlui.qrc -------------------------------------------------------------------------------- /qmlui/qmlui.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/qmlui.rc -------------------------------------------------------------------------------- /qmlui/rgbmatrixeditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/rgbmatrixeditor.cpp -------------------------------------------------------------------------------- /qmlui/rgbmatrixeditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/rgbmatrixeditor.h -------------------------------------------------------------------------------- /qmlui/sceneeditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/sceneeditor.cpp -------------------------------------------------------------------------------- /qmlui/sceneeditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/sceneeditor.h -------------------------------------------------------------------------------- /qmlui/scripteditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/scripteditor.cpp -------------------------------------------------------------------------------- /qmlui/scripteditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/scripteditor.h -------------------------------------------------------------------------------- /qmlui/showmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/showmanager.cpp -------------------------------------------------------------------------------- /qmlui/showmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/showmanager.h -------------------------------------------------------------------------------- /qmlui/simpledesk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/simpledesk.cpp -------------------------------------------------------------------------------- /qmlui/simpledesk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/simpledesk.h -------------------------------------------------------------------------------- /qmlui/tardis/networkmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/tardis/networkmanager.h -------------------------------------------------------------------------------- /qmlui/tardis/simplecrypt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/tardis/simplecrypt.cpp -------------------------------------------------------------------------------- /qmlui/tardis/simplecrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/tardis/simplecrypt.h -------------------------------------------------------------------------------- /qmlui/tardis/tardis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/tardis/tardis.cpp -------------------------------------------------------------------------------- /qmlui/tardis/tardis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/tardis/tardis.h -------------------------------------------------------------------------------- /qmlui/treemodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/treemodel.cpp -------------------------------------------------------------------------------- /qmlui/treemodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/treemodel.h -------------------------------------------------------------------------------- /qmlui/treemodelitem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/treemodelitem.cpp -------------------------------------------------------------------------------- /qmlui/treemodelitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/treemodelitem.h -------------------------------------------------------------------------------- /qmlui/uimanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/uimanager.cpp -------------------------------------------------------------------------------- /qmlui/uimanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/uimanager.h -------------------------------------------------------------------------------- /qmlui/videoeditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/videoeditor.cpp -------------------------------------------------------------------------------- /qmlui/videoeditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/videoeditor.h -------------------------------------------------------------------------------- /qmlui/videoprovider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/videoprovider.cpp -------------------------------------------------------------------------------- /qmlui/videoprovider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/videoprovider.h -------------------------------------------------------------------------------- /qmlui/virtualconsole/vcpage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/virtualconsole/vcpage.h -------------------------------------------------------------------------------- /qmlui/waveformimageprovider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/qmlui/waveformimageprovider.h -------------------------------------------------------------------------------- /resources/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/CMakeLists.txt -------------------------------------------------------------------------------- /resources/docs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/docs/CMakeLists.txt -------------------------------------------------------------------------------- /resources/docs/createpdf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/docs/createpdf.sh -------------------------------------------------------------------------------- /resources/docs/docs.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/docs/docs.pro -------------------------------------------------------------------------------- /resources/docs/make_docs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/docs/make_docs.rb -------------------------------------------------------------------------------- /resources/doxygen/.gitignore: -------------------------------------------------------------------------------- 1 | html/ 2 | -------------------------------------------------------------------------------- /resources/doxygen/doxygen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/doxygen/doxygen.h -------------------------------------------------------------------------------- /resources/doxygen/qlcplus.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/doxygen/qlcplus.dox -------------------------------------------------------------------------------- /resources/fonts/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/fonts/OFL.txt -------------------------------------------------------------------------------- /resources/fonts/fonts.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/fonts/fonts.qrc -------------------------------------------------------------------------------- /resources/gobos/gobos.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/gobos/gobos.pro -------------------------------------------------------------------------------- /resources/icons/png/audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/png/audio.png -------------------------------------------------------------------------------- /resources/icons/png/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/png/back.png -------------------------------------------------------------------------------- /resources/icons/png/beam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/png/beam.png -------------------------------------------------------------------------------- /resources/icons/png/blind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/png/blind.png -------------------------------------------------------------------------------- /resources/icons/png/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/png/check.png -------------------------------------------------------------------------------- /resources/icons/png/clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/png/clock.png -------------------------------------------------------------------------------- /resources/icons/png/color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/png/color.png -------------------------------------------------------------------------------- /resources/icons/png/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/png/down.png -------------------------------------------------------------------------------- /resources/icons/png/ds_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/png/ds_on.png -------------------------------------------------------------------------------- /resources/icons/png/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/png/edit.png -------------------------------------------------------------------------------- /resources/icons/png/efx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/png/efx.png -------------------------------------------------------------------------------- /resources/icons/png/exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/png/exit.png -------------------------------------------------------------------------------- /resources/icons/png/fade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/png/fade.png -------------------------------------------------------------------------------- /resources/icons/png/fan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/png/fan.png -------------------------------------------------------------------------------- /resources/icons/png/flash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/png/flash.png -------------------------------------------------------------------------------- /resources/icons/png/fonts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/png/fonts.png -------------------------------------------------------------------------------- /resources/icons/png/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/png/frame.png -------------------------------------------------------------------------------- /resources/icons/png/gobo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/png/gobo.png -------------------------------------------------------------------------------- /resources/icons/png/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/png/grid.png -------------------------------------------------------------------------------- /resources/icons/png/group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/png/group.png -------------------------------------------------------------------------------- /resources/icons/png/hazer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/png/hazer.png -------------------------------------------------------------------------------- /resources/icons/png/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/png/help.png -------------------------------------------------------------------------------- /resources/icons/png/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/png/image.png -------------------------------------------------------------------------------- /resources/icons/png/input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/png/input.png -------------------------------------------------------------------------------- /resources/icons/png/knob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/png/knob.png -------------------------------------------------------------------------------- /resources/icons/png/label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/png/label.png -------------------------------------------------------------------------------- /resources/icons/png/laser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/png/laser.png -------------------------------------------------------------------------------- /resources/icons/png/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/png/lock.png -------------------------------------------------------------------------------- /resources/icons/png/other.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/png/other.png -------------------------------------------------------------------------------- /resources/icons/png/pan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/png/pan.png -------------------------------------------------------------------------------- /resources/icons/png/panic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/png/panic.png -------------------------------------------------------------------------------- /resources/icons/png/prism.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/png/prism.png -------------------------------------------------------------------------------- /resources/icons/png/qt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/png/qt.png -------------------------------------------------------------------------------- /resources/icons/png/remap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/png/remap.png -------------------------------------------------------------------------------- /resources/icons/png/scene.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/png/scene.png -------------------------------------------------------------------------------- /resources/icons/png/show.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/png/show.png -------------------------------------------------------------------------------- /resources/icons/png/smoke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/png/smoke.png -------------------------------------------------------------------------------- /resources/icons/png/speed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/png/speed.png -------------------------------------------------------------------------------- /resources/icons/png/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/png/star.png -------------------------------------------------------------------------------- /resources/icons/png/tilt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/png/tilt.png -------------------------------------------------------------------------------- /resources/icons/png/undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/png/undo.png -------------------------------------------------------------------------------- /resources/icons/png/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/png/up.png -------------------------------------------------------------------------------- /resources/icons/png/video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/png/video.png -------------------------------------------------------------------------------- /resources/icons/png/xypad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/png/xypad.png -------------------------------------------------------------------------------- /resources/icons/qlcplus.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/qlcplus.icns -------------------------------------------------------------------------------- /resources/icons/qlcplus.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/qlcplus.ico -------------------------------------------------------------------------------- /resources/icons/svg/add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/svg/add.svg -------------------------------------------------------------------------------- /resources/icons/svg/amber.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/svg/amber.svg -------------------------------------------------------------------------------- /resources/icons/svg/audio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/svg/audio.svg -------------------------------------------------------------------------------- /resources/icons/svg/back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/svg/back.svg -------------------------------------------------------------------------------- /resources/icons/svg/beam.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/svg/beam.svg -------------------------------------------------------------------------------- /resources/icons/svg/blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/svg/blue.svg -------------------------------------------------------------------------------- /resources/icons/svg/clock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/svg/clock.svg -------------------------------------------------------------------------------- /resources/icons/svg/color.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/svg/color.svg -------------------------------------------------------------------------------- /resources/icons/svg/cyan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/svg/cyan.svg -------------------------------------------------------------------------------- /resources/icons/svg/edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/svg/edit.svg -------------------------------------------------------------------------------- /resources/icons/svg/efx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/svg/efx.svg -------------------------------------------------------------------------------- /resources/icons/svg/fan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/svg/fan.svg -------------------------------------------------------------------------------- /resources/icons/svg/flash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/svg/flash.svg -------------------------------------------------------------------------------- /resources/icons/svg/frame.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/svg/frame.svg -------------------------------------------------------------------------------- /resources/icons/svg/gobo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/svg/gobo.svg -------------------------------------------------------------------------------- /resources/icons/svg/green.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/svg/green.svg -------------------------------------------------------------------------------- /resources/icons/svg/grid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/svg/grid.svg -------------------------------------------------------------------------------- /resources/icons/svg/group.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/svg/group.svg -------------------------------------------------------------------------------- /resources/icons/svg/hazer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/svg/hazer.svg -------------------------------------------------------------------------------- /resources/icons/svg/help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/svg/help.svg -------------------------------------------------------------------------------- /resources/icons/svg/knob.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/svg/knob.svg -------------------------------------------------------------------------------- /resources/icons/svg/label.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/svg/label.svg -------------------------------------------------------------------------------- /resources/icons/svg/laser.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/svg/laser.svg -------------------------------------------------------------------------------- /resources/icons/svg/lime.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/svg/lime.svg -------------------------------------------------------------------------------- /resources/icons/svg/lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/svg/lock.svg -------------------------------------------------------------------------------- /resources/icons/svg/loop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/svg/loop.svg -------------------------------------------------------------------------------- /resources/icons/svg/other.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/svg/other.svg -------------------------------------------------------------------------------- /resources/icons/svg/pan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/svg/pan.svg -------------------------------------------------------------------------------- /resources/icons/svg/pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/svg/pause.svg -------------------------------------------------------------------------------- /resources/icons/svg/prism.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/svg/prism.svg -------------------------------------------------------------------------------- /resources/icons/svg/qt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/svg/qt.svg -------------------------------------------------------------------------------- /resources/icons/svg/red.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/svg/red.svg -------------------------------------------------------------------------------- /resources/icons/svg/redo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/svg/redo.svg -------------------------------------------------------------------------------- /resources/icons/svg/remap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/svg/remap.svg -------------------------------------------------------------------------------- /resources/icons/svg/reset.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/svg/reset.svg -------------------------------------------------------------------------------- /resources/icons/svg/scene.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/svg/scene.svg -------------------------------------------------------------------------------- /resources/icons/svg/smoke.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/svg/smoke.svg -------------------------------------------------------------------------------- /resources/icons/svg/speed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/svg/speed.svg -------------------------------------------------------------------------------- /resources/icons/svg/star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/svg/star.svg -------------------------------------------------------------------------------- /resources/icons/svg/stop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/svg/stop.svg -------------------------------------------------------------------------------- /resources/icons/svg/tilt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/svg/tilt.svg -------------------------------------------------------------------------------- /resources/icons/svg/undo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/svg/undo.svg -------------------------------------------------------------------------------- /resources/icons/svg/uv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/svg/uv.svg -------------------------------------------------------------------------------- /resources/icons/svg/video.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/svg/video.svg -------------------------------------------------------------------------------- /resources/icons/svg/white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/svg/white.svg -------------------------------------------------------------------------------- /resources/icons/svg/xypad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/icons/svg/xypad.svg -------------------------------------------------------------------------------- /resources/inputprofiles/check: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/inputprofiles/check -------------------------------------------------------------------------------- /resources/meshes/meshes.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/meshes/meshes.pro -------------------------------------------------------------------------------- /resources/resources.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/resources.pro -------------------------------------------------------------------------------- /resources/rgbscripts/balls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/rgbscripts/balls.js -------------------------------------------------------------------------------- /resources/rgbscripts/empty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/rgbscripts/empty.js -------------------------------------------------------------------------------- /resources/rgbscripts/fill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/rgbscripts/fill.js -------------------------------------------------------------------------------- /resources/rgbscripts/lines.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/rgbscripts/lines.js -------------------------------------------------------------------------------- /resources/rgbscripts/noise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/rgbscripts/noise.js -------------------------------------------------------------------------------- /resources/rgbscripts/waves.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/rgbscripts/waves.js -------------------------------------------------------------------------------- /resources/samples/Sample.qxw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/samples/Sample.qxw -------------------------------------------------------------------------------- /resources/samples/samples.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/samples/samples.pro -------------------------------------------------------------------------------- /resources/schemas/fixture.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/resources/schemas/fixture.xsd -------------------------------------------------------------------------------- /translate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/translate.sh -------------------------------------------------------------------------------- /ui/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/CMakeLists.txt -------------------------------------------------------------------------------- /ui/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/CMakeLists.txt -------------------------------------------------------------------------------- /ui/src/aboutbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/aboutbox.cpp -------------------------------------------------------------------------------- /ui/src/aboutbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/aboutbox.h -------------------------------------------------------------------------------- /ui/src/aboutbox.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/aboutbox.ui -------------------------------------------------------------------------------- /ui/src/addchannelsgroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/addchannelsgroup.cpp -------------------------------------------------------------------------------- /ui/src/addchannelsgroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/addchannelsgroup.h -------------------------------------------------------------------------------- /ui/src/addchannelsgroup.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/addchannelsgroup.ui -------------------------------------------------------------------------------- /ui/src/addfixture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/addfixture.cpp -------------------------------------------------------------------------------- /ui/src/addfixture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/addfixture.h -------------------------------------------------------------------------------- /ui/src/addfixture.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/addfixture.ui -------------------------------------------------------------------------------- /ui/src/addresstool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/addresstool.cpp -------------------------------------------------------------------------------- /ui/src/addresstool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/addresstool.h -------------------------------------------------------------------------------- /ui/src/addresstool.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/addresstool.ui -------------------------------------------------------------------------------- /ui/src/addrgbpanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/addrgbpanel.cpp -------------------------------------------------------------------------------- /ui/src/addrgbpanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/addrgbpanel.h -------------------------------------------------------------------------------- /ui/src/addrgbpanel.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/addrgbpanel.ui -------------------------------------------------------------------------------- /ui/src/app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/app.cpp -------------------------------------------------------------------------------- /ui/src/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/app.h -------------------------------------------------------------------------------- /ui/src/apputil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/apputil.cpp -------------------------------------------------------------------------------- /ui/src/apputil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/apputil.h -------------------------------------------------------------------------------- /ui/src/assignhotkey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/assignhotkey.cpp -------------------------------------------------------------------------------- /ui/src/assignhotkey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/assignhotkey.h -------------------------------------------------------------------------------- /ui/src/assignhotkey.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/assignhotkey.ui -------------------------------------------------------------------------------- /ui/src/audiobar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/audiobar.cpp -------------------------------------------------------------------------------- /ui/src/audiobar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/audiobar.h -------------------------------------------------------------------------------- /ui/src/audioeditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/audioeditor.cpp -------------------------------------------------------------------------------- /ui/src/audioeditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/audioeditor.h -------------------------------------------------------------------------------- /ui/src/audioeditor.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/audioeditor.ui -------------------------------------------------------------------------------- /ui/src/audiotriggerwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/audiotriggerwidget.cpp -------------------------------------------------------------------------------- /ui/src/audiotriggerwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/audiotriggerwidget.h -------------------------------------------------------------------------------- /ui/src/channelsselection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/channelsselection.cpp -------------------------------------------------------------------------------- /ui/src/channelsselection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/channelsselection.h -------------------------------------------------------------------------------- /ui/src/channelsselection.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/channelsselection.ui -------------------------------------------------------------------------------- /ui/src/chasereditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/chasereditor.cpp -------------------------------------------------------------------------------- /ui/src/chasereditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/chasereditor.h -------------------------------------------------------------------------------- /ui/src/chasereditor.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/chasereditor.ui -------------------------------------------------------------------------------- /ui/src/clickandgoslider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/clickandgoslider.cpp -------------------------------------------------------------------------------- /ui/src/clickandgoslider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/clickandgoslider.h -------------------------------------------------------------------------------- /ui/src/clickandgowidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/clickandgowidget.cpp -------------------------------------------------------------------------------- /ui/src/clickandgowidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/clickandgowidget.h -------------------------------------------------------------------------------- /ui/src/collectioneditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/collectioneditor.cpp -------------------------------------------------------------------------------- /ui/src/collectioneditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/collectioneditor.h -------------------------------------------------------------------------------- /ui/src/collectioneditor.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/collectioneditor.ui -------------------------------------------------------------------------------- /ui/src/consolechannel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/consolechannel.cpp -------------------------------------------------------------------------------- /ui/src/consolechannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/consolechannel.h -------------------------------------------------------------------------------- /ui/src/createfixturegroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/createfixturegroup.cpp -------------------------------------------------------------------------------- /ui/src/createfixturegroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/createfixturegroup.h -------------------------------------------------------------------------------- /ui/src/createfixturegroup.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/createfixturegroup.ui -------------------------------------------------------------------------------- /ui/src/ctkrangeslider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/ctkrangeslider.cpp -------------------------------------------------------------------------------- /ui/src/ctkrangeslider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/ctkrangeslider.h -------------------------------------------------------------------------------- /ui/src/cuestackmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/cuestackmodel.cpp -------------------------------------------------------------------------------- /ui/src/cuestackmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/cuestackmodel.h -------------------------------------------------------------------------------- /ui/src/customfeedbackdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/customfeedbackdialog.h -------------------------------------------------------------------------------- /ui/src/debugbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/debugbox.cpp -------------------------------------------------------------------------------- /ui/src/debugbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/debugbox.h -------------------------------------------------------------------------------- /ui/src/debugbox.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/debugbox.ui -------------------------------------------------------------------------------- /ui/src/dmxdumpfactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/dmxdumpfactory.cpp -------------------------------------------------------------------------------- /ui/src/dmxdumpfactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/dmxdumpfactory.h -------------------------------------------------------------------------------- /ui/src/dmxdumpfactory.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/dmxdumpfactory.ui -------------------------------------------------------------------------------- /ui/src/efxeditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/efxeditor.cpp -------------------------------------------------------------------------------- /ui/src/efxeditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/efxeditor.h -------------------------------------------------------------------------------- /ui/src/efxeditor.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/efxeditor.ui -------------------------------------------------------------------------------- /ui/src/efxpreviewarea.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/efxpreviewarea.cpp -------------------------------------------------------------------------------- /ui/src/efxpreviewarea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/efxpreviewarea.h -------------------------------------------------------------------------------- /ui/src/fixtureconsole.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/fixtureconsole.cpp -------------------------------------------------------------------------------- /ui/src/fixtureconsole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/fixtureconsole.h -------------------------------------------------------------------------------- /ui/src/fixturegroupeditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/fixturegroupeditor.cpp -------------------------------------------------------------------------------- /ui/src/fixturegroupeditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/fixturegroupeditor.h -------------------------------------------------------------------------------- /ui/src/fixturegroupeditor.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/fixturegroupeditor.ui -------------------------------------------------------------------------------- /ui/src/fixturemanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/fixturemanager.cpp -------------------------------------------------------------------------------- /ui/src/fixturemanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/fixturemanager.h -------------------------------------------------------------------------------- /ui/src/fixtureremap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/fixtureremap.cpp -------------------------------------------------------------------------------- /ui/src/fixtureremap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/fixtureremap.h -------------------------------------------------------------------------------- /ui/src/fixtureremap.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/fixtureremap.ui -------------------------------------------------------------------------------- /ui/src/fixtureselection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/fixtureselection.cpp -------------------------------------------------------------------------------- /ui/src/fixtureselection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/fixtureselection.h -------------------------------------------------------------------------------- /ui/src/fixtureselection.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/fixtureselection.ui -------------------------------------------------------------------------------- /ui/src/fixturetreewidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/fixturetreewidget.cpp -------------------------------------------------------------------------------- /ui/src/fixturetreewidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/fixturetreewidget.h -------------------------------------------------------------------------------- /ui/src/flowlayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/flowlayout.cpp -------------------------------------------------------------------------------- /ui/src/flowlayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/flowlayout.h -------------------------------------------------------------------------------- /ui/src/functionmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/functionmanager.cpp -------------------------------------------------------------------------------- /ui/src/functionmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/functionmanager.h -------------------------------------------------------------------------------- /ui/src/functionselection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/functionselection.cpp -------------------------------------------------------------------------------- /ui/src/functionselection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/functionselection.h -------------------------------------------------------------------------------- /ui/src/functionselection.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/functionselection.ui -------------------------------------------------------------------------------- /ui/src/functionstreewidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/functionstreewidget.h -------------------------------------------------------------------------------- /ui/src/functionwizard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/functionwizard.cpp -------------------------------------------------------------------------------- /ui/src/functionwizard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/functionwizard.h -------------------------------------------------------------------------------- /ui/src/functionwizard.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/functionwizard.ui -------------------------------------------------------------------------------- /ui/src/grandmasterslider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/grandmasterslider.cpp -------------------------------------------------------------------------------- /ui/src/grandmasterslider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/grandmasterslider.h -------------------------------------------------------------------------------- /ui/src/groupsconsole.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/groupsconsole.cpp -------------------------------------------------------------------------------- /ui/src/groupsconsole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/groupsconsole.h -------------------------------------------------------------------------------- /ui/src/include_ui.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/include_ui.cmake -------------------------------------------------------------------------------- /ui/src/inputchanneleditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/inputchanneleditor.cpp -------------------------------------------------------------------------------- /ui/src/inputchanneleditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/inputchanneleditor.h -------------------------------------------------------------------------------- /ui/src/inputchanneleditor.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/inputchanneleditor.ui -------------------------------------------------------------------------------- /ui/src/inputoutputmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/inputoutputmanager.cpp -------------------------------------------------------------------------------- /ui/src/inputoutputmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/inputoutputmanager.h -------------------------------------------------------------------------------- /ui/src/inputprofileeditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/inputprofileeditor.cpp -------------------------------------------------------------------------------- /ui/src/inputprofileeditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/inputprofileeditor.h -------------------------------------------------------------------------------- /ui/src/inputprofileeditor.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/inputprofileeditor.ui -------------------------------------------------------------------------------- /ui/src/inputselectionwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/inputselectionwidget.h -------------------------------------------------------------------------------- /ui/src/knobwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/knobwidget.cpp -------------------------------------------------------------------------------- /ui/src/knobwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/knobwidget.h -------------------------------------------------------------------------------- /ui/src/monitor/monitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/monitor/monitor.cpp -------------------------------------------------------------------------------- /ui/src/monitor/monitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/monitor/monitor.h -------------------------------------------------------------------------------- /ui/src/palettegenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/palettegenerator.cpp -------------------------------------------------------------------------------- /ui/src/palettegenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/palettegenerator.h -------------------------------------------------------------------------------- /ui/src/playbackslider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/playbackslider.cpp -------------------------------------------------------------------------------- /ui/src/playbackslider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/playbackslider.h -------------------------------------------------------------------------------- /ui/src/positiontool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/positiontool.cpp -------------------------------------------------------------------------------- /ui/src/positiontool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/positiontool.h -------------------------------------------------------------------------------- /ui/src/positiontool.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/positiontool.ui -------------------------------------------------------------------------------- /ui/src/qlcplus_ca_ES.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/qlcplus_ca_ES.ts -------------------------------------------------------------------------------- /ui/src/qlcplus_cz_CZ.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/qlcplus_cz_CZ.ts -------------------------------------------------------------------------------- /ui/src/qlcplus_de_DE.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/qlcplus_de_DE.ts -------------------------------------------------------------------------------- /ui/src/qlcplus_es_ES.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/qlcplus_es_ES.ts -------------------------------------------------------------------------------- /ui/src/qlcplus_fi_FI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/qlcplus_fi_FI.ts -------------------------------------------------------------------------------- /ui/src/qlcplus_fr_FR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/qlcplus_fr_FR.ts -------------------------------------------------------------------------------- /ui/src/qlcplus_it_IT.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/qlcplus_it_IT.ts -------------------------------------------------------------------------------- /ui/src/qlcplus_ja_JP.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/qlcplus_ja_JP.ts -------------------------------------------------------------------------------- /ui/src/qlcplus_nl_NL.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/qlcplus_nl_NL.ts -------------------------------------------------------------------------------- /ui/src/qlcplus_pt_BR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/qlcplus_pt_BR.ts -------------------------------------------------------------------------------- /ui/src/qlcui.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/qlcui.qrc -------------------------------------------------------------------------------- /ui/src/rdmmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/rdmmanager.cpp -------------------------------------------------------------------------------- /ui/src/rdmmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/rdmmanager.h -------------------------------------------------------------------------------- /ui/src/rdmmanager.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/rdmmanager.ui -------------------------------------------------------------------------------- /ui/src/remapwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/remapwidget.cpp -------------------------------------------------------------------------------- /ui/src/remapwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/remapwidget.h -------------------------------------------------------------------------------- /ui/src/rgbitem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/rgbitem.cpp -------------------------------------------------------------------------------- /ui/src/rgbitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/rgbitem.h -------------------------------------------------------------------------------- /ui/src/rgbmatrixeditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/rgbmatrixeditor.cpp -------------------------------------------------------------------------------- /ui/src/rgbmatrixeditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/rgbmatrixeditor.h -------------------------------------------------------------------------------- /ui/src/rgbmatrixeditor.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/rgbmatrixeditor.ui -------------------------------------------------------------------------------- /ui/src/sceneeditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/sceneeditor.cpp -------------------------------------------------------------------------------- /ui/src/sceneeditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/sceneeditor.h -------------------------------------------------------------------------------- /ui/src/sceneeditor.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/sceneeditor.ui -------------------------------------------------------------------------------- /ui/src/scripteditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/scripteditor.cpp -------------------------------------------------------------------------------- /ui/src/scripteditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/scripteditor.h -------------------------------------------------------------------------------- /ui/src/scripteditor.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/scripteditor.ui -------------------------------------------------------------------------------- /ui/src/selectinputchannel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/selectinputchannel.cpp -------------------------------------------------------------------------------- /ui/src/selectinputchannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/selectinputchannel.h -------------------------------------------------------------------------------- /ui/src/selectinputchannel.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/selectinputchannel.ui -------------------------------------------------------------------------------- /ui/src/showmanager/efxitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/showmanager/efxitem.h -------------------------------------------------------------------------------- /ui/src/simpledesk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/simpledesk.cpp -------------------------------------------------------------------------------- /ui/src/simpledesk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/simpledesk.h -------------------------------------------------------------------------------- /ui/src/simpledeskengine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/simpledeskengine.cpp -------------------------------------------------------------------------------- /ui/src/simpledeskengine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/simpledeskengine.h -------------------------------------------------------------------------------- /ui/src/speeddial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/speeddial.cpp -------------------------------------------------------------------------------- /ui/src/speeddial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/speeddial.h -------------------------------------------------------------------------------- /ui/src/speeddialwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/speeddialwidget.cpp -------------------------------------------------------------------------------- /ui/src/speeddialwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/speeddialwidget.h -------------------------------------------------------------------------------- /ui/src/src.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/src.pro -------------------------------------------------------------------------------- /ui/src/universeitemwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/universeitemwidget.h -------------------------------------------------------------------------------- /ui/src/videoeditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/videoeditor.cpp -------------------------------------------------------------------------------- /ui/src/videoeditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/videoeditor.h -------------------------------------------------------------------------------- /ui/src/videoeditor.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/videoeditor.ui -------------------------------------------------------------------------------- /ui/src/videoprovider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/videoprovider.cpp -------------------------------------------------------------------------------- /ui/src/videoprovider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/src/videoprovider.h -------------------------------------------------------------------------------- /ui/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/test/CMakeLists.txt -------------------------------------------------------------------------------- /ui/test/aboutbox/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/test/aboutbox/test.sh -------------------------------------------------------------------------------- /ui/test/addfixture/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/test/addfixture/test.sh -------------------------------------------------------------------------------- /ui/test/audiobar/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/test/audiobar/test.sh -------------------------------------------------------------------------------- /ui/test/rgbitem/rgbitem.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/test/rgbitem/rgbitem.pro -------------------------------------------------------------------------------- /ui/test/rgbitem/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/test/rgbitem/test.sh -------------------------------------------------------------------------------- /ui/test/speeddial/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/test/speeddial/test.sh -------------------------------------------------------------------------------- /ui/test/test.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/test/test.pro -------------------------------------------------------------------------------- /ui/test/vcbutton/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/test/vcbutton/test.sh -------------------------------------------------------------------------------- /ui/test/vccuelist/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/test/vccuelist/test.sh -------------------------------------------------------------------------------- /ui/test/vcframe/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/test/vcframe/test.sh -------------------------------------------------------------------------------- /ui/test/vcframe/vcframe.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/test/vcframe/vcframe.pro -------------------------------------------------------------------------------- /ui/test/vclabel/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/test/vclabel/test.sh -------------------------------------------------------------------------------- /ui/test/vclabel/vclabel.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/test/vclabel/vclabel.pro -------------------------------------------------------------------------------- /ui/test/vcwidget/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/test/vcwidget/test.sh -------------------------------------------------------------------------------- /ui/test/vcxypad/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/test/vcxypad/test.sh -------------------------------------------------------------------------------- /ui/test/vcxypad/vcxypad.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/test/vcxypad/vcxypad.pro -------------------------------------------------------------------------------- /ui/test/vcxypadarea/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/test/vcxypadarea/test.sh -------------------------------------------------------------------------------- /ui/ui.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/ui/ui.pro -------------------------------------------------------------------------------- /unittest.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/unittest.bat -------------------------------------------------------------------------------- /unittest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/unittest.sh -------------------------------------------------------------------------------- /unittest_cmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/unittest_cmake.sh -------------------------------------------------------------------------------- /variables.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/variables.cmake -------------------------------------------------------------------------------- /variables.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/variables.pri -------------------------------------------------------------------------------- /webaccess/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/webaccess/CMakeLists.txt -------------------------------------------------------------------------------- /webaccess/res/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/webaccess/res/common.css -------------------------------------------------------------------------------- /webaccess/res/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/webaccess/res/favicon.ico -------------------------------------------------------------------------------- /webaccess/res/keypad.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/webaccess/res/keypad.html -------------------------------------------------------------------------------- /webaccess/res/res.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/webaccess/res/res.pro -------------------------------------------------------------------------------- /webaccess/res/simpledesk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/webaccess/res/simpledesk.js -------------------------------------------------------------------------------- /webaccess/res/websocket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/webaccess/res/websocket.js -------------------------------------------------------------------------------- /webaccess/src/commonjscss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/webaccess/src/commonjscss.h -------------------------------------------------------------------------------- /webaccess/src/src.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/webaccess/src/src.pro -------------------------------------------------------------------------------- /webaccess/src/webaccess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/webaccess/src/webaccess.cpp -------------------------------------------------------------------------------- /webaccess/src/webaccess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/webaccess/src/webaccess.h -------------------------------------------------------------------------------- /webaccess/webaccess.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcallegari/qlcplus/HEAD/webaccess/webaccess.pro --------------------------------------------------------------------------------