Up

NSGraphicsContext

Authors

Richard Frith-Macdonald (richard@brainstorm.co.uk)
Adam Fedor (fedor@gnu.org)

Date: Generated at 2023-12-22 15:07:50 -0500

GNUstep drawing context class.

Copyright: (C) 1998,1999 Free Software Foundation, Inc.


Contents -

  1. NSGraphicsContext
  2. Software documentation for the NSGraphicsContext(GNUstep) category
  3. Software documentation for the NSGraphicsContext(NSGradient) category
  4. Software documentation for the NSGraphicsContext(NSGraphics) category
  5. Software documentation for the NSGraphicsContext(Ops) category
  6. Software documentation for the NSGraphicsContext(Printing) category

NSGraphicsContext

This is an abstract class which provides a framework for a device independant drawing.

In addition, this class provides methods to perform the actual drawing. As a convenience, you can also access these through various function interfaces. One is a Display Postscript interface using PS and DPS operations. Another is a Quartz interface (not yet written).

NSGraphicsContext : NSObject

Declared in:
AppKit/NSGraphicsContext.h
Availability: OpenStep

Description forthcoming.

Instance Variables

Method summary

currentContext 

+ (NSGraphicsContext*) currentContext;
Availability: OpenStep

Returns the current context. Also see the convienience function GSCurrentContext()

currentContextDrawingToScreen 

+ (BOOL) currentContextDrawingToScreen;
Availability: OpenStep

Returns YES if the current context is a display context

graphicsContextWithAttributes: 

+ (NSGraphicsContext*) graphicsContextWithAttributes: (NSDictionary*)attributes;
Availability: OpenStep

Create a graphics context with attributes, which contains key/value pairs which describe the specifics of how the context is to be initialized.


graphicsContextWithBitmapImageRep: 

+ (NSGraphicsContext*) graphicsContextWithBitmapImageRep: (NSBitmapImageRep*)bitmap;
Availability: MacOS-X 10.4.0

Description forthcoming.

graphicsContextWithCGContext: flipped: 

+ (NSGraphicsContext*) graphicsContextWithCGContext: (CGContextRef)ctx flipped: (BOOL)flipped;
Availability: MacOS-X 10.10.0

Description forthcoming.

graphicsContextWithGraphicsPort: flipped: 

+ (NSGraphicsContext*) graphicsContextWithGraphicsPort: (void*)port flipped: (BOOL)flag;
Availability: MacOS-X 10.4.0

Description forthcoming.

graphicsContextWithWindow: 

+ (NSGraphicsContext*) graphicsContextWithWindow: (NSWindow*)aWindow;
Availability: OpenStep

Create graphics context with attributes speficied by aWindow's device description.

restoreGraphicsState 

+ (void) restoreGraphicsState;
Availability: OpenStep

Description forthcoming.

saveGraphicsState 

+ (void) saveGraphicsState;
Availability: OpenStep

Description forthcoming.

setCurrentContext: 

+ (void) setCurrentContext: (NSGraphicsContext*)context;
Availability: OpenStep

Set the current context that will handle drawing.

setGraphicsState: 

+ (void) setGraphicsState: (NSInteger)graphicsState;
Availability: OpenStep

Description forthcoming.

CGContext 

- (CGContextRef) CGContext;
Availability: MacOS-X 10.10.0

Description forthcoming.

attributes 

- (NSDictionary*) attributes;
Availability: OpenStep

Description forthcoming.

compositingOperation 

- (NSCompositingOperation) compositingOperation;
Availability: MacOS-X 10.4.0

Description forthcoming.

flushGraphics 

- (void) flushGraphics;
Availability: OpenStep

Description forthcoming.

focusStack 

- (void*) focusStack;
Availability: OpenStep

Description forthcoming.

graphicsPort 

- (void*) graphicsPort;
Availability: OpenStep

Description forthcoming.

imageInterpolation 

- (NSImageInterpolation) imageInterpolation;
Availability: OpenStep

Description forthcoming.

isDrawingToScreen 

- (BOOL) isDrawingToScreen;
Availability: OpenStep

Description forthcoming.

isFlipped 

- (BOOL) isFlipped;
Availability: MacOS-X 10.4.0

Description forthcoming.

methods 

- (const gsMethodTable*) methods;
Availability: OpenStep

Description forthcoming.

patternPhase 

- (NSPoint) patternPhase;
Availability: MacOS-X 10.2.0

Description forthcoming.

restoreGraphicsState 

- (void) restoreGraphicsState;
Availability: OpenStep

Description forthcoming.

saveGraphicsState 

- (void) saveGraphicsState;
Availability: OpenStep

Description forthcoming.

setCompositingOperation: 

- (void) setCompositingOperation: (NSCompositingOperation)operation;
Availability: MacOS-X 10.4.0

Description forthcoming.

setFocusStack: 

- (void) setFocusStack: (void*)stack;
Availability: OpenStep

Description forthcoming.

setImageInterpolation: 

- (void) setImageInterpolation: (NSImageInterpolation)interpolation;
Availability: OpenStep

Description forthcoming.

setPatternPhase: 

- (void) setPatternPhase: (NSPoint)phase;
Availability: MacOS-X 10.2.0

Description forthcoming.

setShouldAntialias: 

- (void) setShouldAntialias: (BOOL)antialias;
Availability: OpenStep

Description forthcoming.

shouldAntialias 

- (BOOL) shouldAntialias;
Availability: OpenStep

Description forthcoming.



Instance Variables for NSGraphicsContext Class

_antialias

@protected BOOL _antialias;
Availability: OpenStep

Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.

_compositingOperation

@protected NSCompositingOperation _compositingOperation;
Availability: OpenStep

Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.

_graphicsPort

@protected void* _graphicsPort;
Availability: OpenStep

Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.

_interp

@protected NSImageInterpolation _interp;
Availability: OpenStep

Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.

_isFlipped

@protected BOOL _isFlipped;
Availability: OpenStep

Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.

_patternPhase

@protected NSPoint _patternPhase;
Availability: OpenStep

Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.

context_data

@protected NSMutableData* context_data;
Availability: OpenStep

Description forthcoming.

context_info

@protected NSDictionary* context_info;
Availability: OpenStep

Description forthcoming.

focus_stack

@protected NSMutableArray* focus_stack;
Availability: OpenStep

Description forthcoming.

methods

@public const gsMethodTable* methods;
Availability: OpenStep

Description forthcoming.

usedFonts

@protected NSMutableSet* usedFonts;
Availability: OpenStep

Description forthcoming.




Software documentation for the NSGraphicsContext(GNUstep) category

NSGraphicsContext(GNUstep)

Declared in:
AppKit/NSGraphicsContext.h
Availability: Not in OpenStep/MacOS-X

Description forthcoming.
Method summary

handleExposeRect: forDriver: 

+ (void) handleExposeRect: (NSRect)rect forDriver: (void*)driver;
Availability: Not in OpenStep/MacOS-X

Description forthcoming.

setDefaultContextClass: 

+ (void) setDefaultContextClass: (Class)defaultContextClass;
Availability: Not in OpenStep/MacOS-X

Description forthcoming.

focusView 

- (NSView*) focusView;
Availability: Not in OpenStep/MacOS-X

Description forthcoming.

initWithContextInfo: 

- (id) initWithContextInfo: (NSDictionary*)info;
Availability: Not in OpenStep/MacOS-X

Description forthcoming.

initWithGraphicsPort: flipped: 

- (id) initWithGraphicsPort: (void*)port flipped: (BOOL)flag;
Availability: Not in OpenStep/MacOS-X

Description forthcoming.

lockFocusView: inRect: 

- (void) lockFocusView: (NSView*)aView inRect: (NSRect)rect;
Availability: Not in OpenStep/MacOS-X

Description forthcoming.

resetUsedFonts 

- (void) resetUsedFonts;
Availability: Not in OpenStep/MacOS-X

Description forthcoming.

unlockFocusView: needsFlush: 

- (void) unlockFocusView: (NSView*)aView needsFlush: (BOOL)flush;
Availability: Not in OpenStep/MacOS-X

Description forthcoming.

useFont: 

- (void) useFont: (NSString*)fontName;
Availability: Not in OpenStep/MacOS-X

Description forthcoming.

usedFonts 

- (NSSet*) usedFonts;
Availability: Not in OpenStep/MacOS-X

Description forthcoming.

Software documentation for the NSGraphicsContext(NSGradient) category

NSGraphicsContext(NSGradient)

Declared in:
AppKit/NSGraphicsContext.h
Availability: OpenStep

Description forthcoming.
Method summary

drawGradient: fromCenter: radius: toCenter: radius: options: 

- (void) drawGradient: (NSGradient*)gradient fromCenter: (NSPoint)startCenter radius: (CGFloat)startRadius toCenter: (NSPoint)endCenter radius: (CGFloat)endRadius options: (NSUInteger)options;
Availability: OpenStep

Description forthcoming.

drawGradient: fromPoint: toPoint: options: 

- (void) drawGradient: (NSGradient*)gradient fromPoint: (NSPoint)startPoint toPoint: (NSPoint)endPoint options: (NSUInteger)options;
Availability: OpenStep

Description forthcoming.

Software documentation for the NSGraphicsContext(NSGraphics) category

NSGraphicsContext(NSGraphics)

Declared in:
AppKit/NSGraphicsContext.h
Availability: OpenStep

Description forthcoming.
Method summary

GSReadRect: 

- (NSDictionary*) GSReadRect: (NSRect)rect;
Availability: OpenStep

Read raw pixels from the device and return the information as a bitmap. Pixels are read from the smallest device-pixel aligned rectangle containing rect (defined in the current graphics state and clipped to the current window, but not against the clipping path). If the resulting device rectangle is degenerate, Size will be (0,0) and Data will be nil, but the other entries in the dictionary will be filled in.

If the device does not support the operation, returns nil.

The returned dictionary contains at least the following keys:

Data
An NSData-instance with the image data.
Size
An NSValue/NSSize with the size in pixels of the returned image data.
BitsPerSample
An NSValue/unsigned int.
SamplesPerPixel
An NSValue/unsigned int.
ColorSpace
An NSString with the name of the color space the data is in.
HasAlpha
An NSValue/unsigned int. 0 if the returned image does not have an alpha channel, 1 if it does.
Matrix
An NSAffineTransform-instance that contains the transform between current user space and image space for this image.

GSWSetViewIsFlipped: 

- (void) GSWSetViewIsFlipped: (BOOL)flipped;
Availability: OpenStep

This method is used by the backend, but has been rendered obsolete. Do not use it in any code or in any backend implementation as it may disappear at any point.

GSWViewIsFlipped 

- (BOOL) GSWViewIsFlipped;
Availability: OpenStep

Returns YES if the current focused view is flipped. This is an obsolete method. Use [[NSView focusView] isFlipped] instead

NSBeep 

- (void) NSBeep;
Availability: OpenStep

Play the System Beep

NSDrawBitmap: : : : : : : : : : : 

- (void) NSDrawBitmap: (NSRect)rect : (NSInteger)pixelsWide : (NSInteger)pixelsHigh : (NSInteger)bitsPerSample : (NSInteger)samplesPerPixel : (NSInteger)bitsPerPixel : (NSInteger)bytesPerRow : (BOOL)isPlanar : (BOOL)hasAlpha : (NSString*)colorSpaceName : (const unsigned char*const[5])data;
Availability: OpenStep

Generic method to render bitmap images. This method shouldn't be used anywhere except in the AppKit itself. It will be replaced by the more flexible GSDrawImage method sometime in the future. (Quartz).

Software documentation for the NSGraphicsContext(Ops) category

NSGraphicsContext(Ops)

Declared in:
AppKit/NSGraphicsContext.h
Availability: OpenStep

Description forthcoming.
Method summary

DPSPrintf: : 

- (void) DPSPrintf: (const char*)fmt : (va_list)args;
Availability: OpenStep

Write the string (with printf substitutions) to a PostScript context. Other output contexts will likely ignore this

DPSWriteData: : 

- (void) DPSWriteData: (const char*)buf : (unsigned int)count;
Availability: OpenStep

Write the encoded data to a PostScript context. Other output contexts will likely ignore this

DPSarc: : : : : 

- (void) DPSarc: (CGFloat)x : (CGFloat)y : (CGFloat)r : (CGFloat)angle1 : (CGFloat)angle2;
Availability: OpenStep

Description forthcoming.

DPSarcn: : : : : 

- (void) DPSarcn: (CGFloat)x : (CGFloat)y : (CGFloat)r : (CGFloat)angle1 : (CGFloat)angle2;
Availability: OpenStep

Description forthcoming.

DPSarct: : : : : 

- (void) DPSarct: (CGFloat)x1 : (CGFloat)y1 : (CGFloat)x2 : (CGFloat)y2 : (CGFloat)r;
Availability: OpenStep

Description forthcoming.

DPSashow: : : 

- (void) DPSashow: (CGFloat)x : (CGFloat)y : (const char*)s;
Availability: OpenStep

Displays a string as in DPSshow, except that ( x,y) is added to the advancement of every glyph. An alternative means of achieving the same effect is to use the -GSSetCharacterSpacing: method. Either approach should be more efficient that using -DPSshow: with appropriate -DPSrmoveto:: operations.

DPSawidthshow: : : : : : 

- (void) DPSawidthshow: (CGFloat)cx : (CGFloat)cy : (int)c : (CGFloat)ax : (CGFloat)ay : (const char*)s;
Availability: OpenStep

Displays a string as in a combination of DPSashow and DPSwidthshow: (ax,ay) is added to the advancement of every glyph, while ( cx,cy) is also added to the advancement for character c's glyph specifically. Using this method should be more efficient that using -DPSshow: with appropriate -DPSrmoveto:: operations.

DPScharpath: : 

- (void) DPScharpath: (const char*)s : (int)b;
Availability: OpenStep

Appends to the current path a path that is equivalent to the outlines of the glyphs in the string. This results in a path that can be used for stroking, filling or clipping (DPS).

DPSclip 

- (void) DPSclip;
Availability: OpenStep

Clip to the current path. (DPS, Quartz).

DPSclosepath 

- (void) DPSclosepath;
Availability: OpenStep

Description forthcoming.

DPScomposite: : : : : : : : 

- (void) DPScomposite: (CGFloat)x : (CGFloat)y : (CGFloat)w : (CGFloat)h : (NSInteger)gstateNum : (CGFloat)dx : (CGFloat)dy : (NSCompositingOperation)op;
Availability: OpenStep

Description forthcoming.

DPScompositerect: : : : : 

- (void) DPScompositerect: (CGFloat)x : (CGFloat)y : (CGFloat)w : (CGFloat)h : (NSCompositingOperation)op;
Availability: OpenStep

Description forthcoming.

DPSconcat: 

- (void) DPSconcat: (const CGFloat*)m;
Availability: OpenStep

Concatenates the coordinate transform represented by the matrix m with the current coordinate transform. (DPS).

DPScurrentalpha: 

- (void) DPScurrentalpha: (CGFloat*)a;
Availability: OpenStep

Returns the current alpha component (DPS).

DPScurrentcmykcolor: : : : 

- (void) DPScurrentcmykcolor: (CGFloat*)c : (CGFloat*)m : (CGFloat*)y : (CGFloat*)k;
Availability: OpenStep

Returns the current color according to the CMYK color model (DPS).

DPScurrentflat: 

- (void) DPScurrentflat: (CGFloat*)flatness;
Availability: OpenStep

Returns the current flattness parameter, which controls how curved lines are drawn. (DPS, Quartz).

DPScurrentgray: 

- (void) DPScurrentgray: (CGFloat*)gray;
Availability: OpenStep

Returns the gray-level equivalent in the current color space. The value may depend on the current color space and may be 0 if the current color space has no notion of a gray value (DPS)

DPScurrenthsbcolor: : : 

- (void) DPScurrenthsbcolor: (CGFloat*)h : (CGFloat*)s : (CGFloat*)b;
Availability: OpenStep

Returns the current color according to the HSB color model (DPS).

DPScurrentlinecap: 

- (void) DPScurrentlinecap: (int*)linecap;
Availability: OpenStep

Returns the current linecap value. (DPS, Quartz).

DPScurrentlinejoin: 

- (void) DPScurrentlinejoin: (int*)linejoin;
Availability: OpenStep

Returns the current linejoin value. (DPS, Quartz).

DPScurrentlinewidth: 

- (void) DPScurrentlinewidth: (CGFloat*)width;
Availability: OpenStep

Returns the current line width. (DPS, Quartz).

DPScurrentmiterlimit: 

- (void) DPScurrentmiterlimit: (CGFloat*)limit;
Availability: OpenStep

Returns the current linecap value. (DPS, Quartz).

DPScurrentoffset: : 

- (void) DPScurrentoffset: (int*)x : (int*)y;
Availability: OpenStep

Description forthcoming.

DPScurrentpoint: : 

- (void) DPScurrentpoint: (CGFloat*)x : (CGFloat*)y;
Availability: OpenStep

Returns the current point. (DPS, Quartz).

DPScurrentrgbcolor: : : 

- (void) DPScurrentrgbcolor: (CGFloat*)r : (CGFloat*)g : (CGFloat*)b;
Availability: OpenStep

Returns the current color according to the RGB color model (DPS).

DPScurrentstrokeadjust: 

- (void) DPScurrentstrokeadjust: (int*)b;
Availability: OpenStep

Returns the strokeadjust value. (DPS).

DPScurveto: : : : : : 

- (void) DPScurveto: (CGFloat)x1 : (CGFloat)y1 : (CGFloat)x2 : (CGFloat)y2 : (CGFloat)x3 : (CGFloat)y3;
Availability: OpenStep

Description forthcoming.

DPSdissolve: : : : : : : : 

- (void) DPSdissolve: (CGFloat)x : (CGFloat)y : (CGFloat)w : (CGFloat)h : (NSInteger)gstateNum : (CGFloat)dx : (CGFloat)dy : (CGFloat)delta;
Availability: OpenStep

Description forthcoming.

DPSeoclip 

- (void) DPSeoclip;
Availability: OpenStep

Description forthcoming.

DPSeofill 

- (void) DPSeofill;
Availability: OpenStep

Description forthcoming.

DPSfill 

- (void) DPSfill;
Availability: OpenStep

Fill the current path. (DPS, Quartz).

DPSflattenpath 

- (void) DPSflattenpath;
Availability: OpenStep

Description forthcoming.

DPSgrestore 

- (void) DPSgrestore;
Availability: OpenStep

Pops a previously saved gstate from the gstate stack and makes it current. Drawing information in the previously saved gstate becomes the current information. (DPS, Quartz).

DPSgsave 

- (void) DPSgsave;
Availability: OpenStep

Saves (pushes) a copy of the current gstate information onto the gstate stack. This saves drawing information contained in the gstate, such as the current path, ctm and colors. (DPS, Quartz).

DPSinitclip 

- (void) DPSinitclip;
Availability: OpenStep

Description forthcoming.

DPSinitgraphics 

- (void) DPSinitgraphics;
Availability: OpenStep

Description forthcoming.

DPSinitmatrix 

- (void) DPSinitmatrix;
Availability: OpenStep

Sets the coordinate transform matrix to the initial values for the particular context

DPSlineto: : 

- (void) DPSlineto: (CGFloat)x : (CGFloat)y;
Availability: OpenStep

Description forthcoming.

DPSmoveto: : 

- (void) DPSmoveto: (CGFloat)x : (CGFloat)y;
Availability: OpenStep

Description forthcoming.

DPSnewpath 

- (void) DPSnewpath;
Availability: OpenStep

Description forthcoming.

DPSpathbbox: : : : 

- (void) DPSpathbbox: (CGFloat*)llx : (CGFloat*)lly : (CGFloat*)urx : (CGFloat*)ury;
Availability: OpenStep

Description forthcoming.

DPSrcurveto: : : : : : 

- (void) DPSrcurveto: (CGFloat)x1 : (CGFloat)y1 : (CGFloat)x2 : (CGFloat)y2 : (CGFloat)x3 : (CGFloat)y3;
Availability: OpenStep

Description forthcoming.

DPSrectclip: : : : 

- (void) DPSrectclip: (CGFloat)x : (CGFloat)y : (CGFloat)w : (CGFloat)h;
Availability: OpenStep

Description forthcoming.

DPSrectfill: : : : 

- (void) DPSrectfill: (CGFloat)x : (CGFloat)y : (CGFloat)w : (CGFloat)h;
Availability: OpenStep

Description forthcoming.

DPSrectstroke: : : : 

- (void) DPSrectstroke: (CGFloat)x : (CGFloat)y : (CGFloat)w : (CGFloat)h;
Availability: OpenStep

Description forthcoming.

DPSreversepath 

- (void) DPSreversepath;
Availability: OpenStep

Description forthcoming.

DPSrlineto: : 

- (void) DPSrlineto: (CGFloat)x : (CGFloat)y;
Availability: OpenStep

Description forthcoming.

DPSrmoveto: : 

- (void) DPSrmoveto: (CGFloat)x : (CGFloat)y;
Availability: OpenStep

Description forthcoming.

DPSrotate: 

- (void) DPSrotate: (CGFloat)angle;
Availability: OpenStep

Rotate the coordinate system. (DPS).

DPSscale: : 

- (void) DPSscale: (CGFloat)x : (CGFloat)y;
Availability: OpenStep

Scale the coordinate system. (DPS).

DPSsetalpha: 

- (void) DPSsetalpha: (CGFloat)a;
Availability: OpenStep

Sets the alpha drawing component. For this and other color setting commands that have no differentiation between fill and stroke colors, both the fill and stroke alpha are set (DPS).

DPSsetcmykcolor: : : : 

- (void) DPSsetcmykcolor: (CGFloat)c : (CGFloat)m : (CGFloat)y : (CGFloat)k;
Availability: OpenStep

Sets the current colorspace to Device CMYK and the current color based on the indicated values. For this and other color setting commands that have no differentiation between fill and stroke colors, both the fill and stroke colors are set (DPS).

DPSsetdash: : : 

- (void) DPSsetdash: (const CGFloat*)pat : (NSInteger)size : (CGFloat)offset;
Availability: OpenStep

Set the pattern for line dashes like the Postscript setdash operator. (DPS, Quartz).

DPSsetflat: 

- (void) DPSsetflat: (CGFloat)flatness;
Availability: OpenStep

Sets the current flattness parameter, which controls how curved lines are drawn. (DPS, Quartz).

DPSsetgray: 

- (void) DPSsetgray: (CGFloat)gray;
Availability: OpenStep

Sets the current colorspace to Device Gray and the current gray value (DPS).

DPSsetgstate: 

- (void) DPSsetgstate: (NSInteger)gst;
Availability: OpenStep

Makes the gstate indicated by the tag gst the current gstate. Note that the gstate is copied, so that changes to either gstate do not affect the other. (DPS, Quartz).

DPSsethalftonephase: : 

- (void) DPSsethalftonephase: (CGFloat)x : (CGFloat)y;
Availability: OpenStep

Description forthcoming.

DPSsethsbcolor: : : 

- (void) DPSsethsbcolor: (CGFloat)h : (CGFloat)s : (CGFloat)b;
Availability: OpenStep

Sets the current colorspace to Device RGB and the current color based on the indicated values (DPS).

DPSsetlinecap: 

- (void) DPSsetlinecap: (int)linecap;
Availability: OpenStep

Set the current linecap value. (DPS, Quartz).

DPSsetlinejoin: 

- (void) DPSsetlinejoin: (int)linejoin;
Availability: OpenStep

Set the current linejoin value. (DPS, Quartz).

DPSsetlinewidth: 

- (void) DPSsetlinewidth: (CGFloat)width;
Availability: OpenStep

Set the current line width. (DPS, Quartz).

DPSsetmiterlimit: 

- (void) DPSsetmiterlimit: (CGFloat)limit;
Availability: OpenStep

Set the current meter limit value. (DPS, Quartz).

DPSsetoffset: : 

- (void) DPSsetoffset: (short int)x : (short int)y;
Availability: OpenStep

Description forthcoming.

DPSsetrgbcolor: : : 

- (void) DPSsetrgbcolor: (CGFloat)r : (CGFloat)g : (CGFloat)b;
Availability: OpenStep

Sets the current colorspace to Device RGB and the current color based on the indicated values (DPS).

DPSsetstrokeadjust: 

- (void) DPSsetstrokeadjust: (int)b;
Availability: OpenStep

Description forthcoming.

DPSshfill: 

- (void) DPSshfill: (NSDictionary*)shaderDictionary;
Availability: OpenStep

Description forthcoming.

DPSshow: 

- (void) DPSshow: (const char*)s;
Availability: OpenStep

Display the string s using the current font (DPS).

DPSstroke 

- (void) DPSstroke;
Availability: OpenStep

Description forthcoming.

DPStranslate: : 

- (void) DPStranslate: (CGFloat)x : (CGFloat)y;
Availability: OpenStep

Translate the coordinate system. (DPS).

DPSwidthshow: : : : 

- (void) DPSwidthshow: (CGFloat)x : (CGFloat)y : (int)c : (const char*)s;
Availability: OpenStep

Displays a string as in DPSshow, except that, for character c only, the glpyh x and y advancement is determined by the values (x,y), instead of by the glyph itself. This is often used to adjust the length of a line of text by changing the width of the space character. Using this method should be more efficient than using -DPSshow: with appropriate -DPSrmoveto:: operations.

DPSxshow: : : 

- (void) DPSxshow: (const char*)s : (const CGFloat*)numarray : (int)size;
Availability: OpenStep

Displays a string as in DPSshow, except that the glyph x advancement is determined by the values in numarray, one for each glyph, instead of by the glyphs themselves. size should be equal to the length of s in glyphs. Using this method should be more efficient than using -DPSshow: with appropriate -DPSrmoveto:: operations.

DPSxyshow: : : 

- (void) DPSxyshow: (const char*)s : (const CGFloat*)numarray : (int)size;
Availability: OpenStep

Displays a string as in DPSshow, except that the glyph x and y advancement is determined by the values in numarray, one x and one y for each glyph, in alternating order, instead of by the glyphs themselves. size should be equal to the length of s in glyphs. Using this method should be more efficient than using -DPSshow: with appropriate -DPSrmoveto:: operations.

DPSyshow: : : 

- (void) DPSyshow: (const char*)s : (const CGFloat*)numarray : (int)size;
Availability: OpenStep

Displays a string as in DPSshow, except that the glyph y advancement is determined by the values in numarray, one for each glyph, instead of by the glyphs themselves. size should be equal to the length of s in glyphs. Using this method should be more efficient than using -DPSshow: with appropriate -DPSrmoveto:: operations.

GSConcatCTM: 

- (void) GSConcatCTM: (NSAffineTransform*)ctm;
Availability: OpenStep

Concatenates the matrix ctm onto the current coordinate transform matrix. (Quartz).

GSCurrentCTM 

- (NSAffineTransform*) GSCurrentCTM;
Availability: OpenStep

Returns the current coordinate transform matrix. (Quartz).

GSCurrentDevice: : : 

- (void) GSCurrentDevice: (void**)device : (int*)x : (int*)y;
Availability: OpenStep

This is a private method used between the window server and the context. It should not be used in any application. Typically used by the window server to find out what window the context is drawing graphics to. The device pointer is an opaque type that contains information about the window. The x and y pointers indicate the offset of the origin of the window from the lower left-hand corner

GSDefineGState 

- (NSInteger) GSDefineGState;
Availability: OpenStep

Creates a copy of the current gstate and associates it with a tag, which is given in the return value. This tag can later be used in -DPSsetgstate: to set the gstate as being current again. (DPS, Quartz).

GSDrawImage: : 

- (void) GSDrawImage: (NSRect)rect : (void*)imageref;
Availability: OpenStep

Generic method to draw an image into a rect. The image is defined by imageref, an opaque structure. Support for this method hasn't been implemented yet, so it should not be used anywhere.

GSGetTextCTM 

- (NSAffineTransform*) GSGetTextCTM;
Availability: OpenStep

Returns the transfer function for transforming text from text space to user space. See -GSSetTextCTM: for additiona information. (Quartz).


GSGetTextPosition 

- (NSPoint) GSGetTextPosition;
Availability: OpenStep

Returns the location at which text will be drawn. In text-space coordinates. (Quartz).

GSRectClipList: : 

- (void) GSRectClipList: (const NSRect*)rects : (int)count;
Availability: OpenStep

Append the array of rects to the current clip path (DPS, Quartz).

GSRectFillList: : 

- (void) GSRectFillList: (const NSRect*)rects : (int)count;
Availability: OpenStep

Draw and fill the array of rects. (DPS, Quartz)

GSReplaceGState: 

- (void) GSReplaceGState: (NSInteger)gst;
Availability: OpenStep

Replaces the gstate refered to by the tag gst with the current gstate. The former gstate is destroyed. (DPS, Quartz).

GSSendBezierPath: 

- (void) GSSendBezierPath: (NSBezierPath*)path;
Availability: OpenStep

Set the bezier path as the current path

GSSetCTM: 

- (void) GSSetCTM: (NSAffineTransform*)ctm;
Availability: OpenStep

Sets the coordinate transform matrix which describes how graphics will be transformed into device coordinates. (Quartz).

GSSetCharacterSpacing: 

- (void) GSSetCharacterSpacing: (CGFloat)extra;
Availability: OpenStep

Use this method to set the additional spacing between characters (glyphs). This spacing is added to the normal spacing for each character. Units are in text-space coordinate system. (Quartz).

GSSetDevice: : : 

- (void) GSSetDevice: (void*)device : (int)x : (int)y;
Availability: OpenStep

This is a private method used between the window server and the context. It should not be used in any application. Typically called by the window server to tell the context what window it should draw graphics to. The device pointer is an opaque type that contains information about the window. The x and y values tell the context that it should put the origin of the transform matrix at the indicated x and y values from the lower left-hand corner of the window

GSSetFillColor: 

- (void) GSSetFillColor: (const CGFloat*)values;
Availability: OpenStep

Sets the current color for fill operations. The values array should have n components, where n corresponds to the number of color components required to specify the color in the current colorspace (Quartz).

GSSetFillColorspace: 

- (void) GSSetFillColorspace: (void*)spaceref;
Availability: OpenStep

Sets the colorspace for fill operations based on values in the supplied dictionary dict.

For device colorspaces (GSDeviceGray, GSDeviceRGB, GSDeviceCMYK), only the name of the colorspace needs to be set using the GSColorSpaceName key.

Other colorspaces will be documented later (Quartz).


GSSetFont: 

- (void) GSSetFont: (void*)fontref;
Availability: OpenStep

Set the current font for drawing glyphs. (DPS, Quartz).

GSSetFontSize: 

- (void) GSSetFontSize: (CGFloat)size;
Availability: OpenStep

Set the font size of the current NSFont used for drawing glyphs. (DPS, Quartz).

GSSetPatterColor: 

- (void) GSSetPatterColor: (NSImage*)image;
Availability: OpenStep

Description forthcoming.

GSSetStrokeColor: 

- (void) GSSetStrokeColor: (const CGFloat*)values;
Availability: OpenStep

Sets the current color for stroke operations. The values array should have n components, where n corresponds to the number of color components required to specify the color in the current colorspace (Quartz).

GSSetStrokeColorspace: 

- (void) GSSetStrokeColorspace: (void*)spaceref;
Availability: OpenStep

Sets the colorspace for stroke operations based on the values in the supplied dictionary. See -GSSetFillColorspace: for a description of the values that need to be supplied (Quartz).

GSSetTextCTM: 

- (void) GSSetTextCTM: (NSAffineTransform*)ctm;
Availability: OpenStep

Set the transfer function for transforming text from text space to user space. This transform is only applied to text objects and is in addition to the normal coordinate transform matrix. When drawing text, this transform is applied before the normal CTM.

The text matrix can be changed by either modifying it directly, or just by drawing text, in which case the tx and ty offset veriables are modified to point to the location of the next character that could be rendered (Quartz).


GSSetTextDrawingMode: 

- (void) GSSetTextDrawingMode: (GSTextDrawingMode)mode;
Availability: OpenStep

Set the current text drawing mode. The mode can be one of several values that fill/stroke the text or add it to the current clipping path. (Quartz).

GSSetTextPosition: 

- (void) GSSetTextPosition: (NSPoint)loc;
Availability: OpenStep

Set the location at which text will be drawn, in text-space coordinates. This routine updates the current text coordinate matrix. (Quartz).

GSShowGlyphs: : 

- (void) GSShowGlyphs: (const NSGlyph*)glyphs : (size_t)length;
Availability: OpenStep

Paints the glyphs using the current font. (Quartz).

GSShowGlyphsWithAdvances: : : 

- (void) GSShowGlyphsWithAdvances: (const NSGlyph*)glyphs : (const NSSize*)advances : (size_t)length;
Availability: OpenStep

Paints the glyphs with the specified advances using the current font. (Quartz).

GSShowText: : 

- (void) GSShowText: (const char*)string : (size_t)length;
Availability: OpenStep

Paints text represented by the characters in string in the current font. (Quartz).

GSUndefineGState: 

- (void) GSUndefineGState: (NSInteger)gst;
Availability: OpenStep

Disassociates the tag gst with it's gstate and destroys the gstate object. The tag will no longer be valid and should not be used to refer to the gstate again. (DPS, Quartz).

GScomposite: toPoint: fromRect: operation: fraction: 

- (void) GScomposite: (NSInteger)gstateNum toPoint: (NSPoint)aPoint fromRect: (NSRect)srcRect operation: (NSCompositingOperation)op fraction: (CGFloat)delta;
Availability: OpenStep

Description forthcoming.

GSdraw: toPoint: fromRect: operation: fraction: 

- (void) GSdraw: (NSInteger)gstateNum toPoint: (NSPoint)aPoint fromRect: (NSRect)srcRect operation: (NSCompositingOperation)op fraction: (CGFloat)delta;
Availability: OpenStep

An empty method provided for subclasses to override.
Draws a gstate in a way that fully respects the destination transform, unlike the GSComposite operator which ignores the rotation and the scaling effect on the content. Note: For the GScomposite operator, the scaling and rotation affects the destination point but not the content.

appendBezierPathWithPackedGlyphs: path: 

- (void) appendBezierPathWithPackedGlyphs: (const char*)packedGlyphs path: (NSBezierPath*)aPath;
Availability: OpenStep

Description forthcoming.

supportsDrawGState 

- (BOOL) supportsDrawGState;
Availability: OpenStep

An empty method provided for subclasses to override.
Returns whether the backend supports a GSDraw operator. By default, returns NO.
When a GSContext backend subclass overrides this method to return YES, the backend must also implement -drawGState:fromRect:toPoint:op:fraction: in its GSState subclass. When YES is returned, -[NSImage drawXXX] methods that involves rotation, scaling etc. will delegate as much as possible the image drawing to the backend, rather than trying to emulate the resulting image in Gui by using intermediate images to rotate and scale the content, and then composite the result with -GScomposite:toPoint:fromRect:operation:fraction: . Backends which doesn't implement -compositeGState:fromRect:toPoint:op:fraction: can draw rotated or scaled images, but the semantic won't exactly match the NSImage documentation in non-trivial cases.

Software documentation for the NSGraphicsContext(Printing) category

NSGraphicsContext(Printing)

Declared in:
AppKit/NSGraphicsContext.h
Availability: OpenStep

Description forthcoming.
Method summary

beginPage: label: bBox: fonts: 

- (void) beginPage: (int)ordinalNum label: (NSString*)aString bBox: (NSRect)pageRect fonts: (NSString*)fontNames;
Availability: OpenStep

Description forthcoming.

beginPrologueBBox: creationDate: createdBy: fonts: forWhom: pages: title: 

- (void) beginPrologueBBox: (NSRect)boundingBox creationDate: (NSString*)dateCreated createdBy: (NSString*)anApplication fonts: (NSString*)fontNames forWhom: (NSString*)user pages: (int)numPages title: (NSString*)aTitle;
Availability: OpenStep

Description forthcoming.

beginSetup 

- (void) beginSetup;
Availability: OpenStep

Description forthcoming.

beginTrailer 

- (void) beginTrailer;
Availability: OpenStep

Description forthcoming.

endDocumentPages: documentFonts: 

- (void) endDocumentPages: (int)pages documentFonts: (NSSet*)fontNames;
Availability: OpenStep

Description forthcoming.

endHeaderComments 

- (void) endHeaderComments;
Availability: OpenStep

Description forthcoming.

endPageSetup 

- (void) endPageSetup;
Availability: OpenStep

Description forthcoming.

endPrologue 

- (void) endPrologue;
Availability: OpenStep

Description forthcoming.

endSetup 

- (void) endSetup;
Availability: OpenStep

Description forthcoming.

endSheet 

- (void) endSheet;
Availability: OpenStep

Description forthcoming.

endTrailer 

- (void) endTrailer;
Availability: OpenStep

Description forthcoming.

printerProlog 

- (void) printerProlog;
Availability: OpenStep

Description forthcoming.

showPage 

- (void) showPage;
Availability: OpenStep

Description forthcoming.


Up