Uses of Class
com.actelion.research.gui.dock.Dockable
-
Packages that use Dockable Package Description com.actelion.research.gui.dock -
-
Uses of Dockable in com.actelion.research.gui.dock
Methods in com.actelion.research.gui.dock that return Dockable Modifier and Type Method Description DockableDockableHeader. getDockable()DockableJDockingPanel. getDockable(java.awt.Component content)Returns the Dockable that contains the given content.DockableJDockingPanel. getDockable(java.lang.String title)DockableTreeLeaf. getDockable(int index)DockableTreeLeaf. getDragable(java.awt.Point p)DockableJDockingPanel. getSelectedDockable()Returns the currently active Dockable, i.e.Methods in com.actelion.research.gui.dock that return types with arguments of type Dockable Modifier and Type Method Description java.util.Collection<Dockable>JDockingPanel. getDockables()Methods in com.actelion.research.gui.dock with parameters of type Dockable Modifier and Type Method Description voidTreeLeaf. addContent(Dockable dockable, boolean isDragging)voidGhostPreview. createPreview(Dockable draggedDockable, Dockable targetDockable, int position, JDockingPanel port)voidJDockingPanel. dock(Dockable dockable)Dock the dockable to the center of the selected view.voidJDockingPanel. dock(Dockable dockable, int position)Dock the Dockable at the given position to the selected view.voidJDockingPanel. dock(Dockable dockable, java.lang.String dockInfo)Dock the dockable either as a new root dockable or to the treeElement that contains dockable specified as part dockInfo.protected voidJDockingPanel. fireDockableSelected(Dockable dockable)Sends ActionEvent to listeners when the user interactively selected another dockablejava.lang.StringJDockingPanel. getTitle(Dockable dockable)booleanTreeLeaf. removeContent(Dockable dockable, boolean isDragging)undockes and removes a Dockable from the docking tree and from the component treevoidJDockingPanel. selectDockable(Dockable dockable)voidTreeLeaf. setSelectedDockable(Dockable dockable)voidJDockingPanel. visibilityChanged(Dockable dockable, boolean isVisible)This is called when a Dockable's visibility changes, i.e.
- when a new Dockable is docked
- when a new Dockable is undocked
- when the user drags & docks a Dockable
- when the user actively switches tabs in a tabbed pane
It may be overridden in order to react on a visibility change due to the user selecting a different tab of dragging & docking a Dockable.Constructors in com.actelion.research.gui.dock with parameters of type Dockable Constructor Description DockableHeader(Dockable dockable, java.lang.String title, java.awt.event.ActionListener al, boolean isClosable, boolean hasPopupButton)TreeLeaf(Dockable dockable, JDockingPanel dockingPanel, boolean isDragging)Constructor to create a leaf element with a visible component on the screen.
-