Library | Package Java Toolkit

Interface Display

package com.ptc.pfc.pfcDisplay;

public interface Display
  extends com.ptc.pfc.pfcObject.Parent



Description

This interface represents the current session display. Because it is extended by Session the methods and attributes can be accessed using that object. This interface contains methods to display graphics on the screen.

To maintain displayed graphics even after a window repaint create an instance of DisplayList2D or DisplayList3D and place the graphics calls in the display list's DisplayListener.OnDisplay(Display) method.
Direct Known Subclasses:
BaseSession, WDisplay



Method Summary
DisplayList2DCreateDisplayList2D (int Id, ScreenTransform Transform, DisplayListener Action)
    Creates a two-dimensional display list
DisplayList3DCreateDisplayList3D (int Id, DisplayListener Action)
    Creates a three-dimensional display list entity
voidDrawArc2D (Point3D Center, double Radius, Vector3D StartDirection, Vector3D EndDirection)
    Draws an arc on the screen
voidDrawCircle (Point3D Center, double Radius)
    Draws a circle on the screen
voidDrawLine (Point3D Endpoint)
    Draws a line on the screen from the last pen position specified to the position specified by the Endpoint argument. The last pen position is specified using this same function previously times or by Display.SetPenPosition(Point3D)
voidDrawPolygon2D (Point2Ds Vertices, /*optional*/ StdColor FillColor)
    Draws two-dimensional polygon on the screen.
voidDrawPolyline (Point3Ds Points)
    Draws a series of connected line segments on the screen.
voidDrawText2D (Point3D StartPoint, String TextLine)
    Draws text on the screen
FontGetCurrentFont ()
    Get method for attribute "CurrentFont"
    The current font used for text graphics in Creo Parametric.
StdColorGetCurrentGraphicsColor ()
    Get method for attribute "CurrentGraphicsColor"
    The standard color used to display new graphics.
GraphicsModeGetCurrentGraphicsMode ()
    Get method for attribute "CurrentGraphicsMode"
    The mode used to display graphics (i.e. normal or complement).
FontGetDefaultFont ()
    Get method for attribute "DefaultFont"
    The default font for this session of Creo Parametric.
/*optional*/ FontGetFontById (int Id)
    Creates a font object given a Creo Parametric font integer id.
/*optional*/ FontGetFontByName (String Name)
    Returns a font object given a Creo Parametric font name.
doubleGetRotationAngle ()
    Get method for attribute "RotationAngle"
    The rotation angle of created text graphics (default is 0).
doubleGetSlantAngle ()
    Get method for attribute "SlantAngle"
    The slant angle of created text graphics (default is 0).
doubleGetTextHeight ()
    Get method for attribute "TextHeight"
    The text height of created text graphics.
doubleGetWidthFactor ()
    Get method for attribute "WidthFactor"
    The width-to-height ratio for created text graphics.
voidInvalidate (Model Model)
    Invalidates the display list of the model singalling that a repaint is needed.
voidResetTextAttributes ()
    Resets the Creo Parametric text attributes to use the default settings
voidSetCurrentFont (Font value)
    Set method for attribute "CurrentFont"
    The current font used for text graphics in Creo Parametric.
voidSetCurrentGraphicsColor (StdColor value)
    Set method for attribute "CurrentGraphicsColor"
    The standard color used to display new graphics.
voidSetCurrentGraphicsMode (GraphicsMode value)
    Set method for attribute "CurrentGraphicsMode"
    The mode used to display graphics (i.e. normal or complement).
voidSetPenPosition (Point3D NewPosition)
    This method enables you to move to a point without producing any graphical output. This method is used when drawing lines using Display.DrawLine(Point3D)
voidSetRotationAngle (double value)
    Set method for attribute "RotationAngle"
    The rotation angle of created text graphics (default is 0).
voidSetSlantAngle (double value)
    Set method for attribute "SlantAngle"
    The slant angle of created text graphics (default is 0).
voidSetTextHeight (double value)
    Set method for attribute "TextHeight"
    The text height of created text graphics.
voidSetWidthFactor (double value)
    Set method for attribute "WidthFactor"
    The width-to-height ratio for created text graphics.

Methods Inherited from Interface com.ptc.pfc.pfcObject.Parent
GetChild

Method Detail

CreateDisplayList2D

DisplayList2DCreateDisplayList2D (int Id, ScreenTransform Transform, DisplayListener Action)


    Creates a two-dimensional display list

Two dimensional display list operations in Creo Parametric are not currently supported. This method is reserved for future activation.
Manual References:
Graphics: Display Lists and Graphics, Graphics: Display Lists and Graphics
Parameters:
Id
 
Transform
The transformation matrix to be applied to the entities of the display list.
Action
The user-defined DisplayListener that calls Display methods to populate the display.
Returns:
The newly created DisplayList2D class instance


Invalidate

voidInvalidate (Model Model)


    Invalidates the display list of the model singalling that a repaint is needed.

Exceptions thrown (but not limited to):

XToolkitInvalidType - The specified model is not a part, assembly, or drawing.

XToolkitNotExist - The function cannot find the window associated with the object.


Parameters:
Model
The part, assembly or drawing
Returns:


DrawArc2D

voidDrawArc2D (Point3D Center, double Radius, Vector3D StartDirection, Vector3D EndDirection)


    Draws an arc on the screen

All points are in logical screen cordinates
Manual References:
Graphics: Displaying Graphics, Graphics: Displaying Graphics
Parameters:
Center
The center point of the arc
Radius
The radius of the arc
StartDirection
Vector representing the start direction of the arc
EndDirection
Vector representing the end direction of the arc
Returns:


DrawPolygon2D

voidDrawPolygon2D (Point2Ds Vertices, /*optional*/ StdColor FillColor)


    Draws two-dimensional polygon on the screen.

Exceptions thrown (but not limited to):

XToolkitLineTooLong - You specified more than 100 points.


Manual References:
Graphics: Displaying Graphics
Parameters:
Vertices
A sequence of two dimensional points representing the polygon's vertices.
FillColor
The color of the polygon. If null, the polygon will be filled using the current graphics color.
Returns:


DrawText2D

voidDrawText2D (Point3D StartPoint, String TextLine)


    Draws text on the screen

If no text attributes are set before this method call the program uses the default text attributes for Creo Parametric. Set the text attributes using the attributes on the Display object.

Exceptions thrown (but not limited to):

XToolkitNotFound - The font specified in a previous call to ProtText*CurrentSet() was not found.


Manual References:
Graphics: Displaying Text in the Graphics Window, Graphics: Displaying Text in the Graphics Window
Parameters:
StartPoint
The starting point for text display, in logical screen coordinates
TextLine
The text to display
Returns:


CreateDisplayList3D

DisplayList3DCreateDisplayList3D (int Id, DisplayListener Action)


    Creates a three-dimensional display list entity
Manual References:
Graphics: Display Lists and Graphics, Graphics: Display Lists and Graphics
Parameters:
Id
The identifier of the display list. This number must be unique.
Action
The user-defined DisplayListener that calls Display methods to create the display list.
Returns:
The newly-created DisplayList3D class instance


DrawCircle

voidDrawCircle (Point3D Center, double Radius)


    Draws a circle on the screen

Center point and orientation is in the coordinate system of the current object. For example, if the current object is a part, the point must be in the part's coordinate system. If the current object is an assembly, the point must be in the assembly's coordinate system. If the current object is a two dimensional model, circle will be normal to the screen.
Manual References:
Graphics: Displaying Graphics, Graphics: Displaying Graphics
Parameters:
Center
The center of the circle
Radius
The radius of the circle
Returns:


DrawLine

voidDrawLine (Point3D Endpoint)


    Draws a line on the screen from the last pen position specified to the position specified by the Endpoint argument. The last pen position is specified using this same function previously times or by Display.SetPenPosition(Point3D)

These points are in the coordinate system of the current object. For example, if the current object is a part, the points must be in the part's coordinate system. If the current object is an assembly, the points must be in the assembly's coordinate system.
Manual References:
Graphics: Displaying Graphics, Graphics: Displaying Graphics
Parameters:
Endpoint
 
Returns:


SetPenPosition

voidSetPenPosition (Point3D NewPosition)


    This method enables you to move to a point without producing any graphical output. This method is used when drawing lines using Display.DrawLine(Point3D)

This point is in the coordinate system of the current object. For example, if the current object is a part, the point must be in the part's coordinate system. If the current object is an assembly, the point must be in the assembly's coordinate system.
Manual References:
Graphics: Displaying Graphics, Graphics: Displaying Graphics
Parameters:
NewPosition
 
Returns:


DrawPolyline

voidDrawPolyline (Point3Ds Points)


    Draws a series of connected line segments on the screen.

These points are in the coordinate system of the current object. For example, if the current object is a part, the points must be in the part's coordinate system. If the current object is an assembly, the points must be in the assembly's coordinate system. The total number of points should be less than 200.
Manual References:
Graphics: Displaying Graphics, Graphics: Displaying Graphics
Parameters:
Points
 
Returns:


GetDefaultFont

FontGetDefaultFont ()


    The default font for this session of Creo Parametric.

Exceptions thrown (but not limited to):

XToolkitNotFound - The function could not find a font name for the specified font identifier.


Manual References:
Graphics: Controlling Text Fonts, Graphics: Controlling Text Fonts



GetCurrentFont/SetCurrentFont

FontGetCurrentFont ()
voidSetCurrentFont (Font value)


    The current font used for text graphics in Creo Parametric.

Exceptions thrown (but not limited to):

XToolkitNotFound - This means either:

  • The attributes were not set, OR
  • The function could not find a font name for the specified font identifier.


Manual References:
Graphics: Controlling Text Fonts, Graphics: Controlling Text Fonts, Graphics: Exceptions



GetFontById

/*optional*/ FontGetFontById (int Id)


    Creates a font object given a Creo Parametric font integer id.

The correspondance between font names and integer identifiers stays constant for a given Creo Parametric session, but may be different for different sessions.

Exceptions thrown (but not limited to):

XToolkitNotFound - The function could not find a font name for the specified font identifier.


Manual References:
Graphics: Controlling Text Fonts, Graphics: Controlling Text Fonts
Parameters:
Id
The Creo Parametric integer id of the font.
Returns:
The font object to be used to control the font of text graphics.


GetFontByName

/*optional*/ FontGetFontByName (String Name)


    Returns a font object given a Creo Parametric font name.

The correspondance between font names and integer identifiers stays constant for a given Creo Parametric session, but may be different for different sessions.

Exceptions thrown (but not limited to):

XToolkitNotFound - The function could not find a font identifier for the specified font name.


Manual References:
Graphics: Controlling Text Fonts
Parameters:
Name
The font name
Returns:
The font object to be used to control the font of text graphics


GetTextHeight/SetTextHeight

doubleGetTextHeight ()
voidSetTextHeight (double value)


    The text height of created text graphics.

Exceptions thrown (but not limited to):

XToolkitNotFound - The attributes were not set.


Manual References:
Graphics: Displaying Text in the Graphics Window, Graphics: Displaying Text in the Graphics Window



GetRotationAngle/SetRotationAngle

doubleGetRotationAngle ()
voidSetRotationAngle (double value)


    The rotation angle of created text graphics (default is 0).

Exceptions thrown (but not limited to):

XToolkitNotFound - The attributes were not set.


Manual References:
Graphics: Displaying Text in the Graphics Window, Graphics: Displaying Text in the Graphics Window



GetSlantAngle/SetSlantAngle

doubleGetSlantAngle ()
voidSetSlantAngle (double value)


    The slant angle of created text graphics (default is 0).

Exceptions thrown (but not limited to):

XToolkitNotFound - The attributes were not set.


Manual References:
Graphics: Displaying Text in the Graphics Window, Graphics: Displaying Text in the Graphics Window



GetWidthFactor/SetWidthFactor

doubleGetWidthFactor ()
voidSetWidthFactor (double value)


    The width-to-height ratio for created text graphics.

Exceptions thrown (but not limited to):

XToolkitNotFound - The attributes were not set.


Manual References:
Graphics: Displaying Text in the Graphics Window, Graphics: Displaying Text in the Graphics Window



ResetTextAttributes

voidResetTextAttributes ()


    Resets the Creo Parametric text attributes to use the default settings
Returns:


GetCurrentGraphicsMode/SetCurrentGraphicsMode

GraphicsModeGetCurrentGraphicsMode ()
voidSetCurrentGraphicsMode (GraphicsMode value)


    The mode used to display graphics (i.e. normal or complement).
Manual References:
Graphics: Controlling Graphics Display, Graphics: Controlling Graphics Display, Graphics: Controlling Graphics Display



GetCurrentGraphicsColor/SetCurrentGraphicsColor

StdColorGetCurrentGraphicsColor ()
voidSetCurrentGraphicsColor (StdColor value)


    The standard color used to display new graphics.

Exceptions thrown (but not limited to):

XToolkitNoChange - The current color is the same as the new color.


Manual References:
Graphics: Controlling Graphics Display, Graphics: Controlling Graphics Display, Graphics: Controlling Graphics Display, Graphics: Controlling Graphics Display