MCPcopy Create free account
hub / github.com/jerryuhoo/Fire / getAllModulatableSliders

Method getAllModulatableSliders

Source/PluginEditor.cpp:960–971  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

958}
959
960std::vector<ModulatableSlider*> FireAudioProcessorEditor::getAllModulatableSliders()
961{
962 std::vector<ModulatableSlider*> allSliders;
963
964 // Get sliders from BandPanel
965 allSliders.insert(allSliders.end(), bandPanel.getModulatableSliders().begin(), bandPanel.getModulatableSliders().end());
966
967 // Get sliders from GlobalPanel
968 allSliders.insert(allSliders.end(), globalPanel.getModulatableSliders().begin(), globalPanel.getModulatableSliders().end());
969
970 return allSliders;
971}
972
973void FireAudioProcessorEditor::updateModulationStates()
974{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected