├── trackcontroller ├── MultitouchMidi ├── English.lproj │ ├── InfoPlist.strings │ └── MainMenu.xib ├── appicon.icns ├── MultitouchMidi_Prefix.pch ├── main.m ├── TrackpadSynthAppDelegate.h ├── TrackpadSynthAppDelegate.m ├── MultitouchMidi-Info.plist ├── Controller.h └── Controller.m ├── Makefile ├── README ├── trackcontroller.m └── trackmidilib.h /trackcontroller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkaufman/trackpad_synth/HEAD/trackcontroller -------------------------------------------------------------------------------- /MultitouchMidi/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /MultitouchMidi/appicon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkaufman/trackpad_synth/HEAD/MultitouchMidi/appicon.icns -------------------------------------------------------------------------------- /MultitouchMidi/MultitouchMidi_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'TrackpadSynth' target in the 'TrackpadSynth' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /MultitouchMidi/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // TrackpadSynth 4 | // 5 | // Created by Jeff Kaufman on 1/2/11. 6 | // Copyright 2011 Jeff Kaufman. All code under GPL. 7 | // 8 | 9 | //#import "../trackmidilib.h" 10 | int main(int argc, char *argv[]) 11 | { 12 | tml_setup(); 13 | tml_set_scale("024579B"); 14 | return NSApplicationMain(argc, (const char **) argv); 15 | } 16 | -------------------------------------------------------------------------------- /MultitouchMidi/TrackpadSynthAppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // TrackpadSynthAppDelegate.h 3 | // TrackpadSynth 4 | // 5 | // Created by Jeff Kaufman on 1/2/11. 6 | // Copyright 2011 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface TrackpadSynthAppDelegate : NSObject { 12 | NSWindow *window; 13 | } 14 | 15 | @property (assign) IBOutlet NSWindow *window; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | KEY=D 2 | 3 | trackcontroller: trackcontroller.m trackmidilib.h 4 | gcc -F/System/Library/PrivateFrameworks -framework MultitouchSupport \ 5 | -framework CoreMIDI -framework CoreFoundation -framework CoreAudio \ 6 | $^ -o $@ -std=c99 7 | 8 | runskini: trackcontroller 9 | ./trackcontroller -S -k ${KEY} | stk-4.4.2/projects/demo/demo Clarinet -n 12 -or -ip 10 | runoctaveless: trackcontroller 11 | ./trackcontroller -L -k ${KEY} | ./octaveless 12 | 13 | runsolo: trackcontroller 14 | ./trackcontroller 15 | 16 | runmidi: trackcontroller 17 | ./trackcontroller -k ${KEY} 18 | -------------------------------------------------------------------------------- /MultitouchMidi/TrackpadSynthAppDelegate.m: -------------------------------------------------------------------------------- 1 | // 2 | // TrackpadSynthAppDelegate.m 3 | // TrackpadSynth 4 | // 5 | // Created by Jeff Kaufman on 1/2/11. 6 | // Copyright 2011 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import "TrackpadSynthAppDelegate.h" 10 | 11 | @implementation TrackpadSynthAppDelegate 12 | 13 | @synthesize window; 14 | 15 | - (void)applicationDidFinishLaunching:(NSNotification *)aNotification { 16 | // Insert code here to initialize your application 17 | } 18 | 19 | -(BOOL)applicationShouldTerminateAfterLastWindowClosed:(NSApplication*)theApplication 20 | { 21 | return YES; 22 | } 23 | @end 24 | -------------------------------------------------------------------------------- /MultitouchMidi/MultitouchMidi-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIconFile 10 | appicon.icns 11 | CFBundleIdentifier 12 | edu.swarthmore.sccs.cbr.multitouchmidi 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | ${PRODUCT_NAME} 17 | CFBundlePackageType 18 | APPL 19 | CFBundleShortVersionString 20 | 1.0 21 | CFBundleSignature 22 | ???? 23 | CFBundleVersion 24 | 1 25 | LSMinimumSystemVersion 26 | ${MACOSX_DEPLOYMENT_TARGET} 27 | NSMainNibFile 28 | MainMenu 29 | NSPrincipalClass 30 | NSApplication 31 | 32 | 33 | -------------------------------------------------------------------------------- /MultitouchMidi/Controller.h: -------------------------------------------------------------------------------- 1 | // 2 | // Controller.h 3 | // TrackpadSynth 4 | // 5 | // Created by Jeff Kaufman on 1/5/11. 6 | // Copyright 2011 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | 12 | @interface Controller : NSObject { 13 | 14 | IBOutlet id useVelocityCheck; 15 | IBOutlet id sendAftertouchCheck; 16 | IBOutlet id sendChannelPressureCheck; 17 | IBOutlet id fakeChannelPressureCheck; 18 | 19 | IBOutlet id check0; 20 | IBOutlet id check1; 21 | IBOutlet id check2; 22 | IBOutlet id check3; 23 | IBOutlet id check4; 24 | IBOutlet id check5; 25 | IBOutlet id check6; 26 | IBOutlet id check7; 27 | IBOutlet id check8; 28 | IBOutlet id check9; 29 | IBOutlet id checkA; 30 | IBOutlet id checkB; 31 | 32 | IBOutlet id keyChanged; 33 | IBOutlet id octavesChanged; 34 | IBOutlet id octaveChanged; 35 | IBOutlet id channelChanged; 36 | } 37 | -(IBAction)useVelocityClicked:(id)sender; 38 | -(IBAction)sendAftertouchClicked:(id)sender; 39 | -(IBAction)sendChannelPressureClicked:(id)sender; 40 | -(IBAction)fakeChannelPressureClicked:(id)sender; 41 | 42 | -(IBAction)check0Clicked:(id)sender; 43 | -(IBAction)check1Clicked:(id)sender; 44 | -(IBAction)check2Clicked:(id)sender; 45 | -(IBAction)check3Clicked:(id)sender; 46 | -(IBAction)check4Clicked:(id)sender; 47 | -(IBAction)check5Clicked:(id)sender; 48 | -(IBAction)check6Clicked:(id)sender; 49 | -(IBAction)check7Clicked:(id)sender; 50 | -(IBAction)check8Clicked:(id)sender; 51 | -(IBAction)check9Clicked:(id)sender; 52 | -(IBAction)checkAClicked:(id)sender; 53 | -(IBAction)checkBClicked:(id)sender; 54 | 55 | -(IBAction)keyChanged:(id)sender; 56 | -(IBAction)octavesChanged:(id)sender; 57 | -(IBAction)octaveChanged:(id)sender; 58 | -(IBAction)channelChanged:(id)sender; 59 | 60 | @end 61 | -------------------------------------------------------------------------------- /MultitouchMidi/Controller.m: -------------------------------------------------------------------------------- 1 | // 2 | // Controller.m 3 | // TrackpadSynth 4 | // 5 | // Created by Jeff Kaufman on 1/5/11. 6 | // Copyright 2011 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import "Controller.h" 10 | #import "../trackmidilib.h" 11 | 12 | @implementation Controller 13 | 14 | -(IBAction)useVelocityClicked:(id)sender 15 | { 16 | tml_use_velocity = [sender state]; 17 | } 18 | 19 | -(IBAction)sendAftertouchClicked:(id)sender 20 | { 21 | tml_send_aftertouch = [sender state]; 22 | } 23 | 24 | -(IBAction)sendChannelPressureClicked:(id)sender 25 | { 26 | tml_send_channel_pressure = [sender state]; 27 | } 28 | 29 | -(IBAction)fakeChannelPressureClicked:(id)sender 30 | { 31 | tml_send_channel_volume = [sender state]; 32 | } 33 | 34 | -(IBAction)check0Clicked:(id)sender; 35 | { 36 | tml_on[0] = [sender state]; 37 | tml_recompute_scale(); 38 | } 39 | 40 | -(IBAction)check1Clicked:(id)sender; 41 | { 42 | tml_on[1] = [sender state]; 43 | tml_recompute_scale(); 44 | } 45 | 46 | -(IBAction)check2Clicked:(id)sender; 47 | { 48 | tml_on[2] = [sender state]; 49 | tml_recompute_scale(); 50 | } 51 | 52 | -(IBAction)check3Clicked:(id)sender; 53 | { 54 | tml_on[3] = [sender state]; 55 | tml_recompute_scale(); 56 | } 57 | 58 | -(IBAction)check4Clicked:(id)sender; 59 | { 60 | tml_on[4] = [sender state]; 61 | tml_recompute_scale(); 62 | } 63 | 64 | -(IBAction)check5Clicked:(id)sender; 65 | { 66 | tml_on[5] = [sender state]; 67 | tml_recompute_scale(); 68 | } 69 | 70 | -(IBAction)check6Clicked:(id)sender; 71 | { 72 | tml_on[6] = [sender state]; 73 | tml_recompute_scale(); 74 | } 75 | 76 | -(IBAction)check7Clicked:(id)sender; 77 | { 78 | tml_on[7] = [sender state]; 79 | tml_recompute_scale(); 80 | } 81 | 82 | -(IBAction)check8Clicked:(id)sender; 83 | { 84 | tml_on[8] = [sender state]; 85 | tml_recompute_scale(); 86 | } 87 | 88 | -(IBAction)check9Clicked:(id)sender; 89 | { 90 | tml_on[9] = [sender state]; 91 | tml_recompute_scale(); 92 | } 93 | 94 | -(IBAction)checkAClicked:(id)sender; 95 | { 96 | tml_on[10] = [sender state]; 97 | tml_recompute_scale(); 98 | } 99 | 100 | -(IBAction)checkBClicked:(id)sender; 101 | { 102 | tml_on[11] = [sender state]; 103 | tml_recompute_scale(); 104 | } 105 | 106 | -(IBAction)keyChanged:(id)sender { 107 | tml_base_pitch = TML_A440 + [sender indexOfSelectedItem]; 108 | } 109 | 110 | -(IBAction)channelChanged:(id)sender { 111 | tml_channel = [sender indexOfSelectedItem]+1; 112 | } 113 | 114 | -(IBAction)octavesChanged:(id)sender { 115 | tml_n_octaves = [sender indexOfSelectedItem]+2; 116 | } 117 | 118 | -(IBAction)octaveChanged:(id)sender { 119 | tml_octave_shift = [sender indexOfSelectedItem]; 120 | } 121 | 122 | 123 | @end 124 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | Trackpad synth 2 | ============== 3 | 4 | Program to generate SKINI or MIDI data from a macbook trackpad. 5 | 6 | 7 | Binary Installation (use this if you're not sure) 8 | ------------------------------------------------- 9 | 10 | Download the disk image for snow leopard (10.6): 11 | 12 | https://github.com/downloads/jeffkaufman/trackpad_synth/multitouch_midi_v1.dmg 13 | 14 | Open it, drag to applications. Double click on it to run. 15 | 16 | You need something to turn my program's midi signals into sound. 17 | SimpleSynth is good: 18 | 19 | http://notahat.com/simplesynth 20 | 21 | Download, install, run. Once it's running, select "touchpad" under 22 | "MIDI Source" and you should hear this play! 23 | 24 | 25 | Source Installation 26 | ------------------- 27 | 28 | Choose either MIDI, SKINI, or Octaveless output. MIDI lets you choose from more and 29 | better voices, SKINI lets you write new voices with the stanford toolkit, Octaveless 30 | doesn't have octaves. 31 | 32 | 33 | MIDI 34 | ---- 35 | 36 | See the note on SimpleSynth above. 37 | 38 | 39 | SKINI 40 | ----- 41 | 42 | Get a SKINI reader. I've been using the Standford Synthesis Toolkit. 43 | You can download it from: 44 | 45 | http://ccrma.stanford.edu/software/stk/release/stk-4.4.2.tar.gz 46 | 47 | Unzip it, run "./configure" and "make" in the stk directory. 48 | 49 | Check that it's working: 50 | 51 | cat stk-4.4.2/projects/demo/scores/test.ski | stk-4.4.2/projects/demo/demo Clarinet -or -ip 52 | 53 | You should hear something. 54 | 55 | Put the stk folder paralell to our test.m and Makefile. 56 | 57 | 58 | Octaveless 59 | ---------- 60 | 61 | Get octaveless from: 62 | 63 | https://github.com/jeffkaufman/octaveless 64 | 65 | Build it (requires port audio) and check that it works as: 66 | 67 | gcc -o octaveless octaveless.c -lportaudio -Wall 68 | echo A | ./octaveless 69 | 70 | You should hear something; kill it with Ctrl+C. 71 | 72 | Copy the octaveless binary to this directory 73 | 74 | cp /path/to/octaveless . 75 | 76 | 77 | Once you have MIDI, SKINI, or Octaveless working, in this directory run one of: 78 | 79 | # for midi 80 | make 81 | ./trackcontroller [options] 82 | 83 | # for skini 84 | make runskini 85 | 86 | # for octaveless 87 | make runoctaveless 88 | 89 | # for midi, simple 90 | just double click on the trackcontrol command line program 91 | 92 | 93 | 94 | Kill it with control C when you're done. It puts midi on channel 3, 95 | so that's the one you'd twiddle settings for. Options are: 96 | 97 | Usage: trackcontroller [options] 98 | 99 | Options: 100 | -k [KEY] Play in the given key. Allowable keys are 101 | 'A'-'G' followed by an optional '#' or 'b'. 102 | Default is D. 103 | -H Harmonic minor mode 104 | -r Relative/natural minor mode 105 | -x Mixolidian mode 106 | -K A Klezmer mode (flat 2, sharp 6) 107 | -5 Pentatonic scale 108 | -C [nnn] Specify scale (ex: '024579B') 109 | -S Send SKINI to stdout instead of MIDI from a 110 | virtual source. 111 | -V Use the far left of the controller as a 112 | volume control. 113 | -o [N] Divide the trackpad vertically into this many 114 | octaves. Default is 5. 115 | -s [N] Octave Shift: how far down to shift from the 116 | top of our range. Default is 3. 117 | -v Use velocity. When pressing keys, set midi 118 | velocity to the finger width detected on the 119 | trackpad. 120 | -a Send aftertouch midi messages based on how fat 121 | each finger is 122 | -c [N] Send on channel N. Default is 3. 123 | -p Send channel pressure messages based on how fat 124 | all the fingers are on average, 125 | -P Fake channel pressure using volume instead. 126 | -h Print this usage. 127 | 128 | (run "./trackcontroller -h" for the most up to date usage info) 129 | 130 | Usage 131 | ----- 132 | 133 | There are 5 rows (-o option) each of which has a major scale (change 134 | 'scale') of 7 notes. It's polyphonic, so move your fingers around. 135 | If using midi output, it can do velocity, aftertouch, channel 136 | pressure, and a kind of faking channel pressure by setting the volume, 137 | all depending on how much of your finger is in contact with the pad 138 | (and if your midi synthesizer supports it). These are off be default 139 | and can be enabled with the -v, -a, -p, or -P options. 140 | 141 | If you don't want a major scale, the -h, -r, -x, and -K options choose 142 | other scales; see above. You can also specify arbitrary scales with 143 | -C. The format is: 144 | 145 | ./trackcontroller -k C -C 0123456789AB 146 | 147 | This would make a fully chromatic trackpad starting on C (with even 148 | divisions). To leave notes out, don't include their numbers: 149 | 150 | ./trackcontroller -k C -C 024579B 151 | 152 | This would include the notes of the major scale. You can make 153 | sections wider by repeating them: 154 | 155 | ./trackcontroller -k C -C 0057 156 | 157 | This would divide the pad with the left half sounding 'C' and the 158 | right half divided into 'F' and 'G'. 159 | 160 | Misc 161 | ---- 162 | 163 | Started with multitouch code from: 164 | http://www.steike.com/code/multitouch/ 165 | 166 | For writing midi output I used the source of vmpk as a guide: 167 | http://vmpk.sourceforge.net/ 168 | 169 | All code gpl 170 | -------------------------------------------------------------------------------- /trackcontroller.m: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | #include 4 | #include 5 | #include 6 | #include 7 | #include "trackmidilib.h" 8 | 9 | void usage() { 10 | printf("Usage: trackcontroller [options]\n"); 11 | printf("\n"); 12 | printf("Options:\n"); 13 | printf(" -k [KEY] Play in the given key. Allowable keys are\n"); 14 | printf(" 'A'-'G' followed by an optional '#' or 'b'.\n"); 15 | printf(" Default is D.\n"); 16 | printf(" -H Harmonic minor mode\n"); 17 | printf(" -r Relative/natural minor mode\n"); 18 | printf(" -x Mixolidian mode\n"); 19 | printf(" -K A Klezmer mode (flat 2, sharp 6)\n"); 20 | printf(" -5 Pentatonic scale\n"); 21 | printf(" -C [nnn] Specify scale (ex: '024579B')\n"); 22 | printf(" -S Send SKINI to stdout instead of MIDI from a\n"); 23 | printf(" virtual source.\n"); 24 | printf(" -L Send letters to stdout instead of MIDI from a\n"); 25 | printf(" virtual source.\n"); 26 | printf(" -R Circular arrangement; implies -L\n"); 27 | printf(" -V Use the far left of the controller as a\n"); 28 | printf(" volume control.\n"); 29 | printf(" -o [N] Divide the trackpad vertically into this many\n"); 30 | printf(" octaves. Default is 5.\n"); 31 | printf(" -s [N] Octave Shift: how far down to shift from the\n"); 32 | printf(" top of our range. Default is 3.\n"); 33 | printf(" -v Use velocity. When pressing keys, set midi\n"); 34 | printf(" velocity to the finger width detected on the\n"); 35 | printf(" trackpad.\n"); 36 | printf(" -a Send aftertouch midi messages based on how fat\n"); 37 | printf(" each finger is\n"); 38 | printf(" -c [N] Send on channel N. Default is 3.\n"); 39 | printf(" -p Send channel pressure messages based on how fat\n"); 40 | printf(" all the fingers are on average,\n"); 41 | printf(" -P Fake channel pressure using volume instead.\n"); 42 | printf(" -h Print this usage.\n"); 43 | printf("\n"); 44 | printf("Example:\n"); 45 | printf(" # play in Ab, four octaves, faking channel pressure\n"); 46 | printf(" trackcontroller -k Ab -o 4 -P\n"); 47 | printf("\n"); 48 | printf("Many options only work with MIDI.\n"); 49 | printf("\n"); 50 | printf("If you want to play in non-major modes, use some music theory:\n"); 51 | printf("pick an appropriate major scale and scale degree to start on.\n\n"); 52 | } 53 | 54 | int main(int argc, char** argv) { 55 | tml_set_scale("024579B"); 56 | 57 | int optch; 58 | while ((optch = getopt(argc, argv, "hk:HrxK5C:SLRVo:s:vac:pP")) != -1) { 59 | switch (optch) { 60 | case 'k': 61 | while (optarg[0] == ' ') { 62 | optarg++; 63 | } 64 | if (optarg[0] >= 'A' && optarg[0] <= 'G') { 65 | switch(optarg[0]) { 66 | case 'A': tml_base_pitch = TML_A440; break; 67 | case 'B': tml_base_pitch = TML_A440+2; break; 68 | case 'C': tml_base_pitch = TML_A440+3; break; 69 | case 'D': tml_base_pitch = TML_A440+5; break; 70 | case 'E': tml_base_pitch = TML_A440+7; break; 71 | case 'F': tml_base_pitch = TML_A440+8; break; 72 | case 'G': tml_base_pitch = TML_A440+10; break; 73 | default: 74 | printf("error: -k argument needs a key between A and G\n"); 75 | return 0; 76 | } 77 | 78 | if (optarg[1] == '#') { 79 | tml_base_pitch += 1; 80 | } 81 | if (optarg[1] == 'b') { 82 | tml_base_pitch -= 1; 83 | } 84 | } 85 | break; 86 | case 'H': /* harmonic minor */ 87 | tml_set_scale("023579B"); 88 | break; 89 | case 'r': /* relative minor */ 90 | tml_set_scale("023579A"); 91 | break; 92 | case 'x': /* mixolidian */ 93 | tml_set_scale("024579A"); 94 | break; 95 | case 'K': /* klezmer */ 96 | tml_set_scale("014578B"); 97 | break; 98 | case '5': /* pentatonic */ 99 | tml_set_scale("0357A"); 100 | break; 101 | case 'C': /* specified tml_scale */ 102 | tml_set_scale(optarg); 103 | break; 104 | case 'S': 105 | tml_midi = 0; 106 | tml_skini = 1; 107 | break; 108 | case 'R': /* implies L */ 109 | tml_circle = 1; 110 | case 'L': 111 | tml_midi = 0; 112 | tml_letters = 1; 113 | break; 114 | case 'V': 115 | tml_use_sidevolume = 1; 116 | break; 117 | case 'o': 118 | tml_n_octaves = atoi(optarg); 119 | if (tml_n_octaves < 2 || tml_n_octaves > 10) { 120 | printf("error: -o argument needs number of octaves between 2 and 10\n"); 121 | return 0; 122 | } 123 | break; 124 | case 's': 125 | tml_octave_shift = atoi(optarg); 126 | if (tml_octave_shift < 1 || tml_octave_shift > 6) { 127 | printf("error: -s argument needs number of octaves between 1 and 6\n"); 128 | return 0; 129 | } 130 | break; 131 | case 'v': 132 | tml_use_velocity = 1; 133 | break; 134 | case 'a': 135 | tml_send_aftertouch = 1; 136 | break; 137 | case 'c': 138 | tml_channel = atoi(optarg); 139 | if (tml_channel < 1 || tml_channel > 16) { 140 | printf("error: -c argument needs channel between 1 and 16\n"); 141 | return 0; 142 | } 143 | break; 144 | case 'p': 145 | tml_send_channel_pressure = 1; 146 | break; 147 | case 'P': 148 | tml_send_channel_volume = 1; 149 | break; 150 | case '?': 151 | case 'h': 152 | default: 153 | usage(); 154 | return 0; 155 | } 156 | } 157 | tml_setup(); 158 | sleep(-1); 159 | return 0; 160 | } 161 | -------------------------------------------------------------------------------- /trackmidilib.h: -------------------------------------------------------------------------------- 1 | #ifndef TRACK_MIDI_LIB_H 2 | #define TRACK_MIDI_LIB_H 3 | 4 | #include 5 | #include 6 | #include 7 | 8 | int tml_use_sidevolume = 0; /* does the side of the trackpad control volume? */ 9 | int tml_use_velocity = 0; /* does how hard you hit notes matter? */ 10 | int tml_n_octaves = 5; /* how many octaves on the trackpad? */ 11 | int tml_octave_shift = 3; /* how far lower than the top of our range should we be at? */ 12 | int tml_midi = 1; /* should we use midi? */ 13 | int tml_skini = 0; /* should we use SKINI? */ 14 | int tml_letters = 0; /* should we use letters? */ 15 | int tml_circle = 0; /* should we use a circular arrangement? */ 16 | int tml_send_aftertouch = 0; /* send aftertouch messages */ 17 | int tml_send_channel_pressure = 0; /* send channel pressure messages */ 18 | int tml_send_channel_volume = 0; /* send channel pressure as a volume message */ 19 | int tml_channel = 3; /* which channel (1-16) to send on) */ 20 | 21 | 22 | void tml_die(char *errmsg) { 23 | printf("%s\n",errmsg); 24 | exit(-1); 25 | } 26 | 27 | void tml_attempt(OSStatus result, char* errmsg) { 28 | if (result != noErr) { 29 | tml_die(errmsg); 30 | } 31 | } 32 | 33 | #define TML_MAX_NOTES 128 34 | 35 | typedef struct { float x,y; } mtPoint; 36 | typedef struct { mtPoint pos,vel; } mtReadout; 37 | 38 | typedef struct { 39 | int frame; 40 | double timestamp; 41 | int identifier, state, foo3, foo4; 42 | mtReadout normalized; 43 | float size; 44 | int zero1; 45 | float angle, majorAxis, minorAxis; // ellipsoid 46 | mtReadout mm; 47 | int zero2[2]; 48 | float unk2; 49 | } Finger; 50 | 51 | typedef struct { 52 | int timeOn; 53 | int val; 54 | int lastval; 55 | } TmlNote; 56 | 57 | typedef void *MTDeviceRef; 58 | typedef int (*MTContactCallbackFunction)(int,Finger*,int,double,int); 59 | 60 | MTDeviceRef MTDeviceCreateDefault(); 61 | void MTRegisterContactFrameCallback(MTDeviceRef, MTContactCallbackFunction); 62 | void MTDeviceStart(MTDeviceRef, int); // thanks comex 63 | 64 | TmlNote tml_notes[TML_MAX_NOTES]; 65 | MIDIClientRef tml_midiclient; 66 | MIDIEndpointRef tml_midiendpoint; 67 | 68 | void tml_compose_midi(char actionType, int noteNo, int v, Byte* msg) { 69 | 70 | if (actionType == 'O') { /* on */ 71 | msg[0] = 0x90; 72 | msg[2] = 82; 73 | } 74 | else if (actionType == 'o') { /* off */ 75 | msg[0] = 0x80; 76 | msg[2] = 0; 77 | } 78 | else if (actionType == 'A') { /* aftertouch */ 79 | msg[0] = 0xA0; 80 | msg[2] = 82; 81 | } 82 | else if (actionType == 'C') { /* channel pressure */ 83 | msg[0] = 0xD0; 84 | msg[2] = 0; 85 | } 86 | else if (actionType == 'V') { /* volume */ 87 | msg[0] = 0xB0; 88 | msg[2] = 0; 89 | } 90 | 91 | if (v != -1) { 92 | if (v > TML_MAX_NOTES) { 93 | v = TML_MAX_NOTES-1; 94 | } 95 | msg[2] = v; 96 | } 97 | msg[0] += ((tml_channel-1) & 0xFF); 98 | 99 | msg[1] = noteNo; 100 | } 101 | 102 | 103 | #define TML_PACKET_BUF_SIZE (3+64) /* 3 for message, 32 for structure vars */ 104 | void tml_send_midi(char actionType, int noteNo, int v) { 105 | Byte buffer[TML_PACKET_BUF_SIZE]; 106 | Byte msg[3]; 107 | tml_compose_midi(actionType, noteNo, v, msg); 108 | 109 | MIDIPacketList *packetList = (MIDIPacketList*) buffer; 110 | MIDIPacket *curPacket = MIDIPacketListInit(packetList); 111 | 112 | curPacket = MIDIPacketListAdd(packetList, 113 | TML_PACKET_BUF_SIZE, 114 | curPacket, 115 | AudioGetCurrentHostTime(), 116 | actionType == 'C' ? 2 : 3, 117 | msg); 118 | if (!curPacket) { 119 | tml_die("packet list allocation failed"); 120 | } 121 | 122 | tml_attempt(MIDIReceived(tml_midiendpoint, packetList), "error sending midi"); 123 | } 124 | 125 | void tml_volume(int amt) { 126 | if (tml_midi) { 127 | tml_send_midi('V', 7 /* coarse volume */, amt); 128 | } 129 | else { 130 | /* unsupported */ 131 | } 132 | } 133 | 134 | void tml_aftertouch(int note, int amt) { 135 | if (tml_midi && tml_send_aftertouch) { 136 | tml_send_midi('A', note, amt); 137 | } 138 | else { 139 | /* unsupported */ 140 | } 141 | } 142 | 143 | void tml_channel_pressure(int amt) { 144 | if (tml_midi) { 145 | tml_send_midi('C', amt, -1); 146 | } 147 | else { 148 | /* unsupported */ 149 | } 150 | } 151 | 152 | char letter(int note) { 153 | switch (note % 12) { 154 | case 0: 155 | return 'C'; 156 | case 1: 157 | return 'd'; 158 | case 2: 159 | return 'D'; 160 | case 3: 161 | return 'e'; 162 | case 4: 163 | return 'E'; 164 | case 5: 165 | return 'F'; 166 | case 6: 167 | return 'g'; 168 | case 7: 169 | return 'G'; 170 | case 8: 171 | return 'a'; 172 | case 9: 173 | return 'A'; 174 | case 10: 175 | return 'b'; 176 | case 11: 177 | return 'B'; 178 | } 179 | return ' '; // not reached 180 | } 181 | 182 | void tml_note_on(int note, int val) { 183 | if (tml_midi) { 184 | tml_send_midi('O', note, val); 185 | } 186 | else { 187 | if (tml_skini) { 188 | printf("NoteOn 0.0 %d %d %d\n", note, note, val); 189 | } 190 | else { 191 | printf("%c", letter(note)); 192 | } 193 | fflush(stdout); 194 | } 195 | } 196 | 197 | void tml_note_off(int note, int val) { 198 | if (tml_midi) { 199 | tml_send_midi('o', note, val); 200 | } 201 | else { 202 | if (tml_skini) { 203 | printf("NoteOff 0.0 %d %d 0\n", note, note); 204 | fflush(stdout); 205 | } 206 | } 207 | } 208 | 209 | /* x should be beween 0 and 1 */ 210 | #define TML_A440 69 211 | int tml_base_pitch = TML_A440; 212 | //char *tml_scale = 213 | char tml_scale[32]; 214 | int tml_on[12]; 215 | 216 | 217 | int tml_interpret_scale_char(char c) { 218 | switch(c) { 219 | case '0': return 0; 220 | case '1': return 1; 221 | case '2': return 2; 222 | case '3': return 3; 223 | case '4': return 4; 224 | case '5': return 5; 225 | case '6': return 6; 226 | case '7': return 7; 227 | case '8': return 8; 228 | case '9': return 9; 229 | case 'A': return 10; 230 | case 'B': return 11; 231 | } 232 | return -1; 233 | } 234 | 235 | char tml_interpret_scale_int(int n) { 236 | switch(n) { 237 | case 0: return '0'; 238 | case 1: return '1'; 239 | case 2: return '2'; 240 | case 3: return '3'; 241 | case 4: return '4'; 242 | case 5: return '5'; 243 | case 6: return '6'; 244 | case 7: return '7'; 245 | case 8: return '8'; 246 | case 9: return '9'; 247 | case 10: return 'A'; 248 | case 11: return 'B'; 249 | } 250 | return 'C'; 251 | } 252 | 253 | 254 | void tml_recompute_scale() 255 | { 256 | int scale_pos = 0; 257 | for (int i = 0 ; i < 12 ; i++) { 258 | if (tml_on[i]) { 259 | tml_scale[scale_pos] = tml_interpret_scale_int(i); 260 | scale_pos++; 261 | } 262 | } 263 | tml_scale[scale_pos] = '\0'; 264 | } 265 | 266 | void tml_recompute_tml_ons() 267 | { 268 | for(int i = 0 ; i < 12 ; i++) { 269 | tml_on[i] = 0; 270 | } 271 | for (char* cp = tml_scale ; *cp ; cp++) { 272 | int n = tml_interpret_scale_char(*cp); 273 | if (n != -1) { 274 | tml_on[n] = 1; 275 | } 276 | } 277 | } 278 | 279 | void tml_set_scale(char* scale) { 280 | strncpy(tml_scale, scale, 32); 281 | tml_scale[31] = '\0'; 282 | tml_recompute_tml_ons(); 283 | } 284 | 285 | int tml_scale_note(float x) { 286 | int n = tml_interpret_scale_char(tml_scale[(int)(x*strlen(tml_scale))]); 287 | return n + tml_base_pitch; 288 | } 289 | 290 | void tml_do_note(Finger *f) { 291 | float x = f->normalized.pos.x; 292 | float y = f->normalized.pos.y; 293 | 294 | if (tml_circle) { 295 | int v = -1; 296 | 297 | /* 298 | int c = x*5; 299 | int r = y*3; 300 | 301 | if (r == 0 && c == 0) { v = 0; } 302 | else if (r == 0 && c == 1) { v = 1; } 303 | else if (r == 0 && c == 2) { v = 2; } 304 | else if (r == 0 && c == 3) { v = 3; } 305 | else if (r == 0 && c == 4) { v = 4; } 306 | else if (r == 1 && c == 4) { v = 5; } 307 | else if (r == 2 && c == 4) { v = 6; } 308 | else if (r == 2 && c == 3) { v = 7; } 309 | else if (r == 2 && c == 2) { v = 8; } 310 | else if (r == 2 && c == 1) { v = 9; } 311 | else if (r == 2 && c == 0) { v = 10; } 312 | else if (r == 1 && c == 0) { v = 11; } 313 | */ 314 | 315 | /* 316 | int c = x*4; 317 | int r = y*4; 318 | 319 | if (r == 0 && c == 0) { v = 0; } 320 | else if (r == 0 && c == 1) { v = 1; } 321 | else if (r == 0 && c == 2) { v = 2; } 322 | else if (r == 0 && c == 3) { v = 3; } 323 | else if (r == 1 && c == 3) { v = 4; } 324 | else if (r == 2 && c == 3) { v = 5; } 325 | else if (r == 3 && c == 3) { v = 6; } 326 | else if (r == 3 && c == 2) { v = 7; } 327 | else if (r == 3 && c == 1) { v = 8; } 328 | else if (r == 3 && c == 0) { v = 9; } 329 | else if (r == 2 && c == 0) { v = 10; } 330 | else if (r == 1 && c == 0) { v = 11; } 331 | */ 332 | 333 | x = (0.5-x)*16/9; 334 | y = y-0.5; 335 | 336 | 337 | //printf("atan2(x=%.3f, y=%.3f)/(2*PI)+.5=%.3f\n", x,y,atan2(x,y)/(2*3.1415926)+.5); 338 | 339 | v = tml_scale_note(atan2(x, y) / (3.1415926*2) + 0.5) % 12; 340 | 341 | if (v != -1) { tml_notes[v].val = 128; } 342 | } 343 | else { 344 | if (tml_use_sidevolume) { 345 | if (x < 1.0/20) { 346 | tml_volume(y*(TML_MAX_NOTES-1)); 347 | return; 348 | } 349 | else { 350 | x = x*19.0/20 + 1.0/20; 351 | } 352 | } 353 | 354 | //float v_x = f->normalized.vel.x; 355 | //float v_y = f->normalized.vel.y; 356 | float v = f->size; 357 | 358 | int octave = (int)((tml_n_octaves-1) * y * 2 + 1)/2 - tml_octave_shift; 359 | 360 | tml_notes[tml_scale_note(x)+12*octave].val = v*128; 361 | } 362 | } 363 | 364 | #define TML_MAX_TOUCH_LATENCY 6 365 | int tml_callback(int device, Finger *data, int nFingers, double timestamp, int frame) { 366 | 367 | for (int i=0; i 2 | 3 | 4 | 1060 5 | 10H574 6 | 823 7 | 1038.35 8 | 461.00 9 | 10 | com.apple.InterfaceBuilder.CocoaPlugin 11 | 823 12 | 13 | 14 | YES 15 | 16 | 17 | 18 | 19 | YES 20 | com.apple.InterfaceBuilder.CocoaPlugin 21 | 22 | 23 | PluginDependencyRecalculationVersion 24 | 25 | 26 | 27 | YES 28 | 29 | NSApplication 30 | 31 | 32 | FirstResponder 33 | 34 | 35 | NSApplication 36 | 37 | 38 | AMainMenu 39 | 40 | YES 41 | 42 | 43 | MultitouchMidi 44 | 45 | 1048576 46 | 2147483647 47 | 48 | NSImage 49 | NSMenuCheckmark 50 | 51 | 52 | NSImage 53 | NSMenuMixedState 54 | 55 | submenuAction: 56 | 57 | MultitouchMidi 58 | 59 | YES 60 | 61 | 62 | YES 63 | YES 64 | 65 | 66 | 1048576 67 | 2147483647 68 | 69 | 70 | 71 | 72 | 73 | Hide MultitouchMidi 74 | h 75 | 1048576 76 | 2147483647 77 | 78 | 79 | 80 | 81 | 82 | Hide Others 83 | h 84 | 1572864 85 | 2147483647 86 | 87 | 88 | 89 | 90 | 91 | Show All 92 | 93 | 1048576 94 | 2147483647 95 | 96 | 97 | 98 | 99 | 100 | YES 101 | YES 102 | 103 | 104 | 1048576 105 | 2147483647 106 | 107 | 108 | 109 | 110 | 111 | Quit MultitouchMidi 112 | q 113 | 1048576 114 | 2147483647 115 | 116 | 117 | 118 | 119 | _NSAppleMenu 120 | 121 | 122 | 123 | _NSMainMenu 124 | 125 | 126 | 15 127 | 2 128 | {{335, 346}, {421, 404}} 129 | 1954021376 130 | MultitouchMidi 131 | NSWindow 132 | 133 | {1.79769e+308, 1.79769e+308} 134 | 135 | 136 | 256 137 | 138 | YES 139 | 140 | 141 | 268 142 | {{29, 231}, {174, 26}} 143 | 144 | YES 145 | 146 | -2076049856 147 | 2048 148 | 149 | LucidaGrande 150 | 13 151 | 1044 152 | 153 | 154 | 109199615 155 | 129 156 | 157 | 158 | 400 159 | 75 160 | 161 | 162 | A 163 | 164 | 1048576 165 | 2147483647 166 | 1 167 | 168 | 169 | _popUpItemAction: 170 | 171 | 172 | YES 173 | 174 | OtherViews 175 | 176 | YES 177 | 178 | 179 | 180 | A♯/B♭ 181 | 182 | 1048576 183 | 2147483647 184 | 185 | 186 | _popUpItemAction: 187 | 188 | 189 | 190 | 191 | B 192 | 193 | 1048576 194 | 2147483647 195 | 196 | 197 | _popUpItemAction: 198 | 199 | 200 | 201 | 202 | C 203 | 204 | 1048576 205 | 2147483647 206 | 207 | 208 | _popUpItemAction: 209 | 210 | 211 | 212 | 213 | C♯/D♭ 214 | 215 | 1048576 216 | 2147483647 217 | 218 | 219 | _popUpItemAction: 220 | 221 | 222 | 223 | 224 | D 225 | 226 | 1048576 227 | 2147483647 228 | 229 | 230 | _popUpItemAction: 231 | 232 | 233 | 234 | 235 | D♯/E♭ 236 | 237 | 1048576 238 | 2147483647 239 | 240 | 241 | _popUpItemAction: 242 | 243 | 244 | 245 | 246 | E 247 | 248 | 1048576 249 | 2147483647 250 | 251 | 252 | _popUpItemAction: 253 | 254 | 255 | 256 | 257 | F 258 | 259 | 1048576 260 | 2147483647 261 | 262 | 263 | _popUpItemAction: 264 | 265 | 266 | 267 | 268 | F♯/G♭ 269 | 270 | 1048576 271 | 2147483647 272 | 273 | 274 | _popUpItemAction: 275 | 276 | 277 | 278 | 279 | G 280 | 281 | 1048576 282 | 2147483647 283 | 284 | 285 | _popUpItemAction: 286 | 287 | 288 | 289 | 290 | G♯/A♭ 291 | 292 | 1048576 293 | 2147483647 294 | 295 | 296 | _popUpItemAction: 297 | 298 | 299 | 300 | 301 | 302 | 1 303 | YES 304 | YES 305 | 2 306 | 307 | 308 | 309 | 310 | 268 311 | {{29, 203}, {174, 26}} 312 | 313 | YES 314 | 315 | -2076049856 316 | 2048 317 | 318 | 319 | 109199615 320 | 129 321 | 322 | 323 | 400 324 | 75 325 | 326 | 327 | Five Octaves 328 | 329 | 1048576 330 | 2147483647 331 | 1 332 | 333 | 334 | _popUpItemAction: 335 | 336 | 337 | YES 338 | 339 | OtherViews 340 | 341 | YES 342 | 343 | 344 | Two Octaves 345 | 346 | 1048576 347 | 2147483647 348 | 349 | 350 | _popUpItemAction: 351 | 352 | 353 | 354 | 355 | Three Octaves 356 | 357 | 1048576 358 | 2147483647 359 | 360 | 361 | _popUpItemAction: 362 | 363 | 364 | 365 | 366 | Four Octaves 367 | 368 | 1048576 369 | 2147483647 370 | 371 | 372 | _popUpItemAction: 373 | 374 | 375 | 376 | 377 | 378 | Six Octaves 379 | 380 | 1048576 381 | 2147483647 382 | 383 | 384 | _popUpItemAction: 385 | 386 | 387 | 388 | 389 | Seven Octaves 390 | 391 | 1048576 392 | 2147483647 393 | 394 | 395 | _popUpItemAction: 396 | 397 | 398 | 399 | 400 | 401 | 3 402 | 1 403 | YES 404 | YES 405 | 2 406 | 407 | 408 | 409 | 410 | 268 411 | {{29, 145}, {174, 26}} 412 | 413 | YES 414 | 415 | -2076049856 416 | 2048 417 | 418 | 419 | 109199615 420 | 129 421 | 422 | 423 | 400 424 | 75 425 | 426 | 427 | Channel 1 428 | 429 | 1048576 430 | 2147483647 431 | 1 432 | 433 | 434 | _popUpItemAction: 435 | 436 | 437 | YES 438 | 439 | OtherViews 440 | 441 | YES 442 | 443 | 444 | 445 | Channel 2 446 | 447 | 1048576 448 | 2147483647 449 | 450 | 451 | _popUpItemAction: 452 | 453 | 454 | 455 | 456 | Channel 3 457 | 458 | 1048576 459 | 2147483647 460 | 461 | 462 | _popUpItemAction: 463 | 464 | 465 | 466 | 467 | Channel 4 468 | 469 | 1048576 470 | 2147483647 471 | 472 | 473 | _popUpItemAction: 474 | 475 | 476 | 477 | 478 | Channel 5 479 | 480 | 1048576 481 | 2147483647 482 | 483 | 484 | _popUpItemAction: 485 | 486 | 487 | 488 | 489 | Channel 6 490 | 491 | 1048576 492 | 2147483647 493 | 494 | 495 | _popUpItemAction: 496 | 497 | 498 | 499 | 500 | Channel 7 501 | 502 | 1048576 503 | 2147483647 504 | 505 | 506 | _popUpItemAction: 507 | 508 | 509 | 510 | 511 | Channel 8 512 | 513 | 1048576 514 | 2147483647 515 | 516 | 517 | _popUpItemAction: 518 | 519 | 520 | 521 | 522 | Channel 9 523 | 524 | 1048576 525 | 2147483647 526 | 527 | 528 | _popUpItemAction: 529 | 530 | 531 | 532 | 533 | Channel 10 534 | 535 | 1048576 536 | 2147483647 537 | 538 | 539 | _popUpItemAction: 540 | 541 | 542 | 543 | 544 | Channel 11 545 | 546 | 1048576 547 | 2147483647 548 | 549 | 550 | _popUpItemAction: 551 | 552 | 553 | 554 | 555 | Channel 12 556 | 557 | 1048576 558 | 2147483647 559 | 560 | 561 | _popUpItemAction: 562 | 563 | 564 | 565 | 566 | Channel 13 567 | 568 | 1048576 569 | 2147483647 570 | 571 | 572 | _popUpItemAction: 573 | 574 | 575 | 576 | 577 | Channel 14 578 | 579 | 1048576 580 | 2147483647 581 | 582 | 583 | _popUpItemAction: 584 | 585 | 586 | 587 | 588 | Channel 15 589 | 590 | 1048576 591 | 2147483647 592 | 593 | 594 | _popUpItemAction: 595 | 596 | 597 | 598 | 599 | Channel 16 600 | 601 | 1048576 602 | 2147483647 603 | 604 | 605 | _popUpItemAction: 606 | 607 | 608 | 609 | 610 | 611 | 1 612 | YES 613 | YES 614 | 2 615 | 616 | 617 | 618 | 619 | 268 620 | {{30, 88}, {193, 18}} 621 | 622 | YES 623 | 624 | 67239424 625 | 0 626 | Send Aftertouch 627 | 628 | 629 | 1211912703 630 | 2 631 | 632 | NSImage 633 | NSSwitch 634 | 635 | 636 | NSSwitch 637 | 638 | 639 | 640 | 200 641 | 25 642 | 643 | 644 | 645 | 646 | 268 647 | {{30, 68}, {173, 18}} 648 | 649 | YES 650 | 651 | 67239424 652 | 0 653 | Send Channel Pressure 654 | 655 | 656 | 1211912703 657 | 2 658 | 659 | 660 | 661 | 662 | 200 663 | 25 664 | 665 | 666 | 667 | 668 | 268 669 | {{30, 48}, {172, 18}} 670 | 671 | YES 672 | 673 | 67239424 674 | 0 675 | Fake Channel Pressure 676 | 677 | 678 | 1211912703 679 | 2 680 | 681 | 682 | 683 | 684 | 200 685 | 25 686 | 687 | 688 | 689 | 690 | 268 691 | {{30, 108}, {173, 18}} 692 | 693 | YES 694 | 695 | 67239424 696 | 0 697 | Use Velocity 698 | 699 | 700 | 1211912703 701 | 2 702 | 703 | 704 | 705 | 706 | 200 707 | 25 708 | 709 | 710 | 711 | 712 | 268 713 | {{17, 367}, {99, 17}} 714 | 715 | YES 716 | 717 | 68288064 718 | 272630784 719 | MultitouchMidi 720 | 721 | 722 | 723 | 6 724 | System 725 | controlColor 726 | 727 | 3 728 | MC42NjY2NjY2NjY3AA 729 | 730 | 731 | 732 | 6 733 | System 734 | controlTextColor 735 | 736 | 3 737 | MAA 738 | 739 | 740 | 741 | 742 | 743 | 744 | 268 745 | {{29, 351}, {375, 17}} 746 | 747 | YES 748 | 749 | 68288064 750 | 272630784 751 | Use A Macbook Pro Trackpad As A Virtual MIDI Controller 752 | 753 | 754 | 755 | 756 | 757 | 758 | 759 | 760 | 268 761 | {{29, 281}, {366, 51}} 762 | 763 | YES 764 | 765 | 67239424 766 | 272629760 767 | You need to be running some sort of synthesizer, such as SimpleSynth, for this to make any noise. If using SimpleSynth, select "touchpad" as the input source. 768 | 769 | LucidaGrande 770 | 13 771 | 16 772 | 773 | 774 | 775 | 776 | 777 | 778 | 779 | 780 | 268 781 | {{47, 9}, {156, 38}} 782 | 783 | YES 784 | 785 | 67239424 786 | 272760832 787 | (SimpleSynth only supports faking channel pressure) 788 | 789 | LucidaGrande 790 | 11 791 | 3100 792 | 793 | 794 | 795 | 796 | 797 | 798 | 799 | 800 | 268 801 | {{285, 239}, {63, 18}} 802 | 803 | YES 804 | 805 | -2080244224 806 | 0 807 | tonic 808 | 809 | 810 | 1211912703 811 | 2 812 | 813 | 814 | 815 | 816 | 200 817 | 25 818 | 819 | 820 | 821 | 822 | 268 823 | {{285, 219}, {109, 18}} 824 | 825 | YES 826 | 827 | 67239424 828 | 0 829 | flat second 830 | 831 | 832 | 1211912703 833 | 2 834 | 835 | 836 | 837 | 838 | 200 839 | 25 840 | 841 | 842 | 843 | 844 | 268 845 | {{285, 199}, {67, 18}} 846 | 847 | YES 848 | 849 | -2080244224 850 | 0 851 | second 852 | 853 | 854 | 1211912703 855 | 2 856 | 857 | 858 | 859 | 860 | 200 861 | 25 862 | 863 | 864 | 865 | 866 | 268 867 | {{285, 178}, {94, 18}} 868 | 869 | 2 870 | YES 871 | 872 | 67239424 873 | 0 874 | flat third 875 | 876 | 877 | 1211912703 878 | 2 879 | 880 | 881 | 882 | 883 | 200 884 | 25 885 | 886 | 887 | 888 | 889 | 268 890 | {{285, 158}, {63, 18}} 891 | 892 | YES 893 | 894 | -2080244224 895 | 0 896 | third 897 | 898 | 899 | 1211912703 900 | 2 901 | 902 | 903 | 904 | 905 | 200 906 | 25 907 | 908 | 909 | 910 | 911 | 268 912 | {{285, 138}, {63, 18}} 913 | 914 | YES 915 | 916 | -2080244224 917 | 0 918 | fourth 919 | 920 | 921 | 1211912703 922 | 2 923 | 924 | 925 | 926 | 927 | 200 928 | 25 929 | 930 | 931 | 932 | 933 | 268 934 | {{285, 118}, {73, 18}} 935 | 936 | YES 937 | 938 | 67239424 939 | 0 940 | flat fifth 941 | 942 | 943 | 1211912703 944 | 2 945 | 946 | 947 | 948 | 949 | 200 950 | 25 951 | 952 | 953 | 954 | 955 | 268 956 | {{285, 98}, {63, 18}} 957 | 958 | YES 959 | 960 | -2080244224 961 | 0 962 | fifth 963 | 964 | 965 | 1211912703 966 | 2 967 | 968 | 969 | 970 | 971 | 200 972 | 25 973 | 974 | 975 | 976 | 977 | 268 978 | {{285, 78}, {78, 18}} 979 | 980 | YES 981 | 982 | 67239424 983 | 0 984 | flat sixth 985 | 986 | 987 | 1211912703 988 | 2 989 | 990 | 991 | 992 | 993 | 200 994 | 25 995 | 996 | 997 | 998 | 999 | 268 1000 | {{285, 58}, {63, 18}} 1001 | 1002 | YES 1003 | 1004 | -2080244224 1005 | 0 1006 | sixth 1007 | 1008 | 1009 | 1211912703 1010 | 2 1011 | 1012 | 1013 | 1014 | 1015 | 200 1016 | 25 1017 | 1018 | 1019 | 1020 | 1021 | 268 1022 | {{285, 38}, {96, 18}} 1023 | 1024 | YES 1025 | 1026 | 67239424 1027 | 0 1028 | flat seventh 1029 | 1030 | 1031 | 1211912703 1032 | 2 1033 | 1034 | 1035 | 1036 | 1037 | 200 1038 | 25 1039 | 1040 | 1041 | 1042 | 1043 | 268 1044 | {{285, 18}, {71, 18}} 1045 | 1046 | YES 1047 | 1048 | -2080244224 1049 | 0 1050 | seventh 1051 | 1052 | 1053 | 1211912703 1054 | 2 1055 | 1056 | 1057 | 1058 | 1059 | 200 1060 | 25 1061 | 1062 | 1063 | 1064 | 1065 | 268 1066 | {{29, 173}, {174, 26}} 1067 | 1068 | YES 1069 | 1070 | -2076049856 1071 | 2048 1072 | 1073 | 1074 | 109199615 1075 | 129 1076 | 1077 | 1078 | 400 1079 | 75 1080 | 1081 | 1082 | Low 1083 | 1084 | 1048576 1085 | 2147483647 1086 | 1 1087 | 1088 | 1089 | _popUpItemAction: 1090 | 1091 | 1092 | YES 1093 | 1094 | OtherViews 1095 | 1096 | YES 1097 | 1098 | 1099 | Very High 1100 | 1101 | 1048576 1102 | 2147483647 1103 | 1104 | 1105 | _popUpItemAction: 1106 | 1107 | 1108 | 1109 | 1110 | High 1111 | 1112 | 1048576 1113 | 2147483647 1114 | 1115 | 1116 | _popUpItemAction: 1117 | 1118 | 1119 | 1120 | 1121 | Middle 1122 | 1123 | 1048576 1124 | 2147483647 1125 | 1126 | 1127 | _popUpItemAction: 1128 | 1129 | 1130 | 1131 | 1132 | 1133 | Very Low 1134 | 1135 | 1048576 1136 | 2147483647 1137 | 1138 | 1139 | _popUpItemAction: 1140 | 1141 | 1142 | 1143 | 1144 | 1145 | 3 1146 | 1 1147 | YES 1148 | YES 1149 | 2 1150 | 1151 | 1152 | 1153 | {421, 404} 1154 | 1155 | 1156 | {{0, 0}, {1920, 1178}} 1157 | {1.79769e+308, 1.79769e+308} 1158 | 1159 | 1160 | TrackpadSynthAppDelegate 1161 | 1162 | 1163 | NSFontManager 1164 | 1165 | 1166 | YES 1167 | 1168 | 1169 | Controller 1170 | 1171 | 1172 | 1173 | 1174 | YES 1175 | 1176 | 1177 | hide: 1178 | 1179 | 1180 | 1181 | 367 1182 | 1183 | 1184 | 1185 | hideOtherApplications: 1186 | 1187 | 1188 | 1189 | 368 1190 | 1191 | 1192 | 1193 | unhideAllApplications: 1194 | 1195 | 1196 | 1197 | 370 1198 | 1199 | 1200 | 1201 | terminate: 1202 | 1203 | 1204 | 1205 | 449 1206 | 1207 | 1208 | 1209 | delegate 1210 | 1211 | 1212 | 1213 | 495 1214 | 1215 | 1216 | 1217 | window 1218 | 1219 | 1220 | 1221 | 532 1222 | 1223 | 1224 | 1225 | fakeChannelPressureClicked: 1226 | 1227 | 1228 | 1229 | 629 1230 | 1231 | 1232 | 1233 | sendAftertouchClicked: 1234 | 1235 | 1236 | 1237 | 630 1238 | 1239 | 1240 | 1241 | sendChannelPressureClicked: 1242 | 1243 | 1244 | 1245 | 631 1246 | 1247 | 1248 | 1249 | useVelocityClicked: 1250 | 1251 | 1252 | 1253 | 632 1254 | 1255 | 1256 | 1257 | check2Clicked: 1258 | 1259 | 1260 | 1261 | 635 1262 | 1263 | 1264 | 1265 | check3Clicked: 1266 | 1267 | 1268 | 1269 | 636 1270 | 1271 | 1272 | 1273 | check4Clicked: 1274 | 1275 | 1276 | 1277 | 637 1278 | 1279 | 1280 | 1281 | check5Clicked: 1282 | 1283 | 1284 | 1285 | 638 1286 | 1287 | 1288 | 1289 | check6Clicked: 1290 | 1291 | 1292 | 1293 | 639 1294 | 1295 | 1296 | 1297 | check7Clicked: 1298 | 1299 | 1300 | 1301 | 640 1302 | 1303 | 1304 | 1305 | check8Clicked: 1306 | 1307 | 1308 | 1309 | 641 1310 | 1311 | 1312 | 1313 | check9Clicked: 1314 | 1315 | 1316 | 1317 | 642 1318 | 1319 | 1320 | 1321 | checkAClicked: 1322 | 1323 | 1324 | 1325 | 643 1326 | 1327 | 1328 | 1329 | checkBClicked: 1330 | 1331 | 1332 | 1333 | 644 1334 | 1335 | 1336 | 1337 | check0Clicked: 1338 | 1339 | 1340 | 1341 | 645 1342 | 1343 | 1344 | 1345 | check1Clicked: 1346 | 1347 | 1348 | 1349 | 646 1350 | 1351 | 1352 | 1353 | keyChanged: 1354 | 1355 | 1356 | 1357 | 691 1358 | 1359 | 1360 | 1361 | octavesChanged: 1362 | 1363 | 1364 | 1365 | 692 1366 | 1367 | 1368 | 1369 | channelChanged: 1370 | 1371 | 1372 | 1373 | 693 1374 | 1375 | 1376 | 1377 | octaveChanged: 1378 | 1379 | 1380 | 1381 | 700 1382 | 1383 | 1384 | 1385 | 1386 | YES 1387 | 1388 | 0 1389 | 1390 | YES 1391 | 1392 | 1393 | 1394 | 1395 | 1396 | -2 1397 | 1398 | 1399 | File's Owner 1400 | 1401 | 1402 | -1 1403 | 1404 | 1405 | First Responder 1406 | 1407 | 1408 | -3 1409 | 1410 | 1411 | Application 1412 | 1413 | 1414 | 29 1415 | 1416 | 1417 | YES 1418 | 1419 | 1420 | 1421 | 1422 | 1423 | 56 1424 | 1425 | 1426 | YES 1427 | 1428 | 1429 | 1430 | 1431 | 1432 | 57 1433 | 1434 | 1435 | YES 1436 | 1437 | 1438 | 1439 | 1440 | 1441 | 1442 | 1443 | 1444 | 1445 | 1446 | 134 1447 | 1448 | 1449 | 1450 | 1451 | 150 1452 | 1453 | 1454 | 1455 | 1456 | 136 1457 | 1458 | 1459 | 1460 | 1461 | 149 1462 | 1463 | 1464 | 1465 | 1466 | 145 1467 | 1468 | 1469 | 1470 | 1471 | 371 1472 | 1473 | 1474 | YES 1475 | 1476 | 1477 | 1478 | 1479 | 1480 | 372 1481 | 1482 | 1483 | YES 1484 | 1485 | 1486 | 1487 | 1488 | 1489 | 1490 | 1491 | 1492 | 1493 | 1494 | 1495 | 1496 | 1497 | 1498 | 1499 | 1500 | 1501 | 1502 | 1503 | 1504 | 1505 | 1506 | 1507 | 1508 | 1509 | 1510 | 1511 | 1512 | 420 1513 | 1514 | 1515 | 1516 | 1517 | 494 1518 | 1519 | 1520 | 1521 | 1522 | 537 1523 | 1524 | 1525 | YES 1526 | 1527 | 1528 | 1529 | 1530 | 1531 | 538 1532 | 1533 | 1534 | YES 1535 | 1536 | 1537 | 1538 | 1539 | 1540 | 539 1541 | 1542 | 1543 | YES 1544 | 1545 | 1546 | 1547 | 1548 | 1549 | 1550 | 1551 | 1552 | 1553 | 1554 | 1555 | 1556 | 1557 | 1558 | 1559 | 1560 | 541 1561 | 1562 | 1563 | 1564 | 1565 | 543 1566 | 1567 | 1568 | YES 1569 | 1570 | 1571 | 1572 | 1573 | 1574 | 544 1575 | 1576 | 1577 | YES 1578 | 1579 | 1580 | 1581 | 1582 | 1583 | 545 1584 | 1585 | 1586 | YES 1587 | 1588 | 1589 | 1590 | 1591 | 1592 | 1593 | 1594 | 1595 | 1596 | 1597 | 546 1598 | 1599 | 1600 | 1601 | 1602 | 547 1603 | 1604 | 1605 | 1606 | 1607 | 548 1608 | 1609 | 1610 | 1611 | 1612 | 549 1613 | 1614 | 1615 | YES 1616 | 1617 | 1618 | 1619 | 1620 | 1621 | 550 1622 | 1623 | 1624 | YES 1625 | 1626 | 1627 | 1628 | 1629 | 1630 | 551 1631 | 1632 | 1633 | YES 1634 | 1635 | 1636 | 1637 | 1638 | 1639 | 1640 | 1641 | 1642 | 1643 | 1644 | 1645 | 1646 | 1647 | 1648 | 1649 | 1650 | 1651 | 1652 | 1653 | 1654 | 552 1655 | 1656 | 1657 | 1658 | 1659 | 555 1660 | 1661 | 1662 | YES 1663 | 1664 | 1665 | 1666 | 1667 | 1668 | 556 1669 | 1670 | 1671 | 1672 | 1673 | 557 1674 | 1675 | 1676 | YES 1677 | 1678 | 1679 | 1680 | 1681 | 1682 | 558 1683 | 1684 | 1685 | 1686 | 1687 | 561 1688 | 1689 | 1690 | YES 1691 | 1692 | 1693 | 1694 | 1695 | 1696 | 562 1697 | 1698 | 1699 | 1700 | 1701 | 563 1702 | 1703 | 1704 | YES 1705 | 1706 | 1707 | 1708 | 1709 | 1710 | 564 1711 | 1712 | 1713 | 1714 | 1715 | 565 1716 | 1717 | 1718 | YES 1719 | 1720 | 1721 | 1722 | 1723 | 1724 | 566 1725 | 1726 | 1727 | 1728 | 1729 | 567 1730 | 1731 | 1732 | 1733 | 1734 | 573 1735 | 1736 | 1737 | YES 1738 | 1739 | 1740 | 1741 | 1742 | 1743 | 574 1744 | 1745 | 1746 | 1747 | 1748 | 577 1749 | 1750 | 1751 | YES 1752 | 1753 | 1754 | 1755 | 1756 | 1757 | 578 1758 | 1759 | 1760 | 1761 | 1762 | 581 1763 | 1764 | 1765 | YES 1766 | 1767 | 1768 | 1769 | 1770 | 1771 | 582 1772 | 1773 | 1774 | 1775 | 1776 | 583 1777 | 1778 | 1779 | YES 1780 | 1781 | 1782 | 1783 | 1784 | 1785 | 584 1786 | 1787 | 1788 | 1789 | 1790 | 585 1791 | 1792 | 1793 | YES 1794 | 1795 | 1796 | 1797 | 1798 | 1799 | 586 1800 | 1801 | 1802 | 1803 | 1804 | 587 1805 | 1806 | 1807 | YES 1808 | 1809 | 1810 | 1811 | 1812 | 1813 | 588 1814 | 1815 | 1816 | 1817 | 1818 | 589 1819 | 1820 | 1821 | YES 1822 | 1823 | 1824 | 1825 | 1826 | 1827 | 590 1828 | 1829 | 1830 | 1831 | 1832 | 591 1833 | 1834 | 1835 | YES 1836 | 1837 | 1838 | 1839 | 1840 | 1841 | 592 1842 | 1843 | 1844 | 1845 | 1846 | 593 1847 | 1848 | 1849 | YES 1850 | 1851 | 1852 | 1853 | 1854 | 1855 | 594 1856 | 1857 | 1858 | 1859 | 1860 | 595 1861 | 1862 | 1863 | YES 1864 | 1865 | 1866 | 1867 | 1868 | 1869 | 596 1870 | 1871 | 1872 | 1873 | 1874 | 597 1875 | 1876 | 1877 | YES 1878 | 1879 | 1880 | 1881 | 1882 | 1883 | 598 1884 | 1885 | 1886 | 1887 | 1888 | 599 1889 | 1890 | 1891 | YES 1892 | 1893 | 1894 | 1895 | 1896 | 1897 | 600 1898 | 1899 | 1900 | 1901 | 1902 | 601 1903 | 1904 | 1905 | YES 1906 | 1907 | 1908 | 1909 | 1910 | 1911 | 602 1912 | 1913 | 1914 | 1915 | 1916 | 603 1917 | 1918 | 1919 | YES 1920 | 1921 | 1922 | 1923 | 1924 | 1925 | 604 1926 | 1927 | 1928 | 1929 | 1930 | 236 1931 | 1932 | 1933 | 1934 | 1935 | 616 1936 | 1937 | 1938 | 1939 | 1940 | 559 1941 | 1942 | 1943 | YES 1944 | 1945 | 1946 | 1947 | 1948 | 1949 | 560 1950 | 1951 | 1952 | 1953 | 1954 | 656 1955 | 1956 | 1957 | 1958 | 1959 | 657 1960 | 1961 | 1962 | 1963 | 1964 | 658 1965 | 1966 | 1967 | 1968 | 1969 | 659 1970 | 1971 | 1972 | 1973 | 1974 | 660 1975 | 1976 | 1977 | 1978 | 1979 | 661 1980 | 1981 | 1982 | 1983 | 1984 | 662 1985 | 1986 | 1987 | 1988 | 1989 | 663 1990 | 1991 | 1992 | 1993 | 1994 | 664 1995 | 1996 | 1997 | 1998 | 1999 | 665 2000 | 2001 | 2002 | 2003 | 2004 | 666 2005 | 2006 | 2007 | 2008 | 2009 | 668 2010 | 2011 | 2012 | 2013 | 2014 | 669 2015 | 2016 | 2017 | 2018 | 2019 | 670 2020 | 2021 | 2022 | 2023 | 2024 | 671 2025 | 2026 | 2027 | 2028 | 2029 | 672 2030 | 2031 | 2032 | 2033 | 2034 | 673 2035 | 2036 | 2037 | 2038 | 2039 | 674 2040 | 2041 | 2042 | 2043 | 2044 | 675 2045 | 2046 | 2047 | 2048 | 2049 | 676 2050 | 2051 | 2052 | 2053 | 2054 | 677 2055 | 2056 | 2057 | 2058 | 2059 | 678 2060 | 2061 | 2062 | 2063 | 2064 | 679 2065 | 2066 | 2067 | 2068 | 2069 | 680 2070 | 2071 | 2072 | 2073 | 2074 | 681 2075 | 2076 | 2077 | 2078 | 2079 | 682 2080 | 2081 | 2082 | 2083 | 2084 | 683 2085 | 2086 | 2087 | 2088 | 2089 | 684 2090 | 2091 | 2092 | 2093 | 2094 | 685 2095 | 2096 | 2097 | 2098 | 2099 | 694 2100 | 2101 | 2102 | YES 2103 | 2104 | 2105 | 2106 | 2107 | 2108 | 695 2109 | 2110 | 2111 | YES 2112 | 2113 | 2114 | 2115 | 2116 | 2117 | 696 2118 | 2119 | 2120 | YES 2121 | 2122 | 2123 | 2124 | 2125 | 2126 | 2127 | 2128 | 2129 | 2130 | 697 2131 | 2132 | 2133 | 2134 | 2135 | 698 2136 | 2137 | 2138 | 2139 | 2140 | 699 2141 | 2142 | 2143 | 2144 | 2145 | 701 2146 | 2147 | 2148 | 2149 | 2150 | 702 2151 | 2152 | 2153 | 2154 | 2155 | 2156 | 2157 | YES 2158 | 2159 | YES 2160 | -3.IBPluginDependency 2161 | 134.IBPluginDependency 2162 | 134.ImportedFromIB2 2163 | 136.IBPluginDependency 2164 | 136.ImportedFromIB2 2165 | 145.IBPluginDependency 2166 | 145.ImportedFromIB2 2167 | 149.IBPluginDependency 2168 | 149.ImportedFromIB2 2169 | 150.IBPluginDependency 2170 | 150.ImportedFromIB2 2171 | 236.IBPluginDependency 2172 | 236.ImportedFromIB2 2173 | 29.IBEditorWindowLastContentRect 2174 | 29.IBPluginDependency 2175 | 29.ImportedFromIB2 2176 | 29.WindowOrigin 2177 | 29.editorWindowContentRectSynchronizationRect 2178 | 371.IBEditorWindowLastContentRect 2179 | 371.IBPluginDependency 2180 | 371.IBWindowTemplateEditedContentRect 2181 | 371.NSWindowTemplate.visibleAtLaunch 2182 | 371.editorWindowContentRectSynchronizationRect 2183 | 371.windowTemplate.maxSize 2184 | 372.IBPluginDependency 2185 | 537.IBPluginDependency 2186 | 537.IBViewBoundsToFrameTransform 2187 | 538.IBPluginDependency 2188 | 539.IBEditorWindowLastContentRect 2189 | 539.IBPluginDependency 2190 | 541.IBPluginDependency 2191 | 543.IBPluginDependency 2192 | 543.IBViewBoundsToFrameTransform 2193 | 544.IBPluginDependency 2194 | 545.IBEditorWindowLastContentRect 2195 | 545.IBPluginDependency 2196 | 546.IBPluginDependency 2197 | 547.IBPluginDependency 2198 | 548.IBPluginDependency 2199 | 549.IBPluginDependency 2200 | 549.IBViewBoundsToFrameTransform 2201 | 550.IBPluginDependency 2202 | 551.IBEditorWindowLastContentRect 2203 | 551.IBPluginDependency 2204 | 552.IBPluginDependency 2205 | 555.IBPluginDependency 2206 | 555.IBViewBoundsToFrameTransform 2207 | 556.IBPluginDependency 2208 | 557.IBPluginDependency 2209 | 557.IBViewBoundsToFrameTransform 2210 | 558.IBPluginDependency 2211 | 559.IBPluginDependency 2212 | 559.IBViewBoundsToFrameTransform 2213 | 56.IBPluginDependency 2214 | 56.ImportedFromIB2 2215 | 560.IBPluginDependency 2216 | 561.IBPluginDependency 2217 | 561.IBViewBoundsToFrameTransform 2218 | 562.IBPluginDependency 2219 | 563.IBPluginDependency 2220 | 563.IBViewBoundsToFrameTransform 2221 | 564.IBPluginDependency 2222 | 565.IBPluginDependency 2223 | 565.IBViewBoundsToFrameTransform 2224 | 566.IBPluginDependency 2225 | 57.IBEditorWindowLastContentRect 2226 | 57.IBPluginDependency 2227 | 57.ImportedFromIB2 2228 | 57.editorWindowContentRectSynchronizationRect 2229 | 573.IBPluginDependency 2230 | 573.IBViewBoundsToFrameTransform 2231 | 574.IBPluginDependency 2232 | 577.IBPluginDependency 2233 | 577.IBViewBoundsToFrameTransform 2234 | 578.IBPluginDependency 2235 | 581.IBPluginDependency 2236 | 581.IBViewBoundsToFrameTransform 2237 | 582.IBPluginDependency 2238 | 583.IBPluginDependency 2239 | 583.IBViewBoundsToFrameTransform 2240 | 584.IBPluginDependency 2241 | 585.IBPluginDependency 2242 | 585.IBViewBoundsToFrameTransform 2243 | 586.IBPluginDependency 2244 | 587.IBPluginDependency 2245 | 587.IBViewBoundsToFrameTransform 2246 | 588.IBPluginDependency 2247 | 589.IBPluginDependency 2248 | 589.IBViewBoundsToFrameTransform 2249 | 590.IBPluginDependency 2250 | 591.IBPluginDependency 2251 | 591.IBViewBoundsToFrameTransform 2252 | 592.IBPluginDependency 2253 | 593.IBPluginDependency 2254 | 593.IBViewBoundsToFrameTransform 2255 | 594.IBPluginDependency 2256 | 595.IBPluginDependency 2257 | 595.IBViewBoundsToFrameTransform 2258 | 596.IBPluginDependency 2259 | 597.IBPluginDependency 2260 | 597.IBViewBoundsToFrameTransform 2261 | 598.IBPluginDependency 2262 | 599.IBPluginDependency 2263 | 599.IBViewBoundsToFrameTransform 2264 | 600.IBPluginDependency 2265 | 601.IBPluginDependency 2266 | 601.IBViewBoundsToFrameTransform 2267 | 602.IBPluginDependency 2268 | 603.IBPluginDependency 2269 | 603.IBViewBoundsToFrameTransform 2270 | 604.IBPluginDependency 2271 | 616.IBPluginDependency 2272 | 656.IBPluginDependency 2273 | 657.IBPluginDependency 2274 | 658.IBPluginDependency 2275 | 659.IBPluginDependency 2276 | 660.IBPluginDependency 2277 | 661.IBPluginDependency 2278 | 662.IBPluginDependency 2279 | 663.IBPluginDependency 2280 | 664.IBPluginDependency 2281 | 665.IBPluginDependency 2282 | 666.IBPluginDependency 2283 | 668.IBPluginDependency 2284 | 669.IBPluginDependency 2285 | 670.IBPluginDependency 2286 | 671.IBPluginDependency 2287 | 672.IBPluginDependency 2288 | 673.IBPluginDependency 2289 | 674.IBPluginDependency 2290 | 675.IBPluginDependency 2291 | 676.IBPluginDependency 2292 | 677.IBPluginDependency 2293 | 678.IBPluginDependency 2294 | 679.IBPluginDependency 2295 | 680.IBPluginDependency 2296 | 681.IBPluginDependency 2297 | 682.IBPluginDependency 2298 | 683.IBPluginDependency 2299 | 684.IBPluginDependency 2300 | 685.IBPluginDependency 2301 | 694.IBPluginDependency 2302 | 694.IBViewBoundsToFrameTransform 2303 | 695.IBPluginDependency 2304 | 696.IBEditorWindowLastContentRect 2305 | 696.IBPluginDependency 2306 | 697.IBPluginDependency 2307 | 698.IBPluginDependency 2308 | 699.IBPluginDependency 2309 | 701.IBPluginDependency 2310 | 702.IBPluginDependency 2311 | 2312 | 2313 | YES 2314 | com.apple.InterfaceBuilder.CocoaPlugin 2315 | com.apple.InterfaceBuilder.CocoaPlugin 2316 | 2317 | com.apple.InterfaceBuilder.CocoaPlugin 2318 | 2319 | com.apple.InterfaceBuilder.CocoaPlugin 2320 | 2321 | com.apple.InterfaceBuilder.CocoaPlugin 2322 | 2323 | com.apple.InterfaceBuilder.CocoaPlugin 2324 | 2325 | com.apple.InterfaceBuilder.CocoaPlugin 2326 | 2327 | {{380, 872}, {151, 20}} 2328 | com.apple.InterfaceBuilder.CocoaPlugin 2329 | 2330 | {74, 862} 2331 | {{6, 978}, {478, 20}} 2332 | {{22, 157}, {421, 404}} 2333 | com.apple.InterfaceBuilder.CocoaPlugin 2334 | {{22, 157}, {421, 404}} 2335 | 2336 | {{33, 99}, {480, 360}} 2337 | {3.40282e+38, 3.40282e+38} 2338 | com.apple.InterfaceBuilder.CocoaPlugin 2339 | com.apple.InterfaceBuilder.CocoaPlugin 2340 | 2341 | P4AAAL+AAABB6AAAw4YAAA 2342 | 2343 | com.apple.InterfaceBuilder.CocoaPlugin 2344 | {{18, 84}, {126, 243}} 2345 | com.apple.InterfaceBuilder.CocoaPlugin 2346 | com.apple.InterfaceBuilder.CocoaPlugin 2347 | com.apple.InterfaceBuilder.CocoaPlugin 2348 | 2349 | P4AAAL+AAABB6AAAw3gAAA 2350 | 2351 | com.apple.InterfaceBuilder.CocoaPlugin 2352 | {{40, 261}, {174, 123}} 2353 | com.apple.InterfaceBuilder.CocoaPlugin 2354 | com.apple.InterfaceBuilder.CocoaPlugin 2355 | com.apple.InterfaceBuilder.CocoaPlugin 2356 | com.apple.InterfaceBuilder.CocoaPlugin 2357 | com.apple.InterfaceBuilder.CocoaPlugin 2358 | 2359 | P4AAAL+AAABB6AAAwz8AAA 2360 | 2361 | com.apple.InterfaceBuilder.CocoaPlugin 2362 | {{28, 88}, {174, 323}} 2363 | com.apple.InterfaceBuilder.CocoaPlugin 2364 | com.apple.InterfaceBuilder.CocoaPlugin 2365 | com.apple.InterfaceBuilder.CocoaPlugin 2366 | 2367 | P4AAAL+AAABB8AAAwtAAAA 2368 | 2369 | com.apple.InterfaceBuilder.CocoaPlugin 2370 | com.apple.InterfaceBuilder.CocoaPlugin 2371 | 2372 | P4AAAL+AAABB8AAAwqgAAA 2373 | 2374 | com.apple.InterfaceBuilder.CocoaPlugin 2375 | com.apple.InterfaceBuilder.CocoaPlugin 2376 | 2377 | P4AAAL+AAABB8AAAwoAAAA 2378 | 2379 | com.apple.InterfaceBuilder.CocoaPlugin 2380 | 2381 | com.apple.InterfaceBuilder.CocoaPlugin 2382 | com.apple.InterfaceBuilder.CocoaPlugin 2383 | 2384 | P4AAAL+AAABB8AAAwvgAAA 2385 | 2386 | com.apple.InterfaceBuilder.CocoaPlugin 2387 | com.apple.InterfaceBuilder.CocoaPlugin 2388 | 2389 | P4AAAL+AAABB6AAAw6kAAA 2390 | 2391 | com.apple.InterfaceBuilder.CocoaPlugin 2392 | com.apple.InterfaceBuilder.CocoaPlugin 2393 | 2394 | P4AAAL+AAABB6AAAw5yAAA 2395 | 2396 | com.apple.InterfaceBuilder.CocoaPlugin 2397 | {{392, 769}, {227, 103}} 2398 | com.apple.InterfaceBuilder.CocoaPlugin 2399 | 2400 | {{23, 794}, {245, 183}} 2401 | com.apple.InterfaceBuilder.CocoaPlugin 2402 | 2403 | P4AAAL+AAABBiAAAw4qAAA 2404 | 2405 | com.apple.InterfaceBuilder.CocoaPlugin 2406 | com.apple.InterfaceBuilder.CocoaPlugin 2407 | 2408 | P4AAAL+AAABCPAAAwjQAAA 2409 | 2410 | com.apple.InterfaceBuilder.CocoaPlugin 2411 | com.apple.InterfaceBuilder.CocoaPlugin 2412 | 2413 | P4AAAL+AAABDfwAAw38AAA 2414 | 2415 | com.apple.InterfaceBuilder.CocoaPlugin 2416 | com.apple.InterfaceBuilder.CocoaPlugin 2417 | 2418 | P4AAAL+AAABDfwAAw2sAAA 2419 | 2420 | com.apple.InterfaceBuilder.CocoaPlugin 2421 | com.apple.InterfaceBuilder.CocoaPlugin 2422 | 2423 | P4AAAL+AAABDfwAAw1cAAA 2424 | 2425 | com.apple.InterfaceBuilder.CocoaPlugin 2426 | com.apple.InterfaceBuilder.CocoaPlugin 2427 | 2428 | P4AAAL+AAABDfwAAw0IAAA 2429 | 2430 | com.apple.InterfaceBuilder.CocoaPlugin 2431 | com.apple.InterfaceBuilder.CocoaPlugin 2432 | 2433 | P4AAAL+AAABDfwAAwy4AAA 2434 | 2435 | com.apple.InterfaceBuilder.CocoaPlugin 2436 | com.apple.InterfaceBuilder.CocoaPlugin 2437 | 2438 | P4AAAL+AAABDfwAAwxoAAA 2439 | 2440 | com.apple.InterfaceBuilder.CocoaPlugin 2441 | com.apple.InterfaceBuilder.CocoaPlugin 2442 | 2443 | P4AAAL+AAABDfwAAwwYAAA 2444 | 2445 | com.apple.InterfaceBuilder.CocoaPlugin 2446 | com.apple.InterfaceBuilder.CocoaPlugin 2447 | 2448 | P4AAAL+AAABDfwAAwuQAAA 2449 | 2450 | com.apple.InterfaceBuilder.CocoaPlugin 2451 | com.apple.InterfaceBuilder.CocoaPlugin 2452 | 2453 | P4AAAL+AAABDfwAAwrwAAA 2454 | 2455 | com.apple.InterfaceBuilder.CocoaPlugin 2456 | com.apple.InterfaceBuilder.CocoaPlugin 2457 | 2458 | P4AAAL+AAABDfwAAwpQAAA 2459 | 2460 | com.apple.InterfaceBuilder.CocoaPlugin 2461 | com.apple.InterfaceBuilder.CocoaPlugin 2462 | 2463 | P4AAAL+AAABDfwAAwlgAAA 2464 | 2465 | com.apple.InterfaceBuilder.CocoaPlugin 2466 | com.apple.InterfaceBuilder.CocoaPlugin 2467 | 2468 | P4AAAL+AAABDfwAAwggAAA 2469 | 2470 | com.apple.InterfaceBuilder.CocoaPlugin 2471 | com.apple.InterfaceBuilder.CocoaPlugin 2472 | com.apple.InterfaceBuilder.CocoaPlugin 2473 | com.apple.InterfaceBuilder.CocoaPlugin 2474 | com.apple.InterfaceBuilder.CocoaPlugin 2475 | com.apple.InterfaceBuilder.CocoaPlugin 2476 | com.apple.InterfaceBuilder.CocoaPlugin 2477 | com.apple.InterfaceBuilder.CocoaPlugin 2478 | com.apple.InterfaceBuilder.CocoaPlugin 2479 | com.apple.InterfaceBuilder.CocoaPlugin 2480 | com.apple.InterfaceBuilder.CocoaPlugin 2481 | com.apple.InterfaceBuilder.CocoaPlugin 2482 | com.apple.InterfaceBuilder.CocoaPlugin 2483 | com.apple.InterfaceBuilder.CocoaPlugin 2484 | com.apple.InterfaceBuilder.CocoaPlugin 2485 | com.apple.InterfaceBuilder.CocoaPlugin 2486 | com.apple.InterfaceBuilder.CocoaPlugin 2487 | com.apple.InterfaceBuilder.CocoaPlugin 2488 | com.apple.InterfaceBuilder.CocoaPlugin 2489 | com.apple.InterfaceBuilder.CocoaPlugin 2490 | com.apple.InterfaceBuilder.CocoaPlugin 2491 | com.apple.InterfaceBuilder.CocoaPlugin 2492 | com.apple.InterfaceBuilder.CocoaPlugin 2493 | com.apple.InterfaceBuilder.CocoaPlugin 2494 | com.apple.InterfaceBuilder.CocoaPlugin 2495 | com.apple.InterfaceBuilder.CocoaPlugin 2496 | com.apple.InterfaceBuilder.CocoaPlugin 2497 | com.apple.InterfaceBuilder.CocoaPlugin 2498 | com.apple.InterfaceBuilder.CocoaPlugin 2499 | com.apple.InterfaceBuilder.CocoaPlugin 2500 | com.apple.InterfaceBuilder.CocoaPlugin 2501 | com.apple.InterfaceBuilder.CocoaPlugin 2502 | 2503 | P4AAAL+AAABB6AAAw10AAA 2504 | 2505 | com.apple.InterfaceBuilder.CocoaPlugin 2506 | {{40, 253}, {174, 103}} 2507 | com.apple.InterfaceBuilder.CocoaPlugin 2508 | com.apple.InterfaceBuilder.CocoaPlugin 2509 | com.apple.InterfaceBuilder.CocoaPlugin 2510 | com.apple.InterfaceBuilder.CocoaPlugin 2511 | com.apple.InterfaceBuilder.CocoaPlugin 2512 | com.apple.InterfaceBuilder.CocoaPlugin 2513 | 2514 | 2515 | 2516 | YES 2517 | 2518 | 2519 | YES 2520 | 2521 | 2522 | 2523 | 2524 | YES 2525 | 2526 | 2527 | YES 2528 | 2529 | 2530 | 2531 | 702 2532 | 2533 | 2534 | 2535 | YES 2536 | 2537 | Controller 2538 | NSObject 2539 | 2540 | YES 2541 | 2542 | YES 2543 | channelChanged: 2544 | check0Clicked: 2545 | check1Clicked: 2546 | check2Clicked: 2547 | check3Clicked: 2548 | check4Clicked: 2549 | check5Clicked: 2550 | check6Clicked: 2551 | check7Clicked: 2552 | check8Clicked: 2553 | check9Clicked: 2554 | checkAClicked: 2555 | checkBClicked: 2556 | fakeChannelPressureClicked: 2557 | keyChanged: 2558 | octaveChanged: 2559 | octavesChanged: 2560 | sendAftertouchClicked: 2561 | sendChannelPressureClicked: 2562 | useVelocityClicked: 2563 | 2564 | 2565 | YES 2566 | id 2567 | id 2568 | id 2569 | id 2570 | id 2571 | id 2572 | id 2573 | id 2574 | id 2575 | id 2576 | id 2577 | id 2578 | id 2579 | id 2580 | id 2581 | id 2582 | id 2583 | id 2584 | id 2585 | id 2586 | 2587 | 2588 | 2589 | YES 2590 | 2591 | YES 2592 | channelChanged: 2593 | check0Clicked: 2594 | check1Clicked: 2595 | check2Clicked: 2596 | check3Clicked: 2597 | check4Clicked: 2598 | check5Clicked: 2599 | check6Clicked: 2600 | check7Clicked: 2601 | check8Clicked: 2602 | check9Clicked: 2603 | checkAClicked: 2604 | checkBClicked: 2605 | fakeChannelPressureClicked: 2606 | keyChanged: 2607 | octaveChanged: 2608 | octavesChanged: 2609 | sendAftertouchClicked: 2610 | sendChannelPressureClicked: 2611 | useVelocityClicked: 2612 | 2613 | 2614 | YES 2615 | 2616 | channelChanged: 2617 | id 2618 | 2619 | 2620 | check0Clicked: 2621 | id 2622 | 2623 | 2624 | check1Clicked: 2625 | id 2626 | 2627 | 2628 | check2Clicked: 2629 | id 2630 | 2631 | 2632 | check3Clicked: 2633 | id 2634 | 2635 | 2636 | check4Clicked: 2637 | id 2638 | 2639 | 2640 | check5Clicked: 2641 | id 2642 | 2643 | 2644 | check6Clicked: 2645 | id 2646 | 2647 | 2648 | check7Clicked: 2649 | id 2650 | 2651 | 2652 | check8Clicked: 2653 | id 2654 | 2655 | 2656 | check9Clicked: 2657 | id 2658 | 2659 | 2660 | checkAClicked: 2661 | id 2662 | 2663 | 2664 | checkBClicked: 2665 | id 2666 | 2667 | 2668 | fakeChannelPressureClicked: 2669 | id 2670 | 2671 | 2672 | keyChanged: 2673 | id 2674 | 2675 | 2676 | octaveChanged: 2677 | id 2678 | 2679 | 2680 | octavesChanged: 2681 | id 2682 | 2683 | 2684 | sendAftertouchClicked: 2685 | id 2686 | 2687 | 2688 | sendChannelPressureClicked: 2689 | id 2690 | 2691 | 2692 | useVelocityClicked: 2693 | id 2694 | 2695 | 2696 | 2697 | 2698 | YES 2699 | 2700 | YES 2701 | channelChanged 2702 | check0 2703 | check1 2704 | check2 2705 | check3 2706 | check4 2707 | check5 2708 | check6 2709 | check7 2710 | check8 2711 | check9 2712 | checkA 2713 | checkB 2714 | fakeChannelPressureCheck 2715 | keyChanged 2716 | octaveChanged 2717 | octavesChanged 2718 | sendAftertouchCheck 2719 | sendChannelPressureCheck 2720 | useVelocityCheck 2721 | 2722 | 2723 | YES 2724 | id 2725 | id 2726 | id 2727 | id 2728 | id 2729 | id 2730 | id 2731 | id 2732 | id 2733 | id 2734 | id 2735 | id 2736 | id 2737 | id 2738 | id 2739 | id 2740 | id 2741 | id 2742 | id 2743 | id 2744 | 2745 | 2746 | 2747 | YES 2748 | 2749 | YES 2750 | channelChanged 2751 | check0 2752 | check1 2753 | check2 2754 | check3 2755 | check4 2756 | check5 2757 | check6 2758 | check7 2759 | check8 2760 | check9 2761 | checkA 2762 | checkB 2763 | fakeChannelPressureCheck 2764 | keyChanged 2765 | octaveChanged 2766 | octavesChanged 2767 | sendAftertouchCheck 2768 | sendChannelPressureCheck 2769 | useVelocityCheck 2770 | 2771 | 2772 | YES 2773 | 2774 | channelChanged 2775 | id 2776 | 2777 | 2778 | check0 2779 | id 2780 | 2781 | 2782 | check1 2783 | id 2784 | 2785 | 2786 | check2 2787 | id 2788 | 2789 | 2790 | check3 2791 | id 2792 | 2793 | 2794 | check4 2795 | id 2796 | 2797 | 2798 | check5 2799 | id 2800 | 2801 | 2802 | check6 2803 | id 2804 | 2805 | 2806 | check7 2807 | id 2808 | 2809 | 2810 | check8 2811 | id 2812 | 2813 | 2814 | check9 2815 | id 2816 | 2817 | 2818 | checkA 2819 | id 2820 | 2821 | 2822 | checkB 2823 | id 2824 | 2825 | 2826 | fakeChannelPressureCheck 2827 | id 2828 | 2829 | 2830 | keyChanged 2831 | id 2832 | 2833 | 2834 | octaveChanged 2835 | id 2836 | 2837 | 2838 | octavesChanged 2839 | id 2840 | 2841 | 2842 | sendAftertouchCheck 2843 | id 2844 | 2845 | 2846 | sendChannelPressureCheck 2847 | id 2848 | 2849 | 2850 | useVelocityCheck 2851 | id 2852 | 2853 | 2854 | 2855 | 2856 | IBProjectSource 2857 | Controller.h 2858 | 2859 | 2860 | 2861 | TrackpadSynthAppDelegate 2862 | NSObject 2863 | 2864 | window 2865 | NSWindow 2866 | 2867 | 2868 | window 2869 | 2870 | window 2871 | NSWindow 2872 | 2873 | 2874 | 2875 | IBProjectSource 2876 | TrackpadSynthAppDelegate.h 2877 | 2878 | 2879 | 2880 | 2881 | YES 2882 | 2883 | NSActionCell 2884 | NSCell 2885 | 2886 | IBFrameworkSource 2887 | AppKit.framework/Headers/NSActionCell.h 2888 | 2889 | 2890 | 2891 | NSApplication 2892 | NSResponder 2893 | 2894 | IBFrameworkSource 2895 | AppKit.framework/Headers/NSApplication.h 2896 | 2897 | 2898 | 2899 | NSApplication 2900 | 2901 | IBFrameworkSource 2902 | AppKit.framework/Headers/NSApplicationScripting.h 2903 | 2904 | 2905 | 2906 | NSApplication 2907 | 2908 | IBFrameworkSource 2909 | AppKit.framework/Headers/NSColorPanel.h 2910 | 2911 | 2912 | 2913 | NSApplication 2914 | 2915 | IBFrameworkSource 2916 | AppKit.framework/Headers/NSHelpManager.h 2917 | 2918 | 2919 | 2920 | NSApplication 2921 | 2922 | IBFrameworkSource 2923 | AppKit.framework/Headers/NSPageLayout.h 2924 | 2925 | 2926 | 2927 | NSApplication 2928 | 2929 | IBFrameworkSource 2930 | AppKit.framework/Headers/NSUserInterfaceItemSearching.h 2931 | 2932 | 2933 | 2934 | NSButton 2935 | NSControl 2936 | 2937 | IBFrameworkSource 2938 | AppKit.framework/Headers/NSButton.h 2939 | 2940 | 2941 | 2942 | NSButtonCell 2943 | NSActionCell 2944 | 2945 | IBFrameworkSource 2946 | AppKit.framework/Headers/NSButtonCell.h 2947 | 2948 | 2949 | 2950 | NSCell 2951 | NSObject 2952 | 2953 | IBFrameworkSource 2954 | AppKit.framework/Headers/NSCell.h 2955 | 2956 | 2957 | 2958 | NSControl 2959 | NSView 2960 | 2961 | IBFrameworkSource 2962 | AppKit.framework/Headers/NSControl.h 2963 | 2964 | 2965 | 2966 | NSController 2967 | NSObject 2968 | 2969 | IBFrameworkSource 2970 | AppKit.framework/Headers/NSController.h 2971 | 2972 | 2973 | 2974 | NSFontManager 2975 | NSObject 2976 | 2977 | IBFrameworkSource 2978 | AppKit.framework/Headers/NSFontManager.h 2979 | 2980 | 2981 | 2982 | NSFormatter 2983 | NSObject 2984 | 2985 | IBFrameworkSource 2986 | Foundation.framework/Headers/NSFormatter.h 2987 | 2988 | 2989 | 2990 | NSMenu 2991 | NSObject 2992 | 2993 | IBFrameworkSource 2994 | AppKit.framework/Headers/NSMenu.h 2995 | 2996 | 2997 | 2998 | NSMenuItem 2999 | NSObject 3000 | 3001 | IBFrameworkSource 3002 | AppKit.framework/Headers/NSMenuItem.h 3003 | 3004 | 3005 | 3006 | NSMenuItemCell 3007 | NSButtonCell 3008 | 3009 | IBFrameworkSource 3010 | AppKit.framework/Headers/NSMenuItemCell.h 3011 | 3012 | 3013 | 3014 | NSObject 3015 | 3016 | IBFrameworkSource 3017 | AppKit.framework/Headers/NSAccessibility.h 3018 | 3019 | 3020 | 3021 | NSObject 3022 | 3023 | 3024 | 3025 | NSObject 3026 | 3027 | 3028 | 3029 | NSObject 3030 | 3031 | 3032 | 3033 | NSObject 3034 | 3035 | 3036 | 3037 | NSObject 3038 | 3039 | IBFrameworkSource 3040 | AppKit.framework/Headers/NSDictionaryController.h 3041 | 3042 | 3043 | 3044 | NSObject 3045 | 3046 | IBFrameworkSource 3047 | AppKit.framework/Headers/NSDragging.h 3048 | 3049 | 3050 | 3051 | NSObject 3052 | 3053 | 3054 | 3055 | NSObject 3056 | 3057 | IBFrameworkSource 3058 | AppKit.framework/Headers/NSFontPanel.h 3059 | 3060 | 3061 | 3062 | NSObject 3063 | 3064 | IBFrameworkSource 3065 | AppKit.framework/Headers/NSKeyValueBinding.h 3066 | 3067 | 3068 | 3069 | NSObject 3070 | 3071 | 3072 | 3073 | NSObject 3074 | 3075 | IBFrameworkSource 3076 | AppKit.framework/Headers/NSNibLoading.h 3077 | 3078 | 3079 | 3080 | NSObject 3081 | 3082 | IBFrameworkSource 3083 | AppKit.framework/Headers/NSOutlineView.h 3084 | 3085 | 3086 | 3087 | NSObject 3088 | 3089 | IBFrameworkSource 3090 | AppKit.framework/Headers/NSPasteboard.h 3091 | 3092 | 3093 | 3094 | NSObject 3095 | 3096 | IBFrameworkSource 3097 | AppKit.framework/Headers/NSSavePanel.h 3098 | 3099 | 3100 | 3101 | NSObject 3102 | 3103 | IBFrameworkSource 3104 | AppKit.framework/Headers/NSTableView.h 3105 | 3106 | 3107 | 3108 | NSObject 3109 | 3110 | IBFrameworkSource 3111 | AppKit.framework/Headers/NSToolbarItem.h 3112 | 3113 | 3114 | 3115 | NSObject 3116 | 3117 | IBFrameworkSource 3118 | AppKit.framework/Headers/NSView.h 3119 | 3120 | 3121 | 3122 | NSObject 3123 | 3124 | IBFrameworkSource 3125 | Foundation.framework/Headers/NSArchiver.h 3126 | 3127 | 3128 | 3129 | NSObject 3130 | 3131 | IBFrameworkSource 3132 | Foundation.framework/Headers/NSClassDescription.h 3133 | 3134 | 3135 | 3136 | NSObject 3137 | 3138 | IBFrameworkSource 3139 | Foundation.framework/Headers/NSError.h 3140 | 3141 | 3142 | 3143 | NSObject 3144 | 3145 | IBFrameworkSource 3146 | Foundation.framework/Headers/NSFileManager.h 3147 | 3148 | 3149 | 3150 | NSObject 3151 | 3152 | IBFrameworkSource 3153 | Foundation.framework/Headers/NSKeyValueCoding.h 3154 | 3155 | 3156 | 3157 | NSObject 3158 | 3159 | IBFrameworkSource 3160 | Foundation.framework/Headers/NSKeyValueObserving.h 3161 | 3162 | 3163 | 3164 | NSObject 3165 | 3166 | IBFrameworkSource 3167 | Foundation.framework/Headers/NSKeyedArchiver.h 3168 | 3169 | 3170 | 3171 | NSObject 3172 | 3173 | IBFrameworkSource 3174 | Foundation.framework/Headers/NSObject.h 3175 | 3176 | 3177 | 3178 | NSObject 3179 | 3180 | IBFrameworkSource 3181 | Foundation.framework/Headers/NSObjectScripting.h 3182 | 3183 | 3184 | 3185 | NSObject 3186 | 3187 | IBFrameworkSource 3188 | Foundation.framework/Headers/NSPortCoder.h 3189 | 3190 | 3191 | 3192 | NSObject 3193 | 3194 | IBFrameworkSource 3195 | Foundation.framework/Headers/NSRunLoop.h 3196 | 3197 | 3198 | 3199 | NSObject 3200 | 3201 | IBFrameworkSource 3202 | Foundation.framework/Headers/NSScriptClassDescription.h 3203 | 3204 | 3205 | 3206 | NSObject 3207 | 3208 | IBFrameworkSource 3209 | Foundation.framework/Headers/NSScriptKeyValueCoding.h 3210 | 3211 | 3212 | 3213 | NSObject 3214 | 3215 | IBFrameworkSource 3216 | Foundation.framework/Headers/NSScriptObjectSpecifiers.h 3217 | 3218 | 3219 | 3220 | NSObject 3221 | 3222 | IBFrameworkSource 3223 | Foundation.framework/Headers/NSScriptWhoseTests.h 3224 | 3225 | 3226 | 3227 | NSObject 3228 | 3229 | IBFrameworkSource 3230 | Foundation.framework/Headers/NSThread.h 3231 | 3232 | 3233 | 3234 | NSObject 3235 | 3236 | IBFrameworkSource 3237 | Foundation.framework/Headers/NSURL.h 3238 | 3239 | 3240 | 3241 | NSObject 3242 | 3243 | IBFrameworkSource 3244 | Foundation.framework/Headers/NSURLConnection.h 3245 | 3246 | 3247 | 3248 | NSObject 3249 | 3250 | IBFrameworkSource 3251 | Foundation.framework/Headers/NSURLDownload.h 3252 | 3253 | 3254 | 3255 | NSPopUpButton 3256 | NSButton 3257 | 3258 | IBFrameworkSource 3259 | AppKit.framework/Headers/NSPopUpButton.h 3260 | 3261 | 3262 | 3263 | NSPopUpButtonCell 3264 | NSMenuItemCell 3265 | 3266 | IBFrameworkSource 3267 | AppKit.framework/Headers/NSPopUpButtonCell.h 3268 | 3269 | 3270 | 3271 | NSResponder 3272 | 3273 | IBFrameworkSource 3274 | AppKit.framework/Headers/NSInterfaceStyle.h 3275 | 3276 | 3277 | 3278 | NSResponder 3279 | NSObject 3280 | 3281 | IBFrameworkSource 3282 | AppKit.framework/Headers/NSResponder.h 3283 | 3284 | 3285 | 3286 | NSTextField 3287 | NSControl 3288 | 3289 | IBFrameworkSource 3290 | AppKit.framework/Headers/NSTextField.h 3291 | 3292 | 3293 | 3294 | NSTextFieldCell 3295 | NSActionCell 3296 | 3297 | IBFrameworkSource 3298 | AppKit.framework/Headers/NSTextFieldCell.h 3299 | 3300 | 3301 | 3302 | NSUserDefaultsController 3303 | NSController 3304 | 3305 | IBFrameworkSource 3306 | AppKit.framework/Headers/NSUserDefaultsController.h 3307 | 3308 | 3309 | 3310 | NSView 3311 | 3312 | IBFrameworkSource 3313 | AppKit.framework/Headers/NSClipView.h 3314 | 3315 | 3316 | 3317 | NSView 3318 | 3319 | 3320 | 3321 | NSView 3322 | 3323 | IBFrameworkSource 3324 | AppKit.framework/Headers/NSRulerView.h 3325 | 3326 | 3327 | 3328 | NSView 3329 | NSResponder 3330 | 3331 | 3332 | 3333 | NSWindow 3334 | 3335 | IBFrameworkSource 3336 | AppKit.framework/Headers/NSDrawer.h 3337 | 3338 | 3339 | 3340 | NSWindow 3341 | NSResponder 3342 | 3343 | IBFrameworkSource 3344 | AppKit.framework/Headers/NSWindow.h 3345 | 3346 | 3347 | 3348 | NSWindow 3349 | 3350 | IBFrameworkSource 3351 | AppKit.framework/Headers/NSWindowScripting.h 3352 | 3353 | 3354 | 3355 | 3356 | 0 3357 | IBCocoaFramework 3358 | 3359 | com.apple.InterfaceBuilder.CocoaPlugin.macosx 3360 | 3361 | 3362 | 3363 | com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 3364 | 3365 | 3366 | YES 3367 | ../MultitouchMidi.xcodeproj 3368 | 3 3369 | 3370 | YES 3371 | 3372 | YES 3373 | NSMenuCheckmark 3374 | NSMenuMixedState 3375 | NSSwitch 3376 | 3377 | 3378 | YES 3379 | {9, 8} 3380 | {7, 2} 3381 | {15, 15} 3382 | 3383 | 3384 | 3385 | 3386 | --------------------------------------------------------------------------------