-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathReadPopoverController.h
39 lines (33 loc) · 1.03 KB
/
ReadPopoverController.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
//
// ReadPopoverController.h
// iGenomics
//
// Created by Stuckinaboot Inc. on 7/18/14.
//
//
#import <UIKit/UIKit.h>
#import "CopyLabel.h"
#import "ED_Info.h"
#import "IPhonePopoverHandler.h"
#import "GlobalVars.h"
#import "DNAColors.h"
#define kReadPopoverTitleInIPhonePopoverHandler @"Read Information"
#define kReadPopoverReadNameLblTxt @"Read Name: %s"
#define kReadPopoverGappedALblTxt @"Found: %s"
#define kReadPopoverGappedBLblTxt @"Reference: %s"
#define kReadPopoverEDLblTxt @"Edit Distance: %i"
#define kReadPopoverFoRevLblTxt @"Fo/Rev: %@"
#define kReadPopoverFoRevLblForwardTxt @"Forward"
#define kReadPopoverFoRevLblReverseTxt @"Reverse"
@interface ReadPopoverController : UIViewController {
IBOutlet CopyLabel *readNameLbl;
IBOutlet CopyLabel *gappedALbl;
IBOutlet CopyLabel *gappedBLbl;
IBOutlet CopyLabel *edLbl;
IBOutlet CopyLabel *foRevLbl;
IBOutlet UIScrollView *gappedLblsScrollView;
ED_Info *read;
}
- (void)setUpWithRead:(ED_Info*)r;
- (void)highlightDifferencesInGappedLbls;
@end