- Bank/Patch load/save: Opens fileChooser on btn press and calls pluginProcessor
This commit is contained in:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user