home *** CD-ROM | disk | FTP | other *** search
- /***** RScrollerVars.h -- ScrollerCover variable holder object interface
- NeXTstep Measurement Kit
- by Alex Meyer <ameyer@phoenix.Princeton.EDU>
- for computer science senior thesis
- 24 April 1992 -- created
- *****/
-
- #import "TranscriptLinker.h"
- #import "structs.h"
- #import <appkit/Scroller.h>
-
- @interface RScrollerVars : Object
- {
- id linker;
- NXAtom key;
- double lastHitTime;
- rScrollerRec stats;
- }
-
- - initString:(const char *)str
- tag:(int)tg
- rect:(const NXRect *)rect;
- - incHits;
- - incKNOB;
- - incDECPAGE;
- - incINCPAGE;
- - incDECLINE;
- - incINCLINE;
- - incKNOBSLOT;
- - timeFrom:(double)time0
- to:(double)time1;
- - incHist:(int)ind;
- - (unsigned)type;
- - (NXAtom)key;
- - (NXAtom)desc;
- - (unsigned)statsSize;
- - (void *)copyOfStats;
- - copyInStats:(void *)NewStats;
-
- @end
-