annotate addons/ofxFileDialogOSX/src/ofxFileDialogOSX.h @ 5:195907bb8bb7

added purple where notes have been seen - lets you see what updates have been used. Also the chopping of midi files to the beginning was introduced recently, so when they load, you chop any white space at the beginning, then use first note to launch.
author Andrew N Robertson <andrew.robertson@eecs.qmul.ac.uk>
date Fri, 19 Aug 2011 16:38:30 +0100
parents b299a65a3ad0
children
rev   line source
andrew@0 1 /*
andrew@0 2 * ofxFileDialogOSX.h
andrew@0 3 *
andrew@0 4 * Created by timknapen on 07/05/10.
andrew@0 5 * www.wereldderindianen.be
andrew@0 6 * code stolen from 'mantissa' over here:
andrew@0 7 * http://www.openframeworks.cc/forum/viewtopic.php?p=5028#p5028
andrew@0 8 *
andrew@0 9 */
andrew@0 10
andrew@0 11
andrew@0 12 #ifndef _OFX_FILE_DIALOG_OSX_
andrew@0 13 #define _OFX_FILE_DIALOG_OSX_
andrew@0 14
andrew@0 15 #include "ofMain.h"
andrew@0 16
andrew@0 17 class ofxFileDialogOSX {
andrew@0 18 public:
andrew@0 19 static int openFile(string& URL);
andrew@0 20 static int saveFile(string& URL, string& fileURL);
andrew@0 21 private:
andrew@0 22
andrew@0 23
andrew@0 24 };
andrew@0 25
andrew@0 26 #endif