Added declaration of

[compositeToPoint:fromRect:operation:fraction:],
[compositeToPoint:operation:fraction:],
[drawAtPoint:fromRect:operation:fraction:] and
[drawInRect:fromRect:operation:fraction:]


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@10677 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Fred Kiefer 2001-08-11 18:33:01 +00:00
parent e472270a62
commit 172f01e219

View file

@ -120,6 +120,16 @@
fromRect: (NSRect)aRect
fraction: (float)aFloat;
#ifndef STRICT_OPENSTEP
- (void) compositeToPoint: (NSPoint)aPoint
fromRect: (NSRect)srcRect
operation: (NSCompositingOperation)op
fraction: (float)delta;
- (void) compositeToPoint: (NSPoint)aPoint
operation: (NSCompositingOperation)op
fraction: (float)delta;
#endif
//
// Choosing Which Image Representation to Use
//
@ -147,6 +157,22 @@
- (void) setCacheDepthMatchesImageDepth: (BOOL)flag;
- (BOOL) cacheDepthMatchesImageDepth;
//
// Drawing
//
- (BOOL) drawRepresentation: (NSImageRep*)imageRep
inRect: (NSRect)aRect;
#ifndef STRICT_OPENSTEP
- (void) drawAtPoint: (NSPoint)point
fromRect: (NSRect)srcRect
operation: (NSCompositingOperation)op
fraction: (float)delta;
- (void) drawInRect: (NSRect)dstRect
fromRect: (NSRect)srcRect
operation: (NSCompositingOperation)op
fraction: (float)delta;
#endif
//
// Determining How the Image is Drawn
//
@ -155,8 +181,6 @@
- (BOOL) scalesWhenResized;
- (void) setBackgroundColor: (NSColor*)aColor;
- (NSColor*) backgroundColor;
- (BOOL) drawRepresentation: (NSImageRep*)imageRep
inRect: (NSRect)aRect;
- (void) recache;
- (void) setFlipped: (BOOL)flag;
- (BOOL) isFlipped;
@ -209,3 +233,4 @@
#endif
#endif // _GNUstep_H_NSImage