home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Nebula
/
nebula.bin
/
SourceCode
/
NMK
/
Recorders
/
RScrollerVars.h
< prev
next >
Wrap
Text File
|
1993-01-19
|
761b
|
41 lines
/***** 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