java.lang.Object
javax.swing.plaf.basic.BasicToolBarUI.DockingListener
- All Implemented Interfaces:
MouseListener
,MouseMotionListener
,EventListener
,MouseInputListener
- Direct Known Subclasses:
MetalToolBarUI.MetalDockingListener
- Enclosing class:
- BasicToolBarUI
public class BasicToolBarUI.DockingListener extends Object implements MouseInputListener
This class should be treated as a "protected" inner class.
Instantiate it only within subclasses of BasicToolBarUI.
-
Field Summary
Fields Modifier and Type Field Description protected boolean
isDragging
true
if theJToolBar
is being dragged.protected Point
origin
The origin point.protected JToolBar
toolBar
The instance ofJToolBar
. -
Constructor Summary
Constructors Constructor Description DockingListener(JToolBar t)
Constructs a new instance ofDockingListener
. -
Method Summary
Methods declared in class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods declared in interface java.awt.event.MouseListener
mouseClicked, mouseEntered, mouseExited, mousePressed, mouseReleased
-
Field Details
-
toolBar
The instance ofJToolBar
. -
isDragging
protected boolean isDraggingtrue
if theJToolBar
is being dragged. -
origin
The origin point.
-
-
Constructor Details
-
DockingListener
Constructs a new instance ofDockingListener
.- Parameters:
t
- an instance ofJToolBar
-