PEXOCCSetLineColorIndex - Set Line Color Index (5.0)


Synopsis

 
   void PEXOCCSetLineColorIndex(
        PEXOCC context,
        unsigned int index
   )
 

 
   void PEXSetLineColorIndex(
        Display *display,
        XID resource_id,
        PEXOCRequestType req_type,
        unsigned int index
   )
 

Arguments

context
An OC context returned by a successful PEXCreateOCC call.

display (OCC)
A pointer to a display structure returned by a successful XOpenDisplay call.

resource_id (OCC)
The resource identifier of the renderer or structure.

req_type (OCC)
The request type for the output command (PEXOCRender, PEXOCStore, PEXOCRenderSingle or PEXOCStoreSingle).

index
The color table index for lines.

Returns

None.

Description

Invoke PEXOCCSetLineColorIndex to set the line color attribute to an indexed color in the renderer's pipeline state according to the value specified by index. The index selects an entry of the renderer's color table. You can alternately use the PEXOCCSetLineColor function which allows you to specify a color of any type.

By setting the line color index attribute's ASF to PEXIndividual (see PEXOCCSetIndividualASF), you use the pipeline state's line color entry to determine the color of line attributes. When you set the line color attribute's ASF to PEXBundled, the implementation uses the line color from the line bundle table.

If you specify an undefined index, then the index defaults to color index one. If color index one is not defined, then the color defaults to white. If you specify a color index which is greater than 65534, then the implementation issues a BadPEXOutputCommand error.

The line color index function is a member of the line attribute set.

Errors

BadPEXOutputCommand
The color index value exceeds 65534.

BadPEXRenderer
The specified renderer resource identifier is invalid.

BadPEXStructure
The specified structure resource identifier is invalid.

See Also

For an overview and for a list of output attribute functions, see Output Attribute Functions.