2013-10-15 11:49:53 -03:00
|
|
|
//
|
|
|
|
// MIDIPane.h
|
|
|
|
// General
|
|
|
|
//
|
|
|
|
// Created by Christopher Snowhill on 10/15/13.
|
|
|
|
//
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
#import "GeneralPreferencePane.h"
|
|
|
|
|
|
|
|
@interface MIDIPane : GeneralPreferencePane {
|
2016-04-13 01:16:25 -03:00
|
|
|
IBOutlet NSPopUpButton *midiFlavorControl;
|
2013-10-15 11:49:53 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
- (IBAction)setSoundFont:(id)sender;
|
|
|
|
|
|
|
|
@end
|