Liking cljdoc? Tell your friends :D

javax.swing.plaf.basic.BasicSplitPaneUI

A Basic L&F implementation of the SplitPaneUI.

A Basic L&F implementation of the SplitPaneUI.
raw docstring

*create-uiclj

(*create-ui x)

Creates a new BasicSplitPaneUI instance

x - javax.swing.JComponent

returns: javax.swing.plaf.ComponentUI

Creates a new BasicSplitPaneUI instance

x - `javax.swing.JComponent`

returns: `javax.swing.plaf.ComponentUI`
raw docstring

->basic-split-pane-uiclj

(->basic-split-pane-ui)

Constructor.

Constructor.
raw docstring

continuous-layout?clj

(continuous-layout? this)

Determines whether the JSplitPane is set to use a continuous layout.

returns: boolean

Determines whether the JSplitPane is set to use a continuous layout.

returns: `boolean`
raw docstring

create-default-dividerclj

(create-default-divider this)

Creates the default divider.

returns: javax.swing.plaf.basic.BasicSplitPaneDivider

Creates the default divider.

returns: `javax.swing.plaf.basic.BasicSplitPaneDivider`
raw docstring

finished-painting-childrenclj

(finished-painting-children this sp g)

Called when the specified split pane has finished painting its children.

sp - javax.swing.JSplitPane g - java.awt.Graphics

Called when the specified split pane has finished painting
 its children.

sp - `javax.swing.JSplitPane`
g - `java.awt.Graphics`
raw docstring

get-dividerclj

(get-divider this)

Returns the divider between the top Components.

returns: javax.swing.plaf.basic.BasicSplitPaneDivider

Returns the divider between the top Components.

returns: `javax.swing.plaf.basic.BasicSplitPaneDivider`
raw docstring

get-divider-locationclj

(get-divider-location this jc)

Returns the location of the divider, which may differ from what the splitpane thinks the location of the divider is.

jc - javax.swing.JSplitPane

returns: int

Returns the location of the divider, which may differ from what
 the splitpane thinks the location of the divider is.

jc - `javax.swing.JSplitPane`

returns: `int`
raw docstring

get-insetsclj

(get-insets this jc)

Returns the insets. The insets are returned from the border insets of the current border.

jc - javax.swing.JComponent

returns: java.awt.Insets

Returns the insets. The insets are returned from the border insets
 of the current border.

jc - `javax.swing.JComponent`

returns: `java.awt.Insets`
raw docstring

get-last-drag-locationclj

(get-last-drag-location this)

Returns the last drag location of the JSplitPane.

returns: int

Returns the last drag location of the JSplitPane.

returns: `int`
raw docstring

get-maximum-divider-locationclj

(get-maximum-divider-location this jc)

Gets the maximum location of the divider.

jc - javax.swing.JSplitPane

returns: int

Gets the maximum location of the divider.

jc - `javax.swing.JSplitPane`

returns: `int`
raw docstring

get-maximum-sizeclj

(get-maximum-size this jc)

Returns the maximum size for the passed in component, This is passed off to the current layout manager.

jc - the component whose maximum size is being queried; this argument is often ignored, but might be used if the UI object is stateless and shared by multiple components - javax.swing.JComponent

returns: a Dimension object or null - java.awt.Dimension

Returns the maximum size for the passed in component,
 This is passed off to the current layout manager.

jc - the component whose maximum size is being queried; this argument is often ignored, but might be used if the UI object is stateless and shared by multiple components - `javax.swing.JComponent`

returns: a Dimension object or null - `java.awt.Dimension`
raw docstring

get-minimum-divider-locationclj

(get-minimum-divider-location this jc)

Gets the minimum location of the divider.

jc - javax.swing.JSplitPane

returns: int

Gets the minimum location of the divider.

jc - `javax.swing.JSplitPane`

returns: `int`
raw docstring

get-minimum-sizeclj

(get-minimum-size this jc)

Returns the minimum size for the passed in component, This is passed off to the current layout manager.

jc - the component whose minimum size is being queried; this argument is often ignored, but might be used if the UI object is stateless and shared by multiple components - javax.swing.JComponent

returns: a Dimension object or null - java.awt.Dimension

Returns the minimum size for the passed in component,
 This is passed off to the current layout manager.

jc - the component whose minimum size is being queried; this argument is often ignored, but might be used if the UI object is stateless and shared by multiple components - `javax.swing.JComponent`

returns: a Dimension object or null - `java.awt.Dimension`
raw docstring

get-non-continuous-layout-dividerclj

(get-non-continuous-layout-divider this)

Returns the divider to use when the splitPane is configured to not continuously layout. This divider will only be used during a dragging session.

returns: java.awt.Component

Returns the divider to use when the splitPane is configured to
 not continuously layout. This divider will only be used during a
 dragging session.

returns: `java.awt.Component`
raw docstring

get-orientationclj

(get-orientation this)

Returns the orientation for the JSplitPane.

returns: int

Returns the orientation for the JSplitPane.

returns: `int`
raw docstring

get-preferred-sizeclj

(get-preferred-size this jc)

Returns the preferred size for the passed in component, This is passed off to the current layout manager.

jc - the component whose preferred size is being queried; this argument is often ignored, but might be used if the UI object is stateless and shared by multiple components - javax.swing.JComponent

returns: java.awt.Dimension

Returns the preferred size for the passed in component,
 This is passed off to the current layout manager.

jc - the component whose preferred size is being queried; this argument is often ignored, but might be used if the UI object is stateless and shared by multiple components - `javax.swing.JComponent`

returns: `java.awt.Dimension`
raw docstring

get-split-paneclj

(get-split-pane this)

Returns the splitpane this instance is currently contained in.

returns: javax.swing.JSplitPane

Returns the splitpane this instance is currently contained
 in.

returns: `javax.swing.JSplitPane`
raw docstring

install-uiclj

(install-ui this c)

Installs the UI.

c - the component where this UI delegate is being installed - javax.swing.JComponent

Installs the UI.

c - the component where this UI delegate is being installed - `javax.swing.JComponent`
raw docstring

paintclj

(paint this g jc)

Paints the specified component appropriately for the look and feel. This method is invoked from the ComponentUI.update method when the specified component is being painted. Subclasses should override this method and use the specified Graphics object to render the content of the component.

g - the Graphics context in which to paint - java.awt.Graphics jc - the component being painted; this argument is often ignored, but might be used if the UI object is stateless and shared by multiple components - javax.swing.JComponent

Paints the specified component appropriately for the look and feel.
 This method is invoked from the ComponentUI.update method when
 the specified component is being painted.  Subclasses should override
 this method and use the specified Graphics object to
 render the content of the component.

g - the Graphics context in which to paint - `java.awt.Graphics`
jc - the component being painted; this argument is often ignored, but might be used if the UI object is stateless and shared by multiple components - `javax.swing.JComponent`
raw docstring

reset-to-preferred-sizesclj

(reset-to-preferred-sizes this jc)

Messaged to reset the preferred sizes.

jc - javax.swing.JSplitPane

Messaged to reset the preferred sizes.

jc - `javax.swing.JSplitPane`
raw docstring

set-continuous-layoutclj

(set-continuous-layout this b)

Turn continuous layout on/off.

b - boolean

Turn continuous layout on/off.

b - `boolean`
raw docstring

set-divider-locationclj

(set-divider-location this jc location)

Sets the location of the divider to location.

jc - javax.swing.JSplitPane location - int

Sets the location of the divider to location.

jc - `javax.swing.JSplitPane`
location - `int`
raw docstring

set-last-drag-locationclj

(set-last-drag-location this l)

Set the last drag location of the JSplitPane.

l - int

Set the last drag location of the JSplitPane.

l - `int`
raw docstring

set-orientationclj

(set-orientation this orientation)

Set the orientation for the JSplitPane.

orientation - int

Set the orientation for the JSplitPane.

orientation - `int`
raw docstring

uninstall-uiclj

(uninstall-ui this c)

Uninstalls the UI.

c - the component from which this UI delegate is being removed; this argument is often ignored, but might be used if the UI object is stateless and shared by multiple components - javax.swing.JComponent

Uninstalls the UI.

c - the component from which this UI delegate is being removed; this argument is often ignored, but might be used if the UI object is stateless and shared by multiple components - `javax.swing.JComponent`
raw docstring

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

× close