-
- All Superinterfaces:
AttributeReadEnabled
,AttributeReadId
,AttributeReadValid
,AttributeReadVisible
,AttributeWriteEnabled
,AttributeWriteId
,AttributeWriteReadOnly
,AttributeWriteTooltip
,AttributeWriteVisible
,EventSource<UiEvent,UiEventListener>
,UiComposite<UiRegularWidget>
,UiMutableSingleComposite<UiRegularWidget>
,UiNativeWidget
,UiRegularWidget
,UiSingleComposite<UiRegularWidget>
,UiWidget
- All Known Implementing Classes:
FxScrollPanel
,TestScrollPanel
,TvmScrollPanel
,UiCustomScrollPanel
public interface UiScrollPanel extends UiMutableSingleComposite<UiRegularWidget>, UiRegularWidget, UiNativeWidget
UiMutableSingleComposite
for a scroll panel.
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description UiScrollBarVisibility
getHorizontalScrolling()
UiScrollBarVisibility
getVerticalScrolling()
static UiScrollPanel
of()
static UiScrollPanel
of(UiRegularWidget child)
void
setHorizontalScrolling(UiScrollBarVisibility scrolling)
void
setVerticalScrolling(UiScrollBarVisibility scrolling)
-
Methods inherited from interface io.github.mmm.ui.api.attribute.AttributeReadId
getId
-
Methods inherited from interface io.github.mmm.ui.api.attribute.AttributeWriteId
setId
-
Methods inherited from interface io.github.mmm.ui.api.attribute.AttributeWriteTooltip
getTooltip, setTooltip
-
Methods inherited from interface io.github.mmm.event.EventSource
addListener, addListener, addWeakListener, removeListener
-
Methods inherited from interface io.github.mmm.ui.api.widget.composite.UiComposite
getDescendant, getModificationTimestamp, getPropagation, isModified, isValid, reset, setFocused
-
Methods inherited from interface io.github.mmm.ui.api.widget.composite.UiMutableSingleComposite
setChild
-
Methods inherited from interface io.github.mmm.ui.api.widget.composite.UiSingleComposite
getChild, getChild, getChild, getChildCount, getChildIndex
-
Methods inherited from interface io.github.mmm.ui.api.widget.UiWidget
cast, dispose, getParent, getReadOnlyFixed, getStyles, isDisposed, isEnabled, isEnabled, isFocused, isReadOnly, isVisible, isVisible, setEnabled, setEnabled, setReadOnly, setReadOnlyFixed, setVisible, setVisible, validate, validate, validate, validateDown, validateUp
-
-
-
-
Method Detail
-
getHorizontalScrolling
UiScrollBarVisibility getHorizontalScrolling()
- Returns:
- the
UiScrollBarVisibility
for the horizontal scrollbar.
-
setHorizontalScrolling
void setHorizontalScrolling(UiScrollBarVisibility scrolling)
- Parameters:
scrolling
- the newhorizontal scrolling
.
-
getVerticalScrolling
UiScrollBarVisibility getVerticalScrolling()
- Returns:
- the
UiScrollBarVisibility
for the vertical scrollbar.
-
setVerticalScrolling
void setVerticalScrolling(UiScrollBarVisibility scrolling)
- Parameters:
scrolling
- the newvertical scrolling
.
-
of
static UiScrollPanel of()
- Returns:
- the new
UiVerticalPanel
.
-
of
static UiScrollPanel of(UiRegularWidget child)
- Parameters:
child
- theUiRegularWidget
s toset as child
.- Returns:
- the new
UiVerticalPanel
.
-
-