This is Sequence.h in view mode; [Download] [Up]
#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
These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.