├── .gitignore ├── LICENSE-GPLv3.txt ├── LICENSE.md ├── Makefile ├── README.md ├── doc ├── Foldingv1.png ├── Foldingv1_big.png └── dummy ├── plugin.json ├── res ├── FoldingLight.svg ├── Knob_Black_Light_21.svg ├── Knob_Blue_Light_42.svg ├── Knob_Cap_Light_42_fg.svg ├── Knob_Grey_Light_42.svg ├── Knob_Ring_Light_42_bg.svg ├── Knob_White_Light_42.svg ├── LFoldLight.svg ├── PlugLight.svg ├── Switch_Blue_LinExp_ExpOn_Light.svg ├── Switch_Blue_LinExp_LinOn_Light.svg ├── Switch_Blue_TriSine_SineOn_Light.svg ├── Switch_Blue_TriSine_TriOn_Light.svg ├── Switch_Grey_Bi_Off.svg └── Switch_Grey_Bi_On.svg └── src ├── Folding ├── Folding.cpp ├── Folding.hpp └── FoldingWidget.cpp ├── LFold ├── LFold.cpp ├── LFold.hpp └── LFoldWidget.cpp ├── UIControls.hpp ├── plugin.cpp └── plugin.hpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimatedCircuits/RackModules/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE-GPLv3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimatedCircuits/RackModules/HEAD/LICENSE-GPLv3.txt -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimatedCircuits/RackModules/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimatedCircuits/RackModules/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimatedCircuits/RackModules/HEAD/README.md -------------------------------------------------------------------------------- /doc/Foldingv1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimatedCircuits/RackModules/HEAD/doc/Foldingv1.png -------------------------------------------------------------------------------- /doc/Foldingv1_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimatedCircuits/RackModules/HEAD/doc/Foldingv1_big.png -------------------------------------------------------------------------------- /doc/dummy: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimatedCircuits/RackModules/HEAD/plugin.json -------------------------------------------------------------------------------- /res/FoldingLight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimatedCircuits/RackModules/HEAD/res/FoldingLight.svg -------------------------------------------------------------------------------- /res/Knob_Black_Light_21.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimatedCircuits/RackModules/HEAD/res/Knob_Black_Light_21.svg -------------------------------------------------------------------------------- /res/Knob_Blue_Light_42.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimatedCircuits/RackModules/HEAD/res/Knob_Blue_Light_42.svg -------------------------------------------------------------------------------- /res/Knob_Cap_Light_42_fg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimatedCircuits/RackModules/HEAD/res/Knob_Cap_Light_42_fg.svg -------------------------------------------------------------------------------- /res/Knob_Grey_Light_42.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimatedCircuits/RackModules/HEAD/res/Knob_Grey_Light_42.svg -------------------------------------------------------------------------------- /res/Knob_Ring_Light_42_bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimatedCircuits/RackModules/HEAD/res/Knob_Ring_Light_42_bg.svg -------------------------------------------------------------------------------- /res/Knob_White_Light_42.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimatedCircuits/RackModules/HEAD/res/Knob_White_Light_42.svg -------------------------------------------------------------------------------- /res/LFoldLight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimatedCircuits/RackModules/HEAD/res/LFoldLight.svg -------------------------------------------------------------------------------- /res/PlugLight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimatedCircuits/RackModules/HEAD/res/PlugLight.svg -------------------------------------------------------------------------------- /res/Switch_Blue_LinExp_ExpOn_Light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimatedCircuits/RackModules/HEAD/res/Switch_Blue_LinExp_ExpOn_Light.svg -------------------------------------------------------------------------------- /res/Switch_Blue_LinExp_LinOn_Light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimatedCircuits/RackModules/HEAD/res/Switch_Blue_LinExp_LinOn_Light.svg -------------------------------------------------------------------------------- /res/Switch_Blue_TriSine_SineOn_Light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimatedCircuits/RackModules/HEAD/res/Switch_Blue_TriSine_SineOn_Light.svg -------------------------------------------------------------------------------- /res/Switch_Blue_TriSine_TriOn_Light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimatedCircuits/RackModules/HEAD/res/Switch_Blue_TriSine_TriOn_Light.svg -------------------------------------------------------------------------------- /res/Switch_Grey_Bi_Off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimatedCircuits/RackModules/HEAD/res/Switch_Grey_Bi_Off.svg -------------------------------------------------------------------------------- /res/Switch_Grey_Bi_On.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimatedCircuits/RackModules/HEAD/res/Switch_Grey_Bi_On.svg -------------------------------------------------------------------------------- /src/Folding/Folding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimatedCircuits/RackModules/HEAD/src/Folding/Folding.cpp -------------------------------------------------------------------------------- /src/Folding/Folding.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimatedCircuits/RackModules/HEAD/src/Folding/Folding.hpp -------------------------------------------------------------------------------- /src/Folding/FoldingWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimatedCircuits/RackModules/HEAD/src/Folding/FoldingWidget.cpp -------------------------------------------------------------------------------- /src/LFold/LFold.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimatedCircuits/RackModules/HEAD/src/LFold/LFold.cpp -------------------------------------------------------------------------------- /src/LFold/LFold.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimatedCircuits/RackModules/HEAD/src/LFold/LFold.hpp -------------------------------------------------------------------------------- /src/LFold/LFoldWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimatedCircuits/RackModules/HEAD/src/LFold/LFoldWidget.cpp -------------------------------------------------------------------------------- /src/UIControls.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimatedCircuits/RackModules/HEAD/src/UIControls.hpp -------------------------------------------------------------------------------- /src/plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimatedCircuits/RackModules/HEAD/src/plugin.cpp -------------------------------------------------------------------------------- /src/plugin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimatedCircuits/RackModules/HEAD/src/plugin.hpp --------------------------------------------------------------------------------