Package net.sf.paperclips
Class TextStyle
java.lang.Object
net.sf.paperclips.TextStyle
Defines a set of styles that can be applied to text. Instances of this class
are immutable.
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs a new TextStyle with default font (device-dependent), black foreground, transparent background, default alignment, and the strikeout and underline flags set to false. -
Method Summary
Modifier and TypeMethodDescriptionalign
(int alignment) Returns a copy of this TextStyle, with the alignment changed to the argument.background
(int rgb) Returns a copy of this TextStyle, with the background changed to the color described by the argument.background
(int red, int green, int blue) Returns a copy of this TextStyle, with the background changed to the color described by the arguments.background
(org.eclipse.swt.graphics.RGB background) Returns a copy of this TextStyle, with the background changed to the argument.Returns a TextPrint of the given text in this text styleboolean
Returns a copy of this TextStyle, with the font changed to the font described by the arguments.font
(org.eclipse.swt.graphics.FontData fontData) Returns a copy of this TextStyle, with the font changed to the argument.fontHeight
(int height) Returns a copy of this TextStyle, with the font height changed to the argument.Returns a copy of this TextStyle, with the font name changed to the argument.fontStyle
(int style) Returns a copy of this TextStyle, with the font style changed to the argument.foreground
(int rgb) Returns a copy of this TextStyle, with the foreground changed to the color described by the argument.foreground
(int red, int green, int blue) Returns a copy of this TextStyle, with the foreground changed to the color described by the arguments.foreground
(org.eclipse.swt.graphics.RGB foreground) Returns a copy of this TextStyle, with the foreground changed to the argument.int
Returns the text alignment.org.eclipse.swt.graphics.RGB
Returns the text background color.org.eclipse.swt.graphics.FontData
Returns the font applied to the text.org.eclipse.swt.graphics.RGB
Returns the text foreground color.boolean
Returns the strikeout flag.boolean
Returns the underline flag.int
hashCode()
Returns a copy of this TextStyle, with the strikeout flag set to true.strikeout
(boolean strikeout) Returns a copy of this TextStyle, with the strikeout flag set to the argument.Returns a copy of this TextStyle, with the underline flag set to true.underline
(boolean underline) Returns a copy of this TextStyle, with the underline flag set to the argument.
-
Constructor Details
-
TextStyle
public TextStyle()Constructs a new TextStyle with default font (device-dependent), black foreground, transparent background, default alignment, and the strikeout and underline flags set to false.
-
-
Method Details
-
hashCode
public int hashCode() -
equals
-
font
Returns a copy of this TextStyle, with the font changed to the font described by the arguments. This method is equivalent to calling font( new FontData( name, height, style ) ).- Parameters:
name
- the name of the font (must not be null)height
- the font height in pointsstyle
- a bit or combination of NORMAL, BOLD, ITALIC- Returns:
- a copy of this TextStyle, with the font changed to the font described by the arguments.
-
font
Returns a copy of this TextStyle, with the font changed to the argument.- Parameters:
fontData
- the new font. A null value causes the font to be inherited from the enclosing elements of the document.- Returns:
- a copy of this TextStyle, with the font changed to the argument.
-
fontName
Returns a copy of this TextStyle, with the font name changed to the argument.- Parameters:
name
- the new font name (must not be null)- Returns:
- a copy of this TextStyle, with the font name changed to the argument.
-
fontHeight
Returns a copy of this TextStyle, with the font height changed to the argument.- Parameters:
height
- the new font height in points- Returns:
- a copy of this TextStyle, with the font height changed to the argument.
-
fontStyle
Returns a copy of this TextStyle, with the font style changed to the argument.- Parameters:
style
- a bit or combination of NORMAL, BOLD, ITALIC- Returns:
- a copy of this TextStyle, with the font style changed to the argument.
-
foreground
Returns a copy of this TextStyle, with the foreground changed to the argument.- Parameters:
foreground
- the new foreground. A null value causes the foreground to be inherited from the enclosing elements of the document.- Returns:
- a copy of this TextStyle, with the foreground changed to the argument.
-
foreground
Returns a copy of this TextStyle, with the foreground changed to the color described by the arguments. This method is equivalent to calling foreground(new RGB(red, green, blue)).- Parameters:
red
- the red component of the new foreground colorgreen
- the green component of the new foreground colorblue
- the blue component of the new foreground color- Returns:
- a copy of this TextStyle, with the foreground changed to the color described by the arguments.
-
foreground
Returns a copy of this TextStyle, with the foreground changed to the color described by the argument.- Parameters:
rgb
- an integer containing the red, green and blue components in the 0xFF0000, 0x00FF00, and 0x0000FF positions, respectively.- Returns:
- a copy of this TextStyle, with the foreground changed to the color described by the argument.
-
background
Returns a copy of this TextStyle, with the background changed to the argument.- Parameters:
background
- the new background. A null value causes the text background to be transparent.- Returns:
- a copy of this TextStyle, with the background changed to the argument.
-
background
Returns a copy of this TextStyle, with the background changed to the color described by the arguments. This method is equivalent to calling background(new RGB(red, green, blue)- Parameters:
red
- the red component of the new background colorgreen
- the green component of the new background colorblue
- the blue component of the new background color- Returns:
- a copy of this TextStyle, with the background changed to the color described by the arguments.
-
background
Returns a copy of this TextStyle, with the background changed to the color described by the argument.- Parameters:
rgb
- an integer containing the red, green and blue components in the 0xFF0000, 0x00FF00, and 0x0000FF positions, respectively.- Returns:
- a copy of this TextStyle, with the background changed to the color described by the argument.
-
align
Returns a copy of this TextStyle, with the alignment changed to the argument.- Parameters:
alignment
- the new alignment. Must be one of SWT.LEFT, SWT.CENTER, or SWT.RIGHT. Invalid values will be changed to SWT.LEFT.- Returns:
- a copy of this TextStyle, with the alignment changed to the argument.
-
underline
Returns a copy of this TextStyle, with the underline flag set to true.- Returns:
- a copy of this TextStyle, with the underline flag set to true.
-
underline
Returns a copy of this TextStyle, with the underline flag set to the argument.- Parameters:
underline
- the new underline flag.- Returns:
- a copy of this TextStyle, with the underline flag set to the argument.
-
strikeout
Returns a copy of this TextStyle, with the strikeout flag set to true.- Returns:
- a copy of this TextStyle, with the strikeout flag set to true.
-
strikeout
Returns a copy of this TextStyle, with the strikeout flag set to the argument.- Parameters:
strikeout
- the new strikeout flag.- Returns:
- a copy of this TextStyle, with the strikeout flag set to the argument.
-
getFontData
public org.eclipse.swt.graphics.FontData getFontData()Returns the font applied to the text.- Returns:
- the font applied to the text.
-
getForeground
public org.eclipse.swt.graphics.RGB getForeground()Returns the text foreground color. A null value indicates that the foreground color will be inherited from the enclosing elements of the document.- Returns:
- the text foreground color.
-
getBackground
public org.eclipse.swt.graphics.RGB getBackground()Returns the text background color. A null value indicates that the background will be transparent.- Returns:
- the text background color. A null value indicates that the background will be transparent.
-
getAlignment
public int getAlignment()Returns the text alignment. Possible values include SWT.LEFT, SWT.CENTER, or SWT.RIGHT.- Returns:
- the text alignment.
-
getUnderline
public boolean getUnderline()Returns the underline flag.- Returns:
- the underline flag.
-
getStrikeout
public boolean getStrikeout()Returns the strikeout flag.- Returns:
- the strikeout flag.
-
create
Returns a TextPrint of the given text in this text style- Parameters:
text
- the text- Returns:
- a TextPrint of the given text in this text style
-