|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object javax.swing.plaf.basic.BasicHTML
Support for providing html views for the swing components. This translates a simple html string to a javax.swing.text.View implementation that can render the html and provide the necessary layout semantics.
Nested Class Summary | |
(package private) static class |
BasicHTML.BasicDocument
The subclass of HTMLDocument that is used as the model. getForeground is overridden to return the foreground property from the Component this was created for. |
(package private) static class |
BasicHTML.BasicEditorKit
The views produced for the ComponentUI implementations aren't going to be edited and don't need full html support. |
(package private) static class |
BasicHTML.BasicHTMLViewFactory
BasicHTMLViewFactory extends HTMLFactory to force images to be loaded synchronously. |
(package private) static class |
BasicHTML.Renderer
Root text view that acts as an HTML renderer. |
Field Summary | |
private static BasicHTML.BasicEditorKit |
basicHTMLFactory
The source of the html renderers |
private static ViewFactory |
basicHTMLViewFactory
Creates the Views that visually represent the model. |
static String |
documentBaseKey
Key stored as a client property to indicate the base that relative references are resolved against. |
static String |
propertyKey
Key to use for the html renderer when stored as a client property of a JComponent. |
private static String |
styleChanges
Overrides to the default stylesheet. |
Constructor Summary | |
BasicHTML()
|
Method Summary | |
static View |
createHTMLView(JComponent c,
String html)
Create an html renderer for the given component and string of html. |
(package private) static BasicHTML.BasicEditorKit |
getFactory()
|
static boolean |
isHTMLString(String s)
Check the given string to see if it should trigger the html rendering logic in a non-text component that supports html rendering. |
static void |
updateRenderer(JComponent c,
String text)
Stash the HTML render for the given text into the client properties of the given JComponent. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
public static final String propertyKey
public static final String documentBaseKey
jComponent.putClientProperty(documentBaseKey, xxx.class.getResource("resources/"));
private static BasicHTML.BasicEditorKit basicHTMLFactory
private static ViewFactory basicHTMLViewFactory
private static final String styleChanges
Constructor Detail |
public BasicHTML()
Method Detail |
public static View createHTMLView(JComponent c, String html)
public static boolean isHTMLString(String s)
public static void updateRenderer(JComponent c, String text)
This method is useful for ComponentUI implementations that are static (i.e. shared) and get their state entirely from the JComponent.
static BasicHTML.BasicEditorKit getFactory()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |