Liking cljdoc? Tell your friends :D

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.

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.
raw docstring

*-document-base-keyclj

Static Constant.

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/"));

type: java.lang.String

Static Constant.

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/"));

type: java.lang.String
raw docstring

*-property-keyclj

Static Constant.

Key to use for the html renderer when stored as a client property of a JComponent.

type: java.lang.String

Static Constant.

Key to use for the html renderer when stored as a
 client property of a JComponent.

type: java.lang.String
raw docstring

*create-html-viewclj

(*create-html-view c html)

Create an html renderer for the given component and string of html.

c - javax.swing.JComponent html - java.lang.String

returns: javax.swing.text.View

Create an html renderer for the given component and
 string of html.

c - `javax.swing.JComponent`
html - `java.lang.String`

returns: `javax.swing.text.View`
raw docstring

*get-html-baselineclj

(*get-html-baseline view w h)

Returns the baseline for the html renderer.

view - the View to get the baseline for - javax.swing.text.View w - the width to get the baseline for - int h - the height to get the baseline for - int

returns: baseline or a value < 0 indicating there is no reasonable baseline - int

throws: java.lang.IllegalArgumentException - if width or height is < 0

Returns the baseline for the html renderer.

view - the View to get the baseline for - `javax.swing.text.View`
w - the width to get the baseline for - `int`
h - the height to get the baseline for - `int`

returns: baseline or a value < 0 indicating there is no reasonable
                  baseline - `int`

throws: java.lang.IllegalArgumentException - if width or height is < 0
raw docstring

*html-string?clj

(*html-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.

s - java.lang.String

returns: boolean

Check the given string to see if it should trigger the
 html rendering logic in a non-text component that supports
 html rendering.

s - `java.lang.String`

returns: `boolean`
raw docstring

*update-rendererclj

(*update-renderer c text)

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.

c - javax.swing.JComponent text - java.lang.String

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.

c - `javax.swing.JComponent`
text - `java.lang.String`
raw docstring

->basic-htmlclj

(->basic-html)

Constructor.

Constructor.
raw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close