// // BlastView.h // BioAlignmentStudio // // Created by Alexander K. Hudek on 2008-09-22. // #import #import @interface BlastView : NSView { NSMutableArray *textStores; NSFont *myFont; NSDictionary *textAttributes; NSNumberFormatter *coordinateFormatter; NSSize characterSize, blockSize; int charactersPerLine, numBlocks; CGFloat topMargin, bottomMargin, leftMargin, rightMargin; } - (void)setAlignmentData:(BCSequenceArray *)alignment; - (int)nextBlockAtHeight:(CGFloat)h; - (BOOL)isOpaque; @end