Package com.mxgraph.swing.handler
Class mxCellHandler
- java.lang.Object
-
- com.mxgraph.swing.handler.mxCellHandler
-
- Direct Known Subclasses:
mxEdgeHandler,mxVertexHandler
public class mxCellHandler extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description protected java.awt.RectangleboundsHolds the bounding box of the handler.protected java.awt.PointfirstHolds the start location of the mouse gesture.protected mxGraphComponentgraphComponentReference to the enclosing graph component.protected java.awt.Rectangle[]handlesHolds the rectangles that define the handles.protected booleanhandlesVisibleSpecifies if the handles should be painted.protected intindexHolds the index of the handle that was clicked.protected javax.swing.JComponentpreviewHolds the component that is used for preview.protected mxCellStatestateHolds the cell state associated with this handler.
-
Constructor Summary
Constructors Constructor Description mxCellHandler(mxGraphComponent graphComponent, mxCellState state)Constructs a new cell handler for the given cell state.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected java.awt.Rectangle[]createHandles()Creates the rectangles that define the handles.protected javax.swing.JComponentcreatePreview()Creates the preview for this handler.protected voiddestroy()Invoked when the handler is no longer used.java.awt.RectanglegetBounds()Returns the bounding box of this handler.protected java.awt.CursorgetCursor(java.awt.event.MouseEvent e, int index)Returns the cursor for the given event and handle.mxGraphComponentgetGraphComponent()protected java.awt.ColorgetHandleBorderColor(int index)Returns the border color of the handle at the specified index.protected intgetHandleCount()Returns the number of handles in this handler.protected java.awt.ColorgetHandleFillColor(int index)Returns the color to be used to fill the handle at the specified index.intgetIndex()Returns the index of the current handle.intgetIndexAt(int x, int y)Returns the index of the handle at the given location.java.awt.ColorgetSelectionColor()Returns the color used to draw the selection border.java.awt.StrokegetSelectionStroke()Returns the stroke used to draw the selection border.mxCellStategetState()Returns the cell state that is associated with this handler.java.lang.StringgetToolTipText(java.awt.event.MouseEvent e)Hook for subclassers to return tooltip texts for certain points on the handle.booleanisActive()protected booleanisHandleEnabled(int index)Returns true if the handle at the specified index is enabled.booleanisHandlesVisible()Returns true if the handles should be painted.protected booleanisHandleVisible(int index)Returns true if the handle at the specified index is visible.protected booleanisIgnoredEvent(java.awt.event.MouseEvent e)Returns true if the given event should be ignored.booleanisLabel(int index)Returns true if the given index is the index of the last handle.booleanisLabelMovable()Returns true if the label is movable.voidmouseDragged(java.awt.event.MouseEvent e)Processes the given event.voidmouseMoved(java.awt.event.MouseEvent e)Processes the given event.voidmousePressed(java.awt.event.MouseEvent e)Processes the given event.voidmouseReleased(java.awt.event.MouseEvent e)Processes the given event.voidpaint(java.awt.Graphics g)Paints the visible handles of this handler.voidrefresh(mxCellState state)Refreshes the cell handler.voidreset()Resets the state of the handler and removes the preview.voidsetHandlesVisible(boolean handlesVisible)Specifies if the handles should be painted.voidstart(java.awt.event.MouseEvent e, int index)Starts handling a gesture at the given handle index.
-
-
-
Field Detail
-
graphComponent
protected mxGraphComponent graphComponent
Reference to the enclosing graph component.
-
state
protected mxCellState state
Holds the cell state associated with this handler.
-
handles
protected java.awt.Rectangle[] handles
Holds the rectangles that define the handles.
-
handlesVisible
protected boolean handlesVisible
Specifies if the handles should be painted. Default is true.
-
bounds
protected transient java.awt.Rectangle bounds
Holds the bounding box of the handler.
-
preview
protected transient javax.swing.JComponent preview
Holds the component that is used for preview.
-
first
protected transient java.awt.Point first
Holds the start location of the mouse gesture.
-
index
protected transient int index
Holds the index of the handle that was clicked.
-
-
Constructor Detail
-
mxCellHandler
public mxCellHandler(mxGraphComponent graphComponent, mxCellState state)
Constructs a new cell handler for the given cell state.- Parameters:
graphComponent- Enclosing graph component.state- Cell state for which the handler is created.
-
-
Method Detail
-
isActive
public boolean isActive()
-
refresh
public void refresh(mxCellState state)
Refreshes the cell handler.
-
getGraphComponent
public mxGraphComponent getGraphComponent()
-
getState
public mxCellState getState()
Returns the cell state that is associated with this handler.
-
getIndex
public int getIndex()
Returns the index of the current handle.
-
getBounds
public java.awt.Rectangle getBounds()
Returns the bounding box of this handler.
-
isLabelMovable
public boolean isLabelMovable()
Returns true if the label is movable.
-
isHandlesVisible
public boolean isHandlesVisible()
Returns true if the handles should be painted.
-
setHandlesVisible
public void setHandlesVisible(boolean handlesVisible)
Specifies if the handles should be painted.
-
isLabel
public boolean isLabel(int index)
Returns true if the given index is the index of the last handle.
-
createHandles
protected java.awt.Rectangle[] createHandles()
Creates the rectangles that define the handles.
-
getHandleCount
protected int getHandleCount()
Returns the number of handles in this handler.
-
getToolTipText
public java.lang.String getToolTipText(java.awt.event.MouseEvent e)
Hook for subclassers to return tooltip texts for certain points on the handle.
-
getIndexAt
public int getIndexAt(int x, int y)Returns the index of the handle at the given location.- Parameters:
x- X-coordinate of the location.y- Y-coordinate of the location.- Returns:
- Returns the handle index for the given location.
-
mousePressed
public void mousePressed(java.awt.event.MouseEvent e)
Processes the given event.
-
mouseMoved
public void mouseMoved(java.awt.event.MouseEvent e)
Processes the given event.
-
mouseDragged
public void mouseDragged(java.awt.event.MouseEvent e)
Processes the given event.
-
mouseReleased
public void mouseReleased(java.awt.event.MouseEvent e)
Processes the given event.
-
start
public void start(java.awt.event.MouseEvent e, int index)Starts handling a gesture at the given handle index.
-
isIgnoredEvent
protected boolean isIgnoredEvent(java.awt.event.MouseEvent e)
Returns true if the given event should be ignored.
-
createPreview
protected javax.swing.JComponent createPreview()
Creates the preview for this handler.
-
reset
public void reset()
Resets the state of the handler and removes the preview.
-
getCursor
protected java.awt.Cursor getCursor(java.awt.event.MouseEvent e, int index)Returns the cursor for the given event and handle.
-
paint
public void paint(java.awt.Graphics g)
Paints the visible handles of this handler.
-
getSelectionColor
public java.awt.Color getSelectionColor()
Returns the color used to draw the selection border. This implementation returns null.
-
getSelectionStroke
public java.awt.Stroke getSelectionStroke()
Returns the stroke used to draw the selection border. This implementation returns null.
-
isHandleEnabled
protected boolean isHandleEnabled(int index)
Returns true if the handle at the specified index is enabled.
-
isHandleVisible
protected boolean isHandleVisible(int index)
Returns true if the handle at the specified index is visible.
-
getHandleFillColor
protected java.awt.Color getHandleFillColor(int index)
Returns the color to be used to fill the handle at the specified index.
-
getHandleBorderColor
protected java.awt.Color getHandleBorderColor(int index)
Returns the border color of the handle at the specified index.
-
destroy
protected void destroy()
Invoked when the handler is no longer used. This is an empty hook for subclassers.
-
-