├── .clang-format ├── .github └── workflows │ ├── build.yml │ └── doxygen.yml ├── .gitignore ├── CMakeIncludes ├── Juce.cmake ├── PGMPluginval.cmake └── config.cmake ├── CMakeLists.txt ├── CMakePresets.json ├── CONTRIBUTING.md ├── DESIGNING.md ├── Examples ├── APVTS_Tutorial │ ├── APVTS_Tutorial.jucer │ ├── CMakeLists.txt │ └── Source │ │ └── PluginProcessor.cpp ├── CMakeLists.txt ├── EqualizerExample │ ├── CMakeLists.txt │ ├── EqualizerExample.jucer │ ├── README.md │ ├── Resources │ │ ├── Logo.png │ │ └── magic.xml │ └── Source │ │ ├── PluginProcessor.cpp │ │ └── PluginProcessor.h ├── ExtendingExample │ ├── CMakeLists.txt │ ├── ExtendingExample.jucer │ └── Source │ │ ├── PluginProcessor.cpp │ │ ├── PluginProcessor.h │ │ └── magic.xml ├── FoleysSynth │ ├── CMakeLists.txt │ ├── FoleysSynth.jucer │ ├── README.md │ ├── Resources │ │ ├── Logo.png │ │ └── magic.xml │ └── Source │ │ ├── FoleysSynth.cpp │ │ ├── FoleysSynth.h │ │ ├── PluginProcessor.cpp │ │ ├── PluginProcessor.h │ │ └── PresetListBox.h ├── PlayerExample │ ├── CMakeLists.txt │ ├── PlayerExample.jucer │ ├── Resources │ │ └── magic.xml │ └── Source │ │ ├── Main.cpp │ │ ├── MainComponent.cpp │ │ ├── MainComponent.h │ │ ├── Waveform.cpp │ │ └── Waveform.h ├── SignalGenerator │ ├── CMakeLists.txt │ ├── README.md │ ├── Resources │ │ └── magic.xml │ ├── SignalGenerator.jucer │ └── Source │ │ ├── PluginProcessor.cpp │ │ └── PluginProcessor.h └── Vanilla │ ├── CMakeLists.txt │ ├── Resources │ └── magic.xml │ └── Source │ ├── PluginProcessor.cpp │ └── PluginProcessor.h ├── LICENSE.md ├── README.md ├── Tests ├── CMakeLists.txt ├── foleys_GuiTreeTests.cpp ├── foleys_MagicProcessorTests.cpp └── foleys_TestProcessors.h ├── VERSION.md ├── doxygen ├── Doxyfile ├── Logo-FF-text.png ├── Logo-FF.png ├── customdoxygen.css ├── ff-icon.png ├── footer.html └── header.html └── modules ├── CMakeLists.txt └── foleys_gui_magic ├── Editor ├── foleys_GUITreeEditor.cpp ├── foleys_GUITreeEditor.h ├── foleys_MultiListPropertyComponent.cpp ├── foleys_MultiListPropertyComponent.h ├── foleys_Palette.cpp ├── foleys_Palette.h ├── foleys_PropertiesEditor.cpp ├── foleys_PropertiesEditor.h ├── foleys_StyleBoolPropertyComponent.cpp ├── foleys_StyleBoolPropertyComponent.h ├── foleys_StyleChoicePropertyComponent.cpp ├── foleys_StyleChoicePropertyComponent.h ├── foleys_StyleColourPropertyComponent.cpp ├── foleys_StyleColourPropertyComponent.h ├── foleys_StyleGradientPropertyComponent.cpp ├── foleys_StyleGradientPropertyComponent.h ├── foleys_StylePropertyComponent.cpp ├── foleys_StylePropertyComponent.h ├── foleys_StyleTextPropertyComponent.cpp ├── foleys_StyleTextPropertyComponent.h ├── foleys_ToolBox.cpp └── foleys_ToolBox.h ├── General ├── foleys_ApplicationSettings.cpp ├── foleys_ApplicationSettings.h ├── foleys_MagicGUIBuilder.cpp ├── foleys_MagicGUIBuilder.h ├── foleys_MagicJUCEFactories.cpp ├── foleys_MagicPluginEditor.cpp ├── foleys_MagicPluginEditor.h ├── foleys_MagicProcessor.cpp ├── foleys_MagicProcessor.h ├── foleys_Resources.cpp ├── foleys_Resources.h ├── foleys_SettableProperties.h └── foleys_StringDefinitions.h ├── Helpers ├── foleys_AtomicValueAttachment.h ├── foleys_Conversions.h ├── foleys_DefaultGuiTrees.cpp ├── foleys_DefaultGuiTrees.h ├── foleys_MouseLambdas.h ├── foleys_ParameterAttachment.h ├── foleys_PopupMenuHelper.h └── foleys_ScopedInterProcessLock.h ├── Layout ├── foleys_BoxModel.h ├── foleys_Container.cpp ├── foleys_Container.h ├── foleys_Decorator.cpp ├── foleys_Decorator.h ├── foleys_GradientBackground.cpp ├── foleys_GradientBackground.h ├── foleys_GuiItem.cpp ├── foleys_GuiItem.h ├── foleys_RootItem.cpp ├── foleys_RootItem.h ├── foleys_Stylesheet.cpp └── foleys_Stylesheet.h ├── LookAndFeels ├── foleys_JuceLookAndFeels.cpp ├── foleys_JuceLookAndFeels.h ├── foleys_LookAndFeel.cpp ├── foleys_LookAndFeel.h ├── foleys_Skeuomorphic.cpp └── foleys_Skeuomorphic.h ├── State ├── foleys_MagicGUIState.cpp ├── foleys_MagicGUIState.h ├── foleys_MagicProcessorState.cpp ├── foleys_MagicProcessorState.h ├── foleys_MidiParameterMapper.cpp ├── foleys_MidiParameterMapper.h ├── foleys_ParameterManager.cpp ├── foleys_ParameterManager.h ├── foleys_RadioButtonManager.cpp └── foleys_RadioButtonManager.h ├── Visualisers ├── foleys_MagicAnalyser.cpp ├── foleys_MagicAnalyser.h ├── foleys_MagicFilterPlot.cpp ├── foleys_MagicFilterPlot.h ├── foleys_MagicLevelSource.cpp ├── foleys_MagicLevelSource.h ├── foleys_MagicOscilloscope.cpp ├── foleys_MagicOscilloscope.h └── foleys_MagicPlotSource.h ├── Widgets ├── foleys_AutoOrientationSlider.h ├── foleys_FileBrowserDialog.cpp ├── foleys_FileBrowserDialog.h ├── foleys_MagicLevelMeter.cpp ├── foleys_MagicLevelMeter.h ├── foleys_MagicPlotComponent.cpp ├── foleys_MagicPlotComponent.h ├── foleys_MidiDrumpadComponent.cpp ├── foleys_MidiDrumpadComponent.h ├── foleys_MidiLearnComponent.cpp ├── foleys_MidiLearnComponent.h ├── foleys_XYDragComponent.cpp └── foleys_XYDragComponent.h ├── foleys_gui_magic.cpp └── foleys_gui_magic.h /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/doxygen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/.github/workflows/doxygen.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeIncludes/Juce.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/CMakeIncludes/Juce.cmake -------------------------------------------------------------------------------- /CMakeIncludes/PGMPluginval.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/CMakeIncludes/PGMPluginval.cmake -------------------------------------------------------------------------------- /CMakeIncludes/config.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/CMakeIncludes/config.cmake -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakePresets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/CMakePresets.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DESIGNING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/DESIGNING.md -------------------------------------------------------------------------------- /Examples/APVTS_Tutorial/APVTS_Tutorial.jucer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/Examples/APVTS_Tutorial/APVTS_Tutorial.jucer -------------------------------------------------------------------------------- /Examples/APVTS_Tutorial/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/Examples/APVTS_Tutorial/CMakeLists.txt -------------------------------------------------------------------------------- /Examples/APVTS_Tutorial/Source/PluginProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/Examples/APVTS_Tutorial/Source/PluginProcessor.cpp -------------------------------------------------------------------------------- /Examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/Examples/CMakeLists.txt -------------------------------------------------------------------------------- /Examples/EqualizerExample/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/Examples/EqualizerExample/CMakeLists.txt -------------------------------------------------------------------------------- /Examples/EqualizerExample/EqualizerExample.jucer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/Examples/EqualizerExample/EqualizerExample.jucer -------------------------------------------------------------------------------- /Examples/EqualizerExample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/Examples/EqualizerExample/README.md -------------------------------------------------------------------------------- /Examples/EqualizerExample/Resources/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/Examples/EqualizerExample/Resources/Logo.png -------------------------------------------------------------------------------- /Examples/EqualizerExample/Resources/magic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/Examples/EqualizerExample/Resources/magic.xml -------------------------------------------------------------------------------- /Examples/EqualizerExample/Source/PluginProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/Examples/EqualizerExample/Source/PluginProcessor.cpp -------------------------------------------------------------------------------- /Examples/EqualizerExample/Source/PluginProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/Examples/EqualizerExample/Source/PluginProcessor.h -------------------------------------------------------------------------------- /Examples/ExtendingExample/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/Examples/ExtendingExample/CMakeLists.txt -------------------------------------------------------------------------------- /Examples/ExtendingExample/ExtendingExample.jucer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/Examples/ExtendingExample/ExtendingExample.jucer -------------------------------------------------------------------------------- /Examples/ExtendingExample/Source/PluginProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/Examples/ExtendingExample/Source/PluginProcessor.cpp -------------------------------------------------------------------------------- /Examples/ExtendingExample/Source/PluginProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/Examples/ExtendingExample/Source/PluginProcessor.h -------------------------------------------------------------------------------- /Examples/ExtendingExample/Source/magic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/Examples/ExtendingExample/Source/magic.xml -------------------------------------------------------------------------------- /Examples/FoleysSynth/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/Examples/FoleysSynth/CMakeLists.txt -------------------------------------------------------------------------------- /Examples/FoleysSynth/FoleysSynth.jucer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/Examples/FoleysSynth/FoleysSynth.jucer -------------------------------------------------------------------------------- /Examples/FoleysSynth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/Examples/FoleysSynth/README.md -------------------------------------------------------------------------------- /Examples/FoleysSynth/Resources/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/Examples/FoleysSynth/Resources/Logo.png -------------------------------------------------------------------------------- /Examples/FoleysSynth/Resources/magic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/Examples/FoleysSynth/Resources/magic.xml -------------------------------------------------------------------------------- /Examples/FoleysSynth/Source/FoleysSynth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/Examples/FoleysSynth/Source/FoleysSynth.cpp -------------------------------------------------------------------------------- /Examples/FoleysSynth/Source/FoleysSynth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/Examples/FoleysSynth/Source/FoleysSynth.h -------------------------------------------------------------------------------- /Examples/FoleysSynth/Source/PluginProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/Examples/FoleysSynth/Source/PluginProcessor.cpp -------------------------------------------------------------------------------- /Examples/FoleysSynth/Source/PluginProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/Examples/FoleysSynth/Source/PluginProcessor.h -------------------------------------------------------------------------------- /Examples/FoleysSynth/Source/PresetListBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/Examples/FoleysSynth/Source/PresetListBox.h -------------------------------------------------------------------------------- /Examples/PlayerExample/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/Examples/PlayerExample/CMakeLists.txt -------------------------------------------------------------------------------- /Examples/PlayerExample/PlayerExample.jucer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/Examples/PlayerExample/PlayerExample.jucer -------------------------------------------------------------------------------- /Examples/PlayerExample/Resources/magic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/Examples/PlayerExample/Resources/magic.xml -------------------------------------------------------------------------------- /Examples/PlayerExample/Source/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/Examples/PlayerExample/Source/Main.cpp -------------------------------------------------------------------------------- /Examples/PlayerExample/Source/MainComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/Examples/PlayerExample/Source/MainComponent.cpp -------------------------------------------------------------------------------- /Examples/PlayerExample/Source/MainComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/Examples/PlayerExample/Source/MainComponent.h -------------------------------------------------------------------------------- /Examples/PlayerExample/Source/Waveform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/Examples/PlayerExample/Source/Waveform.cpp -------------------------------------------------------------------------------- /Examples/PlayerExample/Source/Waveform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/Examples/PlayerExample/Source/Waveform.h -------------------------------------------------------------------------------- /Examples/SignalGenerator/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/Examples/SignalGenerator/CMakeLists.txt -------------------------------------------------------------------------------- /Examples/SignalGenerator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/Examples/SignalGenerator/README.md -------------------------------------------------------------------------------- /Examples/SignalGenerator/Resources/magic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/Examples/SignalGenerator/Resources/magic.xml -------------------------------------------------------------------------------- /Examples/SignalGenerator/SignalGenerator.jucer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/Examples/SignalGenerator/SignalGenerator.jucer -------------------------------------------------------------------------------- /Examples/SignalGenerator/Source/PluginProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/Examples/SignalGenerator/Source/PluginProcessor.cpp -------------------------------------------------------------------------------- /Examples/SignalGenerator/Source/PluginProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/Examples/SignalGenerator/Source/PluginProcessor.h -------------------------------------------------------------------------------- /Examples/Vanilla/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/Examples/Vanilla/CMakeLists.txt -------------------------------------------------------------------------------- /Examples/Vanilla/Resources/magic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/Examples/Vanilla/Resources/magic.xml -------------------------------------------------------------------------------- /Examples/Vanilla/Source/PluginProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/Examples/Vanilla/Source/PluginProcessor.cpp -------------------------------------------------------------------------------- /Examples/Vanilla/Source/PluginProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/Examples/Vanilla/Source/PluginProcessor.h -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/README.md -------------------------------------------------------------------------------- /Tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/Tests/CMakeLists.txt -------------------------------------------------------------------------------- /Tests/foleys_GuiTreeTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/Tests/foleys_GuiTreeTests.cpp -------------------------------------------------------------------------------- /Tests/foleys_MagicProcessorTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/Tests/foleys_MagicProcessorTests.cpp -------------------------------------------------------------------------------- /Tests/foleys_TestProcessors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/Tests/foleys_TestProcessors.h -------------------------------------------------------------------------------- /VERSION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/VERSION.md -------------------------------------------------------------------------------- /doxygen/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/doxygen/Doxyfile -------------------------------------------------------------------------------- /doxygen/Logo-FF-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/doxygen/Logo-FF-text.png -------------------------------------------------------------------------------- /doxygen/Logo-FF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/doxygen/Logo-FF.png -------------------------------------------------------------------------------- /doxygen/customdoxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/doxygen/customdoxygen.css -------------------------------------------------------------------------------- /doxygen/ff-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/doxygen/ff-icon.png -------------------------------------------------------------------------------- /doxygen/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/doxygen/footer.html -------------------------------------------------------------------------------- /doxygen/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/doxygen/header.html -------------------------------------------------------------------------------- /modules/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/CMakeLists.txt -------------------------------------------------------------------------------- /modules/foleys_gui_magic/Editor/foleys_GUITreeEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/Editor/foleys_GUITreeEditor.cpp -------------------------------------------------------------------------------- /modules/foleys_gui_magic/Editor/foleys_GUITreeEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/Editor/foleys_GUITreeEditor.h -------------------------------------------------------------------------------- /modules/foleys_gui_magic/Editor/foleys_MultiListPropertyComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/Editor/foleys_MultiListPropertyComponent.cpp -------------------------------------------------------------------------------- /modules/foleys_gui_magic/Editor/foleys_MultiListPropertyComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/Editor/foleys_MultiListPropertyComponent.h -------------------------------------------------------------------------------- /modules/foleys_gui_magic/Editor/foleys_Palette.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/Editor/foleys_Palette.cpp -------------------------------------------------------------------------------- /modules/foleys_gui_magic/Editor/foleys_Palette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/Editor/foleys_Palette.h -------------------------------------------------------------------------------- /modules/foleys_gui_magic/Editor/foleys_PropertiesEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/Editor/foleys_PropertiesEditor.cpp -------------------------------------------------------------------------------- /modules/foleys_gui_magic/Editor/foleys_PropertiesEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/Editor/foleys_PropertiesEditor.h -------------------------------------------------------------------------------- /modules/foleys_gui_magic/Editor/foleys_StyleBoolPropertyComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/Editor/foleys_StyleBoolPropertyComponent.cpp -------------------------------------------------------------------------------- /modules/foleys_gui_magic/Editor/foleys_StyleBoolPropertyComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/Editor/foleys_StyleBoolPropertyComponent.h -------------------------------------------------------------------------------- /modules/foleys_gui_magic/Editor/foleys_StyleChoicePropertyComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/Editor/foleys_StyleChoicePropertyComponent.cpp -------------------------------------------------------------------------------- /modules/foleys_gui_magic/Editor/foleys_StyleChoicePropertyComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/Editor/foleys_StyleChoicePropertyComponent.h -------------------------------------------------------------------------------- /modules/foleys_gui_magic/Editor/foleys_StyleColourPropertyComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/Editor/foleys_StyleColourPropertyComponent.cpp -------------------------------------------------------------------------------- /modules/foleys_gui_magic/Editor/foleys_StyleColourPropertyComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/Editor/foleys_StyleColourPropertyComponent.h -------------------------------------------------------------------------------- /modules/foleys_gui_magic/Editor/foleys_StyleGradientPropertyComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/Editor/foleys_StyleGradientPropertyComponent.cpp -------------------------------------------------------------------------------- /modules/foleys_gui_magic/Editor/foleys_StyleGradientPropertyComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/Editor/foleys_StyleGradientPropertyComponent.h -------------------------------------------------------------------------------- /modules/foleys_gui_magic/Editor/foleys_StylePropertyComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/Editor/foleys_StylePropertyComponent.cpp -------------------------------------------------------------------------------- /modules/foleys_gui_magic/Editor/foleys_StylePropertyComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/Editor/foleys_StylePropertyComponent.h -------------------------------------------------------------------------------- /modules/foleys_gui_magic/Editor/foleys_StyleTextPropertyComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/Editor/foleys_StyleTextPropertyComponent.cpp -------------------------------------------------------------------------------- /modules/foleys_gui_magic/Editor/foleys_StyleTextPropertyComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/Editor/foleys_StyleTextPropertyComponent.h -------------------------------------------------------------------------------- /modules/foleys_gui_magic/Editor/foleys_ToolBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/Editor/foleys_ToolBox.cpp -------------------------------------------------------------------------------- /modules/foleys_gui_magic/Editor/foleys_ToolBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/Editor/foleys_ToolBox.h -------------------------------------------------------------------------------- /modules/foleys_gui_magic/General/foleys_ApplicationSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/General/foleys_ApplicationSettings.cpp -------------------------------------------------------------------------------- /modules/foleys_gui_magic/General/foleys_ApplicationSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/General/foleys_ApplicationSettings.h -------------------------------------------------------------------------------- /modules/foleys_gui_magic/General/foleys_MagicGUIBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/General/foleys_MagicGUIBuilder.cpp -------------------------------------------------------------------------------- /modules/foleys_gui_magic/General/foleys_MagicGUIBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/General/foleys_MagicGUIBuilder.h -------------------------------------------------------------------------------- /modules/foleys_gui_magic/General/foleys_MagicJUCEFactories.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/General/foleys_MagicJUCEFactories.cpp -------------------------------------------------------------------------------- /modules/foleys_gui_magic/General/foleys_MagicPluginEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/General/foleys_MagicPluginEditor.cpp -------------------------------------------------------------------------------- /modules/foleys_gui_magic/General/foleys_MagicPluginEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/General/foleys_MagicPluginEditor.h -------------------------------------------------------------------------------- /modules/foleys_gui_magic/General/foleys_MagicProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/General/foleys_MagicProcessor.cpp -------------------------------------------------------------------------------- /modules/foleys_gui_magic/General/foleys_MagicProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/General/foleys_MagicProcessor.h -------------------------------------------------------------------------------- /modules/foleys_gui_magic/General/foleys_Resources.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/General/foleys_Resources.cpp -------------------------------------------------------------------------------- /modules/foleys_gui_magic/General/foleys_Resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/General/foleys_Resources.h -------------------------------------------------------------------------------- /modules/foleys_gui_magic/General/foleys_SettableProperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/General/foleys_SettableProperties.h -------------------------------------------------------------------------------- /modules/foleys_gui_magic/General/foleys_StringDefinitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/General/foleys_StringDefinitions.h -------------------------------------------------------------------------------- /modules/foleys_gui_magic/Helpers/foleys_AtomicValueAttachment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/Helpers/foleys_AtomicValueAttachment.h -------------------------------------------------------------------------------- /modules/foleys_gui_magic/Helpers/foleys_Conversions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/Helpers/foleys_Conversions.h -------------------------------------------------------------------------------- /modules/foleys_gui_magic/Helpers/foleys_DefaultGuiTrees.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/Helpers/foleys_DefaultGuiTrees.cpp -------------------------------------------------------------------------------- /modules/foleys_gui_magic/Helpers/foleys_DefaultGuiTrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/Helpers/foleys_DefaultGuiTrees.h -------------------------------------------------------------------------------- /modules/foleys_gui_magic/Helpers/foleys_MouseLambdas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/Helpers/foleys_MouseLambdas.h -------------------------------------------------------------------------------- /modules/foleys_gui_magic/Helpers/foleys_ParameterAttachment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/Helpers/foleys_ParameterAttachment.h -------------------------------------------------------------------------------- /modules/foleys_gui_magic/Helpers/foleys_PopupMenuHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/Helpers/foleys_PopupMenuHelper.h -------------------------------------------------------------------------------- /modules/foleys_gui_magic/Helpers/foleys_ScopedInterProcessLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/Helpers/foleys_ScopedInterProcessLock.h -------------------------------------------------------------------------------- /modules/foleys_gui_magic/Layout/foleys_BoxModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/Layout/foleys_BoxModel.h -------------------------------------------------------------------------------- /modules/foleys_gui_magic/Layout/foleys_Container.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/Layout/foleys_Container.cpp -------------------------------------------------------------------------------- /modules/foleys_gui_magic/Layout/foleys_Container.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/Layout/foleys_Container.h -------------------------------------------------------------------------------- /modules/foleys_gui_magic/Layout/foleys_Decorator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/Layout/foleys_Decorator.cpp -------------------------------------------------------------------------------- /modules/foleys_gui_magic/Layout/foleys_Decorator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/Layout/foleys_Decorator.h -------------------------------------------------------------------------------- /modules/foleys_gui_magic/Layout/foleys_GradientBackground.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/Layout/foleys_GradientBackground.cpp -------------------------------------------------------------------------------- /modules/foleys_gui_magic/Layout/foleys_GradientBackground.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/Layout/foleys_GradientBackground.h -------------------------------------------------------------------------------- /modules/foleys_gui_magic/Layout/foleys_GuiItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/Layout/foleys_GuiItem.cpp -------------------------------------------------------------------------------- /modules/foleys_gui_magic/Layout/foleys_GuiItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/Layout/foleys_GuiItem.h -------------------------------------------------------------------------------- /modules/foleys_gui_magic/Layout/foleys_RootItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/Layout/foleys_RootItem.cpp -------------------------------------------------------------------------------- /modules/foleys_gui_magic/Layout/foleys_RootItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/Layout/foleys_RootItem.h -------------------------------------------------------------------------------- /modules/foleys_gui_magic/Layout/foleys_Stylesheet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/Layout/foleys_Stylesheet.cpp -------------------------------------------------------------------------------- /modules/foleys_gui_magic/Layout/foleys_Stylesheet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/Layout/foleys_Stylesheet.h -------------------------------------------------------------------------------- /modules/foleys_gui_magic/LookAndFeels/foleys_JuceLookAndFeels.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/LookAndFeels/foleys_JuceLookAndFeels.cpp -------------------------------------------------------------------------------- /modules/foleys_gui_magic/LookAndFeels/foleys_JuceLookAndFeels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/LookAndFeels/foleys_JuceLookAndFeels.h -------------------------------------------------------------------------------- /modules/foleys_gui_magic/LookAndFeels/foleys_LookAndFeel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/LookAndFeels/foleys_LookAndFeel.cpp -------------------------------------------------------------------------------- /modules/foleys_gui_magic/LookAndFeels/foleys_LookAndFeel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/LookAndFeels/foleys_LookAndFeel.h -------------------------------------------------------------------------------- /modules/foleys_gui_magic/LookAndFeels/foleys_Skeuomorphic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/LookAndFeels/foleys_Skeuomorphic.cpp -------------------------------------------------------------------------------- /modules/foleys_gui_magic/LookAndFeels/foleys_Skeuomorphic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/LookAndFeels/foleys_Skeuomorphic.h -------------------------------------------------------------------------------- /modules/foleys_gui_magic/State/foleys_MagicGUIState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/State/foleys_MagicGUIState.cpp -------------------------------------------------------------------------------- /modules/foleys_gui_magic/State/foleys_MagicGUIState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/State/foleys_MagicGUIState.h -------------------------------------------------------------------------------- /modules/foleys_gui_magic/State/foleys_MagicProcessorState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/State/foleys_MagicProcessorState.cpp -------------------------------------------------------------------------------- /modules/foleys_gui_magic/State/foleys_MagicProcessorState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/State/foleys_MagicProcessorState.h -------------------------------------------------------------------------------- /modules/foleys_gui_magic/State/foleys_MidiParameterMapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/State/foleys_MidiParameterMapper.cpp -------------------------------------------------------------------------------- /modules/foleys_gui_magic/State/foleys_MidiParameterMapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/State/foleys_MidiParameterMapper.h -------------------------------------------------------------------------------- /modules/foleys_gui_magic/State/foleys_ParameterManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/State/foleys_ParameterManager.cpp -------------------------------------------------------------------------------- /modules/foleys_gui_magic/State/foleys_ParameterManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/State/foleys_ParameterManager.h -------------------------------------------------------------------------------- /modules/foleys_gui_magic/State/foleys_RadioButtonManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/State/foleys_RadioButtonManager.cpp -------------------------------------------------------------------------------- /modules/foleys_gui_magic/State/foleys_RadioButtonManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/State/foleys_RadioButtonManager.h -------------------------------------------------------------------------------- /modules/foleys_gui_magic/Visualisers/foleys_MagicAnalyser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/Visualisers/foleys_MagicAnalyser.cpp -------------------------------------------------------------------------------- /modules/foleys_gui_magic/Visualisers/foleys_MagicAnalyser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/Visualisers/foleys_MagicAnalyser.h -------------------------------------------------------------------------------- /modules/foleys_gui_magic/Visualisers/foleys_MagicFilterPlot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/Visualisers/foleys_MagicFilterPlot.cpp -------------------------------------------------------------------------------- /modules/foleys_gui_magic/Visualisers/foleys_MagicFilterPlot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/Visualisers/foleys_MagicFilterPlot.h -------------------------------------------------------------------------------- /modules/foleys_gui_magic/Visualisers/foleys_MagicLevelSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/Visualisers/foleys_MagicLevelSource.cpp -------------------------------------------------------------------------------- /modules/foleys_gui_magic/Visualisers/foleys_MagicLevelSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/Visualisers/foleys_MagicLevelSource.h -------------------------------------------------------------------------------- /modules/foleys_gui_magic/Visualisers/foleys_MagicOscilloscope.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/Visualisers/foleys_MagicOscilloscope.cpp -------------------------------------------------------------------------------- /modules/foleys_gui_magic/Visualisers/foleys_MagicOscilloscope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/Visualisers/foleys_MagicOscilloscope.h -------------------------------------------------------------------------------- /modules/foleys_gui_magic/Visualisers/foleys_MagicPlotSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/Visualisers/foleys_MagicPlotSource.h -------------------------------------------------------------------------------- /modules/foleys_gui_magic/Widgets/foleys_AutoOrientationSlider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/Widgets/foleys_AutoOrientationSlider.h -------------------------------------------------------------------------------- /modules/foleys_gui_magic/Widgets/foleys_FileBrowserDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/Widgets/foleys_FileBrowserDialog.cpp -------------------------------------------------------------------------------- /modules/foleys_gui_magic/Widgets/foleys_FileBrowserDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/Widgets/foleys_FileBrowserDialog.h -------------------------------------------------------------------------------- /modules/foleys_gui_magic/Widgets/foleys_MagicLevelMeter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/Widgets/foleys_MagicLevelMeter.cpp -------------------------------------------------------------------------------- /modules/foleys_gui_magic/Widgets/foleys_MagicLevelMeter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/Widgets/foleys_MagicLevelMeter.h -------------------------------------------------------------------------------- /modules/foleys_gui_magic/Widgets/foleys_MagicPlotComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/Widgets/foleys_MagicPlotComponent.cpp -------------------------------------------------------------------------------- /modules/foleys_gui_magic/Widgets/foleys_MagicPlotComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/Widgets/foleys_MagicPlotComponent.h -------------------------------------------------------------------------------- /modules/foleys_gui_magic/Widgets/foleys_MidiDrumpadComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/Widgets/foleys_MidiDrumpadComponent.cpp -------------------------------------------------------------------------------- /modules/foleys_gui_magic/Widgets/foleys_MidiDrumpadComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/Widgets/foleys_MidiDrumpadComponent.h -------------------------------------------------------------------------------- /modules/foleys_gui_magic/Widgets/foleys_MidiLearnComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/Widgets/foleys_MidiLearnComponent.cpp -------------------------------------------------------------------------------- /modules/foleys_gui_magic/Widgets/foleys_MidiLearnComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/Widgets/foleys_MidiLearnComponent.h -------------------------------------------------------------------------------- /modules/foleys_gui_magic/Widgets/foleys_XYDragComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/Widgets/foleys_XYDragComponent.cpp -------------------------------------------------------------------------------- /modules/foleys_gui_magic/Widgets/foleys_XYDragComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/Widgets/foleys_XYDragComponent.h -------------------------------------------------------------------------------- /modules/foleys_gui_magic/foleys_gui_magic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/foleys_gui_magic.cpp -------------------------------------------------------------------------------- /modules/foleys_gui_magic/foleys_gui_magic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffAudio/foleys_gui_magic/HEAD/modules/foleys_gui_magic/foleys_gui_magic.h --------------------------------------------------------------------------------