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 Dockable
DockableHeader. getDockable()
Dockable
JDockingPanel. getDockable(java.awt.Component content)
Returns the Dockable that contains the given content.Dockable
JDockingPanel. getDockable(java.lang.String title)
Dockable
TreeLeaf. getDockable(int index)
Dockable
TreeLeaf. getDragable(java.awt.Point p)
Dockable
JDockingPanel. getDraggedDockable(java.awt.dnd.DropTargetDragEvent dtde)
Dockable
JDockingPanel. 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 void
TreeLeaf. addContent(Dockable dockable, boolean isDragging)
void
GhostPreview. createPreview(Dockable draggedDockable, Dockable targetDockable, int position, JDockingPanel port)
void
JDockingPanel. dock(Dockable dockable)
Dock the dockable to the center of the selected view.void
JDockingPanel. dock(Dockable dockable, int position)
Dock the Dockable at the given position to the selected view.void
JDockingPanel. 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 void
JDockingPanel. fireDockableSelected(Dockable dockable)
Sends ActionEvent to listeners when the user interactively selected another dockablejava.lang.String
JDockingPanel. getTitle(Dockable dockable)
boolean
TreeLeaf. removeContent(Dockable dockable, boolean isDragging)
undockes and removes a Dockable from the docking tree and from the component treevoid
JDockingPanel. selectDockable(Dockable dockable)
void
TreeLeaf. setSelectedDockable(Dockable dockable)
void
JDockingPanel. 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, javax.swing.JToolBar toolBar)
HeaderMouseAdapter(javax.swing.JLabel titleLabel, Dockable dockable)
TransferableDockable(Dockable dockable)
TreeLeaf(Dockable dockable, JDockingPanel dockingPanel, boolean isDragging)
Constructor to create a leaf element with a visible component on the screen.
-