-- File: PlotMgt_TextManager.cdl -- Created: DEC-98 -- Author: DCB ---Copyright: Matra Datavision 1993 private class TextManager from PlotMgt inherits TextManager from MFT uses Length from Quantity, PlaneAngle from Quantity, TypeOfText from Aspect, PlotterDriver from PlotMgt, PlotterDriverPtr from PlotMgt is ------------------------- -- Category: Constructors ------------------------- Create (aDriver : PlotterDriver from PlotMgt) returns mutable TextManager from PlotMgt; ------------------------- -- Category: Draw methods ------------------------- BeginString (me: mutable; X,Y: Length from Quantity; anOrientation: PlaneAngle from Quantity; aWidth,aHeight: Length from Quantity; aSlant: PlaneAngle from Quantity; aPaintType: Integer from Standard) is redefined; ---Purpose: Calls when string drawing is started. -- with a string aspect : -- 0 for filled string -- 1 for stroke string -- 2 for outline string -- The origine of the string ,, -- The orientation of the string , -- The medium size of the char , -- The Slant of the char , BeginChar (me: mutable; aCharCode: Integer from Standard; X,Y: Length from Quantity) returns Boolean from Standard is redefined; ---Purpose: Calls when a char drawing is started -- and give the current string position for this char. -- and give the relative char position from the beginning -- of the string. --The application can returns FALSE for skipping the char drawing. SetCharBoundingBox (me: mutable; X1,Y1,X2,Y2,X3,Y3,X4,Y4: Length from Quantity) returns Boolean from Standard is redefined; ---Purpose: Calls to defines the current char bounding-box. -- The application can returns FALSE for ending the char drawing. SetCharEncoding (me: mutable; anEncoding: CString from Standard) returns Boolean from Standard is redefined; ---Purpose: Calls to defines the current char encoding. -- Warning: The application can returns FALSE for skipping the char drawing. Moveto (me: mutable; X,Y: Length from Quantity) returns Boolean from Standard is redefined; ---Purpose: Calls to sets the current string position. -- The application can returns FALSE for ending the char drawing. Lineto (me: mutable; X,Y: Length from Quantity) returns Boolean from Standard is redefined; ---Purpose: Calls to drawn to the current string position. -- The application can returns FALSE for ending the char drawing. Curveto (me: mutable; X1,Y1,X2,Y2,X3,Y3,X4,Y4: Length from Quantity) returns Boolean from Standard is redefined; ---Purpose: Calls to drawn to the current string position. -- The application can drawn the curve defined by -- his descriptor P1,P2,P3,P4 or -- returns FALSE to let the interpretor compute the curve -- vectors. ClosePath (me: mutable) is redefined; ---Purpose: Calls when a char path drawing is ended EndChar (me: mutable; X,Y: Length from Quantity) returns Boolean from Standard is redefined; ---Purpose: Calls when a char drawing is ended -- and give the relative char ending position from the -- beginning of the string. -- The application can returns FALSE for skipping the string -- drawing. EndString (me: mutable ) is redefined; ---Purpose: Calls when string drawing is ended (Normally the last call). -- Category: Private methods ------------------------- SetTextAttribs (me: mutable; aTextColor: Integer from Standard; aTypeOfText: TypeOfText from Aspect; anUnderlinePosition: Length from Quantity = 0.0) is private; ---Purpose: Sets the current attribs of the text. fields myDriver : PlotterDriverPtr from PlotMgt; friends class PlotterDriver from PlotMgt end TextManager from PlotMgt;