00001 #import <Cocoa/Cocoa.h> 00002 #import "TFModel.h" 00003 #import "TFPointModel.h" 00004 #import "TFView.h"; 00005 00009 @interface TFManager : NSObject { 00010 00011 IBOutlet TFView * _view; 00012 00013 NSMutableArray * _rawTFs; 00014 NSMutableDictionary * _knownTFs; 00015 TFModel * _activeTF; 00016 NSString * _tfName; 00018 } 00019 00023 - (NSMutableDictionary *) knownTFs; 00024 00028 - (NSString *) tfName; 00029 00033 - (void) changeTF: (NSString *) name; 00034 00038 - (void) saveTransferFunction: (NSString *) name; 00039 00040 @end