com.google.gwt.user.client.ui
Interface RichTextArea.BasicFormatter

All Known Subinterfaces:
RichTextArea.ExtendedFormatter
Enclosing interface:
RichTextArea

public static interface RichTextArea.BasicFormatter

This interface is used to access basic formatting options, when available. If the implementation supports basic formatting, then RichTextArea.getBasicFormatter() will return an instance of this class.


Method Summary
 java.lang.String getBackColor()
          Gets the background color.
 java.lang.String getForeColor()
          Gets the foreground color.
 boolean isBold()
          Is the current region bold?
 boolean isItalic()
          Is the current region italic?
 boolean isSubscript()
          Is the current region subscript?
 boolean isSuperscript()
          Is the current region superscript?
 boolean isUnderlined()
          Is the current region underlined?
 void selectAll()
          Selects all the text.
 void setBackColor(java.lang.String color)
          Sets the background color.
 void setFontName(java.lang.String name)
          Sets the font name.
 void setFontSize(RichTextArea.FontSize fontSize)
          Sets the font size.
 void setForeColor(java.lang.String color)
          Sets the foreground color.
 void setJustification(RichTextArea.Justification justification)
          Sets the justification.
 void toggleBold()
          Toggles bold.
 void toggleItalic()
          Toggles italic.
 void toggleSubscript()
          Toggles subscript.
 void toggleSuperscript()
          Toggles superscript.
 void toggleUnderline()
          Toggles underline.
 

Method Detail

getBackColor

public java.lang.String getBackColor()
Gets the background color.

Returns:
the background color

getForeColor

public java.lang.String getForeColor()
Gets the foreground color.

Returns:
the foreground color

isBold

public boolean isBold()
Is the current region bold?

Returns:
true if the current region is bold

isItalic

public boolean isItalic()
Is the current region italic?

Returns:
true if the current region is italic

isSubscript

public boolean isSubscript()
Is the current region subscript?

Returns:
true if the current region is subscript

isSuperscript

public boolean isSuperscript()
Is the current region superscript?

Returns:
true if the current region is superscript

isUnderlined

public boolean isUnderlined()
Is the current region underlined?

Returns:
true if the current region is underlined

selectAll

public void selectAll()
Selects all the text.


setBackColor

public void setBackColor(java.lang.String color)
Sets the background color.

Parameters:
color - the new background color

setFontName

public void setFontName(java.lang.String name)
Sets the font name.

Parameters:
name - the new font name

setFontSize

public void setFontSize(RichTextArea.FontSize fontSize)
Sets the font size.

Parameters:
fontSize - the new font size

setForeColor

public void setForeColor(java.lang.String color)
Sets the foreground color.

Parameters:
color - the new foreground color

setJustification

public void setJustification(RichTextArea.Justification justification)
Sets the justification.

Parameters:
justification - the new justification

toggleBold

public void toggleBold()
Toggles bold.


toggleItalic

public void toggleItalic()
Toggles italic.


toggleSubscript

public void toggleSubscript()
Toggles subscript.


toggleSuperscript

public void toggleSuperscript()
Toggles superscript.


toggleUnderline

public void toggleUnderline()
Toggles underline.