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 booleanisDraggingtrueif theJToolBaris being dragged.protected PointoriginThe origin point.protected JToolBartoolBarThe 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, waitMethods declared in interface java.awt.event.MouseListener
mouseClicked, mouseEntered, mouseExited, mousePressed, mouseReleased
-
Field Details
-
toolBar
The instance ofJToolBar. -
isDragging
protected boolean isDraggingtrueif theJToolBaris being dragged. -
origin
The origin point.
-
-
Constructor Details
-
DockingListener
Constructs a new instance ofDockingListener.- Parameters:
t- an instance ofJToolBar
-