-
- All Superinterfaces:
AttributeReadAttached,AttributeReadEnabled,AttributeReadId,AttributeReadTitle,AttributeReadValid,AttributeReadVisible,AttributeWriteClosable,AttributeWriteEnabled,AttributeWriteId,AttributeWriteMaximized,AttributeWriteMinimized,AttributeWriteMoveable,AttributeWriteReadOnly,AttributeWriteResizable,AttributeWriteTitle,AttributeWriteTooltip,AttributeWriteVisible,io.github.mmm.event.EventSource<UiEvent,UiEventListener>,UiAbstractWindow,UiChildWindow,UiComposite<UiRegularWidget>,UiMutableComposite<UiRegularWidget>,UiNativeWidget,UiRemovableComposite<UiRegularWidget>,UiWidget
public interface UiPopup extends UiChildWindow, UiNativeWidget
UiAbstractWindowrepresenting a modal popup window that blocks the client application until it isclosed.
NOTE:
You typically want to callcreateAndAddCloseButton(). This is not done automatically so you can define the order of the buttons yourself.- Since:
- 1.0.0
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default UiButtoncreateAndAddCloseButton()This method creates abuttonto close this popup and adds it to thebutton panel.UiButtonPanelgetButtonPanel()static UiPopupof(String title)-
Methods inherited from interface io.github.mmm.ui.api.attribute.AttributeReadAttached
isAttached
-
Methods inherited from interface io.github.mmm.ui.api.attribute.AttributeReadId
getId
-
Methods inherited from interface io.github.mmm.ui.api.attribute.AttributeReadTitle
getTitle
-
Methods inherited from interface io.github.mmm.ui.api.attribute.AttributeWriteClosable
isClosable, setClosable
-
Methods inherited from interface io.github.mmm.ui.api.attribute.AttributeWriteId
setId
-
Methods inherited from interface io.github.mmm.ui.api.attribute.AttributeWriteMaximized
isMaximized, setMaximized
-
Methods inherited from interface io.github.mmm.ui.api.attribute.AttributeWriteMinimized
isMinimized, setMinimized
-
Methods inherited from interface io.github.mmm.ui.api.attribute.AttributeWriteMoveable
isMovable, setMovable
-
Methods inherited from interface io.github.mmm.ui.api.attribute.AttributeWriteResizable
isResizable, setResizable
-
Methods inherited from interface io.github.mmm.ui.api.attribute.AttributeWriteTitle
setTitle
-
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.window.UiAbstractWindow
close, findChild, getParent, open
-
Methods inherited from interface io.github.mmm.ui.api.widget.window.UiChildWindow
centerOnScreen, getPosition, getSize
-
Methods inherited from interface io.github.mmm.ui.api.widget.composite.UiComposite
getChild, getChild, getChildById, getChildCount, getChildIndex, getChildSibling, getChildSibling, getDescendant, getModificationTimestamp, getPropagation, isModified, isValid, reset, setFocused
-
Methods inherited from interface io.github.mmm.ui.api.widget.composite.UiMutableComposite
addChild, addChild
-
Methods inherited from interface io.github.mmm.ui.api.widget.composite.UiRemovableComposite
removeChild, removeChild
-
Methods inherited from interface io.github.mmm.ui.api.widget.UiWidget
cast, dispose, getReadOnlyFixed, getStyles, isDisposed, isEnabled, isEnabled, isFocused, isReadOnly, isVisible, isVisible, setEnabled, setEnabled, setReadOnly, setReadOnlyFixed, setVisible, setVisible, validate, validate, validate, validateDown, validateUp
-
-
-
-
Method Detail
-
getButtonPanel
UiButtonPanel getButtonPanel()
- Returns:
- the
UiButtonPanellocated at the bottom of this popup wherebuttonsshall be added.
-
createAndAddCloseButton
default UiButton createAndAddCloseButton()
This method creates abuttonto close this popup and adds it to thebutton panel.- Returns:
- the close button.
-
-