Package com.mxgraph.util
Class mxEvent
java.lang.Object
com.mxgraph.util.mxEvent
Contains all global constants.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final String
static final String
static final String
static final String
static final String
static final String
static final String
Holds the name for the beforeUndo event.static final String
Holds the name for the beginUpdate event.static final String
static final String
static final String
static final String
static final String
static final String
static final String
static final String
static final String
Holds the name for the change event.static final String
static final String
static final String
static String
static final String
static final String
static final String
Holds the name for the endUpdate event.static final String
Holds the name for the execute event.static final String
static final String
static final String
static final String
static final String
static final String
static String
static String
Holds the name for the mark event, which fires after a cell has been marked.static final String
static final String
Holds the name for the norify event.static final String
static final String
static final String
static final String
static final String
static final String
static final String
static final String
static String
static final String
static final String
static final String
static final String
static String
static final String
static String
static final String
static final String
static final String
static final String
static final String
static final String
-
Constructor Summary
Constructors -
Method Summary
-
Field Details
-
DONE
- See Also:
-
ADD_CELLS
- See Also:
-
CELLS_ADDED
- See Also:
-
ALIGN_CELLS
- See Also:
-
CONNECT_CELL
- See Also:
-
CONNECT
- See Also:
-
CELL_CONNECTED
- See Also:
-
FLIP_EDGE
- See Also:
-
FOLD_CELLS
- See Also:
-
CELLS_FOLDED
- See Also:
-
GROUP_CELLS
- See Also:
-
UNGROUP_CELLS
- See Also:
-
REMOVE_CELLS_FROM_PARENT
- See Also:
-
MOVE_CELLS
- See Also:
-
CELLS_MOVED
- See Also:
-
ORDER_CELLS
- See Also:
-
CELLS_ORDERED
- See Also:
-
REMOVE_CELLS
- See Also:
-
CELLS_REMOVED
- See Also:
-
REPAINT
- See Also:
-
RESIZE_CELLS
- See Also:
-
CELLS_RESIZED
- See Also:
-
SPLIT_EDGE
- See Also:
-
TOGGLE_CELLS
- See Also:
-
CELLS_TOGGLED
- See Also:
-
UPDATE_CELL_SIZE
- See Also:
-
LABEL_CHANGED
- See Also:
-
ADD_OVERLAY
- See Also:
-
REMOVE_OVERLAY
- See Also:
-
BEFORE_PAINT
- See Also:
-
PAINT
- See Also:
-
AFTER_PAINT
- See Also:
-
START_EDITING
- See Also:
-
UNDO
- See Also:
-
REDO
- See Also:
-
UP
- See Also:
-
DOWN
- See Also:
-
SCALE
- See Also:
-
TRANSLATE
- See Also:
-
SCALE_AND_TRANSLATE
- See Also:
-
CHANGE
Holds the name for the change event. First and only argument in the argument array is the list of mxAtomicGraphChanges that have been executed on the model.- See Also:
-
EXECUTE
Holds the name for the execute event. First and only argument in the argument array is the mxAtomicGraphChange that has been executed on the model. This event fires before the change event.- See Also:
-
BEFORE_UNDO
Holds the name for the beforeUndo event. First and only argument in the argument array is the current edit that is currently in progress in the model. This event fires before notify is called on the currentEdit in the model.- See Also:
-
NOTIFY
Holds the name for the norify event. First and only argument in the argument array is the list of mxAtomicGraphChanges that have been executed on the model. This event fires after the change event.- See Also:
-
BEGIN_UPDATE
Holds the name for the beginUpdate event. This event has no arguments and fires after the updateLevel has been changed in model.- See Also:
-
END_UPDATE
Holds the name for the endUpdate event. This event has no arguments and fires after the updateLevel has been changed in the model. First argument is the currentEdit.- See Also:
-
INSERT
- See Also:
-
ADD
- See Also:
-
CLEAR
- See Also:
-
FIRED
- See Also:
-
SELECT
- See Also:
-
MARK
Holds the name for the mark event, which fires after a cell has been marked. First and only argument in the array is the cell state that has been marked or null, if no state has been marked. To add a mark listener to the cell marker:addListener( mxEvent.MARK, new mxEventListener() { public void invoke(Object source, Object[] args) { cellMarked((mxCellMarker) source, (mxCellState) args[0]); } });
-
ROOT
-
LAYOUT_CELLS
-
START
-
CONTINUE
-
STOP
-
-
Constructor Details
-
mxEvent
public mxEvent()
-