public interface AttractorStrategy
AttractorStrategy is used by the MagnetController to find out
whether two ScreenDockWindows are attracting each other. More than one
AttractorStrategy can be used at the same time when creating a MultiAttractorStrategy.| Modifier and Type | Interface and Description |
|---|---|
static class |
AttractorStrategy.Attraction
Tells how two
Dockables interact with each other. |
| Modifier and Type | Method and Description |
|---|---|
AttractorStrategy.Attraction |
attract(ScreenDockStation parent,
Dockable moved,
Dockable fixed)
Called when the
Dockable moved has been moved. |
AttractorStrategy.Attraction |
stick(ScreenDockStation parent,
Dockable moved,
Dockable fixed)
Called when the
Dockable moved has been moved. |
AttractorStrategy.Attraction attract(ScreenDockStation parent, Dockable moved, Dockable fixed)
Dockable moved has been moved. This method
tells whether the unmoved Dockable fixed can attract moved. This
method does not have to check the actual position or size of any Dockable, this method
only has to tell whether an attraction is theoretically possible or not.parent - the parent DockStation of fixed and of movedmoved - a Dockable that did change its position or sizefixed - a Dockable that did not change its position or sizehow fixed and moved interactAttractorStrategy.Attraction stick(ScreenDockStation parent, Dockable moved, Dockable fixed)
Dockable moved has been moved. This method then tells whether
the unmoved Dockable fixed can stick to moved and be moved
as well. This method does not need to check the actual position or size of any Dockable,
this method only has to tell whether the two items could stick together. Also
stickiness does not imply attraction or the other
way around.parent - the parent DockStation of moved and of fixedmoved - a Dockable that did change its position or sizefixed - a Dockable that did not change its position or sizehow fixed and moved interactCopyright © 2017 Docking Frames. All rights reserved.