-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCRSSummaryController.h
More file actions
executable file
·47 lines (41 loc) · 1.37 KB
/
CRSSummaryController.h
File metadata and controls
executable file
·47 lines (41 loc) · 1.37 KB
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
40
41
42
43
44
45
46
47
//
// CRSSummaryController.h
// Experiment
//
// Copyright (c) 2006. All rights reserved.
//
#import "CRS.h"
#import "CRSStateSystem.h"
@interface CRSSummaryController : LLScrollZoomWindow {
double accumulatedRunTimeS;
BlockStatus blockStatus;
long dayComputer; // Count of trials with computer certification errors
long dayEOTs[kEOTTypes];
long dayEOTTotal;
NSDictionary *fontAttr;
NSDictionary *labelFontAttr;
NSDictionary *leftFontAttr;
long lastEOTCode;
double lastStartTimeS;
MappingBlockStatus mappingBlockStatus;
long myDayEOTTotal;
long myDayEOTs[kMyEOTTypes];
long myRecentEOTs[kMyEOTTypes];
long myRecentEOTTotal;
BOOL newTrial;
long recentComputer; // Count of trials with computer certification errors
long recentEOTs[kEOTTypes];
long recentEOTTotal;
StimParams stimParams;
long taskMode;
TrialDesc trial;
IBOutlet LLEOTView *dayPlot;
IBOutlet LLEOTHistoryView *eotHistory;
IBOutlet NSTableView *percentTable;
IBOutlet LLEOTView *recentPlot;
IBOutlet NSTableView *trialTable;
}
- (NSDictionary *)makeAttributesForFont:(NSFont *)font alignment:(NSTextAlignment)align tailIndex:(float)indent;
- (id)percentTableColumn:(NSTableColumn *)tableColumn row:(long)row;
- (id)trialTableColumn:(NSTableColumn *)tableColumn row:(long)row;
@end