├── .clang-format ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .readthedocs.yaml ├── CMakeLists.txt ├── LICENSE ├── README.md ├── data ├── applications │ └── glight.desktop ├── controllers │ └── apc-mini-mk2.json ├── flat-par-qa12.json └── icons │ └── hicolor │ ├── 128x128 │ └── apps │ │ └── glight.png │ ├── 16x16 │ └── apps │ │ └── glight.png │ ├── 24x24 │ └── apps │ │ └── glight.png │ ├── 32x32 │ └── apps │ │ └── glight.png │ ├── 48x48 │ └── apps │ │ └── glight.png │ ├── 64x64 │ └── apps │ │ └── glight.png │ └── scalable │ └── apps │ └── glight.svg ├── doc ├── Makefile ├── NTDS-2023.jpg ├── Screenshot-2019-01-18.png ├── Screenshot-2019-06-12-glight-0.8.png ├── Screenshot-2019-08-07-glight-0.8.1.png ├── Screenshot-2023-03-11-glight-0.9.png ├── mylights │ └── list.txt └── source │ ├── conf.py │ ├── index.rst │ └── tutorial │ ├── add-fixtures.rst │ ├── assign-faders.rst │ ├── controlling-lights.rst │ ├── designing-chases.rst │ ├── images │ ├── chase-editor.png │ ├── design-wizard-colour-selection.png │ ├── design-wizard.png │ ├── empty-fixture-list.png │ ├── faders-assigned.png │ ├── fixture-list-with-8-rgb-lights.png │ ├── new-fixture-window.png │ ├── one-fader-switched-on.png │ ├── show-and-fader-windows.png │ ├── show-window-with-chase.png │ ├── visualization-window-4-lights-selected.png │ ├── visualization-window-8-lights-after-moving.png │ ├── visualization-window-8-lights-off.png │ ├── visualization-window-chase.gif │ └── visualization-window-menu-design.png │ ├── index.rst │ ├── modifying-chases.rst │ ├── position-fixtures.rst │ ├── start.rst │ └── theres-more.rst ├── external └── hsluv │ ├── hsluv.cpp │ └── hsluv.h ├── glight-cli.cpp ├── glight.cpp ├── gui ├── application.cpp ├── application.h ├── components │ ├── audiowidget.cpp │ ├── audiowidget.h │ ├── beatinput.cpp │ ├── beatinput.h │ ├── colorbutton.h │ ├── colorselectwidget.cpp │ ├── colorselectwidget.h │ ├── colorsequencewidget.cpp │ ├── colorsequencewidget.h │ ├── controlbutton.cpp │ ├── controlbutton.h │ ├── durationinput.cpp │ ├── durationinput.h │ ├── fixturelist.cpp │ ├── fixturelist.h │ ├── foldercombo.cpp │ ├── foldercombo.h │ ├── iconbutton.cpp │ ├── iconbutton.h │ ├── inputselectwidget.h │ ├── nameframe.cpp │ ├── nameframe.h │ ├── objectbrowser.h │ ├── objectlist.cpp │ ├── objectlist.h │ ├── powermonitor.cpp │ ├── powermonitor.h │ ├── propertiesbox.cpp │ ├── propertiesbox.h │ ├── reorderwidget.cpp │ ├── reorderwidget.h │ ├── transitiontypebox.h │ ├── visualizationmenu.cpp │ ├── visualizationmenu.h │ ├── visualizationwidget.cpp │ └── visualizationwidget.h ├── dialogs │ ├── controllableselectiondialog.h │ ├── createchasedialog.cpp │ ├── createchasedialog.h │ ├── inputselectdialog.cpp │ ├── inputselectdialog.h │ ├── multicontrollableselectiondialog.cpp │ ├── multicontrollableselectiondialog.h │ ├── sceneselect.cpp │ ├── sceneselect.h │ └── stringinputdialog.h ├── eventtransmitter.h ├── faders │ ├── colorcontrolwidget.cpp │ ├── colorcontrolwidget.h │ ├── combocontrolwidget.cpp │ ├── combocontrolwidget.h │ ├── controlmenu.cpp │ ├── controlmenu.h │ ├── controlwidget.cpp │ ├── controlwidget.h │ ├── faderwidget.cpp │ ├── faderwidget.h │ ├── faderwindow.cpp │ ├── faderwindow.h │ ├── moverwidget.cpp │ ├── moverwidget.h │ ├── togglewidget.cpp │ └── togglewidget.h ├── fixtureselection.h ├── functions.cpp ├── functions.h ├── instance.cpp ├── instance.h ├── mainwindow │ ├── actions.cpp │ ├── actions.h │ ├── mainmenu.cpp │ ├── mainmenu.h │ ├── mainwindow.cpp │ ├── mainwindow.h │ ├── objectlistframe.cpp │ ├── objectlistframe.h │ └── objectwindowlist.h ├── menufunctions.h ├── objectlistframe.h ├── recursionlock.h ├── renderengine.cpp ├── renderengine.h ├── state │ ├── fadersetstate.h │ ├── faderstate.cpp │ ├── faderstate.h │ └── guistate.h ├── units.h └── windows │ ├── addfixturewindow.cpp │ ├── addfixturewindow.h │ ├── chasepropertieswindow.cpp │ ├── chasepropertieswindow.h │ ├── childwindow.h │ ├── childwindowlist.h │ ├── designwizard.cpp │ ├── designwizard.h │ ├── editcolorrange.cpp │ ├── editcolorrange.h │ ├── effectpropertieswindow.cpp │ ├── effectpropertieswindow.h │ ├── fixturelistwindow.cpp │ ├── fixturelistwindow.h │ ├── fixtureproperties.cpp │ ├── fixtureproperties.h │ ├── fixturetypefunctionsframe.cpp │ ├── fixturetypefunctionsframe.h │ ├── fixturetypeswindow.cpp │ ├── fixturetypeswindow.h │ ├── gradientwindow.h │ ├── groupwindow.cpp │ ├── groupwindow.h │ ├── presetcollectionwindow.cpp │ ├── presetcollectionwindow.h │ ├── propertieswindow.h │ ├── scenewindow.cpp │ ├── scenewindow.h │ ├── settingswindow.cpp │ ├── settingswindow.h │ ├── theatredimensions.cpp │ ├── theatredimensions.h │ ├── timesequencepropertieswindow.cpp │ └── timesequencepropertieswindow.h ├── scripts ├── docker │ ├── Ubuntu22 │ ├── Ubuntu22-build-package │ ├── Ubuntu22-test-deb │ ├── Ubuntu24 │ ├── Ubuntu24-build-package │ ├── Ubuntu24-test-deb │ ├── make_package.sh │ └── run.sh └── run-clang-format.sh ├── system ├── audioplayer.cpp ├── audioplayer.h ├── colormap.h ├── colortemperature.h ├── deletableptr.h ├── dereferencing_iterator.h ├── event_synchronization.h ├── flacdecoder.cpp ├── flacdecoder.h ├── indifferentptr.h ├── jsonreader.cpp ├── jsonreader.h ├── jsonwriter.cpp ├── jsonwriter.h ├── lane.h ├── math.h ├── midi │ ├── buttonset.h │ ├── controller.cpp │ ├── controller.h │ ├── manager.cpp │ └── manager.h ├── openfixturereader.cpp ├── openfixturereader.h ├── optionalnumber.h ├── reader.cpp ├── reader.h ├── settings.cpp ├── settings.h ├── smartconnection.h ├── timepattern.h ├── trackableptr.h ├── trackableptr_variant1.h ├── trackableptr_variant2.h ├── uniquewithoutordering.h ├── writer.cpp └── writer.h ├── tests ├── gui │ └── tunits.cpp ├── runtests.cpp ├── system │ ├── tcolormap.cpp │ ├── tcolortemperature.cpp │ ├── tdeletableptr.cpp │ ├── tfileformat.cpp │ ├── tindifferentptr.cpp │ ├── tjsonreader.cpp │ ├── tjsonwriter.cpp │ ├── tmath.cpp │ ├── topenfixturereader.cpp │ ├── toptionalnumber.cpp │ ├── tsettings.cpp │ ├── ttimepattern.cpp │ ├── ttrackableptr.cpp │ └── tuniquewithoutordering.cpp ├── theatre │ ├── effects │ │ └── trgbmastereffect.cpp │ ├── filters │ │ ├── outputexamples.h │ │ ├── tautomasterfilter.cpp │ │ ├── tmonochromefilter.cpp │ │ └── trgbfilter.cpp │ ├── tchase.cpp │ ├── tcolordeduction.cpp │ ├── tcontrolvalue.cpp │ ├── tfixturecontrol.cpp │ ├── tfixturefunction.cpp │ ├── tfixturegroup.cpp │ ├── tfixturetype.cpp │ ├── tfixturetypefunction.cpp │ ├── tfolder.cpp │ ├── tfolderoperations.cpp │ ├── tfunctiontype.cpp │ ├── tmanagement.cpp │ ├── tpresetcollection.cpp │ ├── tpresetvalue.cpp │ ├── tscene.cpp │ ├── ttheatre.cpp │ ├── ttransition.cpp │ └── tvaluesnapshot.cpp └── tolerance_check.h └── theatre ├── chase.h ├── color.cpp ├── color.h ├── colordeduction.cpp ├── colordeduction.h ├── controllable.h ├── controlvalue.h ├── coordinate2d.h ├── coordinate3d.h ├── design ├── autodesign.cpp ├── autodesign.h ├── colorpreset.cpp ├── colorpreset.h ├── colorsequences.h ├── designinfo.cpp ├── designinfo.h ├── rotation.cpp └── rotation.h ├── devices ├── beatfinder.cpp ├── beatfinder.h ├── dummydevice.h ├── olaconnection.cpp ├── olaconnection.h ├── universemap.cpp └── universemap.h ├── dmxchannel.h ├── effect.cpp ├── effect.h ├── effects ├── audioleveleffect.h ├── colorcontroleffect.h ├── colortemperatureeffect.h ├── constantvalueeffect.h ├── curveeffect.h ├── delayeffect.h ├── dispensereffect.h ├── fadeeffect.h ├── flickereffect.h ├── fluorescentstarteffect.h ├── functiongeneratoreffect.h ├── hue_saturation_lightness_effect.cpp ├── hue_saturation_lightness_effect.h ├── inverteffect.h ├── musicactivationeffect.h ├── pulseeffect.h ├── randomselecteffect.h ├── rgbmastereffect.h ├── thresholdeffect.h ├── timereffect.h ├── twinkleeffect.h └── variableeffect.h ├── effecttype.h ├── filters ├── automasterfilter.h ├── colortemperaturefilter.h ├── filter.cpp ├── filter.h ├── monochromefilter.h └── rgbfilter.h ├── fixture.cpp ├── fixture.h ├── fixturecontrol.h ├── fixturefunction.cpp ├── fixturefunction.h ├── fixturefunctionparameters.h ├── fixturegroup.h ├── fixturemode.cpp ├── fixturemode.h ├── fixturemodefunction.h ├── fixturesymbol.h ├── fixturetype.cpp ├── fixturetype.h ├── folder.cpp ├── folder.h ├── folderobject.cpp ├── folderobject.h ├── folderoperations.h ├── forwards.h ├── functiontype.h ├── input.h ├── management.cpp ├── management.h ├── managementtools.cpp ├── managementtools.h ├── mixstyle.h ├── namedobject.h ├── presetcollection.cpp ├── presetcollection.h ├── presetvalue.cpp ├── presetvalue.h ├── properties ├── audioleveleffectps.h ├── colorcontroleffectps.h ├── colortemperatureeffectps.h ├── constantvalueeffectps.h ├── curveeffectps.h ├── delayeffectps.h ├── fadeeffectps.h ├── flickereffectps.h ├── fluorescentstarteffectps.h ├── functiongeneratorps.h ├── hue_saturation_lightness_ps.h ├── inverteffectps.h ├── musicactivationeffectps.h ├── property.h ├── propertyset.cpp ├── propertyset.h ├── pulseeffectps.h ├── randomselecteffectps.h ├── thresholdeffectps.h ├── timereffectps.h └── twinkleeffectps.h ├── scenes ├── blackoutsceneitem.cpp ├── blackoutsceneitem.h ├── controlsceneitem.h ├── keysceneitem.h ├── scene.cpp ├── scene.h └── sceneitem.h ├── sequence.h ├── sourcevalue.h ├── sourcevaluestore.cpp ├── sourcevaluestore.h ├── stockfixture.h ├── theatre.cpp ├── theatre.h ├── timesequence.h ├── timing.h ├── transition.cpp ├── transition.h ├── trigger.h ├── valuesnapshot.h └── valueuniversesnapshot.h /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/README.md -------------------------------------------------------------------------------- /data/applications/glight.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/data/applications/glight.desktop -------------------------------------------------------------------------------- /data/controllers/apc-mini-mk2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/data/controllers/apc-mini-mk2.json -------------------------------------------------------------------------------- /data/flat-par-qa12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/data/flat-par-qa12.json -------------------------------------------------------------------------------- /data/icons/hicolor/128x128/apps/glight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/data/icons/hicolor/128x128/apps/glight.png -------------------------------------------------------------------------------- /data/icons/hicolor/16x16/apps/glight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/data/icons/hicolor/16x16/apps/glight.png -------------------------------------------------------------------------------- /data/icons/hicolor/24x24/apps/glight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/data/icons/hicolor/24x24/apps/glight.png -------------------------------------------------------------------------------- /data/icons/hicolor/32x32/apps/glight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/data/icons/hicolor/32x32/apps/glight.png -------------------------------------------------------------------------------- /data/icons/hicolor/48x48/apps/glight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/data/icons/hicolor/48x48/apps/glight.png -------------------------------------------------------------------------------- /data/icons/hicolor/64x64/apps/glight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/data/icons/hicolor/64x64/apps/glight.png -------------------------------------------------------------------------------- /data/icons/hicolor/scalable/apps/glight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/data/icons/hicolor/scalable/apps/glight.svg -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/NTDS-2023.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/doc/NTDS-2023.jpg -------------------------------------------------------------------------------- /doc/Screenshot-2019-01-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/doc/Screenshot-2019-01-18.png -------------------------------------------------------------------------------- /doc/Screenshot-2019-06-12-glight-0.8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/doc/Screenshot-2019-06-12-glight-0.8.png -------------------------------------------------------------------------------- /doc/Screenshot-2019-08-07-glight-0.8.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/doc/Screenshot-2019-08-07-glight-0.8.1.png -------------------------------------------------------------------------------- /doc/Screenshot-2023-03-11-glight-0.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/doc/Screenshot-2023-03-11-glight-0.9.png -------------------------------------------------------------------------------- /doc/mylights/list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/doc/mylights/list.txt -------------------------------------------------------------------------------- /doc/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/doc/source/conf.py -------------------------------------------------------------------------------- /doc/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/doc/source/index.rst -------------------------------------------------------------------------------- /doc/source/tutorial/add-fixtures.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/doc/source/tutorial/add-fixtures.rst -------------------------------------------------------------------------------- /doc/source/tutorial/assign-faders.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/doc/source/tutorial/assign-faders.rst -------------------------------------------------------------------------------- /doc/source/tutorial/controlling-lights.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/doc/source/tutorial/controlling-lights.rst -------------------------------------------------------------------------------- /doc/source/tutorial/designing-chases.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/doc/source/tutorial/designing-chases.rst -------------------------------------------------------------------------------- /doc/source/tutorial/images/chase-editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/doc/source/tutorial/images/chase-editor.png -------------------------------------------------------------------------------- /doc/source/tutorial/images/design-wizard-colour-selection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/doc/source/tutorial/images/design-wizard-colour-selection.png -------------------------------------------------------------------------------- /doc/source/tutorial/images/design-wizard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/doc/source/tutorial/images/design-wizard.png -------------------------------------------------------------------------------- /doc/source/tutorial/images/empty-fixture-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/doc/source/tutorial/images/empty-fixture-list.png -------------------------------------------------------------------------------- /doc/source/tutorial/images/faders-assigned.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/doc/source/tutorial/images/faders-assigned.png -------------------------------------------------------------------------------- /doc/source/tutorial/images/fixture-list-with-8-rgb-lights.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/doc/source/tutorial/images/fixture-list-with-8-rgb-lights.png -------------------------------------------------------------------------------- /doc/source/tutorial/images/new-fixture-window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/doc/source/tutorial/images/new-fixture-window.png -------------------------------------------------------------------------------- /doc/source/tutorial/images/one-fader-switched-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/doc/source/tutorial/images/one-fader-switched-on.png -------------------------------------------------------------------------------- /doc/source/tutorial/images/show-and-fader-windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/doc/source/tutorial/images/show-and-fader-windows.png -------------------------------------------------------------------------------- /doc/source/tutorial/images/show-window-with-chase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/doc/source/tutorial/images/show-window-with-chase.png -------------------------------------------------------------------------------- /doc/source/tutorial/images/visualization-window-4-lights-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/doc/source/tutorial/images/visualization-window-4-lights-selected.png -------------------------------------------------------------------------------- /doc/source/tutorial/images/visualization-window-8-lights-after-moving.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/doc/source/tutorial/images/visualization-window-8-lights-after-moving.png -------------------------------------------------------------------------------- /doc/source/tutorial/images/visualization-window-8-lights-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/doc/source/tutorial/images/visualization-window-8-lights-off.png -------------------------------------------------------------------------------- /doc/source/tutorial/images/visualization-window-chase.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/doc/source/tutorial/images/visualization-window-chase.gif -------------------------------------------------------------------------------- /doc/source/tutorial/images/visualization-window-menu-design.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/doc/source/tutorial/images/visualization-window-menu-design.png -------------------------------------------------------------------------------- /doc/source/tutorial/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/doc/source/tutorial/index.rst -------------------------------------------------------------------------------- /doc/source/tutorial/modifying-chases.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/doc/source/tutorial/modifying-chases.rst -------------------------------------------------------------------------------- /doc/source/tutorial/position-fixtures.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/doc/source/tutorial/position-fixtures.rst -------------------------------------------------------------------------------- /doc/source/tutorial/start.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/doc/source/tutorial/start.rst -------------------------------------------------------------------------------- /doc/source/tutorial/theres-more.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/doc/source/tutorial/theres-more.rst -------------------------------------------------------------------------------- /external/hsluv/hsluv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/external/hsluv/hsluv.cpp -------------------------------------------------------------------------------- /external/hsluv/hsluv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/external/hsluv/hsluv.h -------------------------------------------------------------------------------- /glight-cli.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/glight-cli.cpp -------------------------------------------------------------------------------- /glight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/glight.cpp -------------------------------------------------------------------------------- /gui/application.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/application.cpp -------------------------------------------------------------------------------- /gui/application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/application.h -------------------------------------------------------------------------------- /gui/components/audiowidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/components/audiowidget.cpp -------------------------------------------------------------------------------- /gui/components/audiowidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/components/audiowidget.h -------------------------------------------------------------------------------- /gui/components/beatinput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/components/beatinput.cpp -------------------------------------------------------------------------------- /gui/components/beatinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/components/beatinput.h -------------------------------------------------------------------------------- /gui/components/colorbutton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/components/colorbutton.h -------------------------------------------------------------------------------- /gui/components/colorselectwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/components/colorselectwidget.cpp -------------------------------------------------------------------------------- /gui/components/colorselectwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/components/colorselectwidget.h -------------------------------------------------------------------------------- /gui/components/colorsequencewidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/components/colorsequencewidget.cpp -------------------------------------------------------------------------------- /gui/components/colorsequencewidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/components/colorsequencewidget.h -------------------------------------------------------------------------------- /gui/components/controlbutton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/components/controlbutton.cpp -------------------------------------------------------------------------------- /gui/components/controlbutton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/components/controlbutton.h -------------------------------------------------------------------------------- /gui/components/durationinput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/components/durationinput.cpp -------------------------------------------------------------------------------- /gui/components/durationinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/components/durationinput.h -------------------------------------------------------------------------------- /gui/components/fixturelist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/components/fixturelist.cpp -------------------------------------------------------------------------------- /gui/components/fixturelist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/components/fixturelist.h -------------------------------------------------------------------------------- /gui/components/foldercombo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/components/foldercombo.cpp -------------------------------------------------------------------------------- /gui/components/foldercombo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/components/foldercombo.h -------------------------------------------------------------------------------- /gui/components/iconbutton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/components/iconbutton.cpp -------------------------------------------------------------------------------- /gui/components/iconbutton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/components/iconbutton.h -------------------------------------------------------------------------------- /gui/components/inputselectwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/components/inputselectwidget.h -------------------------------------------------------------------------------- /gui/components/nameframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/components/nameframe.cpp -------------------------------------------------------------------------------- /gui/components/nameframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/components/nameframe.h -------------------------------------------------------------------------------- /gui/components/objectbrowser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/components/objectbrowser.h -------------------------------------------------------------------------------- /gui/components/objectlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/components/objectlist.cpp -------------------------------------------------------------------------------- /gui/components/objectlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/components/objectlist.h -------------------------------------------------------------------------------- /gui/components/powermonitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/components/powermonitor.cpp -------------------------------------------------------------------------------- /gui/components/powermonitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/components/powermonitor.h -------------------------------------------------------------------------------- /gui/components/propertiesbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/components/propertiesbox.cpp -------------------------------------------------------------------------------- /gui/components/propertiesbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/components/propertiesbox.h -------------------------------------------------------------------------------- /gui/components/reorderwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/components/reorderwidget.cpp -------------------------------------------------------------------------------- /gui/components/reorderwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/components/reorderwidget.h -------------------------------------------------------------------------------- /gui/components/transitiontypebox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/components/transitiontypebox.h -------------------------------------------------------------------------------- /gui/components/visualizationmenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/components/visualizationmenu.cpp -------------------------------------------------------------------------------- /gui/components/visualizationmenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/components/visualizationmenu.h -------------------------------------------------------------------------------- /gui/components/visualizationwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/components/visualizationwidget.cpp -------------------------------------------------------------------------------- /gui/components/visualizationwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/components/visualizationwidget.h -------------------------------------------------------------------------------- /gui/dialogs/controllableselectiondialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/dialogs/controllableselectiondialog.h -------------------------------------------------------------------------------- /gui/dialogs/createchasedialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/dialogs/createchasedialog.cpp -------------------------------------------------------------------------------- /gui/dialogs/createchasedialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/dialogs/createchasedialog.h -------------------------------------------------------------------------------- /gui/dialogs/inputselectdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/dialogs/inputselectdialog.cpp -------------------------------------------------------------------------------- /gui/dialogs/inputselectdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/dialogs/inputselectdialog.h -------------------------------------------------------------------------------- /gui/dialogs/multicontrollableselectiondialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/dialogs/multicontrollableselectiondialog.cpp -------------------------------------------------------------------------------- /gui/dialogs/multicontrollableselectiondialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/dialogs/multicontrollableselectiondialog.h -------------------------------------------------------------------------------- /gui/dialogs/sceneselect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/dialogs/sceneselect.cpp -------------------------------------------------------------------------------- /gui/dialogs/sceneselect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/dialogs/sceneselect.h -------------------------------------------------------------------------------- /gui/dialogs/stringinputdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/dialogs/stringinputdialog.h -------------------------------------------------------------------------------- /gui/eventtransmitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/eventtransmitter.h -------------------------------------------------------------------------------- /gui/faders/colorcontrolwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/faders/colorcontrolwidget.cpp -------------------------------------------------------------------------------- /gui/faders/colorcontrolwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/faders/colorcontrolwidget.h -------------------------------------------------------------------------------- /gui/faders/combocontrolwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/faders/combocontrolwidget.cpp -------------------------------------------------------------------------------- /gui/faders/combocontrolwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/faders/combocontrolwidget.h -------------------------------------------------------------------------------- /gui/faders/controlmenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/faders/controlmenu.cpp -------------------------------------------------------------------------------- /gui/faders/controlmenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/faders/controlmenu.h -------------------------------------------------------------------------------- /gui/faders/controlwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/faders/controlwidget.cpp -------------------------------------------------------------------------------- /gui/faders/controlwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/faders/controlwidget.h -------------------------------------------------------------------------------- /gui/faders/faderwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/faders/faderwidget.cpp -------------------------------------------------------------------------------- /gui/faders/faderwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/faders/faderwidget.h -------------------------------------------------------------------------------- /gui/faders/faderwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/faders/faderwindow.cpp -------------------------------------------------------------------------------- /gui/faders/faderwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/faders/faderwindow.h -------------------------------------------------------------------------------- /gui/faders/moverwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/faders/moverwidget.cpp -------------------------------------------------------------------------------- /gui/faders/moverwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/faders/moverwidget.h -------------------------------------------------------------------------------- /gui/faders/togglewidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/faders/togglewidget.cpp -------------------------------------------------------------------------------- /gui/faders/togglewidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/faders/togglewidget.h -------------------------------------------------------------------------------- /gui/fixtureselection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/fixtureselection.h -------------------------------------------------------------------------------- /gui/functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/functions.cpp -------------------------------------------------------------------------------- /gui/functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/functions.h -------------------------------------------------------------------------------- /gui/instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/instance.cpp -------------------------------------------------------------------------------- /gui/instance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/instance.h -------------------------------------------------------------------------------- /gui/mainwindow/actions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/mainwindow/actions.cpp -------------------------------------------------------------------------------- /gui/mainwindow/actions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/mainwindow/actions.h -------------------------------------------------------------------------------- /gui/mainwindow/mainmenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/mainwindow/mainmenu.cpp -------------------------------------------------------------------------------- /gui/mainwindow/mainmenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/mainwindow/mainmenu.h -------------------------------------------------------------------------------- /gui/mainwindow/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/mainwindow/mainwindow.cpp -------------------------------------------------------------------------------- /gui/mainwindow/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/mainwindow/mainwindow.h -------------------------------------------------------------------------------- /gui/mainwindow/objectlistframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/mainwindow/objectlistframe.cpp -------------------------------------------------------------------------------- /gui/mainwindow/objectlistframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/mainwindow/objectlistframe.h -------------------------------------------------------------------------------- /gui/mainwindow/objectwindowlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/mainwindow/objectwindowlist.h -------------------------------------------------------------------------------- /gui/menufunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/menufunctions.h -------------------------------------------------------------------------------- /gui/objectlistframe.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gui/recursionlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/recursionlock.h -------------------------------------------------------------------------------- /gui/renderengine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/renderengine.cpp -------------------------------------------------------------------------------- /gui/renderengine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/renderengine.h -------------------------------------------------------------------------------- /gui/state/fadersetstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/state/fadersetstate.h -------------------------------------------------------------------------------- /gui/state/faderstate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/state/faderstate.cpp -------------------------------------------------------------------------------- /gui/state/faderstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/state/faderstate.h -------------------------------------------------------------------------------- /gui/state/guistate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/state/guistate.h -------------------------------------------------------------------------------- /gui/units.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/units.h -------------------------------------------------------------------------------- /gui/windows/addfixturewindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/windows/addfixturewindow.cpp -------------------------------------------------------------------------------- /gui/windows/addfixturewindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/windows/addfixturewindow.h -------------------------------------------------------------------------------- /gui/windows/chasepropertieswindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/windows/chasepropertieswindow.cpp -------------------------------------------------------------------------------- /gui/windows/chasepropertieswindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/windows/chasepropertieswindow.h -------------------------------------------------------------------------------- /gui/windows/childwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/windows/childwindow.h -------------------------------------------------------------------------------- /gui/windows/childwindowlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/windows/childwindowlist.h -------------------------------------------------------------------------------- /gui/windows/designwizard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/windows/designwizard.cpp -------------------------------------------------------------------------------- /gui/windows/designwizard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/windows/designwizard.h -------------------------------------------------------------------------------- /gui/windows/editcolorrange.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/windows/editcolorrange.cpp -------------------------------------------------------------------------------- /gui/windows/editcolorrange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/windows/editcolorrange.h -------------------------------------------------------------------------------- /gui/windows/effectpropertieswindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/windows/effectpropertieswindow.cpp -------------------------------------------------------------------------------- /gui/windows/effectpropertieswindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/windows/effectpropertieswindow.h -------------------------------------------------------------------------------- /gui/windows/fixturelistwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/windows/fixturelistwindow.cpp -------------------------------------------------------------------------------- /gui/windows/fixturelistwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/windows/fixturelistwindow.h -------------------------------------------------------------------------------- /gui/windows/fixtureproperties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/windows/fixtureproperties.cpp -------------------------------------------------------------------------------- /gui/windows/fixtureproperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/windows/fixtureproperties.h -------------------------------------------------------------------------------- /gui/windows/fixturetypefunctionsframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/windows/fixturetypefunctionsframe.cpp -------------------------------------------------------------------------------- /gui/windows/fixturetypefunctionsframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/windows/fixturetypefunctionsframe.h -------------------------------------------------------------------------------- /gui/windows/fixturetypeswindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/windows/fixturetypeswindow.cpp -------------------------------------------------------------------------------- /gui/windows/fixturetypeswindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/windows/fixturetypeswindow.h -------------------------------------------------------------------------------- /gui/windows/gradientwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/windows/gradientwindow.h -------------------------------------------------------------------------------- /gui/windows/groupwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/windows/groupwindow.cpp -------------------------------------------------------------------------------- /gui/windows/groupwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/windows/groupwindow.h -------------------------------------------------------------------------------- /gui/windows/presetcollectionwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/windows/presetcollectionwindow.cpp -------------------------------------------------------------------------------- /gui/windows/presetcollectionwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/windows/presetcollectionwindow.h -------------------------------------------------------------------------------- /gui/windows/propertieswindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/windows/propertieswindow.h -------------------------------------------------------------------------------- /gui/windows/scenewindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/windows/scenewindow.cpp -------------------------------------------------------------------------------- /gui/windows/scenewindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/windows/scenewindow.h -------------------------------------------------------------------------------- /gui/windows/settingswindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/windows/settingswindow.cpp -------------------------------------------------------------------------------- /gui/windows/settingswindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/windows/settingswindow.h -------------------------------------------------------------------------------- /gui/windows/theatredimensions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/windows/theatredimensions.cpp -------------------------------------------------------------------------------- /gui/windows/theatredimensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/windows/theatredimensions.h -------------------------------------------------------------------------------- /gui/windows/timesequencepropertieswindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/windows/timesequencepropertieswindow.cpp -------------------------------------------------------------------------------- /gui/windows/timesequencepropertieswindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/gui/windows/timesequencepropertieswindow.h -------------------------------------------------------------------------------- /scripts/docker/Ubuntu22: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/scripts/docker/Ubuntu22 -------------------------------------------------------------------------------- /scripts/docker/Ubuntu22-build-package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/scripts/docker/Ubuntu22-build-package -------------------------------------------------------------------------------- /scripts/docker/Ubuntu22-test-deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/scripts/docker/Ubuntu22-test-deb -------------------------------------------------------------------------------- /scripts/docker/Ubuntu24: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/scripts/docker/Ubuntu24 -------------------------------------------------------------------------------- /scripts/docker/Ubuntu24-build-package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/scripts/docker/Ubuntu24-build-package -------------------------------------------------------------------------------- /scripts/docker/Ubuntu24-test-deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/scripts/docker/Ubuntu24-test-deb -------------------------------------------------------------------------------- /scripts/docker/make_package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/scripts/docker/make_package.sh -------------------------------------------------------------------------------- /scripts/docker/run.sh: -------------------------------------------------------------------------------- 1 | sudo docker build -f Ubuntu22 ../.. 2 | -------------------------------------------------------------------------------- /scripts/run-clang-format.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/scripts/run-clang-format.sh -------------------------------------------------------------------------------- /system/audioplayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/system/audioplayer.cpp -------------------------------------------------------------------------------- /system/audioplayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/system/audioplayer.h -------------------------------------------------------------------------------- /system/colormap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/system/colormap.h -------------------------------------------------------------------------------- /system/colortemperature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/system/colortemperature.h -------------------------------------------------------------------------------- /system/deletableptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/system/deletableptr.h -------------------------------------------------------------------------------- /system/dereferencing_iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/system/dereferencing_iterator.h -------------------------------------------------------------------------------- /system/event_synchronization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/system/event_synchronization.h -------------------------------------------------------------------------------- /system/flacdecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/system/flacdecoder.cpp -------------------------------------------------------------------------------- /system/flacdecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/system/flacdecoder.h -------------------------------------------------------------------------------- /system/indifferentptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/system/indifferentptr.h -------------------------------------------------------------------------------- /system/jsonreader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/system/jsonreader.cpp -------------------------------------------------------------------------------- /system/jsonreader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/system/jsonreader.h -------------------------------------------------------------------------------- /system/jsonwriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/system/jsonwriter.cpp -------------------------------------------------------------------------------- /system/jsonwriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/system/jsonwriter.h -------------------------------------------------------------------------------- /system/lane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/system/lane.h -------------------------------------------------------------------------------- /system/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/system/math.h -------------------------------------------------------------------------------- /system/midi/buttonset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/system/midi/buttonset.h -------------------------------------------------------------------------------- /system/midi/controller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/system/midi/controller.cpp -------------------------------------------------------------------------------- /system/midi/controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/system/midi/controller.h -------------------------------------------------------------------------------- /system/midi/manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/system/midi/manager.cpp -------------------------------------------------------------------------------- /system/midi/manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/system/midi/manager.h -------------------------------------------------------------------------------- /system/openfixturereader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/system/openfixturereader.cpp -------------------------------------------------------------------------------- /system/openfixturereader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/system/openfixturereader.h -------------------------------------------------------------------------------- /system/optionalnumber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/system/optionalnumber.h -------------------------------------------------------------------------------- /system/reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/system/reader.cpp -------------------------------------------------------------------------------- /system/reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/system/reader.h -------------------------------------------------------------------------------- /system/settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/system/settings.cpp -------------------------------------------------------------------------------- /system/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/system/settings.h -------------------------------------------------------------------------------- /system/smartconnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/system/smartconnection.h -------------------------------------------------------------------------------- /system/timepattern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/system/timepattern.h -------------------------------------------------------------------------------- /system/trackableptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/system/trackableptr.h -------------------------------------------------------------------------------- /system/trackableptr_variant1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/system/trackableptr_variant1.h -------------------------------------------------------------------------------- /system/trackableptr_variant2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/system/trackableptr_variant2.h -------------------------------------------------------------------------------- /system/uniquewithoutordering.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/system/uniquewithoutordering.h -------------------------------------------------------------------------------- /system/writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/system/writer.cpp -------------------------------------------------------------------------------- /system/writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/system/writer.h -------------------------------------------------------------------------------- /tests/gui/tunits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/tests/gui/tunits.cpp -------------------------------------------------------------------------------- /tests/runtests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/tests/runtests.cpp -------------------------------------------------------------------------------- /tests/system/tcolormap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/tests/system/tcolormap.cpp -------------------------------------------------------------------------------- /tests/system/tcolortemperature.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/tests/system/tcolortemperature.cpp -------------------------------------------------------------------------------- /tests/system/tdeletableptr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/tests/system/tdeletableptr.cpp -------------------------------------------------------------------------------- /tests/system/tfileformat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/tests/system/tfileformat.cpp -------------------------------------------------------------------------------- /tests/system/tindifferentptr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/tests/system/tindifferentptr.cpp -------------------------------------------------------------------------------- /tests/system/tjsonreader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/tests/system/tjsonreader.cpp -------------------------------------------------------------------------------- /tests/system/tjsonwriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/tests/system/tjsonwriter.cpp -------------------------------------------------------------------------------- /tests/system/tmath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/tests/system/tmath.cpp -------------------------------------------------------------------------------- /tests/system/topenfixturereader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/tests/system/topenfixturereader.cpp -------------------------------------------------------------------------------- /tests/system/toptionalnumber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/tests/system/toptionalnumber.cpp -------------------------------------------------------------------------------- /tests/system/tsettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/tests/system/tsettings.cpp -------------------------------------------------------------------------------- /tests/system/ttimepattern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/tests/system/ttimepattern.cpp -------------------------------------------------------------------------------- /tests/system/ttrackableptr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/tests/system/ttrackableptr.cpp -------------------------------------------------------------------------------- /tests/system/tuniquewithoutordering.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/tests/system/tuniquewithoutordering.cpp -------------------------------------------------------------------------------- /tests/theatre/effects/trgbmastereffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/tests/theatre/effects/trgbmastereffect.cpp -------------------------------------------------------------------------------- /tests/theatre/filters/outputexamples.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/tests/theatre/filters/outputexamples.h -------------------------------------------------------------------------------- /tests/theatre/filters/tautomasterfilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/tests/theatre/filters/tautomasterfilter.cpp -------------------------------------------------------------------------------- /tests/theatre/filters/tmonochromefilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/tests/theatre/filters/tmonochromefilter.cpp -------------------------------------------------------------------------------- /tests/theatre/filters/trgbfilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/tests/theatre/filters/trgbfilter.cpp -------------------------------------------------------------------------------- /tests/theatre/tchase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/tests/theatre/tchase.cpp -------------------------------------------------------------------------------- /tests/theatre/tcolordeduction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/tests/theatre/tcolordeduction.cpp -------------------------------------------------------------------------------- /tests/theatre/tcontrolvalue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/tests/theatre/tcontrolvalue.cpp -------------------------------------------------------------------------------- /tests/theatre/tfixturecontrol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/tests/theatre/tfixturecontrol.cpp -------------------------------------------------------------------------------- /tests/theatre/tfixturefunction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/tests/theatre/tfixturefunction.cpp -------------------------------------------------------------------------------- /tests/theatre/tfixturegroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/tests/theatre/tfixturegroup.cpp -------------------------------------------------------------------------------- /tests/theatre/tfixturetype.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/tests/theatre/tfixturetype.cpp -------------------------------------------------------------------------------- /tests/theatre/tfixturetypefunction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/tests/theatre/tfixturetypefunction.cpp -------------------------------------------------------------------------------- /tests/theatre/tfolder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/tests/theatre/tfolder.cpp -------------------------------------------------------------------------------- /tests/theatre/tfolderoperations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/tests/theatre/tfolderoperations.cpp -------------------------------------------------------------------------------- /tests/theatre/tfunctiontype.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/tests/theatre/tfunctiontype.cpp -------------------------------------------------------------------------------- /tests/theatre/tmanagement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/tests/theatre/tmanagement.cpp -------------------------------------------------------------------------------- /tests/theatre/tpresetcollection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/tests/theatre/tpresetcollection.cpp -------------------------------------------------------------------------------- /tests/theatre/tpresetvalue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/tests/theatre/tpresetvalue.cpp -------------------------------------------------------------------------------- /tests/theatre/tscene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/tests/theatre/tscene.cpp -------------------------------------------------------------------------------- /tests/theatre/ttheatre.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/tests/theatre/ttheatre.cpp -------------------------------------------------------------------------------- /tests/theatre/ttransition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/tests/theatre/ttransition.cpp -------------------------------------------------------------------------------- /tests/theatre/tvaluesnapshot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/tests/theatre/tvaluesnapshot.cpp -------------------------------------------------------------------------------- /tests/tolerance_check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/tests/tolerance_check.h -------------------------------------------------------------------------------- /theatre/chase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/chase.h -------------------------------------------------------------------------------- /theatre/color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/color.cpp -------------------------------------------------------------------------------- /theatre/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/color.h -------------------------------------------------------------------------------- /theatre/colordeduction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/colordeduction.cpp -------------------------------------------------------------------------------- /theatre/colordeduction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/colordeduction.h -------------------------------------------------------------------------------- /theatre/controllable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/controllable.h -------------------------------------------------------------------------------- /theatre/controlvalue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/controlvalue.h -------------------------------------------------------------------------------- /theatre/coordinate2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/coordinate2d.h -------------------------------------------------------------------------------- /theatre/coordinate3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/coordinate3d.h -------------------------------------------------------------------------------- /theatre/design/autodesign.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/design/autodesign.cpp -------------------------------------------------------------------------------- /theatre/design/autodesign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/design/autodesign.h -------------------------------------------------------------------------------- /theatre/design/colorpreset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/design/colorpreset.cpp -------------------------------------------------------------------------------- /theatre/design/colorpreset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/design/colorpreset.h -------------------------------------------------------------------------------- /theatre/design/colorsequences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/design/colorsequences.h -------------------------------------------------------------------------------- /theatre/design/designinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/design/designinfo.cpp -------------------------------------------------------------------------------- /theatre/design/designinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/design/designinfo.h -------------------------------------------------------------------------------- /theatre/design/rotation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/design/rotation.cpp -------------------------------------------------------------------------------- /theatre/design/rotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/design/rotation.h -------------------------------------------------------------------------------- /theatre/devices/beatfinder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/devices/beatfinder.cpp -------------------------------------------------------------------------------- /theatre/devices/beatfinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/devices/beatfinder.h -------------------------------------------------------------------------------- /theatre/devices/dummydevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/devices/dummydevice.h -------------------------------------------------------------------------------- /theatre/devices/olaconnection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/devices/olaconnection.cpp -------------------------------------------------------------------------------- /theatre/devices/olaconnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/devices/olaconnection.h -------------------------------------------------------------------------------- /theatre/devices/universemap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/devices/universemap.cpp -------------------------------------------------------------------------------- /theatre/devices/universemap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/devices/universemap.h -------------------------------------------------------------------------------- /theatre/dmxchannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/dmxchannel.h -------------------------------------------------------------------------------- /theatre/effect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/effect.cpp -------------------------------------------------------------------------------- /theatre/effect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/effect.h -------------------------------------------------------------------------------- /theatre/effects/audioleveleffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/effects/audioleveleffect.h -------------------------------------------------------------------------------- /theatre/effects/colorcontroleffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/effects/colorcontroleffect.h -------------------------------------------------------------------------------- /theatre/effects/colortemperatureeffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/effects/colortemperatureeffect.h -------------------------------------------------------------------------------- /theatre/effects/constantvalueeffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/effects/constantvalueeffect.h -------------------------------------------------------------------------------- /theatre/effects/curveeffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/effects/curveeffect.h -------------------------------------------------------------------------------- /theatre/effects/delayeffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/effects/delayeffect.h -------------------------------------------------------------------------------- /theatre/effects/dispensereffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/effects/dispensereffect.h -------------------------------------------------------------------------------- /theatre/effects/fadeeffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/effects/fadeeffect.h -------------------------------------------------------------------------------- /theatre/effects/flickereffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/effects/flickereffect.h -------------------------------------------------------------------------------- /theatre/effects/fluorescentstarteffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/effects/fluorescentstarteffect.h -------------------------------------------------------------------------------- /theatre/effects/functiongeneratoreffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/effects/functiongeneratoreffect.h -------------------------------------------------------------------------------- /theatre/effects/hue_saturation_lightness_effect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/effects/hue_saturation_lightness_effect.cpp -------------------------------------------------------------------------------- /theatre/effects/hue_saturation_lightness_effect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/effects/hue_saturation_lightness_effect.h -------------------------------------------------------------------------------- /theatre/effects/inverteffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/effects/inverteffect.h -------------------------------------------------------------------------------- /theatre/effects/musicactivationeffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/effects/musicactivationeffect.h -------------------------------------------------------------------------------- /theatre/effects/pulseeffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/effects/pulseeffect.h -------------------------------------------------------------------------------- /theatre/effects/randomselecteffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/effects/randomselecteffect.h -------------------------------------------------------------------------------- /theatre/effects/rgbmastereffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/effects/rgbmastereffect.h -------------------------------------------------------------------------------- /theatre/effects/thresholdeffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/effects/thresholdeffect.h -------------------------------------------------------------------------------- /theatre/effects/timereffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/effects/timereffect.h -------------------------------------------------------------------------------- /theatre/effects/twinkleeffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/effects/twinkleeffect.h -------------------------------------------------------------------------------- /theatre/effects/variableeffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/effects/variableeffect.h -------------------------------------------------------------------------------- /theatre/effecttype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/effecttype.h -------------------------------------------------------------------------------- /theatre/filters/automasterfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/filters/automasterfilter.h -------------------------------------------------------------------------------- /theatre/filters/colortemperaturefilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/filters/colortemperaturefilter.h -------------------------------------------------------------------------------- /theatre/filters/filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/filters/filter.cpp -------------------------------------------------------------------------------- /theatre/filters/filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/filters/filter.h -------------------------------------------------------------------------------- /theatre/filters/monochromefilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/filters/monochromefilter.h -------------------------------------------------------------------------------- /theatre/filters/rgbfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/filters/rgbfilter.h -------------------------------------------------------------------------------- /theatre/fixture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/fixture.cpp -------------------------------------------------------------------------------- /theatre/fixture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/fixture.h -------------------------------------------------------------------------------- /theatre/fixturecontrol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/fixturecontrol.h -------------------------------------------------------------------------------- /theatre/fixturefunction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/fixturefunction.cpp -------------------------------------------------------------------------------- /theatre/fixturefunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/fixturefunction.h -------------------------------------------------------------------------------- /theatre/fixturefunctionparameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/fixturefunctionparameters.h -------------------------------------------------------------------------------- /theatre/fixturegroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/fixturegroup.h -------------------------------------------------------------------------------- /theatre/fixturemode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/fixturemode.cpp -------------------------------------------------------------------------------- /theatre/fixturemode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/fixturemode.h -------------------------------------------------------------------------------- /theatre/fixturemodefunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/fixturemodefunction.h -------------------------------------------------------------------------------- /theatre/fixturesymbol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/fixturesymbol.h -------------------------------------------------------------------------------- /theatre/fixturetype.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/fixturetype.cpp -------------------------------------------------------------------------------- /theatre/fixturetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/fixturetype.h -------------------------------------------------------------------------------- /theatre/folder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/folder.cpp -------------------------------------------------------------------------------- /theatre/folder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/folder.h -------------------------------------------------------------------------------- /theatre/folderobject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/folderobject.cpp -------------------------------------------------------------------------------- /theatre/folderobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/folderobject.h -------------------------------------------------------------------------------- /theatre/folderoperations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/folderoperations.h -------------------------------------------------------------------------------- /theatre/forwards.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/forwards.h -------------------------------------------------------------------------------- /theatre/functiontype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/functiontype.h -------------------------------------------------------------------------------- /theatre/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/input.h -------------------------------------------------------------------------------- /theatre/management.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/management.cpp -------------------------------------------------------------------------------- /theatre/management.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/management.h -------------------------------------------------------------------------------- /theatre/managementtools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/managementtools.cpp -------------------------------------------------------------------------------- /theatre/managementtools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/managementtools.h -------------------------------------------------------------------------------- /theatre/mixstyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/mixstyle.h -------------------------------------------------------------------------------- /theatre/namedobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/namedobject.h -------------------------------------------------------------------------------- /theatre/presetcollection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/presetcollection.cpp -------------------------------------------------------------------------------- /theatre/presetcollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/presetcollection.h -------------------------------------------------------------------------------- /theatre/presetvalue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/presetvalue.cpp -------------------------------------------------------------------------------- /theatre/presetvalue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/presetvalue.h -------------------------------------------------------------------------------- /theatre/properties/audioleveleffectps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/properties/audioleveleffectps.h -------------------------------------------------------------------------------- /theatre/properties/colorcontroleffectps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/properties/colorcontroleffectps.h -------------------------------------------------------------------------------- /theatre/properties/colortemperatureeffectps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/properties/colortemperatureeffectps.h -------------------------------------------------------------------------------- /theatre/properties/constantvalueeffectps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/properties/constantvalueeffectps.h -------------------------------------------------------------------------------- /theatre/properties/curveeffectps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/properties/curveeffectps.h -------------------------------------------------------------------------------- /theatre/properties/delayeffectps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/properties/delayeffectps.h -------------------------------------------------------------------------------- /theatre/properties/fadeeffectps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/properties/fadeeffectps.h -------------------------------------------------------------------------------- /theatre/properties/flickereffectps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/properties/flickereffectps.h -------------------------------------------------------------------------------- /theatre/properties/fluorescentstarteffectps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/properties/fluorescentstarteffectps.h -------------------------------------------------------------------------------- /theatre/properties/functiongeneratorps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/properties/functiongeneratorps.h -------------------------------------------------------------------------------- /theatre/properties/hue_saturation_lightness_ps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/properties/hue_saturation_lightness_ps.h -------------------------------------------------------------------------------- /theatre/properties/inverteffectps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/properties/inverteffectps.h -------------------------------------------------------------------------------- /theatre/properties/musicactivationeffectps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/properties/musicactivationeffectps.h -------------------------------------------------------------------------------- /theatre/properties/property.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/properties/property.h -------------------------------------------------------------------------------- /theatre/properties/propertyset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/properties/propertyset.cpp -------------------------------------------------------------------------------- /theatre/properties/propertyset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/properties/propertyset.h -------------------------------------------------------------------------------- /theatre/properties/pulseeffectps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/properties/pulseeffectps.h -------------------------------------------------------------------------------- /theatre/properties/randomselecteffectps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/properties/randomselecteffectps.h -------------------------------------------------------------------------------- /theatre/properties/thresholdeffectps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/properties/thresholdeffectps.h -------------------------------------------------------------------------------- /theatre/properties/timereffectps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/properties/timereffectps.h -------------------------------------------------------------------------------- /theatre/properties/twinkleeffectps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/properties/twinkleeffectps.h -------------------------------------------------------------------------------- /theatre/scenes/blackoutsceneitem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/scenes/blackoutsceneitem.cpp -------------------------------------------------------------------------------- /theatre/scenes/blackoutsceneitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/scenes/blackoutsceneitem.h -------------------------------------------------------------------------------- /theatre/scenes/controlsceneitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/scenes/controlsceneitem.h -------------------------------------------------------------------------------- /theatre/scenes/keysceneitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/scenes/keysceneitem.h -------------------------------------------------------------------------------- /theatre/scenes/scene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/scenes/scene.cpp -------------------------------------------------------------------------------- /theatre/scenes/scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/scenes/scene.h -------------------------------------------------------------------------------- /theatre/scenes/sceneitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/scenes/sceneitem.h -------------------------------------------------------------------------------- /theatre/sequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/sequence.h -------------------------------------------------------------------------------- /theatre/sourcevalue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/sourcevalue.h -------------------------------------------------------------------------------- /theatre/sourcevaluestore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/sourcevaluestore.cpp -------------------------------------------------------------------------------- /theatre/sourcevaluestore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/sourcevaluestore.h -------------------------------------------------------------------------------- /theatre/stockfixture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/stockfixture.h -------------------------------------------------------------------------------- /theatre/theatre.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/theatre.cpp -------------------------------------------------------------------------------- /theatre/theatre.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/theatre.h -------------------------------------------------------------------------------- /theatre/timesequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/timesequence.h -------------------------------------------------------------------------------- /theatre/timing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/timing.h -------------------------------------------------------------------------------- /theatre/transition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/transition.cpp -------------------------------------------------------------------------------- /theatre/transition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/transition.h -------------------------------------------------------------------------------- /theatre/trigger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/trigger.h -------------------------------------------------------------------------------- /theatre/valuesnapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/valuesnapshot.h -------------------------------------------------------------------------------- /theatre/valueuniversesnapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroffringa/glight/HEAD/theatre/valueuniversesnapshot.h --------------------------------------------------------------------------------