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