Class BasicHTML
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.
- Since:
- 1.3
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic ViewcreateHTMLView(JComponent c, String html) Create an html renderer for the given component and string of html.static intgetHTMLBaseline(View view, int w, int h) Returns the baseline for the html renderer.static booleanCheck the given string to see if it should trigger the html rendering logic in a non-text component that supports html rendering.static voidupdateRenderer(JComponent c, String text) Stash the HTML render for the given text into the client properties of the given JComponent.Methods declared in class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitModifier and TypeMethodDescriptionprotected Objectclone()Creates and returns a copy of this object.booleanIndicates whether some other object is "equal to" this one.protected voidfinalize()Deprecated, for removal: This API element is subject to removal in a future version.Finalization is deprecated and subject to removal in a future release.final Class<?> getClass()Returns the runtime class of thisObject.inthashCode()Returns a hash code value for this object.final voidnotify()Wakes up a single thread that is waiting on this object's monitor.final voidWakes up all threads that are waiting on this object's monitor.toString()Returns a string representation of the object.final voidwait()Causes the current thread to wait until it is awakened, typically by being notified or interrupted.final voidwait(long timeoutMillis) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.final voidwait(long timeoutMillis, int nanos) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.
-
Field Details
-
propertyKey
Key to use for the html renderer when stored as a client property of a JComponent.- See Also:
-
documentBaseKey
Key stored as a client property to indicate the base that relative references are resolved against. For example, lets say you keep your images in the directory resources relative to the code path, you would use the following the set the base:jComponent.putClientProperty(documentBaseKey, xxx.class.getResource("resources/"));- See Also:
-
-
Constructor Details
-
BasicHTML
public BasicHTML()Constructs aBasicHTML.
-
-
Method Details
-
createHTMLView
Create an html renderer for the given component and string of html.- Parameters:
c- a componenthtml- an HTML string- Returns:
- an HTML renderer
-
getHTMLBaseline
Returns the baseline for the html renderer.- Parameters:
view- the View to get the baseline forw- the width to get the baseline forh- the height to get the baseline for- Returns:
- baseline or a value < 0 indicating there is no reasonable baseline
- Throws:
IllegalArgumentException- if width or height is < 0- Since:
- 1.6
- See Also:
-
isHTMLString
Check the given string to see if it should trigger the html rendering logic in a non-text component that supports html rendering.- Parameters:
s- a text- Returns:
trueif the given string should trigger the html rendering logic in a non-text component
-
updateRenderer
Stash the HTML render for the given text into the client properties of the given JComponent. If the given text is NOT HTML the property will be cleared of any renderer.This method is useful for ComponentUI implementations that are static (i.e. shared) and get their state entirely from the JComponent.
- Parameters:
c- a componenttext- a text
-