home *** CD-ROM | disk | FTP | other *** search
-
- #import <appkit/appkit.h>
-
-
- typedef enum
- {
- BACKWARDS=-1, STOPPED=0, FORWARD=1
- } DType;
-
-
- @interface Sequence:Object
- {
- NXImage *image;
- NXSize imageSize;
- NXSize frameSize;
- int frameCount;
- NXPoint where;
- BOOL bounce;
-
- DType direction;
- int currentFrame;
- }
-
- - setImage:(NXImage *)anImage;
- - setFrameCount:(int)frames;
- - setLocation:(const NXPoint *)aPoint;
- - setBounce:(BOOL)flag;
-
- - start:controlView;
- - nextFrame:controlView;
-
- - compositeFrame:(int)no;
-
-
- @end
-