- Bank/Patch load/save: Opens fileChooser on btn press and calls pluginProcessor

This commit is contained in:
2023-04-28 09:47:31 +02:00
parent 45f2696b77
commit 5850ab5d46
3 changed files with 63 additions and 1 deletions
+20
View File
@@ -911,6 +911,26 @@ void JaySynthAudioProcessor::setCurrentProgramStateInformation (const void* data
}
}
void JaySynthAudioProcessor::loadPatch (int index, const File &file)
{
String filename(file.getFullPathName());
}
void JaySynthAudioProcessor::savePatch (int index, const File &file)
{
String filename(file.getFullPathName());
}
void JaySynthAudioProcessor::loadBank (const File &file)
{
String filename(file.getFullPathName());
}
void JaySynthAudioProcessor::saveBank (const File &file)
{
String filename(file.getFullPathName());
}
//==============================================================================
// This creates new instances of the plugin..
AudioProcessor* JUCE_CALLTYPE createPluginFilter()