| 6894 | |
| 6895 | |
| 6896 | juce::StringArray ScriptingApi::Content::getMacroNames() |
| 6897 | { |
| 6898 | StringArray macroNames; |
| 6899 | |
| 6900 | if (components.size() != 0) |
| 6901 | { |
| 6902 | macroNames = components[0]->getOptionsFor(components[0]->getIdFor(ScriptComponent::macroControl)); |
| 6903 | } |
| 6904 | |
| 6905 | return macroNames; |
| 6906 | } |
| 6907 | |
| 6908 | |
| 6909 | void ScriptingApi::Content::restoreAllControlsFromPreset(const String &fileName) |
nothing calls this directly
no test coverage detected