All Packages Class Hierarchy This Package Previous Next Index
Class graph.TextLine
java.lang.Object
|
+----graph.TextLine
- public class TextLine
- extends Object
This class is designed to bundle together all the information required
to draw short Strings with subscripts and superscripts
- Version:
- $Revision: 1.10 $, $Date: 1996/09/05 04:53:27 $
- Author:
- Leigh Brookshaw, revised MCC
-
ALGEBRAIC
- Format to use when parsing a double
-
ascent
- The ascent using the current font
-
background
- Background Color
-
CENTER
- Center the Text over the point
-
color
- Text color
-
descent
- The descent using the current font
-
font
- Font to use for text
-
fontname
- The logical name of the font to use
-
fontsize
- The font size
-
fontstyle
- The font style
-
height
- The height using the current font ie ascent+descent+leading
-
justification
- Text justification.
-
leading
- The leading using the current font
-
LEFT
- Position the Text to the Left of the point
-
lg
- Local graphics context.
-
list
- The parsed string.
-
maxAscent
- The maximum ascent using the current font
-
maxDescent
- The maximum descent using the current font
-
MINIMUM_SIZE
-
-
parse
- Has the string been parsed! This only needs to be done once
unless the font is altered.
-
RIGHT
- Position the Text to the Right of the point
-
SCIENTIFIC
- Format to use when parsing a double
-
script_fraction
- Decrease in size of successive script levels
-
sub_offset
- Subscript offset
-
sup_offset
- Superscript offset
-
text
- The text to display
-
width
- The width of the text using the current Font
-
TextLine()
- Instantiate the class
-
TextLine(Font, Color, int)
- Instantiate the class
-
TextLine(String)
- Instantiate the class.
-
TextLine(String, Color)
- Instantiate the class
-
TextLine(String, Font)
- Instantiate the class
-
TextLine(String, Font, Color, int)
- Instantiate the class
-
charWidth(Graphics, char)
-
-
copyState()
- Create a New Textline object copying the state of the existing
object into the new one.
-
copyState(TextLine)
- Copy the state of the parsed Textline into the existing
object.
-
draw(Graphics, int, int)
- Parse the text then draw it without any rotation.
-
draw(Graphics, int, int, int)
- Parse the text then draw it.
-
getAscent(Graphics)
-
-
getBackground()
-
-
getColor()
-
-
getDescent(Graphics)
-
-
getFM(Graphics)
-
-
getFont()
-
-
getFontName()
-
-
getFontSize()
-
-
getFontStyle()
-
-
getHeight(Graphics)
-
-
getJustification()
-
-
getLeading(Graphics)
-
-
getMaxAscent(Graphics)
-
-
getMaxDescent(Graphics)
-
-
getScriptFont(Font)
-
-
getText()
-
-
getWidth(Graphics)
-
-
isNull()
-
-
parseDouble(double)
- Parse a double value.
-
parseDouble(double, int)
- Parse a double value.
-
parseDouble(double, int, int, int)
- Parse a double value
-
parseText(Graphics)
- parse the text.
-
setBackground(Color)
- Set the Background Color to use with the class
-
setColor(Color)
- Set the Color to use with the class
-
setFont(Font)
- Set the Font to use with the class
-
setFontName(String)
- Set the Logical font name of the current font
-
setFontSize(int)
- Set the Font size of the current font
-
setFontStyle(int)
- Set the Font style of the current font
-
setJustification(int)
- Set the Justification to use with the class
-
setText(String)
- Set the String to use with the class
CENTER
public static final int CENTER
- Center the Text over the point
LEFT
public static final int LEFT
- Position the Text to the Left of the point
RIGHT
public static final int RIGHT
- Position the Text to the Right of the point
SCIENTIFIC
public static final int SCIENTIFIC
- Format to use when parsing a double
ALGEBRAIC
public static final int ALGEBRAIC
- Format to use when parsing a double
MINIMUM_SIZE
static final int MINIMUM_SIZE
script_fraction
protected double script_fraction
- Decrease in size of successive script levels
sup_offset
protected double sup_offset
- Superscript offset
sub_offset
protected double sub_offset
- Subscript offset
font
protected Font font
- Font to use for text
color
protected Color color
- Text color
background
protected Color background
- Background Color
text
protected String text
- The text to display
fontname
protected String fontname
- The logical name of the font to use
fontsize
protected int fontsize
- The font size
fontstyle
protected int fontstyle
- The font style
justification
protected int justification
- Text justification. Either CENTER, LEFT or RIGHT
width
protected int width
- The width of the text using the current Font
ascent
protected int ascent
- The ascent using the current font
maxAscent
protected int maxAscent
- The maximum ascent using the current font
descent
protected int descent
- The descent using the current font
maxDescent
protected int maxDescent
- The maximum descent using the current font
height
protected int height
- The height using the current font ie ascent+descent+leading
leading
protected int leading
- The leading using the current font
parse
protected boolean parse
- Has the string been parsed! This only needs to be done once
unless the font is altered.
lg
protected Graphics lg
- Local graphics context.
list
protected Vector list
- The parsed string. Each element in the vector represents
a change of context in the string ie font change and offset.
TextLine
public TextLine()
- Instantiate the class
TextLine
public TextLine(String s)
- Instantiate the class.
- Parameters:
- s - String to parse.
TextLine
public TextLine(String s,
Font f)
- Instantiate the class
- Parameters:
- s - String to parse.
- f - Font to use.
TextLine
public TextLine(String s,
Font f,
Color c,
int j)
- Instantiate the class
- Parameters:
- s - String to parse.
- f - Font to use.
- c - Color to use
- j - Justification
TextLine
public TextLine(String s,
Color c)
- Instantiate the class
- Parameters:
- s - String to parse.
- c - Color to use
TextLine
public TextLine(Font f,
Color c,
int j)
- Instantiate the class
- Parameters:
- f - Font to use.
- c - Color to use
- j - Justification
copyState
public TextLine copyState()
- Create a New Textline object copying the state of the existing
object into the new one. The state of the class is the color,
font, and justification ie everything but the string.
copyState
public void copyState(TextLine t)
- Copy the state of the parsed Textline into the existing
object.
- Parameters:
- t - The TextLine to get the state information from.
setFont
public void setFont(Font f)
- Set the Font to use with the class
- Parameters:
- f - Font
setText
public void setText(String s)
- Set the String to use with the class
- Parameters:
- s - String
setColor
public void setColor(Color c)
- Set the Color to use with the class
- Parameters:
- c - Color
setBackground
public void setBackground(Color c)
- Set the Background Color to use with the class
- Parameters:
- c - Color
setJustification
public void setJustification(int i)
- Set the Justification to use with the class
- Parameters:
- t - Justification
getFont
public Font getFont()
- Returns:
- the font the class is using
getText
public String getText()
- Returns:
- the String the class is using.
getColor
public Color getColor()
- Returns:
- the Color the class is using.
getBackground
public Color getBackground()
- Returns:
- the Background Color the class is using.
getJustification
public int getJustification()
- Returns:
- the Justification the class is using.
getFM
public FontMetrics getFM(Graphics g)
- Parameters:
- g - Graphics context.
- Returns:
- the Fontmetrics the class is using.
charWidth
public int charWidth(Graphics g,
char ch)
- Parameters:
- g - Graphics context.
- ch - The character.
- Returns:
- the width of the character.
getWidth
public int getWidth(Graphics g)
- Parameters:
- g - Graphics context.
- Returns:
- the width of the parsed text.
getHeight
public int getHeight(Graphics g)
- Parameters:
- g - Graphics context.
- Returns:
- the height of the parsed text.
getAscent
public int getAscent(Graphics g)
- Parameters:
- g - Graphics context.
- Returns:
- the ascent of the parsed text.
getMaxAscent
public int getMaxAscent(Graphics g)
- Parameters:
- g - Graphics context.
- Returns:
- the maximum ascent of the parsed text.
getDescent
public int getDescent(Graphics g)
- Parameters:
- g - Graphics context.
- Returns:
- the descent of the parsed text.
getMaxDescent
public int getMaxDescent(Graphics g)
- Parameters:
- g - Graphics context.
- Returns:
- the maximum descent of the parsed text.
getLeading
public int getLeading(Graphics g)
- Parameters:
- g - Graphics context.
- Returns:
- the leading of the parsed text.
parseText
public void parseText(Graphics g)
- parse the text. When the text is parsed the width, height, leading
are all calculated. The text will only be truly parsed if
the graphics context has changed or the text has changed or
the font has changed. Otherwise nothing is done when this
method is called.
- Parameters:
- g - Graphics context.
isNull
public boolean isNull()
- Returns:
- true if the text has never been set or is null
draw
public void draw(Graphics g,
int x,
int y,
int j)
- Parse the text then draw it.
- Parameters:
- g - Graphics context
- x - pixel position of the text
- y - pixel position of the text
- j - justification of the text
draw
public void draw(Graphics g,
int x,
int y)
- Parse the text then draw it without any rotation.
- Parameters:
- g - Graphics context
- x - pixel position of the text
- y - pixel position of the text
getFontName
public String getFontName()
- Returns:
- Logical font name of the set font
getFontStyle
public int getFontStyle()
- Returns:
- Style of the set font
getFontSize
public int getFontSize()
- Returns:
- Size of the set font
setFontName
public void setFontName(String s)
- Set the Logical font name of the current font
- Parameters:
- s - Logical font name.
setFontStyle
public void setFontStyle(int i)
- Set the Font style of the current font
- Parameters:
- i - Font style.
setFontSize
public void setFontSize(int i)
- Set the Font size of the current font
- Parameters:
- i - Font size.
getScriptFont
public Font getScriptFont(Font f)
- Parameters:
- f - Font
- Returns:
- The script font version of the parsed font using the
script_fraction variable.
parseDouble
public boolean parseDouble(double d)
- Parse a double value. Precision is 6 figures, with 7 significant
figures.
- Parameters:
- d - double to parse
return true if the parse was successful
parseDouble
public boolean parseDouble(double d,
int p)
- Parse a double value. Number of significant figures is 1 greater than
the precision.
- Parameters:
- d - double to parse
- p - precision of the number
return true if the parse was successful
parseDouble
public boolean parseDouble(double d,
int n,
int p,
int f)
- Parse a double value
- Parameters:
- d - double to parse
- n - number of significant figures
- p - precision of the number
- f - format of the number scientific, algebraic etc.
return true if the parse was successful
All Packages Class Hierarchy This Package Previous Next Index