Uses of Class
org.apache.pivot.wtk.Container
-
Packages that use Container Package Description org.apache.pivot.wtk Contains classes that define the structure and behavior of WTK user interface components.org.apache.pivot.wtk.content Contains classes representing component data, such as list items or table rows.org.apache.pivot.wtk.skin Contains common skins and abstract base classes for theme-specific skins.org.apache.pivot.wtk.skin.terra Defines skin classes for the "Terra" theme. -
-
Uses of Container in org.apache.pivot.wtk
Subclasses of Container in org.apache.pivot.wtk Modifier and Type Class Description classAccordionComponent that provides access to a set of components via selectable headers.classAlertClass representing an "alert", a dialog commonly used to facilitate simple user interaction.classBorderContainer that displays a border.classBoxPaneContainer that arranges components in a line, either vertically or horizontally.classCalendarComponent that allows the user to select a date.classCardPaneContainer that behaves like a deck of cards, only one of which may be visible at a time.classColorChooserComponent that allows the user to select a color.classDialogWindow class whose primary purpose is to facilitate interaction between an application and a user.classDisplayContainer that serves as the root of a component hierarchy.classExpanderNavigation container that allows a user to expand and collapse a content component.classFileBrowserComponent representing a file browser.classFileBrowserSheetFile browser sheet.classFillPaneContainer that fills the space it has been given inside its parent and then arranges its child components in a line, either vertically or horizontally.classFlowPaneContainer that arranges components in a horizontal line, wrapping when contents don't fit on a single line.classFormA container that arranges field components in a form layout.classFrameContainer class representing a decorated frame window.classGridPaneContainer that arranges components in a two-dimensional grid, where every cell is the same size.classMenuComponent that presents a cascading menu.classMenuBarComponent representing a menu bar.classMenuPopupPopup class that displays a cascading menu.classPaletteWindow representing a "tool palette".classPanelSimple container that performs no layout.classPanoramaContainer that provides a scrollable view of a component.classPromptClass representing a "prompt", a sheet commonly used to facilitate simple user interaction.classRollupContainer that can be expanded or collapsed to respectively show or hide its content.classScrollBarComponent that allows a user to select one of a range of values.classScrollPaneContainer that provides a scrollable view of a component, with optional fixed row and column headers.classSheetWindow class representing a "sheet".classSliderAllows a user to select one of a range of values.classSpinnerComponent that presents a means of cycling through a list of items.classSplitPaneASplitPaneis a container component that splits its size up into two regions, each of which is capable of holding one component.classStackPaneContainer that behaves like a stack of transparencies, all of which are visible at the same time.classSuggestionPopupPopup that presents a list of text suggestions to the user.classTablePaneContainer that arranges components in a two-dimensional grid, optionally spanning multiple rows and columns, much like an HTML<table>element.classTabPaneContainer that provides access to a set of components via selectable tabs, only one of which is visible at a time.classTextPaneComponent that allows a user to enter and edit multiple lines of (optionally formatted) text.classTooltipWindow representing a "tooltip".classVFSBrowserA file browser that uses the Apache Commons VFS (Virtual File System) to be able to browse local and remote file systems, and browse inside of .zip, .tar, etc.classVFSBrowserSheetA file browser sheet that uses the Apache Commons VFS (Virtual File System) to be able to browse local and remote file systems, and browse inside of .zip, .tar, etc.classViewportAbstract base class for viewport components.classWindowTop-level container representing the entry point into a user interface.Methods in org.apache.pivot.wtk that return Container Modifier and Type Method Description ContainerComponent. getAncestor(java.lang.Class<? extends Container> ancestorType)ContainerComponent. getAncestor(java.lang.String ancestorTypeName)ContainerComponent. getParent()Methods in org.apache.pivot.wtk with parameters of type Container Modifier and Type Method Description voidContainerListener.Adapter. componentInserted(Container container, int index)Deprecated.default voidContainerListener. componentInserted(Container container, int index)Called when a component has been inserted into a container's component sequence.voidContainerListener.Listeners. componentInserted(Container container, int index)voidContainerListener.Adapter. componentMoved(Container container, int from, int to)Deprecated.default voidContainerListener. componentMoved(Container container, int from, int to)Called when a component has moved from one z-index to another within a container.voidContainerListener.Listeners. componentMoved(Container container, int from, int to)voidContainerListener.Adapter. componentsRemoved(Container container, int index, Sequence<Component> removed)Deprecated.default voidContainerListener. componentsRemoved(Container container, int index, Sequence<Component> removed)Called when components have been removed from a container's component sequence.voidContainerListener.Listeners. componentsRemoved(Container container, int index, Sequence<Component> components)voidContainerListener.Adapter. focusTraversalPolicyChanged(Container container, FocusTraversalPolicy previousFocusTraversalPolicy)Deprecated.default voidContainerListener. focusTraversalPolicyChanged(Container container, FocusTraversalPolicy previousFocusTraversalPolicy)Called when a container's focus traversal policy has changed.voidContainerListener.Listeners. focusTraversalPolicyChanged(Container container, FocusTraversalPolicy previousFocusTraversalPolicy)ComponentFocusTraversalPolicy. getNextComponent(Container container, Component component, FocusTraversalDirection direction)Returns the next focus destination according to this traversal policy.PointComponent. mapPointFromAncestor(Container ancestor, int xValue, int yValue)Maps a point in the specified ancestor's coordinate space to this component's coordinate system.PointComponent. mapPointFromAncestor(Container ancestor, Point location)PointComponent. mapPointToAncestor(Container ancestor, int xValue, int yValue)Maps a point in this component's coordinate system to the specified ancestor's coordinate space.PointComponent. mapPointToAncestor(Container ancestor, Point location)Maps a point in this component's coordinate system to the specified ancestor's coordinate space.booleanContainerMouseListener.Adapter. mouseDown(Container container, Mouse.Button button, int x, int y)Deprecated.booleanContainerMouseListener.Listeners. mouseDown(Container container, Mouse.Button button, int x, int y)default booleanContainerMouseListener. mouseDown(Container container, Mouse.Button button, int x, int y)Called when the mouse is pressed over a container.booleanContainerMouseListener.Adapter. mouseMove(Container container, int x, int y)Deprecated.booleanContainerMouseListener.Listeners. mouseMove(Container container, int x, int y)default booleanContainerMouseListener. mouseMove(Container container, int x, int y)Called when the mouse is moved over a container.booleanContainerMouseListener.Adapter. mouseUp(Container container, Mouse.Button button, int x, int y)Deprecated.booleanContainerMouseListener.Listeners. mouseUp(Container container, Mouse.Button button, int x, int y)default booleanContainerMouseListener. mouseUp(Container container, Mouse.Button button, int x, int y)Called when the mouse is released over a container.booleanContainerMouseListener.Adapter. mouseWheel(Container container, Mouse.ScrollType scrollType, int scrollAmount, int wheelRotation, int x, int y)Deprecated.booleanContainerMouseListener.Listeners. mouseWheel(Container container, Mouse.ScrollType scrollType, int scrollAmount, int wheelRotation, int x, int y)default booleanContainerMouseListener. mouseWheel(Container container, Mouse.ScrollType scrollType, int scrollAmount, int wheelRotation, int x, int y)Called when the mouse wheel is scrolled over a container.voidComponentListener.Adapter. parentChanged(Component component, Container previousParent)Deprecated.voidComponentListener.Listeners. parentChanged(Component component, Container previousParent)default voidComponentListener. parentChanged(Component component, Container previousParent)Called when a component's parent has changed (when the component is either added to or removed from a container).protected voidComponent. setParent(Container parent)protected voidContainer. setParent(Container parent)protected voidDisplay. setParent(Container parent)protected voidMenu.Item. setParent(Container parent)protected voidMenuBar.Item. setParent(Container parent)protected voidWindow. setParent(Container parent)Method parameters in org.apache.pivot.wtk with type arguments of type Container Modifier and Type Method Description ContainerComponent. getAncestor(java.lang.Class<? extends Container> ancestorType) -
Uses of Container in org.apache.pivot.wtk.content
Subclasses of Container in org.apache.pivot.wtk.content Modifier and Type Class Description classAccordionHeaderDataRendererDefault accordion header data renderer.classButtonDataRendererDefault button data renderer.classCalendarButtonDataRendererDefault calendar button data renderer.classLinkButtonDataRendererDefault link button data renderer.classListButtonDataRendererDefault list button data renderer.classListViewColorItemRendererList view renderer for displaying color swatches.classListViewItemEditorDefault list view item editor.classListViewItemRendererDefault list view item renderer.classMenuBarItemDataRendererDefault menu bar item data renderer.classMenuButtonDataRendererDefault menu button data renderer.classMenuItemDataRendererDefault menu item data renderer.classTableViewBooleanCellRendererDefault renderer for table view cells that contain boolean data.classTableViewCheckboxCellRendererDefault renderer for table view cells that contain boolean data.classTableViewHeaderDataRendererDefault table view header data renderer.classTableViewRowEditorDefault table view row editor.classTableViewTriStateCellRendererDefault renderer for table view cells that contain tri-state data.classTreeViewNodeEditorDefault tree view node editor.classTreeViewNodeRendererclassVerticalButtonDataRendererA button data renderer that just positions the image and label vertically on top of each other. -
Uses of Container in org.apache.pivot.wtk.skin
Subclasses of Container in org.apache.pivot.wtk.skin Modifier and Type Class Description classColorChooserButtonSkin.ColorChooserPopupA focusable window class used by color chooser button skins.Methods in org.apache.pivot.wtk.skin with parameters of type Container Modifier and Type Method Description voidCardPaneSkin. componentInserted(Container container, int index)voidContainerSkin. componentInserted(Container container, int index)voidContainerSkin. componentMoved(Container container, int from, int to)voidCardPaneSkin. componentsRemoved(Container container, int index, Sequence<Component> removed)voidContainerSkin. componentsRemoved(Container container, int index, Sequence<Component> removed)voidContainerSkin. focusTraversalPolicyChanged(Container container, FocusTraversalPolicy previousFocusTraversalPolicy)ComponentContainerSkin.IndexFocusTraversalPolicy. getNextComponent(Container container, Component component, FocusTraversalDirection direction)booleanContainerSkin. mouseDown(Container container, Mouse.Button button, int x, int y)booleanWindowSkin. mouseDown(Container container, Mouse.Button button, int x, int y)booleanContainerSkin. mouseMove(Container container, int x, int y)booleanContainerSkin. mouseUp(Container container, Mouse.Button button, int x, int y)booleanContainerSkin. mouseWheel(Container container, Mouse.ScrollType scrollType, int scrollAmount, int wheelRotation, int x, int y)voidComponentSkin. parentChanged(Component component, Container previousParent) -
Uses of Container in org.apache.pivot.wtk.skin.terra
Subclasses of Container in org.apache.pivot.wtk.skin.terra Modifier and Type Class Description static classTerraFileBrowserSkin.DriveRendererAbstract base class for drive renderers.static classTerraFileBrowserSkin.FileRendererAbstract renderer for displaying file system contents.static classTerraFileBrowserSkin.ListButtonDriveRendererList button drive renderer.static classTerraFileBrowserSkin.ListButtonFileRendererList button file renderer.static classTerraFileBrowserSkin.ListViewDriveRendererList view drive renderer.static classTerraFileBrowserSkin.ListViewFileRendererList view file renderer.static classTerraFileBrowserSkin.TableViewFileRendererTable view file renderer.static classTerraVFSBrowserSkin.DriveRendererAbstract base class for drive renderers.static classTerraVFSBrowserSkin.FileRendererAbstract renderer for displaying file system contents.static classTerraVFSBrowserSkin.ListButtonDriveRendererList button drive renderer.static classTerraVFSBrowserSkin.ListButtonFileRendererList button file renderer.static classTerraVFSBrowserSkin.ListViewDriveRendererList view drive renderer.static classTerraVFSBrowserSkin.ListViewFileRendererList view file renderer.static classTerraVFSBrowserSkin.TableViewFileRendererTable view file renderer.Methods in org.apache.pivot.wtk.skin.terra with parameters of type Container Modifier and Type Method Description booleanTerraDialogSkin. mouseDown(Container container, Mouse.Button button, int x, int y)booleanTerraSheetSkin. mouseDown(Container container, Mouse.Button button, int x, int y)
-