It's regarded as unstable as some plugins randomly decide to overflow the main thread queue and crash the player on the main thread check, but only sometimes, and not always. Signed-off-by: Christopher Snowhill <kode54@gmail.com>
23 lines
472 B
Objective-C
23 lines
472 B
Objective-C
//
|
|
// MIDIPane.h
|
|
// General
|
|
//
|
|
// Created by Christopher Snowhill on 10/15/13.
|
|
//
|
|
//
|
|
|
|
#import "GeneralPreferencePane.h"
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
@interface MIDIPane : GeneralPreferencePane {
|
|
IBOutlet NSArrayController *midiPluginBehaviorArrayController;
|
|
IBOutlet NSButton *midiPluginSetupButton;
|
|
IBOutlet NSPopUpButton *midiPluginControl;
|
|
IBOutlet NSPopUpButton *midiFlavorControl;
|
|
}
|
|
|
|
- (IBAction)setupPlugin:(id)sender;
|
|
|
|
- (IBAction)setSoundFont:(id)sender;
|
|
|
|
@end
|