diff --git a/ChangeLog b/ChangeLog index 57c49c216..ffc8390cb 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +20-JUL-2019: 4.0.4 + +- Moved PHP code to own repo +- Adds DPI support in advanced dialog + 26-JUL-2019: 4.0.3 - Reverts forcing quotes around font names in CSS and SVG diff --git a/docs/js-api/files/index-txt.html b/docs/js-api/files/index-txt.html index 75c789d03..52ecba419 100644 --- a/docs/js-api/files/index-txt.html +++ b/docs/js-api/files/index-txt.html @@ -55,7 +55,7 @@ HideAllBut([1], 13);// --> -
Bootstrapping mechanism for the mxGraph thin client.
VERSION: '4.0.3'
Contains the current version of the mxGraph library.
Extends mxEventSource to implement a application wrapper for a graph that adds actions, I/O using mxCodec, auto-layout using mxLayoutManager, command history using undoManager, and standard dialogs and widgets, eg.
Extends mxEventSource to implement a graph component for the browser.
Extends mxEventSource to implement a graph model.
Cells are the elements of the graph model.
Extends mxEventSource to implement a view for a graph.
Renders cells into a document object model.
Defines the appearance of the cells in a graph.
Implements a command history.
Extends mxEventSource to implement a graph overlay, represented by an icon and a tooltip.
Defines invalid connections along with the error messages that they produce.
Event handler that selects rectangular regions.
Graph event handler that displays tooltips.
Graph event handler that handles selection.
Extends mxGraphLayout to implement a compact tree (Moen) algorithm.
Base class for all shapes.
Singleton that implements a clipboard for graph cells.
Defines various global constants.
Cross-browser DOM event support.
A singleton class that provides cross-browser helper methods.
Implements internationalization.
A singleton class that implements a simple console.
Generic codec for JavaScript objects that implements a mapping between JavaScript objects and XML nodes that maps each field or element to an attribute or child node, and vice versa.
XML codec for JavaScript object graphs.
Singleton class that acts as a global registry for codecs.
The mxEventObject is a wrapper for all properties of a single event.
Base class for objects that dispatch named events.
Base class for all mouse events in mxGraph.
mxEventSource.prototype.fireEvent = function(evt,
sender)
Dispatches the given event to the listeners which are registered for the event.
mxEventSource.prototype.addListener = function(name,
funct)
Binds the specified function to the given event name.
mxEventSource.prototype.removeListener = function(funct)
Removes all occurrences of the given listener from eventListeners.
mxGraph.prototype.fireMouseEvent = function(evtName,
me,
sender)
Dispatches the given event in the graph event dispatch loop.
mxGraph.prototype.addMouseListener = function(listener)
Adds a listener to the graph event dispatch loop.
mxGraph.prototype.removeMouseListener = function(listener)
Removes the specified graph listener.
Basepath for all URLs in the core without trailing slash.
Basepath for all images URLs in the core without trailing slash.
Defines the language of the client, eg.
Defines the default language which is used in the common resource files.
include: function(src)
Dynamically adds a script node to the document header.
eval: function(expr)
Evaluates the given expression using eval and returns the JavaScript object that represents the expression result.
mxGraph.prototype.setCellWarning = function(cell,
warning,
img,
isSelect)
Creates an overlay for the given cell using the warning and image or warningImage and returns the new mxCellOverlay.
mxGraph.prototype.warningImage
Specifies the mxImage for the image to be used to display a warning overlay.
+
Bootstrapping mechanism for the mxGraph thin client.
VERSION: '4.0.4'
Contains the current version of the mxGraph library.
Extends mxEventSource to implement a application wrapper for a graph that adds actions, I/O using mxCodec, auto-layout using mxLayoutManager, command history using undoManager, and standard dialogs and widgets, eg.
Extends mxEventSource to implement a graph component for the browser.
Extends mxEventSource to implement a graph model.
Cells are the elements of the graph model.
Extends mxEventSource to implement a view for a graph.
Renders cells into a document object model.
Defines the appearance of the cells in a graph.
Implements a command history.
Extends mxEventSource to implement a graph overlay, represented by an icon and a tooltip.
Defines invalid connections along with the error messages that they produce.
Event handler that selects rectangular regions.
Graph event handler that displays tooltips.
Graph event handler that handles selection.
Extends mxGraphLayout to implement a compact tree (Moen) algorithm.
Base class for all shapes.
Singleton that implements a clipboard for graph cells.
Defines various global constants.
Cross-browser DOM event support.
A singleton class that provides cross-browser helper methods.
Implements internationalization.
A singleton class that implements a simple console.
Generic codec for JavaScript objects that implements a mapping between JavaScript objects and XML nodes that maps each field or element to an attribute or child node, and vice versa.
XML codec for JavaScript object graphs.
Singleton class that acts as a global registry for codecs.
The mxEventObject is a wrapper for all properties of a single event.
Base class for objects that dispatch named events.
Base class for all mouse events in mxGraph.
mxEventSource.prototype.fireEvent = function(evt,
sender)
Dispatches the given event to the listeners which are registered for the event.
mxEventSource.prototype.addListener = function(name,
funct)
Binds the specified function to the given event name.
mxEventSource.prototype.removeListener = function(funct)
Removes all occurrences of the given listener from eventListeners.
mxGraph.prototype.fireMouseEvent = function(evtName,
me,
sender)
Dispatches the given event in the graph event dispatch loop.
mxGraph.prototype.addMouseListener = function(listener)
Adds a listener to the graph event dispatch loop.
mxGraph.prototype.removeMouseListener = function(listener)
Removes the specified graph listener.
Basepath for all URLs in the core without trailing slash.
Basepath for all images URLs in the core without trailing slash.
Defines the language of the client, eg.
Defines the default language which is used in the common resource files.
include: function(src)
Dynamically adds a script node to the document header.
eval: function(expr)
Evaluates the given expression using eval and returns the JavaScript object that represents the expression result.
mxGraph.prototype.setCellWarning = function(cell,
warning,
img,
isSelect)
Creates an overlay for the given cell using the warning and image or warningImage and returns the new mxCellOverlay.
mxGraph.prototype.warningImage
Specifies the mxImage for the image to be used to display a warning overlay.
diff --git a/docs/js-api/files/mxClient-js.html b/docs/js-api/files/mxClient-js.html index e1a6528ac..8866ef8eb 100644 --- a/docs/js-api/files/mxClient-js.html +++ b/docs/js-api/files/mxClient-js.html @@ -15,7 +15,7 @@ if (browserType) {document.write("
");if (browserV

Variables

-

VERSION

VERSION: '4.0.3'

Contains the current version of the mxGraph library.  The strings that communicate versions of mxGraph use the following format.

versionMajor.versionMinor.buildNumber.revisionNumber

Current version is 4.0.3.

+

VERSION

VERSION: '4.0.4'

Contains the current version of the mxGraph library.  The strings that communicate versions of mxGraph use the following format.

versionMajor.versionMinor.buildNumber.revisionNumber

Current version is 4.0.4.

IS_IE

IS_IE: navigator.userAgent.indexOf('MSIE') >

True if the current browser is Internet Explorer 10 or below.  Use mxClient.IS_IE11 to detect IE 11.

@@ -145,7 +145,7 @@ HideAllBut([1], 13);// -->
-
VERSION: '4.0.3'
Contains the current version of the mxGraph library.
IS_IE: navigator.userAgent.indexOf('MSIE') >
True if the current browser is Internet Explorer 10 or below.
IS_IE6: navigator.userAgent.indexOf('MSIE 6') >
True if the current browser is Internet Explorer 6.x.
IS_IE11: !!navigator.userAgent.match(/Trident\/7\./)
True if the current browser is Internet Explorer 11.x.
IS_EDGE: !!navigator.userAgent.match(/Edge\//)
True if the current browser is Microsoft Edge.
IS_QUIRKS: navigator.userAgent.indexOf('MSIE') >
True if the current browser is Internet Explorer and it is in quirks mode.
IS_EM: 'spellcheck' in document.createElement(
   'textarea'
) && document.documentMode
True if the browser is IE11 in enterprise mode (IE8 standards mode).
VML_PREFIX: 'v'
Prefix for VML namespace in node names.
OFFICE_PREFIX: 'o'
Prefix for VML office namespace in node names.
IS_NS: navigator.userAgent.indexOf('Mozilla/') >
True if the current browser is Netscape (including Firefox).
IS_OP: navigator.userAgent.indexOf('Opera/') >
True if the current browser is Opera.
IS_OT: navigator.userAgent.indexOf('Presto/') >
True if -o-transform is available as a CSS style, ie for Opera browsers based on a Presto engine with version 2.5 or later.
IS_SF: navigator.userAgent.indexOf('AppleWebKit/') >
True if the current browser is Safari.
IS_IOS: (navigator.userAgent.match(/(iPad|iPhone|iPod)/g) ? true false)
Returns true if the user agent is an iPad, iPhone or iPod.
IS_GC: navigator.userAgent.indexOf('Chrome/') >
True if the current browser is Google Chrome.
IS_CHROMEAPP: window.chrome !
True if the this is running inside a Chrome App.
IS_FF: navigator.userAgent.indexOf('Firefox/') >
True if the current browser is Firefox.
IS_VML: navigator.appName.toUpperCase()
True if the browser supports VML.
IS_SVG: navigator.appName.toUpperCase() !
True if the browser supports SVG.
NO_FO: !document.createElementNS || document.createElementNS(
   'http://www.w3.org/2000/svg',
   'foreignObject'
) !
True if foreignObject support is not available.
IS_WIN: navigator.appVersion.indexOf('Win') > 0
True if the client is a Windows.
IS_MAC: navigator.appVersion.indexOf('Mac') > 0
True if the client is a Mac.
IS_CHROMEOS: /\bCrOS\b/.test(navigator.userAgent)
True if the client is a Chrome OS.
IS_TOUCH: 'ontouchstart' in document.documentElement
True if this device supports touchstart/-move/-end events (Apple iOS, Android, Chromebook and Chrome Browser on touch-enabled devices).
IS_POINTER: window.PointerEvent !
True if this device supports Microsoft pointer events (always false on Macs).
defaultBundles: []
Contains the base names of the default bundles if mxLoadResources is false.
isBrowserSupported: function()
Returns true if the current browser is supported, that is, if mxClient.IS_VML or mxClient.IS_SVG is true.
link: function(rel,
href,
doc,
id)
Adds a link node to the head of the document.
loadResources: function(fn,
lan)
Helper method to load the default bundles if mxLoadResources is false.
include: function(src)
Dynamically adds a script node to the document header.
Extends mxEventSource to implement a graph component for the browser.
Extends mxEventSource to implement a application wrapper for a graph that adds actions, I/O using mxCodec, auto-layout using mxLayoutManager, command history using undoManager, and standard dialogs and widgets, eg.
add: function(basename,
lan,
callback)
Adds the default and current language properties file for the specified basename.
Basepath for all URLs in the core without trailing slash.
getSpecialBundle: function(basename,
lan)
Hook for subclassers to return the URL for the special bundle.
mxEditor.prototype.askZoomResource
Specifies the resource key for the zoom dialog.
mxEditor.prototype.lastSavedResource
Specifies the resource key for the last saved info.
mxEditor.prototype.currentFileResource
Specifies the resource key for the current file info.
mxEditor.prototype.propertiesResource
Specifies the resource key for the properties window title.
mxEditor.prototype.tasksResource
Specifies the resource key for the tasks window title.
mxEditor.prototype.helpResource
Specifies the resource key for the help window title.
mxEditor.prototype.outlineResource
Specifies the resource key for the outline window title.
mxElbowEdgeHandler.prototype.doubleClickOrientationResource
Specifies the resource key for the tooltip to be displayed on the single control point for routed edges.
errorResource: (mxClient.language ! =  'none') ? 'error' : ''
Specifies the resource key for the title of the error window.
closeResource: (mxClient.language ! =  'none') ? 'close' : ''
Specifies the resource key for the label of the close button.
mxGraphSelectionModel.prototype.doneResource
Specifies the resource key for the status message after a long operation.
mxGraphSelectionModel.prototype.updatingSelectionResource
Specifies the resource key for the status message while the selection is being updated.
mxGraphView.prototype.doneResource
Specifies the resource key for the status message after a long operation.
Specifies the resource key for the status message while the document is being updated.
mxGraph.prototype.containsValidationErrorsResource
Specifies the resource key for the warning message to be displayed when a collapsed cell contains validation errors.
mxGraph.prototype.alreadyConnectedResource
Specifies the resource key for the error message to be displayed in non-multigraphs when two vertices are already connected.
isLanguageSupported: function(lan)
Hook for subclassers to disable support for a given language.
+
VERSION: '4.0.4'
Contains the current version of the mxGraph library.
IS_IE: navigator.userAgent.indexOf('MSIE') >
True if the current browser is Internet Explorer 10 or below.
IS_IE6: navigator.userAgent.indexOf('MSIE 6') >
True if the current browser is Internet Explorer 6.x.
IS_IE11: !!navigator.userAgent.match(/Trident\/7\./)
True if the current browser is Internet Explorer 11.x.
IS_EDGE: !!navigator.userAgent.match(/Edge\//)
True if the current browser is Microsoft Edge.
IS_QUIRKS: navigator.userAgent.indexOf('MSIE') >
True if the current browser is Internet Explorer and it is in quirks mode.
IS_EM: 'spellcheck' in document.createElement(
   'textarea'
) && document.documentMode
True if the browser is IE11 in enterprise mode (IE8 standards mode).
VML_PREFIX: 'v'
Prefix for VML namespace in node names.
OFFICE_PREFIX: 'o'
Prefix for VML office namespace in node names.
IS_NS: navigator.userAgent.indexOf('Mozilla/') >
True if the current browser is Netscape (including Firefox).
IS_OP: navigator.userAgent.indexOf('Opera/') >
True if the current browser is Opera.
IS_OT: navigator.userAgent.indexOf('Presto/') >
True if -o-transform is available as a CSS style, ie for Opera browsers based on a Presto engine with version 2.5 or later.
IS_SF: navigator.userAgent.indexOf('AppleWebKit/') >
True if the current browser is Safari.
IS_IOS: (navigator.userAgent.match(/(iPad|iPhone|iPod)/g) ? true false)
Returns true if the user agent is an iPad, iPhone or iPod.
IS_GC: navigator.userAgent.indexOf('Chrome/') >
True if the current browser is Google Chrome.
IS_CHROMEAPP: window.chrome !
True if the this is running inside a Chrome App.
IS_FF: navigator.userAgent.indexOf('Firefox/') >
True if the current browser is Firefox.
IS_VML: navigator.appName.toUpperCase()
True if the browser supports VML.
IS_SVG: navigator.appName.toUpperCase() !
True if the browser supports SVG.
NO_FO: !document.createElementNS || document.createElementNS(
   'http://www.w3.org/2000/svg',
   'foreignObject'
) !
True if foreignObject support is not available.
IS_WIN: navigator.appVersion.indexOf('Win') > 0
True if the client is a Windows.
IS_MAC: navigator.appVersion.indexOf('Mac') > 0
True if the client is a Mac.
IS_CHROMEOS: /\bCrOS\b/.test(navigator.userAgent)
True if the client is a Chrome OS.
IS_TOUCH: 'ontouchstart' in document.documentElement
True if this device supports touchstart/-move/-end events (Apple iOS, Android, Chromebook and Chrome Browser on touch-enabled devices).
IS_POINTER: window.PointerEvent !
True if this device supports Microsoft pointer events (always false on Macs).
defaultBundles: []
Contains the base names of the default bundles if mxLoadResources is false.
isBrowserSupported: function()
Returns true if the current browser is supported, that is, if mxClient.IS_VML or mxClient.IS_SVG is true.
link: function(rel,
href,
doc,
id)
Adds a link node to the head of the document.
loadResources: function(fn,
lan)
Helper method to load the default bundles if mxLoadResources is false.
include: function(src)
Dynamically adds a script node to the document header.
Extends mxEventSource to implement a graph component for the browser.
Extends mxEventSource to implement a application wrapper for a graph that adds actions, I/O using mxCodec, auto-layout using mxLayoutManager, command history using undoManager, and standard dialogs and widgets, eg.
add: function(basename,
lan,
callback)
Adds the default and current language properties file for the specified basename.
Basepath for all URLs in the core without trailing slash.
getSpecialBundle: function(basename,
lan)
Hook for subclassers to return the URL for the special bundle.
mxEditor.prototype.askZoomResource
Specifies the resource key for the zoom dialog.
mxEditor.prototype.lastSavedResource
Specifies the resource key for the last saved info.
mxEditor.prototype.currentFileResource
Specifies the resource key for the current file info.
mxEditor.prototype.propertiesResource
Specifies the resource key for the properties window title.
mxEditor.prototype.tasksResource
Specifies the resource key for the tasks window title.
mxEditor.prototype.helpResource
Specifies the resource key for the help window title.
mxEditor.prototype.outlineResource
Specifies the resource key for the outline window title.
mxElbowEdgeHandler.prototype.doubleClickOrientationResource
Specifies the resource key for the tooltip to be displayed on the single control point for routed edges.
errorResource: (mxClient.language ! =  'none') ? 'error' : ''
Specifies the resource key for the title of the error window.
closeResource: (mxClient.language ! =  'none') ? 'close' : ''
Specifies the resource key for the label of the close button.
mxGraphSelectionModel.prototype.doneResource
Specifies the resource key for the status message after a long operation.
mxGraphSelectionModel.prototype.updatingSelectionResource
Specifies the resource key for the status message while the selection is being updated.
mxGraphView.prototype.doneResource
Specifies the resource key for the status message after a long operation.
Specifies the resource key for the status message while the document is being updated.
mxGraph.prototype.containsValidationErrorsResource
Specifies the resource key for the warning message to be displayed when a collapsed cell contains validation errors.
mxGraph.prototype.alreadyConnectedResource
Specifies the resource key for the error message to be displayed in non-multigraphs when two vertices are already connected.
isLanguageSupported: function(lan)
Hook for subclassers to disable support for a given language.
diff --git a/docs/js-api/index/General20.html b/docs/js-api/index/General20.html index 8b2c91a22..f25f8f747 100644 --- a/docs/js-api/index/General20.html +++ b/docs/js-api/index/General20.html @@ -13,7 +13,7 @@ if (browserType) {document.write("
");if (browserV
Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
V
 VALID_COLOR, mxConstants
 validate, mxGraphView
 validateBackground, mxGraphView
 validateBackgroundImage, mxGraphView
 validateBackgroundPage, mxGraphView
 validateCell
 validateCellState, mxGraphView
 validateConnection
 validateEdge, mxGraph
 validateGraph, mxGraph
 validating, mxEditor
 Validation, mxGraph
 validationAlert, mxGraph
 validColor, mxCellMarker
 validNeighbors, mxMultiplicity
 validNeighborsAllowed, mxMultiplicity
 validState, mxCellMarker
 value
 valueChanged, mxCell
 valueForCellChanged, mxGraphModel
 values, mxStyleRegistry
 Variables
 VERSION, mxClient
 vertex, mxCell
 VERTEX_SELECTION_COLOR, mxConstants
 VERTEX_SELECTION_STROKEWIDTH, mxConstants
 vertexArray, mxFastOrganicLayout
 vertexLabelsMovable, mxGraph
 vertexMapper
 vertical, mxGuide
 verticalAlign, mxCellOverlay
 verticalLayout, mxCompactTreeLayout
 verticalOffset, mxVertexHandler
 verticalTextRotation, mxText
 view
 viewStateChanged, mxGraphView
 VIRTUAL_HANDLE, mxEvent
 virtualBendOpacity, mxEdgeHandler
 virtualBendsEnabled, mxEdgeHandler
 visible
 visibleSourceState, mxCellState
 visibleStateForCellChanged, mxGraphModel
 visibleTargetState, mxCellState
 visit
 visited
 VML_PREFIX, mxClient
 VML_SHADOWCOLOR, mxConstants
 vmlScale
-
VALID_COLOR: '#00FF00'
Defines the color to be used for the coloring valid connection previews.
mxGraphView.prototype.validate = function(cell)
Calls validateCell and validateCellState and updates the graphBounds using getBoundingBox.
mxGraphView.prototype.validateBackground = function()
Calls validateBackgroundImage and validateBackgroundPage.
mxGraphView.prototype.validateBackgroundImage = function()
Validates the background image.
mxGraphView.prototype.validateBackgroundPage = function()
Validates the background page.
mxGraph.prototype.validateCell = function(cell,
context)
Hook method for subclassers to return an error message for the given cell and validation context.
mxGraphView.prototype.validateCell = function(cell,
visible)
Recursively creates the cell state for the given cell if visible is true and the given cell is visible.
mxGraphView.prototype.validateCellState = function(cell,
recurse)
Validates and repaints the mxCellState for the given mxCell.
mxConnectionHandler.prototype.validateConnection = function(source,
target)
Returns the error message or an empty string if the connection for the given source target pair is not valid.
mxEdgeHandler.prototype.validateConnection = function(source,
target)
Returns the error message or an empty string if the connection for the given source, target pair is not valid.
mxGraph.prototype.validateEdge = function(edge,
source,
target)
Hook method for subclassers to return an error message for the given edge and terminals.
mxGraph.prototype.validateGraph = function(cell,
context)
Validates the graph by validating each descendant of the given cell or the root of the model.
mxEditor.prototype.validating
Specifies if mxGraph.validateGraph should automatically be invoked after each change.
mxGraph.prototype.validationAlert = function(message)
Displays the given validation error in a dialog.
mxCellMarker.prototype.validColor
Holds the valid marker color.
mxMultiplicity.prototype.validNeighbors
Holds an array of strings that specify the type of neighbor for which this rule applies.
mxMultiplicity.prototype.validNeighborsAllowed
Boolean indicating if the list of validNeighbors are those that are allowed for this rule or those that are not allowed for this rule.
mxCellMarker.prototype.validState
Holds the marked mxCellState if it is valid.
mxCell.prototype.value
Holds the user object.
mxMultiplicity.prototype.value
Optional string that specifies the value of the attribute to be passed to mxUtils.isNode to check if the rule applies to a cell.
mxCell.prototype.valueChanged = function(newValue)
Changes the user object after an in-place edit and returns the previous value.
mxGraphModel.prototype.valueForCellChanged = function(cell,
value)
Inner callback to update the user object of the given mxCell using mxCell.valueChanged and return the previous value, that is, the return value of mxCell.valueChanged.
values: []
Maps from strings to objects.
VERSION: '4.0.3'
Contains the current version of the mxGraph library.
mxCell.prototype.vertex
Specifies whether the cell is a vertex.
VERTEX_SELECTION_COLOR: '#00FF00'
Defines the color to be used for the selection border of vertices.
VERTEX_SELECTION_STROKEWIDTH: 1
Defines the strokewidth to be used for vertex selections.
mxFastOrganicLayout.prototype.vertexArray
An array of all vertices to be laid out.
mxGraph.prototype.vertexLabelsMovable
Specifies the return value for vertices in isLabelMovable.
mxGraphHierarchyModel.prototype.vertexMapper
Map from graph vertices to internal model nodes.
mxSwimlaneModel.prototype.vertexMapper
Map from graph vertices to internal model nodes.
mxGuide.prototype.vertical
Specifies if vertical guides are enabled.
mxCellOverlay.prototype.verticalAlign
Holds the vertical alignment for the overlay.
mxCompactTreeLayout.prototype.verticalLayout = function(node,
parent,
x0,
y0,
bounds)
mxVertexHandler.prototype.verticalOffset
The horizontal offset for the handles.
mxText.prototype.verticalTextRotation
Rotation for vertical text.
mxCellState.prototype.view
Reference to the enclosing mxGraphView.
mxGraph.prototype.view
Holds the mxGraphView that caches the mxCellStates for the cells.
mxTemporaryCellStates.prototype.view
Holds the width of the rectangle.
mxGraphView.prototype.viewStateChanged = function()
Invoked after scale and/or translate has changed.
VIRTUAL_HANDLE: -100000
Start index for the virtual handles in an mxMouseEvent.
mxEdgeHandler.prototype.virtualBendOpacity
Opacity to be used for virtual bends (see virtualBendsEnabled).
mxEdgeHandler.prototype.virtualBendsEnabled
Specifies if virtual bends should be added in the center of each segments.
mxCell.prototype.visible
Specifies whether the cell is visible.
mxShape.prototype.visible
Specifies if the shape is visible.
mxWindow.prototype.visible
Boolean flag that represents the visible state of the window.
mxCellState.prototype.visibleSourceState
Caches the visible source terminal state.
mxGraphModel.prototype.visibleStateForCellChanged = function(cell,
visible)
Inner callback to update the visible state of the given mxCell using mxCell.setCollapsed and return the previous visible state.
mxCellState.prototype.visibleTargetState
Caches the visible target terminal state.
mxDictionary.prototype.visit = function(visitor)
Visits all entries in the dictionary using the given function with the following signature: function(key, value) where key is a string and value is an object.
mxGraphHierarchyModel.prototype.visit = function(visitor,
dfsRoots,
trackAncestors,
seenNodes)
A depth first search through the internal heirarchy model.
mxSwimlaneModel.prototype.visit = function(visitor,
dfsRoots,
trackAncestors,
seenNodes)
A depth first search through the internal heirarchy model.
mxCompactTreeLayout.prototype.visited
Specifies if the tree should be moved to the top, left corner if it is inside a top-level layer.
WeightedCellSorter.prototype.visited
Whether or not this cell has been visited in the current assignment.
VML_PREFIX: 'v'
Prefix for VML namespace in node names.
VML_SHADOWCOLOR: 'gray'
Used for shadow color in filters where transparency is not supported (Microsoft Internet Explorer).
mxDoubleEllipse.prototype.vmlScale
Scale for improving the precision of VML rendering.
mxShape.prototype.vmlScale
Scale for improving the precision of VML rendering.
mxVmlCanvas2D.prototype.vmlScale
Specifies the scale used to draw VML shapes.
+
VALID_COLOR: '#00FF00'
Defines the color to be used for the coloring valid connection previews.
mxGraphView.prototype.validate = function(cell)
Calls validateCell and validateCellState and updates the graphBounds using getBoundingBox.
mxGraphView.prototype.validateBackground = function()
Calls validateBackgroundImage and validateBackgroundPage.
mxGraphView.prototype.validateBackgroundImage = function()
Validates the background image.
mxGraphView.prototype.validateBackgroundPage = function()
Validates the background page.
mxGraph.prototype.validateCell = function(cell,
context)
Hook method for subclassers to return an error message for the given cell and validation context.
mxGraphView.prototype.validateCell = function(cell,
visible)
Recursively creates the cell state for the given cell if visible is true and the given cell is visible.
mxGraphView.prototype.validateCellState = function(cell,
recurse)
Validates and repaints the mxCellState for the given mxCell.
mxConnectionHandler.prototype.validateConnection = function(source,
target)
Returns the error message or an empty string if the connection for the given source target pair is not valid.
mxEdgeHandler.prototype.validateConnection = function(source,
target)
Returns the error message or an empty string if the connection for the given source, target pair is not valid.
mxGraph.prototype.validateEdge = function(edge,
source,
target)
Hook method for subclassers to return an error message for the given edge and terminals.
mxGraph.prototype.validateGraph = function(cell,
context)
Validates the graph by validating each descendant of the given cell or the root of the model.
mxEditor.prototype.validating
Specifies if mxGraph.validateGraph should automatically be invoked after each change.
mxGraph.prototype.validationAlert = function(message)
Displays the given validation error in a dialog.
mxCellMarker.prototype.validColor
Holds the valid marker color.
mxMultiplicity.prototype.validNeighbors
Holds an array of strings that specify the type of neighbor for which this rule applies.
mxMultiplicity.prototype.validNeighborsAllowed
Boolean indicating if the list of validNeighbors are those that are allowed for this rule or those that are not allowed for this rule.
mxCellMarker.prototype.validState
Holds the marked mxCellState if it is valid.
mxCell.prototype.value
Holds the user object.
mxMultiplicity.prototype.value
Optional string that specifies the value of the attribute to be passed to mxUtils.isNode to check if the rule applies to a cell.
mxCell.prototype.valueChanged = function(newValue)
Changes the user object after an in-place edit and returns the previous value.
mxGraphModel.prototype.valueForCellChanged = function(cell,
value)
Inner callback to update the user object of the given mxCell using mxCell.valueChanged and return the previous value, that is, the return value of mxCell.valueChanged.
values: []
Maps from strings to objects.
VERSION: '4.0.4'
Contains the current version of the mxGraph library.
mxCell.prototype.vertex
Specifies whether the cell is a vertex.
VERTEX_SELECTION_COLOR: '#00FF00'
Defines the color to be used for the selection border of vertices.
VERTEX_SELECTION_STROKEWIDTH: 1
Defines the strokewidth to be used for vertex selections.
mxFastOrganicLayout.prototype.vertexArray
An array of all vertices to be laid out.
mxGraph.prototype.vertexLabelsMovable
Specifies the return value for vertices in isLabelMovable.
mxGraphHierarchyModel.prototype.vertexMapper
Map from graph vertices to internal model nodes.
mxSwimlaneModel.prototype.vertexMapper
Map from graph vertices to internal model nodes.
mxGuide.prototype.vertical
Specifies if vertical guides are enabled.
mxCellOverlay.prototype.verticalAlign
Holds the vertical alignment for the overlay.
mxCompactTreeLayout.prototype.verticalLayout = function(node,
parent,
x0,
y0,
bounds)
mxVertexHandler.prototype.verticalOffset
The horizontal offset for the handles.
mxText.prototype.verticalTextRotation
Rotation for vertical text.
mxCellState.prototype.view
Reference to the enclosing mxGraphView.
mxGraph.prototype.view
Holds the mxGraphView that caches the mxCellStates for the cells.
mxTemporaryCellStates.prototype.view
Holds the width of the rectangle.
mxGraphView.prototype.viewStateChanged = function()
Invoked after scale and/or translate has changed.
VIRTUAL_HANDLE: -100000
Start index for the virtual handles in an mxMouseEvent.
mxEdgeHandler.prototype.virtualBendOpacity
Opacity to be used for virtual bends (see virtualBendsEnabled).
mxEdgeHandler.prototype.virtualBendsEnabled
Specifies if virtual bends should be added in the center of each segments.
mxCell.prototype.visible
Specifies whether the cell is visible.
mxShape.prototype.visible
Specifies if the shape is visible.
mxWindow.prototype.visible
Boolean flag that represents the visible state of the window.
mxCellState.prototype.visibleSourceState
Caches the visible source terminal state.
mxGraphModel.prototype.visibleStateForCellChanged = function(cell,
visible)
Inner callback to update the visible state of the given mxCell using mxCell.setCollapsed and return the previous visible state.
mxCellState.prototype.visibleTargetState
Caches the visible target terminal state.
mxDictionary.prototype.visit = function(visitor)
Visits all entries in the dictionary using the given function with the following signature: function(key, value) where key is a string and value is an object.
mxGraphHierarchyModel.prototype.visit = function(visitor,
dfsRoots,
trackAncestors,
seenNodes)
A depth first search through the internal heirarchy model.
mxSwimlaneModel.prototype.visit = function(visitor,
dfsRoots,
trackAncestors,
seenNodes)
A depth first search through the internal heirarchy model.
mxCompactTreeLayout.prototype.visited
Specifies if the tree should be moved to the top, left corner if it is inside a top-level layer.
WeightedCellSorter.prototype.visited
Whether or not this cell has been visited in the current assignment.
VML_PREFIX: 'v'
Prefix for VML namespace in node names.
VML_SHADOWCOLOR: 'gray'
Used for shadow color in filters where transparency is not supported (Microsoft Internet Explorer).
mxDoubleEllipse.prototype.vmlScale
Scale for improving the precision of VML rendering.
mxShape.prototype.vmlScale
Scale for improving the precision of VML rendering.
mxVmlCanvas2D.prototype.vmlScale
Specifies the scale used to draw VML shapes.
diff --git a/docs/js-api/index/Variables16.html b/docs/js-api/index/Variables16.html index da1285cd0..2ebd5ce11 100644 --- a/docs/js-api/index/Variables16.html +++ b/docs/js-api/index/Variables16.html @@ -17,7 +17,7 @@ if (browserType) {document.write("
");if (browserV -
VALID_COLOR: '#00FF00'
Defines the color to be used for the coloring valid connection previews.
mxEditor.prototype.validating
Specifies if mxGraph.validateGraph should automatically be invoked after each change.
mxCellMarker.prototype.validColor
Holds the valid marker color.
mxMultiplicity.prototype.validNeighbors
Holds an array of strings that specify the type of neighbor for which this rule applies.
mxMultiplicity.prototype.validNeighborsAllowed
Boolean indicating if the list of validNeighbors are those that are allowed for this rule or those that are not allowed for this rule.
mxCellMarker.prototype.validState
Holds the marked mxCellState if it is valid.
mxCell.prototype.value
Holds the user object.
mxMultiplicity.prototype.value
Optional string that specifies the value of the attribute to be passed to mxUtils.isNode to check if the rule applies to a cell.
values: []
Maps from strings to objects.
VERSION: '4.0.3'
Contains the current version of the mxGraph library.
mxCell.prototype.vertex
Specifies whether the cell is a vertex.
VERTEX_SELECTION_COLOR: '#00FF00'
Defines the color to be used for the selection border of vertices.
VERTEX_SELECTION_STROKEWIDTH: 1
Defines the strokewidth to be used for vertex selections.
mxFastOrganicLayout.prototype.vertexArray
An array of all vertices to be laid out.
mxGraph.prototype.vertexLabelsMovable
Specifies the return value for vertices in isLabelMovable.
mxGraphHierarchyModel.prototype.vertexMapper
Map from graph vertices to internal model nodes.
mxSwimlaneModel.prototype.vertexMapper
Map from graph vertices to internal model nodes.
mxGuide.prototype.vertical
Specifies if vertical guides are enabled.
mxCellOverlay.prototype.verticalAlign
Holds the vertical alignment for the overlay.
mxVertexHandler.prototype.verticalOffset
The horizontal offset for the handles.
mxText.prototype.verticalTextRotation
Rotation for vertical text.
mxCellState.prototype.view
Reference to the enclosing mxGraphView.
mxGraph.prototype.view
Holds the mxGraphView that caches the mxCellStates for the cells.
mxTemporaryCellStates.prototype.view
Holds the width of the rectangle.
VIRTUAL_HANDLE: -100000
Start index for the virtual handles in an mxMouseEvent.
mxEdgeHandler.prototype.virtualBendOpacity
Opacity to be used for virtual bends (see virtualBendsEnabled).
mxEdgeHandler.prototype.virtualBendsEnabled
Specifies if virtual bends should be added in the center of each segments.
mxCell.prototype.visible
Specifies whether the cell is visible.
mxShape.prototype.visible
Specifies if the shape is visible.
mxWindow.prototype.visible
Boolean flag that represents the visible state of the window.
mxCellState.prototype.visibleSourceState
Caches the visible source terminal state.
mxCellState.prototype.visibleTargetState
Caches the visible target terminal state.
mxCompactTreeLayout.prototype.visited
Specifies if the tree should be moved to the top, left corner if it is inside a top-level layer.
WeightedCellSorter.prototype.visited
Whether or not this cell has been visited in the current assignment.
VML_PREFIX: 'v'
Prefix for VML namespace in node names.
VML_SHADOWCOLOR: 'gray'
Used for shadow color in filters where transparency is not supported (Microsoft Internet Explorer).
mxDoubleEllipse.prototype.vmlScale
Scale for improving the precision of VML rendering.
mxShape.prototype.vmlScale
Scale for improving the precision of VML rendering.
mxVmlCanvas2D.prototype.vmlScale
Specifies the scale used to draw VML shapes.
+
VALID_COLOR: '#00FF00'
Defines the color to be used for the coloring valid connection previews.
mxEditor.prototype.validating
Specifies if mxGraph.validateGraph should automatically be invoked after each change.
mxCellMarker.prototype.validColor
Holds the valid marker color.
mxMultiplicity.prototype.validNeighbors
Holds an array of strings that specify the type of neighbor for which this rule applies.
mxMultiplicity.prototype.validNeighborsAllowed
Boolean indicating if the list of validNeighbors are those that are allowed for this rule or those that are not allowed for this rule.
mxCellMarker.prototype.validState
Holds the marked mxCellState if it is valid.
mxCell.prototype.value
Holds the user object.
mxMultiplicity.prototype.value
Optional string that specifies the value of the attribute to be passed to mxUtils.isNode to check if the rule applies to a cell.
values: []
Maps from strings to objects.
VERSION: '4.0.4'
Contains the current version of the mxGraph library.
mxCell.prototype.vertex
Specifies whether the cell is a vertex.
VERTEX_SELECTION_COLOR: '#00FF00'
Defines the color to be used for the selection border of vertices.
VERTEX_SELECTION_STROKEWIDTH: 1
Defines the strokewidth to be used for vertex selections.
mxFastOrganicLayout.prototype.vertexArray
An array of all vertices to be laid out.
mxGraph.prototype.vertexLabelsMovable
Specifies the return value for vertices in isLabelMovable.
mxGraphHierarchyModel.prototype.vertexMapper
Map from graph vertices to internal model nodes.
mxSwimlaneModel.prototype.vertexMapper
Map from graph vertices to internal model nodes.
mxGuide.prototype.vertical
Specifies if vertical guides are enabled.
mxCellOverlay.prototype.verticalAlign
Holds the vertical alignment for the overlay.
mxVertexHandler.prototype.verticalOffset
The horizontal offset for the handles.
mxText.prototype.verticalTextRotation
Rotation for vertical text.
mxCellState.prototype.view
Reference to the enclosing mxGraphView.
mxGraph.prototype.view
Holds the mxGraphView that caches the mxCellStates for the cells.
mxTemporaryCellStates.prototype.view
Holds the width of the rectangle.
VIRTUAL_HANDLE: -100000
Start index for the virtual handles in an mxMouseEvent.
mxEdgeHandler.prototype.virtualBendOpacity
Opacity to be used for virtual bends (see virtualBendsEnabled).
mxEdgeHandler.prototype.virtualBendsEnabled
Specifies if virtual bends should be added in the center of each segments.
mxCell.prototype.visible
Specifies whether the cell is visible.
mxShape.prototype.visible
Specifies if the shape is visible.
mxWindow.prototype.visible
Boolean flag that represents the visible state of the window.
mxCellState.prototype.visibleSourceState
Caches the visible source terminal state.
mxCellState.prototype.visibleTargetState
Caches the visible target terminal state.
mxCompactTreeLayout.prototype.visited
Specifies if the tree should be moved to the top, left corner if it is inside a top-level layer.
WeightedCellSorter.prototype.visited
Whether or not this cell has been visited in the current assignment.
VML_PREFIX: 'v'
Prefix for VML namespace in node names.
VML_SHADOWCOLOR: 'gray'
Used for shadow color in filters where transparency is not supported (Microsoft Internet Explorer).
mxDoubleEllipse.prototype.vmlScale
Scale for improving the precision of VML rendering.
mxShape.prototype.vmlScale
Scale for improving the precision of VML rendering.
mxVmlCanvas2D.prototype.vmlScale
Specifies the scale used to draw VML shapes.
diff --git a/docs/js-api/javascript/searchdata.js b/docs/js-api/javascript/searchdata.js index 64198859e..35c52bfd9 100644 --- a/docs/js-api/javascript/searchdata.js +++ b/docs/js-api/javascript/searchdata.js @@ -1,34 +1,4 @@ var indexSectionsWithContent = { - "Functions": { - "Symbols": false, - "Numbers": false, - "A": true, - "B": true, - "C": true, - "D": true, - "E": true, - "F": true, - "G": true, - "H": true, - "I": true, - "J": true, - "K": true, - "L": true, - "M": true, - "N": true, - "O": true, - "P": true, - "Q": true, - "R": true, - "S": true, - "T": true, - "U": true, - "V": true, - "W": true, - "X": false, - "Y": false, - "Z": true - }, "Events": { "Symbols": false, "Numbers": false, @@ -59,10 +29,40 @@ var indexSectionsWithContent = { "Y": false, "Z": false }, - "Cookies": { + "Variables": { "Symbols": false, "Numbers": false, - "A": false, + "A": true, + "B": true, + "C": true, + "D": true, + "E": true, + "F": true, + "G": true, + "H": true, + "I": true, + "J": true, + "K": true, + "L": true, + "M": true, + "N": true, + "O": true, + "P": true, + "Q": true, + "R": true, + "S": true, + "T": true, + "U": true, + "V": true, + "W": true, + "X": true, + "Y": true, + "Z": true + }, + "Files": { + "Symbols": false, + "Numbers": false, + "A": true, "B": false, "C": false, "D": false, @@ -89,10 +89,10 @@ var indexSectionsWithContent = { "Y": false, "Z": false }, - "Files": { + "Cookies": { "Symbols": false, "Numbers": false, - "A": true, + "A": false, "B": false, "C": false, "D": false, @@ -149,6 +149,36 @@ var indexSectionsWithContent = { "Y": true, "Z": true }, + "Functions": { + "Symbols": false, + "Numbers": false, + "A": true, + "B": true, + "C": true, + "D": true, + "E": true, + "F": true, + "G": true, + "H": true, + "I": true, + "J": true, + "K": true, + "L": true, + "M": true, + "N": true, + "O": true, + "P": true, + "Q": true, + "R": true, + "S": true, + "T": true, + "U": true, + "V": true, + "W": true, + "X": false, + "Y": false, + "Z": true + }, "Classes": { "Symbols": false, "Numbers": false, @@ -178,35 +208,5 @@ var indexSectionsWithContent = { "X": false, "Y": false, "Z": false - }, - "Variables": { - "Symbols": false, - "Numbers": false, - "A": true, - "B": true, - "C": true, - "D": true, - "E": true, - "F": true, - "G": true, - "H": true, - "I": true, - "J": true, - "K": true, - "L": true, - "M": true, - "N": true, - "O": true, - "P": true, - "Q": true, - "R": true, - "S": true, - "T": true, - "U": true, - "V": true, - "W": true, - "X": true, - "Y": true, - "Z": true } } \ No newline at end of file diff --git a/docs/manual.html b/docs/manual.html index f358439e3..37e3005d7 100644 --- a/docs/manual.html +++ b/docs/manual.html @@ -9,7 +9,7 @@

mxGraph User Manual – JavaScript Client



-

mxGraph Version 4.0.3 – 26. July 2019

+

mxGraph Version 4.0.4 – 20. August 2019

Copyright (c) JGraph Ltd 2006-2017


All rights reserved. No part of this publication may be diff --git a/docs/manual_javavis.html b/docs/manual_javavis.html index 007114f4c..bbc9df10d 100644 --- a/docs/manual_javavis.html +++ b/docs/manual_javavis.html @@ -9,7 +9,7 @@

JGraphX (JGraph 6) User Manual



-

JGraphX Version 4.0.3 – 26. July 2019

+

JGraphX Version 4.0.4 – 20. August 2019

Copyright (c) JGraph Ltd 2006-2017


All rights reserved. No part of this publication may be diff --git a/docs/php-api/files/canvas/mxGdCanvas-php.html b/docs/php-api/files/canvas/mxGdCanvas-php.html deleted file mode 100644 index 2e72975c6..000000000 --- a/docs/php-api/files/canvas/mxGdCanvas-php.html +++ /dev/null @@ -1,125 +0,0 @@ - - -/home/david/project/mxgraph2/build/mxgraph/php/src/canvas/mxGdCanvas.php - - - - - - - - - -

mxGdCanvas.php

Summary
mxGdCanvas.php
Variables
antialiasSpecifies if image aspect should be preserved in drawImage.
mxGdCanvasCanvas for drawing graphs using the GD library.
Variables
antialiasSpecifies if antialiasing should be enabled.
enableTtfSpecifies if truetype fonts are enabled if available.
shadowColorHolds the color object for the shadow color defined in mxConstants.W3C_SHADOWCOLOR.
imageCacheHolds the image cache.
imageHolds the image.
heightHolds the height.
Functions
mxGdCanvasConstructs a new GD canvas.
loadImageReturns an image instance for the given URL.
drawCellDraws the given cell state.
drawLabelDraws the given label.
drawMarkerDraws the specified marker.
getImageReturns an image that represents this canvas.
setImageSets the image that represents the canvas.
getImageForStyleReturns an image that represents this canvas.
drawLineDraws the given line.
drawShapeDraws the given shape.
drawPolygonDraws the given polygon.
drawRectDraws then given rectangle.
drawOvalDraws then given ellipse.
drawRhombusDraws then given rhombus.
drawTriangleDraws then given triangle.
drawHexagonDraws then given haxagon.
drawCylinderDraws then given cylinder.
drawCloudDraws then given cloud.
drawActorDraws then given cloud.
drawImageDraws a given image.
drawText
getTrueTypeFontReturns the truetype font to be used to draw the text with the given style.
getTrueTypeFontSizeReturns the truetype font size to be used to draw the text with the given style.
drawTtfText
drawTtxTextLineDraws a single line of the given true type font text.
getFixedFontSizeReturns the fixed font size for GD (1 t0 5) for the given font properties
drawString
drawFixedTextLineDraws the given fixed text line.
getColorAllocates the given color and returns a reference to it.
offsetCreates a new array of x, y sequences where the each coordinate is translated by dx and dy, respectively.
destroyDestroys all allocated resources.
drawGraphDraws the given graph using this canvas.
- -

Variables

- -

antialias

Specifies if image aspect should be preserved in drawImage.  Default is true.

- -

mxGdCanvas

Canvas for drawing graphs using the GD library.  This class requires GD support (GDLib).  Note that rounded corners, gradients and word wrapping are not supported by GD.

Summary
Variables
antialiasSpecifies if antialiasing should be enabled.
enableTtfSpecifies if truetype fonts are enabled if available.
shadowColorHolds the color object for the shadow color defined in mxConstants.W3C_SHADOWCOLOR.
imageCacheHolds the image cache.
imageHolds the image.
heightHolds the height.
Functions
mxGdCanvasConstructs a new GD canvas.
loadImageReturns an image instance for the given URL.
drawCellDraws the given cell state.
drawLabelDraws the given label.
drawMarkerDraws the specified marker.
getImageReturns an image that represents this canvas.
setImageSets the image that represents the canvas.
getImageForStyleReturns an image that represents this canvas.
drawLineDraws the given line.
drawShapeDraws the given shape.
drawPolygonDraws the given polygon.
drawRectDraws then given rectangle.
drawOvalDraws then given ellipse.
drawRhombusDraws then given rhombus.
drawTriangleDraws then given triangle.
drawHexagonDraws then given haxagon.
drawCylinderDraws then given cylinder.
drawCloudDraws then given cloud.
drawActorDraws then given cloud.
drawImageDraws a given image.
drawText
getTrueTypeFontReturns the truetype font to be used to draw the text with the given style.
getTrueTypeFontSizeReturns the truetype font size to be used to draw the text with the given style.
drawTtfText
drawTtxTextLineDraws a single line of the given true type font text.
getFixedFontSizeReturns the fixed font size for GD (1 t0 5) for the given font properties
drawString
drawFixedTextLineDraws the given fixed text line.
getColorAllocates the given color and returns a reference to it.
offsetCreates a new array of x, y sequences where the each coordinate is translated by dx and dy, respectively.
destroyDestroys all allocated resources.
drawGraphDraws the given graph using this canvas.
- -

Variables

- -

antialias

var $antialias

Specifies if antialiasing should be enabled.  Default is false.  NOTE: GD has a known bug where strokeWidths are ignored if this is enabled.

- -

enableTtf

var $enableTtf

Specifies if truetype fonts are enabled if available.  Default is mxConstants.TTF_ENABLED.

- -

shadowColor

var $shadowColor

Holds the color object for the shadow color defined in mxConstants.W3C_SHADOWCOLOR.

- -

imageCache

var $imageCache

Holds the image cache.

- -

image

var $image

Holds the image.

- -

height

Holds the height.

- -

Functions

- -

mxGdCanvas

function mxGdCanvas($width =  0,
$height =  0,
$scale =  1,
$background =  null,
$imageBasePath =  "")

Constructs a new GD canvas.  Use a HTML color definition for the optional background parameter, eg. white or #FFFFFF.  The buffered image is only created if the given width and height are greater than 0.

- -

loadImage

function loadImage($image)

Returns an image instance for the given URL.  If the URL has been loaded before than an instance of the same instance is returned as in the previous call.

- -

drawCell

function drawCell($state)

Draws the given cell state.

- -

drawLabel

function drawLabel($text,  
$state,  
$html =  false)

Draws the given label.

- -

drawMarker

function drawMarker($type,
$p0,
$pe,
$size,
$stroke)

Draws the specified marker.

- -

getImage

function getImage()

Returns an image that represents this canvas.

- -

setImage

function setImage($img)

Sets the image that represents the canvas.

- -

getImageForStyle

function getImageForStyle($style)

Returns an image that represents this canvas.

- -

drawLine

function drawLine($x0,  
$y0,  
$x1,  
$y1,  
$stroke =  null,
$dashed =  false)

Draws the given line.

- -

drawShape

function drawShape($x,
$y,
$w,
$h,
$style)

Draws the given shape.

- -

drawPolygon

function drawPolygon($points,  
$fill =  null,
$stroke =  null,
$shadow =  false)

Draws the given polygon.

- -

drawRect

function drawRect($x,  
$y,  
$w,  
$h,  
$fill =  null,
$stroke =  null,
$shadow =  false,
$rounded =  false,
$dashed =  false)

Draws then given rectangle.  Rounded is currently ignored.

- -

drawOval

function drawOval($x,  
$y,  
$w,  
$h,  
$fill =  null,
$stroke =  null,
$shadow =  false)

Draws then given ellipse.

- -

drawRhombus

function drawRhombus($x,  
$y,  
$w,  
$h,  
$fill =  null,
$stroke =  null,
$shadow =  false)

Draws then given rhombus.

- -

drawTriangle

function drawTriangle($x,  
$y,  
$w,  
$h,  
$fill =  null,
$stroke =  null,
$shadow =  false,
$direction =  null)

Draws then given triangle.

- -

drawHexagon

function drawHexagon($x,  
$y,  
$w,  
$h,  
$fill =  null,
$stroke =  null,
$shadow =  false,
$direction =  null)

Draws then given haxagon.

- -

drawCylinder

function drawCylinder($x,  
$y,  
$w,  
$h,  
$fill =  null,
$stroke =  null,
$shadow =  false)

Draws then given cylinder.

- -

drawCloud

function drawCloud($x,  
$y,  
$w,  
$h,  
$fill =  null,
$stroke =  null,
$shadow = false)

Draws then given cloud.

- -

drawActor

function drawActor($x,  
$y,  
$w,  
$h,  
$fill =  null,
$stroke =  null,
$shadow = false)

Draws then given cloud.

- -

drawImage

function drawImage($x,  
$y,  
$w,  
$h,  
$image,  
$aspect =  true,
$flipH =  false,
$flipV =  false)

Draws a given image.

- -

drawText

function drawText($string,
$x,
$y,
$w,
$h,
$style)
- -

getTrueTypeFont

function getTrueTypeFont($style)

Returns the truetype font to be used to draw the text with the given style.

- -

getTrueTypeFontSize

function getTrueTypeFontSize($style)

Returns the truetype font size to be used to draw the text with the given style.  This returns the fontSize in the style of the default fontsize multiplied with <ttfSizeFactor>.

- -

drawTtfText

function drawTtfText($string,
$x,
$y,
$w,
$h,
$style)
- -

drawTtxTextLine

Draws a single line of the given true type font text.  The w and h are the width and height of the complete text box that contains this line.

- -

getFixedFontSize

function getFixedFontSize($fontSize,  
$fontFamily,  
$fontStyle = null)

Returns the fixed font size for GD (1 t0 5) for the given font properties

- -

drawString

- -

drawFixedTextLine

function drawFixedTextLine($text,  
$font,  
$left,  
$top,  
$color,  
$horizontal =  true)

Draws the given fixed text line.

- -

getColor

function getColor($hex,  
$default =  null)

Allocates the given color and returns a reference to it.  Supported color names are black, red, green, blue, orange, yellow, pink, turqoise, white, gray and any hex codes between 000000 and FFFFFF.

- -

offset

function offset($points,  
$dx =  null,
$dy =  null)

Creates a new array of x, y sequences where the each coordinate is translated by dx and dy, respectively.

- -

destroy

function destroy()

Destroys all allocated resources.

- -

drawGraph

public static function drawGraph($graph,  
$clip =  null,
$bg =  null)

Draws the given graph using this canvas.

- -
- - - - - - - - - - -
var $antialias
Specifies if antialiasing should be enabled.
var $enableTtf
Specifies if truetype fonts are enabled if available.
var $shadowColor
Holds the color object for the shadow color defined in mxConstants.W3C_SHADOWCOLOR.
public static $W3C_SHADOWCOLOR
Defines the color to be used to draw shadows in DOM documents.
var $imageCache
Holds the image cache.
var $image
Holds the image.
function mxGdCanvas($width =  0,
$height =  0,
$scale =  1,
$background =  null,
$imageBasePath =  "")
Constructs a new GD canvas.
function loadImage($image)
Returns an image instance for the given URL.
function drawCell($state)
Draws the given cell state.
function drawLabel($text,  
$state,  
$html =  false)
Draws the given label.
function drawMarker($type,
$p0,
$pe,
$size,
$stroke)
Draws the specified marker.
function getImage()
Returns an image that represents this canvas.
function setImage($img)
Sets the image that represents the canvas.
function getImageForStyle($style)
Returns an image that represents this canvas.
function drawLine($x0,  
$y0,  
$x1,  
$y1,  
$stroke =  null,
$dashed =  false)
Draws the given line.
function drawShape($x,
$y,
$w,
$h,
$style)
Draws the given shape.
function drawPolygon($points,  
$fill =  null,
$stroke =  null,
$shadow =  false)
Draws the given polygon.
function drawRect($x,  
$y,  
$w,  
$h,  
$fill =  null,
$stroke =  null,
$shadow =  false,
$rounded =  false,
$dashed =  false)
Draws then given rectangle.
function drawOval($x,  
$y,  
$w,  
$h,  
$fill =  null,
$stroke =  null,
$shadow =  false)
Draws then given ellipse.
function drawRhombus($x,  
$y,  
$w,  
$h,  
$fill =  null,
$stroke =  null,
$shadow =  false)
Draws then given rhombus.
function drawTriangle($x,  
$y,  
$w,  
$h,  
$fill =  null,
$stroke =  null,
$shadow =  false,
$direction =  null)
Draws then given triangle.
function drawHexagon($x,  
$y,  
$w,  
$h,  
$fill =  null,
$stroke =  null,
$shadow =  false,
$direction =  null)
Draws then given haxagon.
function drawCylinder($x,  
$y,  
$w,  
$h,  
$fill =  null,
$stroke =  null,
$shadow =  false)
Draws then given cylinder.
function drawCloud($x,  
$y,  
$w,  
$h,  
$fill =  null,
$stroke =  null,
$shadow = false)
Draws then given cloud.
function drawActor($x,  
$y,  
$w,  
$h,  
$fill =  null,
$stroke =  null,
$shadow = false)
Draws then given cloud.
function drawImage($x,  
$y,  
$w,  
$h,  
$image,  
$aspect =  true,
$flipH =  false,
$flipV =  false)
Draws a given image.
function drawText($string,
$x,
$y,
$w,
$h,
$style)
function getTrueTypeFont($style)
Returns the truetype font to be used to draw the text with the given style.
function getTrueTypeFontSize($style)
Returns the truetype font size to be used to draw the text with the given style.
function drawTtfText($string,
$x,
$y,
$w,
$h,
$style)
function getFixedFontSize($fontSize,  
$fontFamily,  
$fontStyle = null)
Returns the fixed font size for GD (1 t0 5) for the given font properties
function drawFixedTextLine($text,  
$font,  
$left,  
$top,  
$color,  
$horizontal =  true)
Draws the given fixed text line.
function getColor($hex,  
$default =  null)
Allocates the given color and returns a reference to it.
function offset($points,  
$dx =  null,
$dy =  null)
Creates a new array of x, y sequences where the each coordinate is translated by dx and dy, respectively.
function destroy()
Destroys all allocated resources.
public static function drawGraph($graph,  
$clip =  null,
$bg =  null)
Draws the given graph using this canvas.
public static $TTF_ENABLED
Whether TrueType fonts should be enabled in the mxGdCanvas by default.
- - - - - - - - \ No newline at end of file diff --git a/docs/php-api/files/canvas/mxHtmlCanvas-php.html b/docs/php-api/files/canvas/mxHtmlCanvas-php.html deleted file mode 100644 index 0eeea661d..000000000 --- a/docs/php-api/files/canvas/mxHtmlCanvas-php.html +++ /dev/null @@ -1,63 +0,0 @@ - - -mxHtmlCanvas - - - - - - - - - -

mxHtmlCanvas

Canvas for drawing graphs using HTML.

Summary
mxHtmlCanvasCanvas for drawing graphs using HTML.
Variables
htmlHolds the html markup.
Functions
mxGdCanvasConstructs a new GD canvas.
getHtmlGets the HTML that represents the canvas.
outAdds the specified string to the output.
drawLineDraws the specified line.
drawShapeDraws the specified shape.
drawImageDraws the specified image.
drawTextDraws the specified text.
destroyDestroy all allocated resources.
drawGraphDraws the given graph using this canvas.
- -

Variables

- -

html

var $html

Holds the html markup.

- -

Functions

- -

mxGdCanvas

Constructs a new GD canvas.  Use a HTML color definition for the optional background parameter, eg. white or #FFFFFF.

- -

getHtml

function getHtml()

Gets the HTML that represents the canvas.

- -

out

function out($string)

Adds the specified string to the output.

- -

drawLine

function drawLine($x0,  
$y0,  
$x1,  
$y1,  
$stroke =  null,
$dashed =  false)

Draws the specified line.

- -

drawShape

function drawShape($shape,  
$x,  
$y,  
$w,  
$h,  
$stroke = null,
$fill = null)

Draws the specified shape.

- -

drawImage

function drawImage($x,  
$y,  
$w,  
$h,  
$image,  
$aspect =  true,
$flipH =  false,
$flipV =  false)

Draws the specified image.

- -

drawText

function drawText($string,
$x,
$y,
$w,
$h,
$style)

Draws the specified text.

- -

destroy

function destroy()

Destroy all allocated resources.

- -

drawGraph

public static function drawGraph($graph,  
$clip =  null,
$bg =  null)

Draws the given graph using this canvas.

- -
- - - - - - - - - - -
var $html
Holds the html markup.
function getHtml()
Gets the HTML that represents the canvas.
function out($string)
Adds the specified string to the output.
function drawLine($x0,  
$y0,  
$x1,  
$y1,  
$stroke =  null,
$dashed =  false)
Draws the specified line.
function drawShape($shape,  
$x,  
$y,  
$w,  
$h,  
$stroke = null,
$fill = null)
Draws the specified shape.
function drawImage($x,  
$y,  
$w,  
$h,  
$image,  
$aspect =  true,
$flipH =  false,
$flipV =  false)
Draws the specified image.
function drawText($string,
$x,
$y,
$w,
$h,
$style)
Draws the specified text.
function destroy()
Destroy all allocated resources.
public static function drawGraph($graph,  
$clip =  null,
$bg =  null)
Draws the given graph using this canvas.
- - - - - - - - \ No newline at end of file diff --git a/docs/php-api/files/index-txt.html b/docs/php-api/files/index-txt.html deleted file mode 100644 index 390bae5cd..000000000 --- a/docs/php-api/files/index-txt.html +++ /dev/null @@ -1,39 +0,0 @@ - - -API Specification - - - - - - - - - -

API Specification

Overview

This PHP library is divided into 4 packages.  The top-level <mxServer> class dynamically includes everything else.

The view and model packages implement the graph component, represented by mxGraph.  It refers to a mxGraphModel which contains mxCells and caches the state of the cells in a mxGraphView.  The cells are painted using a <mxCanvas> based on the appearance defined in mxStylesheet.

The io package implements a generic mxObjectCodec for turning PHP objects into XML.  The main class is mxCodecmxCodecRegistry is the global registry for custom codecs.

Requirements

The I/O module requires libxml support.  The mxGdCanvas requires GD support.

- -
- - - - - - - - - - -
Implements a graph component.
Cells are the elements of the graph model.
Cells are the elements of the graph model.
Implements a view for the graph.
Defines the appearance of the cells in a graph.
XML codec for PHP object graphs.
XML codec for PHP object graphs.
A class to register codecs for objects.
Canvas for drawing graphs using the GD library.
- - - - - - - - \ No newline at end of file diff --git a/docs/php-api/files/io/mxCellCodec-php.html b/docs/php-api/files/io/mxCellCodec-php.html deleted file mode 100644 index f886abd9b..000000000 --- a/docs/php-api/files/io/mxCellCodec-php.html +++ /dev/null @@ -1,43 +0,0 @@ - - -mxCellCodec - - - - - - - - - -

mxCellCodec

Codec for mxCells.  This class is created and registered dynamically at load time and used implicitely via mxCodec and the mxCodecRegistry.

Transient Fields

  • children
  • edges
  • states
  • overlay
  • mxTransient

Reference Fields

  • parent
  • source
  • target
Summary
mxCellCodecCodec for mxCells.
Functions
mxObjectCodecConstructs a new codec for the specified template object.
- -

Functions

- -

mxObjectCodec

Constructs a new codec for the specified template object.  The variables in the optional exclude array are ignored by the codec.  Variables in the optional idrefs array are turned into references in the XML.  The optional mapping may be used to map from variable names to XML attributes.

Parameters

templatePrototypical instance of the object to be encoded/decoded.
excludeOptional array of fieldnames to be ignored.
idrefsOptional array of fieldnames to be converted to/from references.
mappingOptional mapping from field- to attributenames.
- -
- - - - - - - - - - -
Cells are the elements of the graph model.
XML codec for PHP object graphs.
A class to register codecs for objects.
- - - - - - - - \ No newline at end of file diff --git a/docs/php-api/files/io/mxCodec-php.html b/docs/php-api/files/io/mxCodec-php.html deleted file mode 100644 index 6403b358d..000000000 --- a/docs/php-api/files/io/mxCodec-php.html +++ /dev/null @@ -1,79 +0,0 @@ - - -mxCodec - - - - - - - - - -

mxCodec

XML codec for PHP object graphs.  In order to resolve forward references when reading files the XML document that contains the data must be passed to the constructor.

Summary
mxCodecXML codec for PHP object graphs.
Variables
documentThe owner document of the codec.
objectsMaps from IDs to objects.
elementsMaps from IDs to elements.
encodeDefaultsSpecifies if default values should be encoded.
Functions
mxGraphViewHtmlReaderConstructs a new HTML graph view reader.
putObjectAssoiates the given object with the given ID.
getObjectReturns the decoded object for the element with the specified ID in document.
lookupHook for subclassers to implement a custom lookup mechanism for cell IDs.
getElementByIdReturns the element with the given ID from document.
addElementAdds the given element to elements if it has an ID.
getIdReturns the ID of the specified object.
referenceHook for subclassers to implement a custom method for retrieving IDs from objects.
encodeEncodes the specified object and returns the resulting XML node.
decodeDecodes the given XML node.
encodeCellEncoding of cell hierarchies is built-into the core, but is a higher-level function that needs to be explicitely used by the respective object encoders (eg.
decodeCellDecodes cells that have been encoded using inversion, ie.
insertIntoGraphInserts the given cell into its parent and terminal cells.
setAttributeSets the attribute on the specified node to value.
- -

Variables

- -

document

var $document

The owner document of the codec.

- -

objects

var $objects

Maps from IDs to objects.

- -

elements

var $elements

Maps from IDs to elements.

- -

encodeDefaults

var $encodeDefaults

Specifies if default values should be encoded.  Default is false.

- -

Functions

- -

mxGraphViewHtmlReader

Constructs a new HTML graph view reader.

- -

putObject

function putObject($id,
$object)

Assoiates the given object with the given ID.

Parameters

idID for the object to be associated with.
objObject to be associated with the ID.
- -

getObject

function getObject($id)

Returns the decoded object for the element with the specified ID in document.  If the object is not known then lookup is used to find an object.  If no object is found, then the element with the respective ID from the document is parsed using decode.

- -

lookup

function lookup($id)

Hook for subclassers to implement a custom lookup mechanism for cell IDs.  This implementation always returns null.

Parameters

idID of the object to be returned.
- -

getElementById

function getElementById($id)

Returns the element with the given ID from document.

Parameters

idString that contains the ID.
- -

addElement

function addElement($node)

Adds the given element to elements if it has an ID.

- -

getId

function getId($obj)

Returns the ID of the specified object.  This implementation calls reference first and if that returns null handles the object as an mxCell by returning their IDs using mxCell.getId.  If no ID exists for the given cell, then an on-the-fly ID is generated using mxCellPath.create.

Parameters

objObject to return the ID for.
- -

reference

function reference($obj)

Hook for subclassers to implement a custom method for retrieving IDs from objects.  This implementation always returns null.

Parameters

objObject whose ID should be returned.
- -

encode

function encode($obj)

Encodes the specified object and returns the resulting XML node.

Parameters

objObject to be encoded.
- -

decode

function decode($node,  
$into =  null)

Decodes the given XML node.  The optional “into” argument specifies an existing object to be used.  If no object is given, then a new instance is created using the constructor from the codec.

The function returns the passed in object or the new instance if no object was given.

Parameters

nodeXML node to be decoded.
intoOptional object to be decodec into.
- -

encodeCell

function encodeCell($cell,  
$node,  
$includeChildren = true)

Encoding of cell hierarchies is built-into the core, but is a higher-level function that needs to be explicitely used by the respective object encoders (eg.  mxModelCodec, <mxChildChangeCodec> and <mxRootChangeCodec>).  This implementation writes the given cell and its children as a (flat) sequence into the given node.  The children are not encoded if the optional includeChildren is false.  The function is in charge of adding the result into the given node and has no return value.

Parameters

cellmxCell to be encoded.
nodeParent XML node to add the encoded cell into.
includeChildrenOptional boolean indicating if the function should include all descendents.  Default is true.
- -

decodeCell

function decodeCell($node,  
$restoreStructures =  true)

Decodes cells that have been encoded using inversion, ie. where the user object is the enclosing node in the XML, and restores the group and graph structure in the cells.  Returns a new mxCell instance that represents the given node.

Parameters

nodeXML node that contains the cell data.
restoreStructuresOptional boolean indicating whether the graph structure should be restored by calling insert and insertEdge on the parent and terminals, respectively.  Default is true.
- -

insertIntoGraph

function insertIntoGraph($cell)

Inserts the given cell into its parent and terminal cells.

- -

setAttribute

function setAttribute($node,
$attribute,
$value)

Sets the attribute on the specified node to value.  This is a helper method that makes sure the attribute and value arguments are not null.

Parameters

nodeXML node to set the attribute for.
attributesAttributename to be set.
valueNew value of the attribute.
- -
- - - - - - - - - - -
var $document
The owner document of the codec.
var $objects
Maps from IDs to objects.
var $elements
Maps from IDs to elements.
var $encodeDefaults
Specifies if default values should be encoded.
function putObject($id,
$object)
Assoiates the given object with the given ID.
function getObject($id)
Returns the decoded object for the element with the specified ID in document.
function lookup($id)
Hook for subclassers to implement a custom lookup mechanism for cell IDs.
function getElementById($id)
Returns the element with the given ID from document.
function addElement($node)
Adds the given element to elements if it has an ID.
function getId($obj)
Returns the ID of the specified object.
function reference($obj)
Hook for subclassers to implement a custom method for retrieving IDs from objects.
function encode($obj)
Encodes the specified object and returns the resulting XML node.
function decode($node,  
$into =  null)
Decodes the given XML node.
function encodeCell($cell,  
$node,  
$includeChildren = true)
Encoding of cell hierarchies is built-into the core, but is a higher-level function that needs to be explicitely used by the respective object encoders (eg.
function decodeCell($node,  
$restoreStructures =  true)
Decodes cells that have been encoded using inversion, ie.
function insertIntoGraph($cell)
Inserts the given cell into its parent and terminal cells.
function setAttribute($node,
$attribute,
$value)
Sets the attribute on the specified node to value.
Cells are the elements of the graph model.
function getId()
Returns the Id of the cell as a string.
static function create($cell)
Creates the cell path for the given cell.
Codec for mxGraphModels.
- - - - - - - - \ No newline at end of file diff --git a/docs/php-api/files/io/mxCodecRegistry-php.html b/docs/php-api/files/io/mxCodecRegistry-php.html deleted file mode 100644 index 146be2765..000000000 --- a/docs/php-api/files/io/mxCodecRegistry-php.html +++ /dev/null @@ -1,57 +0,0 @@ - - -mxCodecRegistry - - - - - - - - - -

mxCodecRegistry

A class to register codecs for objects.

Summary
mxCodecRegistryA class to register codecs for objects.
Variables
codecsMaps from constructor names to codecs.
aliasesMaps from classnames to codecnames.
Functions
registerRegisters a new codec and associates the name of the template constructor in the codec with the codec object.
addAliasAdds an alias for mapping a classname to a codecname.
getCodecReturns a codec that handles objects that are constructed using the given ctor.
getInstanceForNameCreates and returns a new instance for the given class name.
getNameReturns the codec name for the given object instance.
- -

Variables

- -

codecs

public static $codecs

Maps from constructor names to codecs.

- -

aliases

public static $aliases

Maps from classnames to codecnames.

- -

Functions

- -

register

static function register($codec)

Registers a new codec and associates the name of the template constructor in the codec with the codec object.  Automatically creates an alias if the codename and the classname are not equal.

Parameters

codecmxObjectCodec to be registered.
- -

addAlias

static function addAlias($classname,
$codecname)

Adds an alias for mapping a classname to a codecname.

- -

getCodec

static function getCodec($name)

Returns a codec that handles objects that are constructed using the given ctor.

Parameters

ctorJavaScript constructor function.
- -

getInstanceForName

static function getInstanceForName($name)

Creates and returns a new instance for the given class name.

- -

getName

static function getName($obj)

Returns the codec name for the given object instance.

Parameters

objPHP object to return the codec name for.
- -
- - - - - - - - - - -
public static $codecs
Maps from constructor names to codecs.
public static $aliases
Maps from classnames to codecnames.
static function register($codec)
Registers a new codec and associates the name of the template constructor in the codec with the codec object.
static function addAlias($classname,
$codecname)
Adds an alias for mapping a classname to a codecname.
static function getCodec($name)
Returns a codec that handles objects that are constructed using the given ctor.
static function getInstanceForName($name)
Creates and returns a new instance for the given class name.
static function getName($obj)
Returns the codec name for the given object instance.
XML codec for PHP object graphs.
- - - - - - - - \ No newline at end of file diff --git a/docs/php-api/files/io/mxModelCodec-php.html b/docs/php-api/files/io/mxModelCodec-php.html deleted file mode 100644 index aa8d518bd..000000000 --- a/docs/php-api/files/io/mxModelCodec-php.html +++ /dev/null @@ -1,43 +0,0 @@ - - -mxModelCodec - - - - - - - - - -

mxModelCodec

Codec for mxGraphModels.  This class is created and registered dynamically at load time and used implicitly via mxCodec and the mxCodecRegistry.

Summary
mxModelCodecCodec for mxGraphModels.
Functions
mxObjectCodecConstructs a new codec for the specified template object.
- -

Functions

- -

mxObjectCodec

Constructs a new codec for the specified template object.  The variables in the optional exclude array are ignored by the codec.  Variables in the optional idrefs array are turned into references in the XML.  The optional mapping may be used to map from variable names to XML attributes.

Parameters

templatePrototypical instance of the object to be encoded/decoded.
excludeOptional array of fieldnames to be ignored.
idrefsOptional array of fieldnames to be converted to/from references.
mappingOptional mapping from field- to attributenames.
- -
- - - - - - - - - - -
Cells are the elements of the graph model.
XML codec for PHP object graphs.
A class to register codecs for objects.
- - - - - - - - \ No newline at end of file diff --git a/docs/php-api/files/io/mxObjectCodec-php.html b/docs/php-api/files/io/mxObjectCodec-php.html deleted file mode 100644 index c9f3f5d84..000000000 --- a/docs/php-api/files/io/mxObjectCodec-php.html +++ /dev/null @@ -1,115 +0,0 @@ - - -mxObjectCodec - - - - - - - - - -

mxObjectCodec

XML codec for PHP object graphs.

Implementation note

The passing of the argument by reference in decode, decodeNode, decodeAttributes, decodeAttribute, decodeChildren, decodeChild, beforeDecode and afterDecode is required since the object may be an array instance, which needs an explicit reference operator even in PHP 5 to be changed in-place.

Summary
mxObjectCodecXML codec for PHP object graphs.
Variables
templateHolds the template object associated with this codec.
excludeArray containing the variable names that should be ignored by the codec.
idrefsArray containing the variable names that should be turned into or converted from references.
mappingMaps from from fieldnames to XML attribute names.
reverseMaps from from XML attribute names to fieldnames.
Functions
mxObjectCodecConstructs a new codec for the specified template object.
getNameCreates a new instance of the template for this codec.
cloneTemplateCreates a new instance of the template for this codec.
getFieldNameReturns the fieldname for the given attributename.
getAttributeNameReturns the attributename for the given fieldname.
isExcludedReturns true if the given attribute is to be ignored by the codec.
isReferenceReturns true if the given fieldname is to be treated as a textual reference (ID).
encodeEncodes the specified object and returns a node representing then given object.
encodeObjectEncodes the value of each member in then given obj into the given node using encodeValue.
encodeValueConverts the given value according to the mappings and id-refs in this codec and uses writeAttribute to write the attribute into the given node.
writeAttributeWrites the given value into node using writePrimitiveAttribute or writeComplexAttribute depending on the type of the value.
writePrimitiveAttributeWrites the given value as an attribute of the given node.
writeComplexAttributeWrites the given value as a child node of the given node.
convertValueToXmlReturns the given value without applying a conversion.
convertValueFromXmlReturns the given value.
beforeEncodeHook for subclassers to pre-process the object before encoding.
afterEncodeHook for subclassers to post-process the node for the given object after encoding and return the post-processed node.
decodeParses the given node into the object or returns a new object representing the given node.
decodeNodeCalls decodeAttributes and decodeChildren for the given node.
decodeAttributesDecodes all attributes of the given node using decodeAttribute.
decodeAttributeReads the given attribute into the specified object.
decodeChildrenDecodec all children of the given node using decodeChild.
decodeChildReads the specified child into the given object.
getFieldTemplateReturns the template instance for the given field.
addObjectValueSets the decoded child node as a value of the given object.
processIncludeReturns true if the given node is an include directive and executes the include by decoding the XML document.
beforeDecodeHook for subclassers to pre-process the node for the specified object and return the node to be used for further processing by decode.
afterDecodeHook for subclassers to post-process the object after decoding.
- -

Variables

- -

template

var $template

Holds the template object associated with this codec.

- -

exclude

var $exclude

Array containing the variable names that should be ignored by the codec.

- -

idrefs

var $idrefs

Array containing the variable names that should be turned into or converted from references.  See mxCodec.getId and mxCodec.getObject.

- -

mapping

var $mapping

Maps from from fieldnames to XML attribute names.

- -

reverse

var $reverse

Maps from from XML attribute names to fieldnames.

- -

Functions

- -

mxObjectCodec

function mxObjectCodec($template,  
$exclude =  array(),
$idrefs =  array(),
$mapping =  array())

Constructs a new codec for the specified template object.  The variables in the optional exclude array are ignored by the codec.  Variables in the optional idrefs array are turned into references in the XML.  The optional mapping may be used to map from variable names to XML attributes.

Parameters

templatePrototypical instance of the object to be encoded/decoded.
excludeOptional array of fieldnames to be ignored.
idrefsOptional array of fieldnames to be converted to/from references.
mappingOptional mapping from field- to attributenames.
- -

getName

function getName()

Creates a new instance of the template for this codec.

- -

cloneTemplate

function cloneTemplate()

Creates a new instance of the template for this codec.

- -

getFieldName

function getFieldName($attributename)

Returns the fieldname for the given attributename.  Looks up the value in the reverse mapping or returns the input if there is no reverse mapping for the given name.

- -

getAttributeName

function getAttributeName($fieldname)

Returns the attributename for the given fieldname.  Looks up the value in the mapping or returns the input if there is no mapping for the given name.

- -

isExcluded

function isExcluded($obj,
$attr,
$value,
$write)

Returns true if the given attribute is to be ignored by the codec.  This implementation returns true if the given fieldname is in exclude or if the fieldname equals <mxObjectIdentity.FIELD_NAME>.

Parameters

objObject instance that contains the field.
attrFieldname of the field.
valueValue of the field.
writeBoolean indicating if the field is being encoded or decoded.  Write is true if the field is being encoded, else it is being decoded.
- -

isReference

function isReference($obj,
$attr,
$value,
$write)

Returns true if the given fieldname is to be treated as a textual reference (ID).  This implementation returns true if the given fieldname is in idrefs.

Parameters

objObject instance that contains the field.
attrFieldname of the field.
valueValue of the field.
writeBoolean indicating if the field is being encoded or decoded.  Write is true if the field is being encoded, else it is being decoded.
- -

encode

function encode($enc,
$obj)

Encodes the specified object and returns a node representing then given object.  Calls beforeEncode after creating the node and afterEncode with the resulting node after processing.

Enc is a reference to the calling encoder.  It is used to encode complex objects and create references.

This implementation encodes all variables of an object according to the following rules:

  • If the variable name is in exclude then it is ignored.
  • If the variable name is in idrefs then mxCodec.getId is used to replace the object with its ID.
  • The variable name is mapped using mapping.
  • If obj is an array and the variable name is numeric (ie. an index) then it is not encoded.
  • If the value is an object, then the codec is used to create a child node with the variable name encoded into the “as” attribute.
  • Else, if <encodeDefaults> is true or the value differs from the template value, then ...
  • ... if obj is not an array, then the value is mapped to an attribute.
  • ... else if obj is an array, the value is mapped to an add child with a value attribute or a text child node, if the value is a function.

If no ID exists for a variable in idrefs or if an object cannot be encoded, a warning is issued using mxLog.warn.

Returns the resulting XML node that represents the given object.

Parameters

encmxCodec that controls the encoding process.
objObject to be encoded.
- -

encodeObject

function encodeObject($enc,
$obj,
$node)

Encodes the value of each member in then given obj into the given node using encodeValue.

Parameters

encmxCodec that controls the encoding process.
objObject to be encoded.
nodeXML node that contains the encoded object.
- -

encodeValue

function encodeValue($enc,
$obj,
$name,
$value,
$node)

Converts the given value according to the mappings and id-refs in this codec and uses writeAttribute to write the attribute into the given node.

Parameters

encmxCodec that controls the encoding process.
objObject whose property is going to be encoded.
nameXML node that contains the encoded object.
valueValue of the property to be encoded.
nodeXML node that contains the encoded object.
- -

writeAttribute

function writeAttribute($enc,
$obj,
$attr,
$value,
$node)

Writes the given value into node using writePrimitiveAttribute or writeComplexAttribute depending on the type of the value.

- -

writePrimitiveAttribute

function writePrimitiveAttribute($enc,
$obj,
$attr,
$value,
$node)

Writes the given value as an attribute of the given node.

- -

writeComplexAttribute

function writeComplexAttribute($enc,
$obj,
$attr,
$value,
$node)

Writes the given value as a child node of the given node.

- -

convertValueToXml

function convertValueToXml($value)

Returns the given value without applying a conversion.

- -

convertValueFromXml

function convertValueFromXml($value)

Returns the given value.  In PHP there is no need to convert the boolean strings “0” and “1” to their numeric / boolean values.

- -

beforeEncode

function beforeEncode($enc,
$obj,
$node)

Hook for subclassers to pre-process the object before encoding.  This returns the input object.  The return value of this function is used in encode to perform the default encoding into the given node.

Parameters

encmxCodec that controls the encoding process.
objObject to be encoded.
nodeXML node to encode the object into.
- -

afterEncode

function afterEncode($enc,
$obj,
$node)

Hook for subclassers to post-process the node for the given object after encoding and return the post-processed node.  This implementation returns the input node.  The return value of this method is returned to the encoder from encode.

Parameters

encmxCodec that controls the encoding process.
objObject to be encoded.
nodeXML node that represents the default encoding.
- -

decode

function decode($dec,  
$node,  
&$into =  null)

Parses the given node into the object or returns a new object representing the given node.

Dec is a reference to the calling decoder.  It is used to decode complex objects and resolve references.

If a node has an id attribute then the object cache is checked for the object.  If the object is not yet in the cache then it is constructed using the constructor of template and cached in mxCodec.objects.

This implementation decodes all attributes and childs of a node according to the following rules:

  • If the variable name is in exclude or if the attribute name is “id” or “as” then it is ignored.
  • If the variable name is in idrefs then mxCodec.getObject is used to replace the reference with an object.
  • The variable name is mapped using a reverse mapping.
  • If the value has a child node, then the codec is used to create a child object with the variable name taken from the “as” attribute.
  • If the object is an array and the variable name is empty then the value or child object is appended to the array.
  • If an add child has no value or the object is not an array then the child text content is evaluated using <mxUtils.eval>.

For add nodes where the object is not an array and the variable name is defined, the default mechanism is used, allowing to override/add methods as follows:

<Object>
-  <add as="hello"><![CDATA[
-    function(arg1) {
-      alert('Hello '+arg1);
-    }
-  ]]></add>
-</Object>

If no object exists for an ID in idrefs a warning is issued using mxLog.warn.

Returns the resulting object that represents the given XML node or the object given to the method as the into parameter.

Parameters

decmxCodec that controls the decoding process.
nodeXML node to be decoded.
intoOptional objec to encode the node into.
- -

decodeNode

function decodeNode($dec,
$node,
&$obj)

Calls decodeAttributes and decodeChildren for the given node.

- -

decodeAttributes

function decodeAttributes($dec,
$node,
&$obj)

Decodes all attributes of the given node using decodeAttribute.

- -

decodeAttribute

function decodeAttribute($dec,
$attr,
&$obj)

Reads the given attribute into the specified object.

- -

decodeChildren

function decodeChildren($dec,
$node,
&$obj)

Decodec all children of the given node using decodeChild.

- -

decodeChild

function decodeChild($dec,
$child,
&$obj)

Reads the specified child into the given object.

- -

getFieldTemplate

function getFieldTemplate(&$obj,
$fieldname,
$child)

Returns the template instance for the given field.  This returns the value of the field, null if the value is an array or an empty collection if the value is a collection.  The value is then used to populate the field for a new instance.  For strongly typed languages it may be required to override this to return the correct collection instance based on the encoded child.

- -

addObjectValue

function addObjectValue(&$obj,
$fieldname,
$value,
$template)

Sets the decoded child node as a value of the given object.  If the object is a map, then the value is added with the given fieldname as a key.  If the fieldname is not empty, then setFieldValue is called or else, if the object is a collection, the value is added to the collection.  For strongly typed languages it may be required to override this with the correct code to add an entry to an object.

- -

processInclude

function processInclude($dec,
$node,
$into)

Returns true if the given node is an include directive and executes the include by decoding the XML document.  Returns false if the given node is not an include directive.

Parameters

decmxCodec that controls the encoding/decoding process.
nodeXML node to be checked.
intoOptional object to pass-thru to the codec.
- -

beforeDecode

function beforeDecode($dec,
$node,
&$obj)

Hook for subclassers to pre-process the node for the specified object and return the node to be used for further processing by decode.  The object is created based on the template in the calling method and is never null.  This implementation returns the input node.  The return value of this function is used in decode to perform the default decoding into the given object.

Parameters

decmxCodec that controls the decoding process.
nodeXML node to be decoded.
objObject to encode the node into.
- -

afterDecode

function afterDecode($dec,
$node,
&$obj)

Hook for subclassers to post-process the object after decoding.  This implementation returns the given object without any changes.  The return value of this method is returned to the decoder from decode.

Parameters

encmxCodec that controls the encoding process.
nodeXML node to be decoded.
objObject that represents the default decoding.
- -
- - - - - - - - - - -
var $template
Holds the template object associated with this codec.
var $exclude
Array containing the variable names that should be ignored by the codec.
var $idrefs
Array containing the variable names that should be turned into or converted from references.
var $mapping
Maps from from fieldnames to XML attribute names.
var $reverse
Maps from from XML attribute names to fieldnames.
function mxObjectCodec($template,  
$exclude =  array(),
$idrefs =  array(),
$mapping =  array())
Constructs a new codec for the specified template object.
function getName()
Creates a new instance of the template for this codec.
function cloneTemplate()
Creates a new instance of the template for this codec.
function getFieldName($attributename)
Returns the fieldname for the given attributename.
function getAttributeName($fieldname)
Returns the attributename for the given fieldname.
function isExcluded($obj,
$attr,
$value,
$write)
Returns true if the given attribute is to be ignored by the codec.
function isReference($obj,
$attr,
$value,
$write)
Returns true if the given fieldname is to be treated as a textual reference (ID).
function encode($enc,
$obj)
Encodes the specified object and returns a node representing then given object.
function encodeObject($enc,
$obj,
$node)
Encodes the value of each member in then given obj into the given node using encodeValue.
function encodeValue($enc,
$obj,
$name,
$value,
$node)
Converts the given value according to the mappings and id-refs in this codec and uses writeAttribute to write the attribute into the given node.
function writeAttribute($enc,
$obj,
$attr,
$value,
$node)
Writes the given value into node using writePrimitiveAttribute or writeComplexAttribute depending on the type of the value.
function writePrimitiveAttribute($enc,
$obj,
$attr,
$value,
$node)
Writes the given value as an attribute of the given node.
function writeComplexAttribute($enc,
$obj,
$attr,
$value,
$node)
Writes the given value as a child node of the given node.
function convertValueToXml($value)
Returns the given value without applying a conversion.
function convertValueFromXml($value)
Returns the given value.
function beforeEncode($enc,
$obj,
$node)
Hook for subclassers to pre-process the object before encoding.
function afterEncode($enc,
$obj,
$node)
Hook for subclassers to post-process the node for the given object after encoding and return the post-processed node.
function decode($dec,  
$node,  
&$into =  null)
Parses the given node into the object or returns a new object representing the given node.
function decodeNode($dec,
$node,
&$obj)
Calls decodeAttributes and decodeChildren for the given node.
function decodeAttributes($dec,
$node,
&$obj)
Decodes all attributes of the given node using decodeAttribute.
function decodeChildren($dec,
$node,
&$obj)
Decodec all children of the given node using decodeChild.
function decodeAttribute($dec,
$attr,
&$obj)
Reads the given attribute into the specified object.
function decodeChild($dec,
$child,
&$obj)
Reads the specified child into the given object.
function getFieldTemplate(&$obj,
$fieldname,
$child)
Returns the template instance for the given field.
function addObjectValue(&$obj,
$fieldname,
$value,
$template)
Sets the decoded child node as a value of the given object.
function processInclude($dec,
$node,
$into)
Returns true if the given node is an include directive and executes the include by decoding the XML document.
function beforeDecode($dec,
$node,
&$obj)
Hook for subclassers to pre-process the node for the specified object and return the node to be used for further processing by decode.
function afterDecode($dec,
$node,
&$obj)
Hook for subclassers to post-process the object after decoding.
function getId($obj)
Returns the ID of the specified object.
function getObject($id)
Returns the decoded object for the element with the specified ID in document.
static function warn($text)
Logs a warn trace.
XML codec for PHP object graphs.
var $objects
Maps from IDs to objects.
- - - - - - - - \ No newline at end of file diff --git a/docs/php-api/files/io/mxStylesheetCodec-php.html b/docs/php-api/files/io/mxStylesheetCodec-php.html deleted file mode 100644 index 4005b46e1..000000000 --- a/docs/php-api/files/io/mxStylesheetCodec-php.html +++ /dev/null @@ -1,43 +0,0 @@ - - -mxStylesheetCodec - - - - - - - - - -

mxStylesheetCodec

Codec for mxStylesheets.  This class is created and registered dynamically at load time and used implicitely via mxCodec and the mxCodecRegistry.

Summary
mxStylesheetCodecCodec for mxStylesheets.
Functions
mxObjectCodecConstructs a new codec for the specified template object.
- -

Functions

- -

mxObjectCodec

Constructs a new codec for the specified template object.  The variables in the optional exclude array are ignored by the codec.  Variables in the optional idrefs array are turned into references in the XML.  The optional mapping may be used to map from variable names to XML attributes.

Parameters

templatePrototypical instance of the object to be encoded/decoded.
excludeOptional array of fieldnames to be ignored.
idrefsOptional array of fieldnames to be converted to/from references.
mappingOptional mapping from field- to attributenames.
- -
- - - - - - - - - - -
Defines the appearance of the cells in a graph.
XML codec for PHP object graphs.
A class to register codecs for objects.
- - - - - - - - \ No newline at end of file diff --git a/docs/php-api/files/model/mxCell-php.html b/docs/php-api/files/model/mxCell-php.html deleted file mode 100644 index 6750f4621..000000000 --- a/docs/php-api/files/model/mxCell-php.html +++ /dev/null @@ -1,149 +0,0 @@ - - -mxCell - - - - - - - - - -

mxCell

Cells are the elements of the graph model.  They represent the state of the groups, vertices and edges in a graph.

Summary
mxCellCells are the elements of the graph model.
Variables
idHolds the Id.
valueHolds the user object.
geometryHolds the mxGeometry.
styleHolds the style as a string of the form [(stylename|key=value);].
vertexSpecifies whether the cell is a vertex.
edgeSpecifies whether the cell is an edge.
connectableSpecifies whether the cell is connectable.
visibleSpecifies whether the cell is visible.
collapsedSpecifies whether the cell is collapsed.
parentReference to the parent cell.
sourceReference to the source terminal.
targetReference to the target terminal.
childrenHolds the child cells.
edgesHolds the edges.
Functions
mxCellConstructs a new cell to be used in a graph model.
getIdReturns the Id of the cell as a string.
setIdSets the Id of the cell to the given string.
getValueReturns the user object of the cell.
setValueSets the user object of the cell.
getGeometryReturns the mxGeometry that describes the geometry.
setGeometrySets the mxGeometry to be used as the geometry.
getStyleReturns a string that describes the style.
setStyleSets the string to be used as the style.
isVertexReturns true if the cell is a vertex.
setVertexSpecifies if the cell is a vertex.
isEdgeReturns true if the cell is an edge.
setEdgeSpecifies if the cell is an edge.
isConnectableReturns true if the cell is connectable.
setConnectableSets the connectable state.
isVisibleReturns true if the cell is visibile.
setVisibleSpecifies if the cell is visible.
isCollapsedReturns true if the cell is collapsed.
setCollapsedSets the collapsed state.
getParentReturns the cell’s parent.
setParentSets the parent cell.
getTerminalReturns the source or target terminal.
setTerminalSets the source or target terminal and returns the new terminal.
getChildCountReturns the number of child cells.
getIndexReturns the index of the specified child in the child array.
getChildAtReturns the child at the specified index.
insertInserts the specified child into the child array at the specified index and updates the parent reference of the child.
removeRemoves the child at the specified index from the child array and returns the child that was removed.
removeFromParentRemoves the cell from its parent.
getEdgeCountReturns the number of edges in the edge array.
getEdgeIndexReturns the index of the specified edge in edges.
getEdgeAtReturns the edge at the specified index in edges.
insertEdgeInserts the specified edge into the edge array and returns the edge.
removeEdgeRemoves the specified edge from the edge array and returns the edge.
removeFromTerminalRemoves the edge from its source or target terminal.
getAttributeReturns the specified attribute from the user object if it is an XML node.
setAttributeSets the specified attribute on the user object if it is an XML node.
copyReturns a clone of the cell.
copyValueReturns a clone of the cell’s user object.
- -

Variables

- -

id

var $id

Holds the Id.  Default is null.

- -

value

var $value

Holds the user object.  Default is null.

- -

geometry

var $geometry

Holds the mxGeometry.  Default is null.

- -

style

var $style

Holds the style as a string of the form [(stylename|key=value);].  Default is null.

- -

vertex

var $vertex

Specifies whether the cell is a vertex.  Default is false.

- -

edge

var $edge

Specifies whether the cell is an edge.  Default is false.

- -

connectable

var $connectable

Specifies whether the cell is connectable.  Default is true.

- -

visible

var $visible

Specifies whether the cell is visible.  Default is true.

- -

collapsed

var $collapsed

Specifies whether the cell is collapsed.  Default is false.

- -

parent

var $parent

Reference to the parent cell.

- -

source

var $source

Reference to the source terminal.

- -

target

var $target

Reference to the target terminal.

- -

children

var $children

Holds the child cells.

- -

edges

var $edges

Holds the edges.

- -

Functions

- -

mxCell

function mxCell($value =  null,
$geometry =  null,
$style =  null)

Constructs a new cell to be used in a graph model.  This method invokes <onInit> upon completion.

Parameters

valueOptional object that represents the cell value.
geometryOptional mxGeometry that specifies the geometry.
styleOptional formatted string that defines the style.
- -

getId

function getId()

Returns the Id of the cell as a string.

- -

setId

function setId($id)

Sets the Id of the cell to the given string.

- -

getValue

function getValue()

Returns the user object of the cell.  The user object is stored in value.

- -

setValue

function setValue($value)

Sets the user object of the cell.  The user object is stored in value.

- -

getGeometry

function getGeometry()

Returns the mxGeometry that describes the geometry.

- -

setGeometry

function setGeometry($geometry)

Sets the mxGeometry to be used as the geometry.

- -

getStyle

function getStyle()

Returns a string that describes the style.

- -

setStyle

function setStyle($style)

Sets the string to be used as the style.

- -

isVertex

function isVertex()

Returns true if the cell is a vertex.

- -

setVertex

function setVertex($vertex)

Specifies if the cell is a vertex.  This should only be assigned at construction of the cell and not be changed during its lifecycle.

Parameters

vertexBoolean that specifies if the cell is a vertex.
- -

isEdge

function isEdge()

Returns true if the cell is an edge.

- -

setEdge

function setEdge($edge)

Specifies if the cell is an edge.  This should only be assigned at construction of the cell and not be changed during its lifecycle.

Parameters

edgeBoolean that specifies if the cell is an edge.
- -

isConnectable

function isConnectable()

Returns true if the cell is connectable.

- -

setConnectable

function setConnectable($connectable)

Sets the connectable state.

Parameters

connectableBoolean that specifies the new connectable state.
- -

isVisible

function isVisible()

Returns true if the cell is visibile.

- -

setVisible

function setVisible($visible)

Specifies if the cell is visible.

Parameters

visibleBoolean that specifies the new visible state.
- -

isCollapsed

function isCollapsed()

Returns true if the cell is collapsed.

- -

setCollapsed

function setCollapsed($collapsed)

Sets the collapsed state.

Parameters

collapsedBoolean that specifies the new collapsed state.
- -

getParent

function getParent()

Returns the cell’s parent.

- -

setParent

function setParent($parent)

Sets the parent cell.

Parameters

parentmxCell that represents the new parent.
- -

getTerminal

function getTerminal($source)

Returns the source or target terminal.

Parameters

sourceBoolean that specifies if the source terminal should be returned.
- -

setTerminal

function setTerminal($terminal,
$source)

Sets the source or target terminal and returns the new terminal.

Parameters

terminalmxCell that represents the new source or target terminal.
sourceBoolean that specifies if the source or target terminal should be set.
- -

getChildCount

function getChildCount()

Returns the number of child cells.

- -

getIndex

function getIndex($child)

Returns the index of the specified child in the child array.

Parameters

childChild whose index should be returned.
- -

getChildAt

function getChildAt($index)

Returns the child at the specified index.

Parameters

indexInteger that specifies the child to be returned.
- -

insert

function insert($child,  
$index =  null)

Inserts the specified child into the child array at the specified index and updates the parent reference of the child.  If not childIndex is specified then the child is appended to the child array.  Returns the inserted child.

Parameters

childmxCell to be inserted or appended to the child array.
indexOptional integer that specifies the index at which the child should be inserted into the child array.
- -

remove

function remove($index)

Removes the child at the specified index from the child array and returns the child that was removed.  Will remove the parent reference of the child.

Parameters

indexInteger that specifies the index of the child to be removed.
- -

removeFromParent

function removeFromParent()

Removes the cell from its parent.

- -

getEdgeCount

function getEdgeCount()

Returns the number of edges in the edge array.

- -

getEdgeIndex

function getEdgeIndex($edge)

Returns the index of the specified edge in edges.

Parameters

edgemxCell whose index in edges should be returned.
- -

getEdgeAt

function getEdgeAt($index)

Returns the edge at the specified index in edges.

Parameters

indexInteger that specifies the index of the edge to be returned.
- -

insertEdge

function insertEdge($edge,
$outgoing)

Inserts the specified edge into the edge array and returns the edge.  Will update the respective terminal reference of the edge.

Parameters

edgemxCell to be inserted into the edge array.
outgoingBoolean that specifies if the edge is outgoing.
- -

removeEdge

function removeEdge($edge,
$outgoing)

Removes the specified edge from the edge array and returns the edge.  Will remove the respective terminal reference from the edge.

Parameters

edgemxCell to be removed from the edge array.
outgoingBoolean that specifies if the edge is outgoing.
- -

removeFromTerminal

function removeFromTerminal($source)

Removes the edge from its source or target terminal.

Parameters

sourceBoolean that specifies if the edge should be removed from its source or target terminal.
- -

getAttribute

function getAttribute($key,  
$defaultValue =  null)

Returns the specified attribute from the user object if it is an XML node.

- -

setAttribute

function setAttribute($key,
$value)

Sets the specified attribute on the user object if it is an XML node.

- -

copy

function copy()

Returns a clone of the cell.  Uses <cloneValue> to clone the user object.

- -

copyValue

function copyValue()

Returns a clone of the cell’s user object.

- -
- - - - - - - - - - -
var $id
Holds the Id.
var $value
Holds the user object.
var $geometry
Holds the mxGeometry.
Represents the geometry of a cell.
var $style
Holds the style as a string of the form [(stylename|key=value);].
var $vertex
Specifies whether the cell is a vertex.
var $edge
Specifies whether the cell is an edge.
var $connectable
Specifies whether the cell is connectable.
var $visible
Specifies whether the cell is visible.
var $collapsed
Specifies whether the cell is collapsed.
var $parent
Reference to the parent cell.
var $source
Reference to the source terminal.
var $target
Reference to the target terminal.
var $children
Holds the child cells.
var $edges
Holds the edges.
function mxCell($value =  null,
$geometry =  null,
$style =  null)
Constructs a new cell to be used in a graph model.
function getId()
Returns the Id of the cell as a string.
function setId($id)
Sets the Id of the cell to the given string.
function getValue()
Returns the user object of the cell.
function setValue($value)
Sets the user object of the cell.
function getGeometry()
Returns the mxGeometry that describes the geometry.
function setGeometry($geometry)
Sets the mxGeometry to be used as the geometry.
function getStyle()
Returns a string that describes the style.
function setStyle($style)
Sets the string to be used as the style.
function isVertex()
Returns true if the cell is a vertex.
function setVertex($vertex)
Specifies if the cell is a vertex.
function isEdge()
Returns true if the cell is an edge.
function setEdge($edge)
Specifies if the cell is an edge.
function isConnectable()
Returns true if the cell is connectable.
function setConnectable($connectable)
Sets the connectable state.
function isVisible()
Returns true if the cell is visibile.
function setVisible($visible)
Specifies if the cell is visible.
function isCollapsed()
Returns true if the cell is collapsed.
function setCollapsed($collapsed)
Sets the collapsed state.
function getParent()
Returns the cell’s parent.
function setParent($parent)
Sets the parent cell.
function getTerminal($source)
Returns the source or target terminal.
function setTerminal($terminal,
$source)
Sets the source or target terminal and returns the new terminal.
function getChildCount()
Returns the number of child cells.
function getIndex($child)
Returns the index of the specified child in the child array.
function getChildAt($index)
Returns the child at the specified index.
function insert($child,  
$index =  null)
Inserts the specified child into the child array at the specified index and updates the parent reference of the child.
function remove($index)
Removes the child at the specified index from the child array and returns the child that was removed.
function removeFromParent()
Removes the cell from its parent.
function getEdgeCount()
Returns the number of edges in the edge array.
function getEdgeIndex($edge)
Returns the index of the specified edge in edges.
function getEdgeAt($index)
Returns the edge at the specified index in edges.
function insertEdge($edge,
$outgoing)
Inserts the specified edge into the edge array and returns the edge.
function removeEdge($edge,
$outgoing)
Removes the specified edge from the edge array and returns the edge.
function removeFromTerminal($source)
Removes the edge from its source or target terminal.
function getAttribute($key,  
$defaultValue =  null)
Returns the specified attribute from the user object if it is an XML node.
function setAttribute($key,
$value)
Sets the specified attribute on the user object if it is an XML node.
function copy()
Returns a clone of the cell.
function copyValue()
Returns a clone of the cell’s user object.
- - - - - - - - \ No newline at end of file diff --git a/docs/php-api/files/model/mxCellPath-php.html b/docs/php-api/files/model/mxCellPath-php.html deleted file mode 100644 index 5019ee0f6..000000000 --- a/docs/php-api/files/model/mxCellPath-php.html +++ /dev/null @@ -1,51 +0,0 @@ - - -mxCellPath - - - - - - - - - -

mxCellPath

Implements a mechanism for temporary cell Ids.

Summary
mxCellPathImplements a mechanism for temporary cell Ids.
Variables
codecsMaps from constructor names to codecs.
Functions
createCreates the cell path for the given cell.
getParentPathReturns the cell for the specified cell path using the given root as the root of the path.
resolveReturns the cell for the specified cell path using the given root as the root of the path.
- -

Variables

- -

codecs

Maps from constructor names to codecs.

- -

Functions

- -

create

static function create($cell)

Creates the cell path for the given cell.  The cell path is a concatenation of the indices of all ancestors on the (finite) path to the root, eg.  “0.0.0.1”.

Parameters

cellCell whose path should be returned.
- -

getParentPath

static function getParentPath($path)

Returns the cell for the specified cell path using the given root as the root of the path.

Parameters

pathPath whose parent path should be returned.
- -

resolve

static function resolve($root,
$path)

Returns the cell for the specified cell path using the given root as the root of the path.

Parameters

rootRoot cell of the path to be resolved.
pathString that defines the path.
- -
- - - - - - - - - - -
static function create($cell)
Creates the cell path for the given cell.
static function getParentPath($path)
Returns the cell for the specified cell path using the given root as the root of the path.
static function resolve($root,
$path)
Returns the cell for the specified cell path using the given root as the root of the path.
- - - - - - - - \ No newline at end of file diff --git a/docs/php-api/files/model/mxGeometry-php.html b/docs/php-api/files/model/mxGeometry-php.html deleted file mode 100644 index 49893cd72..000000000 --- a/docs/php-api/files/model/mxGeometry-php.html +++ /dev/null @@ -1,67 +0,0 @@ - - -mxGeometry - - - - - - - - - -

mxGeometry

Represents the geometry of a cell.  For vertices, the geometry consists of the x- and y-location, as well as the width and height.  For edges, the edge either defines the source- and target-terminal, or the geometry defines the respective terminal points.

Summary
mxGeometryRepresents the geometry of a cell.
Variables
TRANSLATE_CONTROL_POINTSGlobal switch to translate the points in translate.
alternateBoundsStores alternate values for x, y, width and height in a rectangle.
sourcePointDefines the source point of the edge.
targetPointDefines the target point of the edge.
pointsArray of mxPoints which specifies the control points along the edge.
offsetHolds the offset of the label for edges.
relativeSpecifies if the coordinates in the geometry are to be interpreted as relative coordinates.
Functions
mxGeometryConstructs a new object to describe the size and location of a vertex or the control points of an edge.
getTerminalPointReturns the mxPoint representing the source or target point of this edge.
setTerminalPointSets the sourcePoint or targetPoint to the given mxPoint and returns the new point.
translateTranslates the geometry by the specified amount.
copyReturns a copy of this mxGeometry.
- -

Variables

- -

TRANSLATE_CONTROL_POINTS

public static $TRANSLATE_CONTROL_POINTS

Global switch to translate the points in translate.  Default is true.

- -

alternateBounds

var $alternateBounds

Stores alternate values for x, y, width and height in a rectangle.  Default is null.

- -

sourcePoint

var $sourcePoint

Defines the source point of the edge.  This is used if the corresponding edge does not have a source vertex.  Otherwise it is ignored.  Default is null.

- -

targetPoint

var $targetPoint

Defines the target point of the edge.  This is used if the corresponding edge does not have a target vertex.  Otherwise it is ignored.  Default is null.

- -

points

var $points

Array of mxPoints which specifies the control points along the edge.  These points are the intermediate points on the edge, for the endpoints use targetPoint and sourcePoint or set the terminals of the edge to a non-null value.  Default is null.

- -

offset

var $offset

Holds the offset of the label for edges.  This is the absolute vector between the center of the edge and the top, left point of the label.  Default is null.

- -

relative

var $relative

Specifies if the coordinates in the geometry are to be interpreted as relative coordinates.  Default is false.  This is used to mark a geometry with an x- and y-coordinate that is used to describe an edge label position.

- -

Functions

- -

mxGeometry

function mxGeometry($x = 0,
$y = 0,
$width = 0,
$height = 0)

Constructs a new object to describe the size and location of a vertex or the control points of an edge.

- -

getTerminalPoint

function getTerminalPoint($isSource)

Returns the mxPoint representing the source or target point of this edge.  This is only used if the edge has no source or target vertex.

Parameters

isSourceBoolean that specifies if the source or target point should be returned.
- -

setTerminalPoint

function setTerminalPoint($point,
$isSource)

Sets the sourcePoint or targetPoint to the given mxPoint and returns the new point.

Parameters

pointPoint to be used as the new source or target point.
isSourceBoolean that specifies if the source or target point should be set.
- -

translate

function translate($dx,
$dy)

Translates the geometry by the specified amount.  That is, <x> and <y> of the geometry, the sourcePoint, targetPoint and all elements of points are translated by the given amount.  <x> and <y> are only translated if relative is false.  If TRANSLATE_CONTROL_POINTS is false, then points are not modified by this function.

Parameters

dxInteger that specifies the x-coordinate of the translation.
dyInteger that specifies the y-coordinate of the translation.
- -

copy

function copy()

Returns a copy of this mxGeometry.

- -
- - - - - - - - - - -
public static $TRANSLATE_CONTROL_POINTS
Global switch to translate the points in translate.
var $alternateBounds
Stores alternate values for x, y, width and height in a rectangle.
var $sourcePoint
Defines the source point of the edge.
var $targetPoint
Defines the target point of the edge.
var $points
Array of mxPoints which specifies the control points along the edge.
Implements a 2-dimensional point with double precision coordinates.
var $offset
Holds the offset of the label for edges.
var $relative
Specifies if the coordinates in the geometry are to be interpreted as relative coordinates.
function mxGeometry($x = 0,
$y = 0,
$width = 0,
$height = 0)
Constructs a new object to describe the size and location of a vertex or the control points of an edge.
function getTerminalPoint($isSource)
Returns the mxPoint representing the source or target point of this edge.
function setTerminalPoint($point,
$isSource)
Sets the sourcePoint or targetPoint to the given mxPoint and returns the new point.
function translate($dx,
$dy)
Translates the geometry by the specified amount.
function copy()
Returns a copy of this mxGeometry.
- - - - - - - - \ No newline at end of file diff --git a/docs/php-api/files/model/mxGraphModel-php.html b/docs/php-api/files/model/mxGraphModel-php.html deleted file mode 100644 index e87c4aaa6..000000000 --- a/docs/php-api/files/model/mxGraphModel-php.html +++ /dev/null @@ -1,155 +0,0 @@ - - -mxGraphModel - - - - - - - - - -

mxGraphModel

Cells are the elements of the graph model.  They represent the state of the groups, vertices and edges in a graph.

Fires a graphModelChanged event after each group of changes.

Summary
mxGraphModelCells are the elements of the graph model.
Variables
rootHolds the root cell, which in turn contains the cells that represent the layers of the diagram as child cells.
cellsMaps from Ids to cells.
maintainEdgeParentSpecifies if edges should automatically be moved into the nearest common ancestor of their terminals.
createIdsSpecifies if the model should automatically create Ids for new cells.
nextIdSpecifies the next Id to be created.
updateLevelCounter for the depth of nested transactions.
Functions
mxGraphModelConstructs a new graph model using the specified root cell.
clearSets a new root using createRoot.
createRootCreates a new root cell with a default layer (child 0).
getCellsReturns the internal lookup table that is used to map from Ids to cells.
setRoot
getRootReturns the root of the model.
setRootSets the root of the model using <mxRootChange> and adds the change to the current transaction.
cloneCellReturns a deep clone of the given mxCell (including the children) which is created using cloneCells.
cloneCellsReturns an array of clones for the given array of mxCells.
cloneCellImplInner helper method for cloning cells recursively.
cellClonedHook for cloning the cell.
restoreCloneInner helper method for restoring the connections in a network of cloned cells.
isAncestorReturns true if the given parent is an ancestor of the given child.
containsReturns true if the model contains the given mxCell.
getParentReturns the parent of the given cell.
addAdds the specified child to the parent at the given index using <mxChildChange> and adds the change to the current transaction.
cellAddedInner callback to update cells when a cell has been added.
createIdHook method to create an Id for the specified cell.
updateEdgeParentsUpdates the parent for all edges that are connected to cell or one of its descendants using updateEdgeParent.
updateEdgeParentInner callback to update the parent of the specified mxCell to the nearest-common-ancestor of its two terminals.
getOriginReturns the absolute, cummulated origin for the children inside the given parent as an mxPoint.
getNearestCommonAncestorReturns the nearest common ancestor for the specified cells.
removeRemoves the specified cell from the model using <mxChildChange> and adds the change to the current transaction.
cellRemovedInner callback to update cells when a cell has been removed.
getChildCountReturns the number of children in the given cell.
getChildAtReturns the child of the given mxCell at the given index.
getTerminalReturns the source or target mxCell of the given edge depending on the value of the boolean parameter.
setTerminalSets the source or target terminal of the given mxCell using <mxTerminalChange> and adds the change to the current transaction.
setTerminalsSets the source and target mxCell of the given mxCell in a single transaction using setTerminal for each end of the edge.
getEdgeCountReturns the number of distinct edges connected to the given cell.
getEdgeAtReturns the edge of cell at the given index.
getEdgesReturns all distinct edges connected to this cell as an array of mxCells.
isVertexReturns true if the given cell is a vertex.
isEdgeReturns true if the given cell is an edge.
isConnectableReturns true if the given mxCell is connectable.
getValueReturns the user object of the given mxCell using mxCell.getValue.
setValueSets the user object of then given mxCell using <mxValueChange> and adds the change to the current transaction.
getGeometryReturns the mxGeometry of the given mxCell.
setGeometrySets the mxGeometry of the given mxCell.
getStyleReturns the style of the given mxCell.
setStyleSets the style of the given mxCell using <mxStyleChange> and adds the change to the current transaction.
isCollapsedReturns true if the given mxCell is collapsed.
setCollapsedSets the collapsed state of the given mxCell using <mxCollapseChange> and adds the change to the current transaction.
isVisibleReturns true if the given mxCell is visible.
setVisibleSets the visible state of the given mxCell using <mxVisibleChange> and adds the change to the current transaction.
mergeChildrenMerges the children of the given cell into the given target cell inside this model.
mergeChildrenImplClones the children of the source cell into the given target cell in this model and adds an entry to the mapping that maps from the source cell to the target cell with the same id or the clone of the source cell that was inserted into this model.
beginUpdateIncrements the updateLevel by one.
endUpdateDecrements the updateLevel by one and fires a notification event if the updateLevel reaches 0.
getDirectedEdgeCountReturns the number of incoming or outgoing edges, ignoring the given edge.
- -

Variables

- -

root

var $root

Holds the root cell, which in turn contains the cells that represent the layers of the diagram as child cells.  That is, the actual elements of the diagram are supposed to live in the third generation of cells and below.

- -

cells

var $cells

Maps from Ids to cells.

- -

maintainEdgeParent

var $maintainEdgeParent

Specifies if edges should automatically be moved into the nearest common ancestor of their terminals.  Default is true.

- -

createIds

var $createIds

Specifies if the model should automatically create Ids for new cells.  Default is true.

- -

nextId

var $nextId

Specifies the next Id to be created.  Default is 0.

- -

updateLevel

var $updateLevel

Counter for the depth of nested transactions.  Each call to beginUpdate will increment this number and each call to endUpdate will decrement it.  When the counter reaches 0, the transaction is closed and the respective events are fired.  Initial value is 0.

- -

Functions

- -

mxGraphModel

function mxGraphModel($root =  null)

Constructs a new graph model using the specified root cell.

- -

clear

function clear()

Sets a new root using createRoot.

- -

createRoot

function createRoot()

Creates a new root cell with a default layer (child 0).

- -

getCells

function getCells()

Returns the internal lookup table that is used to map from Ids to cells.

- -

setRoot

- -

getRoot

function getRoot()

Returns the root of the model.

- -

setRoot

function setRoot($root)

Sets the root of the model using <mxRootChange> and adds the change to the current transaction.  This resets all datastructures in the model and is the preferred way of clearing an existing model.  Returns the new root.

Parameters

rootmxCell that specifies the new root.
- -

cloneCell

function cloneCell($cell)

Returns a deep clone of the given mxCell (including the children) which is created using cloneCells.

Parameters

cellmxCell to be cloned.
- -

cloneCells

function cloneCells($cells,  
$includeChildren = true)

Returns an array of clones for the given array of mxCells.  Depending on the value of includeChildren, a deep clone is created for each cell.  Connections are restored based if the corresponding cell is contained in the passed in array.

Parameters

cellsArray of mxCell to be cloned.
includeChildrenBoolean indicating if the cells should be cloned with all descendants.
- -

cloneCellImpl

function cloneCellImpl($cell,
$mapping,
$includeChildren)

Inner helper method for cloning cells recursively.

- -

cellCloned

function cellCloned($cell)

Hook for cloning the cell.  This returns cell->copy() or any possible exceptions.

- -

restoreClone

function restoreClone($clne,
$cell,
$mapping)

Inner helper method for restoring the connections in a network of cloned cells.

- -

isAncestor

function isAncestor($parent,
$child)

Returns true if the given parent is an ancestor of the given child.

Parameters

parentmxCell that specifies the parent.
childmxCell that specifies the child.
- -

contains

function contains($cell)

Returns true if the model contains the given mxCell.

Parameters

cellmxCell that specifies the cell.
- -

getParent

function getParent($cell)

Returns the parent of the given cell.

Parameters

cellmxCell whose parent should be returned.
- -

add

function add($parent,  
$child,  
$index =  null)

Adds the specified child to the parent at the given index using <mxChildChange> and adds the change to the current transaction.  If no index is specified then the child is appended to the parent’s array of children.  Returns the inserted child.

Parameters

parentmxCell that specifies the parent to contain the child.
childmxCell that specifies the child to be inserted.
indexOptional integer that specifies the index of the child.
- -

cellAdded

function cellAdded($cell)

Inner callback to update cells when a cell has been added.  This implementation resolves collisions by creating new Ids.

Parameters

cellmxCell that specifies the cell that has been added.
- -

createId

function createId($cell)

Hook method to create an Id for the specified cell.  This implementation increments nextId.

Parameters

cellmxCell to create the Id for.
- -

updateEdgeParents

function updateEdgeParents($cell,  
$root =  null)

Updates the parent for all edges that are connected to cell or one of its descendants using updateEdgeParent.

- -

updateEdgeParent

function updateEdgeParent($edge,
$root)

Inner callback to update the parent of the specified mxCell to the nearest-common-ancestor of its two terminals.

Parameters

edgemxCell that specifies the edge.
rootmxCell that represents the current root of the model.
- -

getOrigin

function getOrigin($cell)

Returns the absolute, cummulated origin for the children inside the given parent as an mxPoint.

- -

getNearestCommonAncestor

function getNearestCommonAncestor($cell1,
$cell2)

Returns the nearest common ancestor for the specified cells.

Parameters

cell1mxCell that specifies the first cell in the tree.
cell2mxCell that specifies the second cell in the tree.
- -

remove

function remove($cell)

Removes the specified cell from the model using <mxChildChange> and adds the change to the current transaction.  This operation will remove the cell and all of its children from the model.  Returns the removed cell.

Parameters

cellmxCell that should be removed.
- -

cellRemoved

function cellRemoved($cell)

Inner callback to update cells when a cell has been removed.

Parameters

cellmxCell that specifies the cell that has been removed.
- -

getChildCount

function getChildCount($cell)

Returns the number of children in the given cell.

Parameters

cellmxCell whose number of children should be returned.
- -

getChildAt

function getChildAt($cell,
$index)

Returns the child of the given mxCell at the given index.

Parameters

cellmxCell that represents the parent.
indexInteger that specifies the index of the child to be returned.
- -

getTerminal

function getTerminal($edge,
$cource)

Returns the source or target mxCell of the given edge depending on the value of the boolean parameter.

Parameters

edgemxCell that specifies the edge.
courceBoolean indicating which end of the edge should be returned.
- -

setTerminal

function setTerminal($edge,
$terminal,
$source)

Sets the source or target terminal of the given mxCell using <mxTerminalChange> and adds the change to the current transaction.  This implementation updates the parent of the edge using updateEdgeParent if required.

Parameters

edgemxCell that specifies the edge.
terminalmxCell that specifies the new terminal.
isSourceBoolean indicating if the terminal is the new source or target terminal of the edge.
- -

setTerminals

function setTerminals($edge,
$source,
$target)

Sets the source and target mxCell of the given mxCell in a single transaction using setTerminal for each end of the edge.

Parameters

edgemxCell that specifies the edge.
sourcemxCell that specifies the new source terminal.
targetmxCell that specifies the new target terminal.
- -

getEdgeCount

function getEdgeCount($cell)

Returns the number of distinct edges connected to the given cell.

Parameters

cellmxCell that represents the vertex.
- -

getEdgeAt

function getEdgeAt($cell,
$index)

Returns the edge of cell at the given index.

Parameters

cellmxCell that specifies the vertex.
indexInteger that specifies the index of the edge to return.
- -

getEdges

function getEdges($cell)

Returns all distinct edges connected to this cell as an array of mxCells.  The return value should be only be read.

Parameters

cellmxCell that specifies the cell.
- -

isVertex

function isVertex($cell)

Returns true if the given cell is a vertex.

Parameters

cellmxCell that represents the possible vertex.
- -

isEdge

function isEdge($cell)

Returns true if the given cell is an edge.

Parameters

cellmxCell that represents the possible edge.
- -

isConnectable

function isConnectable($cell)

Returns true if the given mxCell is connectable.  If <edgesConnectable> is false, then this function returns false for all edges else it returns the return value of mxCell.isConnectable.

Parameters

cellmxCell whose connectable state should be returned.
- -

getValue

function getValue($cell)

Returns the user object of the given mxCell using mxCell.getValue.

Parameters

cellmxCell whose user object should be returned.
- -

setValue

function setValue($cell,
$value)

Sets the user object of then given mxCell using <mxValueChange> and adds the change to the current transaction.

Parameters

cellmxCell whose user object should be changed.
valueObject that defines the new user object.
- -

getGeometry

function getGeometry($cell)

Returns the mxGeometry of the given mxCell.

Parameters

cellmxCell whose geometry should be returned.
- -

setGeometry

function setGeometry($cell,
$geometry)

Sets the mxGeometry of the given mxCell.  The actual update of the cell is carried out in <geometryForCellChanged>.  The <mxGeometryChange> action is used to encapsulate the change.

Parameters

cellmxCell whose geometry should be changed.
geometrymxGeometry that defines the new geometry.
- -

getStyle

function getStyle($cell)

Returns the style of the given mxCell.

Parameters

cellmxCell whose style should be returned.
- -

setStyle

function setStyle($cell,
$style)

Sets the style of the given mxCell using <mxStyleChange> and adds the change to the current transaction.

Parameters

cellmxCell whose style should be changed.
styleString of the form stylename[;key=value] to specify the new cell style.
- -

isCollapsed

function isCollapsed($cell)

Returns true if the given mxCell is collapsed.

Parameters

cellmxCell whose collapsed state should be returned.
- -

setCollapsed

function setCollapsed($cell,
$isCollapsed)

Sets the collapsed state of the given mxCell using <mxCollapseChange> and adds the change to the current transaction.

Parameters

cellmxCell whose collapsed state should be changed.
collapsedBoolean that specifies the new collpased state.
- -

isVisible

function isVisible($cell)

Returns true if the given mxCell is visible.

Parameters

cellmxCell whose visible state should be returned.
- -

setVisible

function setVisible($cell,
$visible)

Sets the visible state of the given mxCell using <mxVisibleChange> and adds the change to the current transaction.

Parameters

cellmxCell whose visible state should be changed.
visibleBoolean that specifies the new visible state.
- -

mergeChildren

function mergeChildren($from,  
$to,  
$cloneAllEdges =  true)

Merges the children of the given cell into the given target cell inside this model.  All cells are cloned unless there is a corresponding cell in the model with the same id, in which case the source cell is ignored and all edges are connected to the corresponding cell in this model.  Edges are considered to have no identity and are always cloned unless the cloneAllEdges flag is set to false, in which case edges with the same id in the target model are reconnected to reflect the terminals of the source edges.

- -

mergeChildrenImpl

function mergeChildrenImpl($from,
$to,
$cloneAllEdges,
$mapping)

Clones the children of the source cell into the given target cell in this model and adds an entry to the mapping that maps from the source cell to the target cell with the same id or the clone of the source cell that was inserted into this model.

- -

beginUpdate

function beginUpdate()

Increments the updateLevel by one.  The event notification is queued until updateLevel reaches 0 by use of endUpdate.

- -

endUpdate

function endUpdate()

Decrements the updateLevel by one and fires a notification event if the updateLevel reaches 0.  This function indirectly fires a notification.

- -

getDirectedEdgeCount

function getDirectedEdgeCount($cell,  
$outgoing,  
$ignoredEdge =  null)

Returns the number of incoming or outgoing edges, ignoring the given edge.

Parameters

cellmxCell whose edge count should be returned.
outgoingBoolean that specifies if the number of outgoing or incoming edges should be returned.
ignoredEdgemxCell that represents an edge to be ignored.
- -
- - - - - - - - - - -
var $root
Holds the root cell, which in turn contains the cells that represent the layers of the diagram as child cells.
var $cells
Maps from Ids to cells.
var $maintainEdgeParent
Specifies if edges should automatically be moved into the nearest common ancestor of their terminals.
var $createIds
Specifies if the model should automatically create Ids for new cells.
var $nextId
Specifies the next Id to be created.
var $updateLevel
Counter for the depth of nested transactions.
function mxGraphModel($root =  null)
Constructs a new graph model using the specified root cell.
function clear()
Sets a new root using createRoot.
function createRoot()
Creates a new root cell with a default layer (child 0).
function getCells()
Returns the internal lookup table that is used to map from Ids to cells.
function getRoot()
Returns the root of the model.
function setRoot($root)
Sets the root of the model using mxRootChange and adds the change to the current transaction.
function cloneCell($cell)
Returns a deep clone of the given mxCell (including the children) which is created using cloneCells.
Cells are the elements of the graph model.
function cloneCells($cells,  
$includeChildren = true)
Returns an array of clones for the given array of mxCells.
function cloneCellImpl($cell,
$mapping,
$includeChildren)
Inner helper method for cloning cells recursively.
function cellCloned($cell)
Hook for cloning the cell.
function restoreClone($clne,
$cell,
$mapping)
Inner helper method for restoring the connections in a network of cloned cells.
function isAncestor($parent,
$child)
Returns true if the given parent is an ancestor of the given child.
function contains($cell)
Returns true if the model contains the given mxCell.
function getParent($cell)
Returns the parent of the given cell.
function add($parent,  
$child,  
$index =  null)
Adds the specified child to the parent at the given index using mxChildChange and adds the change to the current transaction.
function cellAdded($cell)
Inner callback to update cells when a cell has been added.
function createId($cell)
Hook method to create an Id for the specified cell.
function updateEdgeParents($cell,  
$root =  null)
Updates the parent for all edges that are connected to cell or one of its descendants using updateEdgeParent.
function updateEdgeParent($edge,
$root)
Inner callback to update the parent of the specified mxCell to the nearest-common-ancestor of its two terminals.
function getOrigin($cell)
Returns the absolute, cummulated origin for the children inside the given parent as an mxPoint.
Implements a 2-dimensional point with double precision coordinates.
function getNearestCommonAncestor($cell1,
$cell2)
Returns the nearest common ancestor for the specified cells.
function remove($cell)
Removes the specified cell from the model using mxChildChange and adds the change to the current transaction.
function cellRemoved($cell)
Inner callback to update cells when a cell has been removed.
function getChildCount($cell)
Returns the number of children in the given cell.
function getChildAt($cell,
$index)
Returns the child of the given mxCell at the given index.
function getTerminal($edge,
$cource)
Returns the source or target mxCell of the given edge depending on the value of the boolean parameter.
function setTerminal($edge,
$terminal,
$source)
Sets the source or target terminal of the given mxCell using mxTerminalChange and adds the change to the current transaction.
function setTerminals($edge,
$source,
$target)
Sets the source and target mxCell of the given mxCell in a single transaction using setTerminal for each end of the edge.
function getEdgeCount($cell)
Returns the number of distinct edges connected to the given cell.
function getEdgeAt($cell,
$index)
Returns the edge of cell at the given index.
function getEdges($cell)
Returns all distinct edges connected to this cell as an array of mxCells.
function isVertex($cell)
Returns true if the given cell is a vertex.
function isEdge($cell)
Returns true if the given cell is an edge.
function isConnectable($cell)
Returns true if the given mxCell is connectable.
function getValue($cell)
Returns the user object of the given mxCell using mxCell.getValue.
function getValue()
Returns the user object of the cell.
function setValue($cell,
$value)
Sets the user object of then given mxCell using mxValueChange and adds the change to the current transaction.
function getGeometry($cell)
Returns the mxGeometry of the given mxCell.
Represents the geometry of a cell.
function setGeometry($cell,
$geometry)
Sets the mxGeometry of the given mxCell.
function getStyle($cell)
Returns the style of the given mxCell.
function setStyle($cell,
$style)
Sets the style of the given mxCell using mxStyleChange and adds the change to the current transaction.
function isCollapsed($cell)
Returns true if the given mxCell is collapsed.
function setCollapsed($cell,
$isCollapsed)
Sets the collapsed state of the given mxCell using mxCollapseChange and adds the change to the current transaction.
function isVisible($cell)
Returns true if the given mxCell is visible.
function setVisible($cell,
$visible)
Sets the visible state of the given mxCell using mxVisibleChange and adds the change to the current transaction.
function mergeChildren($from,  
$to,  
$cloneAllEdges =  true)
Merges the children of the given cell into the given target cell inside this model.
function mergeChildrenImpl($from,
$to,
$cloneAllEdges,
$mapping)
Clones the children of the source cell into the given target cell in this model and adds an entry to the mapping that maps from the source cell to the target cell with the same id or the clone of the source cell that was inserted into this model.
function beginUpdate()
Increments the updateLevel by one.
function endUpdate()
Decrements the updateLevel by one and fires a notification event if the updateLevel reaches 0.
function getDirectedEdgeCount($cell,  
$outgoing,  
$ignoredEdge =  null)
Returns the number of incoming or outgoing edges, ignoring the given edge.
function isConnectable()
Returns true if the cell is connectable.
- - - - - - - - \ No newline at end of file diff --git a/docs/php-api/files/reader/mxGraphViewHtmlReader-php.html b/docs/php-api/files/reader/mxGraphViewHtmlReader-php.html deleted file mode 100644 index 806bda934..000000000 --- a/docs/php-api/files/reader/mxGraphViewHtmlReader-php.html +++ /dev/null @@ -1,49 +0,0 @@ - - -mxGraphViewHtmlReader - - - - - - - - - -

mxGraphViewHtmlReader

A display XML to HTML converter.  This allows to create an image of a graph without having to parse and create the graph model using the XML file created for the mxGraphView object in the thin client.

Summary
mxGraphViewHtmlReaderA display XML to HTML converter.
Functions
mxGraphViewHtmlReaderConstructs a new HTML graph view reader.
createCanvasReturns the canvas to be used for rendering.
convertCreates the HTML markup for the given display XML string.
convertFileCreates the HTML markup for the given display XML file.
- -

Functions

- -

mxGraphViewHtmlReader

function mxGraphViewHtmlReader()

Constructs a new HTML graph view reader.

- -

createCanvas

function createCanvas($attrs)

Returns the canvas to be used for rendering.

- -

convert

static function convert($string,  
$background =  null)

Creates the HTML markup for the given display XML string.

- -

convertFile

static function convertFile($filename,  
$background =  null)

Creates the HTML markup for the given display XML file.

- -
- - - - - - - - - - -
function mxGraphViewHtmlReader()
Constructs a new HTML graph view reader.
function createCanvas($attrs)
Returns the canvas to be used for rendering.
static function convert($string,  
$background =  null)
Creates the HTML markup for the given display XML string.
static function convertFile($filename,  
$background =  null)
Creates the HTML markup for the given display XML file.
- - - - - - - - \ No newline at end of file diff --git a/docs/php-api/files/reader/mxGraphViewImageReader-php.html b/docs/php-api/files/reader/mxGraphViewImageReader-php.html deleted file mode 100644 index a48f1db80..000000000 --- a/docs/php-api/files/reader/mxGraphViewImageReader-php.html +++ /dev/null @@ -1,77 +0,0 @@ - - -mxGraphViewImageReader - - - - - - - - - -

mxGraphViewImageReader

A display XML to image converter.  This allows to create an image of a graph without having to parse and create the graph model using the XML file created for the mxGraphView object in the thin client.

To create the XML for the mxGraphView on the client

var enc = new mxCodec(mxUtils.createXMLDocument());
-var node = enc.encode(editor.graph.view);
-var xml = mxUtils.getXML(node);
Summary
mxGraphViewImageReaderA display XML to image converter.
Variables
canvasHolds the canvas.
scaleHolds the global scale of the graph.
parserHolds the SAX parser.
backgroundHolds the background color.
borderHolds the border size.
Functions
mxGraphViewImageReaderConstructs a new image graph view reader.
createCanvasReturns the canvas to be used for rendering.
readReads the specified view XML string.
readFileReads the specified view XML file in blocks of 4096 bytes.
startElementInvoked by the SAX parser when an element starts.
parseStateParses the bounds, absolute points and label information from the style of the state into its respective fields and returns the label of the cell.
parsePointsParses a string that represents a list of points into an array of mxPoints.
endElementInvoked by the SAX parser when an element ends.
destroyDestroy all allocated resources for this reader.
convertCreates the image for the given display XML string.
convertFileCreates the image for the given display XML file.
- -

Variables

- -

canvas

var $canvas

Holds the canvas.

- -

scale

var $scale

Holds the global scale of the graph.  This is set just before createCanvas is called.

- -

parser

var $parser

Holds the SAX parser.

- -

background

var $background

Holds the background color.

- -

border

var $border

Holds the border size.  Default is 0.

- -

Functions

- -

mxGraphViewImageReader

function mxGraphViewImageReader($background =  null,
$border =  0)

Constructs a new image graph view reader.

- -

createCanvas

function createCanvas($attrs)

Returns the canvas to be used for rendering.

- -

read

function read($string)

Reads the specified view XML string.

- -

readFile

function readFile($filename)

Reads the specified view XML file in blocks of 4096 bytes.

- -

startElement

function startElement($parser,
$name,
$attrs)

Invoked by the SAX parser when an element starts.

- -

parseState

function parseState($state,
$edge)

Parses the bounds, absolute points and label information from the style of the state into its respective fields and returns the label of the cell.

- -

parsePoints

function parsePoints($str)

Parses a string that represents a list of points into an array of mxPoints.

- -

endElement

function endElement($parser,
$name)

Invoked by the SAX parser when an element ends.

- -

destroy

function destroy()

Destroy all allocated resources for this reader.

- -

convert

static function convert($string,  
$background =  null)

Creates the image for the given display XML string.

- -

convertFile

static function convertFile($filename,  
$background =  null)

Creates the image for the given display XML file.

- -
- - - - - - - - - - -
var $canvas
Holds the canvas.
var $scale
Holds the global scale of the graph.
var $parser
Holds the SAX parser.
var $background
Holds the background color.
var $border
Holds the border size.
function mxGraphViewImageReader($background =  null,
$border =  0)
Constructs a new image graph view reader.
function createCanvas($attrs)
Returns the canvas to be used for rendering.
function read($string)
Reads the specified view XML string.
function readFile($filename)
Reads the specified view XML file in blocks of 4096 bytes.
function startElement($parser,
$name,
$attrs)
Invoked by the SAX parser when an element starts.
function parseState($state,
$edge)
Parses the bounds, absolute points and label information from the style of the state into its respective fields and returns the label of the cell.
function parsePoints($str)
Parses a string that represents a list of points into an array of mxPoints.
Implements a 2-dimensional point with double precision coordinates.
function endElement($parser,
$name)
Invoked by the SAX parser when an element ends.
function destroy()
Destroy all allocated resources for this reader.
static function convert($string,  
$background =  null)
Creates the image for the given display XML string.
static function convertFile($filename,  
$background =  null)
Creates the image for the given display XML file.
- - - - - - - - \ No newline at end of file diff --git a/docs/php-api/files/util/mxConstants-php.html b/docs/php-api/files/util/mxConstants-php.html deleted file mode 100644 index 3b40ebc53..000000000 --- a/docs/php-api/files/util/mxConstants-php.html +++ /dev/null @@ -1,323 +0,0 @@ - - -mxConstants - - - - - - - - - -

mxConstants

Defines global constants.

Summary
mxConstantsDefines global constants.
Variables
RAD_PER_DEGDefines the number of radiants per degree.
DEG_PER_RADDefines the number of degrees per radiant.
ACTIVE_REGIONDefines the portion of the cell which is to be used as a connectable region.
MIN_ACTIVE_REGIONDefines the minimum size in pixels of the portion of the cell cell which is to be used as a connectable region.
NS_SVGDefines the SVG namespace.
NS_XHTMLDefines the XHTML namespace.
NS_XLINKDefined the XLink namespace.
W3C_SHADOWCOLORDefines the color to be used to draw shadows in DOM documents.
SHADOW_OFFSETXDefines the x-offset to be used for shadows.
SHADOW_OFFSETYDefines the y-offset to be used for shadows.
W3C_DEFAULT_FONTFAMILYDefines the default family for HTML markup.
TTF_ENABLEDWhether TrueType fonts should be enabled in the mxGdCanvas by default.
TTF_SIZEFACTORDefines the factor which wich the font sizes are to be multiplied when used in truetype fonts.
DEFAULT_FONTFAMILYDefines the default family for all truetype fonts.
DEFAULT_FONTSIZEDefines the default size (in px).
DEFAULT_STARTSIZEDefines the default start size for swimlanes.
DEFAULT_LINESPACINGDefines the default linespacing.
LABEL_INSETDefines the inset in absolute pixels between the label bounding box and the label text.
DEFAULT_MARKERSIZEDefines the default size for all markers.
DEFAULT_IMAGESIZEDefines the default width and height for images used in the label shape.
ENTITY_SEGMENTDefines the length of the horizontal segment of an Entity Relation.
ARROW_SPACINGDefines the spacing between the arrow shape and its terminals.
ARROW_WIDTHDefines the width of the arrow shape.
ARROW_SIZEDefines the size of the arrowhead in the arrow shape.
NONEDefines the value for none.
STYLE_PERIMETERDefines the key for the perimeter style.
STYLE_OPACITYDefines the key for the opacity style.
STYLE_TEXT_OPACITYDefines the key for the text opacity style.
STYLE_OVERFLOWDefines the key for the overflow style.
STYLE_ORTHOGONALDefines if the connection points on either end of the edge should be computed so that the edge is vertical or horizontal if possible and if the point is not at a fixed location.
STYLE_EXIT_XDefines the key for the horizontal relative coordinate connection point of an edge with its source terminal.
STYLE_EXIT_YDefines the key for the vertical relative coordinate connection point of an edge with its source terminal.
STYLE_EXIT_PERIMETERDefines if the perimeter should be used to find the exact entry point along the perimeter of the source.
STYLE_ENTRY_XDefines the key for the horizontal relative coordinate connection point of an edge with its target terminal.
STYLE_ENTRY_YDefines the key for the vertical relative coordinate connection point of an edge with its target terminal.
sSTYLE_ENTRY_PERIMETERDefines if the perimeter should be used to find the exact entry point along the perimeter of the target.
STYLE_WHITE_SPACEDefines the key for the white-space style.
STYLE_ROTATIONDefines the key for the rotation style.
STYLE_FILLCOLORDefines the key for the fill color.
STYLE_SWIMLANE_FILLCOLORDefines the key for the fill color of the swimlane background.
STYLE_GRADIENTCOLORDefines the key for the gradient color.
STYLE_GRADIENT_DIRECTIONDefines the key for the gradient direction.
STYLE_STROKECOLORDefines the key for the strokeColor style.
STYLE_SEPARATORCOLORDefines the key for the separatorColor style.
STYLE_STROKEWIDTHDefines the key for the strokeWidth style.
STYLE_ALIGNDefines the key for the align style.
STYLE_VERTICAL_ALIGNDefines the key for the verticalAlign style.
STYLE_LABEL_POSITIONDefines the key for the horizontal label position of vertices.
STYLE_VERTICAL_LABEL_POSITIONDefines the key for the vertical label position of vertices.
STYLE_IMAGE_ALIGNDefines the key for the align style.
STYLE_IMAGE_VERTICALALIGNDefines the key for the verticalAlign style.
STYLE_IMAGEDefines the key for the image style.
STYLE_IMAGE_WIDTHDefines the key for the imageWidth style.
STYLE_IMAGE_HEIGHTDefines the key for the imageHeight style.
STYLE_IMAGE_BACKGROUNDDefines the key for the image background color.
STYLE_IMAGE_BORDERDefines the key for the image border color.
STYLE_IMAGE_FLIPHDefines the key for the horizontal image flip.
STYLE_IMAGE_FLIPVDefines the key for the vertical image flip.
STYLE_NOLABELDefines the key for the noLabel style.
STYLE_NOEDGESTYLEDefines the key for the noEdgeStyle style.
STYLE_LABEL_BACKGROUNDCOLORDefines the key for the label background color.
STYLE_LABEL_BORDERCOLORDefines the key for the label border color.
STYLE_INDICATOR_SHAPEDefines the key for the indicatorShape style.
STYLE_INDICATOR_IMAGEDefines the key for the indicatorImage style.
STYLE_INDICATOR_COLORDefines the key for the indicatorColor style.
STYLE_INDICATOR_GRADIENTCOLORDefines the key for the indicatorGradientColor style.
STYLE_INDICATOR_SPACINGDefines the key for the indicatorSpacing style (in px).
STYLE_INDICATOR_WIDTHDefines the key for the indicatorWidth style (in px).
STYLE_INDICATOR_HEIGHTDefines the key for the indicatorHeight style (in px).
STYLE_SHADOWDefines the key for the shadow style.
STYLE_SEGMENTDefines the key for the segment style.
STYLE_ENDARROWDefines the key for the endArrow style.
STYLE_STARTARROWDefines the key for the startArrow style.
STYLE_ENDSIZEDefines the key for the endSize style.
STYLE_STARTSIZEDefines the key for the startSize style.
STYLE_SWIMLANE_LINEDefines the key for the swimlaneLine style.
STYLE_DASHEDDefines the key for the endSize style.
STYLE_ROUNDEDDefines the key for the rounded style.
STYLE_SOURCE_PERIMETER_SPACINGDefines the key for the source perimeter spacing.
STYLE_TARGET_PERIMETER_SPACINGDefines the key for the source perimeter spacing.
STYLE_PERIMETER_SPACINGDefines the key for the perimeter spacing.
STYLE_SPACINGDefines the key for the spacing.
STYLE_SPACING_TOPDefines the key for the spacingTop style.
STYLE_SPACING_LEFTDefines the key for the spacingLeft style.
STYLE_SPACING_BOTTOMDefines the key for the spacingBottom style The value represents the spacing, in pixels, added to the bottom side of a label in a vertex (style applies to vertices only).
STYLE_SPACING_RIGHTDefines the key for the spacingRight style The value represents the spacing, in pixels, added to the right side of a label in a vertex (style applies to vertices only).
STYLE_HORIZONTALDefines the key for the horizontal style.
STYLE_DIRECTIONDefines the key for the direction style.
STYLE_ELBOWDefines the key for the elbow style.
STYLE_FONTCOLORDefines the key for the fontColor style.
STYLE_FONTFAMILYDefines the key for the fontFamily style.
STYLE_FONTSIZEDefines the key for the fontSize style (in px).
STYLE_FONTSTYLEDefines the key for the fontStyle style.
STYLE_SHAPEDefines the key for the shape.
STYLE_EDGEDefines the key for the edge style.
STYLE_LOOPDefines the key for the loop style.
STYLE_ROUTING_CENTER_XDefines the key for the horizontal routing center.
STYLE_ROUTING_CENTER_YDefines the key for the vertical routing center.
FONT_BOLD
FONT_ITALIC
FONT_UNDERLINE
SHAPE_RECTANGLE
SHAPE_ELLIPSE
SHAPE_DOUBLE_ELLIPSE
SHAPE_RHOMBUS
SHAPE_LINE
SHAPE_IMAGE
SHAPE_ARROW
SHAPE_LABEL
SHAPE_CYLINDER
SHAPE_SWIMLANE
SHAPE_CONNECTOR
SHAPE_ACTOR
SHAPE_CLOUD
SHAPE_TRIANGLE
SHAPE_HEXAGON
ARROW_CLASSIC
ARROW_BLOCK
ARROW_OPEN
ARROW_OVAL
ARROW_DIAMOND
ALIGN_LEFT
ALIGN_CENTER
ALIGN_RIGHT
ALIGN_TOP
ALIGN_MIDDLE
ALIGN_BOTTOM
DIRECTION_NORTH
DIRECTION_SOUTH
DIRECTION_EAST
DIRECTION_WEST
ELBOW_VERTICAL
ELBOW_HORIZONTAL
EDGESTYLE_ENTITY_RELATIONName of the entity relation edge style.
EDGESTYLE_LOOPName of the loop edge style.
EDGESTYLE_SIDETOSIDEName of the side to side edge style.
EDGESTYLE_TOPTOBOTTOMName of the top to bottom edge style.
PERIMETER_ELLIPSEName of the ellipse perimeter.
PERIMETER_RECTANGLEName of the rectangle perimeter.
PERIMETER_RHOMBUSName of the rhombus perimeter.
PERIMETER_TRIANGLEName of the triangle perimeter.
- -

Variables

- -

RAD_PER_DEG

public static $RAD_PER_DEG

Defines the number of radiants per degree.

- -

DEG_PER_RAD

public static $DEG_PER_RAD

Defines the number of degrees per radiant.

- -

ACTIVE_REGION

public static $ACTIVE_REGION

Defines the portion of the cell which is to be used as a connectable region.

- -

MIN_ACTIVE_REGION

public static $MIN_ACTIVE_REGION

Defines the minimum size in pixels of the portion of the cell cell which is to be used as a connectable region.

- -

NS_SVG

public static $NS_SVG

Defines the SVG namespace.

- -

NS_XHTML

public static $NS_XHTML

Defines the XHTML namespace.

- -

NS_XLINK

public static $NS_XLINK

Defined the XLink namespace.

- -

W3C_SHADOWCOLOR

public static $W3C_SHADOWCOLOR

Defines the color to be used to draw shadows in DOM documents.

- -

SHADOW_OFFSETX

public static $SHADOW_OFFSETX

Defines the x-offset to be used for shadows.  Default is 2.

- -

SHADOW_OFFSETY

public static $SHADOW_OFFSETY

Defines the y-offset to be used for shadows.  Default is 3.

- -

W3C_DEFAULT_FONTFAMILY

public static $W3C_DEFAULT_FONTFAMILY

Defines the default family for HTML markup.  Default is times, serif.

- -

TTF_ENABLED

public static $TTF_ENABLED

Whether TrueType fonts should be enabled in the mxGdCanvas by default.  Default is true.

- -

TTF_SIZEFACTOR

public static $TTF_SIZEFACTOR

Defines the factor which wich the font sizes are to be multiplied when used in truetype fonts.  Default is 0.66.

- -

DEFAULT_FONTFAMILY

public static $DEFAULT_FONTFAMILY

Defines the default family for all truetype fonts.  Default is vera.

- -

DEFAULT_FONTSIZE

public static $DEFAULT_FONTSIZE

Defines the default size (in px).  Default is 11.

- -

DEFAULT_STARTSIZE

public static $DEFAULT_STARTSIZE

Defines the default start size for swimlanes.  Default is 40.

- -

DEFAULT_LINESPACING

public static $DEFAULT_LINESPACING

Defines the default linespacing.  Default is 7.

- -

LABEL_INSET

public static $LABEL_INSET

Defines the inset in absolute pixels between the label bounding box and the label text.  Default is 3.

- -

DEFAULT_MARKERSIZE

public static $DEFAULT_MARKERSIZE

Defines the default size for all markers.  Default is 6.

- -

DEFAULT_IMAGESIZE

public static $DEFAULT_IMAGESIZE

Defines the default width and height for images used in the label shape.  Default is 24.

- -

ENTITY_SEGMENT

public static $ENTITY_SEGMENT

Defines the length of the horizontal segment of an Entity Relation.  This can be overridden using mxConstants.STYLE_SEGMENT style.  Default is 30.

- -

ARROW_SPACING

public static $ARROW_SPACING

Defines the spacing between the arrow shape and its terminals.  Default is 10.

- -

ARROW_WIDTH

public static $ARROW_WIDTH

Defines the width of the arrow shape.  Default is 30.

- -

ARROW_SIZE

public static $ARROW_SIZE

Defines the size of the arrowhead in the arrow shape.  Default is 30.

- -

NONE

public static $NONE

Defines the value for none.  Default is “none”.

- -

STYLE_PERIMETER

public static $STYLE_PERIMETER

Defines the key for the perimeter style.  This is a function that defines the perimeter around a particular shape.  Possible values are the functions defined in mxPerimeter.  Alternatively, the constants in this class that start with <code>PERIMETER_</code> may be used to access perimeter styles in mxStyleRegistry.

- -

STYLE_OPACITY

public static $STYLE_OPACITY

Defines the key for the opacity style.  The type of the value is numeric and the possible range is 0-100.

- -

STYLE_TEXT_OPACITY

public static $STYLE_TEXT_OPACITY

Defines the key for the text opacity style.  The type of the value is numeric and the possible range is 0-100.

- -

STYLE_OVERFLOW

public static $STYLE_OVERFLOW

Defines the key for the overflow style.  Possible values are “visible”, “hidden” and “fill”.  The default value is “visible”.  This value specifies how overlapping vertex labels are handles.  A value of “visible” will show the complete label.  A value of “hidden” will clip the label so that it does not overlap the vertex bounds.  A value of “fill” will use the vertex bounds for the label.

This style is ignored in PHP.

- -

STYLE_ORTHOGONAL

public static $STYLE_ORTHOGONAL

Defines if the connection points on either end of the edge should be computed so that the edge is vertical or horizontal if possible and if the point is not at a fixed location.  Default is false.  This is used in mxGraph.isOrthogonal, which also returns true if the edgeStyle of the edge is an elbow or entity.

- -

STYLE_EXIT_X

public static $STYLE_EXIT_X

Defines the key for the horizontal relative coordinate connection point of an edge with its source terminal.

- -

STYLE_EXIT_Y

public static $STYLE_EXIT_Y

Defines the key for the vertical relative coordinate connection point of an edge with its source terminal.

- -

STYLE_EXIT_PERIMETER

public static $STYLE_EXIT_PERIMETER

Defines if the perimeter should be used to find the exact entry point along the perimeter of the source.  Possible values are 0 (false) and 1 (true).  Default is 1 (true).

- -

STYLE_ENTRY_X

public static $STYLE_ENTRY_X

Defines the key for the horizontal relative coordinate connection point of an edge with its target terminal.

- -

STYLE_ENTRY_Y

public static $STYLE_ENTRY_Y

Defines the key for the vertical relative coordinate connection point of an edge with its target terminal.

- -

sSTYLE_ENTRY_PERIMETER

Defines if the perimeter should be used to find the exact entry point along the perimeter of the target.  Possible values are 0 (false) and 1 (true).  Default is 1 (true).

- -

STYLE_WHITE_SPACE

public static $STYLE_WHITE_SPACE

Defines the key for the white-space style.  Possible values are “nowrap” and “wrap”.  The default value is “nowrap”.  This value specifies how white-space inside a HTML vertex label should be handled.  A value of “nowrap” means the text will never wrap to the next line until a linefeed is encountered.  A value of “wrap” means text will wrap when necessary.  This style is only used for HTML labels.

This style is ignored in PHP.

- -

STYLE_ROTATION

public static $STYLE_ROTATION

Defines the key for the rotation style.  The type of the value is numeric and the possible range is 0-360.

- -

STYLE_FILLCOLOR

public static $STYLE_FILLCOLOR

Defines the key for the fill color.  Possible values are all HTML color names or HEX codes, as well as special keywords such as ‘swimlane, ‘inherit’ or ‘indicated’ to use the color code of a related cell or the indicator shape.

- -

STYLE_SWIMLANE_FILLCOLOR

public static $STYLE_SWIMLANE_FILLCOLOR

Defines the key for the fill color of the swimlane background.  Possible values are all HTML color names or HEX codes.  Default is no background.  Value is “swimlaneFillColor”.

- -

STYLE_GRADIENTCOLOR

public static $STYLE_GRADIENTCOLOR

Defines the key for the gradient color.  Possible values are all HTML color names or HEX codes, as well as special keywords such as ‘swimlane, ‘inherit’ or ‘indicated’ to use the color code of a related cell or the indicator shape.  This is ignored if no fill color is defined.

- -

STYLE_GRADIENT_DIRECTION

public static $STYLE_GRADIENT_DIRECTION

Defines the key for the gradient direction.  Possible values are DIRECTION_EAST, DIRECTION_WEST, DIRECTION_NORTH and DIRECTION_SOUTH.  Default is DIRECTION_SOUTH.  Generally, and by default in mxGraph, gradient painting is done from the value of STYLE_FILLCOLOR to the value of STYLE_GRADIENTCOLOR.  Taking the example of DIRECTION_NORTH, this means STYLE_FILLCOLOR color at the bottom of paint pattern and STYLE_GRADIENTCOLOR at top, with a gradient in-between.

- -

STYLE_STROKECOLOR

public static $STYLE_STROKECOLOR

Defines the key for the strokeColor style.  Possible values are all HTML color names or HEX codes, as well as special keywords such as ‘swimlane, ‘inherit’ or ‘indicated’ to use the color code of a related cell or the indicator shape.

- -

STYLE_SEPARATORCOLOR

public static $STYLE_SEPARATORCOLOR

Defines the key for the separatorColor style.  Possible values are all HTML color names or HEX codes.  This style is only used for SHAPE_SWIMLANE shapes.

- -

STYLE_STROKEWIDTH

public static $STYLE_STROKEWIDTH

Defines the key for the strokeWidth style.  The type of the value is numeric and the possible range is any non-negative value.  The value the stroke width in pixels.

- -

STYLE_ALIGN

public static $STYLE_ALIGN

Defines the key for the align style.  Possible values are ALIGN_LEFT, ALIGN_CENTER and ALIGN_RIGHT.  This value defines how the lines of the label are horizontally aligned.  ALIGN_LEFT mean label text lines are aligned to left of the label bounds, ALIGN_RIGHT to the right of the label bounds and ALIGN_CENTER means the center of the text lines are aligned in the center of the label bounds.  Note this value doesn’t affect the positioning of the overall label bounds relative to the vertex, to move the label bounds horizontally, use STYLE_LABEL_POSITION.

- -

STYLE_VERTICAL_ALIGN

public static $STYLE_VERTICAL_ALIGN

Defines the key for the verticalAlign style.  Possible values are ALIGN_TOP, ALIGN_MIDDLE and ALIGN_BOTTOM.  This value defines how the lines of the label are vertically aligned.  ALIGN_TOP means the topmost label text line is aligned against the top of the label bounds, ALIGN_BOTTOM means the bottom-most label text line is aligned against the bottom of the label bounds and ALIGN_MIDDLE means there is equal spacing between the topmost text label line and the top of the label bounds and the bottom-most text label line and the bottom of the label bounds.  Note this value doesn’t affect the positioning of the overall label bounds relative to the vertex, to move the label bounds vertically, use STYLE_VERTICAL_LABEL_POSITION.

- -

STYLE_LABEL_POSITION

public static $STYLE_LABEL_POSITION

Defines the key for the horizontal label position of vertices.  Possible values are ALIGN_LEFT, ALIGN_CENTER and ALIGN_RIGHT.  Default is ALIGN_CENTER.  The label align defines the position of the label relative to the cell.  ALIGN_LEFT means the entire label bounds is placed completely just to the left of the vertex, ALIGN_RIGHT means adjust to the right and ALIGN_CENTER means the label bounds are vertically aligned with the bounds of the vertex.  Note this value doesn’t affect the positioning of label within the label bounds, to move the label horizontally within the label bounds, use STYLE_ALIGN.

- -

STYLE_VERTICAL_LABEL_POSITION

public static $STYLE_VERTICAL_LABEL_POSITION

Defines the key for the vertical label position of vertices.  Possible values are ALIGN_TOP, ALIGN_BOTTOM and ALIGN_MIDDLE.  Default is ALIGN_MIDDLE.  The label align defines the position of the label relative to the cell.  ALIGN_TOP means the entire label bounds is placed completely just on the top of the vertex, ALIGN_BOTTOM means adjust on the bottom and ALIGN_MIDDLE means the label bounds are horizontally aligned with the bounds of the vertex.  Note this value doesn’t affect the positioning of label within the label bounds, to move the label vertically within the label bounds, use STYLE_VERTICAL_ALIGN.

- -

STYLE_IMAGE_ALIGN

public static $STYLE_IMAGE_ALIGN

Defines the key for the align style.  Possible values are ALIGN_LEFT, ALIGN_CENTER and ALIGN_RIGHT.  The value defines how any image in the vertex label is aligned horizontally within the label bounds of a SHAPE_LABEL shape.

- -

STYLE_IMAGE_VERTICALALIGN

Defines the key for the verticalAlign style.  Possible values are ALIGN_TOP, ALIGN_MIDDLE and ALIGN_BOTTOM.  The value defines how any image in the vertex label is aligned vertically within the label bounds of a SHAPE_LABEL shape.

- -

STYLE_IMAGE

public static $STYLE_IMAGE

Defines the key for the image style.  Possible values are any image URL, registered key in <mxImageResources> or short data URI as defined in mxImageBundle.  The type of the value is String.  This is the path to the image to image that is to be displayed within the label of a vertex.  Finally, mxUtils.loadImage is used for loading the image for a given value.

- -

STYLE_IMAGE_WIDTH

public static $STYLE_IMAGE_WIDTH

Defines the key for the imageWidth style.  The type of this value is int, the value is the image width in pixels and must be greater than 0.

- -

STYLE_IMAGE_HEIGHT

public static $STYLE_IMAGE_HEIGHT

Defines the key for the imageHeight style.  The type of this value is int, the value is the image height in pixels and must be greater than 0.

- -

STYLE_IMAGE_BACKGROUND

public static $STYLE_IMAGE_BACKGROUND

Defines the key for the image background color.  This style is only used in <mxImageShape>.  Possible values are all HTML color names or HEX codes.

- -

STYLE_IMAGE_BORDER

public static $STYLE_IMAGE_BORDER

Defines the key for the image border color.  This style is only used in <mxImageShape>.  Possible values are all HTML color names or HEX codes.

- -

STYLE_IMAGE_FLIPH

public static $STYLE_IMAGE_FLIPH

Defines the key for the horizontal image flip.  This style is only used for painting images.  Possible values are 0 and 1.  Default is 0.

- -

STYLE_IMAGE_FLIPV

public static $STYLE_IMAGE_FLIPV

Defines the key for the vertical image flip.  This style is only used for painting images.  Possible values are 0 and 1.  Default is 0.

- -

STYLE_NOLABEL

public static $STYLE_NOLABEL

Defines the key for the noLabel style.  If this is true then no label is visible for a given cell.  Possible values are true or false (1 or 0).  Default is false.

- -

STYLE_NOEDGESTYLE

public static $STYLE_NOEDGESTYLE

Defines the key for the noEdgeStyle style.  If this is true then no edge style is applied for a given edge.  Possible values are true or false (1 or 0).  Default is false.

- -

STYLE_LABEL_BACKGROUNDCOLOR

public static $STYLE_LABEL_BACKGROUNDCOLOR

Defines the key for the label background color.  Possible values are all HTML color names or HEX codes.

- -

STYLE_LABEL_BORDERCOLOR

public static $STYLE_LABEL_BORDERCOLOR

Defines the key for the label border color.  Possible values are all HTML color names or HEX codes.

- -

STYLE_INDICATOR_SHAPE

public static $STYLE_INDICATOR_SHAPE

Defines the key for the indicatorShape style.  Possible values are any of the SHAPE_* constants.

- -

STYLE_INDICATOR_IMAGE

public static $STYLE_INDICATOR_IMAGE

Defines the key for the indicatorImage style.  Possible values are any image URL.

- -

STYLE_INDICATOR_COLOR

public static $STYLE_INDICATOR_COLOR

Defines the key for the indicatorColor style.  Possible values are all HTML color names or HEX codes, as well as the special ‘swimlane’ keyword to refer to the color of the parent swimlane if one exists.

- -

STYLE_INDICATOR_GRADIENTCOLOR

public static $STYLE_INDICATOR_GRADIENTCOLOR

Defines the key for the indicatorGradientColor style.  Possible values are all HTML color names or HEX codes.  This style is only supported in SHAPE_LABEL shapes.

- -

STYLE_INDICATOR_SPACING

public static $STYLE_INDICATOR_SPACING

Defines the key for the indicatorSpacing style (in px).

- -

STYLE_INDICATOR_WIDTH

public static $STYLE_INDICATOR_WIDTH

Defines the key for the indicatorWidth style (in px).

- -

STYLE_INDICATOR_HEIGHT

public static $STYLE_INDICATOR_HEIGHT

Defines the key for the indicatorHeight style (in px).

- -

STYLE_SHADOW

public static $STYLE_SHADOW

Defines the key for the shadow style.  The type of the value is Boolean.

- -

STYLE_SEGMENT

public static $STYLE_SEGMENT

Defines the key for the segment style.  The type of this value is float and the value represents the size of the horizontal segment of the entity relation style.  Default is ENTITY_SEGMENT.

- -

STYLE_ENDARROW

public static $STYLE_ENDARROW

Defines the key for the endArrow style.  Possible values are all constants in this class that start with ARROW_.  This style is supported in the <mxConnector> shape.

Example

style[mxConstants.public static $STYLE_ENDARROW] = mxConstants.ARROW_CLASSIC;
- -

STYLE_STARTARROW

public static $STYLE_STARTARROW

Defines the key for the startArrow style.  Possible values are all constants in this class that start with ARROW_.  See <public static $STYLE_ENDARROW>.  This style is supported in the <mxConnector> shape.

- -

STYLE_ENDSIZE

public static $STYLE_ENDSIZE

Defines the key for the endSize style.  The type of this value is numeric and the value represents the size of the end marker in pixels.

- -

STYLE_STARTSIZE

public static $STYLE_STARTSIZE

Defines the key for the startSize style.  The type of this value is numeric and the value represents the size of the start marker or the size of the swimlane title region depending on the shape it is used for.

- -

STYLE_SWIMLANE_LINE

public static $STYLE_SWIMLANE_LINE

Defines the key for the swimlaneLine style.  This style specifies whether the line between the title regio of a swimlane should be visible.  Use 0 for hidden or 1 (default) for visible.  Value is “swimlaneLine”.

- -

STYLE_DASHED

public static $STYLE_DASHED

Defines the key for the endSize style.  The type of this value is numeric and the value represents the size of the end marker in pixels.

- -

STYLE_ROUNDED

public static $STYLE_ROUNDED

Defines the key for the rounded style.  The type of this value is Boolean.  For edges this determines whether or not joins between edges segments are smoothed to a rounded finish.  For vertices that have the rectangle shape, this determines whether or not the rectangle is rounded.

- -

STYLE_SOURCE_PERIMETER_SPACING

public static $STYLE_SOURCE_PERIMETER_SPACING

Defines the key for the source perimeter spacing.  The type of this value is numeric.  This is the distance between the source connection point of an edge and the perimeter of the source vertex in pixels.  This style only applies to edges.

- -

STYLE_TARGET_PERIMETER_SPACING

public static $STYLE_TARGET_PERIMETER_SPACING

Defines the key for the source perimeter spacing.  The type of this value is numeric.  This is the distance between the target connection point of an edge and the perimeter of the target vertex in pixels.

- -

STYLE_PERIMETER_SPACING

public static $STYLE_PERIMETER_SPACING

Defines the key for the perimeter spacing.  This is the distance between the connection point and the perimeter in pixels.  When used in a vertex style, this applies to all incoming edges to floating ports (edges that terminate on the perimeter of the vertex).  When used in an edge style, this spacing applies to the source and target separately, if they terminate in floating ports (on the perimeter of the vertex).

- -

STYLE_SPACING

public static $STYLE_SPACING

Defines the key for the spacing.  The value represents the spacing, in pixels, added to each side of a label in a vertex (style applies to vertices only).

- -

STYLE_SPACING_TOP

public static $STYLE_SPACING_TOP

Defines the key for the spacingTop style.  The value represents the spacing, in pixels, added to the top side of a label in a vertex (style applies to vertices only).

- -

STYLE_SPACING_LEFT

public static $STYLE_SPACING_LEFT

Defines the key for the spacingLeft style.  The value represents the spacing, in pixels, added to the left side of a label in a vertex (style applies to vertices only).

- -

STYLE_SPACING_BOTTOM

public static $STYLE_SPACING_BOTTOM

Defines the key for the spacingBottom style The value represents the spacing, in pixels, added to the bottom side of a label in a vertex (style applies to vertices only).

- -

STYLE_SPACING_RIGHT

public static $STYLE_SPACING_RIGHT

Defines the key for the spacingRight style The value represents the spacing, in pixels, added to the right side of a label in a vertex (style applies to vertices only).

- -

STYLE_HORIZONTAL

public static $STYLE_HORIZONTAL

Defines the key for the horizontal style.  Possible values are true or false.  This value only applies to vertices.  If the STYLE_SHAPE is <code>SHAPE_SWIMLANE</code> a value of false indicates that the swimlane should be drawn vertically, true indicates to draw it horizontally.  If the shape style does not indicate that this vertex is a swimlane, this value affects only whether the label is drawn horizontally or vertically.

- -

STYLE_DIRECTION

public static $STYLE_DIRECTION

Defines the key for the direction style.  The direction style is used to specify the direction of certain shapes (eg.  <mxTriangle>).  Possible values are DIRECTION_EAST (default), DIRECTION_WEST, DIRECTION_NORTH and DIRECTION_SOUTH.

- -

STYLE_ELBOW

public static $STYLE_ELBOW

Defines the key for the elbow style.  Possible values are ELBOW_HORIZONTAL and ELBOW_VERTICAL.  Default is ELBOW_HORIZONTAL.  This defines how the three segment orthogonal edge style leaves its terminal vertices.  The vertical style leaves the terminal vertices at the top and bottom sides.

- -

STYLE_FONTCOLOR

public static $STYLE_FONTCOLOR

Defines the key for the fontColor style.  Possible values are all HTML color names or HEX codes.

- -

STYLE_FONTFAMILY

public static $STYLE_FONTFAMILY

Defines the key for the fontFamily style.  Possible values are names such as Arial; Dialog; Verdana; Times New Roman.  The value is of type String.

- -

STYLE_FONTSIZE

public static $STYLE_FONTSIZE

Defines the key for the fontSize style (in px).  The type of the value is int.

- -

STYLE_FONTSTYLE

public static $STYLE_FONTSTYLE

Defines the key for the fontStyle style.  Values may be any logical AND (sum) of FONT_BOLD, FONT_ITALIC and FONT_UNDERLINE.  The type of the value is int.

- -

STYLE_SHAPE

public static $STYLE_SHAPE

Defines the key for the shape.  Possible values are all constants with a SHAPE-prefix or any newly defined shape names.

- -

STYLE_EDGE

public static $STYLE_EDGE

Defines the key for the edge style.  Possible values are the functions defined in mxEdgeStyle.

- -

STYLE_LOOP

public static $STYLE_LOOP

Defines the key for the loop style.  Possible values are the functions defined in mxEdgeStyle.

- -

STYLE_ROUTING_CENTER_X

public static $STYLE_ROUTING_CENTER_X

Defines the key for the horizontal routing center.  Possible values are between -0.5 and 0.5.  This is the relative offset from the center used for connecting edges.  The type of this value is numeric.

- -

STYLE_ROUTING_CENTER_Y

public static $STYLE_ROUTING_CENTER_Y

Defines the key for the vertical routing center.  Possible values are between -0.5 and 0.5.  This is the relative offset from the center used for connecting edges.  The type of this value is numeric.

- -

FONT_BOLD

public static $FONT_BOLD
- -

FONT_ITALIC

public static $FONT_ITALIC
- -

FONT_UNDERLINE

public static $FONT_UNDERLINE
- -

SHAPE_RECTANGLE

public static $SHAPE_RECTANGLE
- -

SHAPE_ELLIPSE

public static $SHAPE_ELLIPSE
- -

SHAPE_DOUBLE_ELLIPSE

public static $SHAPE_DOUBLE_ELLIPSE
- -

SHAPE_RHOMBUS

public static $SHAPE_RHOMBUS
- -

SHAPE_LINE

public static $SHAPE_LINE
- -

SHAPE_IMAGE

public static $SHAPE_IMAGE
- -

SHAPE_ARROW

public static $SHAPE_ARROW
- -

SHAPE_LABEL

public static $SHAPE_LABEL
- -

SHAPE_CYLINDER

public static $SHAPE_CYLINDER
- -

SHAPE_SWIMLANE

public static $SHAPE_SWIMLANE
- -

SHAPE_CONNECTOR

public static $SHAPE_CONNECTOR
- -

SHAPE_ACTOR

public static $SHAPE_ACTOR
- -

SHAPE_CLOUD

public static $SHAPE_CLOUD
- -

SHAPE_TRIANGLE

public static $SHAPE_TRIANGLE
- -

SHAPE_HEXAGON

public static $SHAPE_HEXAGON
- -

ARROW_CLASSIC

public static $ARROW_CLASSIC
- -

ARROW_BLOCK

public static $ARROW_BLOCK
- -

ARROW_OPEN

public static $ARROW_OPEN
- -

ARROW_OVAL

public static $ARROW_OVAL
- -

ARROW_DIAMOND

public static $ARROW_DIAMOND
- -

ALIGN_LEFT

public static $ALIGN_LEFT
- -

ALIGN_CENTER

public static $ALIGN_CENTER
- -

ALIGN_RIGHT

public static $ALIGN_RIGHT
- -

ALIGN_TOP

public static $ALIGN_TOP
- -

ALIGN_MIDDLE

public static $ALIGN_MIDDLE
- -

ALIGN_BOTTOM

public static $ALIGN_BOTTOM
- -

DIRECTION_NORTH

public static $DIRECTION_NORTH
- -

DIRECTION_SOUTH

public static $DIRECTION_SOUTH
- -

DIRECTION_EAST

public static $DIRECTION_EAST
- -

DIRECTION_WEST

public static $DIRECTION_WEST
- -

ELBOW_VERTICAL

public static $ELBOW_VERTICAL
- -

ELBOW_HORIZONTAL

public static $ELBOW_HORIZONTAL
- -

EDGESTYLE_ENTITY_RELATION

public static $EDGESTYLE_ENTITY_RELATION

Name of the entity relation edge style.  Can be used as a string value for the STYLE_EDGE style.

- -

EDGESTYLE_LOOP

public static $EDGESTYLE_LOOP

Name of the loop edge style.  Can be used as a string value for the STYLE_EDGE style.

- -

EDGESTYLE_SIDETOSIDE

public static $EDGESTYLE_SIDETOSIDE

Name of the side to side edge style.  Can be used as a string value for the STYLE_EDGE style.

- -

EDGESTYLE_TOPTOBOTTOM

public static $EDGESTYLE_TOPTOBOTTOM

Name of the top to bottom edge style.  Can be used as a string value for the STYLE_EDGE style.

- -

PERIMETER_ELLIPSE

public static $PERIMETER_ELLIPSE

Name of the ellipse perimeter.  Can be used as a string value for the STYLE_PERIMETER style.

- -

PERIMETER_RECTANGLE

public static $PERIMETER_RECTANGLE

Name of the rectangle perimeter.  Can be used as a string value for the STYLE_PERIMETER style.

- -

PERIMETER_RHOMBUS

public static $PERIMETER_RHOMBUS

Name of the rhombus perimeter.  Can be used as a string value for the STYLE_PERIMETER style.

- -

PERIMETER_TRIANGLE

public static $PERIMETER_TRIANGLE

Name of the triangle perimeter.  Can be used as a string value for the STYLE_PERIMETER style.

- -
- - - - - - - - - - -
public static $RAD_PER_DEG
Defines the number of radiants per degree.
public static $DEG_PER_RAD
Defines the number of degrees per radiant.
public static $ACTIVE_REGION
Defines the portion of the cell which is to be used as a connectable region.
public static $MIN_ACTIVE_REGION
Defines the minimum size in pixels of the portion of the cell cell which is to be used as a connectable region.
public static $NS_SVG
Defines the SVG namespace.
public static $NS_XHTML
Defines the XHTML namespace.
public static $NS_XLINK
Defined the XLink namespace.
public static $W3C_SHADOWCOLOR
Defines the color to be used to draw shadows in DOM documents.
public static $SHADOW_OFFSETX
Defines the x-offset to be used for shadows.
public static $SHADOW_OFFSETY
Defines the y-offset to be used for shadows.
public static $W3C_DEFAULT_FONTFAMILY
Defines the default family for HTML markup.
public static $TTF_ENABLED
Whether TrueType fonts should be enabled in the mxGdCanvas by default.
public static $TTF_SIZEFACTOR
Defines the factor which wich the font sizes are to be multiplied when used in truetype fonts.
public static $DEFAULT_FONTFAMILY
Defines the default family for all truetype fonts.
public static $DEFAULT_FONTSIZE
Defines the default size (in px).
public static $DEFAULT_STARTSIZE
Defines the default start size for swimlanes.
public static $DEFAULT_LINESPACING
Defines the default linespacing.
public static $LABEL_INSET
Defines the inset in absolute pixels between the label bounding box and the label text.
public static $DEFAULT_MARKERSIZE
Defines the default size for all markers.
public static $DEFAULT_IMAGESIZE
Defines the default width and height for images used in the label shape.
public static $ENTITY_SEGMENT
Defines the length of the horizontal segment of an Entity Relation.
public static $ARROW_SPACING
Defines the spacing between the arrow shape and its terminals.
public static $ARROW_WIDTH
Defines the width of the arrow shape.
public static $ARROW_SIZE
Defines the size of the arrowhead in the arrow shape.
public static $NONE
Defines the value for none.
public static $STYLE_PERIMETER
Defines the key for the perimeter style.
public static $STYLE_OPACITY
Defines the key for the opacity style.
public static $STYLE_TEXT_OPACITY
Defines the key for the text opacity style.
public static $STYLE_OVERFLOW
Defines the key for the overflow style.
public static $STYLE_ORTHOGONAL
Defines if the connection points on either end of the edge should be computed so that the edge is vertical or horizontal if possible and if the point is not at a fixed location.
public static $STYLE_EXIT_X
Defines the key for the horizontal relative coordinate connection point of an edge with its source terminal.
public static $STYLE_EXIT_Y
Defines the key for the vertical relative coordinate connection point of an edge with its source terminal.
public static $STYLE_EXIT_PERIMETER
Defines if the perimeter should be used to find the exact entry point along the perimeter of the source.
public static $STYLE_ENTRY_X
Defines the key for the horizontal relative coordinate connection point of an edge with its target terminal.
public static $STYLE_ENTRY_Y
Defines the key for the vertical relative coordinate connection point of an edge with its target terminal.
public static $STYLE_WHITE_SPACE
Defines the key for the white-space style.
public static $STYLE_ROTATION
Defines the key for the rotation style.
public static $STYLE_FILLCOLOR
Defines the key for the fill color.
public static $STYLE_SWIMLANE_FILLCOLOR
Defines the key for the fill color of the swimlane background.
public static $STYLE_GRADIENTCOLOR
Defines the key for the gradient color.
public static $STYLE_GRADIENT_DIRECTION
Defines the key for the gradient direction.
public static $STYLE_STROKECOLOR
Defines the key for the strokeColor style.
public static $STYLE_SEPARATORCOLOR
Defines the key for the separatorColor style.
public static $STYLE_STROKEWIDTH
Defines the key for the strokeWidth style.
public static $STYLE_ALIGN
Defines the key for the align style.
public static $STYLE_VERTICAL_ALIGN
Defines the key for the verticalAlign style.
public static $STYLE_LABEL_POSITION
Defines the key for the horizontal label position of vertices.
public static $STYLE_VERTICAL_LABEL_POSITION
Defines the key for the vertical label position of vertices.
public static $STYLE_IMAGE_ALIGN
Defines the key for the align style.
public static $STYLE_IMAGE
Defines the key for the image style.
public static $STYLE_IMAGE_WIDTH
Defines the key for the imageWidth style.
public static $STYLE_IMAGE_HEIGHT
Defines the key for the imageHeight style.
public static $STYLE_IMAGE_BACKGROUND
Defines the key for the image background color.
public static $STYLE_IMAGE_BORDER
Defines the key for the image border color.
public static $STYLE_IMAGE_FLIPH
Defines the key for the horizontal image flip.
public static $STYLE_IMAGE_FLIPV
Defines the key for the vertical image flip.
public static $STYLE_NOLABEL
Defines the key for the noLabel style.
public static $STYLE_NOEDGESTYLE
Defines the key for the noEdgeStyle style.
public static $STYLE_LABEL_BACKGROUNDCOLOR
Defines the key for the label background color.
public static $STYLE_LABEL_BORDERCOLOR
Defines the key for the label border color.
public static $STYLE_INDICATOR_SHAPE
Defines the key for the indicatorShape style.
public static $STYLE_INDICATOR_IMAGE
Defines the key for the indicatorImage style.
public static $STYLE_INDICATOR_COLOR
Defines the key for the indicatorColor style.
public static $STYLE_INDICATOR_GRADIENTCOLOR
Defines the key for the indicatorGradientColor style.
public static $STYLE_INDICATOR_SPACING
Defines the key for the indicatorSpacing style (in px).
public static $STYLE_INDICATOR_WIDTH
Defines the key for the indicatorWidth style (in px).
public static $STYLE_INDICATOR_HEIGHT
Defines the key for the indicatorHeight style (in px).
public static $STYLE_SHADOW
Defines the key for the shadow style.
public static $STYLE_SEGMENT
Defines the key for the segment style.
public static $STYLE_ENDARROW
Defines the key for the endArrow style.
public static $STYLE_STARTARROW
Defines the key for the startArrow style.
public static $STYLE_ENDSIZE
Defines the key for the endSize style.
public static $STYLE_STARTSIZE
Defines the key for the startSize style.
public static $STYLE_SWIMLANE_LINE
Defines the key for the swimlaneLine style.
public static $STYLE_DASHED
Defines the key for the endSize style.
public static $STYLE_ROUNDED
Defines the key for the rounded style.
public static $STYLE_SOURCE_PERIMETER_SPACING
Defines the key for the source perimeter spacing.
public static $STYLE_TARGET_PERIMETER_SPACING
Defines the key for the source perimeter spacing.
public static $STYLE_PERIMETER_SPACING
Defines the key for the perimeter spacing.
public static $STYLE_SPACING
Defines the key for the spacing.
public static $STYLE_SPACING_TOP
Defines the key for the spacingTop style.
public static $STYLE_SPACING_LEFT
Defines the key for the spacingLeft style.
public static $STYLE_SPACING_BOTTOM
Defines the key for the spacingBottom style The value represents the spacing, in pixels, added to the bottom side of a label in a vertex (style applies to vertices only).
public static $STYLE_SPACING_RIGHT
Defines the key for the spacingRight style The value represents the spacing, in pixels, added to the right side of a label in a vertex (style applies to vertices only).
public static $STYLE_HORIZONTAL
Defines the key for the horizontal style.
public static $STYLE_DIRECTION
Defines the key for the direction style.
public static $STYLE_ELBOW
Defines the key for the elbow style.
public static $STYLE_FONTCOLOR
Defines the key for the fontColor style.
public static $STYLE_FONTFAMILY
Defines the key for the fontFamily style.
public static $STYLE_FONTSIZE
Defines the key for the fontSize style (in px).
public static $STYLE_FONTSTYLE
Defines the key for the fontStyle style.
public static $STYLE_SHAPE
Defines the key for the shape.
public static $STYLE_EDGE
Defines the key for the edge style.
public static $STYLE_LOOP
Defines the key for the loop style.
public static $STYLE_ROUTING_CENTER_X
Defines the key for the horizontal routing center.
public static $STYLE_ROUTING_CENTER_Y
Defines the key for the vertical routing center.
public static $FONT_BOLD
public static $FONT_ITALIC
public static $FONT_UNDERLINE
public static $SHAPE_RECTANGLE
public static $SHAPE_ELLIPSE
public static $SHAPE_DOUBLE_ELLIPSE
public static $SHAPE_RHOMBUS
public static $SHAPE_LINE
public static $SHAPE_IMAGE
public static $SHAPE_ARROW
public static $SHAPE_LABEL
public static $SHAPE_CYLINDER
public static $SHAPE_SWIMLANE
public static $SHAPE_CONNECTOR
public static $SHAPE_ACTOR
public static $SHAPE_CLOUD
public static $SHAPE_TRIANGLE
public static $SHAPE_HEXAGON
public static $ARROW_CLASSIC
public static $ARROW_BLOCK
public static $ARROW_OPEN
public static $ARROW_OVAL
public static $ARROW_DIAMOND
public static $ALIGN_LEFT
public static $ALIGN_CENTER
public static $ALIGN_RIGHT
public static $ALIGN_TOP
public static $ALIGN_MIDDLE
public static $ALIGN_BOTTOM
public static $DIRECTION_NORTH
public static $DIRECTION_SOUTH
public static $DIRECTION_EAST
public static $DIRECTION_WEST
public static $ELBOW_VERTICAL
public static $ELBOW_HORIZONTAL
public static $EDGESTYLE_ENTITY_RELATION
Name of the entity relation edge style.
public static $EDGESTYLE_LOOP
Name of the loop edge style.
public static $EDGESTYLE_SIDETOSIDE
Name of the side to side edge style.
public static $EDGESTYLE_TOPTOBOTTOM
Name of the top to bottom edge style.
public static $PERIMETER_ELLIPSE
Name of the ellipse perimeter.
public static $PERIMETER_RECTANGLE
Name of the rectangle perimeter.
public static $PERIMETER_RHOMBUS
Name of the rhombus perimeter.
public static $PERIMETER_TRIANGLE
Name of the triangle perimeter.
Provides various perimeter functions to be used in a style as the value of mxConstants.STYLE_PERIMETER.
Singleton class that acts as a global converter from string to object values in a style.
function isOrthogonal($edge)
Returns true if perimeter points should be computed such that the resulting edge has only horizontal or vertical segments.
Maps from keys to base64 encoded images or file locations.
static function loadImage($url)
Loads an image from the local filesystem, a data URI or any other URL.
Provides various edge styles to be used as the values for mxConstants.STYLE_EDGE in a cell style.
- - - - - - - - \ No newline at end of file diff --git a/docs/php-api/files/util/mxEvent-php.html b/docs/php-api/files/util/mxEvent-php.html deleted file mode 100644 index ba767a8d9..000000000 --- a/docs/php-api/files/util/mxEvent-php.html +++ /dev/null @@ -1,47 +0,0 @@ - - -mxEvent - - - - - - - - - -

mxEvent

Defines global constants.

Summary
mxEventDefines global constants.
Variables
GRAPH_MODEL_CHANGEDDefines the name of the graphModelChanged event.
SCALEDefines the name of the scale event.
TRANSLATEDefines the name of the translate event.
- -

Variables

- -

GRAPH_MODEL_CHANGED

public static $GRAPH_MODEL_CHANGED

Defines the name of the graphModelChanged event.

- -

SCALE

public static $SCALE

Defines the name of the scale event.

- -

TRANSLATE

public static $TRANSLATE

Defines the name of the translate event.

- -
- - - - - - - - - - -
public static $GRAPH_MODEL_CHANGED
Defines the name of the graphModelChanged event.
public static $SCALE
Defines the name of the scale event.
public static $TRANSLATE
Defines the name of the translate event.
- - - - - - - - \ No newline at end of file diff --git a/docs/php-api/files/util/mxEventObject-php.html b/docs/php-api/files/util/mxEventObject-php.html deleted file mode 100644 index c2a454c62..000000000 --- a/docs/php-api/files/util/mxEventObject-php.html +++ /dev/null @@ -1,61 +0,0 @@ - - -mxEventObject - - - - - - - - - -

mxEventObject

Base class for all events.

Summary
mxEventObjectBase class for all events.
Variables
nameHolds the name of the event.
propertiesHolds the event properties in an associative array that maps from string (key) to object (value).
consumedHolds the consumed state of the event.
Functions
mxEventObjectConstructs a new event for the given name and properties.
getNameReturns name.
getPropertiesReturns properties.
getPropertyReturns the property value for the given key.
isConsumedReturns true if the event has been consumed.
consumeConsumes the event.
- -

Variables

- -

name

var $name

Holds the name of the event.

- -

properties

var $properties

Holds the event properties in an associative array that maps from string (key) to object (value).

- -

consumed

var $consumed

Holds the consumed state of the event.  Default is false.

- -

Functions

- -

mxEventObject

function mxEventObject($name)

Constructs a new event for the given name and properties.  The optional properties are specified using a sequence of keys and values, eg. new mxEventObject($name, $key1, $value1, $key2, $value2, .., $keyN, $valueN)

- -

getName

function getName()

Returns name.

- -

getProperties

function getProperties()

Returns properties.

- -

getProperty

function getProperty($key)

Returns the property value for the given key.

- -

isConsumed

function isConsumed()

Returns true if the event has been consumed.

- -

consume

function consume()

Consumes the event.

- -
- - - - - - - - - - -
var $name
Holds the name of the event.
var $properties
Holds the event properties in an associative array that maps from string (key) to object (value).
var $consumed
Holds the consumed state of the event.
function mxEventObject($name)
Constructs a new event for the given name and properties.
function getName()
Returns name.
function getProperties()
Returns properties.
function getProperty($key)
Returns the property value for the given key.
function isConsumed()
Returns true if the event has been consumed.
function consume()
Consumes the event.
- - - - - - - - \ No newline at end of file diff --git a/docs/php-api/files/util/mxEventSource-php.html b/docs/php-api/files/util/mxEventSource-php.html deleted file mode 100644 index dc4d0d5bf..000000000 --- a/docs/php-api/files/util/mxEventSource-php.html +++ /dev/null @@ -1,49 +0,0 @@ - - -mxEventSource - - - - - - - - - -

mxEventSource

Base class for all event sources.

Summary
mxEventSourceBase class for all event sources.
Variables
eventListenersHolds the registered listeners.
Functions
addListenerAdds a listener for the given event name.
fireEventFires the event for the specified name.
- -

Variables

- -

eventListeners

var $eventListeners

Holds the registered listeners.

- -

Functions

- -

addListener

function addListener($name,
$listener)

Adds a listener for the given event name.  Note that the method of the listener object must have the same name as the event it’s being added for.  This is different from other language implementations of this class.

- -

fireEvent

function fireEvent($event)

Fires the event for the specified name.

- -
- - - - - - - - - - -
var $eventListeners
Holds the registered listeners.
function addListener($name,
$listener)
Adds a listener for the given event name.
function fireEvent($event)
Fires the event for the specified name.
- - - - - - - - \ No newline at end of file diff --git a/docs/php-api/files/util/mxImageBundle-php.html b/docs/php-api/files/util/mxImageBundle-php.html deleted file mode 100644 index 4c1b25f3a..000000000 --- a/docs/php-api/files/util/mxImageBundle-php.html +++ /dev/null @@ -1,67 +0,0 @@ - - -mxImageBundle - - - - - - - - - -

mxImageBundle

Maps from keys to base64 encoded images or file locations.  All values must be URLs or use the format data:image/format followed by a comma and the base64 encoded image data, eg.  “data:image/gif,XYZ”, where XYZ is the base64 encoded image data.

$bundle = new mxImageBundle();
-$bundle->putImage("myImage", "data:image/gif,R0lGODlhEAAQAMIGAAAAAICAAICAgP".
-  "//AOzp2O3r2////////yH+FUNyZWF0ZWQgd2l0aCBUaGUgR0lNUAAh+QQBCgAHACwAAAAAEA".
-  "AQAAADTXi63AowynnAMDfjPUDlnAAJhmeBFxAEloliKltWmiYCQvfVr6lBPB1ggxN1hilaSS".
-  "ASFQpIV5HJBDyHpqK2ejVRm2AAgZCdmCGO9CIBADs=");
-$graph->addImageBundle($bundle);
-(end);
-
-The image can then be referenced in any cell style using image=myImage.
-
-To convert an image at a given URL to a base64 encoded String, the following
-code can be used:
-
-(code)
-echo "base64=".base64_encode(file_get_contents($url));

The value is decoded in mxUtils.loadImage.  The keys for images are resolved and the short format above is converted to a data URI in mxGraph.postProcessCellStyle.

Summary
mxImageBundleMaps from keys to base64 encoded images or file locations.
Variables
imagesMaps from keys to images.
Functions
mxImageBundleConstructs a new image bundle.
getImagesReturns the images.
putImageAdds the specified entry to the map.
getImageReturns the value for the given key.
- -

Variables

- -

images

var $images

Maps from keys to images.

- -

Functions

- -

mxImageBundle

function mxImageBundle()

Constructs a new image bundle.

- -

getImages

function getImages()

Returns the images.

- -

putImage

function putImage($key,
$value)

Adds the specified entry to the map.

- -

getImage

function getImage($key)

Returns the value for the given key.

- -
- - - - - - - - - - -
var $images
Maps from keys to images.
function mxImageBundle()
Constructs a new image bundle.
function getImages()
Returns the images.
function putImage($key,
$value)
Adds the specified entry to the map.
function getImage($key)
Returns the value for the given key.
static function loadImage($url)
Loads an image from the local filesystem, a data URI or any other URL.
function postProcessCellStyle($style)
Tries to resolve the value for the image style in the image bundles and turns short data URIs as defined in mxImageBundle to data URIs as defined in RFC 2397 of the IETF.
- - - - - - - - \ No newline at end of file diff --git a/docs/php-api/files/util/mxLog-php.html b/docs/php-api/files/util/mxLog-php.html deleted file mode 100644 index f5711fa15..000000000 --- a/docs/php-api/files/util/mxLog-php.html +++ /dev/null @@ -1,83 +0,0 @@ - - -mxLog - - - - - - - - - -

mxLog

Logging facility.

Summary
mxLogLogging facility.
Variables
level_fineSpecifies the fine logging level.
level_debugSpecifies the debug logging level.
level_infoSpecifies the info logging level.
level_warnSpecifies the warn logging level.
level_errorSpecifies the error logging level.
currentDefault is true.
tabDefault is true.
logfilesHolds the array of logfiles.
printLogSpecifies if the log should be printed out.
Functions
addLogfileAdds a file for logging.
enterLogs a method entry.
leaveLogs a method exit.
fineLogs a fine trace.
debugLogs a debug trace.
infoLogs an info trace.
warnLogs a warn trace.
errorLogs an error trace.
writelnWrites a line with a linefeed to the log.
writeWrites a line to the log.
closeCloses all open logfiles.
- -

Variables

- -

level_fine

public static $level_fine

Specifies the fine logging level.

- -

level_debug

public static $level_debug

Specifies the debug logging level.

- -

level_info

public static $level_info

Specifies the info logging level.

- -

level_warn

public static $level_warn

Specifies the warn logging level.

- -

level_error

public static $level_error

Specifies the error logging level.

- -

current

public static $current

Default is true.

- -

tab

public static $tab

Default is true.

- -

logfiles

public static $logfiles

Holds the array of logfiles.

- -

printLog

public static $printLog

Specifies if the log should be printed out.

- -

Functions

- -

addLogfile

static function addLogfile($filename)

Adds a file for logging.

- -

enter

static function enter($method,  
$text = "")

Logs a method entry.

- -

leave

static function leave($text = "")

Logs a method exit.

- -

fine

static function fine($text)

Logs a fine trace.

- -

debug

static function debug($text)

Logs a debug trace.

- -

info

static function info($text)

Logs an info trace.

- -

warn

static function warn($text)

Logs a warn trace.

- -

error

static function error($text)

Logs an error trace.

- -

writeln

static function writeln($text)

Writes a line with a linefeed to the log.

- -

write

static function write($text)

Writes a line to the log.

- -

close

static function close()

Closes all open logfiles.

- -
- - - - - - - - - - -
public static $level_fine
Specifies the fine logging level.
public static $level_debug
Specifies the debug logging level.
public static $level_info
Specifies the info logging level.
public static $level_warn
Specifies the warn logging level.
public static $level_error
Specifies the error logging level.
public static $current
Default is true.
public static $tab
Default is true.
public static $logfiles
Holds the array of logfiles.
public static $printLog
Specifies if the log should be printed out.
static function addLogfile($filename)
Adds a file for logging.
static function enter($method,  
$text = "")
Logs a method entry.
static function leave($text = "")
Logs a method exit.
static function fine($text)
Logs a fine trace.
static function debug($text)
Logs a debug trace.
static function info($text)
Logs an info trace.
static function warn($text)
Logs a warn trace.
static function error($text)
Logs an error trace.
static function writeln($text)
Writes a line with a linefeed to the log.
static function write($text)
Writes a line to the log.
static function close()
Closes all open logfiles.
- - - - - - - - \ No newline at end of file diff --git a/docs/php-api/files/util/mxPoint-php.html b/docs/php-api/files/util/mxPoint-php.html deleted file mode 100644 index 45cfaf65a..000000000 --- a/docs/php-api/files/util/mxPoint-php.html +++ /dev/null @@ -1,53 +0,0 @@ - - -mxPoint - - - - - - - - - -

mxPoint

Implements a 2-dimensional point with double precision coordinates.

Summary
mxPointImplements a 2-dimensional point with double precision coordinates.
Variables
xHolds the x-coordinate of the point.
yHolds the y-coordinate of the point.
Functions
mxPointConstructs a new point for the optional x and y coordinates.
equalsReturns true if the given object equals this point.
copyReturns a copy of this mxPoint.
- -

Variables

- -

x

var $x

Holds the x-coordinate of the point.  Default is 0.

- -

y

var $y

Holds the y-coordinate of the point.  Default is 0.

- -

Functions

- -

mxPoint

function mxPoint($x =  0,
$y =  0)

Constructs a new point for the optional x and y coordinates.  If no coordinates are given, then the default values for x and y are used.

- -

equals

function equals($obj)

Returns true if the given object equals this point.

- -

copy

function copy()

Returns a copy of this mxPoint.

- -
- - - - - - - - - - -
var $x
Holds the x-coordinate of the point.
var $y
Holds the y-coordinate of the point.
function mxPoint($x =  0,
$y =  0)
Constructs a new point for the optional x and y coordinates.
function equals($obj)
Returns true if the given object equals this point.
function copy()
Returns a copy of this mxPoint.
- - - - - - - - \ No newline at end of file diff --git a/docs/php-api/files/util/mxRectangle-php.html b/docs/php-api/files/util/mxRectangle-php.html deleted file mode 100644 index ae18cbfd3..000000000 --- a/docs/php-api/files/util/mxRectangle-php.html +++ /dev/null @@ -1,63 +0,0 @@ - - -mxRectangle - - - - - - - - - -

mxRectangle

Implements a 2-dimensional rectangle with double precision coordinates.

Summary
mxRectangleImplements a 2-dimensional rectangle with double precision coordinates.
Variables
widthHolds the width of the rectangle.
heightHolds the height of the rectangle.
Functions
mxRectangleConstructs a new rectangle for the optional parameters.
setRectSets this rectangle to the specified values.
getCenterXReturns the x-coordinate of the center point.
getCenterYReturns the y-coordinate of the center point.
addAdds the given rectangle to this rectangle.
growGrows the rectangle by the given amount, that is, this method subtracts the given amount from the x- and y-coordinates and adds twice the amount to the width and height.
equalsReturns true if the given object equals this rectangle.
copyReturns a copy of this mxRectangle.
- -

Variables

- -

width

var $width

Holds the width of the rectangle.  Default is 0.

- -

height

var $height

Holds the height of the rectangle.  Default is 0.

- -

Functions

- -

mxRectangle

function mxRectangle($x =  0,
$y =  0,
$width =  0,
$height =  0)

Constructs a new rectangle for the optional parameters.  If no parameters are given then the respective default values are used.

- -

setRect

function setRect($x,
$y,
$width,
$height)

Sets this rectangle to the specified values.

- -

getCenterX

function getCenterX()

Returns the x-coordinate of the center point.

- -

getCenterY

function getCenterY()

Returns the y-coordinate of the center point.

- -

add

function add($rect)

Adds the given rectangle to this rectangle.

- -

grow

function grow($amount)

Grows the rectangle by the given amount, that is, this method subtracts the given amount from the x- and y-coordinates and adds twice the amount to the width and height.

- -

equals

function equals($obj)

Returns true if the given object equals this rectangle.

- -

copy

function copy()

Returns a copy of this mxRectangle.

- -
- - - - - - - - - - -
var $width
Holds the width of the rectangle.
var $height
Holds the height of the rectangle.
function mxRectangle($x =  0,
$y =  0,
$width =  0,
$height =  0)
Constructs a new rectangle for the optional parameters.
function setRect($x,
$y,
$width,
$height)
Sets this rectangle to the specified values.
function getCenterX()
Returns the x-coordinate of the center point.
function getCenterY()
Returns the y-coordinate of the center point.
function add($rect)
Adds the given rectangle to this rectangle.
function grow($amount)
Grows the rectangle by the given amount, that is, this method subtracts the given amount from the x- and y-coordinates and adds twice the amount to the width and height.
function equals($obj)
Returns true if the given object equals this rectangle.
function copy()
Returns a copy of this mxRectangle.
- - - - - - - - \ No newline at end of file diff --git a/docs/php-api/files/util/mxUtils-php.html b/docs/php-api/files/util/mxUtils-php.html deleted file mode 100644 index 628706ed5..000000000 --- a/docs/php-api/files/util/mxUtils-php.html +++ /dev/null @@ -1,119 +0,0 @@ - - -mxUtils - - - - - - - - - -

mxUtils

Helper methods.

Summary
mxUtilsHelper methods.
Functions
getLabelSizeReturns the size of the given label.
getLabelPaintBoundsReturns the paint bounds for the given label.
getScaledLabelBoundsReturns the bounds for a label for the given location and size, taking into account the alignment and spacing in the specified style, as well as the width and height of the rectangle that contains the label.
getSizeForStringReturns an mxRectangle with the size (width and height in pixels) of the given string.
flipImageFlips the given image horizontally and/or vertically and returns a new image instance.
toRadiansConverts the given degree to radians.
getBoundingBoxReturns the bounding box for the rotated rectangle.
getRotatedPointRotates the given point by the given cos and sin.
translatePointsCreates a new list of new points obtained by translating the points in the given list by the given vector.
containsReturns true if the specified point (x, y) is contained in the given rectangle.
intersectionReturns the intersection of two lines as an mxPoint.
encodeImageEncodes the given image using the GD image encoding routines.
getStylenameReturns the stylename in a style of the form [stylename;|key=value;] or an empty string if the given style does not contain a stylename.
getStylenamesReturns the stylenames in a style of the form [stylename;|key=value;] or an empty array if the given style does not contain any stylenames.
indexOfStylenameReturns the index of the given stylename in the given style.
addStylenameAdds the specified stylename to the given style if it does not already contain the stylename.
removeStylenameRemoves all occurrences of the specified stylename in the given style and returns the updated style.
removeAllStylenamesRemoves all stylenames from the given style and returns the updated style.
setCellStylesAssigns the value for the given key in the styles of the given cells, or removes the key from the styles if the value is null.
setStyleAdds or removes the given key, value pair to the style and returns the new style.
setCellStyleFlagsSets or toggles the flag bit for the given key in the cell’s styles.
setStyleFlagSets or removes the given key from the specified style and returns the new style.
getValueReturns the value for key in dictionary or the given default value if no value is defined for the key.
getNumberReturns the value for key in dictionary or 0 if no value is defined for the key.
indexOfReturns the index of obj in array or -1 if the array does not contains the given object.
readFileReads the given filename into a string.
isNodeReturns true if the given value is an XML node with the node name and if the optional attribute has the specified value.
loadImageLoads an image from the local filesystem, a data URI or any other URL.
createXmlDocumentReturns a new, empty XML document.
loadXmlDocumentReturns a new DOM document for the given URI.
parseXmlReturns a new DOM document for the given XML string.
evaluateEvaluates an expression to a class member.
findNodeReturns the first node where attr equals value.
getTrueTypeFontReturns the truetype font to be used to draw the text with the given style.
getTrueTypeFontSizeReturns the truetype font size to be used to draw the text with the given style.
getFixedFontSizeReturns the fixed font size for GD (1 t0 5) for the given font properties
stackTracePrints a simple stack trace in the error log.
- -

Functions

- -

getLabelSize

static function getLabelSize($label,
$style)

Returns the size of the given label.

- -

getLabelPaintBounds

static function getLabelPaintBounds($label,
$style,
$isHtml,
$offset,
$vertexBounds,
$scale)

Returns the paint bounds for the given label.

- -

getScaledLabelBounds

static function getScaledLabelBounds($x,
$y,
$size,
$outerWidth,
$outerHeight,
$style,
$scale)

Returns the bounds for a label for the given location and size, taking into account the alignment and spacing in the specified style, as well as the width and height of the rectangle that contains the label.  (For edge labels this width and height is 0.)  The scale is used to scale the given size and the spacings in the specified style.

- -

getSizeForString

static function getSizeForString($text,  
$fontSize =  0,
$fontFamily =  null)

Returns an mxRectangle with the size (width and height in pixels) of the given string.  The string may contain HTML markup.  Newlines should be converted to <br> before calling this method.

Parameters

textString whose size should be returned.
fontSizeInteger that specifies the font size in pixels.  Default is mxConstants.DEFAULT_FONTSIZE.
fontFamilyString that specifies the name of the font famil.y Default is mxConstants.DEFAULT_FONTFAMILY.
- -

flipImage

static function flipImage($img,
$flipH,
$flipV)

Flips the given image horizontally and/or vertically and returns a new image instance.

- -

toRadians

static function toRadians($deg)

Converts the given degree to radians.

- -

getBoundingBox

static function getBoundingBox($rect,
$rotation)

Returns the bounding box for the rotated rectangle.

- -

getRotatedPoint

static function getRotatedPoint($pt,  
$cos,  
$sin,  
$cx =  null)

Rotates the given point by the given cos and sin.

- -

translatePoints

static function translatePoints($pts,
$dx,
$dy)

Creates a new list of new points obtained by translating the points in the given list by the given vector.  Elements that are not mxPoints are added to the result as-is.

- -

contains

static function contains($state,
$x,
$y)

Returns true if the specified point (x, y) is contained in the given rectangle.

Parameters

boundsmxRectangle that represents the area.
xX-coordinate of the point.
yY-coordinate of the point.
- -

intersection

static function intersection($x0,
$y0,
$x1,
$y1,
$x2,
$y2,
$x3,
$y3)

Returns the intersection of two lines as an mxPoint.

Parameters

x0X-coordinate of the first line’s startpoint.
y0X-coordinate of the first line’s startpoint.
x1X-coordinate of the first line’s endpoint.
y1Y-coordinate of the first line’s endpoint.
x2X-coordinate of the second line’s startpoint.
y2Y-coordinate of the second line’s startpoint.
x3X-coordinate of the second line’s endpoint.
y3Y-coordinate of the second line’s endpoint.
- -

encodeImage

static function encodeImage($image,  
$format = null)

Encodes the given image using the GD image encoding routines.  Supported formats are gif, jpg and png (default).

Parameters

imageGD image to be encoded.
formatString that defines the encoding format.  Default is png.
- -

getStylename

static function getStylename($style)

Returns the stylename in a style of the form [stylename;|key=value;] or an empty string if the given style does not contain a stylename.

Parameters

styleString of the form [stylename;|key=value;].
- -

getStylenames

static function getStylenames($style)

Returns the stylenames in a style of the form [stylename;|key=value;] or an empty array if the given style does not contain any stylenames.

Parameters

styleString of the form [stylename;|key=value;].
- -

indexOfStylename

static function indexOfStylename($style,
$stylename)

Returns the index of the given stylename in the given style.  This returns -1 if the given stylename does not occur (as a stylename) in the given style, otherwise it returns the index of the first character.

- -

addStylename

static function addStylename($style,
$stylename)

Adds the specified stylename to the given style if it does not already contain the stylename.

- -

removeStylename

static function removeStylename($style,
$stylename)

Removes all occurrences of the specified stylename in the given style and returns the updated style.  Trailing semicolons are preserved.

- -

removeAllStylenames

static function removeAllStylenames($style)

Removes all stylenames from the given style and returns the updated style.

- -

setCellStyles

static function setCellStyles($model,
$cells,
$key,
$value)

Assigns the value for the given key in the styles of the given cells, or removes the key from the styles if the value is null.

Parameters

modelmxGraphModel to execute the transaction in.
cellsArray of mxCells to be updated.
keyKey of the style to be changed.
valueNew value for the given key.
- -

setStyle

static function setStyle($style,
$key,
$value)

Adds or removes the given key, value pair to the style and returns the new style.  If value is null or zero length then the key is removed from the style.

Parameters

styleString of the form stylename[;key=value]
keyKey of the style to be changed.
valueNew value for the given key.
- -

setCellStyleFlags

static function setCellStyleFlags($model,
$cells,
$key,
$flag,
$value)

Sets or toggles the flag bit for the given key in the cell’s styles.  If value is null then the flag is toggled.

Example

var cells = graph.getSelectionCells();
-mxUtils.setCellStyleFlags(graph.model,
-         cells,
-         mxConstants.STYLE_FONTSTYLE,
-         mxConstants.FONT_BOLD);

Toggles the bold font style.

Parameters

modelmxGraphModel that contains the cells.
cellsArray of mxCells to change the style for.
keyKey of the style to be changed.
flagInteger for the bit to be changed.
valueOptional boolean value for the flag.
- -

setStyleFlag

static function setStyleFlag($style,
$key,
$flag,
$value)

Sets or removes the given key from the specified style and returns the new style.  If value is null then the flag is toggled.

Parameters

styleString of the form stylename[;key=value].
keyKey of the style to be changed.
flagInteger for the bit to be changed.
valueOptional boolean value for the given flag.
- -

getValue

static function getValue($dict,  
$key,  
$default = null)

Returns the value for key in dictionary or the given default value if no value is defined for the key.

Parameters

dictDictionary that contains the key, value pairs.
keyKey whose value should be returned.
defaultDefault value to return if the key is undefined.  Default is null.
- -

getNumber

static function getNumber($dict,  
$key,  
$default = )

Returns the value for key in dictionary or 0 if no value is defined for the key.

Parameters

dictDictionary that contains the key, value pairs.
keyKey whose value should be returned.
defaultOptional default value to return if no value is defined for the given key.  Default is 0.
- -

indexOf

static function indexOf($array,
$object)

Returns the index of obj in array or -1 if the array does not contains the given object.

Parameters

arrayArray to check for the given obj.
objObject to find in the given array.
- -

readFile

static function readFile($filename)

Reads the given filename into a string.  Shortcut for file_get_contents.

Parameters

filenameThe name of the file to read.
- -

isNode

static function isNode($value,  
$nodeName =  null,
$attributeName =  null,
$attributeValue =  null)

Returns true if the given value is an XML node with the node name and if the optional attribute has the specified value.

This implementation assumes that the given value is a DOM node if the nodeName property is not null.

Parameters

valueObject that should be examined as a node.
nodeNameString that specifies the node name.
attributeNameOptional attribute name to check.
attributeValueOptional attribute value to check.
- -

loadImage

static function loadImage($url)

Loads an image from the local filesystem, a data URI or any other URL.

- -

createXmlDocument

static function createXmlDocument()

Returns a new, empty XML document.

- -

loadXmlDocument

static function loadXmlDocument($uri)

Returns a new DOM document for the given URI.

- -

parseXml

static function parseXml($xml)

Returns a new DOM document for the given XML string.

- -

evaluate

static function evaluate($expression)

Evaluates an expression to a class member.  The range of supported expressions is limited to static class members with a dot-notation, such as mxEdgeStyle.ElbowConnector.

- -

findNode

static function findNode($node,
$attr,
$value)

Returns the first node where attr equals value.  This implementation does not use XPath.

- -

getTrueTypeFont

static function getTrueTypeFont($style)

Returns the truetype font to be used to draw the text with the given style.

- -

getTrueTypeFontSize

static function getTrueTypeFontSize($size)

Returns the truetype font size to be used to draw the text with the given style.  This returns the fontSize in the style of the default fontsize multiplied with <ttfSizeFactor>.

- -

getFixedFontSize

static function getFixedFontSize($fontSize,  
$fontFamily,  
$fontStyle = null)

Returns the fixed font size for GD (1 t0 5) for the given font properties

- -

stackTrace

static function stackTrace()

Prints a simple stack trace in the error log.

- -
- - - - - - - - - - -
static function getLabelSize($label,
$style)
Returns the size of the given label.
static function getLabelPaintBounds($label,
$style,
$isHtml,
$offset,
$vertexBounds,
$scale)
Returns the paint bounds for the given label.
static function getScaledLabelBounds($x,
$y,
$size,
$outerWidth,
$outerHeight,
$style,
$scale)
Returns the bounds for a label for the given location and size, taking into account the alignment and spacing in the specified style, as well as the width and height of the rectangle that contains the label.
static function getSizeForString($text,  
$fontSize =  0,
$fontFamily =  null)
Returns an mxRectangle with the size (width and height in pixels) of the given string.
Implements a 2-dimensional rectangle with double precision coordinates.
static function flipImage($img,
$flipH,
$flipV)
Flips the given image horizontally and/or vertically and returns a new image instance.
static function toRadians($deg)
Converts the given degree to radians.
static function getBoundingBox($rect,
$rotation)
Returns the bounding box for the rotated rectangle.
static function getRotatedPoint($pt,  
$cos,  
$sin,  
$cx =  null)
Rotates the given point by the given cos and sin.
static function translatePoints($pts,
$dx,
$dy)
Creates a new list of new points obtained by translating the points in the given list by the given vector.
static function contains($state,
$x,
$y)
Returns true if the specified point (x, y) is contained in the given rectangle.
static function intersection($x0,
$y0,
$x1,
$y1,
$x2,
$y2,
$x3,
$y3)
Returns the intersection of two lines as an mxPoint.
Implements a 2-dimensional point with double precision coordinates.
static function encodeImage($image,  
$format = null)
Encodes the given image using the GD image encoding routines.
static function getStylename($style)
Returns the stylename in a style of the form [stylename;|key=value;] or an empty string if the given style does not contain a stylename.
static function getStylenames($style)
Returns the stylenames in a style of the form [stylename;|key=value;] or an empty array if the given style does not contain any stylenames.
static function indexOfStylename($style,
$stylename)
Returns the index of the given stylename in the given style.
static function addStylename($style,
$stylename)
Adds the specified stylename to the given style if it does not already contain the stylename.
static function removeStylename($style,
$stylename)
Removes all occurrences of the specified stylename in the given style and returns the updated style.
static function removeAllStylenames($style)
Removes all stylenames from the given style and returns the updated style.
static function setCellStyles($model,
$cells,
$key,
$value)
Assigns the value for the given key in the styles of the given cells, or removes the key from the styles if the value is null.
static function setStyle($style,
$key,
$value)
Adds or removes the given key, value pair to the style and returns the new style.
static function setCellStyleFlags($model,
$cells,
$key,
$flag,
$value)
Sets or toggles the flag bit for the given key in the cell’s styles.
static function setStyleFlag($style,
$key,
$flag,
$value)
Sets or removes the given key from the specified style and returns the new style.
static function getValue($dict,  
$key,  
$default = null)
Returns the value for key in dictionary or the given default value if no value is defined for the key.
static function getNumber($dict,  
$key,  
$default = )
Returns the value for key in dictionary or 0 if no value is defined for the key.
static function indexOf($array,
$object)
Returns the index of obj in array or -1 if the array does not contains the given object.
static function readFile($filename)
Reads the given filename into a string.
static function isNode($value,  
$nodeName =  null,
$attributeName =  null,
$attributeValue =  null)
Returns true if the given value is an XML node with the node name and if the optional attribute has the specified value.
static function loadImage($url)
Loads an image from the local filesystem, a data URI or any other URL.
static function createXmlDocument()
Returns a new, empty XML document.
static function loadXmlDocument($uri)
Returns a new DOM document for the given URI.
static function parseXml($xml)
Returns a new DOM document for the given XML string.
static function evaluate($expression)
Evaluates an expression to a class member.
static function findNode($node,
$attr,
$value)
Returns the first node where attr equals value.
static function getTrueTypeFont($style)
Returns the truetype font to be used to draw the text with the given style.
static function getTrueTypeFontSize($size)
Returns the truetype font size to be used to draw the text with the given style.
static function getFixedFontSize($fontSize,  
$fontFamily,  
$fontStyle = null)
Returns the fixed font size for GD (1 t0 5) for the given font properties
static function stackTrace()
Prints a simple stack trace in the error log.
public static $DEFAULT_FONTSIZE
Defines the default size (in px).
public static $DEFAULT_FONTFAMILY
Defines the default family for all truetype fonts.
Cells are the elements of the graph model.
Cells are the elements of the graph model.
- - - - - - - - \ No newline at end of file diff --git a/docs/php-api/files/view/mxCellState-php.html b/docs/php-api/files/view/mxCellState-php.html deleted file mode 100644 index 73e25160c..000000000 --- a/docs/php-api/files/view/mxCellState-php.html +++ /dev/null @@ -1,73 +0,0 @@ - - -mxCellState - - - - - - - - - -

mxCellState

Represents the current state of a cell in a given mxGraphView.

Summary
mxCellStateRepresents the current state of a cell in a given mxGraphView.
Variables
viewReference to the enclosing mxGraphView.
cellReference to the mxCell that is represented by this state.
styleContains an array of key, value pairs that represent the style of the cell.
invalidSpecifies if the state is invalid.
originmxPoint that holds the origin for all child cells.
absolutePointsHolds an array of mxPoints that represent the absolute points of an edge.
absoluteOffsetmxPoint that holds the absolute offset.
terminalDistanceCaches the distance between the end points for an edge.
lengthCaches the length of an edge.
segmentsArray of numbers that represent the cached length of each segment of the edge.
labelBoundsHolds the rectangle which contains the label.
boundingBoxHolds the largest rectangle which contains all rendering for this cell.
Functions
mxCellStateConstructs a new object that represents the current state of the given cell in the specified view.
getPerimeterBoundsReturns the mxRectangle that should be used as the perimeter of the cell.
copyReturns a copy of this state where all members are deeply cloned except the view and cell references, which are copied with no cloning to the new instance.
- -

Variables

- -

view

var $view

Reference to the enclosing mxGraphView.

- -

cell

var $cell

Reference to the mxCell that is represented by this state.

- -

style

var $style

Contains an array of key, value pairs that represent the style of the cell.

- -

invalid

var $invalid

Specifies if the state is invalid.  Default is true.

- -

origin

var $origin

mxPoint that holds the origin for all child cells.  Default is a new empty mxPoint.

- -

absolutePoints

var $absolutePoints

Holds an array of mxPoints that represent the absolute points of an edge.

- -

absoluteOffset

var $absoluteOffset

mxPoint that holds the absolute offset.  For edges, this is the absolute coordinates of the label position.  For vertices, this is the offset of the label relative to the top, left corner of the vertex.

- -

terminalDistance

var $terminalDistance

Caches the distance between the end points for an edge.

- -

length

var $length

Caches the length of an edge.

- -

segments

var $segments

Array of numbers that represent the cached length of each segment of the edge.

- -

labelBounds

var $labelBounds

Holds the rectangle which contains the label.

- -

boundingBox

var $boundingBox

Holds the largest rectangle which contains all rendering for this cell.

- -

Functions

- -

mxCellState

function mxCellState($view =  null,
$cell =  null,
$style =  null)

Constructs a new object that represents the current state of the given cell in the specified view.

Parameters

viewmxGraphView that contains the state.
cellmxCell that this state represents.
styleArray of key, value pairs that constitute the style.
- -

getPerimeterBounds

function getPerimeterBounds($border =  0)

Returns the mxRectangle that should be used as the perimeter of the cell.

- -

copy

function copy()

Returns a copy of this state where all members are deeply cloned except the view and cell references, which are copied with no cloning to the new instance.

- -
- - - - - - - - - - -
Implements a view for the graph.
var $view
Reference to the enclosing mxGraphView.
var $cell
Reference to the mxCell that is represented by this state.
Cells are the elements of the graph model.
var $style
Contains an array of key, value pairs that represent the style of the cell.
var $invalid
Specifies if the state is invalid.
var $origin
mxPoint that holds the origin for all child cells.
Implements a 2-dimensional point with double precision coordinates.
var $absolutePoints
Holds an array of mxPoints that represent the absolute points of an edge.
var $absoluteOffset
mxPoint that holds the absolute offset.
var $terminalDistance
Caches the distance between the end points for an edge.
var $length
Caches the length of an edge.
var $segments
Array of numbers that represent the cached length of each segment of the edge.
var $labelBounds
Holds the rectangle which contains the label.
var $boundingBox
Holds the largest rectangle which contains all rendering for this cell.
function mxCellState($view =  null,
$cell =  null,
$style =  null)
Constructs a new object that represents the current state of the given cell in the specified view.
function getPerimeterBounds($border =  0)
Returns the mxRectangle that should be used as the perimeter of the cell.
Implements a 2-dimensional rectangle with double precision coordinates.
function copy()
Returns a copy of this state where all members are deeply cloned except the view and cell references, which are copied with no cloning to the new instance.
- - - - - - - - \ No newline at end of file diff --git a/docs/php-api/files/view/mxConnectionConstraint-php.html b/docs/php-api/files/view/mxConnectionConstraint-php.html deleted file mode 100644 index 089a25196..000000000 --- a/docs/php-api/files/view/mxConnectionConstraint-php.html +++ /dev/null @@ -1,49 +0,0 @@ - - -mxConnectionConstraint - - - - - - - - - -

mxConnectionConstraint

Defines an object that contains the constraints about how to connect one side of an edge to its terminal.

Summary
mxConnectionConstraintDefines an object that contains the constraints about how to connect one side of an edge to its terminal.
Variables
pointmxPoint that specifies the fixed location of the connection point.
perimeterBoolean that specifies if the point should be projected onto the perimeter of the terminal.
Functions
mxConnectionConstraintConstructs a new connection constraint for the given point and boolean arguments.
- -

Variables

- -

point

var $point

mxPoint that specifies the fixed location of the connection point.

- -

perimeter

var $perimeter

Boolean that specifies if the point should be projected onto the perimeter of the terminal.

- -

Functions

- -

mxConnectionConstraint

function mxConnectionConstraint($point =  null,
$perimeter =  true)

Constructs a new connection constraint for the given point and boolean arguments.

Parameters

pointOptional mxPoint that specifies the fixed location of the point in relative coordinates.  Default is null.
perimeterOptional boolean that specifies if the fixed point should be projected onto the perimeter of the terminal.  Default is true.
- -
- - - - - - - - - - -
var $point
mxPoint that specifies the fixed location of the connection point.
Implements a 2-dimensional point with double precision coordinates.
var $perimeter
Boolean that specifies if the point should be projected onto the perimeter of the terminal.
function mxConnectionConstraint($point =  null,
$perimeter =  true)
Constructs a new connection constraint for the given point and boolean arguments.
- - - - - - - - \ No newline at end of file diff --git a/docs/php-api/files/view/mxEdgeStyle-php.html b/docs/php-api/files/view/mxEdgeStyle-php.html deleted file mode 100644 index f8491909e..000000000 --- a/docs/php-api/files/view/mxEdgeStyle-php.html +++ /dev/null @@ -1,67 +0,0 @@ - - -mxEdgeStyleFunction - - - - - - - - - -

mxEdgeStyleFunction

Defines the requirements for an edge style function.

Summary
mxEdgeStyleFunctionDefines the requirements for an edge style function.
Functions
applyImplements an edge style function.
mxEntityRelationImplements an entity relation style for edges (as used in database schema diagrams).
mxLoopImplements a self-reference, aka.
mxElbowConnectorUses either <SideToSide> or <TopToBottom> depending on the horizontal flag in the cell style.
mxSideToSideImplements a vertical elbow edge.
mxTopToBottomImplements a horizontal elbow edge.
mxEdgeStyleProvides various edge styles to be used as the values for mxConstants.STYLE_EDGE in a cell style.
Variables
EntityRelationProvides an entity relation style for edges (as used in database schema diagrams).
LoopProvides a self-reference, aka.
ElbowConnectorProvides an elbow connector.
SideToSideProvides a side to side connector.
TopToBottomProvides a top to bottom connector.
- -

Functions

- -

apply

public function apply($state,
$source,
$target,
$points,
&$result)

Implements an edge style function.  At the time the function is called, the result array contains a placeholder (null) for the first absolute point, that is, the point where the edge and source terminal are connected.  The implementation of the style then adds all intermediate waypoints except for the last point, that is, the connection point between the edge and the target terminal.  The first ant the last point in the result array are then replaced with mxPoints that take into account the terminal’s perimeter and next point on the edge.

Parameters

statemxCellState that represents the edge to be updated.
sourcemxCellState that represents the source terminal.
targetmxCellState that represents the target terminal.
pointsList of relative control points.
resultArray of mxPoints that represent the actual points of the edge.
- -

mxEntityRelation

Implements an entity relation style for edges (as used in database schema diagrams).  At the time the function is called, the result array contains a placeholder (null) for the first absolute point, that is, the point where the edge and source terminal are connected.  The implementation of the style then adds all intermediate waypoints except for the last point, that is, the connection point between the edge and the target terminal.  The first ant the last point in the result array are then replaced with mxPoints that take into account the terminal’s perimeter and next point on the edge.

- -

mxLoop

Implements a self-reference, aka. loop.

- -

mxElbowConnector

Uses either <SideToSide> or <TopToBottom> depending on the horizontal flag in the cell style.  <SideToSide> is used if horizontal is true or unspecified.  See <EntityRelation> for a description of the parameters.

- -

mxSideToSide

Implements a vertical elbow edge.  See <EntityRelation> for a description of the parameters.

- -

mxTopToBottom

Implements a horizontal elbow edge.  See <EntityRelation> for a description of the parameters.

- -

mxEdgeStyle

Provides various edge styles to be used as the values for mxConstants.STYLE_EDGE in a cell style.

Summary
Variables
EntityRelationProvides an entity relation style for edges (as used in database schema diagrams).
LoopProvides a self-reference, aka.
ElbowConnectorProvides an elbow connector.
SideToSideProvides a side to side connector.
TopToBottomProvides a top to bottom connector.
- -

Variables

- -

EntityRelation

public static $EntityRelation

Provides an entity relation style for edges (as used in database schema diagrams).

- -

Loop

public static $Loop

Provides a self-reference, aka. loop.

- -

ElbowConnector

public static $ElbowConnector

Provides an elbow connector.

- -

SideToSide

public static $SideToSide

Provides a side to side connector.

- -

TopToBottom

public static $TopToBottom

Provides a top to bottom connector.

- -
- - - - - - - - - - -
public function apply($state,
$source,
$target,
$points,
&$result)
Implements an edge style function.
public static $STYLE_EDGE
Defines the key for the edge style.
public static $EntityRelation
Provides an entity relation style for edges (as used in database schema diagrams).
public static $Loop
Provides a self-reference, aka.
public static $ElbowConnector
Provides an elbow connector.
public static $SideToSide
Provides a side to side connector.
public static $TopToBottom
Provides a top to bottom connector.
Represents the current state of a cell in a given mxGraphView.
Implements a 2-dimensional point with double precision coordinates.
- - - - - - - - \ No newline at end of file diff --git a/docs/php-api/files/view/mxGraph-php.html b/docs/php-api/files/view/mxGraph-php.html deleted file mode 100644 index 44f16acc8..000000000 --- a/docs/php-api/files/view/mxGraph-php.html +++ /dev/null @@ -1,137 +0,0 @@ - - -mxGraph - - - - - - - - - -

mxGraph

Implements a graph component.

Summary
mxGraphImplements a graph component.
Variables
modelHolds the mxGraphModel.
stylesheetHolds the mxStylesheet.
viewHolds the mxGraphView.
gridSizeSpecifies the grid size.
labelsVisibleSpecifies if labels should be visible.
defaultLoopStylemxEdgeStyle to be used for loops.
imageBundlesHolds the list of image bundles.
Functions
mxGraphModelConstructs a new graph model using the specified root cell.
createStylesheetCreates a new mxStylesheet to be used in this graph.
createGraphViewCreates a new mxGraphView to be used in this graph.
getModelReturns the mxGraphModel that contains the cells.
getStylesheetReturns the mxStylesheet that defines the style.
getViewReturns the mxGraphView that contains the mxCellStates.
getDefaultParentReturns the first child child of mxGraphModel.root.
convertValueToStringReturns the textual representation for the given cell.
getLabelReturns a string or DOM node that represents the label for the given cell.
getChildOffsetForCellReturns the offset to be used for the cells inside the given cell.
isOrthogonalReturns true if perimeter points should be computed such that the resulting edge has only horizontal or vertical segments.
isCellVisibleReturns true if the given cell is visible.
isCellCollapsedReturns true if the given cell is collapsed.
isCellCollapsedReturns true if the given cell is connectable.
getCellGeometryReturns the mxGeometry for the given mxCell.
getCellStyle
postProcessCellStyleTries to resolve the value for the image style in the image bundles and turns short data URIs as defined in mxImageBundle to data URIs as defined in RFC 2397 of the IETF.
setCellStylesSets the key to value in the styles of the given cells.
addBundleAdds the specified mxImageBundle.
removeImageBundleRemoves the specified mxImageBundle.
getImageFromBundlesSearches all imageBundles for the specified key and returns the value for the first match or null if the key is not found.
getImageBundlesReturns the imageBundles.
setImageBundlesSets the imageBundles.
insertVertexAdds a new vertex into the given parent mxCell using value as the user object and the given coordinates as the mxGeometry of the new vertex.
createVertexCreates the vertex to be used in insertVertex.
insertEdgeAdds a new edge into the given parent mxCell using value as the user object and the given source and target as the terminals of the new edge.
createEdgeCreates the edge to be used in insertEdge.
getGraphBoundsReturns the bounds of the visible graph.
getBoundingBoxReturns the bounding box of the given cell including all connected edges if includeEdge is true.
getPaintBoundsReturns the bounding box of the given cells and their descendants.
getBoundsForCellsReturns the bounds for the given cells.
getCellBoundsReturns the bounds of the given cell including all connected edges if includeEdge is true.
getConnectionConstraintReturns an mxConnectionConstraint that describes the given connection point.
getConnectionPointReturns the nearest point in the list of absolute points or the center of the opposite terminal.
findTreeRootsReturns all children in the given parent which do not have incoming edges.
createImage
drawGraphDraws the given cell onto the specified canvas.
paintCellDraws the given cell onto the specified canvas.
paintStateDraws the given cell and label onto the specified canvas.
graphModelChangedCalled when the graph model has changed.
- -

Variables

- -

model

var $model

Holds the mxGraphModel.

- -

stylesheet

var $stylesheet

Holds the mxStylesheet.

- -

view

var $view

Holds the mxGraphView.

- -

gridSize

var $gridSize

Specifies the grid size.  Default is 10.

- -

labelsVisible

var $labelsVisible

Specifies if labels should be visible.  This is used in getLabel.  Default is true.

- -

defaultLoopStyle

var $defaultLoopStyle

mxEdgeStyle to be used for loops.  This is a fallback for loops if the mxConstants.STYLE_LOOP is undefined.  Default is mxEdgeStyle.Loop.

- -

imageBundles

protected $imageBundles

Holds the list of image bundles.

- -

Functions

- -

mxGraphModel

Constructs a new graph model using the specified root cell.

- -

createStylesheet

function createStylesheet()

Creates a new mxStylesheet to be used in this graph.

- -

createGraphView

function createGraphView()

Creates a new mxGraphView to be used in this graph.

- -

getModel

function getModel()

Returns the mxGraphModel that contains the cells.

- -

getStylesheet

function getStylesheet()

Returns the mxStylesheet that defines the style.

- -

getView

function getView()

Returns the mxGraphView that contains the mxCellStates.

- -

getDefaultParent

function getDefaultParent()

Returns the first child child of mxGraphModel.root.  The value returned by this function should be used as the parent for new cells (aka default layer).

- -

convertValueToString

function convertValueToString($cell)

Returns the textual representation for the given cell.  This implementation returns the nodename or string-representation of the user object.

- -

getLabel

function getLabel($cell)

Returns a string or DOM node that represents the label for the given cell.  This implementation uses convertValueToString if labelsVisible is true.  Otherwise it returns an empty string.

- -

getChildOffsetForCell

function getChildOffsetForCell($cell)

Returns the offset to be used for the cells inside the given cell.  The root and layer cells may be identified using <mxGraphModel.isRoot> and <mxGraphModel.isLayer>.  For all other current roots, the <mxGraphView.currentRoot> field points to the respective cell, so that the following holds: cell == this.view.currentRoot.  This implementation returns null.

Parameters

cellmxCell whose offset should be returned.
- -

isOrthogonal

function isOrthogonal($edge)

Returns true if perimeter points should be computed such that the resulting edge has only horizontal or vertical segments.

Parameters

edgemxCellState that represents the edge.
- -

isCellVisible

function isCellVisible($cell)

Returns true if the given cell is visible.

- -

isCellCollapsed

function isCellCollapsed($cell)

Returns true if the given cell is collapsed.

- -

isCellCollapsed

Returns true if the given cell is connectable.

- -

getCellGeometry

function getCellGeometry($cell)

Returns the mxGeometry for the given mxCell.

- -

getCellStyle

function getCellStyle($cell)
- -

postProcessCellStyle

function postProcessCellStyle($style)

Tries to resolve the value for the image style in the image bundles and turns short data URIs as defined in mxImageBundle to data URIs as defined in RFC 2397 of the IETF.

- -

setCellStyles

function setCellStyles($key,
$value,
$cells)

Sets the key to value in the styles of the given cells.  This will modify the existing cell styles in-place and override any existing assignment for the given key.  If no cells are specified, then the selection cells are changed.  If no value is specified, then the respective key is removed from the styles.

Parameters

keyString representing the key to be assigned.
valueString representing the new value for the key.
cellsArray of mxCells to change the style for.
- -

addBundle

Adds the specified mxImageBundle.

- -

removeImageBundle

function removeImageBundle($bundle)

Removes the specified mxImageBundle.

- -

getImageFromBundles

function getImageFromBundles($key)

Searches all imageBundles for the specified key and returns the value for the first match or null if the key is not found.

- -

getImageBundles

function getImageBundles()

Returns the imageBundles.

- -

setImageBundles

function setImageBundles($value)

Sets the imageBundles.

- -

insertVertex

function insertVertex($parent,  
$id =  null,
$value =  null,
$x =  0,
$y =  0,
$width =  1,
$height =  1,
$style =  null,
$relative =  false)

Adds a new vertex into the given parent mxCell using value as the user object and the given coordinates as the mxGeometry of the new vertex.  The id and style are used for the respective properties of the new mxCell, which is returned.

Parameters

parentmxCell that specifies the parent of the new vertex.
idOptional string that defines the Id of the new vertex.
valueObject to be used as the user object.
xInteger that defines the x coordinate of the vertex.
yInteger that defines the y coordinate of the vertex.
widthInteger that defines the width of the vertex.
heightInteger that defines the height of the vertex.
styleOptional string that defines the cell style.
relativeOptional boolean that specifies if the geometry is relative.  Default is false.
- -

createVertex

function createVertex($parent,  
$id =  null,
$value =  null,
$x =  0,
$y =  0,
$width =  1,
$height =  1,
$style =  null,
$relative =  false)

Creates the vertex to be used in insertVertex.

- -

insertEdge

function insertEdge($parent,  
$id =  null,
$value =  null,
$source =  null,
$target =  null,
$style =  null)

Adds a new edge into the given parent mxCell using value as the user object and the given source and target as the terminals of the new edge.  The id and style are used for the respective properties of the new mxCell, which is returned.

Parameters

parentmxCell that specifies the parent of the new edge.
idOptional string that defines the Id of the new edge.
valueJavaScript object to be used as the user object.
sourcemxCell that defines the source of the edge.
targetmxCell that defines the target of the edge.
styleOptional string that defines the cell style.
- -

createEdge

function createEdge($parent,  
$id =  null,
$value =  null,
$source =  null,
$target =  null,
$style =  null)

Creates the edge to be used in insertEdge.  This implementation does not set the source and target of the edge, these are set when the edge is added to the model.

- -

getGraphBounds

function getGraphBounds()

Returns the bounds of the visible graph.  Shortcut to mxGraphView.getGraphBounds.

- -

getBoundingBox

function getBoundingBox($cell,  
$includeEdges =  false,
$includeDescendants =  false)

Returns the bounding box of the given cell including all connected edges if includeEdge is true.

- -

getPaintBounds

function getPaintBounds($cells)

Returns the bounding box of the given cells and their descendants.

- -

getBoundsForCells

function getBoundsForCells($cells,  
$includeEdges =  false,
$includeDescendants =  false,
$boundingBox =  false)

Returns the bounds for the given cells.

- -

getCellBounds

function getCellBounds($cell,  
$includeEdges =  false,
$includeDescendants =  false,
$boundingBox =  false)

Returns the bounds of the given cell including all connected edges if includeEdge is true.

- -

getConnectionConstraint

function getConnectionConstraint($edge,
$terminal,
$source)

Returns an mxConnectionConstraint that describes the given connection point.  This result can then be passed to getConnectionPoint.

Parameters

edgemxCellState that represents the edge.
terminalmxCellState that represents the terminal.
sourceBoolean indicating if the terminal is the source or target.
- -

getConnectionPoint

function getConnectionPoint($vertex,
$constraint)

Returns the nearest point in the list of absolute points or the center of the opposite terminal.

Parameters

vertexmxCellState that represents the vertex.
constraintmxConnectionConstraint that represents the connection point constraint as returned by getConnectionConstraint.
- -

findTreeRoots

function findTreeRoots($parent,  
$isolate =  false,
$invert =  false)

Returns all children in the given parent which do not have incoming edges.  If the result is empty then the with the greatest difference between incoming and outgoing edges is returned.

Parameters

parentmxCell whose children should be checked.
isolateOptional boolean that specifies if edges should be ignored if the opposite end is not a child of the given parent cell.  Default is false.
invertOptional boolean that specifies if outgoing or incoming edges should be counted for a tree root.  If false then outgoing edges will be counted.  Default is false.
- -

createImage

function createImage($clip =  null,
$background =  null)
- -

drawGraph

function drawGraph($canvas)

Draws the given cell onto the specified canvas.

- -

paintCell

Draws the given cell onto the specified canvas.

- -

paintState

Draws the given cell and label onto the specified canvas.  No children or descendants are painted.

- -

graphModelChanged

function graphModelChanged($event)

Called when the graph model has changed.

- -
- - - - - - - - - - -
var $model
Holds the mxGraphModel.
Constructs a new graph model using the specified root cell.
var $stylesheet
Holds the mxStylesheet.
Defines the appearance of the cells in a graph.
var $view
Holds the mxGraphView.
Implements a view for the graph.
var $gridSize
Specifies the grid size.
var $labelsVisible
Specifies if labels should be visible.
var $defaultLoopStyle
mxEdgeStyle to be used for loops.
Provides various edge styles to be used as the values for mxConstants.STYLE_EDGE in a cell style.
protected $imageBundles
Holds the list of image bundles.
function createStylesheet()
Creates a new mxStylesheet to be used in this graph.
function createGraphView()
Creates a new mxGraphView to be used in this graph.
function getModel()
Returns the mxGraphModel that contains the cells.
function getStylesheet()
Returns the mxStylesheet that defines the style.
function getView()
Returns the mxGraphView that contains the mxCellStates.
Represents the current state of a cell in a given mxGraphView.
function getDefaultParent()
Returns the first child child of mxGraphModel.root.
var $root
Holds the root cell, which in turn contains the cells that represent the layers of the diagram as child cells.
function convertValueToString($cell)
Returns the textual representation for the given cell.
function getLabel($cell)
Returns a string or DOM node that represents the label for the given cell.
function getChildOffsetForCell($cell)
Returns the offset to be used for the cells inside the given cell.
function isOrthogonal($edge)
Returns true if perimeter points should be computed such that the resulting edge has only horizontal or vertical segments.
function isCellVisible($cell)
Returns true if the given cell is visible.
function isCellCollapsed($cell)
Returns true if the given cell is collapsed.
function getCellGeometry($cell)
Returns the mxGeometry for the given mxCell.
Represents the geometry of a cell.
Cells are the elements of the graph model.
function getCellStyle($cell)
function postProcessCellStyle($style)
Tries to resolve the value for the image style in the image bundles and turns short data URIs as defined in mxImageBundle to data URIs as defined in RFC 2397 of the IETF.
function setCellStyles($key,
$value,
$cells)
Sets the key to value in the styles of the given cells.
Maps from keys to base64 encoded images or file locations.
function removeImageBundle($bundle)
Removes the specified mxImageBundle.
function getImageFromBundles($key)
Searches all imageBundles for the specified key and returns the value for the first match or null if the key is not found.
function getImageBundles()
Returns the imageBundles.
function setImageBundles($value)
Sets the imageBundles.
function insertVertex($parent,  
$id =  null,
$value =  null,
$x =  0,
$y =  0,
$width =  1,
$height =  1,
$style =  null,
$relative =  false)
Adds a new vertex into the given parent mxCell using value as the user object and the given coordinates as the mxGeometry of the new vertex.
function createVertex($parent,  
$id =  null,
$value =  null,
$x =  0,
$y =  0,
$width =  1,
$height =  1,
$style =  null,
$relative =  false)
Creates the vertex to be used in insertVertex.
function insertEdge($parent,  
$id =  null,
$value =  null,
$source =  null,
$target =  null,
$style =  null)
Adds a new edge into the given parent mxCell using value as the user object and the given source and target as the terminals of the new edge.
function createEdge($parent,  
$id =  null,
$value =  null,
$source =  null,
$target =  null,
$style =  null)
Creates the edge to be used in insertEdge.
function getGraphBounds()
Returns the bounds of the visible graph.
function getBoundingBox($cell,  
$includeEdges =  false,
$includeDescendants =  false)
Returns the bounding box of the given cell including all connected edges if includeEdge is true.
function getPaintBounds($cells)
Returns the bounding box of the given cells and their descendants.
function getBoundsForCells($cells,  
$includeEdges =  false,
$includeDescendants =  false,
$boundingBox =  false)
Returns the bounds for the given cells.
function getCellBounds($cell,  
$includeEdges =  false,
$includeDescendants =  false,
$boundingBox =  false)
Returns the bounds of the given cell including all connected edges if includeEdge is true.
function getConnectionConstraint($edge,
$terminal,
$source)
Returns an mxConnectionConstraint that describes the given connection point.
Defines an object that contains the constraints about how to connect one side of an edge to its terminal.
function getConnectionPoint($vertex,
$constraint)
Returns the nearest point in the list of absolute points or the center of the opposite terminal.
function findTreeRoots($parent,  
$isolate =  false,
$invert =  false)
Returns all children in the given parent which do not have incoming edges.
function createImage($clip =  null,
$background =  null)
function drawGraph($canvas)
Draws the given cell onto the specified canvas.
function graphModelChanged($event)
Called when the graph model has changed.
public static $STYLE_LOOP
Defines the key for the loop style.
public static $Loop
Provides a self-reference, aka.
function getGraphBounds()
Returns graphBounds.
- - - - - - - - \ No newline at end of file diff --git a/docs/php-api/files/view/mxGraphView-php.html b/docs/php-api/files/view/mxGraphView-php.html deleted file mode 100644 index 9b99cc61a..000000000 --- a/docs/php-api/files/view/mxGraphView-php.html +++ /dev/null @@ -1,137 +0,0 @@ - - -mxGraphView - - - - - - - - - -

mxGraphView

Implements a view for the graph.  Fires scale and translate events if one of the values change.

This class fires the following events

mxEvent.SCALE fires after the scale was changed in setScale.  The <code>scale</code> and <code>previousScale</code> arguments contain the new and previous scale.

mxEvent.TRANSLATE fires after the translate was changed in setTranslate.  The <code>translate</code> and <code>previousTranslate</code> arguments contain the new and previous value for translate.

Summary
mxGraphViewImplements a view for the graph.
Variables
EMPTY_POINTAn empty mxPoint instance.
graphHolds the mxGraph.
graphBoundsHolds the bounds of the current view.
scaleHolds the current scale.
translateHolds the current translate.
statesMaps from cells to states.
Functions
mxGraphViewConstructs a new view for the specified mxGraph.
setScaleSets the scale, revalidates the view and fires a scale event.
setTranslateSets the translation, revalidates the view and fires a translate event.
getGraphBoundsReturns graphBounds.
setGraphBoundsSets graphBounds.
getBoundsReturns the bounding for for an array of cells or null, if no cells are specified.
invalidate
invalidateInvalidates the cached cell states.
validateCalls validateCell and <validateCellState> and updates the graphBounds using getBoundingBox.
getBoundingBoxReturns the bounding box of the shape and the label for the given mxCellState and its children if recurse is true.
validateCellRecursively creates the cell state for the given cell if visible is true and the given cell is visible.
validateCellStatesValidates and repaints the mxCellState for the given mxCell.
updateCellStateUpdates the given mxCellState.
updateVertexStateValidates the given cell state.
updateEdgeStateValidates the given cell state.
updateVertexLabelOffsetUpdates the absoluteOffset of the given vertex cell state.
updateLabelBoundsUpdates the label bounds in the given state.
updateBoundingBoxUpdates the bounding box in the given cell state.
updateFixedTerminalPointsSets the initial absolute terminal points in the given state before the edge style is computed.
updateFixedTerminalPointSets the fixed source or target terminal point on the given edge.
updatePointsUpdates the absolute points in the given state using the specified array of mxPoints as the relative points.
transformControlPointTransforms the given control point to an absolute point.
getEdgeStyleReturns the edge style function to be used to render the given edge state.
updateFloatingTerminalPointsUpdates the terminal points in the given state after the edge style was computed for the edge.
updateFloatingTerminalPointUpdates the absolute terminal point in the given state for the given start and end state, where start is the source if source is true.
getTerminalPortReturns an mxCellState that represents the source or target terminal or port for the given edge.
getPerimeterPointReturns an mxPoint that defines the location of the intersection point between the perimeter and the line between the center of the shape and the given point.
getRoutingCenterXReturns the x-coordinate of the center point for automatic routing.
getRoutingCenterYReturns the y-coordinate of the center point for automatic routing.
getPerimeterBoundsReturns the perimeter bounds for the given terminal, edge pair as an mxRectangle.
getPerimeterFunctionReturns the perimeter function for the given state.
getNextPointReturns the nearest point in the list of absolute points or the center of the opposite terminal.
getVisibleTerminalReturns the nearest ancestor terminal that is visible.
updateEdgeBoundsUpdates the bounds of the specified state based on the absolute points in the state.
getPointReturns the absolute point on the edge for the given relative mxGeometry as an mxPoint.
getStateReturns the cell state for the specified cell.
getHashCodeReturns a unique string that represents the given instance.
getStatesReturns the mxCellStates for the given array of mxCells.
getStatesReturns the mxCellStates for the given array of mxCells.
removeStateRemoves and returns the mxCellState for the given cell.
createStateCreates the state for the specified cell.
- -

Variables

- -

EMPTY_POINT

var $EMPTY_POINT

An empty mxPoint instance.

- -

graph

var $graph

Holds the mxGraph.

- -

graphBounds

var $graphBounds

Holds the bounds of the current view.

- -

scale

var $scale

Holds the current scale.

- -

translate

var $translate

Holds the current translate.

- -

states

var $states

Maps from cells to states.

- -

Functions

- -

mxGraphView

function mxGraphView($graph)

Constructs a new view for the specified mxGraph.

- -

setScale

function setScale($scale)

Sets the scale, revalidates the view and fires a scale event.

- -

setTranslate

function setTranslate($translate)

Sets the translation, revalidates the view and fires a translate event.

- -

getGraphBounds

function getGraphBounds()

Returns graphBounds.

- -

setGraphBounds

function setGraphBounds($value)

Sets graphBounds.

- -

getBounds

function getBounds($cells,  
$boundingBox =  false)

Returns the bounding for for an array of cells or null, if no cells are specified.

- -

invalidate

- -

invalidate

function invalidate()

Invalidates the cached cell states.

- -

validate

function validate($cell =  null)

Calls validateCell and <validateCellState> and updates the graphBounds using getBoundingBox.  Finally the background is validated using <validateBackground>.

Parameters

cellOptional mxCell to be used as the root of the validation.  Default is the root of the model.
- -

getBoundingBox

function getBoundingBox($state,  
$recurse =  true)

Returns the bounding box of the shape and the label for the given mxCellState and its children if recurse is true.

Parameters

statemxCellState whose bounding box should be returned.
recurseOptional boolean indicating if the children should be included.  Default is true.
- -

validateCell

function validateCell($cell,  
$visible =  true)

Recursively creates the cell state for the given cell if visible is true and the given cell is visible.  If the cell is not visible but the state exists then it is removed using removeState.

Parameters

cellmxCell whose mxCellState should be created.
visibleOptional boolean indicating if the cell should be visible.  Default is true.
- -

validateCellStates

Validates and repaints the mxCellState for the given mxCell.

Parameters

cellmxCell whose mxCellState should be validated.
recurseOptional boolean indicating if the children of the cell should be validated.  Default is true.
- -

updateCellState

function updateCellState($state,
$source,
$target)

Updates the given mxCellState.

Parameters

statemxCellState to be updated.
sourcemxCellState that represents the visible source.
targetmxCellState that represents the visible target.
- -

updateVertexState

function updateVertexState($state,
$geo)

Validates the given cell state.

- -

updateEdgeState

function updateEdgeState($state,
$geo,
$source,
$target)

Validates the given cell state.

- -

updateVertexLabelOffset

function updateVertexLabelOffset($state)

Updates the absoluteOffset of the given vertex cell state.  This takes into account the label position styles.

Parameters

statemxCellState whose absolute offset should be updated.
- -

updateLabelBounds

function updateLabelBounds($state)

Updates the label bounds in the given state.

- -

updateBoundingBox

function updateBoundingBox($state)

Updates the bounding box in the given cell state.

- -

updateFixedTerminalPoints

function updateFixedTerminalPoints($edge,
$source,
$target)

Sets the initial absolute terminal points in the given state before the edge style is computed.

Parameters

edgemxCellState whose initial terminal points should be updated.
sourcemxCellState which represents the source terminal.
targetmxCellState which represents the target terminal.
- -

updateFixedTerminalPoint

function updateFixedTerminalPoint($edge,
$terminal,
$source,
$constraint)

Sets the fixed source or target terminal point on the given edge.

Parameters

edgemxCellState whose terminal point should be updated.
terminalmxCellState which represents the actual terminal.
sourceBoolean that specifies if the terminal is the source.
constraintmxConnectionConstraint that specifies the connection.
- -

updatePoints

function updatePoints($edge,
$points,
$source,
$target)

Updates the absolute points in the given state using the specified array of mxPoints as the relative points.

Parameters

edgemxCellState whose absolute points should be updated.
pointsArray of mxPoints that constitute the relative points.
sourcemxCellState that represents the source terminal.
targetmxCellState that represents the target terminal.
- -

transformControlPoint

function transformControlPoint($state,
$pt)

Transforms the given control point to an absolute point.

- -

getEdgeStyle

function getEdgeStyle($edge,
$points,
$source,
$target)

Returns the edge style function to be used to render the given edge state.

- -

updateFloatingTerminalPoints

function updateFloatingTerminalPoints($state,
$source,
$target)

Updates the terminal points in the given state after the edge style was computed for the edge.

Parameters

statemxCellState whose terminal points should be updated.
sourcemxCellState that represents the source terminal.
targetmxCellState that represents the target terminal.
- -

updateFloatingTerminalPoint

function updateFloatingTerminalPoint($edge,
$start,
$end,
$source)

Updates the absolute terminal point in the given state for the given start and end state, where start is the source if source is true.

Parameters

edgemxCellState whose terminal point should be updated.
startmxCellState for the terminal on “this” side of the edge.
endmxCellState for the terminal on the other side of the edge.
sourceBoolean indicating if start is the source terminal state.
- -

getTerminalPort

function getTerminalPort($state,
$terminal,
$source)

Returns an mxCellState that represents the source or target terminal or port for the given edge.

Parameters

statemxCellState that represents the state of the edge.
terminalmxCellState that represents the terminal.
sourceBoolean indicating if the given terminal is the source terminal.
- -

getPerimeterPoint

function getPerimeterPoint($terminal,  
$next,  
$orthogonal,  
$border =  null)

Returns an mxPoint that defines the location of the intersection point between the perimeter and the line between the center of the shape and the given point.

Parameters

terminalmxCellState for the source or target terminal.
nextmxPoint that lies outside of the given terminal.
orthogonalBoolean that specifies if the orthogonal projection onto the perimeter should be returned.  If this is false then the intersection of the perimeter and the line between the next and the center point is returned.
borderOptional border between the perimeter and the shape.
- -

getRoutingCenterX

function getRoutingCenterX($state)

Returns the x-coordinate of the center point for automatic routing.

- -

getRoutingCenterY

function getRoutingCenterY($state)

Returns the y-coordinate of the center point for automatic routing.

- -

getPerimeterBounds

function getPerimeterBounds($terminal,  
$border =  0)

Returns the perimeter bounds for the given terminal, edge pair as an mxRectangle.

Parameters

terminalmxCellState that represents the terminal.
borderNumber that adds a border between the shape and the perimeter.
- -

getPerimeterFunction

function getPerimeterFunction($state)

Returns the perimeter function for the given state.

- -

getNextPoint

function getNextPoint($edge,
$opposite,
$source)

Returns the nearest point in the list of absolute points or the center of the opposite terminal.

Parameters

edgemxCellState that represents the edge.
oppositemxCellState that represents the opposite terminal.
sourceBoolean indicating if the next point for the source or target should be returned.
- -

getVisibleTerminal

function getVisibleTerminal($edge,
$source)

Returns the nearest ancestor terminal that is visible.  The edge appears to be connected to this terminal on the display.

Parameters

edgemxCell whose visible terminal should be returned.
sourceBoolean that specifies if the source or target terminal should be returned.
- -

updateEdgeBounds

function updateEdgeBounds($state)

Updates the bounds of the specified state based on the absolute points in the state.

- -

getPoint

function getPoint($state,  
$geometry =  null)

Returns the absolute point on the edge for the given relative mxGeometry as an mxPoint.  The edge is represented by the given mxCellState.

Parameters

statemxCellState that represents the state of the parent edge.
geometrymxGeometry that represents the relative location.
- -

getState

function getState($cell,  
$create =  false)

Returns the cell state for the specified cell.  If create is true then the state is created and added to the cache if it does not yet exist.

- -

getHashCode

function getHashCode($cell)

Returns a unique string that represents the given instance.

- -

getStates

function getStates()

Returns the mxCellStates for the given array of mxCells.  The array contains all states that are not null, that is, the returned array may have less elements than the given array.

- -

getStates

Returns the mxCellStates for the given array of mxCells.  The array contains all states that are not null, that is, the returned array may have less elements than the given array.

- -

removeState

function removeState($cell,  
$recurse =  false)

Removes and returns the mxCellState for the given cell.

- -

createState

function createState($cell)

Creates the state for the specified cell.

- -
- - - - - - - - - - -
var $EMPTY_POINT
An empty mxPoint instance.
Implements a 2-dimensional point with double precision coordinates.
var $graph
Holds the mxGraph.
Implements a graph component.
var $graphBounds
Holds the bounds of the current view.
var $scale
Holds the current scale.
var $translate
Holds the current translate.
var $states
Maps from cells to states.
function mxGraphView($graph)
Constructs a new view for the specified mxGraph.
function setScale($scale)
Sets the scale, revalidates the view and fires a scale event.
function setTranslate($translate)
Sets the translation, revalidates the view and fires a translate event.
function getGraphBounds()
Returns graphBounds.
function setGraphBounds($value)
Sets graphBounds.
function getBounds($cells,  
$boundingBox =  false)
Returns the bounding for for an array of cells or null, if no cells are specified.
function invalidate()
Invalidates the cached cell states.
function validate($cell =  null)
Calls validateCell and validateCellState and updates the graphBounds using getBoundingBox.
function validateCell($cell,  
$visible =  true)
Recursively creates the cell state for the given cell if visible is true and the given cell is visible.
function getBoundingBox($state,  
$recurse =  true)
Returns the bounding box of the shape and the label for the given mxCellState and its children if recurse is true.
Represents the current state of a cell in a given mxGraphView.
Cells are the elements of the graph model.
function updateCellState($state,
$source,
$target)
Updates the given mxCellState.
function updateVertexState($state,
$geo)
Validates the given cell state.
function updateEdgeState($state,
$geo,
$source,
$target)
Validates the given cell state.
function updateVertexLabelOffset($state)
Updates the absoluteOffset of the given vertex cell state.
function updateLabelBounds($state)
Updates the label bounds in the given state.
function updateBoundingBox($state)
Updates the bounding box in the given cell state.
function updateFixedTerminalPoints($edge,
$source,
$target)
Sets the initial absolute terminal points in the given state before the edge style is computed.
function updateFixedTerminalPoint($edge,
$terminal,
$source,
$constraint)
Sets the fixed source or target terminal point on the given edge.
function updatePoints($edge,
$points,
$source,
$target)
Updates the absolute points in the given state using the specified array of mxPoints as the relative points.
function transformControlPoint($state,
$pt)
Transforms the given control point to an absolute point.
function getEdgeStyle($edge,
$points,
$source,
$target)
Returns the edge style function to be used to render the given edge state.
function updateFloatingTerminalPoints($state,
$source,
$target)
Updates the terminal points in the given state after the edge style was computed for the edge.
function updateFloatingTerminalPoint($edge,
$start,
$end,
$source)
Updates the absolute terminal point in the given state for the given start and end state, where start is the source if source is true.
function getTerminalPort($state,
$terminal,
$source)
Returns an mxCellState that represents the source or target terminal or port for the given edge.
function getPerimeterPoint($terminal,  
$next,  
$orthogonal,  
$border =  null)
Returns an mxPoint that defines the location of the intersection point between the perimeter and the line between the center of the shape and the given point.
function getRoutingCenterX($state)
Returns the x-coordinate of the center point for automatic routing.
function getRoutingCenterY($state)
Returns the y-coordinate of the center point for automatic routing.
function getPerimeterBounds($terminal,  
$border =  0)
Returns the perimeter bounds for the given terminal, edge pair as an mxRectangle.
Implements a 2-dimensional rectangle with double precision coordinates.
function getPerimeterFunction($state)
Returns the perimeter function for the given state.
function getNextPoint($edge,
$opposite,
$source)
Returns the nearest point in the list of absolute points or the center of the opposite terminal.
function getVisibleTerminal($edge,
$source)
Returns the nearest ancestor terminal that is visible.
function updateEdgeBounds($state)
Updates the bounds of the specified state based on the absolute points in the state.
function getPoint($state,  
$geometry =  null)
Returns the absolute point on the edge for the given relative mxGeometry as an mxPoint.
Represents the geometry of a cell.
function getState($cell,  
$create =  false)
Returns the cell state for the specified cell.
function getHashCode($cell)
Returns a unique string that represents the given instance.
function getStates()
Returns the mxCellStates for the given array of mxCells.
function removeState($cell,  
$recurse =  false)
Removes and returns the mxCellState for the given cell.
function createState($cell)
Creates the state for the specified cell.
Defines an object that contains the constraints about how to connect one side of an edge to its terminal.
- - - - - - - - \ No newline at end of file diff --git a/docs/php-api/files/view/mxPerimeter-php.html b/docs/php-api/files/view/mxPerimeter-php.html deleted file mode 100644 index bd4bc4244..000000000 --- a/docs/php-api/files/view/mxPerimeter-php.html +++ /dev/null @@ -1,63 +0,0 @@ - - -mxPerimeterFunction - - - - - - - - - -

mxPerimeterFunction

Defines the requirements for a perimeter function.

Summary
mxPerimeterFunctionDefines the requirements for a perimeter function.
Functions
applyImplements a perimeter function.
mxRectanglePerimeterImplements a rectangular perimeter for the given bounds.
mxEllipsePerimeterImplements an elliptic perimeter.
mxRhombusPerimeterImplements a rhombus (aka diamond) perimeter.
mxTrianglePerimeterImplements a triangle perimeter.
mxPerimeterProvides various perimeter functions to be used in a style as the value of mxConstants.STYLE_PERIMETER.
Variables
RectanglePerimeterProvides a rectangular perimeter.
EllipsePerimeterProvides an elliptic perimeter.
RhombusPerimeterProvides a rhombus (aka diamond) perimeter.
TrianglePerimeterProvides a triangle perimeter.
- -

Functions

- -

apply

public function apply($bounds,
$vertex,
$next,
$orthogonal)

Implements a perimeter function.

Parameters

boundsmxRectangle that represents the absolute bounds of the vertex.
vertexmxCellState that represents the vertex.
nextmxPoint that represents the nearest neighbour point on the given edge.
orthogonalBoolean that specifies if the orthogonal projection onto the perimeter should be returned.  If this is false then the intersection of the perimeter and the line between the next and the center point is returned.
- -

mxRectanglePerimeter

Implements a rectangular perimeter for the given bounds.

- -

mxEllipsePerimeter

Implements an elliptic perimeter.  See <RectanglePerimeter> for a description of the parameters.

- -

mxRhombusPerimeter

Implements a rhombus (aka diamond) perimeter.  See <RectanglePerimeter> for a description of the parameters.

- -

mxTrianglePerimeter

Implements a triangle perimeter.  See <RectanglePerimeter> for a description of the parameters.

- -

mxPerimeter

Provides various perimeter functions to be used in a style as the value of mxConstants.STYLE_PERIMETER.

The parameters are explained in RectanglePerimeter.

Summary
Variables
RectanglePerimeterProvides a rectangular perimeter.
EllipsePerimeterProvides an elliptic perimeter.
RhombusPerimeterProvides a rhombus (aka diamond) perimeter.
TrianglePerimeterProvides a triangle perimeter.
- -

Variables

- -

RectanglePerimeter

public static $RectanglePerimeter

Provides a rectangular perimeter.

- -

EllipsePerimeter

public static $EllipsePerimeter

Provides an elliptic perimeter.

- -

RhombusPerimeter

public static $RhombusPerimeter

Provides a rhombus (aka diamond) perimeter.

- -

TrianglePerimeter

public static $TrianglePerimeter

Provides a triangle perimeter.  See RectanglePerimeter for a description of the parameters.

- -
- - - - - - - - - - -
public function apply($bounds,
$vertex,
$next,
$orthogonal)
Implements a perimeter function.
public static $STYLE_PERIMETER
Defines the key for the perimeter style.
public static $RectanglePerimeter
Provides a rectangular perimeter.
public static $EllipsePerimeter
Provides an elliptic perimeter.
public static $RhombusPerimeter
Provides a rhombus (aka diamond) perimeter.
public static $TrianglePerimeter
Provides a triangle perimeter.
Implements a 2-dimensional rectangle with double precision coordinates.
Represents the current state of a cell in a given mxGraphView.
Implements a 2-dimensional point with double precision coordinates.
- - - - - - - - \ No newline at end of file diff --git a/docs/php-api/files/view/mxStyleRegistry-php.html b/docs/php-api/files/view/mxStyleRegistry-php.html deleted file mode 100644 index e5fb8adfe..000000000 --- a/docs/php-api/files/view/mxStyleRegistry-php.html +++ /dev/null @@ -1,51 +0,0 @@ - - -mxStyleRegistry - - - - - - - - - -

mxStyleRegistry

Singleton class that acts as a global converter from string to object values in a style.  This is currently only used to perimeters and edge styles.

Summary
mxStyleRegistrySingleton class that acts as a global converter from string to object values in a style.
Variables
valuesMaps from strings to objects.
Functions
putValuePuts the given object into the registry under the given name.
getValueReturns the value associated with the given name.
getNameReturns the name for the given value.
- -

Variables

- -

values

public static $values

Maps from strings to objects.

- -

Functions

- -

putValue

static function putValue($name,
$value)

Puts the given object into the registry under the given name.

- -

getValue

static function getValue($name)

Returns the value associated with the given name.

- -

getName

static function getName($value)

Returns the name for the given value.

- -
- - - - - - - - - - -
public static $values
Maps from strings to objects.
static function putValue($name,
$value)
Puts the given object into the registry under the given name.
static function getValue($name)
Returns the value associated with the given name.
static function getName($value)
Returns the name for the given value.
- - - - - - - - \ No newline at end of file diff --git a/docs/php-api/files/view/mxStylesheet-php.html b/docs/php-api/files/view/mxStylesheet-php.html deleted file mode 100644 index c2f8b9b9e..000000000 --- a/docs/php-api/files/view/mxStylesheet-php.html +++ /dev/null @@ -1,65 +0,0 @@ - - -mxStylesheet - - - - - - - - - -

mxStylesheet

Defines the appearance of the cells in a graph.  See putCellStyle for an example of creating a style.

Default Styles

The stylesheet contains two built-om styles, which are used if no style is defined for a cell:

defaultVertexDefault style for vertices
defaultEdgeDefault style for edges
Summary
mxStylesheetDefines the appearance of the cells in a graph.
Functions
stylesMaps from names to styles.
mxStylesheetConstructs a new stylesheet and assigns default styles.
createDefaultVertexStyleCreates and returns the default vertex style.
createDefaultEdgeStyleCreates and returns the default edge style.
putDefaultVertexStyleSets the default style for vertices.
putDefaultEdgeStyleSets the default style for edges.
getDefaultVertexStyleReturns the default style for vertices.
getDefaultEdgeStyleSets the default style for edges.
putCellStyleStores the specified style under the given name.
getCellStyleReturns the cell style for the specified cell or the given defaultStyle if no style can be found for the given stylename.
- -

Functions

- -

styles

var $styles = array()

Maps from names to styles.

- -

mxStylesheet

function mxStylesheet()

Constructs a new stylesheet and assigns default styles.

- -

createDefaultVertexStyle

function createDefaultVertexStyle()

Creates and returns the default vertex style.

- -

createDefaultEdgeStyle

function createDefaultEdgeStyle()

Creates and returns the default edge style.

- -

putDefaultVertexStyle

function putDefaultVertexStyle($style)

Sets the default style for vertices.

- -

putDefaultEdgeStyle

function putDefaultEdgeStyle($style)

Sets the default style for edges.

- -

getDefaultVertexStyle

function getDefaultVertexStyle()

Returns the default style for vertices.

- -

getDefaultEdgeStyle

function getDefaultEdgeStyle()

Sets the default style for edges.

- -

putCellStyle

function putCellStyle($name,
$style)

Stores the specified style under the given name.

Example

The following example adds a new style (called ‘rounded’) into an existing stylesheet:

var style = new Array();
-style[mxConstants.STYLE_SHAPE] = mxConstants.SHAPE_RECTANGLE;
-style[mxConstants.STYLE_PERIMETER] = mxPerimeter.RightAngleRectanglePerimeter;
-style[mxConstants.STYLE_ROUNDED] = 'true';
-graph.stylesheet.putCellStyle('rounded', style);

In the above example, the new style is an array.  The possible keys of the array are all the constants in mxConstants that start with STYLE and the values are either JavaScript objects, such as <mxPerimeter.RightAngleRectanglePerimeter> (which is in fact a function) or expressions, such as ‘true’.  Note that not all keys will be interpreted by all shapes (eg. the line shape ignores the fill color).  The final call to this method associates the style with a name in the stylesheet.  The style is used in a cell with the following code:

model.setStyle(cell, 'rounded');

Parameters

nameName for the style to be stored.
styleKey, value pairs that define the style.
- -

getCellStyle

function getCellStyle($name,  
$defaultStyle =  null)

Returns the cell style for the specified cell or the given defaultStyle if no style can be found for the given stylename.

Parameters

nameString of the form [(stylename|key=value);] that represents the style.
defaultStyleDefault style to be returned if no style can be found.
- -
- - - - - - - - - - -
var $styles = array()
Maps from names to styles.
function mxStylesheet()
Constructs a new stylesheet and assigns default styles.
function createDefaultVertexStyle()
Creates and returns the default vertex style.
function createDefaultEdgeStyle()
Creates and returns the default edge style.
function putDefaultVertexStyle($style)
Sets the default style for vertices.
function putDefaultEdgeStyle($style)
Sets the default style for edges.
function getDefaultVertexStyle()
Returns the default style for vertices.
function getDefaultEdgeStyle()
Sets the default style for edges.
function putCellStyle($name,
$style)
Stores the specified style under the given name.
function getCellStyle($name,  
$defaultStyle =  null)
Returns the cell style for the specified cell or the given defaultStyle if no style can be found for the given stylename.
Defines global constants.
- - - - - - - - \ No newline at end of file diff --git a/docs/php-api/index.html b/docs/php-api/index.html deleted file mode 100644 index c10acce66..000000000 --- a/docs/php-api/index.html +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/docs/php-api/index/Classes.html b/docs/php-api/index/Classes.html deleted file mode 100644 index b88e3562c..000000000 --- a/docs/php-api/index/Classes.html +++ /dev/null @@ -1,34 +0,0 @@ - - -Class Index - - - - - - - - - -
Class Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
M
 mxCell
 mxCellCodec
 mxCellPath
 mxCellState
 mxCodec
 mxCodecRegistry
 mxConnectionConstraint
 mxConstants
 mxEdgeStyle
 mxElbowConnector
 mxEllipsePerimeter
 mxEntityRelation
 mxEvent
 mxEventObject
 mxEventSource
 mxGdCanvas
 mxGeometry
 mxGraph
 mxGraphModel
 mxGraphView
 mxGraphViewHtmlReader
 mxGraphViewImageReader
 mxHtmlCanvas
 mxImageBundle
 mxLog
 mxLoop
 mxModelCodec
 mxObjectCodec
 mxPerimeter
 mxPoint
 mxRectangle
 mxRectanglePerimeter
 mxRhombusPerimeter
 mxSideToSide
 mxStyleRegistry
 mxStylesheet
 mxStylesheetCodec
 mxTopToBottom
 mxTrianglePerimeter
 mxUtils
- -
Cells are the elements of the graph model.
Codec for mxCells.
Implements a mechanism for temporary cell Ids.
Represents the current state of a cell in a given mxGraphView.
XML codec for PHP object graphs.
A class to register codecs for objects.
Defines an object that contains the constraints about how to connect one side of an edge to its terminal.
Defines global constants.
Provides various edge styles to be used as the values for mxConstants.STYLE_EDGE in a cell style.
Uses either SideToSide or TopToBottom depending on the horizontal flag in the cell style.
Implements an elliptic perimeter.
Implements an entity relation style for edges (as used in database schema diagrams).
Defines global constants.
Base class for all events.
Base class for all event sources.
Canvas for drawing graphs using the GD library.
Represents the geometry of a cell.
Implements a graph component.
Cells are the elements of the graph model.
Implements a view for the graph.
A display XML to HTML converter.
A display XML to image converter.
Canvas for drawing graphs using HTML.
Maps from keys to base64 encoded images or file locations.
Logging facility.
Implements a self-reference, aka.
Codec for mxGraphModels.
XML codec for PHP object graphs.
Provides various perimeter functions to be used in a style as the value of mxConstants.STYLE_PERIMETER.
Implements a 2-dimensional point with double precision coordinates.
Implements a 2-dimensional rectangle with double precision coordinates.
Implements a rectangular perimeter for the given bounds.
Implements a rhombus (aka diamond) perimeter.
Implements a vertical elbow edge.
Singleton class that acts as a global converter from string to object values in a style.
Defines the appearance of the cells in a graph.
Codec for mxStylesheets.
Implements a horizontal elbow edge.
Implements a triangle perimeter.
Helper methods.
- -
- - - - - - - - - - - - \ No newline at end of file diff --git a/docs/php-api/index/Files.html b/docs/php-api/index/Files.html deleted file mode 100644 index 1bcaa94c4..000000000 --- a/docs/php-api/index/Files.html +++ /dev/null @@ -1,38 +0,0 @@ - - -File Index - - - - - - - - - -
File Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
A
 API Specification
M
 mxGdCanvas.php
- -
This PHP library is divided into 4 packages.
- - - - - -
- - - - - - - - - - - - \ No newline at end of file diff --git a/docs/php-api/index/Functions.html b/docs/php-api/index/Functions.html deleted file mode 100644 index 70b67db78..000000000 --- a/docs/php-api/index/Functions.html +++ /dev/null @@ -1,42 +0,0 @@ - - -Function Index - - - - - - - - - -
Function Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
A
 add
 addAlias, mxCodecRegistry
 addBundle, mxGraph
 addElement, mxCodec
 addListener, mxEventSource
 addLogfile, mxLog
 addObjectValue, mxObjectCodec
 addStylename, mxUtils
 afterDecode, mxObjectCodec
 afterEncode, mxObjectCodec
 apply
B
 beforeDecode, mxObjectCodec
 beforeEncode, mxObjectCodec
 beginUpdate, mxGraphModel
C
 cellAdded, mxGraphModel
 cellCloned, mxGraphModel
 cellRemoved, mxGraphModel
 clear, mxGraphModel
 cloneCell, mxGraphModel
 cloneCellImpl, mxGraphModel
 cloneCells, mxGraphModel
 cloneTemplate, mxObjectCodec
 close, mxLog
 consume, mxEventObject
 contains
 convert
 convertFile
 convertValueFromXml, mxObjectCodec
 convertValueToString, mxGraph
 convertValueToXml, mxObjectCodec
 copy
 copyValue, mxCell
 create, mxCellPath
 createCanvas
 createDefaultEdgeStyle, mxStylesheet
 createDefaultVertexStyle, mxStylesheet
 createEdge, mxGraph
 createGraphView, mxGraph
 createId, mxGraphModel
 createImage, mxGraph
 createRoot, mxGraphModel
 createState, mxGraphView
 createStylesheet, mxGraph
 createVertex, mxGraph
 createXmlDocument, mxUtils
- -
function add($parent,  
$child,  
$index =  null)
Adds the specified child to the parent at the given index using mxChildChange and adds the change to the current transaction.
function add($rect)
Adds the given rectangle to this rectangle.
static function addAlias($classname,
$codecname)
Adds an alias for mapping a classname to a codecname.
Adds the specified mxImageBundle.
function addElement($node)
Adds the given element to elements if it has an ID.
function addListener($name,
$listener)
Adds a listener for the given event name.
static function addLogfile($filename)
Adds a file for logging.
function addObjectValue(&$obj,
$fieldname,
$value,
$template)
Sets the decoded child node as a value of the given object.
static function addStylename($style,
$stylename)
Adds the specified stylename to the given style if it does not already contain the stylename.
function afterDecode($dec,
$node,
&$obj)
Hook for subclassers to post-process the object after decoding.
function afterEncode($enc,
$obj,
$node)
Hook for subclassers to post-process the node for the given object after encoding and return the post-processed node.
public function apply($state,
$source,
$target,
$points,
&$result)
Implements an edge style function.
public function apply($bounds,
$vertex,
$next,
$orthogonal)
Implements a perimeter function.
- - - -
function beforeDecode($dec,
$node,
&$obj)
Hook for subclassers to pre-process the node for the specified object and return the node to be used for further processing by decode.
function beforeEncode($enc,
$obj,
$node)
Hook for subclassers to pre-process the object before encoding.
function beginUpdate()
Increments the updateLevel by one.
- - - -
function cellAdded($cell)
Inner callback to update cells when a cell has been added.
function cellCloned($cell)
Hook for cloning the cell.
function cellRemoved($cell)
Inner callback to update cells when a cell has been removed.
function clear()
Sets a new root using createRoot.
function cloneCell($cell)
Returns a deep clone of the given mxCell (including the children) which is created using cloneCells.
function cloneCellImpl($cell,
$mapping,
$includeChildren)
Inner helper method for cloning cells recursively.
function cloneCells($cells,  
$includeChildren = true)
Returns an array of clones for the given array of mxCells.
function cloneTemplate()
Creates a new instance of the template for this codec.
static function close()
Closes all open logfiles.
function consume()
Consumes the event.
function contains($cell)
Returns true if the model contains the given mxCell.
static function contains($state,
$x,
$y)
Returns true if the specified point (x, y) is contained in the given rectangle.
static function convert($string,  
$background =  null)
Creates the HTML markup for the given display XML string.
static function convert($string,  
$background =  null)
Creates the image for the given display XML string.
static function convertFile($filename,  
$background =  null)
Creates the HTML markup for the given display XML file.
static function convertFile($filename,  
$background =  null)
Creates the image for the given display XML file.
function convertValueFromXml($value)
Returns the given value.
function convertValueToString($cell)
Returns the textual representation for the given cell.
function convertValueToXml($value)
Returns the given value without applying a conversion.
function copy()
Returns a clone of the cell.
function copy()
Returns a copy of this state where all members are deeply cloned except the view and cell references, which are copied with no cloning to the new instance.
function copy()
Returns a copy of this mxGeometry.
function copy()
Returns a copy of this mxPoint.
function copy()
Returns a copy of this mxRectangle.
function copyValue()
Returns a clone of the cell’s user object.
static function create($cell)
Creates the cell path for the given cell.
function createCanvas($attrs)
Returns the canvas to be used for rendering.
function createCanvas($attrs)
Returns the canvas to be used for rendering.
function createDefaultEdgeStyle()
Creates and returns the default edge style.
function createDefaultVertexStyle()
Creates and returns the default vertex style.
function createEdge($parent,  
$id =  null,
$value =  null,
$source =  null,
$target =  null,
$style =  null)
Creates the edge to be used in insertEdge.
function createGraphView()
Creates a new mxGraphView to be used in this graph.
function createId($cell)
Hook method to create an Id for the specified cell.
function createImage($clip =  null,
$background =  null)
function createRoot()
Creates a new root cell with a default layer (child 0).
function createState($cell)
Creates the state for the specified cell.
function createStylesheet()
Creates a new mxStylesheet to be used in this graph.
function createVertex($parent,  
$id =  null,
$value =  null,
$x =  0,
$y =  0,
$width =  1,
$height =  1,
$style =  null,
$relative =  false)
Creates the vertex to be used in insertVertex.
static function createXmlDocument()
Returns a new, empty XML document.
- -
- - - - - - - - - - - - \ No newline at end of file diff --git a/docs/php-api/index/Functions2.html b/docs/php-api/index/Functions2.html deleted file mode 100644 index 1ea58a73c..000000000 --- a/docs/php-api/index/Functions2.html +++ /dev/null @@ -1,34 +0,0 @@ - - -Function Index - - - - - - - - - -
Function Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
D
 debug, mxLog
 decode
 decodeAttribute, mxObjectCodec
 decodeAttributes, mxObjectCodec
 decodeCell, mxCodec
 decodeChild, mxObjectCodec
 decodeChildren, mxObjectCodec
 decodeNode, mxObjectCodec
 destroy
 drawActor, mxGdCanvas
 drawCell, mxGdCanvas
 drawCloud, mxGdCanvas
 drawCylinder, mxGdCanvas
 drawFixedTextLine, mxGdCanvas
 drawGraph
 drawHexagon, mxGdCanvas
 drawImage
 drawLabel, mxGdCanvas
 drawLine
 drawMarker, mxGdCanvas
 drawOval, mxGdCanvas
 drawPolygon, mxGdCanvas
 drawRect, mxGdCanvas
 drawRhombus, mxGdCanvas
 drawShape
 drawString, mxGdCanvas
 drawText
 drawTriangle, mxGdCanvas
 drawTtfText, mxGdCanvas
 drawTtxTextLine, mxGdCanvas
- -
static function debug($text)
Logs a debug trace.
function decode($node,  
$into =  null)
Decodes the given XML node.
function decode($dec,  
$node,  
&$into =  null)
Parses the given node into the object or returns a new object representing the given node.
function decodeAttribute($dec,
$attr,
&$obj)
Reads the given attribute into the specified object.
function decodeAttributes($dec,
$node,
&$obj)
Decodes all attributes of the given node using decodeAttribute.
function decodeCell($node,  
$restoreStructures =  true)
Decodes cells that have been encoded using inversion, ie.
function decodeChild($dec,
$child,
&$obj)
Reads the specified child into the given object.
function decodeChildren($dec,
$node,
&$obj)
Decodec all children of the given node using decodeChild.
function decodeNode($dec,
$node,
&$obj)
Calls decodeAttributes and decodeChildren for the given node.
function destroy()
Destroys all allocated resources.
function destroy()
Destroy all allocated resources for this reader.
function destroy()
Destroy all allocated resources.
function drawActor($x,  
$y,  
$w,  
$h,  
$fill =  null,
$stroke =  null,
$shadow = false)
Draws then given cloud.
function drawCell($state)
Draws the given cell state.
function drawCloud($x,  
$y,  
$w,  
$h,  
$fill =  null,
$stroke =  null,
$shadow = false)
Draws then given cloud.
function drawCylinder($x,  
$y,  
$w,  
$h,  
$fill =  null,
$stroke =  null,
$shadow =  false)
Draws then given cylinder.
function drawFixedTextLine($text,  
$font,  
$left,  
$top,  
$color,  
$horizontal =  true)
Draws the given fixed text line.
public static function drawGraph($graph,  
$clip =  null,
$bg =  null)
Draws the given graph using this canvas.
function drawGraph($canvas)
Draws the given cell onto the specified canvas.
public static function drawGraph($graph,  
$clip =  null,
$bg =  null)
Draws the given graph using this canvas.
function drawHexagon($x,  
$y,  
$w,  
$h,  
$fill =  null,
$stroke =  null,
$shadow =  false,
$direction =  null)
Draws then given haxagon.
function drawImage($x,  
$y,  
$w,  
$h,  
$image,  
$aspect =  true,
$flipH =  false,
$flipV =  false)
Draws a given image.
function drawImage($x,  
$y,  
$w,  
$h,  
$image,  
$aspect =  true,
$flipH =  false,
$flipV =  false)
Draws the specified image.
function drawLabel($text,  
$state,  
$html =  false)
Draws the given label.
function drawLine($x0,  
$y0,  
$x1,  
$y1,  
$stroke =  null,
$dashed =  false)
Draws the given line.
function drawLine($x0,  
$y0,  
$x1,  
$y1,  
$stroke =  null,
$dashed =  false)
Draws the specified line.
function drawMarker($type,
$p0,
$pe,
$size,
$stroke)
Draws the specified marker.
function drawOval($x,  
$y,  
$w,  
$h,  
$fill =  null,
$stroke =  null,
$shadow =  false)
Draws then given ellipse.
function drawPolygon($points,  
$fill =  null,
$stroke =  null,
$shadow =  false)
Draws the given polygon.
function drawRect($x,  
$y,  
$w,  
$h,  
$fill =  null,
$stroke =  null,
$shadow =  false,
$rounded =  false,
$dashed =  false)
Draws then given rectangle.
function drawRhombus($x,  
$y,  
$w,  
$h,  
$fill =  null,
$stroke =  null,
$shadow =  false)
Draws then given rhombus.
function drawShape($x,
$y,
$w,
$h,
$style)
Draws the given shape.
function drawShape($shape,  
$x,  
$y,  
$w,  
$h,  
$stroke = null,
$fill = null)
Draws the specified shape.
function drawText($string,
$x,
$y,
$w,
$h,
$style)
function drawText($string,
$x,
$y,
$w,
$h,
$style)
Draws the specified text.
function drawTriangle($x,  
$y,  
$w,  
$h,  
$fill =  null,
$stroke =  null,
$shadow =  false,
$direction =  null)
Draws then given triangle.
function drawTtfText($string,
$x,
$y,
$w,
$h,
$style)
Draws a single line of the given true type font text.
- -
- - - - - - - - - - - - \ No newline at end of file diff --git a/docs/php-api/index/Functions3.html b/docs/php-api/index/Functions3.html deleted file mode 100644 index 507b8c9ec..000000000 --- a/docs/php-api/index/Functions3.html +++ /dev/null @@ -1,38 +0,0 @@ - - -Function Index - - - - - - - - - -
Function Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
E
 encode
 encodeCell, mxCodec
 encodeImage, mxUtils
 encodeObject, mxObjectCodec
 encodeValue, mxObjectCodec
 endElement, mxGraphViewImageReader
 endUpdate, mxGraphModel
 enter, mxLog
 equals
 error, mxLog
 evaluate, mxUtils
F
 findNode, mxUtils
 findTreeRoots, mxGraph
 fine, mxLog
 fireEvent, mxEventSource
 flipImage, mxUtils
- -
function encode($obj)
Encodes the specified object and returns the resulting XML node.
function encode($enc,
$obj)
Encodes the specified object and returns a node representing then given object.
function encodeCell($cell,  
$node,  
$includeChildren = true)
Encoding of cell hierarchies is built-into the core, but is a higher-level function that needs to be explicitely used by the respective object encoders (eg.
static function encodeImage($image,  
$format = null)
Encodes the given image using the GD image encoding routines.
function encodeObject($enc,
$obj,
$node)
Encodes the value of each member in then given obj into the given node using encodeValue.
function encodeValue($enc,
$obj,
$name,
$value,
$node)
Converts the given value according to the mappings and id-refs in this codec and uses writeAttribute to write the attribute into the given node.
function endElement($parser,
$name)
Invoked by the SAX parser when an element ends.
function endUpdate()
Decrements the updateLevel by one and fires a notification event if the updateLevel reaches 0.
static function enter($method,  
$text = "")
Logs a method entry.
function equals($obj)
Returns true if the given object equals this point.
function equals($obj)
Returns true if the given object equals this rectangle.
static function error($text)
Logs an error trace.
static function evaluate($expression)
Evaluates an expression to a class member.
- - - -
static function findNode($node,
$attr,
$value)
Returns the first node where attr equals value.
function findTreeRoots($parent,  
$isolate =  false,
$invert =  false)
Returns all children in the given parent which do not have incoming edges.
static function fine($text)
Logs a fine trace.
function fireEvent($event)
Fires the event for the specified name.
static function flipImage($img,
$flipH,
$flipV)
Flips the given image horizontally and/or vertically and returns a new image instance.
- -
- - - - - - - - - - - - \ No newline at end of file diff --git a/docs/php-api/index/Functions4.html b/docs/php-api/index/Functions4.html deleted file mode 100644 index d81781ab1..000000000 --- a/docs/php-api/index/Functions4.html +++ /dev/null @@ -1,34 +0,0 @@ - - -Function Index - - - - - - - - - -
Function Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
G
 getAttribute, mxCell
 getAttributeName, mxObjectCodec
 getBoundingBox
 getBounds, mxGraphView
 getBoundsForCells, mxGraph
 getCellBounds, mxGraph
 getCellGeometry, mxGraph
 getCells, mxGraphModel
 getCellStyle
 getCenterX, mxRectangle
 getCenterY, mxRectangle
 getChildAt
 getChildCount
 getChildOffsetForCell, mxGraph
 getCodec, mxCodecRegistry
 getColor, mxGdCanvas
 getConnectionConstraint, mxGraph
 getConnectionPoint, mxGraph
 getDefaultEdgeStyle, mxStylesheet
 getDefaultParent, mxGraph
 getDefaultVertexStyle, mxStylesheet
 getDirectedEdgeCount, mxGraphModel
 getEdgeAt
 getEdgeCount
 getEdgeIndex, mxCell
 getEdges, mxGraphModel
 getEdgeStyle, mxGraphView
 getElementById, mxCodec
 getFieldName, mxObjectCodec
 getFieldTemplate, mxObjectCodec
 getFixedFontSize
 getGeometry
 getGraphBounds
 getHashCode, mxGraphView
 getHtml, mxHtmlCanvas
 getId
 getImage
 getImageBundles, mxGraph
 getImageForStyle, mxGdCanvas
 getImageFromBundles, mxGraph
 getImages, mxImageBundle
 getIndex, mxCell
 getInstanceForName, mxCodecRegistry
 getLabel, mxGraph
 getLabelPaintBounds, mxUtils
 getLabelSize, mxUtils
 getModel, mxGraph
 getName
 getNearestCommonAncestor, mxGraphModel
 getNextPoint, mxGraphView
 getNumber, mxUtils
 getObject, mxCodec
 getOrigin, mxGraphModel
 getPaintBounds, mxGraph
 getParent
 getParentPath, mxCellPath
 getPerimeterBounds
 getPerimeterFunction, mxGraphView
 getPerimeterPoint, mxGraphView
 getPoint, mxGraphView
 getProperties, mxEventObject
 getProperty, mxEventObject
 getRoot, mxGraphModel
 getRotatedPoint, mxUtils
 getRoutingCenterX, mxGraphView
 getRoutingCenterY, mxGraphView
 getScaledLabelBounds, mxUtils
 getSizeForString, mxUtils
 getState, mxGraphView
 getStates, mxGraphView
 getStyle
 getStylename, mxUtils
 getStylenames, mxUtils
 getStylesheet, mxGraph
 getTerminal
 getTerminalPoint, mxGeometry
 getTerminalPort, mxGraphView
 getTrueTypeFont
 getTrueTypeFontSize
 getValue
 getView, mxGraph
 getVisibleTerminal, mxGraphView
 graphModelChanged, mxGraph
 grow, mxRectangle
- -
function getAttribute($key,  
$defaultValue =  null)
Returns the specified attribute from the user object if it is an XML node.
function getAttributeName($fieldname)
Returns the attributename for the given fieldname.
function getBoundingBox($cell,  
$includeEdges =  false,
$includeDescendants =  false)
Returns the bounding box of the given cell including all connected edges if includeEdge is true.
function getBoundingBox($state,  
$recurse =  true)
Returns the bounding box of the shape and the label for the given mxCellState and its children if recurse is true.
static function getBoundingBox($rect,
$rotation)
Returns the bounding box for the rotated rectangle.
function getBounds($cells,  
$boundingBox =  false)
Returns the bounding for for an array of cells or null, if no cells are specified.
function getBoundsForCells($cells,  
$includeEdges =  false,
$includeDescendants =  false,
$boundingBox =  false)
Returns the bounds for the given cells.
function getCellBounds($cell,  
$includeEdges =  false,
$includeDescendants =  false,
$boundingBox =  false)
Returns the bounds of the given cell including all connected edges if includeEdge is true.
function getCellGeometry($cell)
Returns the mxGeometry for the given mxCell.
function getCells()
Returns the internal lookup table that is used to map from Ids to cells.
function getCellStyle($cell)
function getCellStyle($name,  
$defaultStyle =  null)
Returns the cell style for the specified cell or the given defaultStyle if no style can be found for the given stylename.
function getCenterX()
Returns the x-coordinate of the center point.
function getCenterY()
Returns the y-coordinate of the center point.
function getChildAt($index)
Returns the child at the specified index.
function getChildAt($cell,
$index)
Returns the child of the given mxCell at the given index.
function getChildCount()
Returns the number of child cells.
function getChildCount($cell)
Returns the number of children in the given cell.
function getChildOffsetForCell($cell)
Returns the offset to be used for the cells inside the given cell.
static function getCodec($name)
Returns a codec that handles objects that are constructed using the given ctor.
function getColor($hex,  
$default =  null)
Allocates the given color and returns a reference to it.
function getConnectionConstraint($edge,
$terminal,
$source)
Returns an mxConnectionConstraint that describes the given connection point.
function getConnectionPoint($vertex,
$constraint)
Returns the nearest point in the list of absolute points or the center of the opposite terminal.
function getDefaultEdgeStyle()
Sets the default style for edges.
function getDefaultParent()
Returns the first child child of mxGraphModel.root.
function getDefaultVertexStyle()
Returns the default style for vertices.
function getDirectedEdgeCount($cell,  
$outgoing,  
$ignoredEdge =  null)
Returns the number of incoming or outgoing edges, ignoring the given edge.
function getEdgeAt($index)
Returns the edge at the specified index in edges.
function getEdgeAt($cell,
$index)
Returns the edge of cell at the given index.
function getEdgeCount()
Returns the number of edges in the edge array.
function getEdgeCount($cell)
Returns the number of distinct edges connected to the given cell.
function getEdgeIndex($edge)
Returns the index of the specified edge in edges.
function getEdges($cell)
Returns all distinct edges connected to this cell as an array of mxCells.
function getEdgeStyle($edge,
$points,
$source,
$target)
Returns the edge style function to be used to render the given edge state.
function getElementById($id)
Returns the element with the given ID from document.
function getFieldName($attributename)
Returns the fieldname for the given attributename.
function getFieldTemplate(&$obj,
$fieldname,
$child)
Returns the template instance for the given field.
function getFixedFontSize($fontSize,  
$fontFamily,  
$fontStyle = null)
Returns the fixed font size for GD (1 t0 5) for the given font properties
static function getFixedFontSize($fontSize,  
$fontFamily,  
$fontStyle = null)
Returns the fixed font size for GD (1 t0 5) for the given font properties
function getGeometry()
Returns the mxGeometry that describes the geometry.
function getGeometry($cell)
Returns the mxGeometry of the given mxCell.
function getGraphBounds()
Returns the bounds of the visible graph.
function getGraphBounds()
Returns graphBounds.
function getHashCode($cell)
Returns a unique string that represents the given instance.
function getHtml()
Gets the HTML that represents the canvas.
function getId()
Returns the Id of the cell as a string.
function getId($obj)
Returns the ID of the specified object.
function getImage()
Returns an image that represents this canvas.
function getImage($key)
Returns the value for the given key.
function getImageBundles()
Returns the imageBundles.
function getImageForStyle($style)
Returns an image that represents this canvas.
function getImageFromBundles($key)
Searches all imageBundles for the specified key and returns the value for the first match or null if the key is not found.
function getImages()
Returns the images.
function getIndex($child)
Returns the index of the specified child in the child array.
static function getInstanceForName($name)
Creates and returns a new instance for the given class name.
function getLabel($cell)
Returns a string or DOM node that represents the label for the given cell.
static function getLabelPaintBounds($label,
$style,
$isHtml,
$offset,
$vertexBounds,
$scale)
Returns the paint bounds for the given label.
static function getLabelSize($label,
$style)
Returns the size of the given label.
function getModel()
Returns the mxGraphModel that contains the cells.
static function getName($obj)
Returns the codec name for the given object instance.
function getName()
Returns name.
function getName()
Creates a new instance of the template for this codec.
static function getName($value)
Returns the name for the given value.
function getNearestCommonAncestor($cell1,
$cell2)
Returns the nearest common ancestor for the specified cells.
function getNextPoint($edge,
$opposite,
$source)
Returns the nearest point in the list of absolute points or the center of the opposite terminal.
static function getNumber($dict,  
$key,  
$default = )
Returns the value for key in dictionary or 0 if no value is defined for the key.
function getObject($id)
Returns the decoded object for the element with the specified ID in document.
function getOrigin($cell)
Returns the absolute, cummulated origin for the children inside the given parent as an mxPoint.
function getPaintBounds($cells)
Returns the bounding box of the given cells and their descendants.
function getParent()
Returns the cell’s parent.
function getParent($cell)
Returns the parent of the given cell.
static function getParentPath($path)
Returns the cell for the specified cell path using the given root as the root of the path.
function getPerimeterBounds($border =  0)
Returns the mxRectangle that should be used as the perimeter of the cell.
function getPerimeterBounds($terminal,  
$border =  0)
Returns the perimeter bounds for the given terminal, edge pair as an mxRectangle.
function getPerimeterFunction($state)
Returns the perimeter function for the given state.
function getPerimeterPoint($terminal,  
$next,  
$orthogonal,  
$border =  null)
Returns an mxPoint that defines the location of the intersection point between the perimeter and the line between the center of the shape and the given point.
function getPoint($state,  
$geometry =  null)
Returns the absolute point on the edge for the given relative mxGeometry as an mxPoint.
function getProperties()
Returns properties.
function getProperty($key)
Returns the property value for the given key.
function getRoot()
Returns the root of the model.
static function getRotatedPoint($pt,  
$cos,  
$sin,  
$cx =  null)
Rotates the given point by the given cos and sin.
function getRoutingCenterX($state)
Returns the x-coordinate of the center point for automatic routing.
function getRoutingCenterY($state)
Returns the y-coordinate of the center point for automatic routing.
static function getScaledLabelBounds($x,
$y,
$size,
$outerWidth,
$outerHeight,
$style,
$scale)
Returns the bounds for a label for the given location and size, taking into account the alignment and spacing in the specified style, as well as the width and height of the rectangle that contains the label.
static function getSizeForString($text,  
$fontSize =  0,
$fontFamily =  null)
Returns an mxRectangle with the size (width and height in pixels) of the given string.
function getState($cell,  
$create =  false)
Returns the cell state for the specified cell.
function getStates()
Returns the mxCellStates for the given array of mxCells.
function getStyle()
Returns a string that describes the style.
function getStyle($cell)
Returns the style of the given mxCell.
static function getStylename($style)
Returns the stylename in a style of the form [stylename;|key=value;] or an empty string if the given style does not contain a stylename.
static function getStylenames($style)
Returns the stylenames in a style of the form [stylename;|key=value;] or an empty array if the given style does not contain any stylenames.
function getStylesheet()
Returns the mxStylesheet that defines the style.
function getTerminal($source)
Returns the source or target terminal.
function getTerminal($edge,
$cource)
Returns the source or target mxCell of the given edge depending on the value of the boolean parameter.
function getTerminalPoint($isSource)
Returns the mxPoint representing the source or target point of this edge.
function getTerminalPort($state,
$terminal,
$source)
Returns an mxCellState that represents the source or target terminal or port for the given edge.
function getTrueTypeFont($style)
Returns the truetype font to be used to draw the text with the given style.
static function getTrueTypeFont($style)
Returns the truetype font to be used to draw the text with the given style.
function getTrueTypeFontSize($style)
Returns the truetype font size to be used to draw the text with the given style.
static function getTrueTypeFontSize($size)
Returns the truetype font size to be used to draw the text with the given style.
function getValue()
Returns the user object of the cell.
function getValue($cell)
Returns the user object of the given mxCell using mxCell.getValue.
static function getValue($name)
Returns the value associated with the given name.
static function getValue($dict,  
$key,  
$default = null)
Returns the value for key in dictionary or the given default value if no value is defined for the key.
function getView()
Returns the mxGraphView that contains the mxCellStates.
function getVisibleTerminal($edge,
$source)
Returns the nearest ancestor terminal that is visible.
function graphModelChanged($event)
Called when the graph model has changed.
function grow($amount)
Grows the rectangle by the given amount, that is, this method subtracts the given amount from the x- and y-coordinates and adds twice the amount to the width and height.
- -
- - - - - - - - - - - - \ No newline at end of file diff --git a/docs/php-api/index/Functions5.html b/docs/php-api/index/Functions5.html deleted file mode 100644 index ae87bbff3..000000000 --- a/docs/php-api/index/Functions5.html +++ /dev/null @@ -1,46 +0,0 @@ - - -Function Index - - - - - - - - - -
Function Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
I
 indexOf, mxUtils
 indexOfStylename, mxUtils
 info, mxLog
 insert, mxCell
 insertEdge
 insertIntoGraph, mxCodec
 insertVertex, mxGraph
 intersection, mxUtils
 invalidate, mxGraphView
 isAncestor, mxGraphModel
 isCellCollapsed, mxGraph
 isCellVisible, mxGraph
 isCollapsed
 isConnectable
 isConsumed, mxEventObject
 isEdge
 isExcluded, mxObjectCodec
 isNode, mxUtils
 isOrthogonal, mxGraph
 isReference, mxObjectCodec
 isVertex
 isVisible
L
 leave, mxLog
 loadImage
 loadXmlDocument, mxUtils
 lookup, mxCodec
M
 mergeChildren, mxGraphModel
 mergeChildrenImpl, mxGraphModel
 mxCell, mxCell
 mxCellState, mxCellState
 mxConnectionConstraint, mxConnectionConstraint
 mxEventObject, mxEventObject
 mxGdCanvas
 mxGeometry, mxGeometry
 mxGraphModel
 mxGraphView, mxGraphView
 mxGraphViewHtmlReader
 mxGraphViewImageReader, mxGraphViewImageReader
 mxImageBundle, mxImageBundle
 mxObjectCodec
 mxPoint, mxPoint
 mxRectangle, mxRectangle
 mxStylesheet, mxStylesheet
O
 offset, mxGdCanvas
 out, mxHtmlCanvas
- -
static function indexOf($array,
$object)
Returns the index of obj in array or -1 if the array does not contains the given object.
static function indexOfStylename($style,
$stylename)
Returns the index of the given stylename in the given style.
static function info($text)
Logs an info trace.
function insert($child,  
$index =  null)
Inserts the specified child into the child array at the specified index and updates the parent reference of the child.
function insertEdge($edge,
$outgoing)
Inserts the specified edge into the edge array and returns the edge.
function insertEdge($parent,  
$id =  null,
$value =  null,
$source =  null,
$target =  null,
$style =  null)
Adds a new edge into the given parent mxCell using value as the user object and the given source and target as the terminals of the new edge.
function insertIntoGraph($cell)
Inserts the given cell into its parent and terminal cells.
function insertVertex($parent,  
$id =  null,
$value =  null,
$x =  0,
$y =  0,
$width =  1,
$height =  1,
$style =  null,
$relative =  false)
Adds a new vertex into the given parent mxCell using value as the user object and the given coordinates as the mxGeometry of the new vertex.
static function intersection($x0,
$y0,
$x1,
$y1,
$x2,
$y2,
$x3,
$y3)
Returns the intersection of two lines as an mxPoint.
function isAncestor($parent,
$child)
Returns true if the given parent is an ancestor of the given child.
function isCellCollapsed($cell)
Returns true if the given cell is collapsed.
function isCellVisible($cell)
Returns true if the given cell is visible.
function isCollapsed()
Returns true if the cell is collapsed.
function isCollapsed($cell)
Returns true if the given mxCell is collapsed.
function isConnectable()
Returns true if the cell is connectable.
function isConnectable($cell)
Returns true if the given mxCell is connectable.
function isConsumed()
Returns true if the event has been consumed.
function isEdge()
Returns true if the cell is an edge.
function isEdge($cell)
Returns true if the given cell is an edge.
function isExcluded($obj,
$attr,
$value,
$write)
Returns true if the given attribute is to be ignored by the codec.
static function isNode($value,  
$nodeName =  null,
$attributeName =  null,
$attributeValue =  null)
Returns true if the given value is an XML node with the node name and if the optional attribute has the specified value.
function isOrthogonal($edge)
Returns true if perimeter points should be computed such that the resulting edge has only horizontal or vertical segments.
function isReference($obj,
$attr,
$value,
$write)
Returns true if the given fieldname is to be treated as a textual reference (ID).
function isVertex()
Returns true if the cell is a vertex.
function isVertex($cell)
Returns true if the given cell is a vertex.
function isVisible()
Returns true if the cell is visibile.
function isVisible($cell)
Returns true if the given mxCell is visible.
- - - -
static function leave($text = "")
Logs a method exit.
function loadImage($image)
Returns an image instance for the given URL.
static function loadImage($url)
Loads an image from the local filesystem, a data URI or any other URL.
static function loadXmlDocument($uri)
Returns a new DOM document for the given URI.
function lookup($id)
Hook for subclassers to implement a custom lookup mechanism for cell IDs.
- - - -
function mergeChildren($from,  
$to,  
$cloneAllEdges =  true)
Merges the children of the given cell into the given target cell inside this model.
function mergeChildrenImpl($from,
$to,
$cloneAllEdges,
$mapping)
Clones the children of the source cell into the given target cell in this model and adds an entry to the mapping that maps from the source cell to the target cell with the same id or the clone of the source cell that was inserted into this model.
function mxCell($value =  null,
$geometry =  null,
$style =  null)
Constructs a new cell to be used in a graph model.
function mxCellState($view =  null,
$cell =  null,
$style =  null)
Constructs a new object that represents the current state of the given cell in the specified view.
function mxConnectionConstraint($point =  null,
$perimeter =  true)
Constructs a new connection constraint for the given point and boolean arguments.
function mxEventObject($name)
Constructs a new event for the given name and properties.
function mxGdCanvas($width =  0,
$height =  0,
$scale =  1,
$background =  null,
$imageBasePath =  "")
Constructs a new GD canvas.
Constructs a new GD canvas.
function mxGeometry($x = 0,
$y = 0,
$width = 0,
$height = 0)
Constructs a new object to describe the size and location of a vertex or the control points of an edge.
Constructs a new graph model using the specified root cell.
function mxGraphModel($root =  null)
Constructs a new graph model using the specified root cell.
function mxGraphView($graph)
Constructs a new view for the specified mxGraph.
Constructs a new HTML graph view reader.
function mxGraphViewHtmlReader()
Constructs a new HTML graph view reader.
function mxGraphViewImageReader($background =  null,
$border =  0)
Constructs a new image graph view reader.
function mxImageBundle()
Constructs a new image bundle.
Constructs a new codec for the specified template object.
Constructs a new codec for the specified template object.
function mxObjectCodec($template,  
$exclude =  array(),
$idrefs =  array(),
$mapping =  array())
Constructs a new codec for the specified template object.
Constructs a new codec for the specified template object.
function mxPoint($x =  0,
$y =  0)
Constructs a new point for the optional x and y coordinates.
function mxRectangle($x =  0,
$y =  0,
$width =  0,
$height =  0)
Constructs a new rectangle for the optional parameters.
function mxStylesheet()
Constructs a new stylesheet and assigns default styles.
- - - -
function offset($points,  
$dx =  null,
$dy =  null)
Creates a new array of x, y sequences where the each coordinate is translated by dx and dy, respectively.
function out($string)
Adds the specified string to the output.
- -
- - - - - - - - - - - - \ No newline at end of file diff --git a/docs/php-api/index/Functions6.html b/docs/php-api/index/Functions6.html deleted file mode 100644 index de24d5169..000000000 --- a/docs/php-api/index/Functions6.html +++ /dev/null @@ -1,38 +0,0 @@ - - -Function Index - - - - - - - - - -
Function Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
P
 paintCell, mxGraph
 paintState, mxGraph
 parsePoints, mxGraphViewImageReader
 parseState, mxGraphViewImageReader
 parseXml, mxUtils
 postProcessCellStyle, mxGraph
 processInclude, mxObjectCodec
 putCellStyle, mxStylesheet
 putDefaultEdgeStyle, mxStylesheet
 putDefaultVertexStyle, mxStylesheet
 putImage, mxImageBundle
 putObject, mxCodec
 putValue, mxStyleRegistry
R
 read, mxGraphViewImageReader
 readFile
 reference, mxCodec
 register, mxCodecRegistry
 remove
 removeAllStylenames, mxUtils
 removeEdge, mxCell
 removeFromParent, mxCell
 removeFromTerminal, mxCell
 removeImageBundle, mxGraph
 removeState, mxGraphView
 removeStylename, mxUtils
 resolve, mxCellPath
 restoreClone, mxGraphModel
- -
Draws the given cell onto the specified canvas.
Draws the given cell and label onto the specified canvas.
function parsePoints($str)
Parses a string that represents a list of points into an array of mxPoints.
function parseState($state,
$edge)
Parses the bounds, absolute points and label information from the style of the state into its respective fields and returns the label of the cell.
static function parseXml($xml)
Returns a new DOM document for the given XML string.
function postProcessCellStyle($style)
Tries to resolve the value for the image style in the image bundles and turns short data URIs as defined in mxImageBundle to data URIs as defined in RFC 2397 of the IETF.
function processInclude($dec,
$node,
$into)
Returns true if the given node is an include directive and executes the include by decoding the XML document.
function putCellStyle($name,
$style)
Stores the specified style under the given name.
function putDefaultEdgeStyle($style)
Sets the default style for edges.
function putDefaultVertexStyle($style)
Sets the default style for vertices.
function putImage($key,
$value)
Adds the specified entry to the map.
function putObject($id,
$object)
Assoiates the given object with the given ID.
static function putValue($name,
$value)
Puts the given object into the registry under the given name.
- - - -
function read($string)
Reads the specified view XML string.
function readFile($filename)
Reads the specified view XML file in blocks of 4096 bytes.
static function readFile($filename)
Reads the given filename into a string.
function reference($obj)
Hook for subclassers to implement a custom method for retrieving IDs from objects.
static function register($codec)
Registers a new codec and associates the name of the template constructor in the codec with the codec object.
function remove($index)
Removes the child at the specified index from the child array and returns the child that was removed.
function remove($cell)
Removes the specified cell from the model using mxChildChange and adds the change to the current transaction.
static function removeAllStylenames($style)
Removes all stylenames from the given style and returns the updated style.
function removeEdge($edge,
$outgoing)
Removes the specified edge from the edge array and returns the edge.
function removeFromParent()
Removes the cell from its parent.
function removeFromTerminal($source)
Removes the edge from its source or target terminal.
function removeImageBundle($bundle)
Removes the specified mxImageBundle.
function removeState($cell,  
$recurse =  false)
Removes and returns the mxCellState for the given cell.
static function removeStylename($style,
$stylename)
Removes all occurrences of the specified stylename in the given style and returns the updated style.
static function resolve($root,
$path)
Returns the cell for the specified cell path using the given root as the root of the path.
function restoreClone($clne,
$cell,
$mapping)
Inner helper method for restoring the connections in a network of cloned cells.
- -
- - - - - - - - - - - - \ No newline at end of file diff --git a/docs/php-api/index/Functions7.html b/docs/php-api/index/Functions7.html deleted file mode 100644 index e26178f92..000000000 --- a/docs/php-api/index/Functions7.html +++ /dev/null @@ -1,46 +0,0 @@ - - -Function Index - - - - - - - - - -
Function Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
S
 setAttribute
 setCellStyleFlags, mxUtils
 setCellStyles
 setCollapsed
 setConnectable, mxCell
 setEdge, mxCell
 setGeometry
 setGraphBounds, mxGraphView
 setId, mxCell
 setImage, mxGdCanvas
 setImageBundles, mxGraph
 setParent, mxCell
 setRect, mxRectangle
 setRoot, mxGraphModel
 setScale, mxGraphView
 setStyle
 setStyleFlag, mxUtils
 setTerminal
 setTerminalPoint, mxGeometry
 setTerminals, mxGraphModel
 setTranslate, mxGraphView
 setValue
 setVertex, mxCell
 setVisible
 stackTrace, mxUtils
 startElement, mxGraphViewImageReader
 styles, mxStylesheet
T
 toRadians, mxUtils
 transformControlPoint, mxGraphView
 translate, mxGeometry
 translatePoints, mxUtils
U
 updateBoundingBox, mxGraphView
 updateCellState, mxGraphView
 updateEdgeBounds, mxGraphView
 updateEdgeParent, mxGraphModel
 updateEdgeParents, mxGraphModel
 updateEdgeState, mxGraphView
 updateFixedTerminalPoint, mxGraphView
 updateFixedTerminalPoints, mxGraphView
 updateFloatingTerminalPoint, mxGraphView
 updateFloatingTerminalPoints, mxGraphView
 updateLabelBounds, mxGraphView
 updatePoints, mxGraphView
 updateVertexLabelOffset, mxGraphView
 updateVertexState, mxGraphView
V
 validate, mxGraphView
 validateCell, mxGraphView
 validateCellStates, mxGraphView
- -
function setAttribute($key,
$value)
Sets the specified attribute on the user object if it is an XML node.
function setAttribute($node,
$attribute,
$value)
Sets the attribute on the specified node to value.
static function setCellStyleFlags($model,
$cells,
$key,
$flag,
$value)
Sets or toggles the flag bit for the given key in the cell’s styles.
function setCellStyles($key,
$value,
$cells)
Sets the key to value in the styles of the given cells.
static function setCellStyles($model,
$cells,
$key,
$value)
Assigns the value for the given key in the styles of the given cells, or removes the key from the styles if the value is null.
function setCollapsed($collapsed)
Sets the collapsed state.
function setCollapsed($cell,
$isCollapsed)
Sets the collapsed state of the given mxCell using mxCollapseChange and adds the change to the current transaction.
function setConnectable($connectable)
Sets the connectable state.
function setEdge($edge)
Specifies if the cell is an edge.
function setGeometry($geometry)
Sets the mxGeometry to be used as the geometry.
function setGeometry($cell,
$geometry)
Sets the mxGeometry of the given mxCell.
function setGraphBounds($value)
Sets graphBounds.
function setId($id)
Sets the Id of the cell to the given string.
function setImage($img)
Sets the image that represents the canvas.
function setImageBundles($value)
Sets the imageBundles.
function setParent($parent)
Sets the parent cell.
function setRect($x,
$y,
$width,
$height)
Sets this rectangle to the specified values.
function setScale($scale)
Sets the scale, revalidates the view and fires a scale event.
function setStyle($style)
Sets the string to be used as the style.
function setStyle($cell,
$style)
Sets the style of the given mxCell using mxStyleChange and adds the change to the current transaction.
static function setStyle($style,
$key,
$value)
Adds or removes the given key, value pair to the style and returns the new style.
static function setStyleFlag($style,
$key,
$flag,
$value)
Sets or removes the given key from the specified style and returns the new style.
function setTerminal($terminal,
$source)
Sets the source or target terminal and returns the new terminal.
function setTerminal($edge,
$terminal,
$source)
Sets the source or target terminal of the given mxCell using mxTerminalChange and adds the change to the current transaction.
function setTerminalPoint($point,
$isSource)
Sets the sourcePoint or targetPoint to the given mxPoint and returns the new point.
function setTerminals($edge,
$source,
$target)
Sets the source and target mxCell of the given mxCell in a single transaction using setTerminal for each end of the edge.
function setTranslate($translate)
Sets the translation, revalidates the view and fires a translate event.
function setValue($value)
Sets the user object of the cell.
function setValue($cell,
$value)
Sets the user object of then given mxCell using mxValueChange and adds the change to the current transaction.
function setVertex($vertex)
Specifies if the cell is a vertex.
function setVisible($visible)
Specifies if the cell is visible.
function setVisible($cell,
$visible)
Sets the visible state of the given mxCell using mxVisibleChange and adds the change to the current transaction.
static function stackTrace()
Prints a simple stack trace in the error log.
function startElement($parser,
$name,
$attrs)
Invoked by the SAX parser when an element starts.
var $styles = array()
Maps from names to styles.
- - - -
static function toRadians($deg)
Converts the given degree to radians.
function transformControlPoint($state,
$pt)
Transforms the given control point to an absolute point.
function translate($dx,
$dy)
Translates the geometry by the specified amount.
static function translatePoints($pts,
$dx,
$dy)
Creates a new list of new points obtained by translating the points in the given list by the given vector.
- - - -
function updateBoundingBox($state)
Updates the bounding box in the given cell state.
function updateCellState($state,
$source,
$target)
Updates the given mxCellState.
function updateEdgeBounds($state)
Updates the bounds of the specified state based on the absolute points in the state.
function updateEdgeParent($edge,
$root)
Inner callback to update the parent of the specified mxCell to the nearest-common-ancestor of its two terminals.
function updateEdgeParents($cell,  
$root =  null)
Updates the parent for all edges that are connected to cell or one of its descendants using updateEdgeParent.
function updateEdgeState($state,
$geo,
$source,
$target)
Validates the given cell state.
function updateFixedTerminalPoint($edge,
$terminal,
$source,
$constraint)
Sets the fixed source or target terminal point on the given edge.
function updateFixedTerminalPoints($edge,
$source,
$target)
Sets the initial absolute terminal points in the given state before the edge style is computed.
function updateFloatingTerminalPoint($edge,
$start,
$end,
$source)
Updates the absolute terminal point in the given state for the given start and end state, where start is the source if source is true.
function updateFloatingTerminalPoints($state,
$source,
$target)
Updates the terminal points in the given state after the edge style was computed for the edge.
function updateLabelBounds($state)
Updates the label bounds in the given state.
function updatePoints($edge,
$points,
$source,
$target)
Updates the absolute points in the given state using the specified array of mxPoints as the relative points.
function updateVertexLabelOffset($state)
Updates the absoluteOffset of the given vertex cell state.
function updateVertexState($state,
$geo)
Validates the given cell state.
- - - -
function validate($cell =  null)
Calls validateCell and validateCellState and updates the graphBounds using getBoundingBox.
function validateCell($cell,  
$visible =  true)
Recursively creates the cell state for the given cell if visible is true and the given cell is visible.
Validates and repaints the mxCellState for the given mxCell.
- -
- - - - - - - - - - - - \ No newline at end of file diff --git a/docs/php-api/index/Functions8.html b/docs/php-api/index/Functions8.html deleted file mode 100644 index 72332a655..000000000 --- a/docs/php-api/index/Functions8.html +++ /dev/null @@ -1,34 +0,0 @@ - - -Function Index - - - - - - - - - -
Function Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
W
 warn, mxLog
 write, mxLog
 writeAttribute, mxObjectCodec
 writeComplexAttribute, mxObjectCodec
 writeln, mxLog
 writePrimitiveAttribute, mxObjectCodec
- -
static function warn($text)
Logs a warn trace.
static function write($text)
Writes a line to the log.
function writeAttribute($enc,
$obj,
$attr,
$value,
$node)
Writes the given value into node using writePrimitiveAttribute or writeComplexAttribute depending on the type of the value.
function writeComplexAttribute($enc,
$obj,
$attr,
$value,
$node)
Writes the given value as a child node of the given node.
static function writeln($text)
Writes a line with a linefeed to the log.
function writePrimitiveAttribute($enc,
$obj,
$attr,
$value,
$node)
Writes the given value as an attribute of the given node.
- -
- - - - - - - - - - - - \ No newline at end of file diff --git a/docs/php-api/index/General.html b/docs/php-api/index/General.html deleted file mode 100644 index 200b04763..000000000 --- a/docs/php-api/index/General.html +++ /dev/null @@ -1,38 +0,0 @@ - - -Index - - - - - - - - - -
Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
A
 absoluteOffset, mxCellState
 absolutePoints, mxCellState
 ACTIVE_REGION, mxConstants
 add
 addAlias, mxCodecRegistry
 addBundle, mxGraph
 addElement, mxCodec
 addListener, mxEventSource
 addLogfile, mxLog
 addObjectValue, mxObjectCodec
 addStylename, mxUtils
 afterDecode, mxObjectCodec
 afterEncode, mxObjectCodec
 aliases, mxCodecRegistry
 ALIGN_BOTTOM, mxConstants
 ALIGN_CENTER, mxConstants
 ALIGN_LEFT, mxConstants
 ALIGN_MIDDLE, mxConstants
 ALIGN_RIGHT, mxConstants
 ALIGN_TOP, mxConstants
 alternateBounds, mxGeometry
 antialias
 API Specification
 apply
 ARROW_BLOCK, mxConstants
 ARROW_CLASSIC, mxConstants
 ARROW_DIAMOND, mxConstants
 ARROW_OPEN, mxConstants
 ARROW_OVAL, mxConstants
 ARROW_SIZE, mxConstants
 ARROW_SPACING, mxConstants
 ARROW_WIDTH, mxConstants
B
 background, mxGraphViewImageReader
 beforeDecode, mxObjectCodec
 beforeEncode, mxObjectCodec
 beginUpdate, mxGraphModel
 border, mxGraphViewImageReader
 boundingBox, mxCellState
- -
var $absoluteOffset
mxPoint that holds the absolute offset.
var $absolutePoints
Holds an array of mxPoints that represent the absolute points of an edge.
public static $ACTIVE_REGION
Defines the portion of the cell which is to be used as a connectable region.
function add($parent,  
$child,  
$index =  null)
Adds the specified child to the parent at the given index using mxChildChange and adds the change to the current transaction.
function add($rect)
Adds the given rectangle to this rectangle.
static function addAlias($classname,
$codecname)
Adds an alias for mapping a classname to a codecname.
Adds the specified mxImageBundle.
function addElement($node)
Adds the given element to elements if it has an ID.
function addListener($name,
$listener)
Adds a listener for the given event name.
static function addLogfile($filename)
Adds a file for logging.
function addObjectValue(&$obj,
$fieldname,
$value,
$template)
Sets the decoded child node as a value of the given object.
static function addStylename($style,
$stylename)
Adds the specified stylename to the given style if it does not already contain the stylename.
function afterDecode($dec,
$node,
&$obj)
Hook for subclassers to post-process the object after decoding.
function afterEncode($enc,
$obj,
$node)
Hook for subclassers to post-process the node for the given object after encoding and return the post-processed node.
public static $aliases
Maps from classnames to codecnames.
public static $ALIGN_BOTTOM
public static $ALIGN_CENTER
public static $ALIGN_LEFT
public static $ALIGN_MIDDLE
public static $ALIGN_RIGHT
public static $ALIGN_TOP
var $alternateBounds
Stores alternate values for x, y, width and height in a rectangle.
Specifies if image aspect should be preserved in drawImage.
var $antialias
Specifies if antialiasing should be enabled.
This PHP library is divided into 4 packages.
public function apply($state,
$source,
$target,
$points,
&$result)
Implements an edge style function.
public function apply($bounds,
$vertex,
$next,
$orthogonal)
Implements a perimeter function.
public static $ARROW_BLOCK
public static $ARROW_CLASSIC
public static $ARROW_DIAMOND
public static $ARROW_OPEN
public static $ARROW_OVAL
public static $ARROW_SIZE
Defines the size of the arrowhead in the arrow shape.
public static $ARROW_SPACING
Defines the spacing between the arrow shape and its terminals.
public static $ARROW_WIDTH
Defines the width of the arrow shape.
- - - -
var $background
Holds the background color.
function beforeDecode($dec,
$node,
&$obj)
Hook for subclassers to pre-process the node for the specified object and return the node to be used for further processing by decode.
function beforeEncode($enc,
$obj,
$node)
Hook for subclassers to pre-process the object before encoding.
function beginUpdate()
Increments the updateLevel by one.
var $border
Holds the border size.
var $boundingBox
Holds the largest rectangle which contains all rendering for this cell.
- -
- - - - - - - - - - - - \ No newline at end of file diff --git a/docs/php-api/index/General10.html b/docs/php-api/index/General10.html deleted file mode 100644 index adbc50fcd..000000000 --- a/docs/php-api/index/General10.html +++ /dev/null @@ -1,54 +0,0 @@ - - -Index - - - - - - - - - -
Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
T
 tab, mxLog
 target, mxCell
 targetPoint, mxGeometry
 template, mxObjectCodec
 terminalDistance, mxCellState
 TopToBottom, mxEdgeStyle
 toRadians, mxUtils
 transformControlPoint, mxGraphView
 translate
 TRANSLATE, mxEvent
 TRANSLATE_CONTROL_POINTS, mxGeometry
 translatePoints, mxUtils
 TrianglePerimeter, mxPerimeter
 TTF_ENABLED, mxConstants
 TTF_SIZEFACTOR, mxConstants
U
 updateBoundingBox, mxGraphView
 updateCellState, mxGraphView
 updateEdgeBounds, mxGraphView
 updateEdgeParent, mxGraphModel
 updateEdgeParents, mxGraphModel
 updateEdgeState, mxGraphView
 updateFixedTerminalPoint, mxGraphView
 updateFixedTerminalPoints, mxGraphView
 updateFloatingTerminalPoint, mxGraphView
 updateFloatingTerminalPoints, mxGraphView
 updateLabelBounds, mxGraphView
 updateLevel, mxGraphModel
 updatePoints, mxGraphView
 updateVertexLabelOffset, mxGraphView
 updateVertexState, mxGraphView
V
 validate, mxGraphView
 validateCell, mxGraphView
 validateCellStates, mxGraphView
 value, mxCell
 values, mxStyleRegistry
 Variables
 vertex, mxCell
 view
 visible, mxCell
W
 W3C_DEFAULT_FONTFAMILY, mxConstants
 W3C_SHADOWCOLOR, mxConstants
 warn, mxLog
 width, mxRectangle
 write, mxLog
 writeAttribute, mxObjectCodec
 writeComplexAttribute, mxObjectCodec
 writeln, mxLog
 writePrimitiveAttribute, mxObjectCodec
X
 x, mxPoint
Y
 y, mxPoint
- -
public static $tab
Default is true.
var $target
Reference to the target terminal.
var $targetPoint
Defines the target point of the edge.
var $template
Holds the template object associated with this codec.
var $terminalDistance
Caches the distance between the end points for an edge.
public static $TopToBottom
Provides a top to bottom connector.
static function toRadians($deg)
Converts the given degree to radians.
function transformControlPoint($state,
$pt)
Transforms the given control point to an absolute point.
function translate($dx,
$dy)
Translates the geometry by the specified amount.
var $translate
Holds the current translate.
public static $TRANSLATE
Defines the name of the translate event.
public static $TRANSLATE_CONTROL_POINTS
Global switch to translate the points in translate.
static function translatePoints($pts,
$dx,
$dy)
Creates a new list of new points obtained by translating the points in the given list by the given vector.
public static $TrianglePerimeter
Provides a triangle perimeter.
public static $TTF_ENABLED
Whether TrueType fonts should be enabled in the mxGdCanvas by default.
public static $TTF_SIZEFACTOR
Defines the factor which wich the font sizes are to be multiplied when used in truetype fonts.
- - - -
function updateBoundingBox($state)
Updates the bounding box in the given cell state.
function updateCellState($state,
$source,
$target)
Updates the given mxCellState.
function updateEdgeBounds($state)
Updates the bounds of the specified state based on the absolute points in the state.
function updateEdgeParent($edge,
$root)
Inner callback to update the parent of the specified mxCell to the nearest-common-ancestor of its two terminals.
function updateEdgeParents($cell,  
$root =  null)
Updates the parent for all edges that are connected to cell or one of its descendants using updateEdgeParent.
function updateEdgeState($state,
$geo,
$source,
$target)
Validates the given cell state.
function updateFixedTerminalPoint($edge,
$terminal,
$source,
$constraint)
Sets the fixed source or target terminal point on the given edge.
function updateFixedTerminalPoints($edge,
$source,
$target)
Sets the initial absolute terminal points in the given state before the edge style is computed.
function updateFloatingTerminalPoint($edge,
$start,
$end,
$source)
Updates the absolute terminal point in the given state for the given start and end state, where start is the source if source is true.
function updateFloatingTerminalPoints($state,
$source,
$target)
Updates the terminal points in the given state after the edge style was computed for the edge.
function updateLabelBounds($state)
Updates the label bounds in the given state.
var $updateLevel
Counter for the depth of nested transactions.
function updatePoints($edge,
$points,
$source,
$target)
Updates the absolute points in the given state using the specified array of mxPoints as the relative points.
function updateVertexLabelOffset($state)
Updates the absoluteOffset of the given vertex cell state.
function updateVertexState($state,
$geo)
Validates the given cell state.
- - - -
function validate($cell =  null)
Calls validateCell and validateCellState and updates the graphBounds using getBoundingBox.
function validateCell($cell,  
$visible =  true)
Recursively creates the cell state for the given cell if visible is true and the given cell is visible.
Validates and repaints the mxCellState for the given mxCell.
var $value
Holds the user object.
public static $values
Maps from strings to objects.
var $vertex
Specifies whether the cell is a vertex.
var $view
Reference to the enclosing mxGraphView.
var $view
Holds the mxGraphView.
var $visible
Specifies whether the cell is visible.
- - - -
public static $W3C_DEFAULT_FONTFAMILY
Defines the default family for HTML markup.
public static $W3C_SHADOWCOLOR
Defines the color to be used to draw shadows in DOM documents.
static function warn($text)
Logs a warn trace.
var $width
Holds the width of the rectangle.
static function write($text)
Writes a line to the log.
function writeAttribute($enc,
$obj,
$attr,
$value,
$node)
Writes the given value into node using writePrimitiveAttribute or writeComplexAttribute depending on the type of the value.
function writeComplexAttribute($enc,
$obj,
$attr,
$value,
$node)
Writes the given value as a child node of the given node.
static function writeln($text)
Writes a line with a linefeed to the log.
function writePrimitiveAttribute($enc,
$obj,
$attr,
$value,
$node)
Writes the given value as an attribute of the given node.
- - - -
var $x
Holds the x-coordinate of the point.
- - - -
var $y
Holds the y-coordinate of the point.
- -
- - - - - - - - - - - - \ No newline at end of file diff --git a/docs/php-api/index/General2.html b/docs/php-api/index/General2.html deleted file mode 100644 index a86e7b3ed..000000000 --- a/docs/php-api/index/General2.html +++ /dev/null @@ -1,34 +0,0 @@ - - -Index - - - - - - - - - -
Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
C
 canvas, mxGraphViewImageReader
 cell, mxCellState
 cellAdded, mxGraphModel
 cellCloned, mxGraphModel
 cellRemoved, mxGraphModel
 cells, mxGraphModel
 children, mxCell
 clear, mxGraphModel
 cloneCell, mxGraphModel
 cloneCellImpl, mxGraphModel
 cloneCells, mxGraphModel
 cloneTemplate, mxObjectCodec
 close, mxLog
 codecs
 collapsed, mxCell
 connectable, mxCell
 consume, mxEventObject
 consumed, mxEventObject
 contains
 convert
 convertFile
 convertValueFromXml, mxObjectCodec
 convertValueToString, mxGraph
 convertValueToXml, mxObjectCodec
 copy
 copyValue, mxCell
 create, mxCellPath
 createCanvas
 createDefaultEdgeStyle, mxStylesheet
 createDefaultVertexStyle, mxStylesheet
 createEdge, mxGraph
 createGraphView, mxGraph
 createId, mxGraphModel
 createIds, mxGraphModel
 createImage, mxGraph
 createRoot, mxGraphModel
 createState, mxGraphView
 createStylesheet, mxGraph
 createVertex, mxGraph
 createXmlDocument, mxUtils
 current, mxLog
- -
var $canvas
Holds the canvas.
var $cell
Reference to the mxCell that is represented by this state.
function cellAdded($cell)
Inner callback to update cells when a cell has been added.
function cellCloned($cell)
Hook for cloning the cell.
function cellRemoved($cell)
Inner callback to update cells when a cell has been removed.
var $cells
Maps from Ids to cells.
var $children
Holds the child cells.
function clear()
Sets a new root using createRoot.
function cloneCell($cell)
Returns a deep clone of the given mxCell (including the children) which is created using cloneCells.
function cloneCellImpl($cell,
$mapping,
$includeChildren)
Inner helper method for cloning cells recursively.
function cloneCells($cells,  
$includeChildren = true)
Returns an array of clones for the given array of mxCells.
function cloneTemplate()
Creates a new instance of the template for this codec.
static function close()
Closes all open logfiles.
Maps from constructor names to codecs.
public static $codecs
Maps from constructor names to codecs.
var $collapsed
Specifies whether the cell is collapsed.
var $connectable
Specifies whether the cell is connectable.
function consume()
Consumes the event.
var $consumed
Holds the consumed state of the event.
function contains($cell)
Returns true if the model contains the given mxCell.
static function contains($state,
$x,
$y)
Returns true if the specified point (x, y) is contained in the given rectangle.
static function convert($string,  
$background =  null)
Creates the HTML markup for the given display XML string.
static function convert($string,  
$background =  null)
Creates the image for the given display XML string.
static function convertFile($filename,  
$background =  null)
Creates the HTML markup for the given display XML file.
static function convertFile($filename,  
$background =  null)
Creates the image for the given display XML file.
function convertValueFromXml($value)
Returns the given value.
function convertValueToString($cell)
Returns the textual representation for the given cell.
function convertValueToXml($value)
Returns the given value without applying a conversion.
function copy()
Returns a clone of the cell.
function copy()
Returns a copy of this state where all members are deeply cloned except the view and cell references, which are copied with no cloning to the new instance.
function copy()
Returns a copy of this mxGeometry.
function copy()
Returns a copy of this mxPoint.
function copy()
Returns a copy of this mxRectangle.
function copyValue()
Returns a clone of the cell’s user object.
static function create($cell)
Creates the cell path for the given cell.
function createCanvas($attrs)
Returns the canvas to be used for rendering.
function createCanvas($attrs)
Returns the canvas to be used for rendering.
function createDefaultEdgeStyle()
Creates and returns the default edge style.
function createDefaultVertexStyle()
Creates and returns the default vertex style.
function createEdge($parent,  
$id =  null,
$value =  null,
$source =  null,
$target =  null,
$style =  null)
Creates the edge to be used in insertEdge.
function createGraphView()
Creates a new mxGraphView to be used in this graph.
function createId($cell)
Hook method to create an Id for the specified cell.
var $createIds
Specifies if the model should automatically create Ids for new cells.
function createImage($clip =  null,
$background =  null)
function createRoot()
Creates a new root cell with a default layer (child 0).
function createState($cell)
Creates the state for the specified cell.
function createStylesheet()
Creates a new mxStylesheet to be used in this graph.
function createVertex($parent,  
$id =  null,
$value =  null,
$x =  0,
$y =  0,
$width =  1,
$height =  1,
$style =  null,
$relative =  false)
Creates the vertex to be used in insertVertex.
static function createXmlDocument()
Returns a new, empty XML document.
public static $current
Default is true.
- -
- - - - - - - - - - - - \ No newline at end of file diff --git a/docs/php-api/index/General3.html b/docs/php-api/index/General3.html deleted file mode 100644 index 216c88f08..000000000 --- a/docs/php-api/index/General3.html +++ /dev/null @@ -1,34 +0,0 @@ - - -Index - - - - - - - - - -
Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
D
 debug, mxLog
 decode
 decodeAttribute, mxObjectCodec
 decodeAttributes, mxObjectCodec
 decodeCell, mxCodec
 decodeChild, mxObjectCodec
 decodeChildren, mxObjectCodec
 decodeNode, mxObjectCodec
 DEFAULT_FONTFAMILY, mxConstants
 DEFAULT_FONTSIZE, mxConstants
 DEFAULT_IMAGESIZE, mxConstants
 DEFAULT_LINESPACING, mxConstants
 DEFAULT_MARKERSIZE, mxConstants
 DEFAULT_STARTSIZE, mxConstants
 defaultLoopStyle, mxGraph
 DEG_PER_RAD, mxConstants
 destroy
 DIRECTION_EAST, mxConstants
 DIRECTION_NORTH, mxConstants
 DIRECTION_SOUTH, mxConstants
 DIRECTION_WEST, mxConstants
 document, mxCodec
 drawActor, mxGdCanvas
 drawCell, mxGdCanvas
 drawCloud, mxGdCanvas
 drawCylinder, mxGdCanvas
 drawFixedTextLine, mxGdCanvas
 drawGraph
 drawHexagon, mxGdCanvas
 drawImage
 drawLabel, mxGdCanvas
 drawLine
 drawMarker, mxGdCanvas
 drawOval, mxGdCanvas
 drawPolygon, mxGdCanvas
 drawRect, mxGdCanvas
 drawRhombus, mxGdCanvas
 drawShape
 drawString, mxGdCanvas
 drawText
 drawTriangle, mxGdCanvas
 drawTtfText, mxGdCanvas
 drawTtxTextLine, mxGdCanvas
- -
static function debug($text)
Logs a debug trace.
function decode($node,  
$into =  null)
Decodes the given XML node.
function decode($dec,  
$node,  
&$into =  null)
Parses the given node into the object or returns a new object representing the given node.
function decodeAttribute($dec,
$attr,
&$obj)
Reads the given attribute into the specified object.
function decodeAttributes($dec,
$node,
&$obj)
Decodes all attributes of the given node using decodeAttribute.
function decodeCell($node,  
$restoreStructures =  true)
Decodes cells that have been encoded using inversion, ie.
function decodeChild($dec,
$child,
&$obj)
Reads the specified child into the given object.
function decodeChildren($dec,
$node,
&$obj)
Decodec all children of the given node using decodeChild.
function decodeNode($dec,
$node,
&$obj)
Calls decodeAttributes and decodeChildren for the given node.
public static $DEFAULT_FONTFAMILY
Defines the default family for all truetype fonts.
public static $DEFAULT_FONTSIZE
Defines the default size (in px).
public static $DEFAULT_IMAGESIZE
Defines the default width and height for images used in the label shape.
public static $DEFAULT_LINESPACING
Defines the default linespacing.
public static $DEFAULT_MARKERSIZE
Defines the default size for all markers.
public static $DEFAULT_STARTSIZE
Defines the default start size for swimlanes.
var $defaultLoopStyle
mxEdgeStyle to be used for loops.
public static $DEG_PER_RAD
Defines the number of degrees per radiant.
function destroy()
Destroys all allocated resources.
function destroy()
Destroy all allocated resources for this reader.
function destroy()
Destroy all allocated resources.
public static $DIRECTION_EAST
public static $DIRECTION_NORTH
public static $DIRECTION_SOUTH
public static $DIRECTION_WEST
var $document
The owner document of the codec.
function drawActor($x,  
$y,  
$w,  
$h,  
$fill =  null,
$stroke =  null,
$shadow = false)
Draws then given cloud.
function drawCell($state)
Draws the given cell state.
function drawCloud($x,  
$y,  
$w,  
$h,  
$fill =  null,
$stroke =  null,
$shadow = false)
Draws then given cloud.
function drawCylinder($x,  
$y,  
$w,  
$h,  
$fill =  null,
$stroke =  null,
$shadow =  false)
Draws then given cylinder.
function drawFixedTextLine($text,  
$font,  
$left,  
$top,  
$color,  
$horizontal =  true)
Draws the given fixed text line.
public static function drawGraph($graph,  
$clip =  null,
$bg =  null)
Draws the given graph using this canvas.
function drawGraph($canvas)
Draws the given cell onto the specified canvas.
public static function drawGraph($graph,  
$clip =  null,
$bg =  null)
Draws the given graph using this canvas.
function drawHexagon($x,  
$y,  
$w,  
$h,  
$fill =  null,
$stroke =  null,
$shadow =  false,
$direction =  null)
Draws then given haxagon.
function drawImage($x,  
$y,  
$w,  
$h,  
$image,  
$aspect =  true,
$flipH =  false,
$flipV =  false)
Draws a given image.
function drawImage($x,  
$y,  
$w,  
$h,  
$image,  
$aspect =  true,
$flipH =  false,
$flipV =  false)
Draws the specified image.
function drawLabel($text,  
$state,  
$html =  false)
Draws the given label.
function drawLine($x0,  
$y0,  
$x1,  
$y1,  
$stroke =  null,
$dashed =  false)
Draws the given line.
function drawLine($x0,  
$y0,  
$x1,  
$y1,  
$stroke =  null,
$dashed =  false)
Draws the specified line.
function drawMarker($type,
$p0,
$pe,
$size,
$stroke)
Draws the specified marker.
function drawOval($x,  
$y,  
$w,  
$h,  
$fill =  null,
$stroke =  null,
$shadow =  false)
Draws then given ellipse.
function drawPolygon($points,  
$fill =  null,
$stroke =  null,
$shadow =  false)
Draws the given polygon.
function drawRect($x,  
$y,  
$w,  
$h,  
$fill =  null,
$stroke =  null,
$shadow =  false,
$rounded =  false,
$dashed =  false)
Draws then given rectangle.
function drawRhombus($x,  
$y,  
$w,  
$h,  
$fill =  null,
$stroke =  null,
$shadow =  false)
Draws then given rhombus.
function drawShape($x,
$y,
$w,
$h,
$style)
Draws the given shape.
function drawShape($shape,  
$x,  
$y,  
$w,  
$h,  
$stroke = null,
$fill = null)
Draws the specified shape.
function drawText($string,
$x,
$y,
$w,
$h,
$style)
function drawText($string,
$x,
$y,
$w,
$h,
$style)
Draws the specified text.
function drawTriangle($x,  
$y,  
$w,  
$h,  
$fill =  null,
$stroke =  null,
$shadow =  false,
$direction =  null)
Draws then given triangle.
function drawTtfText($string,
$x,
$y,
$w,
$h,
$style)
Draws a single line of the given true type font text.
- -
- - - - - - - - - - - - \ No newline at end of file diff --git a/docs/php-api/index/General4.html b/docs/php-api/index/General4.html deleted file mode 100644 index c3c6853e7..000000000 --- a/docs/php-api/index/General4.html +++ /dev/null @@ -1,38 +0,0 @@ - - -Index - - - - - - - - - -
Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
E
 edge, mxCell
 edges, mxCell
 EDGESTYLE_ENTITY_RELATION, mxConstants
 EDGESTYLE_LOOP, mxConstants
 EDGESTYLE_SIDETOSIDE, mxConstants
 EDGESTYLE_TOPTOBOTTOM, mxConstants
 ELBOW_HORIZONTAL, mxConstants
 ELBOW_VERTICAL, mxConstants
 ElbowConnector, mxEdgeStyle
 elements, mxCodec
 EllipsePerimeter, mxPerimeter
 EMPTY_POINT, mxGraphView
 enableTtf, mxGdCanvas
 encode
 encodeCell, mxCodec
 encodeDefaults, mxCodec
 encodeImage, mxUtils
 encodeObject, mxObjectCodec
 encodeValue, mxObjectCodec
 endElement, mxGraphViewImageReader
 endUpdate, mxGraphModel
 enter, mxLog
 ENTITY_SEGMENT, mxConstants
 EntityRelation, mxEdgeStyle
 equals
 error, mxLog
 evaluate, mxUtils
 eventListeners, mxEventSource
 exclude, mxObjectCodec
F
 findNode, mxUtils
 findTreeRoots, mxGraph
 fine, mxLog
 fireEvent, mxEventSource
 flipImage, mxUtils
 FONT_BOLD, mxConstants
 FONT_ITALIC, mxConstants
 FONT_UNDERLINE, mxConstants
 Functions
- -
var $edge
Specifies whether the cell is an edge.
var $edges
Holds the edges.
public static $EDGESTYLE_ENTITY_RELATION
Name of the entity relation edge style.
public static $EDGESTYLE_LOOP
Name of the loop edge style.
public static $EDGESTYLE_SIDETOSIDE
Name of the side to side edge style.
public static $EDGESTYLE_TOPTOBOTTOM
Name of the top to bottom edge style.
public static $ELBOW_HORIZONTAL
public static $ELBOW_VERTICAL
public static $ElbowConnector
Provides an elbow connector.
var $elements
Maps from IDs to elements.
public static $EllipsePerimeter
Provides an elliptic perimeter.
var $EMPTY_POINT
An empty mxPoint instance.
var $enableTtf
Specifies if truetype fonts are enabled if available.
function encode($obj)
Encodes the specified object and returns the resulting XML node.
function encode($enc,
$obj)
Encodes the specified object and returns a node representing then given object.
function encodeCell($cell,  
$node,  
$includeChildren = true)
Encoding of cell hierarchies is built-into the core, but is a higher-level function that needs to be explicitely used by the respective object encoders (eg.
var $encodeDefaults
Specifies if default values should be encoded.
static function encodeImage($image,  
$format = null)
Encodes the given image using the GD image encoding routines.
function encodeObject($enc,
$obj,
$node)
Encodes the value of each member in then given obj into the given node using encodeValue.
function encodeValue($enc,
$obj,
$name,
$value,
$node)
Converts the given value according to the mappings and id-refs in this codec and uses writeAttribute to write the attribute into the given node.
function endElement($parser,
$name)
Invoked by the SAX parser when an element ends.
function endUpdate()
Decrements the updateLevel by one and fires a notification event if the updateLevel reaches 0.
static function enter($method,  
$text = "")
Logs a method entry.
public static $ENTITY_SEGMENT
Defines the length of the horizontal segment of an Entity Relation.
public static $EntityRelation
Provides an entity relation style for edges (as used in database schema diagrams).
function equals($obj)
Returns true if the given object equals this point.
function equals($obj)
Returns true if the given object equals this rectangle.
static function error($text)
Logs an error trace.
static function evaluate($expression)
Evaluates an expression to a class member.
var $eventListeners
Holds the registered listeners.
var $exclude
Array containing the variable names that should be ignored by the codec.
- - - -
static function findNode($node,
$attr,
$value)
Returns the first node where attr equals value.
function findTreeRoots($parent,  
$isolate =  false,
$invert =  false)
Returns all children in the given parent which do not have incoming edges.
static function fine($text)
Logs a fine trace.
function fireEvent($event)
Fires the event for the specified name.
static function flipImage($img,
$flipH,
$flipV)
Flips the given image horizontally and/or vertically and returns a new image instance.
public static $FONT_BOLD
public static $FONT_ITALIC
public static $FONT_UNDERLINE
- -
- - - - - - - - - - - - \ No newline at end of file diff --git a/docs/php-api/index/General5.html b/docs/php-api/index/General5.html deleted file mode 100644 index 26f5406c1..000000000 --- a/docs/php-api/index/General5.html +++ /dev/null @@ -1,34 +0,0 @@ - - -Index - - - - - - - - - -
Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
G
 geometry, mxCell
 getAttribute, mxCell
 getAttributeName, mxObjectCodec
 getBoundingBox
 getBounds, mxGraphView
 getBoundsForCells, mxGraph
 getCellBounds, mxGraph
 getCellGeometry, mxGraph
 getCells, mxGraphModel
 getCellStyle
 getCenterX, mxRectangle
 getCenterY, mxRectangle
 getChildAt
 getChildCount
 getChildOffsetForCell, mxGraph
 getCodec, mxCodecRegistry
 getColor, mxGdCanvas
 getConnectionConstraint, mxGraph
 getConnectionPoint, mxGraph
 getDefaultEdgeStyle, mxStylesheet
 getDefaultParent, mxGraph
 getDefaultVertexStyle, mxStylesheet
 getDirectedEdgeCount, mxGraphModel
 getEdgeAt
 getEdgeCount
 getEdgeIndex, mxCell
 getEdges, mxGraphModel
 getEdgeStyle, mxGraphView
 getElementById, mxCodec
 getFieldName, mxObjectCodec
 getFieldTemplate, mxObjectCodec
 getFixedFontSize
 getGeometry
 getGraphBounds
 getHashCode, mxGraphView
 getHtml, mxHtmlCanvas
 getId
 getImage
 getImageBundles, mxGraph
 getImageForStyle, mxGdCanvas
 getImageFromBundles, mxGraph
 getImages, mxImageBundle
 getIndex, mxCell
 getInstanceForName, mxCodecRegistry
 getLabel, mxGraph
 getLabelPaintBounds, mxUtils
 getLabelSize, mxUtils
 getModel, mxGraph
 getName
 getNearestCommonAncestor, mxGraphModel
 getNextPoint, mxGraphView
 getNumber, mxUtils
 getObject, mxCodec
 getOrigin, mxGraphModel
 getPaintBounds, mxGraph
 getParent
 getParentPath, mxCellPath
 getPerimeterBounds
 getPerimeterFunction, mxGraphView
 getPerimeterPoint, mxGraphView
 getPoint, mxGraphView
 getProperties, mxEventObject
 getProperty, mxEventObject
 getRoot, mxGraphModel
 getRotatedPoint, mxUtils
 getRoutingCenterX, mxGraphView
 getRoutingCenterY, mxGraphView
 getScaledLabelBounds, mxUtils
 getSizeForString, mxUtils
 getState, mxGraphView
 getStates, mxGraphView
 getStyle
 getStylename, mxUtils
 getStylenames, mxUtils
 getStylesheet, mxGraph
 getTerminal
 getTerminalPoint, mxGeometry
 getTerminalPort, mxGraphView
 getTrueTypeFont
 getTrueTypeFontSize
 getValue
 getView, mxGraph
 getVisibleTerminal, mxGraphView
 graph, mxGraphView
 GRAPH_MODEL_CHANGED, mxEvent
 graphBounds, mxGraphView
 graphModelChanged, mxGraph
 gridSize, mxGraph
 grow, mxRectangle
- -
var $geometry
Holds the mxGeometry.
function getAttribute($key,  
$defaultValue =  null)
Returns the specified attribute from the user object if it is an XML node.
function getAttributeName($fieldname)
Returns the attributename for the given fieldname.
function getBoundingBox($cell,  
$includeEdges =  false,
$includeDescendants =  false)
Returns the bounding box of the given cell including all connected edges if includeEdge is true.
function getBoundingBox($state,  
$recurse =  true)
Returns the bounding box of the shape and the label for the given mxCellState and its children if recurse is true.
static function getBoundingBox($rect,
$rotation)
Returns the bounding box for the rotated rectangle.
function getBounds($cells,  
$boundingBox =  false)
Returns the bounding for for an array of cells or null, if no cells are specified.
function getBoundsForCells($cells,  
$includeEdges =  false,
$includeDescendants =  false,
$boundingBox =  false)
Returns the bounds for the given cells.
function getCellBounds($cell,  
$includeEdges =  false,
$includeDescendants =  false,
$boundingBox =  false)
Returns the bounds of the given cell including all connected edges if includeEdge is true.
function getCellGeometry($cell)
Returns the mxGeometry for the given mxCell.
function getCells()
Returns the internal lookup table that is used to map from Ids to cells.
function getCellStyle($cell)
function getCellStyle($name,  
$defaultStyle =  null)
Returns the cell style for the specified cell or the given defaultStyle if no style can be found for the given stylename.
function getCenterX()
Returns the x-coordinate of the center point.
function getCenterY()
Returns the y-coordinate of the center point.
function getChildAt($index)
Returns the child at the specified index.
function getChildAt($cell,
$index)
Returns the child of the given mxCell at the given index.
function getChildCount()
Returns the number of child cells.
function getChildCount($cell)
Returns the number of children in the given cell.
function getChildOffsetForCell($cell)
Returns the offset to be used for the cells inside the given cell.
static function getCodec($name)
Returns a codec that handles objects that are constructed using the given ctor.
function getColor($hex,  
$default =  null)
Allocates the given color and returns a reference to it.
function getConnectionConstraint($edge,
$terminal,
$source)
Returns an mxConnectionConstraint that describes the given connection point.
function getConnectionPoint($vertex,
$constraint)
Returns the nearest point in the list of absolute points or the center of the opposite terminal.
function getDefaultEdgeStyle()
Sets the default style for edges.
function getDefaultParent()
Returns the first child child of mxGraphModel.root.
function getDefaultVertexStyle()
Returns the default style for vertices.
function getDirectedEdgeCount($cell,  
$outgoing,  
$ignoredEdge =  null)
Returns the number of incoming or outgoing edges, ignoring the given edge.
function getEdgeAt($index)
Returns the edge at the specified index in edges.
function getEdgeAt($cell,
$index)
Returns the edge of cell at the given index.
function getEdgeCount()
Returns the number of edges in the edge array.
function getEdgeCount($cell)
Returns the number of distinct edges connected to the given cell.
function getEdgeIndex($edge)
Returns the index of the specified edge in edges.
function getEdges($cell)
Returns all distinct edges connected to this cell as an array of mxCells.
function getEdgeStyle($edge,
$points,
$source,
$target)
Returns the edge style function to be used to render the given edge state.
function getElementById($id)
Returns the element with the given ID from document.
function getFieldName($attributename)
Returns the fieldname for the given attributename.
function getFieldTemplate(&$obj,
$fieldname,
$child)
Returns the template instance for the given field.
function getFixedFontSize($fontSize,  
$fontFamily,  
$fontStyle = null)
Returns the fixed font size for GD (1 t0 5) for the given font properties
static function getFixedFontSize($fontSize,  
$fontFamily,  
$fontStyle = null)
Returns the fixed font size for GD (1 t0 5) for the given font properties
function getGeometry()
Returns the mxGeometry that describes the geometry.
function getGeometry($cell)
Returns the mxGeometry of the given mxCell.
function getGraphBounds()
Returns the bounds of the visible graph.
function getGraphBounds()
Returns graphBounds.
function getHashCode($cell)
Returns a unique string that represents the given instance.
function getHtml()
Gets the HTML that represents the canvas.
function getId()
Returns the Id of the cell as a string.
function getId($obj)
Returns the ID of the specified object.
function getImage()
Returns an image that represents this canvas.
function getImage($key)
Returns the value for the given key.
function getImageBundles()
Returns the imageBundles.
function getImageForStyle($style)
Returns an image that represents this canvas.
function getImageFromBundles($key)
Searches all imageBundles for the specified key and returns the value for the first match or null if the key is not found.
function getImages()
Returns the images.
function getIndex($child)
Returns the index of the specified child in the child array.
static function getInstanceForName($name)
Creates and returns a new instance for the given class name.
function getLabel($cell)
Returns a string or DOM node that represents the label for the given cell.
static function getLabelPaintBounds($label,
$style,
$isHtml,
$offset,
$vertexBounds,
$scale)
Returns the paint bounds for the given label.
static function getLabelSize($label,
$style)
Returns the size of the given label.
function getModel()
Returns the mxGraphModel that contains the cells.
static function getName($obj)
Returns the codec name for the given object instance.
function getName()
Returns name.
function getName()
Creates a new instance of the template for this codec.
static function getName($value)
Returns the name for the given value.
function getNearestCommonAncestor($cell1,
$cell2)
Returns the nearest common ancestor for the specified cells.
function getNextPoint($edge,
$opposite,
$source)
Returns the nearest point in the list of absolute points or the center of the opposite terminal.
static function getNumber($dict,  
$key,  
$default = )
Returns the value for key in dictionary or 0 if no value is defined for the key.
function getObject($id)
Returns the decoded object for the element with the specified ID in document.
function getOrigin($cell)
Returns the absolute, cummulated origin for the children inside the given parent as an mxPoint.
function getPaintBounds($cells)
Returns the bounding box of the given cells and their descendants.
function getParent()
Returns the cell’s parent.
function getParent($cell)
Returns the parent of the given cell.
static function getParentPath($path)
Returns the cell for the specified cell path using the given root as the root of the path.
function getPerimeterBounds($border =  0)
Returns the mxRectangle that should be used as the perimeter of the cell.
function getPerimeterBounds($terminal,  
$border =  0)
Returns the perimeter bounds for the given terminal, edge pair as an mxRectangle.
function getPerimeterFunction($state)
Returns the perimeter function for the given state.
function getPerimeterPoint($terminal,  
$next,  
$orthogonal,  
$border =  null)
Returns an mxPoint that defines the location of the intersection point between the perimeter and the line between the center of the shape and the given point.
function getPoint($state,  
$geometry =  null)
Returns the absolute point on the edge for the given relative mxGeometry as an mxPoint.
function getProperties()
Returns properties.
function getProperty($key)
Returns the property value for the given key.
function getRoot()
Returns the root of the model.
static function getRotatedPoint($pt,  
$cos,  
$sin,  
$cx =  null)
Rotates the given point by the given cos and sin.
function getRoutingCenterX($state)
Returns the x-coordinate of the center point for automatic routing.
function getRoutingCenterY($state)
Returns the y-coordinate of the center point for automatic routing.
static function getScaledLabelBounds($x,
$y,
$size,
$outerWidth,
$outerHeight,
$style,
$scale)
Returns the bounds for a label for the given location and size, taking into account the alignment and spacing in the specified style, as well as the width and height of the rectangle that contains the label.
static function getSizeForString($text,  
$fontSize =  0,
$fontFamily =  null)
Returns an mxRectangle with the size (width and height in pixels) of the given string.
function getState($cell,  
$create =  false)
Returns the cell state for the specified cell.
function getStates()
Returns the mxCellStates for the given array of mxCells.
function getStyle()
Returns a string that describes the style.
function getStyle($cell)
Returns the style of the given mxCell.
static function getStylename($style)
Returns the stylename in a style of the form [stylename;|key=value;] or an empty string if the given style does not contain a stylename.
static function getStylenames($style)
Returns the stylenames in a style of the form [stylename;|key=value;] or an empty array if the given style does not contain any stylenames.
function getStylesheet()
Returns the mxStylesheet that defines the style.
function getTerminal($source)
Returns the source or target terminal.
function getTerminal($edge,
$cource)
Returns the source or target mxCell of the given edge depending on the value of the boolean parameter.
function getTerminalPoint($isSource)
Returns the mxPoint representing the source or target point of this edge.
function getTerminalPort($state,
$terminal,
$source)
Returns an mxCellState that represents the source or target terminal or port for the given edge.
function getTrueTypeFont($style)
Returns the truetype font to be used to draw the text with the given style.
static function getTrueTypeFont($style)
Returns the truetype font to be used to draw the text with the given style.
function getTrueTypeFontSize($style)
Returns the truetype font size to be used to draw the text with the given style.
static function getTrueTypeFontSize($size)
Returns the truetype font size to be used to draw the text with the given style.
function getValue()
Returns the user object of the cell.
function getValue($cell)
Returns the user object of the given mxCell using mxCell.getValue.
static function getValue($name)
Returns the value associated with the given name.
static function getValue($dict,  
$key,  
$default = null)
Returns the value for key in dictionary or the given default value if no value is defined for the key.
function getView()
Returns the mxGraphView that contains the mxCellStates.
function getVisibleTerminal($edge,
$source)
Returns the nearest ancestor terminal that is visible.
var $graph
Holds the mxGraph.
public static $GRAPH_MODEL_CHANGED
Defines the name of the graphModelChanged event.
var $graphBounds
Holds the bounds of the current view.
function graphModelChanged($event)
Called when the graph model has changed.
var $gridSize
Specifies the grid size.
function grow($amount)
Grows the rectangle by the given amount, that is, this method subtracts the given amount from the x- and y-coordinates and adds twice the amount to the width and height.
- -
- - - - - - - - - - - - \ No newline at end of file diff --git a/docs/php-api/index/General6.html b/docs/php-api/index/General6.html deleted file mode 100644 index 19089be27..000000000 --- a/docs/php-api/index/General6.html +++ /dev/null @@ -1,42 +0,0 @@ - - -Index - - - - - - - - - -
Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
H
 height
 html, mxHtmlCanvas
I
 id, mxCell
 idrefs, mxObjectCodec
 image, mxGdCanvas
 imageBundles, mxGraph
 imageCache, mxGdCanvas
 images, mxImageBundle
 indexOf, mxUtils
 indexOfStylename, mxUtils
 info, mxLog
 insert, mxCell
 insertEdge
 insertIntoGraph, mxCodec
 insertVertex, mxGraph
 intersection, mxUtils
 invalid, mxCellState
 invalidate, mxGraphView
 isAncestor, mxGraphModel
 isCellCollapsed, mxGraph
 isCellVisible, mxGraph
 isCollapsed
 isConnectable
 isConsumed, mxEventObject
 isEdge
 isExcluded, mxObjectCodec
 isNode, mxUtils
 isOrthogonal, mxGraph
 isReference, mxObjectCodec
 isVertex
 isVisible
L
 LABEL_INSET, mxConstants
 labelBounds, mxCellState
 labelsVisible, mxGraph
 leave, mxLog
 length, mxCellState
 level_debug, mxLog
 level_error, mxLog
 level_fine, mxLog
 level_info, mxLog
 level_warn, mxLog
 loadImage
 loadXmlDocument, mxUtils
 logfiles, mxLog
 lookup, mxCodec
 Loop, mxEdgeStyle
- -
Holds the height.
var $height
Holds the height of the rectangle.
var $html
Holds the html markup.
- - - -
var $id
Holds the Id.
var $idrefs
Array containing the variable names that should be turned into or converted from references.
var $image
Holds the image.
protected $imageBundles
Holds the list of image bundles.
var $imageCache
Holds the image cache.
var $images
Maps from keys to images.
static function indexOf($array,
$object)
Returns the index of obj in array or -1 if the array does not contains the given object.
static function indexOfStylename($style,
$stylename)
Returns the index of the given stylename in the given style.
static function info($text)
Logs an info trace.
function insert($child,  
$index =  null)
Inserts the specified child into the child array at the specified index and updates the parent reference of the child.
function insertEdge($edge,
$outgoing)
Inserts the specified edge into the edge array and returns the edge.
function insertEdge($parent,  
$id =  null,
$value =  null,
$source =  null,
$target =  null,
$style =  null)
Adds a new edge into the given parent mxCell using value as the user object and the given source and target as the terminals of the new edge.
function insertIntoGraph($cell)
Inserts the given cell into its parent and terminal cells.
function insertVertex($parent,  
$id =  null,
$value =  null,
$x =  0,
$y =  0,
$width =  1,
$height =  1,
$style =  null,
$relative =  false)
Adds a new vertex into the given parent mxCell using value as the user object and the given coordinates as the mxGeometry of the new vertex.
static function intersection($x0,
$y0,
$x1,
$y1,
$x2,
$y2,
$x3,
$y3)
Returns the intersection of two lines as an mxPoint.
var $invalid
Specifies if the state is invalid.
function isAncestor($parent,
$child)
Returns true if the given parent is an ancestor of the given child.
function isCellCollapsed($cell)
Returns true if the given cell is collapsed.
function isCellVisible($cell)
Returns true if the given cell is visible.
function isCollapsed()
Returns true if the cell is collapsed.
function isCollapsed($cell)
Returns true if the given mxCell is collapsed.
function isConnectable()
Returns true if the cell is connectable.
function isConnectable($cell)
Returns true if the given mxCell is connectable.
function isConsumed()
Returns true if the event has been consumed.
function isEdge()
Returns true if the cell is an edge.
function isEdge($cell)
Returns true if the given cell is an edge.
function isExcluded($obj,
$attr,
$value,
$write)
Returns true if the given attribute is to be ignored by the codec.
static function isNode($value,  
$nodeName =  null,
$attributeName =  null,
$attributeValue =  null)
Returns true if the given value is an XML node with the node name and if the optional attribute has the specified value.
function isOrthogonal($edge)
Returns true if perimeter points should be computed such that the resulting edge has only horizontal or vertical segments.
function isReference($obj,
$attr,
$value,
$write)
Returns true if the given fieldname is to be treated as a textual reference (ID).
function isVertex()
Returns true if the cell is a vertex.
function isVertex($cell)
Returns true if the given cell is a vertex.
function isVisible()
Returns true if the cell is visibile.
function isVisible($cell)
Returns true if the given mxCell is visible.
- - - -
public static $LABEL_INSET
Defines the inset in absolute pixels between the label bounding box and the label text.
var $labelBounds
Holds the rectangle which contains the label.
var $labelsVisible
Specifies if labels should be visible.
static function leave($text = "")
Logs a method exit.
var $length
Caches the length of an edge.
public static $level_debug
Specifies the debug logging level.
public static $level_error
Specifies the error logging level.
public static $level_fine
Specifies the fine logging level.
public static $level_info
Specifies the info logging level.
public static $level_warn
Specifies the warn logging level.
function loadImage($image)
Returns an image instance for the given URL.
static function loadImage($url)
Loads an image from the local filesystem, a data URI or any other URL.
static function loadXmlDocument($uri)
Returns a new DOM document for the given URI.
public static $logfiles
Holds the array of logfiles.
function lookup($id)
Hook for subclassers to implement a custom lookup mechanism for cell IDs.
public static $Loop
Provides a self-reference, aka.
- -
- - - - - - - - - - - - \ No newline at end of file diff --git a/docs/php-api/index/General7.html b/docs/php-api/index/General7.html deleted file mode 100644 index bd0bc0387..000000000 --- a/docs/php-api/index/General7.html +++ /dev/null @@ -1,42 +0,0 @@ - - -Index - - - - - - - - - -
Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
M
 maintainEdgeParent, mxGraphModel
 mapping, mxObjectCodec
 mergeChildren, mxGraphModel
 mergeChildrenImpl, mxGraphModel
 MIN_ACTIVE_REGION, mxConstants
 model, mxGraph
 mxCell
 mxCellCodec
 mxCellPath
 mxCellState
 mxCodec
 mxCodecRegistry
 mxConnectionConstraint
 mxConstants
 mxEdgeStyle
 mxEdgeStyleFunction
 mxElbowConnector
 mxEllipsePerimeter
 mxEntityRelation
 mxEvent
 mxEventObject
 mxEventSource
 mxGdCanvas
 mxGdCanvas.php
 mxGeometry
 mxGraph
 mxGraphModel
 mxGraphView
 mxGraphViewHtmlReader
 mxGraphViewImageReader
 mxHtmlCanvas
 mxImageBundle
 mxLog
 mxLoop
 mxModelCodec
 mxObjectCodec
 mxPerimeter
 mxPerimeterFunction
 mxPoint
 mxRectangle
 mxRectanglePerimeter
 mxRhombusPerimeter
 mxSideToSide
 mxStyleRegistry
 mxStylesheet
 mxStylesheetCodec
 mxTopToBottom
 mxTrianglePerimeter
 mxUtils
N
 name, mxEventObject
 nextId, mxGraphModel
 NONE, mxConstants
 NS_SVG, mxConstants
 NS_XHTML, mxConstants
 NS_XLINK, mxConstants
O
 objects, mxCodec
 offset
 origin, mxCellState
 out, mxHtmlCanvas
- -
var $maintainEdgeParent
Specifies if edges should automatically be moved into the nearest common ancestor of their terminals.
var $mapping
Maps from from fieldnames to XML attribute names.
function mergeChildren($from,  
$to,  
$cloneAllEdges =  true)
Merges the children of the given cell into the given target cell inside this model.
function mergeChildrenImpl($from,
$to,
$cloneAllEdges,
$mapping)
Clones the children of the source cell into the given target cell in this model and adds an entry to the mapping that maps from the source cell to the target cell with the same id or the clone of the source cell that was inserted into this model.
public static $MIN_ACTIVE_REGION
Defines the minimum size in pixels of the portion of the cell cell which is to be used as a connectable region.
var $model
Holds the mxGraphModel.
Cells are the elements of the graph model.
function mxCell($value =  null,
$geometry =  null,
$style =  null)
Constructs a new cell to be used in a graph model.
Codec for mxCells.
Implements a mechanism for temporary cell Ids.
Represents the current state of a cell in a given mxGraphView.
function mxCellState($view =  null,
$cell =  null,
$style =  null)
Constructs a new object that represents the current state of the given cell in the specified view.
XML codec for PHP object graphs.
A class to register codecs for objects.
Defines an object that contains the constraints about how to connect one side of an edge to its terminal.
function mxConnectionConstraint($point =  null,
$perimeter =  true)
Constructs a new connection constraint for the given point and boolean arguments.
Defines global constants.
Provides various edge styles to be used as the values for mxConstants.STYLE_EDGE in a cell style.
Defines the requirements for an edge style function.
Uses either SideToSide or TopToBottom depending on the horizontal flag in the cell style.
Implements an elliptic perimeter.
Implements an entity relation style for edges (as used in database schema diagrams).
Defines global constants.
Base class for all events.
function mxEventObject($name)
Constructs a new event for the given name and properties.
Base class for all event sources.
Canvas for drawing graphs using the GD library.
function mxGdCanvas($width =  0,
$height =  0,
$scale =  1,
$background =  null,
$imageBasePath =  "")
Constructs a new GD canvas.
Constructs a new GD canvas.
Represents the geometry of a cell.
function mxGeometry($x = 0,
$y = 0,
$width = 0,
$height = 0)
Constructs a new object to describe the size and location of a vertex or the control points of an edge.
Implements a graph component.
Cells are the elements of the graph model.
Constructs a new graph model using the specified root cell.
function mxGraphModel($root =  null)
Constructs a new graph model using the specified root cell.
Implements a view for the graph.
function mxGraphView($graph)
Constructs a new view for the specified mxGraph.
A display XML to HTML converter.
Constructs a new HTML graph view reader.
function mxGraphViewHtmlReader()
Constructs a new HTML graph view reader.
A display XML to image converter.
function mxGraphViewImageReader($background =  null,
$border =  0)
Constructs a new image graph view reader.
Canvas for drawing graphs using HTML.
Maps from keys to base64 encoded images or file locations.
function mxImageBundle()
Constructs a new image bundle.
Logging facility.
Implements a self-reference, aka.
Codec for mxGraphModels.
XML codec for PHP object graphs.
Constructs a new codec for the specified template object.
Constructs a new codec for the specified template object.
function mxObjectCodec($template,  
$exclude =  array(),
$idrefs =  array(),
$mapping =  array())
Constructs a new codec for the specified template object.
Constructs a new codec for the specified template object.
Provides various perimeter functions to be used in a style as the value of mxConstants.STYLE_PERIMETER.
Defines the requirements for a perimeter function.
Implements a 2-dimensional point with double precision coordinates.
function mxPoint($x =  0,
$y =  0)
Constructs a new point for the optional x and y coordinates.
Implements a 2-dimensional rectangle with double precision coordinates.
function mxRectangle($x =  0,
$y =  0,
$width =  0,
$height =  0)
Constructs a new rectangle for the optional parameters.
Implements a rectangular perimeter for the given bounds.
Implements a rhombus (aka diamond) perimeter.
Implements a vertical elbow edge.
Singleton class that acts as a global converter from string to object values in a style.
Defines the appearance of the cells in a graph.
function mxStylesheet()
Constructs a new stylesheet and assigns default styles.
Codec for mxStylesheets.
Implements a horizontal elbow edge.
Implements a triangle perimeter.
Helper methods.
- - - -
var $name
Holds the name of the event.
var $nextId
Specifies the next Id to be created.
public static $NONE
Defines the value for none.
public static $NS_SVG
Defines the SVG namespace.
public static $NS_XHTML
Defines the XHTML namespace.
public static $NS_XLINK
Defined the XLink namespace.
- - - -
var $objects
Maps from IDs to objects.
function offset($points,  
$dx =  null,
$dy =  null)
Creates a new array of x, y sequences where the each coordinate is translated by dx and dy, respectively.
var $offset
Holds the offset of the label for edges.
var $origin
mxPoint that holds the origin for all child cells.
function out($string)
Adds the specified string to the output.
- -
- - - - - - - - - - - - \ No newline at end of file diff --git a/docs/php-api/index/General8.html b/docs/php-api/index/General8.html deleted file mode 100644 index a6d997e57..000000000 --- a/docs/php-api/index/General8.html +++ /dev/null @@ -1,38 +0,0 @@ - - -Index - - - - - - - - - -
Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
P
 paintCell, mxGraph
 paintState, mxGraph
 parent, mxCell
 parsePoints, mxGraphViewImageReader
 parser, mxGraphViewImageReader
 parseState, mxGraphViewImageReader
 parseXml, mxUtils
 perimeter, mxConnectionConstraint
 PERIMETER_ELLIPSE, mxConstants
 PERIMETER_RECTANGLE, mxConstants
 PERIMETER_RHOMBUS, mxConstants
 PERIMETER_TRIANGLE, mxConstants
 point, mxConnectionConstraint
 points, mxGeometry
 postProcessCellStyle, mxGraph
 printLog, mxLog
 processInclude, mxObjectCodec
 properties, mxEventObject
 putCellStyle, mxStylesheet
 putDefaultEdgeStyle, mxStylesheet
 putDefaultVertexStyle, mxStylesheet
 putImage, mxImageBundle
 putObject, mxCodec
 putValue, mxStyleRegistry
R
 RAD_PER_DEG, mxConstants
 read, mxGraphViewImageReader
 readFile
 RectanglePerimeter, mxPerimeter
 reference, mxCodec
 register, mxCodecRegistry
 relative, mxGeometry
 remove
 removeAllStylenames, mxUtils
 removeEdge, mxCell
 removeFromParent, mxCell
 removeFromTerminal, mxCell
 removeImageBundle, mxGraph
 removeState, mxGraphView
 removeStylename, mxUtils
 resolve, mxCellPath
 restoreClone, mxGraphModel
 reverse, mxObjectCodec
 RhombusPerimeter, mxPerimeter
 root, mxGraphModel
- -
Draws the given cell onto the specified canvas.
Draws the given cell and label onto the specified canvas.
var $parent
Reference to the parent cell.
function parsePoints($str)
Parses a string that represents a list of points into an array of mxPoints.
var $parser
Holds the SAX parser.
function parseState($state,
$edge)
Parses the bounds, absolute points and label information from the style of the state into its respective fields and returns the label of the cell.
static function parseXml($xml)
Returns a new DOM document for the given XML string.
var $perimeter
Boolean that specifies if the point should be projected onto the perimeter of the terminal.
public static $PERIMETER_ELLIPSE
Name of the ellipse perimeter.
public static $PERIMETER_RECTANGLE
Name of the rectangle perimeter.
public static $PERIMETER_RHOMBUS
Name of the rhombus perimeter.
public static $PERIMETER_TRIANGLE
Name of the triangle perimeter.
var $point
mxPoint that specifies the fixed location of the connection point.
var $points
Array of mxPoints which specifies the control points along the edge.
function postProcessCellStyle($style)
Tries to resolve the value for the image style in the image bundles and turns short data URIs as defined in mxImageBundle to data URIs as defined in RFC 2397 of the IETF.
public static $printLog
Specifies if the log should be printed out.
function processInclude($dec,
$node,
$into)
Returns true if the given node is an include directive and executes the include by decoding the XML document.
var $properties
Holds the event properties in an associative array that maps from string (key) to object (value).
function putCellStyle($name,
$style)
Stores the specified style under the given name.
function putDefaultEdgeStyle($style)
Sets the default style for edges.
function putDefaultVertexStyle($style)
Sets the default style for vertices.
function putImage($key,
$value)
Adds the specified entry to the map.
function putObject($id,
$object)
Assoiates the given object with the given ID.
static function putValue($name,
$value)
Puts the given object into the registry under the given name.
- - - -
public static $RAD_PER_DEG
Defines the number of radiants per degree.
function read($string)
Reads the specified view XML string.
function readFile($filename)
Reads the specified view XML file in blocks of 4096 bytes.
static function readFile($filename)
Reads the given filename into a string.
public static $RectanglePerimeter
Provides a rectangular perimeter.
function reference($obj)
Hook for subclassers to implement a custom method for retrieving IDs from objects.
static function register($codec)
Registers a new codec and associates the name of the template constructor in the codec with the codec object.
var $relative
Specifies if the coordinates in the geometry are to be interpreted as relative coordinates.
function remove($index)
Removes the child at the specified index from the child array and returns the child that was removed.
function remove($cell)
Removes the specified cell from the model using mxChildChange and adds the change to the current transaction.
static function removeAllStylenames($style)
Removes all stylenames from the given style and returns the updated style.
function removeEdge($edge,
$outgoing)
Removes the specified edge from the edge array and returns the edge.
function removeFromParent()
Removes the cell from its parent.
function removeFromTerminal($source)
Removes the edge from its source or target terminal.
function removeImageBundle($bundle)
Removes the specified mxImageBundle.
function removeState($cell,  
$recurse =  false)
Removes and returns the mxCellState for the given cell.
static function removeStylename($style,
$stylename)
Removes all occurrences of the specified stylename in the given style and returns the updated style.
static function resolve($root,
$path)
Returns the cell for the specified cell path using the given root as the root of the path.
function restoreClone($clne,
$cell,
$mapping)
Inner helper method for restoring the connections in a network of cloned cells.
var $reverse
Maps from from XML attribute names to fieldnames.
public static $RhombusPerimeter
Provides a rhombus (aka diamond) perimeter.
var $root
Holds the root cell, which in turn contains the cells that represent the layers of the diagram as child cells.
- -
- - - - - - - - - - - - \ No newline at end of file diff --git a/docs/php-api/index/General9.html b/docs/php-api/index/General9.html deleted file mode 100644 index ab16f9b57..000000000 --- a/docs/php-api/index/General9.html +++ /dev/null @@ -1,34 +0,0 @@ - - -Index - - - - - - - - - -
Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
S
 scale
 SCALE, mxEvent
 segments, mxCellState
 setAttribute
 setCellStyleFlags, mxUtils
 setCellStyles
 setCollapsed
 setConnectable, mxCell
 setEdge, mxCell
 setGeometry
 setGraphBounds, mxGraphView
 setId, mxCell
 setImage, mxGdCanvas
 setImageBundles, mxGraph
 setParent, mxCell
 setRect, mxRectangle
 setRoot, mxGraphModel
 setScale, mxGraphView
 setStyle
 setStyleFlag, mxUtils
 setTerminal
 setTerminalPoint, mxGeometry
 setTerminals, mxGraphModel
 setTranslate, mxGraphView
 setValue
 setVertex, mxCell
 setVisible
 SHADOW_OFFSETX, mxConstants
 SHADOW_OFFSETY, mxConstants
 shadowColor, mxGdCanvas
 SHAPE_ACTOR, mxConstants
 SHAPE_ARROW, mxConstants
 SHAPE_CLOUD, mxConstants
 SHAPE_CONNECTOR, mxConstants
 SHAPE_CYLINDER, mxConstants
 SHAPE_DOUBLE_ELLIPSE, mxConstants
 SHAPE_ELLIPSE, mxConstants
 SHAPE_HEXAGON, mxConstants
 SHAPE_IMAGE, mxConstants
 SHAPE_LABEL, mxConstants
 SHAPE_LINE, mxConstants
 SHAPE_RECTANGLE, mxConstants
 SHAPE_RHOMBUS, mxConstants
 SHAPE_SWIMLANE, mxConstants
 SHAPE_TRIANGLE, mxConstants
 SideToSide, mxEdgeStyle
 source, mxCell
 sourcePoint, mxGeometry
 sSTYLE_ENTRY_PERIMETER, mxConstants
 stackTrace, mxUtils
 startElement, mxGraphViewImageReader
 states, mxGraphView
 style
 STYLE_ALIGN, mxConstants
 STYLE_DASHED, mxConstants
 STYLE_DIRECTION, mxConstants
 STYLE_EDGE, mxConstants
 STYLE_ELBOW, mxConstants
 STYLE_ENDARROW, mxConstants
 STYLE_ENDSIZE, mxConstants
 STYLE_ENTRY_X, mxConstants
 STYLE_ENTRY_Y, mxConstants
 STYLE_EXIT_PERIMETER, mxConstants
 STYLE_EXIT_X, mxConstants
 STYLE_EXIT_Y, mxConstants
 STYLE_FILLCOLOR, mxConstants
 STYLE_FONTCOLOR, mxConstants
 STYLE_FONTFAMILY, mxConstants
 STYLE_FONTSIZE, mxConstants
 STYLE_FONTSTYLE, mxConstants
 STYLE_GRADIENT_DIRECTION, mxConstants
 STYLE_GRADIENTCOLOR, mxConstants
 STYLE_HORIZONTAL, mxConstants
 STYLE_IMAGE, mxConstants
 STYLE_IMAGE_ALIGN, mxConstants
 STYLE_IMAGE_BACKGROUND, mxConstants
 STYLE_IMAGE_BORDER, mxConstants
 STYLE_IMAGE_FLIPH, mxConstants
 STYLE_IMAGE_FLIPV, mxConstants
 STYLE_IMAGE_HEIGHT, mxConstants
 STYLE_IMAGE_VERTICALALIGN, mxConstants
 STYLE_IMAGE_WIDTH, mxConstants
 STYLE_INDICATOR_COLOR, mxConstants
 STYLE_INDICATOR_GRADIENTCOLOR, mxConstants
 STYLE_INDICATOR_HEIGHT, mxConstants
 STYLE_INDICATOR_IMAGE, mxConstants
 STYLE_INDICATOR_SHAPE, mxConstants
 STYLE_INDICATOR_SPACING, mxConstants
 STYLE_INDICATOR_WIDTH, mxConstants
 STYLE_LABEL_BACKGROUNDCOLOR, mxConstants
 STYLE_LABEL_BORDERCOLOR, mxConstants
 STYLE_LABEL_POSITION, mxConstants
 STYLE_LOOP, mxConstants
 STYLE_NOEDGESTYLE, mxConstants
 STYLE_NOLABEL, mxConstants
 STYLE_OPACITY, mxConstants
 STYLE_ORTHOGONAL, mxConstants
 STYLE_OVERFLOW, mxConstants
 STYLE_PERIMETER, mxConstants
 STYLE_PERIMETER_SPACING, mxConstants
 STYLE_ROTATION, mxConstants
 STYLE_ROUNDED, mxConstants
 STYLE_ROUTING_CENTER_X, mxConstants
 STYLE_ROUTING_CENTER_Y, mxConstants
 STYLE_SEGMENT, mxConstants
 STYLE_SEPARATORCOLOR, mxConstants
 STYLE_SHADOW, mxConstants
 STYLE_SHAPE, mxConstants
 STYLE_SOURCE_PERIMETER_SPACING, mxConstants
 STYLE_SPACING, mxConstants
 STYLE_SPACING_BOTTOM, mxConstants
 STYLE_SPACING_LEFT, mxConstants
 STYLE_SPACING_RIGHT, mxConstants
 STYLE_SPACING_TOP, mxConstants
 STYLE_STARTARROW, mxConstants
 STYLE_STARTSIZE, mxConstants
 STYLE_STROKECOLOR, mxConstants
 STYLE_STROKEWIDTH, mxConstants
 STYLE_SWIMLANE_FILLCOLOR, mxConstants
 STYLE_SWIMLANE_LINE, mxConstants
 STYLE_TARGET_PERIMETER_SPACING, mxConstants
 STYLE_TEXT_OPACITY, mxConstants
 STYLE_VERTICAL_ALIGN, mxConstants
 STYLE_VERTICAL_LABEL_POSITION, mxConstants
 STYLE_WHITE_SPACE, mxConstants
 styles, mxStylesheet
 stylesheet, mxGraph
- -
var $scale
Holds the current scale.
var $scale
Holds the global scale of the graph.
public static $SCALE
Defines the name of the scale event.
var $segments
Array of numbers that represent the cached length of each segment of the edge.
function setAttribute($key,
$value)
Sets the specified attribute on the user object if it is an XML node.
function setAttribute($node,
$attribute,
$value)
Sets the attribute on the specified node to value.
static function setCellStyleFlags($model,
$cells,
$key,
$flag,
$value)
Sets or toggles the flag bit for the given key in the cell’s styles.
function setCellStyles($key,
$value,
$cells)
Sets the key to value in the styles of the given cells.
static function setCellStyles($model,
$cells,
$key,
$value)
Assigns the value for the given key in the styles of the given cells, or removes the key from the styles if the value is null.
function setCollapsed($collapsed)
Sets the collapsed state.
function setCollapsed($cell,
$isCollapsed)
Sets the collapsed state of the given mxCell using mxCollapseChange and adds the change to the current transaction.
function setConnectable($connectable)
Sets the connectable state.
function setEdge($edge)
Specifies if the cell is an edge.
function setGeometry($geometry)
Sets the mxGeometry to be used as the geometry.
function setGeometry($cell,
$geometry)
Sets the mxGeometry of the given mxCell.
function setGraphBounds($value)
Sets graphBounds.
function setId($id)
Sets the Id of the cell to the given string.
function setImage($img)
Sets the image that represents the canvas.
function setImageBundles($value)
Sets the imageBundles.
function setParent($parent)
Sets the parent cell.
function setRect($x,
$y,
$width,
$height)
Sets this rectangle to the specified values.
function setScale($scale)
Sets the scale, revalidates the view and fires a scale event.
function setStyle($style)
Sets the string to be used as the style.
function setStyle($cell,
$style)
Sets the style of the given mxCell using mxStyleChange and adds the change to the current transaction.
static function setStyle($style,
$key,
$value)
Adds or removes the given key, value pair to the style and returns the new style.
static function setStyleFlag($style,
$key,
$flag,
$value)
Sets or removes the given key from the specified style and returns the new style.
function setTerminal($terminal,
$source)
Sets the source or target terminal and returns the new terminal.
function setTerminal($edge,
$terminal,
$source)
Sets the source or target terminal of the given mxCell using mxTerminalChange and adds the change to the current transaction.
function setTerminalPoint($point,
$isSource)
Sets the sourcePoint or targetPoint to the given mxPoint and returns the new point.
function setTerminals($edge,
$source,
$target)
Sets the source and target mxCell of the given mxCell in a single transaction using setTerminal for each end of the edge.
function setTranslate($translate)
Sets the translation, revalidates the view and fires a translate event.
function setValue($value)
Sets the user object of the cell.
function setValue($cell,
$value)
Sets the user object of then given mxCell using mxValueChange and adds the change to the current transaction.
function setVertex($vertex)
Specifies if the cell is a vertex.
function setVisible($visible)
Specifies if the cell is visible.
function setVisible($cell,
$visible)
Sets the visible state of the given mxCell using mxVisibleChange and adds the change to the current transaction.
public static $SHADOW_OFFSETX
Defines the x-offset to be used for shadows.
public static $SHADOW_OFFSETY
Defines the y-offset to be used for shadows.
var $shadowColor
Holds the color object for the shadow color defined in mxConstants.W3C_SHADOWCOLOR.
public static $SHAPE_ACTOR
public static $SHAPE_ARROW
public static $SHAPE_CLOUD
public static $SHAPE_CONNECTOR
public static $SHAPE_CYLINDER
public static $SHAPE_DOUBLE_ELLIPSE
public static $SHAPE_ELLIPSE
public static $SHAPE_HEXAGON
public static $SHAPE_IMAGE
public static $SHAPE_LABEL
public static $SHAPE_LINE
public static $SHAPE_RECTANGLE
public static $SHAPE_RHOMBUS
public static $SHAPE_SWIMLANE
public static $SHAPE_TRIANGLE
public static $SideToSide
Provides a side to side connector.
var $source
Reference to the source terminal.
var $sourcePoint
Defines the source point of the edge.
Defines if the perimeter should be used to find the exact entry point along the perimeter of the target.
static function stackTrace()
Prints a simple stack trace in the error log.
function startElement($parser,
$name,
$attrs)
Invoked by the SAX parser when an element starts.
var $states
Maps from cells to states.
var $style
Holds the style as a string of the form [(stylename|key=value);].
var $style
Contains an array of key, value pairs that represent the style of the cell.
public static $STYLE_ALIGN
Defines the key for the align style.
public static $STYLE_DASHED
Defines the key for the endSize style.
public static $STYLE_DIRECTION
Defines the key for the direction style.
public static $STYLE_EDGE
Defines the key for the edge style.
public static $STYLE_ELBOW
Defines the key for the elbow style.
public static $STYLE_ENDARROW
Defines the key for the endArrow style.
public static $STYLE_ENDSIZE
Defines the key for the endSize style.
public static $STYLE_ENTRY_X
Defines the key for the horizontal relative coordinate connection point of an edge with its target terminal.
public static $STYLE_ENTRY_Y
Defines the key for the vertical relative coordinate connection point of an edge with its target terminal.
public static $STYLE_EXIT_PERIMETER
Defines if the perimeter should be used to find the exact entry point along the perimeter of the source.
public static $STYLE_EXIT_X
Defines the key for the horizontal relative coordinate connection point of an edge with its source terminal.
public static $STYLE_EXIT_Y
Defines the key for the vertical relative coordinate connection point of an edge with its source terminal.
public static $STYLE_FILLCOLOR
Defines the key for the fill color.
public static $STYLE_FONTCOLOR
Defines the key for the fontColor style.
public static $STYLE_FONTFAMILY
Defines the key for the fontFamily style.
public static $STYLE_FONTSIZE
Defines the key for the fontSize style (in px).
public static $STYLE_FONTSTYLE
Defines the key for the fontStyle style.
public static $STYLE_GRADIENT_DIRECTION
Defines the key for the gradient direction.
public static $STYLE_GRADIENTCOLOR
Defines the key for the gradient color.
public static $STYLE_HORIZONTAL
Defines the key for the horizontal style.
public static $STYLE_IMAGE
Defines the key for the image style.
public static $STYLE_IMAGE_ALIGN
Defines the key for the align style.
public static $STYLE_IMAGE_BACKGROUND
Defines the key for the image background color.
public static $STYLE_IMAGE_BORDER
Defines the key for the image border color.
public static $STYLE_IMAGE_FLIPH
Defines the key for the horizontal image flip.
public static $STYLE_IMAGE_FLIPV
Defines the key for the vertical image flip.
public static $STYLE_IMAGE_HEIGHT
Defines the key for the imageHeight style.
Defines the key for the verticalAlign style.
public static $STYLE_IMAGE_WIDTH
Defines the key for the imageWidth style.
public static $STYLE_INDICATOR_COLOR
Defines the key for the indicatorColor style.
public static $STYLE_INDICATOR_GRADIENTCOLOR
Defines the key for the indicatorGradientColor style.
public static $STYLE_INDICATOR_HEIGHT
Defines the key for the indicatorHeight style (in px).
public static $STYLE_INDICATOR_IMAGE
Defines the key for the indicatorImage style.
public static $STYLE_INDICATOR_SHAPE
Defines the key for the indicatorShape style.
public static $STYLE_INDICATOR_SPACING
Defines the key for the indicatorSpacing style (in px).
public static $STYLE_INDICATOR_WIDTH
Defines the key for the indicatorWidth style (in px).
public static $STYLE_LABEL_BACKGROUNDCOLOR
Defines the key for the label background color.
public static $STYLE_LABEL_BORDERCOLOR
Defines the key for the label border color.
public static $STYLE_LABEL_POSITION
Defines the key for the horizontal label position of vertices.
public static $STYLE_LOOP
Defines the key for the loop style.
public static $STYLE_NOEDGESTYLE
Defines the key for the noEdgeStyle style.
public static $STYLE_NOLABEL
Defines the key for the noLabel style.
public static $STYLE_OPACITY
Defines the key for the opacity style.
public static $STYLE_ORTHOGONAL
Defines if the connection points on either end of the edge should be computed so that the edge is vertical or horizontal if possible and if the point is not at a fixed location.
public static $STYLE_OVERFLOW
Defines the key for the overflow style.
public static $STYLE_PERIMETER
Defines the key for the perimeter style.
public static $STYLE_PERIMETER_SPACING
Defines the key for the perimeter spacing.
public static $STYLE_ROTATION
Defines the key for the rotation style.
public static $STYLE_ROUNDED
Defines the key for the rounded style.
public static $STYLE_ROUTING_CENTER_X
Defines the key for the horizontal routing center.
public static $STYLE_ROUTING_CENTER_Y
Defines the key for the vertical routing center.
public static $STYLE_SEGMENT
Defines the key for the segment style.
public static $STYLE_SEPARATORCOLOR
Defines the key for the separatorColor style.
public static $STYLE_SHADOW
Defines the key for the shadow style.
public static $STYLE_SHAPE
Defines the key for the shape.
public static $STYLE_SOURCE_PERIMETER_SPACING
Defines the key for the source perimeter spacing.
public static $STYLE_SPACING
Defines the key for the spacing.
public static $STYLE_SPACING_BOTTOM
Defines the key for the spacingBottom style The value represents the spacing, in pixels, added to the bottom side of a label in a vertex (style applies to vertices only).
public static $STYLE_SPACING_LEFT
Defines the key for the spacingLeft style.
public static $STYLE_SPACING_RIGHT
Defines the key for the spacingRight style The value represents the spacing, in pixels, added to the right side of a label in a vertex (style applies to vertices only).
public static $STYLE_SPACING_TOP
Defines the key for the spacingTop style.
public static $STYLE_STARTARROW
Defines the key for the startArrow style.
public static $STYLE_STARTSIZE
Defines the key for the startSize style.
public static $STYLE_STROKECOLOR
Defines the key for the strokeColor style.
public static $STYLE_STROKEWIDTH
Defines the key for the strokeWidth style.
public static $STYLE_SWIMLANE_FILLCOLOR
Defines the key for the fill color of the swimlane background.
public static $STYLE_SWIMLANE_LINE
Defines the key for the swimlaneLine style.
public static $STYLE_TARGET_PERIMETER_SPACING
Defines the key for the source perimeter spacing.
public static $STYLE_TEXT_OPACITY
Defines the key for the text opacity style.
public static $STYLE_VERTICAL_ALIGN
Defines the key for the verticalAlign style.
public static $STYLE_VERTICAL_LABEL_POSITION
Defines the key for the vertical label position of vertices.
public static $STYLE_WHITE_SPACE
Defines the key for the white-space style.
var $styles = array()
Maps from names to styles.
var $stylesheet
Holds the mxStylesheet.
- -
- - - - - - - - - - - - \ No newline at end of file diff --git a/docs/php-api/index/Interfaces.html b/docs/php-api/index/Interfaces.html deleted file mode 100644 index b3f5eb201..000000000 --- a/docs/php-api/index/Interfaces.html +++ /dev/null @@ -1,34 +0,0 @@ - - -Interface Index - - - - - - - - - -
Interface Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
M
 mxEdgeStyleFunction
 mxPerimeterFunction
- -
Defines the requirements for an edge style function.
Defines the requirements for a perimeter function.
- -
- - - - - - - - - - - - \ No newline at end of file diff --git a/docs/php-api/index/Variables.html b/docs/php-api/index/Variables.html deleted file mode 100644 index 26c959a40..000000000 --- a/docs/php-api/index/Variables.html +++ /dev/null @@ -1,70 +0,0 @@ - - -Variable Index - - - - - - - - - -
Variable Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
A
 absoluteOffset, mxCellState
 absolutePoints, mxCellState
 ACTIVE_REGION, mxConstants
 aliases, mxCodecRegistry
 ALIGN_BOTTOM, mxConstants
 ALIGN_CENTER, mxConstants
 ALIGN_LEFT, mxConstants
 ALIGN_MIDDLE, mxConstants
 ALIGN_RIGHT, mxConstants
 ALIGN_TOP, mxConstants
 alternateBounds, mxGeometry
 antialias
 ARROW_BLOCK, mxConstants
 ARROW_CLASSIC, mxConstants
 ARROW_DIAMOND, mxConstants
 ARROW_OPEN, mxConstants
 ARROW_OVAL, mxConstants
 ARROW_SIZE, mxConstants
 ARROW_SPACING, mxConstants
 ARROW_WIDTH, mxConstants
B
 background, mxGraphViewImageReader
 border, mxGraphViewImageReader
 boundingBox, mxCellState
C
 canvas, mxGraphViewImageReader
 cell, mxCellState
 cells, mxGraphModel
 children, mxCell
 codecs
 collapsed, mxCell
 connectable, mxCell
 consumed, mxEventObject
 createIds, mxGraphModel
 current, mxLog
D
 DEFAULT_FONTFAMILY, mxConstants
 DEFAULT_FONTSIZE, mxConstants
 DEFAULT_IMAGESIZE, mxConstants
 DEFAULT_LINESPACING, mxConstants
 DEFAULT_MARKERSIZE, mxConstants
 DEFAULT_STARTSIZE, mxConstants
 defaultLoopStyle, mxGraph
 DEG_PER_RAD, mxConstants
 DIRECTION_EAST, mxConstants
 DIRECTION_NORTH, mxConstants
 DIRECTION_SOUTH, mxConstants
 DIRECTION_WEST, mxConstants
 document, mxCodec
E
 edge, mxCell
 edges, mxCell
 EDGESTYLE_ENTITY_RELATION, mxConstants
 EDGESTYLE_LOOP, mxConstants
 EDGESTYLE_SIDETOSIDE, mxConstants
 EDGESTYLE_TOPTOBOTTOM, mxConstants
 ELBOW_HORIZONTAL, mxConstants
 ELBOW_VERTICAL, mxConstants
 ElbowConnector, mxEdgeStyle
 elements, mxCodec
 EllipsePerimeter, mxPerimeter
 EMPTY_POINT, mxGraphView
 enableTtf, mxGdCanvas
 encodeDefaults, mxCodec
 ENTITY_SEGMENT, mxConstants
 EntityRelation, mxEdgeStyle
 eventListeners, mxEventSource
 exclude, mxObjectCodec
F
 FONT_BOLD, mxConstants
 FONT_ITALIC, mxConstants
 FONT_UNDERLINE, mxConstants
G
 geometry, mxCell
 graph, mxGraphView
 GRAPH_MODEL_CHANGED, mxEvent
 graphBounds, mxGraphView
 gridSize, mxGraph
H
 height
 html, mxHtmlCanvas
I
 id, mxCell
 idrefs, mxObjectCodec
 image, mxGdCanvas
 imageBundles, mxGraph
 imageCache, mxGdCanvas
 images, mxImageBundle
 invalid, mxCellState
L
 LABEL_INSET, mxConstants
 labelBounds, mxCellState
 labelsVisible, mxGraph
 length, mxCellState
 level_debug, mxLog
 level_error, mxLog
 level_fine, mxLog
 level_info, mxLog
 level_warn, mxLog
 logfiles, mxLog
 Loop, mxEdgeStyle
- -
var $absoluteOffset
mxPoint that holds the absolute offset.
var $absolutePoints
Holds an array of mxPoints that represent the absolute points of an edge.
public static $ACTIVE_REGION
Defines the portion of the cell which is to be used as a connectable region.
public static $aliases
Maps from classnames to codecnames.
public static $ALIGN_BOTTOM
public static $ALIGN_CENTER
public static $ALIGN_LEFT
public static $ALIGN_MIDDLE
public static $ALIGN_RIGHT
public static $ALIGN_TOP
var $alternateBounds
Stores alternate values for x, y, width and height in a rectangle.
Specifies if image aspect should be preserved in drawImage.
var $antialias
Specifies if antialiasing should be enabled.
public static $ARROW_BLOCK
public static $ARROW_CLASSIC
public static $ARROW_DIAMOND
public static $ARROW_OPEN
public static $ARROW_OVAL
public static $ARROW_SIZE
Defines the size of the arrowhead in the arrow shape.
public static $ARROW_SPACING
Defines the spacing between the arrow shape and its terminals.
public static $ARROW_WIDTH
Defines the width of the arrow shape.
- - - -
var $background
Holds the background color.
var $border
Holds the border size.
var $boundingBox
Holds the largest rectangle which contains all rendering for this cell.
- - - -
var $canvas
Holds the canvas.
var $cell
Reference to the mxCell that is represented by this state.
var $cells
Maps from Ids to cells.
var $children
Holds the child cells.
Maps from constructor names to codecs.
public static $codecs
Maps from constructor names to codecs.
var $collapsed
Specifies whether the cell is collapsed.
var $connectable
Specifies whether the cell is connectable.
var $consumed
Holds the consumed state of the event.
var $createIds
Specifies if the model should automatically create Ids for new cells.
public static $current
Default is true.
- - - -
public static $DEFAULT_FONTFAMILY
Defines the default family for all truetype fonts.
public static $DEFAULT_FONTSIZE
Defines the default size (in px).
public static $DEFAULT_IMAGESIZE
Defines the default width and height for images used in the label shape.
public static $DEFAULT_LINESPACING
Defines the default linespacing.
public static $DEFAULT_MARKERSIZE
Defines the default size for all markers.
public static $DEFAULT_STARTSIZE
Defines the default start size for swimlanes.
var $defaultLoopStyle
mxEdgeStyle to be used for loops.
public static $DEG_PER_RAD
Defines the number of degrees per radiant.
public static $DIRECTION_EAST
public static $DIRECTION_NORTH
public static $DIRECTION_SOUTH
public static $DIRECTION_WEST
var $document
The owner document of the codec.
- - - -
var $edge
Specifies whether the cell is an edge.
var $edges
Holds the edges.
public static $EDGESTYLE_ENTITY_RELATION
Name of the entity relation edge style.
public static $EDGESTYLE_LOOP
Name of the loop edge style.
public static $EDGESTYLE_SIDETOSIDE
Name of the side to side edge style.
public static $EDGESTYLE_TOPTOBOTTOM
Name of the top to bottom edge style.
public static $ELBOW_HORIZONTAL
public static $ELBOW_VERTICAL
public static $ElbowConnector
Provides an elbow connector.
var $elements
Maps from IDs to elements.
public static $EllipsePerimeter
Provides an elliptic perimeter.
var $EMPTY_POINT
An empty mxPoint instance.
var $enableTtf
Specifies if truetype fonts are enabled if available.
var $encodeDefaults
Specifies if default values should be encoded.
public static $ENTITY_SEGMENT
Defines the length of the horizontal segment of an Entity Relation.
public static $EntityRelation
Provides an entity relation style for edges (as used in database schema diagrams).
var $eventListeners
Holds the registered listeners.
var $exclude
Array containing the variable names that should be ignored by the codec.
- - - -
public static $FONT_BOLD
public static $FONT_ITALIC
public static $FONT_UNDERLINE
- - - -
var $geometry
Holds the mxGeometry.
var $graph
Holds the mxGraph.
public static $GRAPH_MODEL_CHANGED
Defines the name of the graphModelChanged event.
var $graphBounds
Holds the bounds of the current view.
var $gridSize
Specifies the grid size.
- - - -
Holds the height.
var $height
Holds the height of the rectangle.
var $html
Holds the html markup.
- - - -
var $id
Holds the Id.
var $idrefs
Array containing the variable names that should be turned into or converted from references.
var $image
Holds the image.
protected $imageBundles
Holds the list of image bundles.
var $imageCache
Holds the image cache.
var $images
Maps from keys to images.
var $invalid
Specifies if the state is invalid.
- - - -
public static $LABEL_INSET
Defines the inset in absolute pixels between the label bounding box and the label text.
var $labelBounds
Holds the rectangle which contains the label.
var $labelsVisible
Specifies if labels should be visible.
var $length
Caches the length of an edge.
public static $level_debug
Specifies the debug logging level.
public static $level_error
Specifies the error logging level.
public static $level_fine
Specifies the fine logging level.
public static $level_info
Specifies the info logging level.
public static $level_warn
Specifies the warn logging level.
public static $logfiles
Holds the array of logfiles.
public static $Loop
Provides a self-reference, aka.
- -
- - - - - - - - - - - - \ No newline at end of file diff --git a/docs/php-api/index/Variables2.html b/docs/php-api/index/Variables2.html deleted file mode 100644 index 897754d01..000000000 --- a/docs/php-api/index/Variables2.html +++ /dev/null @@ -1,50 +0,0 @@ - - -Variable Index - - - - - - - - - -
Variable Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
M
 maintainEdgeParent, mxGraphModel
 mapping, mxObjectCodec
 MIN_ACTIVE_REGION, mxConstants
 model, mxGraph
N
 name, mxEventObject
 nextId, mxGraphModel
 NONE, mxConstants
 NS_SVG, mxConstants
 NS_XHTML, mxConstants
 NS_XLINK, mxConstants
O
 objects, mxCodec
 offset, mxGeometry
 origin, mxCellState
P
 parent, mxCell
 parser, mxGraphViewImageReader
 perimeter, mxConnectionConstraint
 PERIMETER_ELLIPSE, mxConstants
 PERIMETER_RECTANGLE, mxConstants
 PERIMETER_RHOMBUS, mxConstants
 PERIMETER_TRIANGLE, mxConstants
 point, mxConnectionConstraint
 points, mxGeometry
 printLog, mxLog
 properties, mxEventObject
R
 RAD_PER_DEG, mxConstants
 RectanglePerimeter, mxPerimeter
 relative, mxGeometry
 reverse, mxObjectCodec
 RhombusPerimeter, mxPerimeter
 root, mxGraphModel
- -
var $maintainEdgeParent
Specifies if edges should automatically be moved into the nearest common ancestor of their terminals.
var $mapping
Maps from from fieldnames to XML attribute names.
public static $MIN_ACTIVE_REGION
Defines the minimum size in pixels of the portion of the cell cell which is to be used as a connectable region.
var $model
Holds the mxGraphModel.
- - - -
var $name
Holds the name of the event.
var $nextId
Specifies the next Id to be created.
public static $NONE
Defines the value for none.
public static $NS_SVG
Defines the SVG namespace.
public static $NS_XHTML
Defines the XHTML namespace.
public static $NS_XLINK
Defined the XLink namespace.
- - - -
var $objects
Maps from IDs to objects.
var $offset
Holds the offset of the label for edges.
var $origin
mxPoint that holds the origin for all child cells.
- - - -
var $parent
Reference to the parent cell.
var $parser
Holds the SAX parser.
var $perimeter
Boolean that specifies if the point should be projected onto the perimeter of the terminal.
public static $PERIMETER_ELLIPSE
Name of the ellipse perimeter.
public static $PERIMETER_RECTANGLE
Name of the rectangle perimeter.
public static $PERIMETER_RHOMBUS
Name of the rhombus perimeter.
public static $PERIMETER_TRIANGLE
Name of the triangle perimeter.
var $point
mxPoint that specifies the fixed location of the connection point.
var $points
Array of mxPoints which specifies the control points along the edge.
public static $printLog
Specifies if the log should be printed out.
var $properties
Holds the event properties in an associative array that maps from string (key) to object (value).
- - - -
public static $RAD_PER_DEG
Defines the number of radiants per degree.
public static $RectanglePerimeter
Provides a rectangular perimeter.
var $relative
Specifies if the coordinates in the geometry are to be interpreted as relative coordinates.
var $reverse
Maps from from XML attribute names to fieldnames.
public static $RhombusPerimeter
Provides a rhombus (aka diamond) perimeter.
var $root
Holds the root cell, which in turn contains the cells that represent the layers of the diagram as child cells.
- -
- - - - - - - - - - - - \ No newline at end of file diff --git a/docs/php-api/index/Variables3.html b/docs/php-api/index/Variables3.html deleted file mode 100644 index a0dff0da1..000000000 --- a/docs/php-api/index/Variables3.html +++ /dev/null @@ -1,34 +0,0 @@ - - -Variable Index - - - - - - - - - -
Variable Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
S
 scale
 SCALE, mxEvent
 segments, mxCellState
 SHADOW_OFFSETX, mxConstants
 SHADOW_OFFSETY, mxConstants
 shadowColor, mxGdCanvas
 SHAPE_ACTOR, mxConstants
 SHAPE_ARROW, mxConstants
 SHAPE_CLOUD, mxConstants
 SHAPE_CONNECTOR, mxConstants
 SHAPE_CYLINDER, mxConstants
 SHAPE_DOUBLE_ELLIPSE, mxConstants
 SHAPE_ELLIPSE, mxConstants
 SHAPE_HEXAGON, mxConstants
 SHAPE_IMAGE, mxConstants
 SHAPE_LABEL, mxConstants
 SHAPE_LINE, mxConstants
 SHAPE_RECTANGLE, mxConstants
 SHAPE_RHOMBUS, mxConstants
 SHAPE_SWIMLANE, mxConstants
 SHAPE_TRIANGLE, mxConstants
 SideToSide, mxEdgeStyle
 source, mxCell
 sourcePoint, mxGeometry
 sSTYLE_ENTRY_PERIMETER, mxConstants
 states, mxGraphView
 style
 STYLE_ALIGN, mxConstants
 STYLE_DASHED, mxConstants
 STYLE_DIRECTION, mxConstants
 STYLE_EDGE, mxConstants
 STYLE_ELBOW, mxConstants
 STYLE_ENDARROW, mxConstants
 STYLE_ENDSIZE, mxConstants
 STYLE_ENTRY_X, mxConstants
 STYLE_ENTRY_Y, mxConstants
 STYLE_EXIT_PERIMETER, mxConstants
 STYLE_EXIT_X, mxConstants
 STYLE_EXIT_Y, mxConstants
 STYLE_FILLCOLOR, mxConstants
 STYLE_FONTCOLOR, mxConstants
 STYLE_FONTFAMILY, mxConstants
 STYLE_FONTSIZE, mxConstants
 STYLE_FONTSTYLE, mxConstants
 STYLE_GRADIENT_DIRECTION, mxConstants
 STYLE_GRADIENTCOLOR, mxConstants
 STYLE_HORIZONTAL, mxConstants
 STYLE_IMAGE, mxConstants
 STYLE_IMAGE_ALIGN, mxConstants
 STYLE_IMAGE_BACKGROUND, mxConstants
 STYLE_IMAGE_BORDER, mxConstants
 STYLE_IMAGE_FLIPH, mxConstants
 STYLE_IMAGE_FLIPV, mxConstants
 STYLE_IMAGE_HEIGHT, mxConstants
 STYLE_IMAGE_VERTICALALIGN, mxConstants
 STYLE_IMAGE_WIDTH, mxConstants
 STYLE_INDICATOR_COLOR, mxConstants
 STYLE_INDICATOR_GRADIENTCOLOR, mxConstants
 STYLE_INDICATOR_HEIGHT, mxConstants
 STYLE_INDICATOR_IMAGE, mxConstants
 STYLE_INDICATOR_SHAPE, mxConstants
 STYLE_INDICATOR_SPACING, mxConstants
 STYLE_INDICATOR_WIDTH, mxConstants
 STYLE_LABEL_BACKGROUNDCOLOR, mxConstants
 STYLE_LABEL_BORDERCOLOR, mxConstants
 STYLE_LABEL_POSITION, mxConstants
 STYLE_LOOP, mxConstants
 STYLE_NOEDGESTYLE, mxConstants
 STYLE_NOLABEL, mxConstants
 STYLE_OPACITY, mxConstants
 STYLE_ORTHOGONAL, mxConstants
 STYLE_OVERFLOW, mxConstants
 STYLE_PERIMETER, mxConstants
 STYLE_PERIMETER_SPACING, mxConstants
 STYLE_ROTATION, mxConstants
 STYLE_ROUNDED, mxConstants
 STYLE_ROUTING_CENTER_X, mxConstants
 STYLE_ROUTING_CENTER_Y, mxConstants
 STYLE_SEGMENT, mxConstants
 STYLE_SEPARATORCOLOR, mxConstants
 STYLE_SHADOW, mxConstants
 STYLE_SHAPE, mxConstants
 STYLE_SOURCE_PERIMETER_SPACING, mxConstants
 STYLE_SPACING, mxConstants
 STYLE_SPACING_BOTTOM, mxConstants
 STYLE_SPACING_LEFT, mxConstants
 STYLE_SPACING_RIGHT, mxConstants
 STYLE_SPACING_TOP, mxConstants
 STYLE_STARTARROW, mxConstants
 STYLE_STARTSIZE, mxConstants
 STYLE_STROKECOLOR, mxConstants
 STYLE_STROKEWIDTH, mxConstants
 STYLE_SWIMLANE_FILLCOLOR, mxConstants
 STYLE_SWIMLANE_LINE, mxConstants
 STYLE_TARGET_PERIMETER_SPACING, mxConstants
 STYLE_TEXT_OPACITY, mxConstants
 STYLE_VERTICAL_ALIGN, mxConstants
 STYLE_VERTICAL_LABEL_POSITION, mxConstants
 STYLE_WHITE_SPACE, mxConstants
 stylesheet, mxGraph
- -
var $scale
Holds the current scale.
var $scale
Holds the global scale of the graph.
public static $SCALE
Defines the name of the scale event.
var $segments
Array of numbers that represent the cached length of each segment of the edge.
public static $SHADOW_OFFSETX
Defines the x-offset to be used for shadows.
public static $SHADOW_OFFSETY
Defines the y-offset to be used for shadows.
var $shadowColor
Holds the color object for the shadow color defined in mxConstants.W3C_SHADOWCOLOR.
public static $SHAPE_ACTOR
public static $SHAPE_ARROW
public static $SHAPE_CLOUD
public static $SHAPE_CONNECTOR
public static $SHAPE_CYLINDER
public static $SHAPE_DOUBLE_ELLIPSE
public static $SHAPE_ELLIPSE
public static $SHAPE_HEXAGON
public static $SHAPE_IMAGE
public static $SHAPE_LABEL
public static $SHAPE_LINE
public static $SHAPE_RECTANGLE
public static $SHAPE_RHOMBUS
public static $SHAPE_SWIMLANE
public static $SHAPE_TRIANGLE
public static $SideToSide
Provides a side to side connector.
var $source
Reference to the source terminal.
var $sourcePoint
Defines the source point of the edge.
Defines if the perimeter should be used to find the exact entry point along the perimeter of the target.
var $states
Maps from cells to states.
var $style
Holds the style as a string of the form [(stylename|key=value);].
var $style
Contains an array of key, value pairs that represent the style of the cell.
public static $STYLE_ALIGN
Defines the key for the align style.
public static $STYLE_DASHED
Defines the key for the endSize style.
public static $STYLE_DIRECTION
Defines the key for the direction style.
public static $STYLE_EDGE
Defines the key for the edge style.
public static $STYLE_ELBOW
Defines the key for the elbow style.
public static $STYLE_ENDARROW
Defines the key for the endArrow style.
public static $STYLE_ENDSIZE
Defines the key for the endSize style.
public static $STYLE_ENTRY_X
Defines the key for the horizontal relative coordinate connection point of an edge with its target terminal.
public static $STYLE_ENTRY_Y
Defines the key for the vertical relative coordinate connection point of an edge with its target terminal.
public static $STYLE_EXIT_PERIMETER
Defines if the perimeter should be used to find the exact entry point along the perimeter of the source.
public static $STYLE_EXIT_X
Defines the key for the horizontal relative coordinate connection point of an edge with its source terminal.
public static $STYLE_EXIT_Y
Defines the key for the vertical relative coordinate connection point of an edge with its source terminal.
public static $STYLE_FILLCOLOR
Defines the key for the fill color.
public static $STYLE_FONTCOLOR
Defines the key for the fontColor style.
public static $STYLE_FONTFAMILY
Defines the key for the fontFamily style.
public static $STYLE_FONTSIZE
Defines the key for the fontSize style (in px).
public static $STYLE_FONTSTYLE
Defines the key for the fontStyle style.
public static $STYLE_GRADIENT_DIRECTION
Defines the key for the gradient direction.
public static $STYLE_GRADIENTCOLOR
Defines the key for the gradient color.
public static $STYLE_HORIZONTAL
Defines the key for the horizontal style.
public static $STYLE_IMAGE
Defines the key for the image style.
public static $STYLE_IMAGE_ALIGN
Defines the key for the align style.
public static $STYLE_IMAGE_BACKGROUND
Defines the key for the image background color.
public static $STYLE_IMAGE_BORDER
Defines the key for the image border color.
public static $STYLE_IMAGE_FLIPH
Defines the key for the horizontal image flip.
public static $STYLE_IMAGE_FLIPV
Defines the key for the vertical image flip.
public static $STYLE_IMAGE_HEIGHT
Defines the key for the imageHeight style.
Defines the key for the verticalAlign style.
public static $STYLE_IMAGE_WIDTH
Defines the key for the imageWidth style.
public static $STYLE_INDICATOR_COLOR
Defines the key for the indicatorColor style.
public static $STYLE_INDICATOR_GRADIENTCOLOR
Defines the key for the indicatorGradientColor style.
public static $STYLE_INDICATOR_HEIGHT
Defines the key for the indicatorHeight style (in px).
public static $STYLE_INDICATOR_IMAGE
Defines the key for the indicatorImage style.
public static $STYLE_INDICATOR_SHAPE
Defines the key for the indicatorShape style.
public static $STYLE_INDICATOR_SPACING
Defines the key for the indicatorSpacing style (in px).
public static $STYLE_INDICATOR_WIDTH
Defines the key for the indicatorWidth style (in px).
public static $STYLE_LABEL_BACKGROUNDCOLOR
Defines the key for the label background color.
public static $STYLE_LABEL_BORDERCOLOR
Defines the key for the label border color.
public static $STYLE_LABEL_POSITION
Defines the key for the horizontal label position of vertices.
public static $STYLE_LOOP
Defines the key for the loop style.
public static $STYLE_NOEDGESTYLE
Defines the key for the noEdgeStyle style.
public static $STYLE_NOLABEL
Defines the key for the noLabel style.
public static $STYLE_OPACITY
Defines the key for the opacity style.
public static $STYLE_ORTHOGONAL
Defines if the connection points on either end of the edge should be computed so that the edge is vertical or horizontal if possible and if the point is not at a fixed location.
public static $STYLE_OVERFLOW
Defines the key for the overflow style.
public static $STYLE_PERIMETER
Defines the key for the perimeter style.
public static $STYLE_PERIMETER_SPACING
Defines the key for the perimeter spacing.
public static $STYLE_ROTATION
Defines the key for the rotation style.
public static $STYLE_ROUNDED
Defines the key for the rounded style.
public static $STYLE_ROUTING_CENTER_X
Defines the key for the horizontal routing center.
public static $STYLE_ROUTING_CENTER_Y
Defines the key for the vertical routing center.
public static $STYLE_SEGMENT
Defines the key for the segment style.
public static $STYLE_SEPARATORCOLOR
Defines the key for the separatorColor style.
public static $STYLE_SHADOW
Defines the key for the shadow style.
public static $STYLE_SHAPE
Defines the key for the shape.
public static $STYLE_SOURCE_PERIMETER_SPACING
Defines the key for the source perimeter spacing.
public static $STYLE_SPACING
Defines the key for the spacing.
public static $STYLE_SPACING_BOTTOM
Defines the key for the spacingBottom style The value represents the spacing, in pixels, added to the bottom side of a label in a vertex (style applies to vertices only).
public static $STYLE_SPACING_LEFT
Defines the key for the spacingLeft style.
public static $STYLE_SPACING_RIGHT
Defines the key for the spacingRight style The value represents the spacing, in pixels, added to the right side of a label in a vertex (style applies to vertices only).
public static $STYLE_SPACING_TOP
Defines the key for the spacingTop style.
public static $STYLE_STARTARROW
Defines the key for the startArrow style.
public static $STYLE_STARTSIZE
Defines the key for the startSize style.
public static $STYLE_STROKECOLOR
Defines the key for the strokeColor style.
public static $STYLE_STROKEWIDTH
Defines the key for the strokeWidth style.
public static $STYLE_SWIMLANE_FILLCOLOR
Defines the key for the fill color of the swimlane background.
public static $STYLE_SWIMLANE_LINE
Defines the key for the swimlaneLine style.
public static $STYLE_TARGET_PERIMETER_SPACING
Defines the key for the source perimeter spacing.
public static $STYLE_TEXT_OPACITY
Defines the key for the text opacity style.
public static $STYLE_VERTICAL_ALIGN
Defines the key for the verticalAlign style.
public static $STYLE_VERTICAL_LABEL_POSITION
Defines the key for the vertical label position of vertices.
public static $STYLE_WHITE_SPACE
Defines the key for the white-space style.
var $stylesheet
Holds the mxStylesheet.
- -
- - - - - - - - - - - - \ No newline at end of file diff --git a/docs/php-api/index/Variables4.html b/docs/php-api/index/Variables4.html deleted file mode 100644 index 3709263d1..000000000 --- a/docs/php-api/index/Variables4.html +++ /dev/null @@ -1,54 +0,0 @@ - - -Variable Index - - - - - - - - - -
Variable Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
T
 tab, mxLog
 target, mxCell
 targetPoint, mxGeometry
 template, mxObjectCodec
 terminalDistance, mxCellState
 TopToBottom, mxEdgeStyle
 translate, mxGraphView
 TRANSLATE, mxEvent
 TRANSLATE_CONTROL_POINTS, mxGeometry
 TrianglePerimeter, mxPerimeter
 TTF_ENABLED, mxConstants
 TTF_SIZEFACTOR, mxConstants
U
 updateLevel, mxGraphModel
V
 value, mxCell
 values, mxStyleRegistry
 vertex, mxCell
 view
 visible, mxCell
W
 W3C_DEFAULT_FONTFAMILY, mxConstants
 W3C_SHADOWCOLOR, mxConstants
 width, mxRectangle
X
 x, mxPoint
Y
 y, mxPoint
- -
public static $tab
Default is true.
var $target
Reference to the target terminal.
var $targetPoint
Defines the target point of the edge.
var $template
Holds the template object associated with this codec.
var $terminalDistance
Caches the distance between the end points for an edge.
public static $TopToBottom
Provides a top to bottom connector.
var $translate
Holds the current translate.
public static $TRANSLATE
Defines the name of the translate event.
public static $TRANSLATE_CONTROL_POINTS
Global switch to translate the points in translate.
public static $TrianglePerimeter
Provides a triangle perimeter.
public static $TTF_ENABLED
Whether TrueType fonts should be enabled in the mxGdCanvas by default.
public static $TTF_SIZEFACTOR
Defines the factor which wich the font sizes are to be multiplied when used in truetype fonts.
- - - -
var $updateLevel
Counter for the depth of nested transactions.
- - - -
var $value
Holds the user object.
public static $values
Maps from strings to objects.
var $vertex
Specifies whether the cell is a vertex.
var $view
Reference to the enclosing mxGraphView.
var $view
Holds the mxGraphView.
var $visible
Specifies whether the cell is visible.
- - - -
public static $W3C_DEFAULT_FONTFAMILY
Defines the default family for HTML markup.
public static $W3C_SHADOWCOLOR
Defines the color to be used to draw shadows in DOM documents.
var $width
Holds the width of the rectangle.
- - - -
var $x
Holds the x-coordinate of the point.
- - - -
var $y
Holds the y-coordinate of the point.
- -
- - - - - - - - - - - - \ No newline at end of file diff --git a/docs/php-api/javascript/main.js b/docs/php-api/javascript/main.js deleted file mode 100644 index 3f42acde6..000000000 --- a/docs/php-api/javascript/main.js +++ /dev/null @@ -1,841 +0,0 @@ -// This file is part of Natural Docs, which is Copyright © 2003-2010 Greg Valure -// Natural Docs is licensed under version 3 of the GNU Affero General Public License (AGPL) -// Refer to License.txt for the complete details - -// This file may be distributed with documentation files generated by Natural Docs. -// Such documentation is not covered by Natural Docs' copyright and licensing, -// and may have its own copyright and distribution terms as decided by its author. - - -// -// Browser Styles -// ____________________________________________________________________________ - -var agt=navigator.userAgent.toLowerCase(); -var browserType; -var browserVer; - -if (agt.indexOf("opera") != -1) - { - browserType = "Opera"; - - if (agt.indexOf("opera 7") != -1 || agt.indexOf("opera/7") != -1) - { browserVer = "Opera7"; } - else if (agt.indexOf("opera 8") != -1 || agt.indexOf("opera/8") != -1) - { browserVer = "Opera8"; } - else if (agt.indexOf("opera 9") != -1 || agt.indexOf("opera/9") != -1) - { browserVer = "Opera9"; } - } - -else if (agt.indexOf("applewebkit") != -1) - { - browserType = "Safari"; - - if (agt.indexOf("version/3") != -1) - { browserVer = "Safari3"; } - else if (agt.indexOf("safari/4") != -1) - { browserVer = "Safari2"; } - } - -else if (agt.indexOf("khtml") != -1) - { - browserType = "Konqueror"; - } - -else if (agt.indexOf("msie") != -1) - { - browserType = "IE"; - - if (agt.indexOf("msie 6") != -1) - { browserVer = "IE6"; } - else if (agt.indexOf("msie 7") != -1) - { browserVer = "IE7"; } - } - -else if (agt.indexOf("gecko") != -1) - { - browserType = "Firefox"; - - if (agt.indexOf("rv:1.7") != -1) - { browserVer = "Firefox1"; } - else if (agt.indexOf("rv:1.8)") != -1 || agt.indexOf("rv:1.8.0") != -1) - { browserVer = "Firefox15"; } - else if (agt.indexOf("rv:1.8.1") != -1) - { browserVer = "Firefox2"; } - } - - -// -// Support Functions -// ____________________________________________________________________________ - - -function GetXPosition(item) - { - var position = 0; - - if (item.offsetWidth != null) - { - while (item != document.body && item != null) - { - position += item.offsetLeft; - item = item.offsetParent; - }; - }; - - return position; - }; - - -function GetYPosition(item) - { - var position = 0; - - if (item.offsetWidth != null) - { - while (item != document.body && item != null) - { - position += item.offsetTop; - item = item.offsetParent; - }; - }; - - return position; - }; - - -function MoveToPosition(item, x, y) - { - // Opera 5 chokes on the px extension, so it can use the Microsoft one instead. - - if (item.style.left != null) - { - item.style.left = x + "px"; - item.style.top = y + "px"; - } - else if (item.style.pixelLeft != null) - { - item.style.pixelLeft = x; - item.style.pixelTop = y; - }; - }; - - -// -// Menu -// ____________________________________________________________________________ - - -function ToggleMenu(id) - { - if (!window.document.getElementById) - { return; }; - - var display = window.document.getElementById(id).style.display; - - if (display == "none") - { display = "block"; } - else - { display = "none"; } - - window.document.getElementById(id).style.display = display; - } - -function HideAllBut(ids, max) - { - if (document.getElementById) - { - ids.sort( function(a,b) { return a - b; } ); - var number = 1; - - while (number < max) - { - if (ids.length > 0 && number == ids[0]) - { ids.shift(); } - else - { - document.getElementById("MGroupContent" + number).style.display = "none"; - }; - - number++; - }; - }; - } - - -// -// Tooltips -// ____________________________________________________________________________ - - -var tooltipTimer = 0; - -function ShowTip(event, tooltipID, linkID) - { - if (tooltipTimer) - { clearTimeout(tooltipTimer); }; - - var docX = event.clientX + window.pageXOffset; - var docY = event.clientY + window.pageYOffset; - - var showCommand = "ReallyShowTip('" + tooltipID + "', '" + linkID + "', " + docX + ", " + docY + ")"; - - tooltipTimer = setTimeout(showCommand, 1000); - } - -function ReallyShowTip(tooltipID, linkID, docX, docY) - { - tooltipTimer = 0; - - var tooltip; - var link; - - if (document.getElementById) - { - tooltip = document.getElementById(tooltipID); - link = document.getElementById(linkID); - } -/* else if (document.all) - { - tooltip = eval("document.all['" + tooltipID + "']"); - link = eval("document.all['" + linkID + "']"); - } -*/ - if (tooltip) - { - var left = GetXPosition(link); - var top = GetYPosition(link); - top += link.offsetHeight; - - - // The fallback method is to use the mouse X and Y relative to the document. We use a separate if and test if its a number - // in case some browser snuck through the above if statement but didn't support everything. - - if (!isFinite(top) || top == 0) - { - left = docX; - top = docY; - } - - // Some spacing to get it out from under the cursor. - - top += 10; - - // Make sure the tooltip doesnt get smushed by being too close to the edge, or in some browsers, go off the edge of the - // page. We do it here because Konqueror does get offsetWidth right even if it doesnt get the positioning right. - - if (tooltip.offsetWidth != null) - { - var width = tooltip.offsetWidth; - var docWidth = document.body.clientWidth; - - if (left + width > docWidth) - { left = docWidth - width - 1; } - - // If there's a horizontal scroll bar we could go past zero because it's using the page width, not the window width. - if (left < 0) - { left = 0; }; - } - - MoveToPosition(tooltip, left, top); - tooltip.style.visibility = "visible"; - } - } - -function HideTip(tooltipID) - { - if (tooltipTimer) - { - clearTimeout(tooltipTimer); - tooltipTimer = 0; - } - - var tooltip; - - if (document.getElementById) - { tooltip = document.getElementById(tooltipID); } - else if (document.all) - { tooltip = eval("document.all['" + tooltipID + "']"); } - - if (tooltip) - { tooltip.style.visibility = "hidden"; } - } - - -// -// Blockquote fix for IE -// ____________________________________________________________________________ - - -function NDOnLoad() - { - if (browserVer == "IE6") - { - var scrollboxes = document.getElementsByTagName('blockquote'); - - if (scrollboxes.item(0)) - { - NDDoResize(); - window.onresize=NDOnResize; - }; - }; - }; - - -var resizeTimer = 0; - -function NDOnResize() - { - if (resizeTimer != 0) - { clearTimeout(resizeTimer); }; - - resizeTimer = setTimeout(NDDoResize, 250); - }; - - -function NDDoResize() - { - var scrollboxes = document.getElementsByTagName('blockquote'); - - var i; - var item; - - i = 0; - while (item = scrollboxes.item(i)) - { - item.style.width = 100; - i++; - }; - - i = 0; - while (item = scrollboxes.item(i)) - { - item.style.width = item.parentNode.offsetWidth; - i++; - }; - - clearTimeout(resizeTimer); - resizeTimer = 0; - } - - - -/* ________________________________________________________________________________________________________ - - Class: SearchPanel - ________________________________________________________________________________________________________ - - A class handling everything associated with the search panel. - - Parameters: - - name - The name of the global variable that will be storing this instance. Is needed to be able to set timeouts. - mode - The mode the search is going to work in. Pass CommandLineOption()>, so the - value will be something like "HTML" or "FramedHTML". - - ________________________________________________________________________________________________________ -*/ - - -function SearchPanel(name, mode, resultsPath) - { - if (!name || !mode || !resultsPath) - { alert("Incorrect parameters to SearchPanel."); }; - - - // Group: Variables - // ________________________________________________________________________ - - /* - var: name - The name of the global variable that will be storing this instance of the class. - */ - this.name = name; - - /* - var: mode - The mode the search is going to work in, such as "HTML" or "FramedHTML". - */ - this.mode = mode; - - /* - var: resultsPath - The relative path from the current HTML page to the results page directory. - */ - this.resultsPath = resultsPath; - - /* - var: keyTimeout - The timeout used between a keystroke and when a search is performed. - */ - this.keyTimeout = 0; - - /* - var: keyTimeoutLength - The length of in thousandths of a second. - */ - this.keyTimeoutLength = 500; - - /* - var: lastSearchValue - The last search string executed, or an empty string if none. - */ - this.lastSearchValue = ""; - - /* - var: lastResultsPage - The last results page. The value is only relevant if is set. - */ - this.lastResultsPage = ""; - - /* - var: deactivateTimeout - - The timeout used between when a control is deactivated and when the entire panel is deactivated. Is necessary - because a control may be deactivated in favor of another control in the same panel, in which case it should stay - active. - */ - this.deactivateTimout = 0; - - /* - var: deactivateTimeoutLength - The length of in thousandths of a second. - */ - this.deactivateTimeoutLength = 200; - - - - - // Group: DOM Elements - // ________________________________________________________________________ - - - // Function: DOMSearchField - this.DOMSearchField = function() - { return document.getElementById("MSearchField"); }; - - // Function: DOMSearchType - this.DOMSearchType = function() - { return document.getElementById("MSearchType"); }; - - // Function: DOMPopupSearchResults - this.DOMPopupSearchResults = function() - { return document.getElementById("MSearchResults"); }; - - // Function: DOMPopupSearchResultsWindow - this.DOMPopupSearchResultsWindow = function() - { return document.getElementById("MSearchResultsWindow"); }; - - // Function: DOMSearchPanel - this.DOMSearchPanel = function() - { return document.getElementById("MSearchPanel"); }; - - - - - // Group: Event Handlers - // ________________________________________________________________________ - - - /* - Function: OnSearchFieldFocus - Called when focus is added or removed from the search field. - */ - this.OnSearchFieldFocus = function(isActive) - { - this.Activate(isActive); - }; - - - /* - Function: OnSearchFieldChange - Called when the content of the search field is changed. - */ - this.OnSearchFieldChange = function() - { - if (this.keyTimeout) - { - clearTimeout(this.keyTimeout); - this.keyTimeout = 0; - }; - - var searchValue = this.DOMSearchField().value.replace(/ +/g, ""); - - if (searchValue != this.lastSearchValue) - { - if (searchValue != "") - { - this.keyTimeout = setTimeout(this.name + ".Search()", this.keyTimeoutLength); - } - else - { - if (this.mode == "HTML") - { this.DOMPopupSearchResultsWindow().style.display = "none"; }; - this.lastSearchValue = ""; - }; - }; - }; - - - /* - Function: OnSearchTypeFocus - Called when focus is added or removed from the search type. - */ - this.OnSearchTypeFocus = function(isActive) - { - this.Activate(isActive); - }; - - - /* - Function: OnSearchTypeChange - Called when the search type is changed. - */ - this.OnSearchTypeChange = function() - { - var searchValue = this.DOMSearchField().value.replace(/ +/g, ""); - - if (searchValue != "") - { - this.Search(); - }; - }; - - - - // Group: Action Functions - // ________________________________________________________________________ - - - /* - Function: CloseResultsWindow - Closes the results window. - */ - this.CloseResultsWindow = function() - { - this.DOMPopupSearchResultsWindow().style.display = "none"; - this.Activate(false, true); - }; - - - /* - Function: Search - Performs a search. - */ - this.Search = function() - { - this.keyTimeout = 0; - - var searchValue = this.DOMSearchField().value.replace(/^ +/, ""); - var searchTopic = this.DOMSearchType().value; - - var pageExtension = searchValue.substr(0,1); - - if (pageExtension.match(/^[a-z]/i)) - { pageExtension = pageExtension.toUpperCase(); } - else if (pageExtension.match(/^[0-9]/)) - { pageExtension = 'Numbers'; } - else - { pageExtension = "Symbols"; }; - - var resultsPage; - var resultsPageWithSearch; - var hasResultsPage; - - // indexSectionsWithContent is defined in searchdata.js - if (indexSectionsWithContent[searchTopic][pageExtension] == true) - { - resultsPage = this.resultsPath + '/' + searchTopic + pageExtension + '.html'; - resultsPageWithSearch = resultsPage+'?'+escape(searchValue); - hasResultsPage = true; - } - else - { - resultsPage = this.resultsPath + '/NoResults.html'; - resultsPageWithSearch = resultsPage; - hasResultsPage = false; - }; - - var resultsFrame; - if (this.mode == "HTML") - { resultsFrame = window.frames.MSearchResults; } - else if (this.mode == "FramedHTML") - { resultsFrame = window.top.frames['Content']; }; - - - if (resultsPage != this.lastResultsPage || - - // Bug in IE. If everything becomes hidden in a run, none of them will be able to be reshown in the next for some - // reason. It counts the right number of results, and you can even read the display as "block" after setting it, but it - // just doesn't work in IE 6 or IE 7. So if we're on the right page but the previous search had no results, reload the - // page anyway to get around the bug. - (browserType == "IE" && hasResultsPage && - (!resultsFrame.searchResults || resultsFrame.searchResults.lastMatchCount == 0)) ) - - { - resultsFrame.location.href = resultsPageWithSearch; - } - - // So if the results page is right and there's no IE bug, reperform the search on the existing page. We have to check if there - // are results because NoResults.html doesn't have any JavaScript, and it would be useless to do anything on that page even - // if it did. - else if (hasResultsPage) - { - // We need to check if this exists in case the frame is present but didn't finish loading. - if (resultsFrame.searchResults) - { resultsFrame.searchResults.Search(searchValue); } - - // Otherwise just reload instead of waiting. - else - { resultsFrame.location.href = resultsPageWithSearch; }; - }; - - - var domPopupSearchResultsWindow = this.DOMPopupSearchResultsWindow(); - - if (this.mode == "HTML" && domPopupSearchResultsWindow.style.display != "block") - { - var domSearchType = this.DOMSearchType(); - - var left = GetXPosition(domSearchType); - var top = GetYPosition(domSearchType) + domSearchType.offsetHeight; - - MoveToPosition(domPopupSearchResultsWindow, left, top); - domPopupSearchResultsWindow.style.display = 'block'; - }; - - - this.lastSearchValue = searchValue; - this.lastResultsPage = resultsPage; - }; - - - - // Group: Activation Functions - // Functions that handle whether the entire panel is active or not. - // ________________________________________________________________________ - - - /* - Function: Activate - - Activates or deactivates the search panel, resetting things to their default values if necessary. You can call this on every - control's OnBlur() and it will handle not deactivating the entire panel when focus is just switching between them transparently. - - Parameters: - - isActive - Whether you're activating or deactivating the panel. - ignoreDeactivateDelay - Set if you're positive the action will deactivate the panel and thus want to skip the delay. - */ - this.Activate = function(isActive, ignoreDeactivateDelay) - { - // We want to ignore isActive being false while the results window is open. - if (isActive || (this.mode == "HTML" && this.DOMPopupSearchResultsWindow().style.display == "block")) - { - if (this.inactivateTimeout) - { - clearTimeout(this.inactivateTimeout); - this.inactivateTimeout = 0; - }; - - this.DOMSearchPanel().className = 'MSearchPanelActive'; - - var searchField = this.DOMSearchField(); - - if (searchField.value == 'Search') - { searchField.value = ""; } - } - else if (!ignoreDeactivateDelay) - { - this.inactivateTimeout = setTimeout(this.name + ".InactivateAfterTimeout()", this.inactivateTimeoutLength); - } - else - { - this.InactivateAfterTimeout(); - }; - }; - - - /* - Function: InactivateAfterTimeout - - Called by , which is set by . Inactivation occurs on a timeout because a control may - receive OnBlur() when focus is really transferring to another control in the search panel. In this case we don't want to - actually deactivate the panel because not only would that cause a visible flicker but it could also reset the search value. - So by doing it on a timeout instead, there's a short period where the second control's OnFocus() can cancel the deactivation. - */ - this.InactivateAfterTimeout = function() - { - this.inactivateTimeout = 0; - - this.DOMSearchPanel().className = 'MSearchPanelInactive'; - this.DOMSearchField().value = "Search"; - - this.lastSearchValue = ""; - this.lastResultsPage = ""; - }; - }; - - - - -/* ________________________________________________________________________________________________________ - - Class: SearchResults - _________________________________________________________________________________________________________ - - The class that handles everything on the search results page. - _________________________________________________________________________________________________________ -*/ - - -function SearchResults(name, mode) - { - /* - var: mode - The mode the search is going to work in, such as "HTML" or "FramedHTML". - */ - this.mode = mode; - - /* - var: lastMatchCount - The number of matches from the last run of . - */ - this.lastMatchCount = 0; - - - /* - Function: Toggle - Toggles the visibility of the passed element ID. - */ - this.Toggle = function(id) - { - if (this.mode == "FramedHTML") - { return; }; - - var parentElement = document.getElementById(id); - - var element = parentElement.firstChild; - - while (element && element != parentElement) - { - if (element.nodeName == 'DIV' && element.className == 'ISubIndex') - { - if (element.style.display == 'block') - { element.style.display = "none"; } - else - { element.style.display = 'block'; } - }; - - if (element.nodeName == 'DIV' && element.hasChildNodes()) - { element = element.firstChild; } - else if (element.nextSibling) - { element = element.nextSibling; } - else - { - do - { - element = element.parentNode; - } - while (element && element != parentElement && !element.nextSibling); - - if (element && element != parentElement) - { element = element.nextSibling; }; - }; - }; - }; - - - /* - Function: Search - - Searches for the passed string. If there is no parameter, it takes it from the URL query. - - Always returns true, since other documents may try to call it and that may or may not be possible. - */ - this.Search = function(search) - { - if (!search) - { - search = window.location.search; - search = search.substring(1); // Remove the leading ? - search = unescape(search); - }; - - search = search.replace(/^ +/, ""); - search = search.replace(/ +$/, ""); - search = search.toLowerCase(); - - if (search.match(/[^a-z0-9]/)) // Just a little speedup so it doesn't have to go through the below unnecessarily. - { - search = search.replace(/\_/g, "_und"); - search = search.replace(/\ +/gi, "_spc"); - search = search.replace(/\~/g, "_til"); - search = search.replace(/\!/g, "_exc"); - search = search.replace(/\@/g, "_att"); - search = search.replace(/\#/g, "_num"); - search = search.replace(/\$/g, "_dol"); - search = search.replace(/\%/g, "_pct"); - search = search.replace(/\^/g, "_car"); - search = search.replace(/\&/g, "_amp"); - search = search.replace(/\*/g, "_ast"); - search = search.replace(/\(/g, "_lpa"); - search = search.replace(/\)/g, "_rpa"); - search = search.replace(/\-/g, "_min"); - search = search.replace(/\+/g, "_plu"); - search = search.replace(/\=/g, "_equ"); - search = search.replace(/\{/g, "_lbc"); - search = search.replace(/\}/g, "_rbc"); - search = search.replace(/\[/g, "_lbk"); - search = search.replace(/\]/g, "_rbk"); - search = search.replace(/\:/g, "_col"); - search = search.replace(/\;/g, "_sco"); - search = search.replace(/\"/g, "_quo"); - search = search.replace(/\'/g, "_apo"); - search = search.replace(/\/g, "_ran"); - search = search.replace(/\,/g, "_com"); - search = search.replace(/\./g, "_per"); - search = search.replace(/\?/g, "_que"); - search = search.replace(/\//g, "_sla"); - search = search.replace(/[^a-z0-9\_]i/gi, "_zzz"); - }; - - var resultRows = document.getElementsByTagName("div"); - var matches = 0; - - var i = 0; - while (i < resultRows.length) - { - var row = resultRows.item(i); - - if (row.className == "SRResult") - { - var rowMatchName = row.id.toLowerCase(); - rowMatchName = rowMatchName.replace(/^sr\d*_/, ''); - - if (search.length <= rowMatchName.length && rowMatchName.substr(0, search.length) == search) - { - row.style.display = "block"; - matches++; - } - else - { row.style.display = "none"; }; - }; - - i++; - }; - - document.getElementById("Searching").style.display="none"; - - if (matches == 0) - { document.getElementById("NoMatches").style.display="block"; } - else - { document.getElementById("NoMatches").style.display="none"; } - - this.lastMatchCount = matches; - - return true; - }; - }; - diff --git a/docs/php-api/javascript/prettify.js b/docs/php-api/javascript/prettify.js deleted file mode 100644 index fda4bf1ed..000000000 --- a/docs/php-api/javascript/prettify.js +++ /dev/null @@ -1,1526 +0,0 @@ - -// This code comes from the December 2009 release of Google Prettify, which is Copyright © 2006 Google Inc. -// Minor modifications are marked with "ND Change" comments. -// As part of Natural Docs, this code is licensed under version 3 of the GNU Affero General Public License (AGPL.) -// However, it may also be obtained separately under version 2.0 of the Apache License. -// Refer to License.txt for the complete details - - -// Main code -// ____________________________________________________________________________ - -// Copyright (C) 2006 Google Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - - -/** - * @fileoverview - * some functions for browser-side pretty printing of code contained in html. - *

- * - * For a fairly comprehensive set of languages see the - * README - * file that came with this source. At a minimum, the lexer should work on a - * number of languages including C and friends, Java, Python, Bash, SQL, HTML, - * XML, CSS, Javascript, and Makefiles. It works passably on Ruby, PHP and Awk - * and a subset of Perl, but, because of commenting conventions, doesn't work on - * Smalltalk, Lisp-like, or CAML-like languages without an explicit lang class. - *

- * Usage:

    - *
  1. include this source file in an html page via - * {@code } - *
  2. define style rules. See the example page for examples. - *
  3. mark the {@code
    } and {@code } tags in your source with
    - *    {@code class=prettyprint.}
    - *    You can also use the (html deprecated) {@code } tag, but the pretty
    - *    printer needs to do more substantial DOM manipulations to support that, so
    - *    some css styles may not be preserved.
    - * </ol>
    - * That's it.  I wanted to keep the API as simple as possible, so there's no
    - * need to specify which language the code is in, but if you wish, you can add
    - * another class to the {@code <pre>} or {@code <code>} element to specify the
    - * language, as in {@code <pre class="prettyprint lang-java">}.  Any class that
    - * starts with "lang-" followed by a file extension, specifies the file type.
    - * See the "lang-*.js" files in this directory for code that implements
    - * per-language file handlers.
    - * <p>
    - * Change log:<br>
    - * cbeust, 2006/08/22
    - * <blockquote>
    - *   Java annotations (start with "@") are now captured as literals ("lit")
    - * </blockquote>
    - * @requires console
    - * @overrides window
    - */
    -
    -// JSLint declarations
    -/*global console, document, navigator, setTimeout, window */
    -
    -/**
    - * Split {@code prettyPrint} into multiple timeouts so as not to interfere with
    - * UI events.
    - * If set to {@code false}, {@code prettyPrint()} is synchronous.
    - */
    -window['PR_SHOULD_USE_CONTINUATION'] = true;
    -
    -/** the number of characters between tab columns */
    -window['PR_TAB_WIDTH'] = 8;
    -
    -/** Walks the DOM returning a properly escaped version of innerHTML.
    -  * @param {Node} node
    -  * @param {Array.<string>} out output buffer that receives chunks of HTML.
    -  */
    -window['PR_normalizedHtml']
    -
    -/** Contains functions for creating and registering new language handlers.
    -  * @type {Object}
    -  */
    -  = window['PR']
    -
    -/** Pretty print a chunk of code.
    -  *
    -  * @param {string} sourceCodeHtml code as html
    -  * @return {string} code as html, but prettier
    -  */
    -  = window['prettyPrintOne']
    -/** Find all the {@code <pre>} and {@code <code>} tags in the DOM with
    -  * {@code class=prettyprint} and prettify them.
    -  * @param {Function?} opt_whenDone if specified, called when the last entry
    -  *     has been finished.
    -  */
    -  = window['prettyPrint'] = void 0;
    -
    -/** browser detection. @extern @returns false if not IE, otherwise the major version. */
    -window['_pr_isIE6'] = function () {
    -  var ieVersion = navigator && navigator.userAgent &&
    -      navigator.userAgent.match(/\bMSIE ([678])\./);
    -  ieVersion = ieVersion ? +ieVersion[1] : false;
    -  window['_pr_isIE6'] = function () { return ieVersion; };
    -  return ieVersion;
    -};
    -
    -
    -(function () {
    -  // Keyword lists for various languages.
    -  var FLOW_CONTROL_KEYWORDS =
    -      "break continue do else for if return while ";
    -  var C_KEYWORDS = FLOW_CONTROL_KEYWORDS + "auto case char const default " +
    -      "double enum extern float goto int long register short signed sizeof " +
    -      "static struct switch typedef union unsigned void volatile ";
    -  var COMMON_KEYWORDS = C_KEYWORDS + "catch class delete false import " +
    -      "new operator private protected public this throw true try typeof ";
    -  var CPP_KEYWORDS = COMMON_KEYWORDS + "alignof align_union asm axiom bool " +
    -      "concept concept_map const_cast constexpr decltype " +
    -      "dynamic_cast explicit export friend inline late_check " +
    -      "mutable namespace nullptr reinterpret_cast static_assert static_cast " +
    -      "template typeid typename using virtual wchar_t where ";
    -  var JAVA_KEYWORDS = COMMON_KEYWORDS +
    -      "abstract boolean byte extends final finally implements import " +
    -      "instanceof null native package strictfp super synchronized throws " +
    -      "transient ";
    -  var CSHARP_KEYWORDS = JAVA_KEYWORDS +
    -      "as base by checked decimal delegate descending event " +
    -      "fixed foreach from group implicit in interface internal into is lock " +
    -      "object out override orderby params partial readonly ref sbyte sealed " +
    -      "stackalloc string select uint ulong unchecked unsafe ushort var ";
    -  var JSCRIPT_KEYWORDS = COMMON_KEYWORDS +
    -      "debugger eval export function get null set undefined var with " +
    -      "Infinity NaN ";
    -  var PERL_KEYWORDS = "caller delete die do dump elsif eval exit foreach for " +
    -      "goto if import last local my next no our print package redo require " +
    -      "sub undef unless until use wantarray while BEGIN END ";
    -  var PYTHON_KEYWORDS = FLOW_CONTROL_KEYWORDS + "and as assert class def del " +
    -      "elif except exec finally from global import in is lambda " +
    -      "nonlocal not or pass print raise try with yield " +
    -      "False True None ";
    -  var RUBY_KEYWORDS = FLOW_CONTROL_KEYWORDS + "alias and begin case class def" +
    -      " defined elsif end ensure false in module next nil not or redo rescue " +
    -      "retry self super then true undef unless until when yield BEGIN END ";
    -  var SH_KEYWORDS = FLOW_CONTROL_KEYWORDS + "case done elif esac eval fi " +
    -      "function in local set then until ";
    -  var ALL_KEYWORDS = (
    -      CPP_KEYWORDS + CSHARP_KEYWORDS + JSCRIPT_KEYWORDS + PERL_KEYWORDS +
    -      PYTHON_KEYWORDS + RUBY_KEYWORDS + SH_KEYWORDS);
    -
    -  // token style names.  correspond to css classes
    -  /** token style for a string literal */
    -  var PR_STRING = 'str';
    -  /** token style for a keyword */
    -  var PR_KEYWORD = 'kwd';
    -  /** token style for a comment */
    -  var PR_COMMENT = 'com';
    -  /** token style for a type */
    -  var PR_TYPE = 'typ';
    -  /** token style for a literal value.  e.g. 1, null, true. */
    -  var PR_LITERAL = 'lit';
    -  /** token style for a punctuation string. */
    -  var PR_PUNCTUATION = 'pun';
    -  /** token style for a punctuation string. */
    -  var PR_PLAIN = 'pln';
    -
    -  /** token style for an sgml tag. */
    -  var PR_TAG = 'tag';
    -  /** token style for a markup declaration such as a DOCTYPE. */
    -  var PR_DECLARATION = 'dec';
    -  /** token style for embedded source. */
    -  var PR_SOURCE = 'src';
    -  /** token style for an sgml attribute name. */
    -  var PR_ATTRIB_NAME = 'atn';
    -  /** token style for an sgml attribute value. */
    -  var PR_ATTRIB_VALUE = 'atv';
    -
    -  /**
    -   * A class that indicates a section of markup that is not code, e.g. to allow
    -   * embedding of line numbers within code listings.
    -   */
    -  var PR_NOCODE = 'nocode';
    -
    -  /** A set of tokens that can precede a regular expression literal in
    -    * javascript.
    -    * http://www.mozilla.org/js/language/js20/rationale/syntax.html has the full
    -    * list, but I've removed ones that might be problematic when seen in
    -    * languages that don't support regular expression literals.
    -    *
    -    * <p>Specifically, I've removed any keywords that can't precede a regexp
    -    * literal in a syntactically legal javascript program, and I've removed the
    -    * "in" keyword since it's not a keyword in many languages, and might be used
    -    * as a count of inches.
    -    *
    -    * <p>The link a above does not accurately describe EcmaScript rules since
    -    * it fails to distinguish between (a=++/b/i) and (a++/b/i) but it works
    -    * very well in practice.
    -    *
    -    * @private
    -    */
    -  var REGEXP_PRECEDER_PATTERN = function () {
    -      var preceders = [
    -          "!", "!=", "!==", "#", "%", "%=", "&", "&&", "&&=",
    -          "&=", "(", "*", "*=", /* "+", */ "+=", ",", /* "-", */ "-=",
    -          "->", /*".", "..", "...", handled below */ "/", "/=", ":", "::", ";",
    -          "<", "<<", "<<=", "<=", "=", "==", "===", ">",
    -          ">=", ">>", ">>=", ">>>", ">>>=", "?", "@", "[",
    -          "^", "^=", "^^", "^^=", "{", "|", "|=", "||",
    -          "||=", "~" /* handles =~ and !~ */,
    -          "break", "case", "continue", "delete",
    -          "do", "else", "finally", "instanceof",
    -          "return", "throw", "try", "typeof"
    -          ];
    -      var pattern = '(?:^^|[+-]';
    -      for (var i = 0; i < preceders.length; ++i) {
    -        pattern += '|' + preceders[i].replace(/([^=<>:&a-z])/g, '\\$1');
    -      }
    -      pattern += ')\\s*';  // matches at end, and matches empty string
    -      return pattern;
    -      // CAVEAT: this does not properly handle the case where a regular
    -      // expression immediately follows another since a regular expression may
    -      // have flags for case-sensitivity and the like.  Having regexp tokens
    -      // adjacent is not valid in any language I'm aware of, so I'm punting.
    -      // TODO: maybe style special characters inside a regexp as punctuation.
    -    }();
    -
    -  // Define regexps here so that the interpreter doesn't have to create an
    -  // object each time the function containing them is called.
    -  // The language spec requires a new object created even if you don't access
    -  // the $1 members.
    -  var pr_amp = /&/g;
    -  var pr_lt = /</g;
    -  var pr_gt = />/g;
    -  var pr_quot = /\"/g;
    -  /** like textToHtml but escapes double quotes to be attribute safe. */
    -  function attribToHtml(str) {
    -    return str.replace(pr_amp, '&amp;')
    -        .replace(pr_lt, '&lt;')
    -        .replace(pr_gt, '&gt;')
    -        .replace(pr_quot, '&quot;');
    -  }
    -
    -  /** escapest html special characters to html. */
    -  function textToHtml(str) {
    -    return str.replace(pr_amp, '&amp;')
    -        .replace(pr_lt, '&lt;')
    -        .replace(pr_gt, '&gt;');
    -  }
    -
    -
    -  var pr_ltEnt = /&lt;/g;
    -  var pr_gtEnt = /&gt;/g;
    -  var pr_aposEnt = /&apos;/g;
    -  var pr_quotEnt = /&quot;/g;
    -  var pr_ampEnt = /&amp;/g;
    -  var pr_nbspEnt = /&nbsp;/g;
    -  /** unescapes html to plain text. */
    -  function htmlToText(html) {
    -    var pos = html.indexOf('&');
    -    if (pos < 0) { return html; }
    -    // Handle numeric entities specially.  We can't use functional substitution
    -    // since that doesn't work in older versions of Safari.
    -    // These should be rare since most browsers convert them to normal chars.
    -    for (--pos; (pos = html.indexOf('&#', pos + 1)) >= 0;) {
    -      var end = html.indexOf(';', pos);
    -      if (end >= 0) {
    -        var num = html.substring(pos + 3, end);
    -        var radix = 10;
    -        if (num && num.charAt(0) === 'x') {
    -          num = num.substring(1);
    -          radix = 16;
    -        }
    -        var codePoint = parseInt(num, radix);
    -        if (!isNaN(codePoint)) {
    -          html = (html.substring(0, pos) + String.fromCharCode(codePoint) +
    -                  html.substring(end + 1));
    -        }
    -      }
    -    }
    -
    -    return html.replace(pr_ltEnt, '<')
    -        .replace(pr_gtEnt, '>')
    -        .replace(pr_aposEnt, "'")
    -        .replace(pr_quotEnt, '"')
    -        .replace(pr_nbspEnt, ' ')
    -        .replace(pr_ampEnt, '&');
    -  }
    -
    -  /** is the given node's innerHTML normally unescaped? */
    -  function isRawContent(node) {
    -    return 'XMP' === node.tagName;
    -  }
    -
    -  var newlineRe = /[\r\n]/g;
    -  /**
    -   * Are newlines and adjacent spaces significant in the given node's innerHTML?
    -   */
    -  function isPreformatted(node, content) {
    -    // PRE means preformatted, and is a very common case, so don't create
    -    // unnecessary computed style objects.
    -    if ('PRE' === node.tagName) { return true; }
    -    if (!newlineRe.test(content)) { return true; }  // Don't care
    -    var whitespace = '';
    -    // For disconnected nodes, IE has no currentStyle.
    -    if (node.currentStyle) {
    -      whitespace = node.currentStyle.whiteSpace;
    -    } else if (window.getComputedStyle) {
    -      // Firefox makes a best guess if node is disconnected whereas Safari
    -      // returns the empty string.
    -      whitespace = window.getComputedStyle(node, null).whiteSpace;
    -    }
    -    return !whitespace || whitespace === 'pre';
    -  }
    -
    -  function normalizedHtml(node, out) {
    -    switch (node.nodeType) {
    -      case 1:  // an element
    -        var name = node.tagName.toLowerCase();
    -        out.push('<', name);
    -        for (var i = 0; i < node.attributes.length; ++i) {
    -          var attr = node.attributes[i];
    -          if (!attr.specified) { continue; }
    -          out.push(' ');
    -          normalizedHtml(attr, out);
    -        }
    -        out.push('>');
    -        for (var child = node.firstChild; child; child = child.nextSibling) {
    -          normalizedHtml(child, out);
    -        }
    -        if (node.firstChild || !/^(?:br|link|img)$/.test(name)) {
    -          out.push('<\/', name, '>');
    -        }
    -        break;
    -      case 2: // an attribute
    -        out.push(node.name.toLowerCase(), '="', attribToHtml(node.value), '"');
    -        break;
    -      case 3: case 4: // text
    -        out.push(textToHtml(node.nodeValue));
    -        break;
    -    }
    -  }
    -
    -  /**
    -   * Given a group of {@link RegExp}s, returns a {@code RegExp} that globally
    -   * matches the union o the sets o strings matched d by the input RegExp.
    -   * Since it matches globally, if the input strings have a start-of-input
    -   * anchor (/^.../), it is ignored for the purposes of unioning.
    -   * @param {Array.<RegExp>} regexs non multiline, non-global regexs.
    -   * @return {RegExp} a global regex.
    -   */
    -  function combinePrefixPatterns(regexs) {
    -    var capturedGroupIndex = 0;
    -
    -    var needToFoldCase = false;
    -    var ignoreCase = false;
    -    for (var i = 0, n = regexs.length; i < n; ++i) {
    -      var regex = regexs[i];
    -      if (regex.ignoreCase) {
    -        ignoreCase = true;
    -      } else if (/[a-z]/i.test(regex.source.replace(
    -                     /\\u[0-9a-f]{4}|\\x[0-9a-f]{2}|\\[^ux]/gi, ''))) {
    -        needToFoldCase = true;
    -        ignoreCase = false;
    -        break;
    -      }
    -    }
    -
    -    function decodeEscape(charsetPart) {
    -      if (charsetPart.charAt(0) !== '\\') { return charsetPart.charCodeAt(0); }
    -      switch (charsetPart.charAt(1)) {
    -        case 'b': return 8;
    -        case 't': return 9;
    -        case 'n': return 0xa;
    -        case 'v': return 0xb;
    -        case 'f': return 0xc;
    -        case 'r': return 0xd;
    -        case 'u': case 'x':
    -          return parseInt(charsetPart.substring(2), 16)
    -              || charsetPart.charCodeAt(1);
    -        case '0': case '1': case '2': case '3': case '4':
    -        case '5': case '6': case '7':
    -          return parseInt(charsetPart.substring(1), 8);
    -        default: return charsetPart.charCodeAt(1);
    -      }
    -    }
    -
    -    function encodeEscape(charCode) {
    -      if (charCode < 0x20) {
    -        return (charCode < 0x10 ? '\\x0' : '\\x') + charCode.toString(16);
    -      }
    -      var ch = String.fromCharCode(charCode);
    -      if (ch === '\\' || ch === '-' || ch === '[' || ch === ']') {
    -        ch = '\\' + ch;
    -      }
    -      return ch;
    -    }
    -
    -    function caseFoldCharset(charSet) {
    -      var charsetParts = charSet.substring(1, charSet.length - 1).match(
    -          new RegExp(
    -              '\\\\u[0-9A-Fa-f]{4}'
    -              + '|\\\\x[0-9A-Fa-f]{2}'
    -              + '|\\\\[0-3][0-7]{0,2}'
    -              + '|\\\\[0-7]{1,2}'
    -              + '|\\\\[\\s\\S]'
    -              + '|-'
    -              + '|[^-\\\\]',
    -              'g'));
    -      var groups = [];
    -      var ranges = [];
    -      var inverse = charsetParts[0] === '^';
    -      for (var i = inverse ? 1 : 0, n = charsetParts.length; i < n; ++i) {
    -        var p = charsetParts[i];
    -        switch (p) {
    -          case '\\B': case '\\b':
    -          case '\\D': case '\\d':
    -          case '\\S': case '\\s':
    -          case '\\W': case '\\w':
    -            groups.push(p);
    -            continue;
    -        }
    -        var start = decodeEscape(p);
    -        var end;
    -        if (i + 2 < n && '-' === charsetParts[i + 1]) {
    -          end = decodeEscape(charsetParts[i + 2]);
    -          i += 2;
    -        } else {
    -          end = start;
    -        }
    -        ranges.push([start, end]);
    -        // If the range might intersect letters, then expand it.
    -        if (!(end < 65 || start > 122)) {
    -          if (!(end < 65 || start > 90)) {
    -            ranges.push([Math.max(65, start) | 32, Math.min(end, 90) | 32]);
    -          }
    -          if (!(end < 97 || start > 122)) {
    -            ranges.push([Math.max(97, start) & ~32, Math.min(end, 122) & ~32]);
    -          }
    -        }
    -      }
    -
    -      // [[1, 10], [3, 4], [8, 12], [14, 14], [16, 16], [17, 17]]
    -      // -> [[1, 12], [14, 14], [16, 17]]
    -      ranges.sort(function (a, b) { return (a[0] - b[0]) || (b[1]  - a[1]); });
    -      var consolidatedRanges = [];
    -      var lastRange = [NaN, NaN];
    -      for (var i = 0; i < ranges.length; ++i) {
    -        var range = ranges[i];
    -        if (range[0] <= lastRange[1] + 1) {
    -          lastRange[1] = Math.max(lastRange[1], range[1]);
    -        } else {
    -          consolidatedRanges.push(lastRange = range);
    -        }
    -      }
    -
    -      var out = ['['];
    -      if (inverse) { out.push('^'); }
    -      out.push.apply(out, groups);
    -      for (var i = 0; i < consolidatedRanges.length; ++i) {
    -        var range = consolidatedRanges[i];
    -        out.push(encodeEscape(range[0]));
    -        if (range[1] > range[0]) {
    -          if (range[1] + 1 > range[0]) { out.push('-'); }
    -          out.push(encodeEscape(range[1]));
    -        }
    -      }
    -      out.push(']');
    -      return out.join('');
    -    }
    -
    -    function allowAnywhereFoldCaseAndRenumberGroups(regex) {
    -      // Split into character sets, escape sequences, punctuation strings
    -      // like ('(', '(?:', ')', '^'), and runs of characters that do not
    -      // include any of the above.
    -      var parts = regex.source.match(
    -          new RegExp(
    -              '(?:'
    -              + '\\[(?:[^\\x5C\\x5D]|\\\\[\\s\\S])*\\]'  // a character set
    -              + '|\\\\u[A-Fa-f0-9]{4}'  // a unicode escape
    -              + '|\\\\x[A-Fa-f0-9]{2}'  // a hex escape
    -              + '|\\\\[0-9]+'  // a back-reference or octal escape
    -              + '|\\\\[^ux0-9]'  // other escape sequence
    -              + '|\\(\\?[:!=]'  // start of a non-capturing group
    -              + '|[\\(\\)\\^]'  // start/emd of a group, or line start
    -              + '|[^\\x5B\\x5C\\(\\)\\^]+'  // run of other characters
    -              + ')',
    -              'g'));
    -      var n = parts.length;
    -
    -      // Maps captured group numbers to the number they will occupy in
    -      // the output or to -1 if that has not been determined, or to
    -      // undefined if they need not be capturing in the output.
    -      var capturedGroups = [];
    -
    -      // Walk over and identify back references to build the capturedGroups
    -      // mapping.
    -      for (var i = 0, groupIndex = 0; i < n; ++i) {
    -        var p = parts[i];
    -        if (p === '(') {
    -          // groups are 1-indexed, so max group index is count of '('
    -          ++groupIndex;
    -        } else if ('\\' === p.charAt(0)) {
    -          var decimalValue = +p.substring(1);
    -          if (decimalValue && decimalValue <= groupIndex) {
    -            capturedGroups[decimalValue] = -1;
    -          }
    -        }
    -      }
    -
    -      // Renumber groups and reduce capturing groups to non-capturing groups
    -      // where possible.
    -      for (var i = 1; i < capturedGroups.length; ++i) {
    -        if (-1 === capturedGroups[i]) {
    -          capturedGroups[i] = ++capturedGroupIndex;
    -        }
    -      }
    -      for (var i = 0, groupIndex = 0; i < n; ++i) {
    -        var p = parts[i];
    -        if (p === '(') {
    -          ++groupIndex;
    -          if (capturedGroups[groupIndex] === undefined) {
    -            parts[i] = '(?:';
    -          }
    -        } else if ('\\' === p.charAt(0)) {
    -          var decimalValue = +p.substring(1);
    -          if (decimalValue && decimalValue <= groupIndex) {
    -            parts[i] = '\\' + capturedGroups[groupIndex];
    -          }
    -        }
    -      }
    -
    -      // Remove any prefix anchors so that the output will match anywhere.
    -      // ^^ really does mean an anchored match though.
    -      for (var i = 0, groupIndex = 0; i < n; ++i) {
    -        if ('^' === parts[i] && '^' !== parts[i + 1]) { parts[i] = ''; }
    -      }
    -
    -      // Expand letters to groupts to handle mixing of case-sensitive and
    -      // case-insensitive patterns if necessary.
    -      if (regex.ignoreCase && needToFoldCase) {
    -        for (var i = 0; i < n; ++i) {
    -          var p = parts[i];
    -          var ch0 = p.charAt(0);
    -          if (p.length >= 2 && ch0 === '[') {
    -            parts[i] = caseFoldCharset(p);
    -          } else if (ch0 !== '\\') {
    -            // TODO: handle letters in numeric escapes.
    -            parts[i] = p.replace(
    -                /[a-zA-Z]/g,
    -                function (ch) {
    -                  var cc = ch.charCodeAt(0);
    -                  return '[' + String.fromCharCode(cc & ~32, cc | 32) + ']';
    -                });
    -          }
    -        }
    -      }
    -
    -      return parts.join('');
    -    }
    -
    -    var rewritten = [];
    -    for (var i = 0, n = regexs.length; i < n; ++i) {
    -      var regex = regexs[i];
    -      if (regex.global || regex.multiline) { throw new Error('' + regex); }
    -      rewritten.push(
    -          '(?:' + allowAnywhereFoldCaseAndRenumberGroups(regex) + ')');
    -    }
    -
    -    return new RegExp(rewritten.join('|'), ignoreCase ? 'gi' : 'g');
    -  }
    -
    -  var PR_innerHtmlWorks = null;
    -  function getInnerHtml(node) {
    -    // inner html is hopelessly broken in Safari 2.0.4 when the content is
    -    // an html description of well formed XML and the containing tag is a PRE
    -    // tag, so we detect that case and emulate innerHTML.
    -    if (null === PR_innerHtmlWorks) {
    -      var testNode = document.createElement('PRE');
    -      testNode.appendChild(
    -          document.createTextNode('<!DOCTYPE foo PUBLIC "foo bar">\n<foo />'));
    -      PR_innerHtmlWorks = !/</.test(testNode.innerHTML);
    -    }
    -
    -    if (PR_innerHtmlWorks) {
    -      var content = node.innerHTML;
    -      // XMP tags contain unescaped entities so require special handling.
    -      if (isRawContent(node)) {
    -        content = textToHtml(content);
    -      } else if (!isPreformatted(node, content)) {
    -        content = content.replace(/(<br\s*\/?>)[\r\n]+/g, '$1')
    -            .replace(/(?:[\r\n]+[ \t]*)+/g, ' ');
    -      }
    -      return content;
    -    }
    -
    -    var out = [];
    -    for (var child = node.firstChild; child; child = child.nextSibling) {
    -      normalizedHtml(child, out);
    -    }
    -    return out.join('');
    -  }
    -
    -  /** returns a function that expand tabs to spaces.  This function can be fed
    -    * successive chunks of text, and will maintain its own internal state to
    -    * keep track of how tabs are expanded.
    -    * @return {function (string) : string} a function that takes
    -    *   plain text and return the text with tabs expanded.
    -    * @private
    -    */
    -  function makeTabExpander(tabWidth) {
    -    var SPACES = '                ';
    -    var charInLine = 0;
    -
    -    return function (plainText) {
    -      // walk over each character looking for tabs and newlines.
    -      // On tabs, expand them.  On newlines, reset charInLine.
    -      // Otherwise increment charInLine
    -      var out = null;
    -      var pos = 0;
    -      for (var i = 0, n = plainText.length; i < n; ++i) {
    -        var ch = plainText.charAt(i);
    -
    -        switch (ch) {
    -          case '\t':
    -            if (!out) { out = []; }
    -            out.push(plainText.substring(pos, i));
    -            // calculate how much space we need in front of this part
    -            // nSpaces is the amount of padding -- the number of spaces needed
    -            // to move us to the next column, where columns occur at factors of
    -            // tabWidth.
    -            var nSpaces = tabWidth - (charInLine % tabWidth);
    -            charInLine += nSpaces;
    -            for (; nSpaces >= 0; nSpaces -= SPACES.length) {
    -              out.push(SPACES.substring(0, nSpaces));
    -            }
    -            pos = i + 1;
    -            break;
    -          case '\n':
    -            charInLine = 0;
    -            break;
    -          default:
    -            ++charInLine;
    -        }
    -      }
    -      if (!out) { return plainText; }
    -      out.push(plainText.substring(pos));
    -      return out.join('');
    -    };
    -  }
    -
    -  var pr_chunkPattern = new RegExp(
    -      '[^<]+'  // A run of characters other than '<'
    -      + '|<\!--[\\s\\S]*?--\>'  // an HTML comment
    -      + '|<!\\[CDATA\\[[\\s\\S]*?\\]\\]>'  // a CDATA section
    -      // a probable tag that should not be highlighted
    -      + '|<\/?[a-zA-Z](?:[^>\"\']|\'[^\']*\'|\"[^\"]*\")*>'
    -      + '|<',  // A '<' that does not begin a larger chunk
    -      'g');
    -  var pr_commentPrefix = /^<\!--/;
    -  var pr_cdataPrefix = /^<!\[CDATA\[/;
    -  var pr_brPrefix = /^<br\b/i;
    -  var pr_tagNameRe = /^<(\/?)([a-zA-Z][a-zA-Z0-9]*)/;
    -
    -  /** split markup into chunks of html tags (style null) and
    -    * plain text (style {@link #PR_PLAIN}), converting tags which are
    -    * significant for tokenization (<br>) into their textual equivalent.
    -    *
    -    * @param {string} s html where whitespace is considered significant.
    -    * @return {Object} source code and extracted tags.
    -    * @private
    -    */
    -  function extractTags(s) {
    -    // since the pattern has the 'g' modifier and defines no capturing groups,
    -    // this will return a list of all chunks which we then classify and wrap as
    -    // PR_Tokens
    -    var matches = s.match(pr_chunkPattern);
    -    var sourceBuf = [];
    -    var sourceBufLen = 0;
    -    var extractedTags = [];
    -    if (matches) {
    -      for (var i = 0, n = matches.length; i < n; ++i) {
    -        var match = matches[i];
    -        if (match.length > 1 && match.charAt(0) === '<') {
    -          if (pr_commentPrefix.test(match)) { continue; }
    -          if (pr_cdataPrefix.test(match)) {
    -            // strip CDATA prefix and suffix.  Don't unescape since it's CDATA
    -            sourceBuf.push(match.substring(9, match.length - 3));
    -            sourceBufLen += match.length - 12;
    -          } else if (pr_brPrefix.test(match)) {
    -            // <br> tags are lexically significant so convert them to text.
    -            // This is undone later.
    -            sourceBuf.push('\n');
    -            ++sourceBufLen;
    -          } else {
    -            if (match.indexOf(PR_NOCODE) >= 0 && isNoCodeTag(match)) {
    -              // A <span class="nocode"> will start a section that should be
    -              // ignored.  Continue walking the list until we see a matching end
    -              // tag.
    -              var name = match.match(pr_tagNameRe)[2];
    -              var depth = 1;
    -              var j;
    -              end_tag_loop:
    -              for (j = i + 1; j < n; ++j) {
    -                var name2 = matches[j].match(pr_tagNameRe);
    -                if (name2 && name2[2] === name) {
    -                  if (name2[1] === '/') {
    -                    if (--depth === 0) { break end_tag_loop; }
    -                  } else {
    -                    ++depth;
    -                  }
    -                }
    -              }
    -              if (j < n) {
    -                extractedTags.push(
    -                    sourceBufLen, matches.slice(i, j + 1).join(''));
    -                i = j;
    -              } else {  // Ignore unclosed sections.
    -                extractedTags.push(sourceBufLen, match);
    -              }
    -            } else {
    -              extractedTags.push(sourceBufLen, match);
    -            }
    -          }
    -        } else {
    -          var literalText = htmlToText(match);
    -          sourceBuf.push(literalText);
    -          sourceBufLen += literalText.length;
    -        }
    -      }
    -    }
    -    return { source: sourceBuf.join(''), tags: extractedTags };
    -  }
    -
    -  /** True if the given tag contains a class attribute with the nocode class. */
    -  function isNoCodeTag(tag) {
    -    return !!tag
    -        // First canonicalize the representation of attributes
    -        .replace(/\s(\w+)\s*=\s*(?:\"([^\"]*)\"|'([^\']*)'|(\S+))/g,
    -                 ' $1="$2$3$4"')
    -        // Then look for the attribute we want.
    -        .match(/[cC][lL][aA][sS][sS]=\"[^\"]*\bnocode\b/);
    -  }
    -
    -  /**
    -   * Apply the given language handler to sourceCode and add the resulting
    -   * decorations to out.
    -   * @param {number} basePos the index of sourceCode within the chunk of source
    -   *    whose decorations are already present on out.
    -   */
    -  function appendDecorations(basePos, sourceCode, langHandler, out) {
    -    if (!sourceCode) { return; }
    -    var job = {
    -      source: sourceCode,
    -      basePos: basePos
    -    };
    -    langHandler(job);
    -    out.push.apply(out, job.decorations);
    -  }
    -
    -  /** Given triples of [style, pattern, context] returns a lexing function,
    -    * The lexing function interprets the patterns to find token boundaries and
    -    * returns a decoration list of the form
    -    * [index_0, style_0, index_1, style_1, ..., index_n, style_n]
    -    * where index_n is an index into the sourceCode, and style_n is a style
    -    * constant like PR_PLAIN.  index_n-1 <= index_n, and style_n-1 applies to
    -    * all characters in sourceCode[index_n-1:index_n].
    -    *
    -    * The stylePatterns is a list whose elements have the form
    -    * [style : string, pattern : RegExp, DEPRECATED, shortcut : string].
    -    *
    -    * Style is a style constant like PR_PLAIN, or can be a string of the
    -    * form 'lang-FOO', where FOO is a language extension describing the
    -    * language of the portion of the token in $1 after pattern executes.
    -    * E.g., if style is 'lang-lisp', and group 1 contains the text
    -    * '(hello (world))', then that portion of the token will be passed to the
    -    * registered lisp handler for formatting.
    -    * The text before and after group 1 will be restyled using this decorator
    -    * so decorators should take care that this doesn't result in infinite
    -    * recursion.  For example, the HTML lexer rule for SCRIPT elements looks
    -    * something like ['lang-js', /<[s]cript>(.+?)<\/script>/].  This may match
    -    * '<script>foo()<\/script>', which would cause the current decorator to
    -    * be called with '<script>' which would not match the same rule since
    -    * group 1 must not be empty, so it would be instead styled as PR_TAG by
    -    * the generic tag rule.  The handler registered for the 'js' extension would
    -    * then be called with 'foo()', and finally, the current decorator would
    -    * be called with '<\/script>' which would not match the original rule and
    -    * so the generic tag rule would identify it as a tag.
    -    *
    -    * Pattern must only match prefixes, and if it matches a prefix, then that
    -    * match is considered a token with the same style.
    -    *
    -    * Context is applied to the last non-whitespace, non-comment token
    -    * recognized.
    -    *
    -    * Shortcut is an optional string of characters, any of which, if the first
    -    * character, gurantee that this pattern and only this pattern matches.
    -    *
    -    * @param {Array} shortcutStylePatterns patterns that always start with
    -    *   a known character.  Must have a shortcut string.
    -    * @param {Array} fallthroughStylePatterns patterns that will be tried in
    -    *   order if the shortcut ones fail.  May have shortcuts.
    -    *
    -    * @return {function (Object)} a
    -    *   function that takes source code and returns a list of decorations.
    -    */
    -  function createSimpleLexer(shortcutStylePatterns, fallthroughStylePatterns) {
    -    var shortcuts = {};
    -    var tokenizer;
    -    (function () {
    -      var allPatterns = shortcutStylePatterns.concat(fallthroughStylePatterns);
    -      var allRegexs = [];
    -      var regexKeys = {};
    -      for (var i = 0, n = allPatterns.length; i < n; ++i) {
    -        var patternParts = allPatterns[i];
    -        var shortcutChars = patternParts[3];
    -        if (shortcutChars) {
    -          for (var c = shortcutChars.length; --c >= 0;) {
    -            shortcuts[shortcutChars.charAt(c)] = patternParts;
    -          }
    -        }
    -        var regex = patternParts[1];
    -        var k = '' + regex;
    -        if (!regexKeys.hasOwnProperty(k)) {
    -          allRegexs.push(regex);
    -          regexKeys[k] = null;
    -        }
    -      }
    -      allRegexs.push(/[\0-\uffff]/);
    -      tokenizer = combinePrefixPatterns(allRegexs);
    -    })();
    -
    -    var nPatterns = fallthroughStylePatterns.length;
    -    var notWs = /\S/;
    -
    -    /**
    -     * Lexes job.source and produces an output array job.decorations of style
    -     * classes preceded by the position at which they start in job.source in
    -     * order.
    -     *
    -     * @param {Object} job an object like {@code
    -     *    source: {string} sourceText plain text,
    -     *    basePos: {int} position of job.source in the larger chunk of
    -     *        sourceCode.
    -     * }
    -     */
    -    var decorate = function (job) {
    -      var sourceCode = job.source, basePos = job.basePos;
    -      /** Even entries are positions in source in ascending order.  Odd enties
    -        * are style markers (e.g., PR_COMMENT) that run from that position until
    -        * the end.
    -        * @type {Array.<number|string>}
    -        */
    -      var decorations = [basePos, PR_PLAIN];
    -      var pos = 0;  // index into sourceCode
    -      var tokens = sourceCode.match(tokenizer) || [];
    -      var styleCache = {};
    -
    -      for (var ti = 0, nTokens = tokens.length; ti < nTokens; ++ti) {
    -        var token = tokens[ti];
    -        var style = styleCache[token];
    -        var match = void 0;
    -
    -        var isEmbedded;
    -        if (typeof style === 'string') {
    -          isEmbedded = false;
    -        } else {
    -          var patternParts = shortcuts[token.charAt(0)];
    -          if (patternParts) {
    -            match = token.match(patternParts[1]);
    -            style = patternParts[0];
    -          } else {
    -            for (var i = 0; i < nPatterns; ++i) {
    -              patternParts = fallthroughStylePatterns[i];
    -              match = token.match(patternParts[1]);
    -              if (match) {
    -                style = patternParts[0];
    -                break;
    -              }
    -            }
    -
    -            if (!match) {  // make sure that we make progress
    -              style = PR_PLAIN;
    -            }
    -          }
    -
    -          isEmbedded = style.length >= 5 && 'lang-' === style.substring(0, 5);
    -          if (isEmbedded && !(match && typeof match[1] === 'string')) {
    -            isEmbedded = false;
    -            style = PR_SOURCE;
    -          }
    -
    -          if (!isEmbedded) { styleCache[token] = style; }
    -        }
    -
    -        var tokenStart = pos;
    -        pos += token.length;
    -
    -        if (!isEmbedded) {
    -          decorations.push(basePos + tokenStart, style);
    -        } else {  // Treat group 1 as an embedded block of source code.
    -          var embeddedSource = match[1];
    -          var embeddedSourceStart = token.indexOf(embeddedSource);
    -          var embeddedSourceEnd = embeddedSourceStart + embeddedSource.length;
    -          if (match[2]) {
    -            // If embeddedSource can be blank, then it would match at the
    -            // beginning which would cause us to infinitely recurse on the
    -            // entire token, so we catch the right context in match[2].
    -            embeddedSourceEnd = token.length - match[2].length;
    -            embeddedSourceStart = embeddedSourceEnd - embeddedSource.length;
    -          }
    -          var lang = style.substring(5);
    -          // Decorate the left of the embedded source
    -          appendDecorations(
    -              basePos + tokenStart,
    -              token.substring(0, embeddedSourceStart),
    -              decorate, decorations);
    -          // Decorate the embedded source
    -          appendDecorations(
    -              basePos + tokenStart + embeddedSourceStart,
    -              embeddedSource,
    -              langHandlerForExtension(lang, embeddedSource),
    -              decorations);
    -          // Decorate the right of the embedded section
    -          appendDecorations(
    -              basePos + tokenStart + embeddedSourceEnd,
    -              token.substring(embeddedSourceEnd),
    -              decorate, decorations);
    -        }
    -      }
    -      job.decorations = decorations;
    -    };
    -    return decorate;
    -  }
    -
    -  /** returns a function that produces a list of decorations from source text.
    -    *
    -    * This code treats ", ', and ` as string delimiters, and \ as a string
    -    * escape.  It does not recognize perl's qq() style strings.
    -    * It has no special handling for double delimiter escapes as in basic, or
    -    * the tripled delimiters used in python, but should work on those regardless
    -    * although in those cases a single string literal may be broken up into
    -    * multiple adjacent string literals.
    -    *
    -    * It recognizes C, C++, and shell style comments.
    -    *
    -    * @param {Object} options a set of optional parameters.
    -    * @return {function (Object)} a function that examines the source code
    -    *     in the input job and builds the decoration list.
    -    */
    -  function sourceDecorator(options) {
    -    var shortcutStylePatterns = [], fallthroughStylePatterns = [];
    -    if (options['tripleQuotedStrings']) {
    -      // '''multi-line-string''', 'single-line-string', and double-quoted
    -      shortcutStylePatterns.push(
    -          [PR_STRING,  /^(?:\'\'\'(?:[^\'\\]|\\[\s\S]|\'{1,2}(?=[^\']))*(?:\'\'\'|$)|\"\"\"(?:[^\"\\]|\\[\s\S]|\"{1,2}(?=[^\"]))*(?:\"\"\"|$)|\'(?:[^\\\']|\\[\s\S])*(?:\'|$)|\"(?:[^\\\"]|\\[\s\S])*(?:\"|$))/,
    -           null, '\'"']);
    -    } else if (options['multiLineStrings']) {
    -      // 'multi-line-string', "multi-line-string"
    -      shortcutStylePatterns.push(
    -          [PR_STRING,  /^(?:\'(?:[^\\\']|\\[\s\S])*(?:\'|$)|\"(?:[^\\\"]|\\[\s\S])*(?:\"|$)|\`(?:[^\\\`]|\\[\s\S])*(?:\`|$))/,
    -           null, '\'"`']);
    -    } else {
    -      // 'single-line-string', "single-line-string"
    -      shortcutStylePatterns.push(
    -          [PR_STRING,
    -           /^(?:\'(?:[^\\\'\r\n]|\\.)*(?:\'|$)|\"(?:[^\\\"\r\n]|\\.)*(?:\"|$))/,
    -           null, '"\'']);
    -    }
    -    if (options['verbatimStrings']) {
    -      // verbatim-string-literal production from the C# grammar.  See issue 93.
    -      fallthroughStylePatterns.push(
    -          [PR_STRING, /^@\"(?:[^\"]|\"\")*(?:\"|$)/, null]);
    -    }
    -    if (options['hashComments']) {
    -      if (options['cStyleComments']) {
    -        // Stop C preprocessor declarations at an unclosed open comment
    -        shortcutStylePatterns.push(
    -            [PR_COMMENT, /^#(?:(?:define|elif|else|endif|error|ifdef|include|ifndef|line|pragma|undef|warning)\b|[^\r\n]*)/,
    -             null, '#']);
    -        fallthroughStylePatterns.push(
    -            [PR_STRING,
    -             /^<(?:(?:(?:\.\.\/)*|\/?)(?:[\w-]+(?:\/[\w-]+)+)?[\w-]+\.h|[a-z]\w*)>/,
    -             null]);
    -      } else {
    -        shortcutStylePatterns.push([PR_COMMENT, /^#[^\r\n]*/, null, '#']);
    -      }
    -    }
    -    if (options['cStyleComments']) {
    -      fallthroughStylePatterns.push([PR_COMMENT, /^\/\/[^\r\n]*/, null]);
    -      fallthroughStylePatterns.push(
    -          [PR_COMMENT, /^\/\*[\s\S]*?(?:\*\/|$)/, null]);
    -    }
    -    if (options['regexLiterals']) {
    -      var REGEX_LITERAL = (
    -          // A regular expression literal starts with a slash that is
    -          // not followed by * or / so that it is not confused with
    -          // comments.
    -          '/(?=[^/*])'
    -          // and then contains any number of raw characters,
    -          + '(?:[^/\\x5B\\x5C]'
    -          // escape sequences (\x5C),
    -          +    '|\\x5C[\\s\\S]'
    -          // or non-nesting character sets (\x5B\x5D);
    -          +    '|\\x5B(?:[^\\x5C\\x5D]|\\x5C[\\s\\S])*(?:\\x5D|$))+'
    -          // finally closed by a /.
    -          + '/');
    -      fallthroughStylePatterns.push(
    -          ['lang-regex',
    -           new RegExp('^' + REGEXP_PRECEDER_PATTERN + '(' + REGEX_LITERAL + ')')
    -           ]);
    -    }
    -
    -    var keywords = options['keywords'].replace(/^\s+|\s+$/g, '');
    -    if (keywords.length) {
    -      fallthroughStylePatterns.push(
    -          [PR_KEYWORD,
    -           new RegExp('^(?:' + keywords.replace(/\s+/g, '|') + ')\\b'), null]);
    -    }
    -
    -    shortcutStylePatterns.push([PR_PLAIN,       /^\s+/, null, ' \r\n\t\xA0']);
    -    fallthroughStylePatterns.push(
    -        // TODO(mikesamuel): recognize non-latin letters and numerals in idents
    -        [PR_LITERAL,     /^@[a-z_$][a-z_$@0-9]*/i, null],
    -        [PR_TYPE,        /^@?[A-Z]+[a-z][A-Za-z_$@0-9]*/, null],
    -        [PR_PLAIN,       /^[a-z_$][a-z_$@0-9]*/i, null],
    -        [PR_LITERAL,
    -         new RegExp(
    -             '^(?:'
    -             // A hex number
    -             + '0x[a-f0-9]+'
    -             // or an octal or decimal number,
    -             + '|(?:\\d(?:_\\d+)*\\d*(?:\\.\\d*)?|\\.\\d\\+)'
    -             // possibly in scientific notation
    -             + '(?:e[+\\-]?\\d+)?'
    -             + ')'
    -             // with an optional modifier like UL for unsigned long
    -             + '[a-z]*', 'i'),
    -         null, '0123456789'],
    -        [PR_PUNCTUATION, /^.[^\s\w\.$@\'\"\`\/\#]*/, null]);
    -
    -    return createSimpleLexer(shortcutStylePatterns, fallthroughStylePatterns);
    -  }
    -
    -  var decorateSource = sourceDecorator({
    -        'keywords': ALL_KEYWORDS,
    -        'hashComments': true,
    -        'cStyleComments': true,
    -        'multiLineStrings': true,
    -        'regexLiterals': true
    -      });
    -
    -  /** Breaks {@code job.source} around style boundaries in
    -    * {@code job.decorations} while re-interleaving {@code job.extractedTags},
    -    * and leaves the result in {@code job.prettyPrintedHtml}.
    -    * @param {Object} job like {
    -    *    source: {string} source as plain text,
    -    *    extractedTags: {Array.<number|string>} extractedTags chunks of raw
    -    *                   html preceded by their position in {@code job.source}
    -    *                   in order
    -    *    decorations: {Array.<number|string} an array of style classes preceded
    -    *                 by the position at which they start in job.source in order
    -    * }
    -    * @private
    -    */
    -  function recombineTagsAndDecorations(job) {
    -    var sourceText = job.source;
    -    var extractedTags = job.extractedTags;
    -    var decorations = job.decorations;
    -
    -    var html = [];
    -    // index past the last char in sourceText written to html
    -    var outputIdx = 0;
    -
    -    var openDecoration = null;
    -    var currentDecoration = null;
    -    var tagPos = 0;  // index into extractedTags
    -    var decPos = 0;  // index into decorations
    -    var tabExpander = makeTabExpander(window['PR_TAB_WIDTH']);
    -
    -    var adjacentSpaceRe = /([\r\n ]) /g;
    -    var startOrSpaceRe = /(^| ) /gm;
    -    var newlineRe = /\r\n?|\n/g;
    -    var trailingSpaceRe = /[ \r\n]$/;
    -    var lastWasSpace = true;  // the last text chunk emitted ended with a space.
    -
    -    // A helper function that is responsible for opening sections of decoration
    -    // and outputing properly escaped chunks of source
    -    function emitTextUpTo(sourceIdx) {
    -      if (sourceIdx > outputIdx) {
    -        if (openDecoration && openDecoration !== currentDecoration) {
    -          // Close the current decoration
    -          html.push('</span>');
    -          openDecoration = null;
    -        }
    -        if (!openDecoration && currentDecoration) {
    -          openDecoration = currentDecoration;
    -          html.push('<span class="', openDecoration, '">');
    -        }
    -        // This interacts badly with some wikis which introduces paragraph tags
    -        // into pre blocks for some strange reason.
    -        // It's necessary for IE though which seems to lose the preformattedness
    -        // of <pre> tags when their innerHTML is assigned.
    -        // http://stud3.tuwien.ac.at/~e0226430/innerHtmlQuirk.html
    -        // and it serves to undo the conversion of <br>s to newlines done in
    -        // chunkify.
    -        var htmlChunk = textToHtml(
    -            tabExpander(sourceText.substring(outputIdx, sourceIdx)))
    -            .replace(lastWasSpace
    -                     ? startOrSpaceRe
    -                     : adjacentSpaceRe, '$1&nbsp;');
    -        // Keep track of whether we need to escape space at the beginning of the
    -        // next chunk.
    -        lastWasSpace = trailingSpaceRe.test(htmlChunk);
    -        // IE collapses multiple adjacient <br>s into 1 line break.
    -        // Prefix every <br> with '&nbsp;' can prevent such IE's behavior.
    -        var lineBreakHtml = window['_pr_isIE6']() ? '&nbsp;<br />' : '<br />';
    -        html.push(htmlChunk.replace(newlineRe, lineBreakHtml));
    -        outputIdx = sourceIdx;
    -      }
    -    }
    -
    -    while (true) {
    -      // Determine if we're going to consume a tag this time around.  Otherwise
    -      // we consume a decoration or exit.
    -      var outputTag;
    -      if (tagPos < extractedTags.length) {
    -        if (decPos < decorations.length) {
    -          // Pick one giving preference to extractedTags since we shouldn't open
    -          // a new style that we're going to have to immediately close in order
    -          // to output a tag.
    -          outputTag = extractedTags[tagPos] <= decorations[decPos];
    -        } else {
    -          outputTag = true;
    -        }
    -      } else {
    -        outputTag = false;
    -      }
    -      // Consume either a decoration or a tag or exit.
    -      if (outputTag) {
    -        emitTextUpTo(extractedTags[tagPos]);
    -        if (openDecoration) {
    -          // Close the current decoration
    -          html.push('</span>');
    -          openDecoration = null;
    -        }
    -        html.push(extractedTags[tagPos + 1]);
    -        tagPos += 2;
    -      } else if (decPos < decorations.length) {
    -        emitTextUpTo(decorations[decPos]);
    -        currentDecoration = decorations[decPos + 1];
    -        decPos += 2;
    -      } else {
    -        break;
    -      }
    -    }
    -    emitTextUpTo(sourceText.length);
    -    if (openDecoration) {
    -      html.push('</span>');
    -    }
    -    job.prettyPrintedHtml = html.join('');
    -  }
    -
    -  /** Maps language-specific file extensions to handlers. */
    -  var langHandlerRegistry = {};
    -  /** Register a language handler for the given file extensions.
    -    * @param {function (Object)} handler a function from source code to a list
    -    *      of decorations.  Takes a single argument job which describes the
    -    *      state of the computation.   The single parameter has the form
    -    *      {@code {
    -    *        source: {string} as plain text.
    -    *        decorations: {Array.<number|string>} an array of style classes
    -    *                     preceded by the position at which they start in
    -    *                     job.source in order.
    -    *                     The language handler should assigned this field.
    -    *        basePos: {int} the position of source in the larger source chunk.
    -    *                 All positions in the output decorations array are relative
    -    *                 to the larger source chunk.
    -    *      } }
    -    * @param {Array.<string>} fileExtensions
    -    */
    -  function registerLangHandler(handler, fileExtensions) {
    -    for (var i = fileExtensions.length; --i >= 0;) {
    -      var ext = fileExtensions[i];
    -      if (!langHandlerRegistry.hasOwnProperty(ext)) {
    -        langHandlerRegistry[ext] = handler;
    -      } else if ('console' in window) {
    -        console.warn('cannot override language handler %s', ext);
    -      }
    -    }
    -  }
    -  function langHandlerForExtension(extension, source) {
    -    if (!(extension && langHandlerRegistry.hasOwnProperty(extension))) {
    -      // Treat it as markup if the first non whitespace character is a < and
    -      // the last non-whitespace character is a >.
    -      extension = /^\s*</.test(source)
    -          ? 'default-markup'
    -          : 'default-code';
    -    }
    -    return langHandlerRegistry[extension];
    -  }
    -  registerLangHandler(decorateSource, ['default-code']);
    -  registerLangHandler(
    -      createSimpleLexer(
    -          [],
    -          [
    -           [PR_PLAIN,       /^[^<?]+/],
    -           [PR_DECLARATION, /^<!\w[^>]*(?:>|$)/],
    -           [PR_COMMENT,     /^<\!--[\s\S]*?(?:-\->|$)/],
    -           // Unescaped content in an unknown language
    -           ['lang-',        /^<\?([\s\S]+?)(?:\?>|$)/],
    -           ['lang-',        /^<%([\s\S]+?)(?:%>|$)/],
    -           [PR_PUNCTUATION, /^(?:<[%?]|[%?]>)/],
    -           ['lang-',        /^<xmp\b[^>]*>([\s\S]+?)<\/xmp\b[^>]*>/i],
    -           // Unescaped content in javascript.  (Or possibly vbscript).
    -           ['lang-js',      /^<script\b[^>]*>([\s\S]*?)(<\/script\b[^>]*>)/i],
    -           // Contains unescaped stylesheet content
    -           ['lang-css',     /^<style\b[^>]*>([\s\S]*?)(<\/style\b[^>]*>)/i],
    -           ['lang-in.tag',  /^(<\/?[a-z][^<>]*>)/i]
    -          ]),
    -      ['default-markup', 'htm', 'html', 'mxml', 'xhtml', 'xml', 'xsl']);
    -  registerLangHandler(
    -      createSimpleLexer(
    -          [
    -           [PR_PLAIN,        /^[\s]+/, null, ' \t\r\n'],
    -           [PR_ATTRIB_VALUE, /^(?:\"[^\"]*\"?|\'[^\']*\'?)/, null, '\"\'']
    -           ],
    -          [
    -           [PR_TAG,          /^^<\/?[a-z](?:[\w.:-]*\w)?|\/?>$/i],
    -           [PR_ATTRIB_NAME,  /^(?!style[\s=]|on)[a-z](?:[\w:-]*\w)?/i],
    -           ['lang-uq.val',   /^=\s*([^>\'\"\s]*(?:[^>\'\"\s\/]|\/(?=\s)))/],
    -           [PR_PUNCTUATION,  /^[=<>\/]+/],
    -           ['lang-js',       /^on\w+\s*=\s*\"([^\"]+)\"/i],
    -           ['lang-js',       /^on\w+\s*=\s*\'([^\']+)\'/i],
    -           ['lang-js',       /^on\w+\s*=\s*([^\"\'>\s]+)/i],
    -           ['lang-css',      /^style\s*=\s*\"([^\"]+)\"/i],
    -           ['lang-css',      /^style\s*=\s*\'([^\']+)\'/i],
    -           ['lang-css',      /^style\s*=\s*([^\"\'>\s]+)/i]
    -           ]),
    -      ['in.tag']);
    -  registerLangHandler(
    -      createSimpleLexer([], [[PR_ATTRIB_VALUE, /^[\s\S]+/]]), ['uq.val']);
    -  registerLangHandler(sourceDecorator({
    -          'keywords': CPP_KEYWORDS,
    -          'hashComments': true,
    -          'cStyleComments': true
    -        }), ['c', 'cc', 'cpp', 'cxx', 'cyc', 'm']);
    -  registerLangHandler(sourceDecorator({
    -          'keywords': 'null true false'
    -        }), ['json']);
    -  registerLangHandler(sourceDecorator({
    -          'keywords': CSHARP_KEYWORDS,
    -          'hashComments': true,
    -          'cStyleComments': true,
    -          'verbatimStrings': true
    -        }), ['cs']);
    -  registerLangHandler(sourceDecorator({
    -          'keywords': JAVA_KEYWORDS,
    -          'cStyleComments': true
    -        }), ['java']);
    -  registerLangHandler(sourceDecorator({
    -          'keywords': SH_KEYWORDS,
    -          'hashComments': true,
    -          'multiLineStrings': true
    -        }), ['bsh', 'csh', 'sh']);
    -  registerLangHandler(sourceDecorator({
    -          'keywords': PYTHON_KEYWORDS,
    -          'hashComments': true,
    -          'multiLineStrings': true,
    -          'tripleQuotedStrings': true
    -        }), ['cv', 'py']);
    -  registerLangHandler(sourceDecorator({
    -          'keywords': PERL_KEYWORDS,
    -          'hashComments': true,
    -          'multiLineStrings': true,
    -          'regexLiterals': true
    -        }), ['perl', 'pl', 'pm']);
    -  registerLangHandler(sourceDecorator({
    -          'keywords': RUBY_KEYWORDS,
    -          'hashComments': true,
    -          'multiLineStrings': true,
    -          'regexLiterals': true
    -        }), ['rb']);
    -  registerLangHandler(sourceDecorator({
    -          'keywords': JSCRIPT_KEYWORDS,
    -          'cStyleComments': true,
    -          'regexLiterals': true
    -        }), ['js']);
    -  registerLangHandler(
    -      createSimpleLexer([], [[PR_STRING, /^[\s\S]+/]]), ['regex']);
    -
    -  function applyDecorator(job) {
    -    var sourceCodeHtml = job.sourceCodeHtml;
    -    var opt_langExtension = job.langExtension;
    -
    -    // Prepopulate output in case processing fails with an exception.
    -    job.prettyPrintedHtml = sourceCodeHtml;
    -
    -    try {
    -      // Extract tags, and convert the source code to plain text.
    -      var sourceAndExtractedTags = extractTags(sourceCodeHtml);
    -      /** Plain text. @type {string} */
    -      var source = sourceAndExtractedTags.source;
    -      job.source = source;
    -      job.basePos = 0;
    -
    -      /** Even entries are positions in source in ascending order.  Odd entries
    -        * are tags that were extracted at that position.
    -        * @type {Array.<number|string>}
    -        */
    -      job.extractedTags = sourceAndExtractedTags.tags;
    -
    -      // Apply the appropriate language handler
    -      langHandlerForExtension(opt_langExtension, source)(job);
    -      // Integrate the decorations and tags back into the source code to produce
    -      // a decorated html string which is left in job.prettyPrintedHtml.
    -      recombineTagsAndDecorations(job);
    -    } catch (e) {
    -      if ('console' in window) {
    -        console.log(e);
    -        console.trace();
    -      }
    -    }
    -  }
    -
    -  function prettyPrintOne(sourceCodeHtml, opt_langExtension) {
    -    var job = {
    -      sourceCodeHtml: sourceCodeHtml,
    -      langExtension: opt_langExtension
    -    };
    -    applyDecorator(job);
    -    return job.prettyPrintedHtml;
    -  }
    -
    -  function prettyPrint(opt_whenDone) {
    -    var isIE678 = window['_pr_isIE6']();
    -    var ieNewline = isIE678 === 6 ? '\r\n' : '\r';
    -    // See bug 71 and http://stackoverflow.com/questions/136443/why-doesnt-ie7-
    -
    -    // fetch a list of nodes to rewrite
    -    var codeSegments = [
    -        document.getElementsByTagName('pre'),
    -        document.getElementsByTagName('code'),
    -        document.getElementsByTagName('td'),  /* ND Change: Add tables to support prototypes. */
    -        document.getElementsByTagName('xmp') ];
    -    var elements = [];
    -    for (var i = 0; i < codeSegments.length; ++i) {
    -      for (var j = 0, n = codeSegments[i].length; j < n; ++j) {
    -        elements.push(codeSegments[i][j]);
    -      }
    -    }
    -    codeSegments = null;
    -
    -    var clock = Date;
    -    if (!clock['now']) {
    -      clock = { 'now': function () { return (new Date).getTime(); } };
    -    }
    -
    -    // The loop is broken into a series of continuations to make sure that we
    -    // don't make the browser unresponsive when rewriting a large page.
    -    var k = 0;
    -    var prettyPrintingJob;
    -
    -    function doWork() {
    -      var endTime = (window['PR_SHOULD_USE_CONTINUATION'] ?
    -                     clock.now() + 250 /* ms */ :
    -                     Infinity);
    -      for (; k < elements.length && clock.now() < endTime; k++) {
    -        var cs = elements[k];
    -        if (cs.className && cs.className.indexOf('prettyprint') >= 0) {
    -          // If the classes includes a language extensions, use it.
    -          // Language extensions can be specified like
    -          //     <pre class="prettyprint lang-cpp">
    -          // the language extension "cpp" is used to find a language handler as
    -          // passed to PR_registerLangHandler.
    -          var langExtension = cs.className.match(/\blang-(\w+)\b/);
    -          if (langExtension) { langExtension = langExtension[1]; }
    -
    -          // make sure this is not nested in an already prettified element
    -          var nested = false;
    -          for (var p = cs.parentNode; p; p = p.parentNode) {
    -            if ((p.tagName === 'pre' || p.tagName === 'code' ||
    -                 p.tagName === 'xmp' || p.tagName === 'td') &&  /* ND Change: Add tables to support prototypes */
    -                p.className && p.className.indexOf('prettyprint') >= 0) {
    -              nested = true;
    -              break;
    -            }
    -          }
    -          if (!nested) {
    -            // fetch the content as a snippet of properly escaped HTML.
    -            // Firefox adds newlines at the end.
    -            var content = getInnerHtml(cs);
    -            content = content.replace(/(?:\r\n?|\n)$/, '');
    -
    -	  		/* ND Change: we need to preserve &nbsp;s so change them to a special character instead of a space. */
    -			content = content.replace(/&nbsp;/g, '\x11');
    -
    -            // do the pretty printing
    -            prettyPrintingJob = {
    -              sourceCodeHtml: content,
    -              langExtension: langExtension,
    -              sourceNode: cs
    -            };
    -            applyDecorator(prettyPrintingJob);
    -            replaceWithPrettyPrintedHtml();
    -          }
    -        }
    -      }
    -      if (k < elements.length) {
    -        // finish up in a continuation
    -        setTimeout(doWork, 250);
    -      } else if (opt_whenDone) {
    -        opt_whenDone();
    -      }
    -    }
    -
    -    function replaceWithPrettyPrintedHtml() {
    -      var newContent = prettyPrintingJob.prettyPrintedHtml;
    -      if (!newContent) { return; }
    -
    -      /* ND Change: Restore the preserved &nbsp;s.  */
    -	  newContent = newContent.replace(/\x11/g, '&nbsp;');
    -
    -      var cs = prettyPrintingJob.sourceNode;
    -
    -      // push the prettified html back into the tag.
    -      if (!isRawContent(cs)) {
    -        // just replace the old html with the new
    -        cs.innerHTML = newContent;
    -      } else {
    -        // we need to change the tag to a <pre> since <xmp>s do not allow
    -        // embedded tags such as the span tags used to attach styles to
    -        // sections of source code.
    -        var pre = document.createElement('PRE');
    -        for (var i = 0; i < cs.attributes.length; ++i) {
    -          var a = cs.attributes[i];
    -          if (a.specified) {
    -            var aname = a.name.toLowerCase();
    -            if (aname === 'class') {
    -              pre.className = a.value;  // For IE 6
    -            } else {
    -              pre.setAttribute(a.name, a.value);
    -            }
    -          }
    -        }
    -        pre.innerHTML = newContent;
    -
    -        // remove the old
    -        cs.parentNode.replaceChild(pre, cs);
    -        cs = pre;
    -      }
    -
    -      // Replace <br>s with line-feeds so that copying and pasting works
    -      // on IE 6.
    -      // Doing this on other browsers breaks lots of stuff since \r\n is
    -      // treated as two newlines on Firefox, and doing this also slows
    -      // down rendering.
    -      if (isIE678 && cs.tagName === 'PRE') {
    -        var lineBreaks = cs.getElementsByTagName('br');
    -        for (var j = lineBreaks.length; --j >= 0;) {
    -          var lineBreak = lineBreaks[j];
    -          lineBreak.parentNode.replaceChild(
    -              document.createTextNode(ieNewline), lineBreak);
    -        }
    -      }
    -    }
    -
    -    doWork();
    -  }
    -
    -  window['PR_normalizedHtml'] = normalizedHtml;
    -  window['prettyPrintOne'] = prettyPrintOne;
    -  window['prettyPrint'] = prettyPrint;
    -  window['PR'] = {
    -        'combinePrefixPatterns': combinePrefixPatterns,
    -        'createSimpleLexer': createSimpleLexer,
    -        'registerLangHandler': registerLangHandler,
    -        'sourceDecorator': sourceDecorator,
    -        'PR_ATTRIB_NAME': PR_ATTRIB_NAME,
    -        'PR_ATTRIB_VALUE': PR_ATTRIB_VALUE,
    -        'PR_COMMENT': PR_COMMENT,
    -        'PR_DECLARATION': PR_DECLARATION,
    -        'PR_KEYWORD': PR_KEYWORD,
    -        'PR_LITERAL': PR_LITERAL,
    -        'PR_NOCODE': PR_NOCODE,
    -        'PR_PLAIN': PR_PLAIN,
    -        'PR_PUNCTUATION': PR_PUNCTUATION,
    -        'PR_SOURCE': PR_SOURCE,
    -        'PR_STRING': PR_STRING,
    -        'PR_TAG': PR_TAG,
    -        'PR_TYPE': PR_TYPE
    -      };
    -})();
    -
    -
    -// ____________________________________________________________________________
    -
    -
    -
    -// Lua extension
    -
    -PR.registerLangHandler(PR.createSimpleLexer([[PR.PR_PLAIN,/^[\t\n\r \xA0]+/,null,'	\n\r \xa0'],[PR.PR_STRING,/^(?:\"(?:[^\"\\]|\\[\s\S])*(?:\"|$)|\'(?:[^\'\\]|\\[\s\S])*(?:\'|$))/,null,'\"\'']],[[PR.PR_COMMENT,/^--(?:\[(=*)\[[\s\S]*?(?:\]\1\]|$)|[^\r\n]*)/],[PR.PR_STRING,/^\[(=*)\[[\s\S]*?(?:\]\1\]|$)/],[PR.PR_KEYWORD,/^(?:and|break|do|else|elseif|end|false|for|function|if|in|local|nil|not|or|repeat|return|then|true|until|while)\b/,null],[PR.PR_LITERAL,/^[+-]?(?:0x[\da-f]+|(?:(?:\.\d+|\d+(?:\.\d*)?)(?:e[+\-]?\d+)?))/i],[PR.PR_PLAIN,/^[a-z_]\w*/i],[PR.PR_PUNCTUATION,/^[^\w\t\n\r \xA0][^\w\t\n\r \xA0\"\'\-\+=]*/]]),['lua'])
    -
    -
    -// Haskell extension
    -
    -PR.registerLangHandler(PR.createSimpleLexer([[PR.PR_PLAIN,/^[\t\n\x0B\x0C\r ]+/,null,'	\n\r '],[PR.PR_STRING,/^\"(?:[^\"\\\n\x0C\r]|\\[\s\S])*(?:\"|$)/,null,'\"'],[PR.PR_STRING,/^\'(?:[^\'\\\n\x0C\r]|\\[^&])\'?/,null,'\''],[PR.PR_LITERAL,/^(?:0o[0-7]+|0x[\da-f]+|\d+(?:\.\d+)?(?:e[+\-]?\d+)?)/i,null,'0123456789']],[[PR.PR_COMMENT,/^(?:(?:--+(?:[^\r\n\x0C]*)?)|(?:\{-(?:[^-]|-+[^-\}])*-\}))/],[PR.PR_KEYWORD,/^(?:case|class|data|default|deriving|do|else|if|import|in|infix|infixl|infixr|instance|let|module|newtype|of|then|type|where|_)(?=[^a-zA-Z0-9\']|$)/,null],[PR.PR_PLAIN,/^(?:[A-Z][\w\']*\.)*[a-zA-Z][\w\']*/],[PR.PR_PUNCTUATION,/^[^\t\n\x0B\x0C\r a-zA-Z0-9\'\"]+/]]),['hs'])
    -
    -
    -// ML extension
    -
    -PR.registerLangHandler(PR.createSimpleLexer([[PR.PR_PLAIN,/^[\t\n\r \xA0]+/,null,'	\n\r \xa0'],[PR.PR_COMMENT,/^#(?:if[\t\n\r \xA0]+(?:[a-z_$][\w\']*|``[^\r\n\t`]*(?:``|$))|else|endif|light)/i,null,'#'],[PR.PR_STRING,/^(?:\"(?:[^\"\\]|\\[\s\S])*(?:\"|$)|\'(?:[^\'\\]|\\[\s\S])*(?:\'|$))/,null,'\"\'']],[[PR.PR_COMMENT,/^(?:\/\/[^\r\n]*|\(\*[\s\S]*?\*\))/],[PR.PR_KEYWORD,/^(?:abstract|and|as|assert|begin|class|default|delegate|do|done|downcast|downto|elif|else|end|exception|extern|false|finally|for|fun|function|if|in|inherit|inline|interface|internal|lazy|let|match|member|module|mutable|namespace|new|null|of|open|or|override|private|public|rec|return|static|struct|then|to|true|try|type|upcast|use|val|void|when|while|with|yield|asr|land|lor|lsl|lsr|lxor|mod|sig|atomic|break|checked|component|const|constraint|constructor|continue|eager|event|external|fixed|functor|global|include|method|mixin|object|parallel|process|protected|pure|sealed|trait|virtual|volatile)\b/],[PR.PR_LITERAL,/^[+\-]?(?:0x[\da-f]+|(?:(?:\.\d+|\d+(?:\.\d*)?)(?:e[+\-]?\d+)?))/i],[PR.PR_PLAIN,/^(?:[a-z_]\w*[!?#]?|``[^\r\n\t`]*(?:``|$))/i],[PR.PR_PUNCTUATION,/^[^\t\n\r \xA0\"\'\w]+/]]),['fs','ml'])
    -
    -
    -// SQL extension
    -
    -PR.registerLangHandler(PR.createSimpleLexer([[PR.PR_PLAIN,/^[\t\n\r \xA0]+/,null,'	\n\r \xa0'],[PR.PR_STRING,/^(?:"(?:[^\"\\]|\\.)*"|'(?:[^\'\\]|\\.)*')/,null,'\"\'']],[[PR.PR_COMMENT,/^(?:--[^\r\n]*|\/\*[\s\S]*?(?:\*\/|$))/],[PR.PR_KEYWORD,/^(?:ADD|ALL|ALTER|AND|ANY|AS|ASC|AUTHORIZATION|BACKUP|BEGIN|BETWEEN|BREAK|BROWSE|BULK|BY|CASCADE|CASE|CHECK|CHECKPOINT|CLOSE|CLUSTERED|COALESCE|COLLATE|COLUMN|COMMIT|COMPUTE|CONSTRAINT|CONTAINS|CONTAINSTABLE|CONTINUE|CONVERT|CREATE|CROSS|CURRENT|CURRENT_DATE|CURRENT_TIME|CURRENT_TIMESTAMP|CURRENT_USER|CURSOR|DATABASE|DBCC|DEALLOCATE|DECLARE|DEFAULT|DELETE|DENY|DESC|DISK|DISTINCT|DISTRIBUTED|DOUBLE|DROP|DUMMY|DUMP|ELSE|END|ERRLVL|ESCAPE|EXCEPT|EXEC|EXECUTE|EXISTS|EXIT|FETCH|FILE|FILLFACTOR|FOR|FOREIGN|FREETEXT|FREETEXTTABLE|FROM|FULL|FUNCTION|GOTO|GRANT|GROUP|HAVING|HOLDLOCK|IDENTITY|IDENTITYCOL|IDENTITY_INSERT|IF|IN|INDEX|INNER|INSERT|INTERSECT|INTO|IS|JOIN|KEY|KILL|LEFT|LIKE|LINENO|LOAD|NATIONAL|NOCHECK|NONCLUSTERED|NOT|NULL|NULLIF|OF|OFF|OFFSETS|ON|OPEN|OPENDATASOURCE|OPENQUERY|OPENROWSET|OPENXML|OPTION|OR|ORDER|OUTER|OVER|PERCENT|PLAN|PRECISION|PRIMARY|PRINT|PROC|PROCEDURE|PUBLIC|RAISERROR|READ|READTEXT|RECONFIGURE|REFERENCES|REPLICATION|RESTORE|RESTRICT|RETURN|REVOKE|RIGHT|ROLLBACK|ROWCOUNT|ROWGUIDCOL|RULE|SAVE|SCHEMA|SELECT|SESSION_USER|SET|SETUSER|SHUTDOWN|SOME|STATISTICS|SYSTEM_USER|TABLE|TEXTSIZE|THEN|TO|TOP|TRAN|TRANSACTION|TRIGGER|TRUNCATE|TSEQUAL|UNION|UNIQUE|UPDATE|UPDATETEXT|USE|USER|VALUES|VARYING|VIEW|WAITFOR|WHEN|WHERE|WHILE|WITH|WRITETEXT)(?=[^\w-]|$)/i,null],[PR.PR_LITERAL,/^[+-]?(?:0x[\da-f]+|(?:(?:\.\d+|\d+(?:\.\d*)?)(?:e[+\-]?\d+)?))/i],[PR.PR_PLAIN,/^[a-z_][\w-]*/i],[PR.PR_PUNCTUATION,/^[^\w\t\n\r \xA0\"\'][^\w\t\n\r \xA0+\-\"\']*/]]),['sql'])
    -
    -
    -// VB extension
    -
    -PR.registerLangHandler(PR.createSimpleLexer([[PR.PR_PLAIN,/^[\t\n\r \xA0\u2028\u2029]+/,null,'	\n\r \xa0\u2028\u2029'],[PR.PR_STRING,/^(?:[\"\u201C\u201D](?:[^\"\u201C\u201D]|[\"\u201C\u201D]{2})(?:[\"\u201C\u201D]c|$)|[\"\u201C\u201D](?:[^\"\u201C\u201D]|[\"\u201C\u201D]{2})*(?:[\"\u201C\u201D]|$))/i,null,'\"\u201c\u201d'],[PR.PR_COMMENT,/^[\'\u2018\u2019][^\r\n\u2028\u2029]*/,null,'\'\u2018\u2019']],[[PR.PR_KEYWORD,/^(?:AddHandler|AddressOf|Alias|And|AndAlso|Ansi|As|Assembly|Auto|Boolean|ByRef|Byte|ByVal|Call|Case|Catch|CBool|CByte|CChar|CDate|CDbl|CDec|Char|CInt|Class|CLng|CObj|Const|CShort|CSng|CStr|CType|Date|Decimal|Declare|Default|Delegate|Dim|DirectCast|Do|Double|Each|Else|ElseIf|End|EndIf|Enum|Erase|Error|Event|Exit|Finally|For|Friend|Function|Get|GetType|GoSub|GoTo|Handles|If|Implements|Imports|In|Inherits|Integer|Interface|Is|Let|Lib|Like|Long|Loop|Me|Mod|Module|MustInherit|MustOverride|MyBase|MyClass|Namespace|New|Next|Not|NotInheritable|NotOverridable|Object|On|Option|Optional|Or|OrElse|Overloads|Overridable|Overrides|ParamArray|Preserve|Private|Property|Protected|Public|RaiseEvent|ReadOnly|ReDim|RemoveHandler|Resume|Return|Select|Set|Shadows|Shared|Short|Single|Static|Step|Stop|String|Structure|Sub|SyncLock|Then|Throw|To|Try|TypeOf|Unicode|Until|Variant|Wend|When|While|With|WithEvents|WriteOnly|Xor|EndIf|GoSub|Let|Variant|Wend)\b/i,null],[PR.PR_COMMENT,/^REM[^\r\n\u2028\u2029]*/i],[PR.PR_LITERAL,/^(?:True\b|False\b|Nothing\b|\d+(?:E[+\-]?\d+[FRD]?|[FRDSIL])?|(?:&H[0-9A-F]+|&O[0-7]+)[SIL]?|\d*\.\d+(?:E[+\-]?\d+)?[FRD]?|#\s+(?:\d+[\-\/]\d+[\-\/]\d+(?:\s+\d+:\d+(?::\d+)?(\s*(?:AM|PM))?)?|\d+:\d+(?::\d+)?(\s*(?:AM|PM))?)\s+#)/i],[PR.PR_PLAIN,/^(?:(?:[a-z]|_\w)\w*|\[(?:[a-z]|_\w)\w*\])/i],[PR.PR_PUNCTUATION,/^[^\w\t\n\r \"\'\[\]\xA0\u2018\u2019\u201C\u201D\u2028\u2029]+/],[PR.PR_PUNCTUATION,/^(?:\[|\])/]]),['vb','vbs'])
    diff --git a/docs/php-api/javascript/searchdata.js b/docs/php-api/javascript/searchdata.js
    deleted file mode 100644
    index c3c62f4b7..000000000
    --- a/docs/php-api/javascript/searchdata.js
    +++ /dev/null
    @@ -1,182 +0,0 @@
    -var indexSectionsWithContent = {
    -   "Variables": {
    -      "Symbols": false,
    -      "Numbers": false,
    -      "A": true,
    -      "B": true,
    -      "C": true,
    -      "D": true,
    -      "E": true,
    -      "F": true,
    -      "G": true,
    -      "H": true,
    -      "I": true,
    -      "J": false,
    -      "K": false,
    -      "L": true,
    -      "M": true,
    -      "N": true,
    -      "O": true,
    -      "P": true,
    -      "Q": false,
    -      "R": true,
    -      "S": true,
    -      "T": true,
    -      "U": true,
    -      "V": true,
    -      "W": true,
    -      "X": true,
    -      "Y": true,
    -      "Z": false
    -      },
    -   "Functions": {
    -      "Symbols": false,
    -      "Numbers": false,
    -      "A": true,
    -      "B": true,
    -      "C": true,
    -      "D": true,
    -      "E": true,
    -      "F": true,
    -      "G": true,
    -      "H": false,
    -      "I": true,
    -      "J": false,
    -      "K": false,
    -      "L": true,
    -      "M": true,
    -      "N": false,
    -      "O": true,
    -      "P": true,
    -      "Q": false,
    -      "R": true,
    -      "S": true,
    -      "T": true,
    -      "U": true,
    -      "V": true,
    -      "W": true,
    -      "X": false,
    -      "Y": false,
    -      "Z": false
    -      },
    -   "Interfaces": {
    -      "Symbols": false,
    -      "Numbers": false,
    -      "A": false,
    -      "B": false,
    -      "C": false,
    -      "D": false,
    -      "E": false,
    -      "F": false,
    -      "G": false,
    -      "H": false,
    -      "I": false,
    -      "J": false,
    -      "K": false,
    -      "L": false,
    -      "M": true,
    -      "N": false,
    -      "O": false,
    -      "P": false,
    -      "Q": false,
    -      "R": false,
    -      "S": false,
    -      "T": false,
    -      "U": false,
    -      "V": false,
    -      "W": false,
    -      "X": false,
    -      "Y": false,
    -      "Z": false
    -      },
    -   "General": {
    -      "Symbols": false,
    -      "Numbers": false,
    -      "A": true,
    -      "B": true,
    -      "C": true,
    -      "D": true,
    -      "E": true,
    -      "F": true,
    -      "G": true,
    -      "H": true,
    -      "I": true,
    -      "J": false,
    -      "K": false,
    -      "L": true,
    -      "M": true,
    -      "N": true,
    -      "O": true,
    -      "P": true,
    -      "Q": false,
    -      "R": true,
    -      "S": true,
    -      "T": true,
    -      "U": true,
    -      "V": true,
    -      "W": true,
    -      "X": true,
    -      "Y": true,
    -      "Z": false
    -      },
    -   "Classes": {
    -      "Symbols": false,
    -      "Numbers": false,
    -      "A": false,
    -      "B": false,
    -      "C": false,
    -      "D": false,
    -      "E": false,
    -      "F": false,
    -      "G": false,
    -      "H": false,
    -      "I": false,
    -      "J": false,
    -      "K": false,
    -      "L": false,
    -      "M": true,
    -      "N": false,
    -      "O": false,
    -      "P": false,
    -      "Q": false,
    -      "R": false,
    -      "S": false,
    -      "T": false,
    -      "U": false,
    -      "V": false,
    -      "W": false,
    -      "X": false,
    -      "Y": false,
    -      "Z": false
    -      },
    -   "Files": {
    -      "Symbols": false,
    -      "Numbers": false,
    -      "A": true,
    -      "B": false,
    -      "C": false,
    -      "D": false,
    -      "E": false,
    -      "F": false,
    -      "G": false,
    -      "H": false,
    -      "I": false,
    -      "J": false,
    -      "K": false,
    -      "L": false,
    -      "M": true,
    -      "N": false,
    -      "O": false,
    -      "P": false,
    -      "Q": false,
    -      "R": false,
    -      "S": false,
    -      "T": false,
    -      "U": false,
    -      "V": false,
    -      "W": false,
    -      "X": false,
    -      "Y": false,
    -      "Z": false
    -      }
    -   }
    \ No newline at end of file
    diff --git a/docs/php-api/search/ClassesM.html b/docs/php-api/search/ClassesM.html
    deleted file mode 100644
    index df92dc4d9..000000000
    --- a/docs/php-api/search/ClassesM.html
    +++ /dev/null
    @@ -1,20 +0,0 @@
    -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
    -
    -<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script></head><body class="PopupSearchResultsPage" onLoad="NDOnLoad()"><script language=JavaScript><!--
    -if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script>
    -
    -<!--  Generated by Natural Docs, version 1.51 -->
    -<!--  http://www.naturaldocs.org  -->
    -
    -<!-- saved from url=(0026)http://www.naturaldocs.org -->
    -
    -
    -
    -
    -<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_mxCell><div class=IEntry><a href="../files/model/mxCell-php.html#mxCell" target=_parent class=ISymbol>mxCell</a></div></div><div class=SRResult id=SR_mxCellCodec><div class=IEntry><a href="../files/io/mxCellCodec-php.html#mxCellCodec" target=_parent class=ISymbol>mxCellCodec</a></div></div><div class=SRResult id=SR_mxCellPath><div class=IEntry><a href="../files/model/mxCellPath-php.html#mxCellPath" target=_parent class=ISymbol>mxCellPath</a></div></div><div class=SRResult id=SR_mxCellState><div class=IEntry><a href="../files/view/mxCellState-php.html#mxCellState" target=_parent class=ISymbol>mxCellState</a></div></div><div class=SRResult id=SR_mxCodec><div class=IEntry><a href="../files/io/mxCodec-php.html#mxCodec" target=_parent class=ISymbol>mxCodec</a></div></div><div class=SRResult id=SR_mxCodecRegistry><div class=IEntry><a href="../files/io/mxCodecRegistry-php.html#mxCodecRegistry" target=_parent class=ISymbol>mxCodecRegistry</a></div></div><div class=SRResult id=SR_mxConnectionConstraint><div class=IEntry><a href="../files/view/mxConnectionConstraint-php.html#mxConnectionConstraint" target=_parent class=ISymbol>mxConnectionConstraint</a></div></div><div class=SRResult id=SR_mxConstants><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants" target=_parent class=ISymbol>mxConstants</a></div></div><div class=SRResult id=SR_mxEdgeStyle><div class=IEntry><a href="../files/view/mxEdgeStyle-php.html#mxEdgeStyle" target=_parent class=ISymbol>mxEdgeStyle</a></div></div><div class=SRResult id=SR_mxElbowConnector><div class=IEntry><a href="../files/view/mxEdgeStyle-php.html#mxElbowConnector" target=_parent class=ISymbol>mxElbowConnector</a></div></div><div class=SRResult id=SR_mxEllipsePerimeter><div class=IEntry><a href="../files/view/mxPerimeter-php.html#mxEllipsePerimeter" target=_parent class=ISymbol>mxEllipsePerimeter</a></div></div><div class=SRResult id=SR_mxEntityRelation><div class=IEntry><a href="../files/view/mxEdgeStyle-php.html#mxEntityRelation" target=_parent class=ISymbol>mxEntityRelation</a></div></div><div class=SRResult id=SR_mxEvent><div class=IEntry><a href="../files/util/mxEvent-php.html#mxEvent" target=_parent class=ISymbol>mxEvent</a></div></div><div class=SRResult id=SR_mxEventObject><div class=IEntry><a href="../files/util/mxEventObject-php.html#mxEventObject" target=_parent class=ISymbol>mxEventObject</a></div></div><div class=SRResult id=SR_mxEventSource><div class=IEntry><a href="../files/util/mxEventSource-php.html#mxEventSource" target=_parent class=ISymbol>mxEventSource</a></div></div><div class=SRResult id=SR_mxGdCanvas><div class=IEntry><a href="../files/canvas/mxGdCanvas-php.html#mxGdCanvas" target=_parent class=ISymbol>mxGdCanvas</a></div></div><div class=SRResult id=SR_mxGeometry><div class=IEntry><a href="../files/model/mxGeometry-php.html#mxGeometry" target=_parent class=ISymbol>mxGeometry</a></div></div><div class=SRResult id=SR_mxGraph><div class=IEntry><a href="../files/view/mxGraph-php.html#mxGraph" target=_parent class=ISymbol>mxGraph</a></div></div><div class=SRResult id=SR_mxGraphModel><div class=IEntry><a href="../files/model/mxGraphModel-php.html#mxGraphModel" target=_parent class=ISymbol>mxGraphModel</a></div></div><div class=SRResult id=SR_mxGraphView><div class=IEntry><a href="../files/view/mxGraphView-php.html#mxGraphView" target=_parent class=ISymbol>mxGraphView</a></div></div><div class=SRResult id=SR_mxGraphViewHtmlReader><div class=IEntry><a href="../files/reader/mxGraphViewHtmlReader-php.html#mxGraphViewHtmlReader" target=_parent class=ISymbol>mxGraphViewHtmlReader</a></div></div><div class=SRResult id=SR_mxGraphViewImageReader><div class=IEntry><a href="../files/reader/mxGraphViewImageReader-php.html#mxGraphViewImageReader" target=_parent class=ISymbol>mxGraphViewImageReader</a></div></div><div class=SRResult id=SR_mxHtmlCanvas><div class=IEntry><a href="../files/canvas/mxHtmlCanvas-php.html#mxHtmlCanvas" target=_parent class=ISymbol>mxHtmlCanvas</a></div></div><div class=SRResult id=SR_mxImageBundle><div class=IEntry><a href="../files/util/mxImageBundle-php.html#mxImageBundle" target=_parent class=ISymbol>mxImageBundle</a></div></div><div class=SRResult id=SR_mxLog><div class=IEntry><a href="../files/util/mxLog-php.html#mxLog" target=_parent class=ISymbol>mxLog</a></div></div><div class=SRResult id=SR_mxLoop><div class=IEntry><a href="../files/view/mxEdgeStyle-php.html#mxLoop" target=_parent class=ISymbol>mxLoop</a></div></div><div class=SRResult id=SR_mxModelCodec><div class=IEntry><a href="../files/io/mxModelCodec-php.html#mxModelCodec" target=_parent class=ISymbol>mxModelCodec</a></div></div><div class=SRResult id=SR_mxObjectCodec><div class=IEntry><a href="../files/io/mxObjectCodec-php.html#mxObjectCodec" target=_parent class=ISymbol>mxObjectCodec</a></div></div><div class=SRResult id=SR_mxPerimeter><div class=IEntry><a href="../files/view/mxPerimeter-php.html#mxPerimeter" target=_parent class=ISymbol>mxPerimeter</a></div></div><div class=SRResult id=SR_mxPoint><div class=IEntry><a href="../files/util/mxPoint-php.html#mxPoint" target=_parent class=ISymbol>mxPoint</a></div></div><div class=SRResult id=SR_mxRectangle><div class=IEntry><a href="../files/util/mxRectangle-php.html#mxRectangle" target=_parent class=ISymbol>mxRectangle</a></div></div><div class=SRResult id=SR_mxRectanglePerimeter><div class=IEntry><a href="../files/view/mxPerimeter-php.html#mxRectanglePerimeter" target=_parent class=ISymbol>mxRectanglePerimeter</a></div></div><div class=SRResult id=SR_mxRhombusPerimeter><div class=IEntry><a href="../files/view/mxPerimeter-php.html#mxRhombusPerimeter" target=_parent class=ISymbol>mxRhombusPerimeter</a></div></div><div class=SRResult id=SR_mxSideToSide><div class=IEntry><a href="../files/view/mxEdgeStyle-php.html#mxSideToSide" target=_parent class=ISymbol>mxSideToSide</a></div></div><div class=SRResult id=SR_mxStyleRegistry><div class=IEntry><a href="../files/view/mxStyleRegistry-php.html#mxStyleRegistry" target=_parent class=ISymbol>mxStyleRegistry</a></div></div><div class=SRResult id=SR_mxStylesheet><div class=IEntry><a href="../files/view/mxStylesheet-php.html#mxStylesheet" target=_parent class=ISymbol>mxStylesheet</a></div></div><div class=SRResult id=SR_mxStylesheetCodec><div class=IEntry><a href="../files/io/mxStylesheetCodec-php.html#mxStylesheetCodec" target=_parent class=ISymbol>mxStylesheetCodec</a></div></div><div class=SRResult id=SR_mxTopToBottom><div class=IEntry><a href="../files/view/mxEdgeStyle-php.html#mxTopToBottom" target=_parent class=ISymbol>mxTopToBottom</a></div></div><div class=SRResult id=SR_mxTrianglePerimeter><div class=IEntry><a href="../files/view/mxPerimeter-php.html#mxTrianglePerimeter" target=_parent class=ISymbol>mxTrianglePerimeter</a></div></div><div class=SRResult id=SR_mxUtils><div class=IEntry><a href="../files/util/mxUtils-php.html#mxUtils" target=_parent class=ISymbol>mxUtils</a></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
    -document.getElementById("Loading").style.display="none";
    -document.getElementById("NoMatches").style.display="none";
    -var searchResults = new SearchResults("searchResults", "HTML");
    -searchResults.Search();
    ---></script></div><script language=JavaScript><!--
    -if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
    \ No newline at end of file
    diff --git a/docs/php-api/search/FilesA.html b/docs/php-api/search/FilesA.html
    deleted file mode 100644
    index 3c0797828..000000000
    --- a/docs/php-api/search/FilesA.html
    +++ /dev/null
    @@ -1,20 +0,0 @@
    -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
    -
    -<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script></head><body class="PopupSearchResultsPage" onLoad="NDOnLoad()"><script language=JavaScript><!--
    -if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script>
    -
    -<!--  Generated by Natural Docs, version 1.51 -->
    -<!--  http://www.naturaldocs.org  -->
    -
    -<!-- saved from url=(0026)http://www.naturaldocs.org -->
    -
    -
    -
    -
    -<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_API_spcSpecification><div class=IEntry><a href="../files/index-txt.html#API_Specification" target=_parent class=ISymbol>API Specification</a></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
    -document.getElementById("Loading").style.display="none";
    -document.getElementById("NoMatches").style.display="none";
    -var searchResults = new SearchResults("searchResults", "HTML");
    -searchResults.Search();
    ---></script></div><script language=JavaScript><!--
    -if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
    \ No newline at end of file
    diff --git a/docs/php-api/search/FilesM.html b/docs/php-api/search/FilesM.html
    deleted file mode 100644
    index 8c5fc49f2..000000000
    --- a/docs/php-api/search/FilesM.html
    +++ /dev/null
    @@ -1,20 +0,0 @@
    -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
    -
    -<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script></head><body class="PopupSearchResultsPage" onLoad="NDOnLoad()"><script language=JavaScript><!--
    -if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script>
    -
    -<!--  Generated by Natural Docs, version 1.51 -->
    -<!--  http://www.naturaldocs.org  -->
    -
    -<!-- saved from url=(0026)http://www.naturaldocs.org -->
    -
    -
    -
    -
    -<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_mxGdCanvas_perphp><div class=IEntry><a href="../files/canvas/mxGdCanvas-php.html#mxGdCanvas.php" target=_parent class=ISymbol>mxGdCanvas.php</a></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
    -document.getElementById("Loading").style.display="none";
    -document.getElementById("NoMatches").style.display="none";
    -var searchResults = new SearchResults("searchResults", "HTML");
    -searchResults.Search();
    ---></script></div><script language=JavaScript><!--
    -if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
    \ No newline at end of file
    diff --git a/docs/php-api/search/FunctionsA.html b/docs/php-api/search/FunctionsA.html
    deleted file mode 100644
    index 5600818af..000000000
    --- a/docs/php-api/search/FunctionsA.html
    +++ /dev/null
    @@ -1,20 +0,0 @@
    -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
    -
    -<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script></head><body class="PopupSearchResultsPage" onLoad="NDOnLoad()"><script language=JavaScript><!--
    -if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script>
    -
    -<!--  Generated by Natural Docs, version 1.51 -->
    -<!--  http://www.naturaldocs.org  -->
    -
    -<!-- saved from url=(0026)http://www.naturaldocs.org -->
    -
    -
    -
    -
    -<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_add><div class=IEntry><a href="javascript:searchResults.Toggle('SR_add')" class=ISymbol>add</a><div class=ISubIndex><a href="../files/model/mxGraphModel-php.html#mxGraphModel.add" target=_parent class=IParent>mxGraphModel</a><a href="../files/util/mxRectangle-php.html#mxRectangle.add" target=_parent class=IParent>mxRectangle</a></div></div></div><div class=SRResult id=SR_addAlias><div class=IEntry><a href="../files/io/mxCodecRegistry-php.html#mxCodecRegistry.addAlias" target=_parent class=ISymbol>addAlias</a>, <span class=IParent>mxCodecRegistry</span></div></div><div class=SRResult id=SR_addBundle><div class=IEntry><a href="../files/view/mxGraph-php.html#mxGraph.addBundle" target=_parent class=ISymbol>addBundle</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_addElement><div class=IEntry><a href="../files/io/mxCodec-php.html#mxCodec.addElement" target=_parent class=ISymbol>addElement</a>, <span class=IParent>mxCodec</span></div></div><div class=SRResult id=SR_addListener><div class=IEntry><a href="../files/util/mxEventSource-php.html#mxEventSource.addListener" target=_parent class=ISymbol>addListener</a>, <span class=IParent>mxEventSource</span></div></div><div class=SRResult id=SR_addLogfile><div class=IEntry><a href="../files/util/mxLog-php.html#mxLog.addLogfile" target=_parent class=ISymbol>addLogfile</a>, <span class=IParent>mxLog</span></div></div><div class=SRResult id=SR_addObjectValue><div class=IEntry><a href="../files/io/mxObjectCodec-php.html#mxObjectCodec.addObjectValue" target=_parent class=ISymbol>addObjectValue</a>, <span class=IParent>mxObjectCodec</span></div></div><div class=SRResult id=SR_addStylename><div class=IEntry><a href="../files/util/mxUtils-php.html#mxUtils.addStylename" target=_parent class=ISymbol>addStylename</a>, <span class=IParent>mxUtils</span></div></div><div class=SRResult id=SR_afterDecode><div class=IEntry><a href="../files/io/mxObjectCodec-php.html#mxObjectCodec.afterDecode" target=_parent class=ISymbol>afterDecode</a>, <span class=IParent>mxObjectCodec</span></div></div><div class=SRResult id=SR_afterEncode><div class=IEntry><a href="../files/io/mxObjectCodec-php.html#mxObjectCodec.afterEncode" target=_parent class=ISymbol>afterEncode</a>, <span class=IParent>mxObjectCodec</span></div></div><div class=SRResult id=SR_apply><div class=IEntry><a href="javascript:searchResults.Toggle('SR_apply')" class=ISymbol>apply</a><div class=ISubIndex><a href="../files/view/mxEdgeStyle-php.html#mxEdgeStyleFunction.apply" target=_parent class=IParent>mxEdgeStyleFunction</a><a href="../files/view/mxPerimeter-php.html#mxPerimeterFunction.apply" target=_parent class=IParent>mxPerimeterFunction</a></div></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
    -document.getElementById("Loading").style.display="none";
    -document.getElementById("NoMatches").style.display="none";
    -var searchResults = new SearchResults("searchResults", "HTML");
    -searchResults.Search();
    ---></script></div><script language=JavaScript><!--
    -if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
    \ No newline at end of file
    diff --git a/docs/php-api/search/FunctionsB.html b/docs/php-api/search/FunctionsB.html
    deleted file mode 100644
    index f452276a1..000000000
    --- a/docs/php-api/search/FunctionsB.html
    +++ /dev/null
    @@ -1,20 +0,0 @@
    -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
    -
    -<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script></head><body class="PopupSearchResultsPage" onLoad="NDOnLoad()"><script language=JavaScript><!--
    -if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script>
    -
    -<!--  Generated by Natural Docs, version 1.51 -->
    -<!--  http://www.naturaldocs.org  -->
    -
    -<!-- saved from url=(0026)http://www.naturaldocs.org -->
    -
    -
    -
    -
    -<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_beforeDecode><div class=IEntry><a href="../files/io/mxObjectCodec-php.html#mxObjectCodec.beforeDecode" target=_parent class=ISymbol>beforeDecode</a>, <span class=IParent>mxObjectCodec</span></div></div><div class=SRResult id=SR_beforeEncode><div class=IEntry><a href="../files/io/mxObjectCodec-php.html#mxObjectCodec.beforeEncode" target=_parent class=ISymbol>beforeEncode</a>, <span class=IParent>mxObjectCodec</span></div></div><div class=SRResult id=SR_beginUpdate><div class=IEntry><a href="../files/model/mxGraphModel-php.html#mxGraphModel.beginUpdate" target=_parent class=ISymbol>beginUpdate</a>, <span class=IParent>mxGraphModel</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
    -document.getElementById("Loading").style.display="none";
    -document.getElementById("NoMatches").style.display="none";
    -var searchResults = new SearchResults("searchResults", "HTML");
    -searchResults.Search();
    ---></script></div><script language=JavaScript><!--
    -if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
    \ No newline at end of file
    diff --git a/docs/php-api/search/FunctionsC.html b/docs/php-api/search/FunctionsC.html
    deleted file mode 100644
    index 413c85b0b..000000000
    --- a/docs/php-api/search/FunctionsC.html
    +++ /dev/null
    @@ -1,20 +0,0 @@
    -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
    -
    -<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script></head><body class="PopupSearchResultsPage" onLoad="NDOnLoad()"><script language=JavaScript><!--
    -if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script>
    -
    -<!--  Generated by Natural Docs, version 1.51 -->
    -<!--  http://www.naturaldocs.org  -->
    -
    -<!-- saved from url=(0026)http://www.naturaldocs.org -->
    -
    -
    -
    -
    -<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_cellAdded><div class=IEntry><a href="../files/model/mxGraphModel-php.html#mxGraphModel.cellAdded" target=_parent class=ISymbol>cellAdded</a>, <span class=IParent>mxGraphModel</span></div></div><div class=SRResult id=SR_cellCloned><div class=IEntry><a href="../files/model/mxGraphModel-php.html#mxGraphModel.cellCloned" target=_parent class=ISymbol>cellCloned</a>, <span class=IParent>mxGraphModel</span></div></div><div class=SRResult id=SR_cellRemoved><div class=IEntry><a href="../files/model/mxGraphModel-php.html#mxGraphModel.cellRemoved" target=_parent class=ISymbol>cellRemoved</a>, <span class=IParent>mxGraphModel</span></div></div><div class=SRResult id=SR_clear><div class=IEntry><a href="../files/model/mxGraphModel-php.html#mxGraphModel.clear" target=_parent class=ISymbol>clear</a>, <span class=IParent>mxGraphModel</span></div></div><div class=SRResult id=SR_cloneCell><div class=IEntry><a href="../files/model/mxGraphModel-php.html#mxGraphModel.cloneCell" target=_parent class=ISymbol>cloneCell</a>, <span class=IParent>mxGraphModel</span></div></div><div class=SRResult id=SR_cloneCellImpl><div class=IEntry><a href="../files/model/mxGraphModel-php.html#mxGraphModel.cloneCellImpl" target=_parent class=ISymbol>cloneCellImpl</a>, <span class=IParent>mxGraphModel</span></div></div><div class=SRResult id=SR_cloneCells><div class=IEntry><a href="../files/model/mxGraphModel-php.html#mxGraphModel.cloneCells" target=_parent class=ISymbol>cloneCells</a>, <span class=IParent>mxGraphModel</span></div></div><div class=SRResult id=SR_cloneTemplate><div class=IEntry><a href="../files/io/mxObjectCodec-php.html#mxObjectCodec.cloneTemplate" target=_parent class=ISymbol>cloneTemplate</a>, <span class=IParent>mxObjectCodec</span></div></div><div class=SRResult id=SR_close><div class=IEntry><a href="../files/util/mxLog-php.html#mxLog.close" target=_parent class=ISymbol>close</a>, <span class=IParent>mxLog</span></div></div><div class=SRResult id=SR_consume><div class=IEntry><a href="../files/util/mxEventObject-php.html#mxEventObject.consume" target=_parent class=ISymbol>consume</a>, <span class=IParent>mxEventObject</span></div></div><div class=SRResult id=SR_contains><div class=IEntry><a href="javascript:searchResults.Toggle('SR_contains')" class=ISymbol>contains</a><div class=ISubIndex><a href="../files/model/mxGraphModel-php.html#mxGraphModel.contains" target=_parent class=IParent>mxGraphModel</a><a href="../files/util/mxUtils-php.html#mxUtils.contains" target=_parent class=IParent>mxUtils</a></div></div></div><div class=SRResult id=SR_convert><div class=IEntry><a href="javascript:searchResults.Toggle('SR_convert')" class=ISymbol>convert</a><div class=ISubIndex><a href="../files/reader/mxGraphViewHtmlReader-php.html#mxGraphViewHtmlReader.convert" target=_parent class=IParent>mxGraphViewHtmlReader</a><a href="../files/reader/mxGraphViewImageReader-php.html#mxGraphViewImageReader.convert" target=_parent class=IParent>mxGraphViewImageReader</a></div></div></div><div class=SRResult id=SR_convertFile><div class=IEntry><a href="javascript:searchResults.Toggle('SR_convertFile')" class=ISymbol>convertFile</a><div class=ISubIndex><a href="../files/reader/mxGraphViewHtmlReader-php.html#mxGraphViewHtmlReader.convertFile" target=_parent class=IParent>mxGraphViewHtmlReader</a><a href="../files/reader/mxGraphViewImageReader-php.html#mxGraphViewImageReader.convertFile" target=_parent class=IParent>mxGraphViewImageReader</a></div></div></div><div class=SRResult id=SR_convertValueFromXml><div class=IEntry><a href="../files/io/mxObjectCodec-php.html#mxObjectCodec.convertValueFromXml" target=_parent class=ISymbol>convertValueFromXml</a>, <span class=IParent>mxObjectCodec</span></div></div><div class=SRResult id=SR_convertValueToString><div class=IEntry><a href="../files/view/mxGraph-php.html#mxGraph.convertValueToString" target=_parent class=ISymbol>convertValueToString</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_convertValueToXml><div class=IEntry><a href="../files/io/mxObjectCodec-php.html#mxObjectCodec.convertValueToXml" target=_parent class=ISymbol>convertValueToXml</a>, <span class=IParent>mxObjectCodec</span></div></div><div class=SRResult id=SR_copy><div class=IEntry><a href="javascript:searchResults.Toggle('SR_copy')" class=ISymbol>copy</a><div class=ISubIndex><a href="../files/model/mxCell-php.html#mxCell.copy" target=_parent class=IParent>mxCell</a><a href="../files/view/mxCellState-php.html#mxCellState.copy" target=_parent class=IParent>mxCellState</a><a href="../files/model/mxGeometry-php.html#mxGeometry.copy" target=_parent class=IParent>mxGeometry</a><a href="../files/util/mxPoint-php.html#mxPoint.copy" target=_parent class=IParent>mxPoint</a><a href="../files/util/mxRectangle-php.html#mxRectangle.copy" target=_parent class=IParent>mxRectangle</a></div></div></div><div class=SRResult id=SR_copyValue><div class=IEntry><a href="../files/model/mxCell-php.html#mxCell.copyValue" target=_parent class=ISymbol>copyValue</a>, <span class=IParent>mxCell</span></div></div><div class=SRResult id=SR_create><div class=IEntry><a href="../files/model/mxCellPath-php.html#mxCellPath.create" target=_parent class=ISymbol>create</a>, <span class=IParent>mxCellPath</span></div></div><div class=SRResult id=SR_createCanvas><div class=IEntry><a href="javascript:searchResults.Toggle('SR_createCanvas')" class=ISymbol>createCanvas</a><div class=ISubIndex><a href="../files/reader/mxGraphViewHtmlReader-php.html#mxGraphViewHtmlReader.createCanvas" target=_parent class=IParent>mxGraphViewHtmlReader</a><a href="../files/reader/mxGraphViewImageReader-php.html#mxGraphViewImageReader.createCanvas" target=_parent class=IParent>mxGraphViewImageReader</a></div></div></div><div class=SRResult id=SR_createDefaultEdgeStyle><div class=IEntry><a href="../files/view/mxStylesheet-php.html#mxStylesheet.createDefaultEdgeStyle" target=_parent class=ISymbol>createDefaultEdgeStyle</a>, <span class=IParent>mxStylesheet</span></div></div><div class=SRResult id=SR_createDefaultVertexStyle><div class=IEntry><a href="../files/view/mxStylesheet-php.html#mxStylesheet.createDefaultVertexStyle" target=_parent class=ISymbol>createDefaultVertexStyle</a>, <span class=IParent>mxStylesheet</span></div></div><div class=SRResult id=SR_createEdge><div class=IEntry><a href="../files/view/mxGraph-php.html#mxGraph.createEdge" target=_parent class=ISymbol>createEdge</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_createGraphView><div class=IEntry><a href="../files/view/mxGraph-php.html#mxGraph.createGraphView" target=_parent class=ISymbol>createGraphView</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_createId><div class=IEntry><a href="../files/model/mxGraphModel-php.html#mxGraphModel.createId" target=_parent class=ISymbol>createId</a>, <span class=IParent>mxGraphModel</span></div></div><div class=SRResult id=SR_createImage><div class=IEntry><a href="../files/view/mxGraph-php.html#mxGraph.createImage" target=_parent class=ISymbol>createImage</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_createRoot><div class=IEntry><a href="../files/model/mxGraphModel-php.html#mxGraphModel.createRoot" target=_parent class=ISymbol>createRoot</a>, <span class=IParent>mxGraphModel</span></div></div><div class=SRResult id=SR_createState><div class=IEntry><a href="../files/view/mxGraphView-php.html#mxGraphView.createState" target=_parent class=ISymbol>createState</a>, <span class=IParent>mxGraphView</span></div></div><div class=SRResult id=SR_createStylesheet><div class=IEntry><a href="../files/view/mxGraph-php.html#mxGraph.createStylesheet" target=_parent class=ISymbol>createStylesheet</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_createVertex><div class=IEntry><a href="../files/view/mxGraph-php.html#mxGraph.createVertex" target=_parent class=ISymbol>createVertex</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_createXmlDocument><div class=IEntry><a href="../files/util/mxUtils-php.html#mxUtils.createXmlDocument" target=_parent class=ISymbol>createXmlDocument</a>, <span class=IParent>mxUtils</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
    -document.getElementById("Loading").style.display="none";
    -document.getElementById("NoMatches").style.display="none";
    -var searchResults = new SearchResults("searchResults", "HTML");
    -searchResults.Search();
    ---></script></div><script language=JavaScript><!--
    -if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
    \ No newline at end of file
    diff --git a/docs/php-api/search/FunctionsD.html b/docs/php-api/search/FunctionsD.html
    deleted file mode 100644
    index eab094067..000000000
    --- a/docs/php-api/search/FunctionsD.html
    +++ /dev/null
    @@ -1,20 +0,0 @@
    -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
    -
    -<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script></head><body class="PopupSearchResultsPage" onLoad="NDOnLoad()"><script language=JavaScript><!--
    -if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script>
    -
    -<!--  Generated by Natural Docs, version 1.51 -->
    -<!--  http://www.naturaldocs.org  -->
    -
    -<!-- saved from url=(0026)http://www.naturaldocs.org -->
    -
    -
    -
    -
    -<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_debug><div class=IEntry><a href="../files/util/mxLog-php.html#mxLog.debug" target=_parent class=ISymbol>debug</a>, <span class=IParent>mxLog</span></div></div><div class=SRResult id=SR_decode><div class=IEntry><a href="javascript:searchResults.Toggle('SR_decode')" class=ISymbol>decode</a><div class=ISubIndex><a href="../files/io/mxCodec-php.html#mxCodec.decode" target=_parent class=IParent>mxCodec</a><a href="../files/io/mxObjectCodec-php.html#mxObjectCodec.decode" target=_parent class=IParent>mxObjectCodec</a></div></div></div><div class=SRResult id=SR_decodeAttribute><div class=IEntry><a href="../files/io/mxObjectCodec-php.html#mxObjectCodec.decodeAttribute" target=_parent class=ISymbol>decodeAttribute</a>, <span class=IParent>mxObjectCodec</span></div></div><div class=SRResult id=SR_decodeAttributes><div class=IEntry><a href="../files/io/mxObjectCodec-php.html#mxObjectCodec.decodeAttributes" target=_parent class=ISymbol>decodeAttributes</a>, <span class=IParent>mxObjectCodec</span></div></div><div class=SRResult id=SR_decodeCell><div class=IEntry><a href="../files/io/mxCodec-php.html#mxCodec.decodeCell" target=_parent class=ISymbol>decodeCell</a>, <span class=IParent>mxCodec</span></div></div><div class=SRResult id=SR_decodeChild><div class=IEntry><a href="../files/io/mxObjectCodec-php.html#mxObjectCodec.decodeChild" target=_parent class=ISymbol>decodeChild</a>, <span class=IParent>mxObjectCodec</span></div></div><div class=SRResult id=SR_decodeChildren><div class=IEntry><a href="../files/io/mxObjectCodec-php.html#mxObjectCodec.decodeChildren" target=_parent class=ISymbol>decodeChildren</a>, <span class=IParent>mxObjectCodec</span></div></div><div class=SRResult id=SR_decodeNode><div class=IEntry><a href="../files/io/mxObjectCodec-php.html#mxObjectCodec.decodeNode" target=_parent class=ISymbol>decodeNode</a>, <span class=IParent>mxObjectCodec</span></div></div><div class=SRResult id=SR_destroy><div class=IEntry><a href="javascript:searchResults.Toggle('SR_destroy')" class=ISymbol>destroy</a><div class=ISubIndex><a href="../files/canvas/mxGdCanvas-php.html#mxGdCanvas.destroy" target=_parent class=IParent>mxGdCanvas</a><a href="../files/reader/mxGraphViewImageReader-php.html#mxGraphViewImageReader.destroy" target=_parent class=IParent>mxGraphViewImageReader</a><a href="../files/canvas/mxHtmlCanvas-php.html#mxHtmlCanvas.destroy" target=_parent class=IParent>mxHtmlCanvas</a></div></div></div><div class=SRResult id=SR_drawActor><div class=IEntry><a href="../files/canvas/mxGdCanvas-php.html#mxGdCanvas.drawActor" target=_parent class=ISymbol>drawActor</a>, <span class=IParent>mxGdCanvas</span></div></div><div class=SRResult id=SR_drawCell><div class=IEntry><a href="../files/canvas/mxGdCanvas-php.html#mxGdCanvas.drawCell" target=_parent class=ISymbol>drawCell</a>, <span class=IParent>mxGdCanvas</span></div></div><div class=SRResult id=SR_drawCloud><div class=IEntry><a href="../files/canvas/mxGdCanvas-php.html#mxGdCanvas.drawCloud" target=_parent class=ISymbol>drawCloud</a>, <span class=IParent>mxGdCanvas</span></div></div><div class=SRResult id=SR_drawCylinder><div class=IEntry><a href="../files/canvas/mxGdCanvas-php.html#mxGdCanvas.drawCylinder" target=_parent class=ISymbol>drawCylinder</a>, <span class=IParent>mxGdCanvas</span></div></div><div class=SRResult id=SR_drawFixedTextLine><div class=IEntry><a href="../files/canvas/mxGdCanvas-php.html#mxGdCanvas.drawFixedTextLine" target=_parent class=ISymbol>drawFixedTextLine</a>, <span class=IParent>mxGdCanvas</span></div></div><div class=SRResult id=SR_drawGraph><div class=IEntry><a href="javascript:searchResults.Toggle('SR_drawGraph')" class=ISymbol>drawGraph</a><div class=ISubIndex><a href="../files/canvas/mxGdCanvas-php.html#mxGdCanvas.drawGraph" target=_parent class=IParent>mxGdCanvas</a><a href="../files/view/mxGraph-php.html#mxGraph.drawGraph" target=_parent class=IParent>mxGraph</a><a href="../files/canvas/mxHtmlCanvas-php.html#mxHtmlCanvas.drawGraph" target=_parent class=IParent>mxHtmlCanvas</a></div></div></div><div class=SRResult id=SR_drawHexagon><div class=IEntry><a href="../files/canvas/mxGdCanvas-php.html#mxGdCanvas.drawHexagon" target=_parent class=ISymbol>drawHexagon</a>, <span class=IParent>mxGdCanvas</span></div></div><div class=SRResult id=SR_drawImage><div class=IEntry><a href="javascript:searchResults.Toggle('SR_drawImage')" class=ISymbol>drawImage</a><div class=ISubIndex><a href="../files/canvas/mxGdCanvas-php.html#mxGdCanvas.drawImage" target=_parent class=IParent>mxGdCanvas</a><a href="../files/canvas/mxHtmlCanvas-php.html#mxHtmlCanvas.drawImage" target=_parent class=IParent>mxHtmlCanvas</a></div></div></div><div class=SRResult id=SR_drawLabel><div class=IEntry><a href="../files/canvas/mxGdCanvas-php.html#mxGdCanvas.drawLabel" target=_parent class=ISymbol>drawLabel</a>, <span class=IParent>mxGdCanvas</span></div></div><div class=SRResult id=SR_drawLine><div class=IEntry><a href="javascript:searchResults.Toggle('SR_drawLine')" class=ISymbol>drawLine</a><div class=ISubIndex><a href="../files/canvas/mxGdCanvas-php.html#mxGdCanvas.drawLine" target=_parent class=IParent>mxGdCanvas</a><a href="../files/canvas/mxHtmlCanvas-php.html#mxHtmlCanvas.drawLine" target=_parent class=IParent>mxHtmlCanvas</a></div></div></div><div class=SRResult id=SR_drawMarker><div class=IEntry><a href="../files/canvas/mxGdCanvas-php.html#mxGdCanvas.drawMarker" target=_parent class=ISymbol>drawMarker</a>, <span class=IParent>mxGdCanvas</span></div></div><div class=SRResult id=SR_drawOval><div class=IEntry><a href="../files/canvas/mxGdCanvas-php.html#mxGdCanvas.drawOval" target=_parent class=ISymbol>drawOval</a>, <span class=IParent>mxGdCanvas</span></div></div><div class=SRResult id=SR_drawPolygon><div class=IEntry><a href="../files/canvas/mxGdCanvas-php.html#mxGdCanvas.drawPolygon" target=_parent class=ISymbol>drawPolygon</a>, <span class=IParent>mxGdCanvas</span></div></div><div class=SRResult id=SR_drawRect><div class=IEntry><a href="../files/canvas/mxGdCanvas-php.html#mxGdCanvas.drawRect" target=_parent class=ISymbol>drawRect</a>, <span class=IParent>mxGdCanvas</span></div></div><div class=SRResult id=SR_drawRhombus><div class=IEntry><a href="../files/canvas/mxGdCanvas-php.html#mxGdCanvas.drawRhombus" target=_parent class=ISymbol>drawRhombus</a>, <span class=IParent>mxGdCanvas</span></div></div><div class=SRResult id=SR_drawShape><div class=IEntry><a href="javascript:searchResults.Toggle('SR_drawShape')" class=ISymbol>drawShape</a><div class=ISubIndex><a href="../files/canvas/mxGdCanvas-php.html#mxGdCanvas.drawShape" target=_parent class=IParent>mxGdCanvas</a><a href="../files/canvas/mxHtmlCanvas-php.html#mxHtmlCanvas.drawShape" target=_parent class=IParent>mxHtmlCanvas</a></div></div></div><div class=SRResult id=SR_drawString><div class=IEntry><a href="../files/canvas/mxGdCanvas-php.html#mxGdCanvas.drawString" target=_parent class=ISymbol>drawString</a>, <span class=IParent>mxGdCanvas</span></div></div><div class=SRResult id=SR_drawText><div class=IEntry><a href="javascript:searchResults.Toggle('SR_drawText')" class=ISymbol>drawText</a><div class=ISubIndex><a href="../files/canvas/mxGdCanvas-php.html#mxGdCanvas.drawText" target=_parent class=IParent>mxGdCanvas</a><a href="../files/canvas/mxHtmlCanvas-php.html#mxHtmlCanvas.drawText" target=_parent class=IParent>mxHtmlCanvas</a></div></div></div><div class=SRResult id=SR_drawTriangle><div class=IEntry><a href="../files/canvas/mxGdCanvas-php.html#mxGdCanvas.drawTriangle" target=_parent class=ISymbol>drawTriangle</a>, <span class=IParent>mxGdCanvas</span></div></div><div class=SRResult id=SR_drawTtfText><div class=IEntry><a href="../files/canvas/mxGdCanvas-php.html#mxGdCanvas.drawTtfText" target=_parent class=ISymbol>drawTtfText</a>, <span class=IParent>mxGdCanvas</span></div></div><div class=SRResult id=SR_drawTtxTextLine><div class=IEntry><a href="../files/canvas/mxGdCanvas-php.html#mxGdCanvas.drawTtxTextLine" target=_parent class=ISymbol>drawTtxTextLine</a>, <span class=IParent>mxGdCanvas</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
    -document.getElementById("Loading").style.display="none";
    -document.getElementById("NoMatches").style.display="none";
    -var searchResults = new SearchResults("searchResults", "HTML");
    -searchResults.Search();
    ---></script></div><script language=JavaScript><!--
    -if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
    \ No newline at end of file
    diff --git a/docs/php-api/search/FunctionsE.html b/docs/php-api/search/FunctionsE.html
    deleted file mode 100644
    index 49b4e8dbb..000000000
    --- a/docs/php-api/search/FunctionsE.html
    +++ /dev/null
    @@ -1,20 +0,0 @@
    -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
    -
    -<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script></head><body class="PopupSearchResultsPage" onLoad="NDOnLoad()"><script language=JavaScript><!--
    -if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script>
    -
    -<!--  Generated by Natural Docs, version 1.51 -->
    -<!--  http://www.naturaldocs.org  -->
    -
    -<!-- saved from url=(0026)http://www.naturaldocs.org -->
    -
    -
    -
    -
    -<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_encode><div class=IEntry><a href="javascript:searchResults.Toggle('SR_encode')" class=ISymbol>encode</a><div class=ISubIndex><a href="../files/io/mxCodec-php.html#mxCodec.encode" target=_parent class=IParent>mxCodec</a><a href="../files/io/mxObjectCodec-php.html#mxObjectCodec.encode" target=_parent class=IParent>mxObjectCodec</a></div></div></div><div class=SRResult id=SR_encodeCell><div class=IEntry><a href="../files/io/mxCodec-php.html#mxCodec.encodeCell" target=_parent class=ISymbol>encodeCell</a>, <span class=IParent>mxCodec</span></div></div><div class=SRResult id=SR_encodeImage><div class=IEntry><a href="../files/util/mxUtils-php.html#mxUtils.encodeImage" target=_parent class=ISymbol>encodeImage</a>, <span class=IParent>mxUtils</span></div></div><div class=SRResult id=SR_encodeObject><div class=IEntry><a href="../files/io/mxObjectCodec-php.html#mxObjectCodec.encodeObject" target=_parent class=ISymbol>encodeObject</a>, <span class=IParent>mxObjectCodec</span></div></div><div class=SRResult id=SR_encodeValue><div class=IEntry><a href="../files/io/mxObjectCodec-php.html#mxObjectCodec.encodeValue" target=_parent class=ISymbol>encodeValue</a>, <span class=IParent>mxObjectCodec</span></div></div><div class=SRResult id=SR_endElement><div class=IEntry><a href="../files/reader/mxGraphViewImageReader-php.html#mxGraphViewImageReader.endElement" target=_parent class=ISymbol>endElement</a>, <span class=IParent>mxGraphViewImageReader</span></div></div><div class=SRResult id=SR_endUpdate><div class=IEntry><a href="../files/model/mxGraphModel-php.html#mxGraphModel.endUpdate" target=_parent class=ISymbol>endUpdate</a>, <span class=IParent>mxGraphModel</span></div></div><div class=SRResult id=SR_enter><div class=IEntry><a href="../files/util/mxLog-php.html#mxLog.enter" target=_parent class=ISymbol>enter</a>, <span class=IParent>mxLog</span></div></div><div class=SRResult id=SR_equals><div class=IEntry><a href="javascript:searchResults.Toggle('SR_equals')" class=ISymbol>equals</a><div class=ISubIndex><a href="../files/util/mxPoint-php.html#mxPoint.equals" target=_parent class=IParent>mxPoint</a><a href="../files/util/mxRectangle-php.html#mxRectangle.equals" target=_parent class=IParent>mxRectangle</a></div></div></div><div class=SRResult id=SR_error><div class=IEntry><a href="../files/util/mxLog-php.html#mxLog.error" target=_parent class=ISymbol>error</a>, <span class=IParent>mxLog</span></div></div><div class=SRResult id=SR_evaluate><div class=IEntry><a href="../files/util/mxUtils-php.html#mxUtils.evaluate" target=_parent class=ISymbol>evaluate</a>, <span class=IParent>mxUtils</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
    -document.getElementById("Loading").style.display="none";
    -document.getElementById("NoMatches").style.display="none";
    -var searchResults = new SearchResults("searchResults", "HTML");
    -searchResults.Search();
    ---></script></div><script language=JavaScript><!--
    -if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
    \ No newline at end of file
    diff --git a/docs/php-api/search/FunctionsF.html b/docs/php-api/search/FunctionsF.html
    deleted file mode 100644
    index fec71c077..000000000
    --- a/docs/php-api/search/FunctionsF.html
    +++ /dev/null
    @@ -1,20 +0,0 @@
    -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
    -
    -<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script></head><body class="PopupSearchResultsPage" onLoad="NDOnLoad()"><script language=JavaScript><!--
    -if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script>
    -
    -<!--  Generated by Natural Docs, version 1.51 -->
    -<!--  http://www.naturaldocs.org  -->
    -
    -<!-- saved from url=(0026)http://www.naturaldocs.org -->
    -
    -
    -
    -
    -<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_findNode><div class=IEntry><a href="../files/util/mxUtils-php.html#mxUtils.findNode" target=_parent class=ISymbol>findNode</a>, <span class=IParent>mxUtils</span></div></div><div class=SRResult id=SR_findTreeRoots><div class=IEntry><a href="../files/view/mxGraph-php.html#mxGraph.findTreeRoots" target=_parent class=ISymbol>findTreeRoots</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_fine><div class=IEntry><a href="../files/util/mxLog-php.html#mxLog.fine" target=_parent class=ISymbol>fine</a>, <span class=IParent>mxLog</span></div></div><div class=SRResult id=SR_fireEvent><div class=IEntry><a href="../files/util/mxEventSource-php.html#mxEventSource.fireEvent" target=_parent class=ISymbol>fireEvent</a>, <span class=IParent>mxEventSource</span></div></div><div class=SRResult id=SR_flipImage><div class=IEntry><a href="../files/util/mxUtils-php.html#mxUtils.flipImage" target=_parent class=ISymbol>flipImage</a>, <span class=IParent>mxUtils</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
    -document.getElementById("Loading").style.display="none";
    -document.getElementById("NoMatches").style.display="none";
    -var searchResults = new SearchResults("searchResults", "HTML");
    -searchResults.Search();
    ---></script></div><script language=JavaScript><!--
    -if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
    \ No newline at end of file
    diff --git a/docs/php-api/search/FunctionsG.html b/docs/php-api/search/FunctionsG.html
    deleted file mode 100644
    index f2b87b1b2..000000000
    --- a/docs/php-api/search/FunctionsG.html
    +++ /dev/null
    @@ -1,20 +0,0 @@
    -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
    -
    -<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script></head><body class="PopupSearchResultsPage" onLoad="NDOnLoad()"><script language=JavaScript><!--
    -if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script>
    -
    -<!--  Generated by Natural Docs, version 1.51 -->
    -<!--  http://www.naturaldocs.org  -->
    -
    -<!-- saved from url=(0026)http://www.naturaldocs.org -->
    -
    -
    -
    -
    -<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_getAttribute><div class=IEntry><a href="../files/model/mxCell-php.html#mxCell.getAttribute" target=_parent class=ISymbol>getAttribute</a>, <span class=IParent>mxCell</span></div></div><div class=SRResult id=SR_getAttributeName><div class=IEntry><a href="../files/io/mxObjectCodec-php.html#mxObjectCodec.getAttributeName" target=_parent class=ISymbol>getAttributeName</a>, <span class=IParent>mxObjectCodec</span></div></div><div class=SRResult id=SR_getBoundingBox><div class=IEntry><a href="javascript:searchResults.Toggle('SR_getBoundingBox')" class=ISymbol>getBoundingBox</a><div class=ISubIndex><a href="../files/view/mxGraph-php.html#mxGraph.getBoundingBox" target=_parent class=IParent>mxGraph</a><a href="../files/view/mxGraphView-php.html#mxGraphView.getBoundingBox" target=_parent class=IParent>mxGraphView</a><a href="../files/util/mxUtils-php.html#mxUtils.getBoundingBox" target=_parent class=IParent>mxUtils</a></div></div></div><div class=SRResult id=SR_getBounds><div class=IEntry><a href="../files/view/mxGraphView-php.html#mxGraphView.getBounds" target=_parent class=ISymbol>getBounds</a>, <span class=IParent>mxGraphView</span></div></div><div class=SRResult id=SR_getBoundsForCells><div class=IEntry><a href="../files/view/mxGraph-php.html#mxGraph.getBoundsForCells" target=_parent class=ISymbol>getBoundsForCells</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_getCellBounds><div class=IEntry><a href="../files/view/mxGraph-php.html#mxGraph.getCellBounds" target=_parent class=ISymbol>getCellBounds</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_getCellGeometry><div class=IEntry><a href="../files/view/mxGraph-php.html#mxGraph.getCellGeometry" target=_parent class=ISymbol>getCellGeometry</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_getCells><div class=IEntry><a href="../files/model/mxGraphModel-php.html#mxGraphModel.getCells" target=_parent class=ISymbol>getCells</a>, <span class=IParent>mxGraphModel</span></div></div><div class=SRResult id=SR_getCellStyle><div class=IEntry><a href="javascript:searchResults.Toggle('SR_getCellStyle')" class=ISymbol>getCellStyle</a><div class=ISubIndex><a href="../files/view/mxGraph-php.html#mxGraph.getCellStyle" target=_parent class=IParent>mxGraph</a><a href="../files/view/mxStylesheet-php.html#mxStylesheet.getCellStyle" target=_parent class=IParent>mxStylesheet</a></div></div></div><div class=SRResult id=SR_getCenterX><div class=IEntry><a href="../files/util/mxRectangle-php.html#mxRectangle.getCenterX" target=_parent class=ISymbol>getCenterX</a>, <span class=IParent>mxRectangle</span></div></div><div class=SRResult id=SR_getCenterY><div class=IEntry><a href="../files/util/mxRectangle-php.html#mxRectangle.getCenterY" target=_parent class=ISymbol>getCenterY</a>, <span class=IParent>mxRectangle</span></div></div><div class=SRResult id=SR_getChildAt><div class=IEntry><a href="javascript:searchResults.Toggle('SR_getChildAt')" class=ISymbol>getChildAt</a><div class=ISubIndex><a href="../files/model/mxCell-php.html#mxCell.getChildAt" target=_parent class=IParent>mxCell</a><a href="../files/model/mxGraphModel-php.html#mxGraphModel.getChildAt" target=_parent class=IParent>mxGraphModel</a></div></div></div><div class=SRResult id=SR_getChildCount><div class=IEntry><a href="javascript:searchResults.Toggle('SR_getChildCount')" class=ISymbol>getChildCount</a><div class=ISubIndex><a href="../files/model/mxCell-php.html#mxCell.getChildCount" target=_parent class=IParent>mxCell</a><a href="../files/model/mxGraphModel-php.html#mxGraphModel.getChildCount" target=_parent class=IParent>mxGraphModel</a></div></div></div><div class=SRResult id=SR_getChildOffsetForCell><div class=IEntry><a href="../files/view/mxGraph-php.html#mxGraph.getChildOffsetForCell" target=_parent class=ISymbol>getChildOffsetForCell</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_getCodec><div class=IEntry><a href="../files/io/mxCodecRegistry-php.html#mxCodecRegistry.getCodec" target=_parent class=ISymbol>getCodec</a>, <span class=IParent>mxCodecRegistry</span></div></div><div class=SRResult id=SR_getColor><div class=IEntry><a href="../files/canvas/mxGdCanvas-php.html#mxGdCanvas.getColor" target=_parent class=ISymbol>getColor</a>, <span class=IParent>mxGdCanvas</span></div></div><div class=SRResult id=SR_getConnectionConstraint><div class=IEntry><a href="../files/view/mxGraph-php.html#mxGraph.getConnectionConstraint" target=_parent class=ISymbol>getConnectionConstraint</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_getConnectionPoint><div class=IEntry><a href="../files/view/mxGraph-php.html#mxGraph.getConnectionPoint" target=_parent class=ISymbol>getConnectionPoint</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_getDefaultEdgeStyle><div class=IEntry><a href="../files/view/mxStylesheet-php.html#mxStylesheet.getDefaultEdgeStyle" target=_parent class=ISymbol>getDefaultEdgeStyle</a>, <span class=IParent>mxStylesheet</span></div></div><div class=SRResult id=SR_getDefaultParent><div class=IEntry><a href="../files/view/mxGraph-php.html#mxGraph.getDefaultParent" target=_parent class=ISymbol>getDefaultParent</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_getDefaultVertexStyle><div class=IEntry><a href="../files/view/mxStylesheet-php.html#mxStylesheet.getDefaultVertexStyle" target=_parent class=ISymbol>getDefaultVertexStyle</a>, <span class=IParent>mxStylesheet</span></div></div><div class=SRResult id=SR_getDirectedEdgeCount><div class=IEntry><a href="../files/model/mxGraphModel-php.html#mxGraphModel.getDirectedEdgeCount" target=_parent class=ISymbol>getDirectedEdgeCount</a>, <span class=IParent>mxGraphModel</span></div></div><div class=SRResult id=SR_getEdgeAt><div class=IEntry><a href="javascript:searchResults.Toggle('SR_getEdgeAt')" class=ISymbol>getEdgeAt</a><div class=ISubIndex><a href="../files/model/mxCell-php.html#mxCell.getEdgeAt" target=_parent class=IParent>mxCell</a><a href="../files/model/mxGraphModel-php.html#mxGraphModel.getEdgeAt" target=_parent class=IParent>mxGraphModel</a></div></div></div><div class=SRResult id=SR_getEdgeCount><div class=IEntry><a href="javascript:searchResults.Toggle('SR_getEdgeCount')" class=ISymbol>getEdgeCount</a><div class=ISubIndex><a href="../files/model/mxCell-php.html#mxCell.getEdgeCount" target=_parent class=IParent>mxCell</a><a href="../files/model/mxGraphModel-php.html#mxGraphModel.getEdgeCount" target=_parent class=IParent>mxGraphModel</a></div></div></div><div class=SRResult id=SR_getEdgeIndex><div class=IEntry><a href="../files/model/mxCell-php.html#mxCell.getEdgeIndex" target=_parent class=ISymbol>getEdgeIndex</a>, <span class=IParent>mxCell</span></div></div><div class=SRResult id=SR_getEdges><div class=IEntry><a href="../files/model/mxGraphModel-php.html#mxGraphModel.getEdges" target=_parent class=ISymbol>getEdges</a>, <span class=IParent>mxGraphModel</span></div></div><div class=SRResult id=SR_getEdgeStyle><div class=IEntry><a href="../files/view/mxGraphView-php.html#mxGraphView.getEdgeStyle" target=_parent class=ISymbol>getEdgeStyle</a>, <span class=IParent>mxGraphView</span></div></div><div class=SRResult id=SR_getElementById><div class=IEntry><a href="../files/io/mxCodec-php.html#mxCodec.getElementById" target=_parent class=ISymbol>getElementById</a>, <span class=IParent>mxCodec</span></div></div><div class=SRResult id=SR_getFieldName><div class=IEntry><a href="../files/io/mxObjectCodec-php.html#mxObjectCodec.getFieldName" target=_parent class=ISymbol>getFieldName</a>, <span class=IParent>mxObjectCodec</span></div></div><div class=SRResult id=SR_getFieldTemplate><div class=IEntry><a href="../files/io/mxObjectCodec-php.html#mxObjectCodec.getFieldTemplate" target=_parent class=ISymbol>getFieldTemplate</a>, <span class=IParent>mxObjectCodec</span></div></div><div class=SRResult id=SR_getFixedFontSize><div class=IEntry><a href="javascript:searchResults.Toggle('SR_getFixedFontSize')" class=ISymbol>getFixedFontSize</a><div class=ISubIndex><a href="../files/canvas/mxGdCanvas-php.html#mxGdCanvas.getFixedFontSize" target=_parent class=IParent>mxGdCanvas</a><a href="../files/util/mxUtils-php.html#mxUtils.getFixedFontSize" target=_parent class=IParent>mxUtils</a></div></div></div><div class=SRResult id=SR_getGeometry><div class=IEntry><a href="javascript:searchResults.Toggle('SR_getGeometry')" class=ISymbol>getGeometry</a><div class=ISubIndex><a href="../files/model/mxCell-php.html#mxCell.getGeometry" target=_parent class=IParent>mxCell</a><a href="../files/model/mxGraphModel-php.html#mxGraphModel.getGeometry" target=_parent class=IParent>mxGraphModel</a></div></div></div><div class=SRResult id=SR_getGraphBounds><div class=IEntry><a href="javascript:searchResults.Toggle('SR_getGraphBounds')" class=ISymbol>getGraphBounds</a><div class=ISubIndex><a href="../files/view/mxGraph-php.html#mxGraph.getGraphBounds" target=_parent class=IParent>mxGraph</a><a href="../files/view/mxGraphView-php.html#mxGraphView.getGraphBounds" target=_parent class=IParent>mxGraphView</a></div></div></div><div class=SRResult id=SR_getHashCode><div class=IEntry><a href="../files/view/mxGraphView-php.html#mxGraphView.getHashCode" target=_parent class=ISymbol>getHashCode</a>, <span class=IParent>mxGraphView</span></div></div><div class=SRResult id=SR_getHtml><div class=IEntry><a href="../files/canvas/mxHtmlCanvas-php.html#mxHtmlCanvas.getHtml" target=_parent class=ISymbol>getHtml</a>, <span class=IParent>mxHtmlCanvas</span></div></div><div class=SRResult id=SR_getId><div class=IEntry><a href="javascript:searchResults.Toggle('SR_getId')" class=ISymbol>getId</a><div class=ISubIndex><a href="../files/model/mxCell-php.html#mxCell.getId" target=_parent class=IParent>mxCell</a><a href="../files/io/mxCodec-php.html#mxCodec.getId" target=_parent class=IParent>mxCodec</a></div></div></div><div class=SRResult id=SR_getImage><div class=IEntry><a href="javascript:searchResults.Toggle('SR_getImage')" class=ISymbol>getImage</a><div class=ISubIndex><a href="../files/canvas/mxGdCanvas-php.html#mxGdCanvas.getImage" target=_parent class=IParent>mxGdCanvas</a><a href="../files/util/mxImageBundle-php.html#mxImageBundle.getImage" target=_parent class=IParent>mxImageBundle</a></div></div></div><div class=SRResult id=SR_getImageBundles><div class=IEntry><a href="../files/view/mxGraph-php.html#mxGraph.getImageBundles" target=_parent class=ISymbol>getImageBundles</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_getImageForStyle><div class=IEntry><a href="../files/canvas/mxGdCanvas-php.html#mxGdCanvas.getImageForStyle" target=_parent class=ISymbol>getImageForStyle</a>, <span class=IParent>mxGdCanvas</span></div></div><div class=SRResult id=SR_getImageFromBundles><div class=IEntry><a href="../files/view/mxGraph-php.html#mxGraph.getImageFromBundles" target=_parent class=ISymbol>getImageFromBundles</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_getImages><div class=IEntry><a href="../files/util/mxImageBundle-php.html#mxImageBundle.getImages" target=_parent class=ISymbol>getImages</a>, <span class=IParent>mxImageBundle</span></div></div><div class=SRResult id=SR_getIndex><div class=IEntry><a href="../files/model/mxCell-php.html#mxCell.getIndex" target=_parent class=ISymbol>getIndex</a>, <span class=IParent>mxCell</span></div></div><div class=SRResult id=SR_getInstanceForName><div class=IEntry><a href="../files/io/mxCodecRegistry-php.html#mxCodecRegistry.getInstanceForName" target=_parent class=ISymbol>getInstanceForName</a>, <span class=IParent>mxCodecRegistry</span></div></div><div class=SRResult id=SR_getLabel><div class=IEntry><a href="../files/view/mxGraph-php.html#mxGraph.getLabel" target=_parent class=ISymbol>getLabel</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_getLabelPaintBounds><div class=IEntry><a href="../files/util/mxUtils-php.html#mxUtils.getLabelPaintBounds" target=_parent class=ISymbol>getLabelPaintBounds</a>, <span class=IParent>mxUtils</span></div></div><div class=SRResult id=SR_getLabelSize><div class=IEntry><a href="../files/util/mxUtils-php.html#mxUtils.getLabelSize" target=_parent class=ISymbol>getLabelSize</a>, <span class=IParent>mxUtils</span></div></div><div class=SRResult id=SR_getModel><div class=IEntry><a href="../files/view/mxGraph-php.html#mxGraph.getModel" target=_parent class=ISymbol>getModel</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_getName><div class=IEntry><a href="javascript:searchResults.Toggle('SR_getName')" class=ISymbol>getName</a><div class=ISubIndex><a href="../files/io/mxCodecRegistry-php.html#mxCodecRegistry.getName" target=_parent class=IParent>mxCodecRegistry</a><a href="../files/util/mxEventObject-php.html#mxEventObject.getName" target=_parent class=IParent>mxEventObject</a><a href="../files/io/mxObjectCodec-php.html#mxObjectCodec.getName" target=_parent class=IParent>mxObjectCodec</a><a href="../files/view/mxStyleRegistry-php.html#mxStyleRegistry.getName" target=_parent class=IParent>mxStyleRegistry</a></div></div></div><div class=SRResult id=SR_getNearestCommonAncestor><div class=IEntry><a href="../files/model/mxGraphModel-php.html#mxGraphModel.getNearestCommonAncestor" target=_parent class=ISymbol>getNearestCommonAncestor</a>, <span class=IParent>mxGraphModel</span></div></div><div class=SRResult id=SR_getNextPoint><div class=IEntry><a href="../files/view/mxGraphView-php.html#mxGraphView.getNextPoint" target=_parent class=ISymbol>getNextPoint</a>, <span class=IParent>mxGraphView</span></div></div><div class=SRResult id=SR_getNumber><div class=IEntry><a href="../files/util/mxUtils-php.html#mxUtils.getNumber" target=_parent class=ISymbol>getNumber</a>, <span class=IParent>mxUtils</span></div></div><div class=SRResult id=SR_getObject><div class=IEntry><a href="../files/io/mxCodec-php.html#mxCodec.getObject" target=_parent class=ISymbol>getObject</a>, <span class=IParent>mxCodec</span></div></div><div class=SRResult id=SR_getOrigin><div class=IEntry><a href="../files/model/mxGraphModel-php.html#mxGraphModel.getOrigin" target=_parent class=ISymbol>getOrigin</a>, <span class=IParent>mxGraphModel</span></div></div><div class=SRResult id=SR_getPaintBounds><div class=IEntry><a href="../files/view/mxGraph-php.html#mxGraph.getPaintBounds" target=_parent class=ISymbol>getPaintBounds</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_getParent><div class=IEntry><a href="javascript:searchResults.Toggle('SR_getParent')" class=ISymbol>getParent</a><div class=ISubIndex><a href="../files/model/mxCell-php.html#mxCell.getParent" target=_parent class=IParent>mxCell</a><a href="../files/model/mxGraphModel-php.html#mxGraphModel.getParent" target=_parent class=IParent>mxGraphModel</a></div></div></div><div class=SRResult id=SR_getParentPath><div class=IEntry><a href="../files/model/mxCellPath-php.html#mxCellPath.getParentPath" target=_parent class=ISymbol>getParentPath</a>, <span class=IParent>mxCellPath</span></div></div><div class=SRResult id=SR_getPerimeterBounds><div class=IEntry><a href="javascript:searchResults.Toggle('SR_getPerimeterBounds')" class=ISymbol>getPerimeterBounds</a><div class=ISubIndex><a href="../files/view/mxCellState-php.html#mxCellState.getPerimeterBounds" target=_parent class=IParent>mxCellState</a><a href="../files/view/mxGraphView-php.html#mxGraphView.getPerimeterBounds" target=_parent class=IParent>mxGraphView</a></div></div></div><div class=SRResult id=SR_getPerimeterFunction><div class=IEntry><a href="../files/view/mxGraphView-php.html#mxGraphView.getPerimeterFunction" target=_parent class=ISymbol>getPerimeterFunction</a>, <span class=IParent>mxGraphView</span></div></div><div class=SRResult id=SR_getPerimeterPoint><div class=IEntry><a href="../files/view/mxGraphView-php.html#mxGraphView.getPerimeterPoint" target=_parent class=ISymbol>getPerimeterPoint</a>, <span class=IParent>mxGraphView</span></div></div><div class=SRResult id=SR_getPoint><div class=IEntry><a href="../files/view/mxGraphView-php.html#mxGraphView.getPoint" target=_parent class=ISymbol>getPoint</a>, <span class=IParent>mxGraphView</span></div></div><div class=SRResult id=SR_getProperties><div class=IEntry><a href="../files/util/mxEventObject-php.html#mxEventObject.getProperties" target=_parent class=ISymbol>getProperties</a>, <span class=IParent>mxEventObject</span></div></div><div class=SRResult id=SR_getProperty><div class=IEntry><a href="../files/util/mxEventObject-php.html#mxEventObject.getProperty" target=_parent class=ISymbol>getProperty</a>, <span class=IParent>mxEventObject</span></div></div><div class=SRResult id=SR_getRoot><div class=IEntry><a href="../files/model/mxGraphModel-php.html#mxGraphModel.getRoot" target=_parent class=ISymbol>getRoot</a>, <span class=IParent>mxGraphModel</span></div></div><div class=SRResult id=SR_getRotatedPoint><div class=IEntry><a href="../files/util/mxUtils-php.html#mxUtils.getRotatedPoint" target=_parent class=ISymbol>getRotatedPoint</a>, <span class=IParent>mxUtils</span></div></div><div class=SRResult id=SR_getRoutingCenterX><div class=IEntry><a href="../files/view/mxGraphView-php.html#mxGraphView.getRoutingCenterX" target=_parent class=ISymbol>getRoutingCenterX</a>, <span class=IParent>mxGraphView</span></div></div><div class=SRResult id=SR_getRoutingCenterY><div class=IEntry><a href="../files/view/mxGraphView-php.html#mxGraphView.getRoutingCenterY" target=_parent class=ISymbol>getRoutingCenterY</a>, <span class=IParent>mxGraphView</span></div></div><div class=SRResult id=SR_getScaledLabelBounds><div class=IEntry><a href="../files/util/mxUtils-php.html#mxUtils.getScaledLabelBounds" target=_parent class=ISymbol>getScaledLabelBounds</a>, <span class=IParent>mxUtils</span></div></div><div class=SRResult id=SR_getSizeForString><div class=IEntry><a href="../files/util/mxUtils-php.html#mxUtils.getSizeForString" target=_parent class=ISymbol>getSizeForString</a>, <span class=IParent>mxUtils</span></div></div><div class=SRResult id=SR_getState><div class=IEntry><a href="../files/view/mxGraphView-php.html#mxGraphView.getState" target=_parent class=ISymbol>getState</a>, <span class=IParent>mxGraphView</span></div></div><div class=SRResult id=SR_getStates><div class=IEntry><a href="../files/view/mxGraphView-php.html#mxGraphView.getStates" target=_parent class=ISymbol>getStates</a>, <span class=IParent>mxGraphView</span></div></div><div class=SRResult id=SR_getStyle><div class=IEntry><a href="javascript:searchResults.Toggle('SR_getStyle')" class=ISymbol>getStyle</a><div class=ISubIndex><a href="../files/model/mxCell-php.html#mxCell.getStyle" target=_parent class=IParent>mxCell</a><a href="../files/model/mxGraphModel-php.html#mxGraphModel.getStyle" target=_parent class=IParent>mxGraphModel</a></div></div></div><div class=SRResult id=SR_getStylename><div class=IEntry><a href="../files/util/mxUtils-php.html#mxUtils.getStylename" target=_parent class=ISymbol>getStylename</a>, <span class=IParent>mxUtils</span></div></div><div class=SRResult id=SR_getStylenames><div class=IEntry><a href="../files/util/mxUtils-php.html#mxUtils.getStylenames" target=_parent class=ISymbol>getStylenames</a>, <span class=IParent>mxUtils</span></div></div><div class=SRResult id=SR_getStylesheet><div class=IEntry><a href="../files/view/mxGraph-php.html#mxGraph.getStylesheet" target=_parent class=ISymbol>getStylesheet</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_getTerminal><div class=IEntry><a href="javascript:searchResults.Toggle('SR_getTerminal')" class=ISymbol>getTerminal</a><div class=ISubIndex><a href="../files/model/mxCell-php.html#mxCell.getTerminal" target=_parent class=IParent>mxCell</a><a href="../files/model/mxGraphModel-php.html#mxGraphModel.getTerminal" target=_parent class=IParent>mxGraphModel</a></div></div></div><div class=SRResult id=SR_getTerminalPoint><div class=IEntry><a href="../files/model/mxGeometry-php.html#mxGeometry.getTerminalPoint" target=_parent class=ISymbol>getTerminalPoint</a>, <span class=IParent>mxGeometry</span></div></div><div class=SRResult id=SR_getTerminalPort><div class=IEntry><a href="../files/view/mxGraphView-php.html#mxGraphView.getTerminalPort" target=_parent class=ISymbol>getTerminalPort</a>, <span class=IParent>mxGraphView</span></div></div><div class=SRResult id=SR_getTrueTypeFont><div class=IEntry><a href="javascript:searchResults.Toggle('SR_getTrueTypeFont')" class=ISymbol>getTrueTypeFont</a><div class=ISubIndex><a href="../files/canvas/mxGdCanvas-php.html#mxGdCanvas.getTrueTypeFont" target=_parent class=IParent>mxGdCanvas</a><a href="../files/util/mxUtils-php.html#mxUtils.getTrueTypeFont" target=_parent class=IParent>mxUtils</a></div></div></div><div class=SRResult id=SR_getTrueTypeFontSize><div class=IEntry><a href="javascript:searchResults.Toggle('SR_getTrueTypeFontSize')" class=ISymbol>getTrueTypeFontSize</a><div class=ISubIndex><a href="../files/canvas/mxGdCanvas-php.html#mxGdCanvas.getTrueTypeFontSize" target=_parent class=IParent>mxGdCanvas</a><a href="../files/util/mxUtils-php.html#mxUtils.getTrueTypeFontSize" target=_parent class=IParent>mxUtils</a></div></div></div><div class=SRResult id=SR_getValue><div class=IEntry><a href="javascript:searchResults.Toggle('SR_getValue')" class=ISymbol>getValue</a><div class=ISubIndex><a href="../files/model/mxCell-php.html#mxCell.getValue" target=_parent class=IParent>mxCell</a><a href="../files/model/mxGraphModel-php.html#mxGraphModel.getValue" target=_parent class=IParent>mxGraphModel</a><a href="../files/view/mxStyleRegistry-php.html#mxStyleRegistry.getValue" target=_parent class=IParent>mxStyleRegistry</a><a href="../files/util/mxUtils-php.html#mxUtils.getValue" target=_parent class=IParent>mxUtils</a></div></div></div><div class=SRResult id=SR_getView><div class=IEntry><a href="../files/view/mxGraph-php.html#mxGraph.getView" target=_parent class=ISymbol>getView</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_getVisibleTerminal><div class=IEntry><a href="../files/view/mxGraphView-php.html#mxGraphView.getVisibleTerminal" target=_parent class=ISymbol>getVisibleTerminal</a>, <span class=IParent>mxGraphView</span></div></div><div class=SRResult id=SR_graphModelChanged><div class=IEntry><a href="../files/view/mxGraph-php.html#mxGraph.graphModelChanged" target=_parent class=ISymbol>graphModelChanged</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_grow><div class=IEntry><a href="../files/util/mxRectangle-php.html#mxRectangle.grow" target=_parent class=ISymbol>grow</a>, <span class=IParent>mxRectangle</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
    -document.getElementById("Loading").style.display="none";
    -document.getElementById("NoMatches").style.display="none";
    -var searchResults = new SearchResults("searchResults", "HTML");
    -searchResults.Search();
    ---></script></div><script language=JavaScript><!--
    -if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
    \ No newline at end of file
    diff --git a/docs/php-api/search/FunctionsI.html b/docs/php-api/search/FunctionsI.html
    deleted file mode 100644
    index f2a8a29d3..000000000
    --- a/docs/php-api/search/FunctionsI.html
    +++ /dev/null
    @@ -1,20 +0,0 @@
    -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
    -
    -<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script></head><body class="PopupSearchResultsPage" onLoad="NDOnLoad()"><script language=JavaScript><!--
    -if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script>
    -
    -<!--  Generated by Natural Docs, version 1.51 -->
    -<!--  http://www.naturaldocs.org  -->
    -
    -<!-- saved from url=(0026)http://www.naturaldocs.org -->
    -
    -
    -
    -
    -<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_indexOf><div class=IEntry><a href="../files/util/mxUtils-php.html#mxUtils.indexOf" target=_parent class=ISymbol>indexOf</a>, <span class=IParent>mxUtils</span></div></div><div class=SRResult id=SR_indexOfStylename><div class=IEntry><a href="../files/util/mxUtils-php.html#mxUtils.indexOfStylename" target=_parent class=ISymbol>indexOfStylename</a>, <span class=IParent>mxUtils</span></div></div><div class=SRResult id=SR_info><div class=IEntry><a href="../files/util/mxLog-php.html#mxLog.info" target=_parent class=ISymbol>info</a>, <span class=IParent>mxLog</span></div></div><div class=SRResult id=SR_insert><div class=IEntry><a href="../files/model/mxCell-php.html#mxCell.insert" target=_parent class=ISymbol>insert</a>, <span class=IParent>mxCell</span></div></div><div class=SRResult id=SR_insertEdge><div class=IEntry><a href="javascript:searchResults.Toggle('SR_insertEdge')" class=ISymbol>insertEdge</a><div class=ISubIndex><a href="../files/model/mxCell-php.html#mxCell.insertEdge" target=_parent class=IParent>mxCell</a><a href="../files/view/mxGraph-php.html#mxGraph.insertEdge" target=_parent class=IParent>mxGraph</a></div></div></div><div class=SRResult id=SR_insertIntoGraph><div class=IEntry><a href="../files/io/mxCodec-php.html#mxCodec.insertIntoGraph" target=_parent class=ISymbol>insertIntoGraph</a>, <span class=IParent>mxCodec</span></div></div><div class=SRResult id=SR_insertVertex><div class=IEntry><a href="../files/view/mxGraph-php.html#mxGraph.insertVertex" target=_parent class=ISymbol>insertVertex</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_intersection><div class=IEntry><a href="../files/util/mxUtils-php.html#mxUtils.intersection" target=_parent class=ISymbol>intersection</a>, <span class=IParent>mxUtils</span></div></div><div class=SRResult id=SR_invalidate><div class=IEntry><a href="../files/view/mxGraphView-php.html#mxGraphView.invalidate" target=_parent class=ISymbol>invalidate</a>, <span class=IParent>mxGraphView</span></div></div><div class=SRResult id=SR_isAncestor><div class=IEntry><a href="../files/model/mxGraphModel-php.html#mxGraphModel.isAncestor" target=_parent class=ISymbol>isAncestor</a>, <span class=IParent>mxGraphModel</span></div></div><div class=SRResult id=SR_isCellCollapsed><div class=IEntry><a href="../files/view/mxGraph-php.html#mxGraph.isCellCollapsed" target=_parent class=ISymbol>isCellCollapsed</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_isCellVisible><div class=IEntry><a href="../files/view/mxGraph-php.html#mxGraph.isCellVisible" target=_parent class=ISymbol>isCellVisible</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_isCollapsed><div class=IEntry><a href="javascript:searchResults.Toggle('SR_isCollapsed')" class=ISymbol>isCollapsed</a><div class=ISubIndex><a href="../files/model/mxCell-php.html#mxCell.isCollapsed" target=_parent class=IParent>mxCell</a><a href="../files/model/mxGraphModel-php.html#mxGraphModel.isCollapsed" target=_parent class=IParent>mxGraphModel</a></div></div></div><div class=SRResult id=SR_isConnectable><div class=IEntry><a href="javascript:searchResults.Toggle('SR_isConnectable')" class=ISymbol>isConnectable</a><div class=ISubIndex><a href="../files/model/mxCell-php.html#mxCell.isConnectable" target=_parent class=IParent>mxCell</a><a href="../files/model/mxGraphModel-php.html#mxGraphModel.isConnectable" target=_parent class=IParent>mxGraphModel</a></div></div></div><div class=SRResult id=SR_isConsumed><div class=IEntry><a href="../files/util/mxEventObject-php.html#mxEventObject.isConsumed" target=_parent class=ISymbol>isConsumed</a>, <span class=IParent>mxEventObject</span></div></div><div class=SRResult id=SR_isEdge><div class=IEntry><a href="javascript:searchResults.Toggle('SR_isEdge')" class=ISymbol>isEdge</a><div class=ISubIndex><a href="../files/model/mxCell-php.html#mxCell.isEdge" target=_parent class=IParent>mxCell</a><a href="../files/model/mxGraphModel-php.html#mxGraphModel.isEdge" target=_parent class=IParent>mxGraphModel</a></div></div></div><div class=SRResult id=SR_isExcluded><div class=IEntry><a href="../files/io/mxObjectCodec-php.html#mxObjectCodec.isExcluded" target=_parent class=ISymbol>isExcluded</a>, <span class=IParent>mxObjectCodec</span></div></div><div class=SRResult id=SR_isNode><div class=IEntry><a href="../files/util/mxUtils-php.html#mxUtils.isNode" target=_parent class=ISymbol>isNode</a>, <span class=IParent>mxUtils</span></div></div><div class=SRResult id=SR_isOrthogonal><div class=IEntry><a href="../files/view/mxGraph-php.html#mxGraph.isOrthogonal" target=_parent class=ISymbol>isOrthogonal</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_isReference><div class=IEntry><a href="../files/io/mxObjectCodec-php.html#mxObjectCodec.isReference" target=_parent class=ISymbol>isReference</a>, <span class=IParent>mxObjectCodec</span></div></div><div class=SRResult id=SR_isVertex><div class=IEntry><a href="javascript:searchResults.Toggle('SR_isVertex')" class=ISymbol>isVertex</a><div class=ISubIndex><a href="../files/model/mxCell-php.html#mxCell.isVertex" target=_parent class=IParent>mxCell</a><a href="../files/model/mxGraphModel-php.html#mxGraphModel.isVertex" target=_parent class=IParent>mxGraphModel</a></div></div></div><div class=SRResult id=SR_isVisible><div class=IEntry><a href="javascript:searchResults.Toggle('SR_isVisible')" class=ISymbol>isVisible</a><div class=ISubIndex><a href="../files/model/mxCell-php.html#mxCell.isVisible" target=_parent class=IParent>mxCell</a><a href="../files/model/mxGraphModel-php.html#mxGraphModel.isVisible" target=_parent class=IParent>mxGraphModel</a></div></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
    -document.getElementById("Loading").style.display="none";
    -document.getElementById("NoMatches").style.display="none";
    -var searchResults = new SearchResults("searchResults", "HTML");
    -searchResults.Search();
    ---></script></div><script language=JavaScript><!--
    -if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
    \ No newline at end of file
    diff --git a/docs/php-api/search/FunctionsL.html b/docs/php-api/search/FunctionsL.html
    deleted file mode 100644
    index 725fd4b39..000000000
    --- a/docs/php-api/search/FunctionsL.html
    +++ /dev/null
    @@ -1,20 +0,0 @@
    -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
    -
    -<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script></head><body class="PopupSearchResultsPage" onLoad="NDOnLoad()"><script language=JavaScript><!--
    -if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script>
    -
    -<!--  Generated by Natural Docs, version 1.51 -->
    -<!--  http://www.naturaldocs.org  -->
    -
    -<!-- saved from url=(0026)http://www.naturaldocs.org -->
    -
    -
    -
    -
    -<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_leave><div class=IEntry><a href="../files/util/mxLog-php.html#mxLog.leave" target=_parent class=ISymbol>leave</a>, <span class=IParent>mxLog</span></div></div><div class=SRResult id=SR_loadImage><div class=IEntry><a href="javascript:searchResults.Toggle('SR_loadImage')" class=ISymbol>loadImage</a><div class=ISubIndex><a href="../files/canvas/mxGdCanvas-php.html#mxGdCanvas.loadImage" target=_parent class=IParent>mxGdCanvas</a><a href="../files/util/mxUtils-php.html#mxUtils.loadImage" target=_parent class=IParent>mxUtils</a></div></div></div><div class=SRResult id=SR_loadXmlDocument><div class=IEntry><a href="../files/util/mxUtils-php.html#mxUtils.loadXmlDocument" target=_parent class=ISymbol>loadXmlDocument</a>, <span class=IParent>mxUtils</span></div></div><div class=SRResult id=SR_lookup><div class=IEntry><a href="../files/io/mxCodec-php.html#mxCodec.lookup" target=_parent class=ISymbol>lookup</a>, <span class=IParent>mxCodec</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
    -document.getElementById("Loading").style.display="none";
    -document.getElementById("NoMatches").style.display="none";
    -var searchResults = new SearchResults("searchResults", "HTML");
    -searchResults.Search();
    ---></script></div><script language=JavaScript><!--
    -if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
    \ No newline at end of file
    diff --git a/docs/php-api/search/FunctionsM.html b/docs/php-api/search/FunctionsM.html
    deleted file mode 100644
    index 2bc963629..000000000
    --- a/docs/php-api/search/FunctionsM.html
    +++ /dev/null
    @@ -1,20 +0,0 @@
    -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
    -
    -<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script></head><body class="PopupSearchResultsPage" onLoad="NDOnLoad()"><script language=JavaScript><!--
    -if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script>
    -
    -<!--  Generated by Natural Docs, version 1.51 -->
    -<!--  http://www.naturaldocs.org  -->
    -
    -<!-- saved from url=(0026)http://www.naturaldocs.org -->
    -
    -
    -
    -
    -<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_mergeChildren><div class=IEntry><a href="../files/model/mxGraphModel-php.html#mxGraphModel.mergeChildren" target=_parent class=ISymbol>mergeChildren</a>, <span class=IParent>mxGraphModel</span></div></div><div class=SRResult id=SR_mergeChildrenImpl><div class=IEntry><a href="../files/model/mxGraphModel-php.html#mxGraphModel.mergeChildrenImpl" target=_parent class=ISymbol>mergeChildrenImpl</a>, <span class=IParent>mxGraphModel</span></div></div><div class=SRResult id=SR_mxCell><div class=IEntry><a href="../files/model/mxCell-php.html#mxCell.mxCell" target=_parent class=ISymbol>mxCell</a>, <span class=IParent>mxCell</span></div></div><div class=SRResult id=SR_mxCellState><div class=IEntry><a href="../files/view/mxCellState-php.html#mxCellState.mxCellState" target=_parent class=ISymbol>mxCellState</a>, <span class=IParent>mxCellState</span></div></div><div class=SRResult id=SR_mxConnectionConstraint><div class=IEntry><a href="../files/view/mxConnectionConstraint-php.html#mxConnectionConstraint.mxConnectionConstraint" target=_parent class=ISymbol>mxConnectionConstraint</a>, <span class=IParent>mxConnectionConstraint</span></div></div><div class=SRResult id=SR_mxEventObject><div class=IEntry><a href="../files/util/mxEventObject-php.html#mxEventObject.mxEventObject" target=_parent class=ISymbol>mxEventObject</a>, <span class=IParent>mxEventObject</span></div></div><div class=SRResult id=SR_mxGdCanvas><div class=IEntry><a href="javascript:searchResults.Toggle('SR_mxGdCanvas')" class=ISymbol>mxGdCanvas</a><div class=ISubIndex><a href="../files/canvas/mxGdCanvas-php.html#mxGdCanvas.mxGdCanvas" target=_parent class=IParent>mxGdCanvas</a><a href="../files/canvas/mxHtmlCanvas-php.html#mxHtmlCanvas.mxGdCanvas" target=_parent class=IParent>mxHtmlCanvas</a></div></div></div><div class=SRResult id=SR_mxGeometry><div class=IEntry><a href="../files/model/mxGeometry-php.html#mxGeometry.mxGeometry" target=_parent class=ISymbol>mxGeometry</a>, <span class=IParent>mxGeometry</span></div></div><div class=SRResult id=SR_mxGraphModel><div class=IEntry><a href="javascript:searchResults.Toggle('SR_mxGraphModel')" class=ISymbol>mxGraphModel</a><div class=ISubIndex><a href="../files/view/mxGraph-php.html#mxGraph.mxGraphModel" target=_parent class=IParent>mxGraph</a><a href="../files/model/mxGraphModel-php.html#mxGraphModel.mxGraphModel" target=_parent class=IParent>mxGraphModel</a></div></div></div><div class=SRResult id=SR_mxGraphView><div class=IEntry><a href="../files/view/mxGraphView-php.html#mxGraphView.mxGraphView" target=_parent class=ISymbol>mxGraphView</a>, <span class=IParent>mxGraphView</span></div></div><div class=SRResult id=SR_mxGraphViewHtmlReader><div class=IEntry><a href="javascript:searchResults.Toggle('SR_mxGraphViewHtmlReader')" class=ISymbol>mxGraphViewHtmlReader</a><div class=ISubIndex><a href="../files/io/mxCodec-php.html#mxCodec.mxGraphViewHtmlReader" target=_parent class=IParent>mxCodec</a><a href="../files/reader/mxGraphViewHtmlReader-php.html#mxGraphViewHtmlReader.mxGraphViewHtmlReader" target=_parent class=IParent>mxGraphViewHtmlReader</a></div></div></div><div class=SRResult id=SR_mxGraphViewImageReader><div class=IEntry><a href="../files/reader/mxGraphViewImageReader-php.html#mxGraphViewImageReader.mxGraphViewImageReader" target=_parent class=ISymbol>mxGraphViewImageReader</a>, <span class=IParent>mxGraphViewImageReader</span></div></div><div class=SRResult id=SR_mxImageBundle><div class=IEntry><a href="../files/util/mxImageBundle-php.html#mxImageBundle.mxImageBundle" target=_parent class=ISymbol>mxImageBundle</a>, <span class=IParent>mxImageBundle</span></div></div><div class=SRResult id=SR_mxObjectCodec><div class=IEntry><a href="javascript:searchResults.Toggle('SR_mxObjectCodec')" class=ISymbol>mxObjectCodec</a><div class=ISubIndex><a href="../files/io/mxCellCodec-php.html#mxCellCodec.mxObjectCodec" target=_parent class=IParent>mxCellCodec</a><a href="../files/io/mxModelCodec-php.html#mxModelCodec.mxObjectCodec" target=_parent class=IParent>mxModelCodec</a><a href="../files/io/mxObjectCodec-php.html#mxObjectCodec.mxObjectCodec" target=_parent class=IParent>mxObjectCodec</a><a href="../files/io/mxStylesheetCodec-php.html#mxStylesheetCodec.mxObjectCodec" target=_parent class=IParent>mxStylesheetCodec</a></div></div></div><div class=SRResult id=SR_mxPoint><div class=IEntry><a href="../files/util/mxPoint-php.html#mxPoint.mxPoint" target=_parent class=ISymbol>mxPoint</a>, <span class=IParent>mxPoint</span></div></div><div class=SRResult id=SR_mxRectangle><div class=IEntry><a href="../files/util/mxRectangle-php.html#mxRectangle.mxRectangle" target=_parent class=ISymbol>mxRectangle</a>, <span class=IParent>mxRectangle</span></div></div><div class=SRResult id=SR_mxStylesheet><div class=IEntry><a href="../files/view/mxStylesheet-php.html#mxStylesheet.mxStylesheet" target=_parent class=ISymbol>mxStylesheet</a>, <span class=IParent>mxStylesheet</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
    -document.getElementById("Loading").style.display="none";
    -document.getElementById("NoMatches").style.display="none";
    -var searchResults = new SearchResults("searchResults", "HTML");
    -searchResults.Search();
    ---></script></div><script language=JavaScript><!--
    -if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
    \ No newline at end of file
    diff --git a/docs/php-api/search/FunctionsO.html b/docs/php-api/search/FunctionsO.html
    deleted file mode 100644
    index c750b844b..000000000
    --- a/docs/php-api/search/FunctionsO.html
    +++ /dev/null
    @@ -1,20 +0,0 @@
    -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
    -
    -<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script></head><body class="PopupSearchResultsPage" onLoad="NDOnLoad()"><script language=JavaScript><!--
    -if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script>
    -
    -<!--  Generated by Natural Docs, version 1.51 -->
    -<!--  http://www.naturaldocs.org  -->
    -
    -<!-- saved from url=(0026)http://www.naturaldocs.org -->
    -
    -
    -
    -
    -<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_offset><div class=IEntry><a href="../files/canvas/mxGdCanvas-php.html#mxGdCanvas.offset" target=_parent class=ISymbol>offset</a>, <span class=IParent>mxGdCanvas</span></div></div><div class=SRResult id=SR_out><div class=IEntry><a href="../files/canvas/mxHtmlCanvas-php.html#mxHtmlCanvas.out" target=_parent class=ISymbol>out</a>, <span class=IParent>mxHtmlCanvas</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
    -document.getElementById("Loading").style.display="none";
    -document.getElementById("NoMatches").style.display="none";
    -var searchResults = new SearchResults("searchResults", "HTML");
    -searchResults.Search();
    ---></script></div><script language=JavaScript><!--
    -if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
    \ No newline at end of file
    diff --git a/docs/php-api/search/FunctionsP.html b/docs/php-api/search/FunctionsP.html
    deleted file mode 100644
    index 8566f7ac8..000000000
    --- a/docs/php-api/search/FunctionsP.html
    +++ /dev/null
    @@ -1,20 +0,0 @@
    -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
    -
    -<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script></head><body class="PopupSearchResultsPage" onLoad="NDOnLoad()"><script language=JavaScript><!--
    -if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script>
    -
    -<!--  Generated by Natural Docs, version 1.51 -->
    -<!--  http://www.naturaldocs.org  -->
    -
    -<!-- saved from url=(0026)http://www.naturaldocs.org -->
    -
    -
    -
    -
    -<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_paintCell><div class=IEntry><a href="../files/view/mxGraph-php.html#mxGraph.paintCell" target=_parent class=ISymbol>paintCell</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_paintState><div class=IEntry><a href="../files/view/mxGraph-php.html#mxGraph.paintState" target=_parent class=ISymbol>paintState</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_parsePoints><div class=IEntry><a href="../files/reader/mxGraphViewImageReader-php.html#mxGraphViewImageReader.parsePoints" target=_parent class=ISymbol>parsePoints</a>, <span class=IParent>mxGraphViewImageReader</span></div></div><div class=SRResult id=SR_parseState><div class=IEntry><a href="../files/reader/mxGraphViewImageReader-php.html#mxGraphViewImageReader.parseState" target=_parent class=ISymbol>parseState</a>, <span class=IParent>mxGraphViewImageReader</span></div></div><div class=SRResult id=SR_parseXml><div class=IEntry><a href="../files/util/mxUtils-php.html#mxUtils.parseXml" target=_parent class=ISymbol>parseXml</a>, <span class=IParent>mxUtils</span></div></div><div class=SRResult id=SR_postProcessCellStyle><div class=IEntry><a href="../files/view/mxGraph-php.html#mxGraph.postProcessCellStyle" target=_parent class=ISymbol>postProcessCellStyle</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_processInclude><div class=IEntry><a href="../files/io/mxObjectCodec-php.html#mxObjectCodec.processInclude" target=_parent class=ISymbol>processInclude</a>, <span class=IParent>mxObjectCodec</span></div></div><div class=SRResult id=SR_putCellStyle><div class=IEntry><a href="../files/view/mxStylesheet-php.html#mxStylesheet.putCellStyle" target=_parent class=ISymbol>putCellStyle</a>, <span class=IParent>mxStylesheet</span></div></div><div class=SRResult id=SR_putDefaultEdgeStyle><div class=IEntry><a href="../files/view/mxStylesheet-php.html#mxStylesheet.putDefaultEdgeStyle" target=_parent class=ISymbol>putDefaultEdgeStyle</a>, <span class=IParent>mxStylesheet</span></div></div><div class=SRResult id=SR_putDefaultVertexStyle><div class=IEntry><a href="../files/view/mxStylesheet-php.html#mxStylesheet.putDefaultVertexStyle" target=_parent class=ISymbol>putDefaultVertexStyle</a>, <span class=IParent>mxStylesheet</span></div></div><div class=SRResult id=SR_putImage><div class=IEntry><a href="../files/util/mxImageBundle-php.html#mxImageBundle.putImage" target=_parent class=ISymbol>putImage</a>, <span class=IParent>mxImageBundle</span></div></div><div class=SRResult id=SR_putObject><div class=IEntry><a href="../files/io/mxCodec-php.html#mxCodec.putObject" target=_parent class=ISymbol>putObject</a>, <span class=IParent>mxCodec</span></div></div><div class=SRResult id=SR_putValue><div class=IEntry><a href="../files/view/mxStyleRegistry-php.html#mxStyleRegistry.putValue" target=_parent class=ISymbol>putValue</a>, <span class=IParent>mxStyleRegistry</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
    -document.getElementById("Loading").style.display="none";
    -document.getElementById("NoMatches").style.display="none";
    -var searchResults = new SearchResults("searchResults", "HTML");
    -searchResults.Search();
    ---></script></div><script language=JavaScript><!--
    -if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
    \ No newline at end of file
    diff --git a/docs/php-api/search/FunctionsR.html b/docs/php-api/search/FunctionsR.html
    deleted file mode 100644
    index f67cacb6a..000000000
    --- a/docs/php-api/search/FunctionsR.html
    +++ /dev/null
    @@ -1,20 +0,0 @@
    -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
    -
    -<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script></head><body class="PopupSearchResultsPage" onLoad="NDOnLoad()"><script language=JavaScript><!--
    -if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script>
    -
    -<!--  Generated by Natural Docs, version 1.51 -->
    -<!--  http://www.naturaldocs.org  -->
    -
    -<!-- saved from url=(0026)http://www.naturaldocs.org -->
    -
    -
    -
    -
    -<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_read><div class=IEntry><a href="../files/reader/mxGraphViewImageReader-php.html#mxGraphViewImageReader.read" target=_parent class=ISymbol>read</a>, <span class=IParent>mxGraphViewImageReader</span></div></div><div class=SRResult id=SR_readFile><div class=IEntry><a href="javascript:searchResults.Toggle('SR_readFile')" class=ISymbol>readFile</a><div class=ISubIndex><a href="../files/reader/mxGraphViewImageReader-php.html#mxGraphViewImageReader.readFile" target=_parent class=IParent>mxGraphViewImageReader</a><a href="../files/util/mxUtils-php.html#mxUtils.readFile" target=_parent class=IParent>mxUtils</a></div></div></div><div class=SRResult id=SR_reference><div class=IEntry><a href="../files/io/mxCodec-php.html#mxCodec.reference" target=_parent class=ISymbol>reference</a>, <span class=IParent>mxCodec</span></div></div><div class=SRResult id=SR_register><div class=IEntry><a href="../files/io/mxCodecRegistry-php.html#mxCodecRegistry.register" target=_parent class=ISymbol>register</a>, <span class=IParent>mxCodecRegistry</span></div></div><div class=SRResult id=SR_remove><div class=IEntry><a href="javascript:searchResults.Toggle('SR_remove')" class=ISymbol>remove</a><div class=ISubIndex><a href="../files/model/mxCell-php.html#mxCell.remove" target=_parent class=IParent>mxCell</a><a href="../files/model/mxGraphModel-php.html#mxGraphModel.remove" target=_parent class=IParent>mxGraphModel</a></div></div></div><div class=SRResult id=SR_removeAllStylenames><div class=IEntry><a href="../files/util/mxUtils-php.html#mxUtils.removeAllStylenames" target=_parent class=ISymbol>removeAllStylenames</a>, <span class=IParent>mxUtils</span></div></div><div class=SRResult id=SR_removeEdge><div class=IEntry><a href="../files/model/mxCell-php.html#mxCell.removeEdge" target=_parent class=ISymbol>removeEdge</a>, <span class=IParent>mxCell</span></div></div><div class=SRResult id=SR_removeFromParent><div class=IEntry><a href="../files/model/mxCell-php.html#mxCell.removeFromParent" target=_parent class=ISymbol>removeFromParent</a>, <span class=IParent>mxCell</span></div></div><div class=SRResult id=SR_removeFromTerminal><div class=IEntry><a href="../files/model/mxCell-php.html#mxCell.removeFromTerminal" target=_parent class=ISymbol>removeFromTerminal</a>, <span class=IParent>mxCell</span></div></div><div class=SRResult id=SR_removeImageBundle><div class=IEntry><a href="../files/view/mxGraph-php.html#mxGraph.removeImageBundle" target=_parent class=ISymbol>removeImageBundle</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_removeState><div class=IEntry><a href="../files/view/mxGraphView-php.html#mxGraphView.removeState" target=_parent class=ISymbol>removeState</a>, <span class=IParent>mxGraphView</span></div></div><div class=SRResult id=SR_removeStylename><div class=IEntry><a href="../files/util/mxUtils-php.html#mxUtils.removeStylename" target=_parent class=ISymbol>removeStylename</a>, <span class=IParent>mxUtils</span></div></div><div class=SRResult id=SR_resolve><div class=IEntry><a href="../files/model/mxCellPath-php.html#mxCellPath.resolve" target=_parent class=ISymbol>resolve</a>, <span class=IParent>mxCellPath</span></div></div><div class=SRResult id=SR_restoreClone><div class=IEntry><a href="../files/model/mxGraphModel-php.html#mxGraphModel.restoreClone" target=_parent class=ISymbol>restoreClone</a>, <span class=IParent>mxGraphModel</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
    -document.getElementById("Loading").style.display="none";
    -document.getElementById("NoMatches").style.display="none";
    -var searchResults = new SearchResults("searchResults", "HTML");
    -searchResults.Search();
    ---></script></div><script language=JavaScript><!--
    -if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
    \ No newline at end of file
    diff --git a/docs/php-api/search/FunctionsS.html b/docs/php-api/search/FunctionsS.html
    deleted file mode 100644
    index 4ef65985e..000000000
    --- a/docs/php-api/search/FunctionsS.html
    +++ /dev/null
    @@ -1,20 +0,0 @@
    -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
    -
    -<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script></head><body class="PopupSearchResultsPage" onLoad="NDOnLoad()"><script language=JavaScript><!--
    -if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script>
    -
    -<!--  Generated by Natural Docs, version 1.51 -->
    -<!--  http://www.naturaldocs.org  -->
    -
    -<!-- saved from url=(0026)http://www.naturaldocs.org -->
    -
    -
    -
    -
    -<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_setAttribute><div class=IEntry><a href="javascript:searchResults.Toggle('SR_setAttribute')" class=ISymbol>setAttribute</a><div class=ISubIndex><a href="../files/model/mxCell-php.html#mxCell.setAttribute" target=_parent class=IParent>mxCell</a><a href="../files/io/mxCodec-php.html#mxCodec.setAttribute" target=_parent class=IParent>mxCodec</a></div></div></div><div class=SRResult id=SR_setCellStyleFlags><div class=IEntry><a href="../files/util/mxUtils-php.html#mxUtils.setCellStyleFlags" target=_parent class=ISymbol>setCellStyleFlags</a>, <span class=IParent>mxUtils</span></div></div><div class=SRResult id=SR_setCellStyles><div class=IEntry><a href="javascript:searchResults.Toggle('SR_setCellStyles')" class=ISymbol>setCellStyles</a><div class=ISubIndex><a href="../files/view/mxGraph-php.html#mxGraph.setCellStyles" target=_parent class=IParent>mxGraph</a><a href="../files/util/mxUtils-php.html#mxUtils.setCellStyles" target=_parent class=IParent>mxUtils</a></div></div></div><div class=SRResult id=SR_setCollapsed><div class=IEntry><a href="javascript:searchResults.Toggle('SR_setCollapsed')" class=ISymbol>setCollapsed</a><div class=ISubIndex><a href="../files/model/mxCell-php.html#mxCell.setCollapsed" target=_parent class=IParent>mxCell</a><a href="../files/model/mxGraphModel-php.html#mxGraphModel.setCollapsed" target=_parent class=IParent>mxGraphModel</a></div></div></div><div class=SRResult id=SR_setConnectable><div class=IEntry><a href="../files/model/mxCell-php.html#mxCell.setConnectable" target=_parent class=ISymbol>setConnectable</a>, <span class=IParent>mxCell</span></div></div><div class=SRResult id=SR_setEdge><div class=IEntry><a href="../files/model/mxCell-php.html#mxCell.setEdge" target=_parent class=ISymbol>setEdge</a>, <span class=IParent>mxCell</span></div></div><div class=SRResult id=SR_setGeometry><div class=IEntry><a href="javascript:searchResults.Toggle('SR_setGeometry')" class=ISymbol>setGeometry</a><div class=ISubIndex><a href="../files/model/mxCell-php.html#mxCell.setGeometry" target=_parent class=IParent>mxCell</a><a href="../files/model/mxGraphModel-php.html#mxGraphModel.setGeometry" target=_parent class=IParent>mxGraphModel</a></div></div></div><div class=SRResult id=SR_setGraphBounds><div class=IEntry><a href="../files/view/mxGraphView-php.html#mxGraphView.setGraphBounds" target=_parent class=ISymbol>setGraphBounds</a>, <span class=IParent>mxGraphView</span></div></div><div class=SRResult id=SR_setId><div class=IEntry><a href="../files/model/mxCell-php.html#mxCell.setId" target=_parent class=ISymbol>setId</a>, <span class=IParent>mxCell</span></div></div><div class=SRResult id=SR_setImage><div class=IEntry><a href="../files/canvas/mxGdCanvas-php.html#mxGdCanvas.setImage" target=_parent class=ISymbol>setImage</a>, <span class=IParent>mxGdCanvas</span></div></div><div class=SRResult id=SR_setImageBundles><div class=IEntry><a href="../files/view/mxGraph-php.html#mxGraph.setImageBundles" target=_parent class=ISymbol>setImageBundles</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_setParent><div class=IEntry><a href="../files/model/mxCell-php.html#mxCell.setParent" target=_parent class=ISymbol>setParent</a>, <span class=IParent>mxCell</span></div></div><div class=SRResult id=SR_setRect><div class=IEntry><a href="../files/util/mxRectangle-php.html#mxRectangle.setRect" target=_parent class=ISymbol>setRect</a>, <span class=IParent>mxRectangle</span></div></div><div class=SRResult id=SR_setRoot><div class=IEntry><a href="../files/model/mxGraphModel-php.html#mxGraphModel.setRoot" target=_parent class=ISymbol>setRoot</a>, <span class=IParent>mxGraphModel</span></div></div><div class=SRResult id=SR_setScale><div class=IEntry><a href="../files/view/mxGraphView-php.html#mxGraphView.setScale" target=_parent class=ISymbol>setScale</a>, <span class=IParent>mxGraphView</span></div></div><div class=SRResult id=SR_setStyle><div class=IEntry><a href="javascript:searchResults.Toggle('SR_setStyle')" class=ISymbol>setStyle</a><div class=ISubIndex><a href="../files/model/mxCell-php.html#mxCell.setStyle" target=_parent class=IParent>mxCell</a><a href="../files/model/mxGraphModel-php.html#mxGraphModel.setStyle" target=_parent class=IParent>mxGraphModel</a><a href="../files/util/mxUtils-php.html#mxUtils.setStyle" target=_parent class=IParent>mxUtils</a></div></div></div><div class=SRResult id=SR_setStyleFlag><div class=IEntry><a href="../files/util/mxUtils-php.html#mxUtils.setStyleFlag" target=_parent class=ISymbol>setStyleFlag</a>, <span class=IParent>mxUtils</span></div></div><div class=SRResult id=SR_setTerminal><div class=IEntry><a href="javascript:searchResults.Toggle('SR_setTerminal')" class=ISymbol>setTerminal</a><div class=ISubIndex><a href="../files/model/mxCell-php.html#mxCell.setTerminal" target=_parent class=IParent>mxCell</a><a href="../files/model/mxGraphModel-php.html#mxGraphModel.setTerminal" target=_parent class=IParent>mxGraphModel</a></div></div></div><div class=SRResult id=SR_setTerminalPoint><div class=IEntry><a href="../files/model/mxGeometry-php.html#mxGeometry.setTerminalPoint" target=_parent class=ISymbol>setTerminalPoint</a>, <span class=IParent>mxGeometry</span></div></div><div class=SRResult id=SR_setTerminals><div class=IEntry><a href="../files/model/mxGraphModel-php.html#mxGraphModel.setTerminals" target=_parent class=ISymbol>setTerminals</a>, <span class=IParent>mxGraphModel</span></div></div><div class=SRResult id=SR_setTranslate><div class=IEntry><a href="../files/view/mxGraphView-php.html#mxGraphView.setTranslate" target=_parent class=ISymbol>setTranslate</a>, <span class=IParent>mxGraphView</span></div></div><div class=SRResult id=SR_setValue><div class=IEntry><a href="javascript:searchResults.Toggle('SR_setValue')" class=ISymbol>setValue</a><div class=ISubIndex><a href="../files/model/mxCell-php.html#mxCell.setValue" target=_parent class=IParent>mxCell</a><a href="../files/model/mxGraphModel-php.html#mxGraphModel.setValue" target=_parent class=IParent>mxGraphModel</a></div></div></div><div class=SRResult id=SR_setVertex><div class=IEntry><a href="../files/model/mxCell-php.html#mxCell.setVertex" target=_parent class=ISymbol>setVertex</a>, <span class=IParent>mxCell</span></div></div><div class=SRResult id=SR_setVisible><div class=IEntry><a href="javascript:searchResults.Toggle('SR_setVisible')" class=ISymbol>setVisible</a><div class=ISubIndex><a href="../files/model/mxCell-php.html#mxCell.setVisible" target=_parent class=IParent>mxCell</a><a href="../files/model/mxGraphModel-php.html#mxGraphModel.setVisible" target=_parent class=IParent>mxGraphModel</a></div></div></div><div class=SRResult id=SR_stackTrace><div class=IEntry><a href="../files/util/mxUtils-php.html#mxUtils.stackTrace" target=_parent class=ISymbol>stackTrace</a>, <span class=IParent>mxUtils</span></div></div><div class=SRResult id=SR_startElement><div class=IEntry><a href="../files/reader/mxGraphViewImageReader-php.html#mxGraphViewImageReader.startElement" target=_parent class=ISymbol>startElement</a>, <span class=IParent>mxGraphViewImageReader</span></div></div><div class=SRResult id=SR_styles><div class=IEntry><a href="../files/view/mxStylesheet-php.html#mxStylesheet.styles" target=_parent class=ISymbol>styles</a>, <span class=IParent>mxStylesheet</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
    -document.getElementById("Loading").style.display="none";
    -document.getElementById("NoMatches").style.display="none";
    -var searchResults = new SearchResults("searchResults", "HTML");
    -searchResults.Search();
    ---></script></div><script language=JavaScript><!--
    -if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
    \ No newline at end of file
    diff --git a/docs/php-api/search/FunctionsT.html b/docs/php-api/search/FunctionsT.html
    deleted file mode 100644
    index 4bc9824dc..000000000
    --- a/docs/php-api/search/FunctionsT.html
    +++ /dev/null
    @@ -1,20 +0,0 @@
    -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
    -
    -<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script></head><body class="PopupSearchResultsPage" onLoad="NDOnLoad()"><script language=JavaScript><!--
    -if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script>
    -
    -<!--  Generated by Natural Docs, version 1.51 -->
    -<!--  http://www.naturaldocs.org  -->
    -
    -<!-- saved from url=(0026)http://www.naturaldocs.org -->
    -
    -
    -
    -
    -<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_toRadians><div class=IEntry><a href="../files/util/mxUtils-php.html#mxUtils.toRadians" target=_parent class=ISymbol>toRadians</a>, <span class=IParent>mxUtils</span></div></div><div class=SRResult id=SR_transformControlPoint><div class=IEntry><a href="../files/view/mxGraphView-php.html#mxGraphView.transformControlPoint" target=_parent class=ISymbol>transformControlPoint</a>, <span class=IParent>mxGraphView</span></div></div><div class=SRResult id=SR_translate><div class=IEntry><a href="../files/model/mxGeometry-php.html#mxGeometry.translate" target=_parent class=ISymbol>translate</a>, <span class=IParent>mxGeometry</span></div></div><div class=SRResult id=SR_translatePoints><div class=IEntry><a href="../files/util/mxUtils-php.html#mxUtils.translatePoints" target=_parent class=ISymbol>translatePoints</a>, <span class=IParent>mxUtils</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
    -document.getElementById("Loading").style.display="none";
    -document.getElementById("NoMatches").style.display="none";
    -var searchResults = new SearchResults("searchResults", "HTML");
    -searchResults.Search();
    ---></script></div><script language=JavaScript><!--
    -if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
    \ No newline at end of file
    diff --git a/docs/php-api/search/FunctionsU.html b/docs/php-api/search/FunctionsU.html
    deleted file mode 100644
    index 8f91683b0..000000000
    --- a/docs/php-api/search/FunctionsU.html
    +++ /dev/null
    @@ -1,20 +0,0 @@
    -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
    -
    -<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script></head><body class="PopupSearchResultsPage" onLoad="NDOnLoad()"><script language=JavaScript><!--
    -if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script>
    -
    -<!--  Generated by Natural Docs, version 1.51 -->
    -<!--  http://www.naturaldocs.org  -->
    -
    -<!-- saved from url=(0026)http://www.naturaldocs.org -->
    -
    -
    -
    -
    -<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_updateBoundingBox><div class=IEntry><a href="../files/view/mxGraphView-php.html#mxGraphView.updateBoundingBox" target=_parent class=ISymbol>updateBoundingBox</a>, <span class=IParent>mxGraphView</span></div></div><div class=SRResult id=SR_updateCellState><div class=IEntry><a href="../files/view/mxGraphView-php.html#mxGraphView.updateCellState" target=_parent class=ISymbol>updateCellState</a>, <span class=IParent>mxGraphView</span></div></div><div class=SRResult id=SR_updateEdgeBounds><div class=IEntry><a href="../files/view/mxGraphView-php.html#mxGraphView.updateEdgeBounds" target=_parent class=ISymbol>updateEdgeBounds</a>, <span class=IParent>mxGraphView</span></div></div><div class=SRResult id=SR_updateEdgeParent><div class=IEntry><a href="../files/model/mxGraphModel-php.html#mxGraphModel.updateEdgeParent" target=_parent class=ISymbol>updateEdgeParent</a>, <span class=IParent>mxGraphModel</span></div></div><div class=SRResult id=SR_updateEdgeParents><div class=IEntry><a href="../files/model/mxGraphModel-php.html#mxGraphModel.updateEdgeParents" target=_parent class=ISymbol>updateEdgeParents</a>, <span class=IParent>mxGraphModel</span></div></div><div class=SRResult id=SR_updateEdgeState><div class=IEntry><a href="../files/view/mxGraphView-php.html#mxGraphView.updateEdgeState" target=_parent class=ISymbol>updateEdgeState</a>, <span class=IParent>mxGraphView</span></div></div><div class=SRResult id=SR_updateFixedTerminalPoint><div class=IEntry><a href="../files/view/mxGraphView-php.html#mxGraphView.updateFixedTerminalPoint" target=_parent class=ISymbol>updateFixedTerminalPoint</a>, <span class=IParent>mxGraphView</span></div></div><div class=SRResult id=SR_updateFixedTerminalPoints><div class=IEntry><a href="../files/view/mxGraphView-php.html#mxGraphView.updateFixedTerminalPoints" target=_parent class=ISymbol>updateFixedTerminalPoints</a>, <span class=IParent>mxGraphView</span></div></div><div class=SRResult id=SR_updateFloatingTerminalPoint><div class=IEntry><a href="../files/view/mxGraphView-php.html#mxGraphView.updateFloatingTerminalPoint" target=_parent class=ISymbol>updateFloatingTerminalPoint</a>, <span class=IParent>mxGraphView</span></div></div><div class=SRResult id=SR_updateFloatingTerminalPoints><div class=IEntry><a href="../files/view/mxGraphView-php.html#mxGraphView.updateFloatingTerminalPoints" target=_parent class=ISymbol>updateFloatingTerminalPoints</a>, <span class=IParent>mxGraphView</span></div></div><div class=SRResult id=SR_updateLabelBounds><div class=IEntry><a href="../files/view/mxGraphView-php.html#mxGraphView.updateLabelBounds" target=_parent class=ISymbol>updateLabelBounds</a>, <span class=IParent>mxGraphView</span></div></div><div class=SRResult id=SR_updatePoints><div class=IEntry><a href="../files/view/mxGraphView-php.html#mxGraphView.updatePoints" target=_parent class=ISymbol>updatePoints</a>, <span class=IParent>mxGraphView</span></div></div><div class=SRResult id=SR_updateVertexLabelOffset><div class=IEntry><a href="../files/view/mxGraphView-php.html#mxGraphView.updateVertexLabelOffset" target=_parent class=ISymbol>updateVertexLabelOffset</a>, <span class=IParent>mxGraphView</span></div></div><div class=SRResult id=SR_updateVertexState><div class=IEntry><a href="../files/view/mxGraphView-php.html#mxGraphView.updateVertexState" target=_parent class=ISymbol>updateVertexState</a>, <span class=IParent>mxGraphView</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
    -document.getElementById("Loading").style.display="none";
    -document.getElementById("NoMatches").style.display="none";
    -var searchResults = new SearchResults("searchResults", "HTML");
    -searchResults.Search();
    ---></script></div><script language=JavaScript><!--
    -if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
    \ No newline at end of file
    diff --git a/docs/php-api/search/FunctionsV.html b/docs/php-api/search/FunctionsV.html
    deleted file mode 100644
    index 468125cf3..000000000
    --- a/docs/php-api/search/FunctionsV.html
    +++ /dev/null
    @@ -1,20 +0,0 @@
    -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
    -
    -<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script></head><body class="PopupSearchResultsPage" onLoad="NDOnLoad()"><script language=JavaScript><!--
    -if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script>
    -
    -<!--  Generated by Natural Docs, version 1.51 -->
    -<!--  http://www.naturaldocs.org  -->
    -
    -<!-- saved from url=(0026)http://www.naturaldocs.org -->
    -
    -
    -
    -
    -<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_validate><div class=IEntry><a href="../files/view/mxGraphView-php.html#mxGraphView.validate" target=_parent class=ISymbol>validate</a>, <span class=IParent>mxGraphView</span></div></div><div class=SRResult id=SR_validateCell><div class=IEntry><a href="../files/view/mxGraphView-php.html#mxGraphView.validateCell" target=_parent class=ISymbol>validateCell</a>, <span class=IParent>mxGraphView</span></div></div><div class=SRResult id=SR_validateCellStates><div class=IEntry><a href="../files/view/mxGraphView-php.html#mxGraphView.validateCellStates" target=_parent class=ISymbol>validateCellStates</a>, <span class=IParent>mxGraphView</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
    -document.getElementById("Loading").style.display="none";
    -document.getElementById("NoMatches").style.display="none";
    -var searchResults = new SearchResults("searchResults", "HTML");
    -searchResults.Search();
    ---></script></div><script language=JavaScript><!--
    -if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
    \ No newline at end of file
    diff --git a/docs/php-api/search/FunctionsW.html b/docs/php-api/search/FunctionsW.html
    deleted file mode 100644
    index f3db05eee..000000000
    --- a/docs/php-api/search/FunctionsW.html
    +++ /dev/null
    @@ -1,20 +0,0 @@
    -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
    -
    -<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script></head><body class="PopupSearchResultsPage" onLoad="NDOnLoad()"><script language=JavaScript><!--
    -if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script>
    -
    -<!--  Generated by Natural Docs, version 1.51 -->
    -<!--  http://www.naturaldocs.org  -->
    -
    -<!-- saved from url=(0026)http://www.naturaldocs.org -->
    -
    -
    -
    -
    -<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_warn><div class=IEntry><a href="../files/util/mxLog-php.html#mxLog.warn" target=_parent class=ISymbol>warn</a>, <span class=IParent>mxLog</span></div></div><div class=SRResult id=SR_write><div class=IEntry><a href="../files/util/mxLog-php.html#mxLog.write" target=_parent class=ISymbol>write</a>, <span class=IParent>mxLog</span></div></div><div class=SRResult id=SR_writeAttribute><div class=IEntry><a href="../files/io/mxObjectCodec-php.html#mxObjectCodec.writeAttribute" target=_parent class=ISymbol>writeAttribute</a>, <span class=IParent>mxObjectCodec</span></div></div><div class=SRResult id=SR_writeComplexAttribute><div class=IEntry><a href="../files/io/mxObjectCodec-php.html#mxObjectCodec.writeComplexAttribute" target=_parent class=ISymbol>writeComplexAttribute</a>, <span class=IParent>mxObjectCodec</span></div></div><div class=SRResult id=SR_writeln><div class=IEntry><a href="../files/util/mxLog-php.html#mxLog.writeln" target=_parent class=ISymbol>writeln</a>, <span class=IParent>mxLog</span></div></div><div class=SRResult id=SR_writePrimitiveAttribute><div class=IEntry><a href="../files/io/mxObjectCodec-php.html#mxObjectCodec.writePrimitiveAttribute" target=_parent class=ISymbol>writePrimitiveAttribute</a>, <span class=IParent>mxObjectCodec</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
    -document.getElementById("Loading").style.display="none";
    -document.getElementById("NoMatches").style.display="none";
    -var searchResults = new SearchResults("searchResults", "HTML");
    -searchResults.Search();
    ---></script></div><script language=JavaScript><!--
    -if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
    \ No newline at end of file
    diff --git a/docs/php-api/search/GeneralA.html b/docs/php-api/search/GeneralA.html
    deleted file mode 100644
    index a02502ec1..000000000
    --- a/docs/php-api/search/GeneralA.html
    +++ /dev/null
    @@ -1,20 +0,0 @@
    -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
    -
    -<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script></head><body class="PopupSearchResultsPage" onLoad="NDOnLoad()"><script language=JavaScript><!--
    -if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script>
    -
    -<!--  Generated by Natural Docs, version 1.51 -->
    -<!--  http://www.naturaldocs.org  -->
    -
    -<!-- saved from url=(0026)http://www.naturaldocs.org -->
    -
    -
    -
    -
    -<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_absoluteOffset><div class=IEntry><a href="../files/view/mxCellState-php.html#mxCellState.absoluteOffset" target=_parent class=ISymbol>absoluteOffset</a>, <span class=IParent>mxCellState</span></div></div><div class=SRResult id=SR_absolutePoints><div class=IEntry><a href="../files/view/mxCellState-php.html#mxCellState.absolutePoints" target=_parent class=ISymbol>absolutePoints</a>, <span class=IParent>mxCellState</span></div></div><div class=SRResult id=SR_ACTIVE_undREGION><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.ACTIVE_REGION" target=_parent class=ISymbol>ACTIVE_REGION</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_add><div class=IEntry><a href="javascript:searchResults.Toggle('SR_add')" class=ISymbol>add</a><div class=ISubIndex><a href="../files/model/mxGraphModel-php.html#mxGraphModel.add" target=_parent class=IParent>mxGraphModel</a><a href="../files/util/mxRectangle-php.html#mxRectangle.add" target=_parent class=IParent>mxRectangle</a></div></div></div><div class=SRResult id=SR_addAlias><div class=IEntry><a href="../files/io/mxCodecRegistry-php.html#mxCodecRegistry.addAlias" target=_parent class=ISymbol>addAlias</a>, <span class=IParent>mxCodecRegistry</span></div></div><div class=SRResult id=SR_addBundle><div class=IEntry><a href="../files/view/mxGraph-php.html#mxGraph.addBundle" target=_parent class=ISymbol>addBundle</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_addElement><div class=IEntry><a href="../files/io/mxCodec-php.html#mxCodec.addElement" target=_parent class=ISymbol>addElement</a>, <span class=IParent>mxCodec</span></div></div><div class=SRResult id=SR_addListener><div class=IEntry><a href="../files/util/mxEventSource-php.html#mxEventSource.addListener" target=_parent class=ISymbol>addListener</a>, <span class=IParent>mxEventSource</span></div></div><div class=SRResult id=SR_addLogfile><div class=IEntry><a href="../files/util/mxLog-php.html#mxLog.addLogfile" target=_parent class=ISymbol>addLogfile</a>, <span class=IParent>mxLog</span></div></div><div class=SRResult id=SR_addObjectValue><div class=IEntry><a href="../files/io/mxObjectCodec-php.html#mxObjectCodec.addObjectValue" target=_parent class=ISymbol>addObjectValue</a>, <span class=IParent>mxObjectCodec</span></div></div><div class=SRResult id=SR_addStylename><div class=IEntry><a href="../files/util/mxUtils-php.html#mxUtils.addStylename" target=_parent class=ISymbol>addStylename</a>, <span class=IParent>mxUtils</span></div></div><div class=SRResult id=SR_afterDecode><div class=IEntry><a href="../files/io/mxObjectCodec-php.html#mxObjectCodec.afterDecode" target=_parent class=ISymbol>afterDecode</a>, <span class=IParent>mxObjectCodec</span></div></div><div class=SRResult id=SR_afterEncode><div class=IEntry><a href="../files/io/mxObjectCodec-php.html#mxObjectCodec.afterEncode" target=_parent class=ISymbol>afterEncode</a>, <span class=IParent>mxObjectCodec</span></div></div><div class=SRResult id=SR_aliases><div class=IEntry><a href="../files/io/mxCodecRegistry-php.html#mxCodecRegistry.aliases" target=_parent class=ISymbol>aliases</a>, <span class=IParent>mxCodecRegistry</span></div></div><div class=SRResult id=SR_ALIGN_undBOTTOM><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.ALIGN_BOTTOM" target=_parent class=ISymbol>ALIGN_BOTTOM</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_ALIGN_undCENTER><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.ALIGN_CENTER" target=_parent class=ISymbol>ALIGN_CENTER</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_ALIGN_undLEFT><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.ALIGN_LEFT" target=_parent class=ISymbol>ALIGN_LEFT</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_ALIGN_undMIDDLE><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.ALIGN_MIDDLE" target=_parent class=ISymbol>ALIGN_MIDDLE</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_ALIGN_undRIGHT><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.ALIGN_RIGHT" target=_parent class=ISymbol>ALIGN_RIGHT</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_ALIGN_undTOP><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.ALIGN_TOP" target=_parent class=ISymbol>ALIGN_TOP</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_alternateBounds><div class=IEntry><a href="../files/model/mxGeometry-php.html#mxGeometry.alternateBounds" target=_parent class=ISymbol>alternateBounds</a>, <span class=IParent>mxGeometry</span></div></div><div class=SRResult id=SR_antialias><div class=IEntry><a href="javascript:searchResults.Toggle('SR_antialias')" class=ISymbol>antialias</a><div class=ISubIndex><a href="../files/canvas/mxGdCanvas-php.html#antialias" target=_parent class=IParent>Global</a><a href="../files/canvas/mxGdCanvas-php.html#mxGdCanvas.antialias" target=_parent class=IParent>mxGdCanvas</a></div></div></div><div class=SRResult id=SR_API_spcSpecification><div class=IEntry><a href="../files/index-txt.html#API_Specification" target=_parent class=ISymbol>API Specification</a></div></div><div class=SRResult id=SR_apply><div class=IEntry><a href="javascript:searchResults.Toggle('SR_apply')" class=ISymbol>apply</a><div class=ISubIndex><a href="../files/view/mxEdgeStyle-php.html#mxEdgeStyleFunction.apply" target=_parent class=IParent>mxEdgeStyleFunction</a><a href="../files/view/mxPerimeter-php.html#mxPerimeterFunction.apply" target=_parent class=IParent>mxPerimeterFunction</a></div></div></div><div class=SRResult id=SR_ARROW_undBLOCK><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.ARROW_BLOCK" target=_parent class=ISymbol>ARROW_BLOCK</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_ARROW_undCLASSIC><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.ARROW_CLASSIC" target=_parent class=ISymbol>ARROW_CLASSIC</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_ARROW_undDIAMOND><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.ARROW_DIAMOND" target=_parent class=ISymbol>ARROW_DIAMOND</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_ARROW_undOPEN><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.ARROW_OPEN" target=_parent class=ISymbol>ARROW_OPEN</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_ARROW_undOVAL><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.ARROW_OVAL" target=_parent class=ISymbol>ARROW_OVAL</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_ARROW_undSIZE><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.ARROW_SIZE" target=_parent class=ISymbol>ARROW_SIZE</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_ARROW_undSPACING><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.ARROW_SPACING" target=_parent class=ISymbol>ARROW_SPACING</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_ARROW_undWIDTH><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.ARROW_WIDTH" target=_parent class=ISymbol>ARROW_WIDTH</a>, <span class=IParent>mxConstants</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
    -document.getElementById("Loading").style.display="none";
    -document.getElementById("NoMatches").style.display="none";
    -var searchResults = new SearchResults("searchResults", "HTML");
    -searchResults.Search();
    ---></script></div><script language=JavaScript><!--
    -if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
    \ No newline at end of file
    diff --git a/docs/php-api/search/GeneralB.html b/docs/php-api/search/GeneralB.html
    deleted file mode 100644
    index fe5262eb9..000000000
    --- a/docs/php-api/search/GeneralB.html
    +++ /dev/null
    @@ -1,20 +0,0 @@
    -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
    -
    -<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script></head><body class="PopupSearchResultsPage" onLoad="NDOnLoad()"><script language=JavaScript><!--
    -if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script>
    -
    -<!--  Generated by Natural Docs, version 1.51 -->
    -<!--  http://www.naturaldocs.org  -->
    -
    -<!-- saved from url=(0026)http://www.naturaldocs.org -->
    -
    -
    -
    -
    -<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_background><div class=IEntry><a href="../files/reader/mxGraphViewImageReader-php.html#mxGraphViewImageReader.background" target=_parent class=ISymbol>background</a>, <span class=IParent>mxGraphViewImageReader</span></div></div><div class=SRResult id=SR_beforeDecode><div class=IEntry><a href="../files/io/mxObjectCodec-php.html#mxObjectCodec.beforeDecode" target=_parent class=ISymbol>beforeDecode</a>, <span class=IParent>mxObjectCodec</span></div></div><div class=SRResult id=SR_beforeEncode><div class=IEntry><a href="../files/io/mxObjectCodec-php.html#mxObjectCodec.beforeEncode" target=_parent class=ISymbol>beforeEncode</a>, <span class=IParent>mxObjectCodec</span></div></div><div class=SRResult id=SR_beginUpdate><div class=IEntry><a href="../files/model/mxGraphModel-php.html#mxGraphModel.beginUpdate" target=_parent class=ISymbol>beginUpdate</a>, <span class=IParent>mxGraphModel</span></div></div><div class=SRResult id=SR_border><div class=IEntry><a href="../files/reader/mxGraphViewImageReader-php.html#mxGraphViewImageReader.border" target=_parent class=ISymbol>border</a>, <span class=IParent>mxGraphViewImageReader</span></div></div><div class=SRResult id=SR_boundingBox><div class=IEntry><a href="../files/view/mxCellState-php.html#mxCellState.boundingBox" target=_parent class=ISymbol>boundingBox</a>, <span class=IParent>mxCellState</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
    -document.getElementById("Loading").style.display="none";
    -document.getElementById("NoMatches").style.display="none";
    -var searchResults = new SearchResults("searchResults", "HTML");
    -searchResults.Search();
    ---></script></div><script language=JavaScript><!--
    -if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
    \ No newline at end of file
    diff --git a/docs/php-api/search/GeneralC.html b/docs/php-api/search/GeneralC.html
    deleted file mode 100644
    index a0a1ae49a..000000000
    --- a/docs/php-api/search/GeneralC.html
    +++ /dev/null
    @@ -1,20 +0,0 @@
    -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
    -
    -<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script></head><body class="PopupSearchResultsPage" onLoad="NDOnLoad()"><script language=JavaScript><!--
    -if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script>
    -
    -<!--  Generated by Natural Docs, version 1.51 -->
    -<!--  http://www.naturaldocs.org  -->
    -
    -<!-- saved from url=(0026)http://www.naturaldocs.org -->
    -
    -
    -
    -
    -<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_canvas><div class=IEntry><a href="../files/reader/mxGraphViewImageReader-php.html#mxGraphViewImageReader.canvas" target=_parent class=ISymbol>canvas</a>, <span class=IParent>mxGraphViewImageReader</span></div></div><div class=SRResult id=SR_cell><div class=IEntry><a href="../files/view/mxCellState-php.html#mxCellState.cell" target=_parent class=ISymbol>cell</a>, <span class=IParent>mxCellState</span></div></div><div class=SRResult id=SR_cellAdded><div class=IEntry><a href="../files/model/mxGraphModel-php.html#mxGraphModel.cellAdded" target=_parent class=ISymbol>cellAdded</a>, <span class=IParent>mxGraphModel</span></div></div><div class=SRResult id=SR_cellCloned><div class=IEntry><a href="../files/model/mxGraphModel-php.html#mxGraphModel.cellCloned" target=_parent class=ISymbol>cellCloned</a>, <span class=IParent>mxGraphModel</span></div></div><div class=SRResult id=SR_cellRemoved><div class=IEntry><a href="../files/model/mxGraphModel-php.html#mxGraphModel.cellRemoved" target=_parent class=ISymbol>cellRemoved</a>, <span class=IParent>mxGraphModel</span></div></div><div class=SRResult id=SR_cells><div class=IEntry><a href="../files/model/mxGraphModel-php.html#mxGraphModel.cells" target=_parent class=ISymbol>cells</a>, <span class=IParent>mxGraphModel</span></div></div><div class=SRResult id=SR_children><div class=IEntry><a href="../files/model/mxCell-php.html#mxCell.children" target=_parent class=ISymbol>children</a>, <span class=IParent>mxCell</span></div></div><div class=SRResult id=SR_clear><div class=IEntry><a href="../files/model/mxGraphModel-php.html#mxGraphModel.clear" target=_parent class=ISymbol>clear</a>, <span class=IParent>mxGraphModel</span></div></div><div class=SRResult id=SR_cloneCell><div class=IEntry><a href="../files/model/mxGraphModel-php.html#mxGraphModel.cloneCell" target=_parent class=ISymbol>cloneCell</a>, <span class=IParent>mxGraphModel</span></div></div><div class=SRResult id=SR_cloneCellImpl><div class=IEntry><a href="../files/model/mxGraphModel-php.html#mxGraphModel.cloneCellImpl" target=_parent class=ISymbol>cloneCellImpl</a>, <span class=IParent>mxGraphModel</span></div></div><div class=SRResult id=SR_cloneCells><div class=IEntry><a href="../files/model/mxGraphModel-php.html#mxGraphModel.cloneCells" target=_parent class=ISymbol>cloneCells</a>, <span class=IParent>mxGraphModel</span></div></div><div class=SRResult id=SR_cloneTemplate><div class=IEntry><a href="../files/io/mxObjectCodec-php.html#mxObjectCodec.cloneTemplate" target=_parent class=ISymbol>cloneTemplate</a>, <span class=IParent>mxObjectCodec</span></div></div><div class=SRResult id=SR_close><div class=IEntry><a href="../files/util/mxLog-php.html#mxLog.close" target=_parent class=ISymbol>close</a>, <span class=IParent>mxLog</span></div></div><div class=SRResult id=SR_codecs><div class=IEntry><a href="javascript:searchResults.Toggle('SR_codecs')" class=ISymbol>codecs</a><div class=ISubIndex><a href="../files/model/mxCellPath-php.html#mxCellPath.codecs" target=_parent class=IParent>mxCellPath</a><a href="../files/io/mxCodecRegistry-php.html#mxCodecRegistry.codecs" target=_parent class=IParent>mxCodecRegistry</a></div></div></div><div class=SRResult id=SR_collapsed><div class=IEntry><a href="../files/model/mxCell-php.html#mxCell.collapsed" target=_parent class=ISymbol>collapsed</a>, <span class=IParent>mxCell</span></div></div><div class=SRResult id=SR_connectable><div class=IEntry><a href="../files/model/mxCell-php.html#mxCell.connectable" target=_parent class=ISymbol>connectable</a>, <span class=IParent>mxCell</span></div></div><div class=SRResult id=SR_consume><div class=IEntry><a href="../files/util/mxEventObject-php.html#mxEventObject.consume" target=_parent class=ISymbol>consume</a>, <span class=IParent>mxEventObject</span></div></div><div class=SRResult id=SR_consumed><div class=IEntry><a href="../files/util/mxEventObject-php.html#mxEventObject.consumed" target=_parent class=ISymbol>consumed</a>, <span class=IParent>mxEventObject</span></div></div><div class=SRResult id=SR_contains><div class=IEntry><a href="javascript:searchResults.Toggle('SR_contains')" class=ISymbol>contains</a><div class=ISubIndex><a href="../files/model/mxGraphModel-php.html#mxGraphModel.contains" target=_parent class=IParent>mxGraphModel</a><a href="../files/util/mxUtils-php.html#mxUtils.contains" target=_parent class=IParent>mxUtils</a></div></div></div><div class=SRResult id=SR_convert><div class=IEntry><a href="javascript:searchResults.Toggle('SR_convert')" class=ISymbol>convert</a><div class=ISubIndex><a href="../files/reader/mxGraphViewHtmlReader-php.html#mxGraphViewHtmlReader.convert" target=_parent class=IParent>mxGraphViewHtmlReader</a><a href="../files/reader/mxGraphViewImageReader-php.html#mxGraphViewImageReader.convert" target=_parent class=IParent>mxGraphViewImageReader</a></div></div></div><div class=SRResult id=SR_convertFile><div class=IEntry><a href="javascript:searchResults.Toggle('SR_convertFile')" class=ISymbol>convertFile</a><div class=ISubIndex><a href="../files/reader/mxGraphViewHtmlReader-php.html#mxGraphViewHtmlReader.convertFile" target=_parent class=IParent>mxGraphViewHtmlReader</a><a href="../files/reader/mxGraphViewImageReader-php.html#mxGraphViewImageReader.convertFile" target=_parent class=IParent>mxGraphViewImageReader</a></div></div></div><div class=SRResult id=SR_convertValueFromXml><div class=IEntry><a href="../files/io/mxObjectCodec-php.html#mxObjectCodec.convertValueFromXml" target=_parent class=ISymbol>convertValueFromXml</a>, <span class=IParent>mxObjectCodec</span></div></div><div class=SRResult id=SR_convertValueToString><div class=IEntry><a href="../files/view/mxGraph-php.html#mxGraph.convertValueToString" target=_parent class=ISymbol>convertValueToString</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_convertValueToXml><div class=IEntry><a href="../files/io/mxObjectCodec-php.html#mxObjectCodec.convertValueToXml" target=_parent class=ISymbol>convertValueToXml</a>, <span class=IParent>mxObjectCodec</span></div></div><div class=SRResult id=SR_copy><div class=IEntry><a href="javascript:searchResults.Toggle('SR_copy')" class=ISymbol>copy</a><div class=ISubIndex><a href="../files/model/mxCell-php.html#mxCell.copy" target=_parent class=IParent>mxCell</a><a href="../files/view/mxCellState-php.html#mxCellState.copy" target=_parent class=IParent>mxCellState</a><a href="../files/model/mxGeometry-php.html#mxGeometry.copy" target=_parent class=IParent>mxGeometry</a><a href="../files/util/mxPoint-php.html#mxPoint.copy" target=_parent class=IParent>mxPoint</a><a href="../files/util/mxRectangle-php.html#mxRectangle.copy" target=_parent class=IParent>mxRectangle</a></div></div></div><div class=SRResult id=SR_copyValue><div class=IEntry><a href="../files/model/mxCell-php.html#mxCell.copyValue" target=_parent class=ISymbol>copyValue</a>, <span class=IParent>mxCell</span></div></div><div class=SRResult id=SR_create><div class=IEntry><a href="../files/model/mxCellPath-php.html#mxCellPath.create" target=_parent class=ISymbol>create</a>, <span class=IParent>mxCellPath</span></div></div><div class=SRResult id=SR_createCanvas><div class=IEntry><a href="javascript:searchResults.Toggle('SR_createCanvas')" class=ISymbol>createCanvas</a><div class=ISubIndex><a href="../files/reader/mxGraphViewHtmlReader-php.html#mxGraphViewHtmlReader.createCanvas" target=_parent class=IParent>mxGraphViewHtmlReader</a><a href="../files/reader/mxGraphViewImageReader-php.html#mxGraphViewImageReader.createCanvas" target=_parent class=IParent>mxGraphViewImageReader</a></div></div></div><div class=SRResult id=SR_createDefaultEdgeStyle><div class=IEntry><a href="../files/view/mxStylesheet-php.html#mxStylesheet.createDefaultEdgeStyle" target=_parent class=ISymbol>createDefaultEdgeStyle</a>, <span class=IParent>mxStylesheet</span></div></div><div class=SRResult id=SR_createDefaultVertexStyle><div class=IEntry><a href="../files/view/mxStylesheet-php.html#mxStylesheet.createDefaultVertexStyle" target=_parent class=ISymbol>createDefaultVertexStyle</a>, <span class=IParent>mxStylesheet</span></div></div><div class=SRResult id=SR_createEdge><div class=IEntry><a href="../files/view/mxGraph-php.html#mxGraph.createEdge" target=_parent class=ISymbol>createEdge</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_createGraphView><div class=IEntry><a href="../files/view/mxGraph-php.html#mxGraph.createGraphView" target=_parent class=ISymbol>createGraphView</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_createId><div class=IEntry><a href="../files/model/mxGraphModel-php.html#mxGraphModel.createId" target=_parent class=ISymbol>createId</a>, <span class=IParent>mxGraphModel</span></div></div><div class=SRResult id=SR_createIds><div class=IEntry><a href="../files/model/mxGraphModel-php.html#mxGraphModel.createIds" target=_parent class=ISymbol>createIds</a>, <span class=IParent>mxGraphModel</span></div></div><div class=SRResult id=SR_createImage><div class=IEntry><a href="../files/view/mxGraph-php.html#mxGraph.createImage" target=_parent class=ISymbol>createImage</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_createRoot><div class=IEntry><a href="../files/model/mxGraphModel-php.html#mxGraphModel.createRoot" target=_parent class=ISymbol>createRoot</a>, <span class=IParent>mxGraphModel</span></div></div><div class=SRResult id=SR_createState><div class=IEntry><a href="../files/view/mxGraphView-php.html#mxGraphView.createState" target=_parent class=ISymbol>createState</a>, <span class=IParent>mxGraphView</span></div></div><div class=SRResult id=SR_createStylesheet><div class=IEntry><a href="../files/view/mxGraph-php.html#mxGraph.createStylesheet" target=_parent class=ISymbol>createStylesheet</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_createVertex><div class=IEntry><a href="../files/view/mxGraph-php.html#mxGraph.createVertex" target=_parent class=ISymbol>createVertex</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_createXmlDocument><div class=IEntry><a href="../files/util/mxUtils-php.html#mxUtils.createXmlDocument" target=_parent class=ISymbol>createXmlDocument</a>, <span class=IParent>mxUtils</span></div></div><div class=SRResult id=SR_current><div class=IEntry><a href="../files/util/mxLog-php.html#mxLog.current" target=_parent class=ISymbol>current</a>, <span class=IParent>mxLog</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
    -document.getElementById("Loading").style.display="none";
    -document.getElementById("NoMatches").style.display="none";
    -var searchResults = new SearchResults("searchResults", "HTML");
    -searchResults.Search();
    ---></script></div><script language=JavaScript><!--
    -if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
    \ No newline at end of file
    diff --git a/docs/php-api/search/GeneralD.html b/docs/php-api/search/GeneralD.html
    deleted file mode 100644
    index c5a4992a2..000000000
    --- a/docs/php-api/search/GeneralD.html
    +++ /dev/null
    @@ -1,20 +0,0 @@
    -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
    -
    -<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script></head><body class="PopupSearchResultsPage" onLoad="NDOnLoad()"><script language=JavaScript><!--
    -if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script>
    -
    -<!--  Generated by Natural Docs, version 1.51 -->
    -<!--  http://www.naturaldocs.org  -->
    -
    -<!-- saved from url=(0026)http://www.naturaldocs.org -->
    -
    -
    -
    -
    -<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_debug><div class=IEntry><a href="../files/util/mxLog-php.html#mxLog.debug" target=_parent class=ISymbol>debug</a>, <span class=IParent>mxLog</span></div></div><div class=SRResult id=SR_decode><div class=IEntry><a href="javascript:searchResults.Toggle('SR_decode')" class=ISymbol>decode</a><div class=ISubIndex><a href="../files/io/mxCodec-php.html#mxCodec.decode" target=_parent class=IParent>mxCodec</a><a href="../files/io/mxObjectCodec-php.html#mxObjectCodec.decode" target=_parent class=IParent>mxObjectCodec</a></div></div></div><div class=SRResult id=SR_decodeAttribute><div class=IEntry><a href="../files/io/mxObjectCodec-php.html#mxObjectCodec.decodeAttribute" target=_parent class=ISymbol>decodeAttribute</a>, <span class=IParent>mxObjectCodec</span></div></div><div class=SRResult id=SR_decodeAttributes><div class=IEntry><a href="../files/io/mxObjectCodec-php.html#mxObjectCodec.decodeAttributes" target=_parent class=ISymbol>decodeAttributes</a>, <span class=IParent>mxObjectCodec</span></div></div><div class=SRResult id=SR_decodeCell><div class=IEntry><a href="../files/io/mxCodec-php.html#mxCodec.decodeCell" target=_parent class=ISymbol>decodeCell</a>, <span class=IParent>mxCodec</span></div></div><div class=SRResult id=SR_decodeChild><div class=IEntry><a href="../files/io/mxObjectCodec-php.html#mxObjectCodec.decodeChild" target=_parent class=ISymbol>decodeChild</a>, <span class=IParent>mxObjectCodec</span></div></div><div class=SRResult id=SR_decodeChildren><div class=IEntry><a href="../files/io/mxObjectCodec-php.html#mxObjectCodec.decodeChildren" target=_parent class=ISymbol>decodeChildren</a>, <span class=IParent>mxObjectCodec</span></div></div><div class=SRResult id=SR_decodeNode><div class=IEntry><a href="../files/io/mxObjectCodec-php.html#mxObjectCodec.decodeNode" target=_parent class=ISymbol>decodeNode</a>, <span class=IParent>mxObjectCodec</span></div></div><div class=SRResult id=SR_DEFAULT_undFONTFAMILY><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.DEFAULT_FONTFAMILY" target=_parent class=ISymbol>DEFAULT_FONTFAMILY</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_DEFAULT_undFONTSIZE><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.DEFAULT_FONTSIZE" target=_parent class=ISymbol>DEFAULT_FONTSIZE</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_DEFAULT_undIMAGESIZE><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.DEFAULT_IMAGESIZE" target=_parent class=ISymbol>DEFAULT_IMAGESIZE</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_DEFAULT_undLINESPACING><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.DEFAULT_LINESPACING" target=_parent class=ISymbol>DEFAULT_LINESPACING</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_DEFAULT_undMARKERSIZE><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.DEFAULT_MARKERSIZE" target=_parent class=ISymbol>DEFAULT_MARKERSIZE</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_DEFAULT_undSTARTSIZE><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.DEFAULT_STARTSIZE" target=_parent class=ISymbol>DEFAULT_STARTSIZE</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_defaultLoopStyle><div class=IEntry><a href="../files/view/mxGraph-php.html#mxGraph.defaultLoopStyle" target=_parent class=ISymbol>defaultLoopStyle</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_DEG_undPER_undRAD><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.DEG_PER_RAD" target=_parent class=ISymbol>DEG_PER_RAD</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_destroy><div class=IEntry><a href="javascript:searchResults.Toggle('SR_destroy')" class=ISymbol>destroy</a><div class=ISubIndex><a href="../files/canvas/mxGdCanvas-php.html#mxGdCanvas.destroy" target=_parent class=IParent>mxGdCanvas</a><a href="../files/reader/mxGraphViewImageReader-php.html#mxGraphViewImageReader.destroy" target=_parent class=IParent>mxGraphViewImageReader</a><a href="../files/canvas/mxHtmlCanvas-php.html#mxHtmlCanvas.destroy" target=_parent class=IParent>mxHtmlCanvas</a></div></div></div><div class=SRResult id=SR_DIRECTION_undEAST><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.DIRECTION_EAST" target=_parent class=ISymbol>DIRECTION_EAST</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_DIRECTION_undNORTH><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.DIRECTION_NORTH" target=_parent class=ISymbol>DIRECTION_NORTH</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_DIRECTION_undSOUTH><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.DIRECTION_SOUTH" target=_parent class=ISymbol>DIRECTION_SOUTH</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_DIRECTION_undWEST><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.DIRECTION_WEST" target=_parent class=ISymbol>DIRECTION_WEST</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_document><div class=IEntry><a href="../files/io/mxCodec-php.html#mxCodec.document" target=_parent class=ISymbol>document</a>, <span class=IParent>mxCodec</span></div></div><div class=SRResult id=SR_drawActor><div class=IEntry><a href="../files/canvas/mxGdCanvas-php.html#mxGdCanvas.drawActor" target=_parent class=ISymbol>drawActor</a>, <span class=IParent>mxGdCanvas</span></div></div><div class=SRResult id=SR_drawCell><div class=IEntry><a href="../files/canvas/mxGdCanvas-php.html#mxGdCanvas.drawCell" target=_parent class=ISymbol>drawCell</a>, <span class=IParent>mxGdCanvas</span></div></div><div class=SRResult id=SR_drawCloud><div class=IEntry><a href="../files/canvas/mxGdCanvas-php.html#mxGdCanvas.drawCloud" target=_parent class=ISymbol>drawCloud</a>, <span class=IParent>mxGdCanvas</span></div></div><div class=SRResult id=SR_drawCylinder><div class=IEntry><a href="../files/canvas/mxGdCanvas-php.html#mxGdCanvas.drawCylinder" target=_parent class=ISymbol>drawCylinder</a>, <span class=IParent>mxGdCanvas</span></div></div><div class=SRResult id=SR_drawFixedTextLine><div class=IEntry><a href="../files/canvas/mxGdCanvas-php.html#mxGdCanvas.drawFixedTextLine" target=_parent class=ISymbol>drawFixedTextLine</a>, <span class=IParent>mxGdCanvas</span></div></div><div class=SRResult id=SR_drawGraph><div class=IEntry><a href="javascript:searchResults.Toggle('SR_drawGraph')" class=ISymbol>drawGraph</a><div class=ISubIndex><a href="../files/canvas/mxGdCanvas-php.html#mxGdCanvas.drawGraph" target=_parent class=IParent>mxGdCanvas</a><a href="../files/view/mxGraph-php.html#mxGraph.drawGraph" target=_parent class=IParent>mxGraph</a><a href="../files/canvas/mxHtmlCanvas-php.html#mxHtmlCanvas.drawGraph" target=_parent class=IParent>mxHtmlCanvas</a></div></div></div><div class=SRResult id=SR_drawHexagon><div class=IEntry><a href="../files/canvas/mxGdCanvas-php.html#mxGdCanvas.drawHexagon" target=_parent class=ISymbol>drawHexagon</a>, <span class=IParent>mxGdCanvas</span></div></div><div class=SRResult id=SR_drawImage><div class=IEntry><a href="javascript:searchResults.Toggle('SR_drawImage')" class=ISymbol>drawImage</a><div class=ISubIndex><a href="../files/canvas/mxGdCanvas-php.html#mxGdCanvas.drawImage" target=_parent class=IParent>mxGdCanvas</a><a href="../files/canvas/mxHtmlCanvas-php.html#mxHtmlCanvas.drawImage" target=_parent class=IParent>mxHtmlCanvas</a></div></div></div><div class=SRResult id=SR_drawLabel><div class=IEntry><a href="../files/canvas/mxGdCanvas-php.html#mxGdCanvas.drawLabel" target=_parent class=ISymbol>drawLabel</a>, <span class=IParent>mxGdCanvas</span></div></div><div class=SRResult id=SR_drawLine><div class=IEntry><a href="javascript:searchResults.Toggle('SR_drawLine')" class=ISymbol>drawLine</a><div class=ISubIndex><a href="../files/canvas/mxGdCanvas-php.html#mxGdCanvas.drawLine" target=_parent class=IParent>mxGdCanvas</a><a href="../files/canvas/mxHtmlCanvas-php.html#mxHtmlCanvas.drawLine" target=_parent class=IParent>mxHtmlCanvas</a></div></div></div><div class=SRResult id=SR_drawMarker><div class=IEntry><a href="../files/canvas/mxGdCanvas-php.html#mxGdCanvas.drawMarker" target=_parent class=ISymbol>drawMarker</a>, <span class=IParent>mxGdCanvas</span></div></div><div class=SRResult id=SR_drawOval><div class=IEntry><a href="../files/canvas/mxGdCanvas-php.html#mxGdCanvas.drawOval" target=_parent class=ISymbol>drawOval</a>, <span class=IParent>mxGdCanvas</span></div></div><div class=SRResult id=SR_drawPolygon><div class=IEntry><a href="../files/canvas/mxGdCanvas-php.html#mxGdCanvas.drawPolygon" target=_parent class=ISymbol>drawPolygon</a>, <span class=IParent>mxGdCanvas</span></div></div><div class=SRResult id=SR_drawRect><div class=IEntry><a href="../files/canvas/mxGdCanvas-php.html#mxGdCanvas.drawRect" target=_parent class=ISymbol>drawRect</a>, <span class=IParent>mxGdCanvas</span></div></div><div class=SRResult id=SR_drawRhombus><div class=IEntry><a href="../files/canvas/mxGdCanvas-php.html#mxGdCanvas.drawRhombus" target=_parent class=ISymbol>drawRhombus</a>, <span class=IParent>mxGdCanvas</span></div></div><div class=SRResult id=SR_drawShape><div class=IEntry><a href="javascript:searchResults.Toggle('SR_drawShape')" class=ISymbol>drawShape</a><div class=ISubIndex><a href="../files/canvas/mxGdCanvas-php.html#mxGdCanvas.drawShape" target=_parent class=IParent>mxGdCanvas</a><a href="../files/canvas/mxHtmlCanvas-php.html#mxHtmlCanvas.drawShape" target=_parent class=IParent>mxHtmlCanvas</a></div></div></div><div class=SRResult id=SR_drawString><div class=IEntry><a href="../files/canvas/mxGdCanvas-php.html#mxGdCanvas.drawString" target=_parent class=ISymbol>drawString</a>, <span class=IParent>mxGdCanvas</span></div></div><div class=SRResult id=SR_drawText><div class=IEntry><a href="javascript:searchResults.Toggle('SR_drawText')" class=ISymbol>drawText</a><div class=ISubIndex><a href="../files/canvas/mxGdCanvas-php.html#mxGdCanvas.drawText" target=_parent class=IParent>mxGdCanvas</a><a href="../files/canvas/mxHtmlCanvas-php.html#mxHtmlCanvas.drawText" target=_parent class=IParent>mxHtmlCanvas</a></div></div></div><div class=SRResult id=SR_drawTriangle><div class=IEntry><a href="../files/canvas/mxGdCanvas-php.html#mxGdCanvas.drawTriangle" target=_parent class=ISymbol>drawTriangle</a>, <span class=IParent>mxGdCanvas</span></div></div><div class=SRResult id=SR_drawTtfText><div class=IEntry><a href="../files/canvas/mxGdCanvas-php.html#mxGdCanvas.drawTtfText" target=_parent class=ISymbol>drawTtfText</a>, <span class=IParent>mxGdCanvas</span></div></div><div class=SRResult id=SR_drawTtxTextLine><div class=IEntry><a href="../files/canvas/mxGdCanvas-php.html#mxGdCanvas.drawTtxTextLine" target=_parent class=ISymbol>drawTtxTextLine</a>, <span class=IParent>mxGdCanvas</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
    -document.getElementById("Loading").style.display="none";
    -document.getElementById("NoMatches").style.display="none";
    -var searchResults = new SearchResults("searchResults", "HTML");
    -searchResults.Search();
    ---></script></div><script language=JavaScript><!--
    -if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
    \ No newline at end of file
    diff --git a/docs/php-api/search/GeneralE.html b/docs/php-api/search/GeneralE.html
    deleted file mode 100644
    index b42e90744..000000000
    --- a/docs/php-api/search/GeneralE.html
    +++ /dev/null
    @@ -1,20 +0,0 @@
    -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
    -
    -<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script></head><body class="PopupSearchResultsPage" onLoad="NDOnLoad()"><script language=JavaScript><!--
    -if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script>
    -
    -<!--  Generated by Natural Docs, version 1.51 -->
    -<!--  http://www.naturaldocs.org  -->
    -
    -<!-- saved from url=(0026)http://www.naturaldocs.org -->
    -
    -
    -
    -
    -<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_edge><div class=IEntry><a href="../files/model/mxCell-php.html#mxCell.edge" target=_parent class=ISymbol>edge</a>, <span class=IParent>mxCell</span></div></div><div class=SRResult id=SR_edges><div class=IEntry><a href="../files/model/mxCell-php.html#mxCell.edges" target=_parent class=ISymbol>edges</a>, <span class=IParent>mxCell</span></div></div><div class=SRResult id=SR_EDGESTYLE_undENTITY_undRELATION><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.EDGESTYLE_ENTITY_RELATION" target=_parent class=ISymbol>EDGESTYLE_ENTITY_RELATION</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_EDGESTYLE_undLOOP><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.EDGESTYLE_LOOP" target=_parent class=ISymbol>EDGESTYLE_LOOP</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_EDGESTYLE_undSIDETOSIDE><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.EDGESTYLE_SIDETOSIDE" target=_parent class=ISymbol>EDGESTYLE_SIDETOSIDE</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_EDGESTYLE_undTOPTOBOTTOM><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.EDGESTYLE_TOPTOBOTTOM" target=_parent class=ISymbol>EDGESTYLE_TOPTOBOTTOM</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_ELBOW_undHORIZONTAL><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.ELBOW_HORIZONTAL" target=_parent class=ISymbol>ELBOW_HORIZONTAL</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_ELBOW_undVERTICAL><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.ELBOW_VERTICAL" target=_parent class=ISymbol>ELBOW_VERTICAL</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_ElbowConnector><div class=IEntry><a href="../files/view/mxEdgeStyle-php.html#mxEdgeStyle.ElbowConnector" target=_parent class=ISymbol>ElbowConnector</a>, <span class=IParent>mxEdgeStyle</span></div></div><div class=SRResult id=SR_elements><div class=IEntry><a href="../files/io/mxCodec-php.html#mxCodec.elements" target=_parent class=ISymbol>elements</a>, <span class=IParent>mxCodec</span></div></div><div class=SRResult id=SR_EllipsePerimeter><div class=IEntry><a href="../files/view/mxPerimeter-php.html#mxPerimeter.EllipsePerimeter" target=_parent class=ISymbol>EllipsePerimeter</a>, <span class=IParent>mxPerimeter</span></div></div><div class=SRResult id=SR_EMPTY_undPOINT><div class=IEntry><a href="../files/view/mxGraphView-php.html#mxGraphView.EMPTY_POINT" target=_parent class=ISymbol>EMPTY_POINT</a>, <span class=IParent>mxGraphView</span></div></div><div class=SRResult id=SR_enableTtf><div class=IEntry><a href="../files/canvas/mxGdCanvas-php.html#mxGdCanvas.enableTtf" target=_parent class=ISymbol>enableTtf</a>, <span class=IParent>mxGdCanvas</span></div></div><div class=SRResult id=SR_encode><div class=IEntry><a href="javascript:searchResults.Toggle('SR_encode')" class=ISymbol>encode</a><div class=ISubIndex><a href="../files/io/mxCodec-php.html#mxCodec.encode" target=_parent class=IParent>mxCodec</a><a href="../files/io/mxObjectCodec-php.html#mxObjectCodec.encode" target=_parent class=IParent>mxObjectCodec</a></div></div></div><div class=SRResult id=SR_encodeCell><div class=IEntry><a href="../files/io/mxCodec-php.html#mxCodec.encodeCell" target=_parent class=ISymbol>encodeCell</a>, <span class=IParent>mxCodec</span></div></div><div class=SRResult id=SR_encodeDefaults><div class=IEntry><a href="../files/io/mxCodec-php.html#mxCodec.encodeDefaults" target=_parent class=ISymbol>encodeDefaults</a>, <span class=IParent>mxCodec</span></div></div><div class=SRResult id=SR_encodeImage><div class=IEntry><a href="../files/util/mxUtils-php.html#mxUtils.encodeImage" target=_parent class=ISymbol>encodeImage</a>, <span class=IParent>mxUtils</span></div></div><div class=SRResult id=SR_encodeObject><div class=IEntry><a href="../files/io/mxObjectCodec-php.html#mxObjectCodec.encodeObject" target=_parent class=ISymbol>encodeObject</a>, <span class=IParent>mxObjectCodec</span></div></div><div class=SRResult id=SR_encodeValue><div class=IEntry><a href="../files/io/mxObjectCodec-php.html#mxObjectCodec.encodeValue" target=_parent class=ISymbol>encodeValue</a>, <span class=IParent>mxObjectCodec</span></div></div><div class=SRResult id=SR_endElement><div class=IEntry><a href="../files/reader/mxGraphViewImageReader-php.html#mxGraphViewImageReader.endElement" target=_parent class=ISymbol>endElement</a>, <span class=IParent>mxGraphViewImageReader</span></div></div><div class=SRResult id=SR_endUpdate><div class=IEntry><a href="../files/model/mxGraphModel-php.html#mxGraphModel.endUpdate" target=_parent class=ISymbol>endUpdate</a>, <span class=IParent>mxGraphModel</span></div></div><div class=SRResult id=SR_enter><div class=IEntry><a href="../files/util/mxLog-php.html#mxLog.enter" target=_parent class=ISymbol>enter</a>, <span class=IParent>mxLog</span></div></div><div class=SRResult id=SR_ENTITY_undSEGMENT><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.ENTITY_SEGMENT" target=_parent class=ISymbol>ENTITY_SEGMENT</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_EntityRelation><div class=IEntry><a href="../files/view/mxEdgeStyle-php.html#mxEdgeStyle.EntityRelation" target=_parent class=ISymbol>EntityRelation</a>, <span class=IParent>mxEdgeStyle</span></div></div><div class=SRResult id=SR_equals><div class=IEntry><a href="javascript:searchResults.Toggle('SR_equals')" class=ISymbol>equals</a><div class=ISubIndex><a href="../files/util/mxPoint-php.html#mxPoint.equals" target=_parent class=IParent>mxPoint</a><a href="../files/util/mxRectangle-php.html#mxRectangle.equals" target=_parent class=IParent>mxRectangle</a></div></div></div><div class=SRResult id=SR_error><div class=IEntry><a href="../files/util/mxLog-php.html#mxLog.error" target=_parent class=ISymbol>error</a>, <span class=IParent>mxLog</span></div></div><div class=SRResult id=SR_evaluate><div class=IEntry><a href="../files/util/mxUtils-php.html#mxUtils.evaluate" target=_parent class=ISymbol>evaluate</a>, <span class=IParent>mxUtils</span></div></div><div class=SRResult id=SR_eventListeners><div class=IEntry><a href="../files/util/mxEventSource-php.html#mxEventSource.eventListeners" target=_parent class=ISymbol>eventListeners</a>, <span class=IParent>mxEventSource</span></div></div><div class=SRResult id=SR_exclude><div class=IEntry><a href="../files/io/mxObjectCodec-php.html#mxObjectCodec.exclude" target=_parent class=ISymbol>exclude</a>, <span class=IParent>mxObjectCodec</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
    -document.getElementById("Loading").style.display="none";
    -document.getElementById("NoMatches").style.display="none";
    -var searchResults = new SearchResults("searchResults", "HTML");
    -searchResults.Search();
    ---></script></div><script language=JavaScript><!--
    -if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
    \ No newline at end of file
    diff --git a/docs/php-api/search/GeneralF.html b/docs/php-api/search/GeneralF.html
    deleted file mode 100644
    index 1a12fbd45..000000000
    --- a/docs/php-api/search/GeneralF.html
    +++ /dev/null
    @@ -1,20 +0,0 @@
    -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
    -
    -<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script></head><body class="PopupSearchResultsPage" onLoad="NDOnLoad()"><script language=JavaScript><!--
    -if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script>
    -
    -<!--  Generated by Natural Docs, version 1.51 -->
    -<!--  http://www.naturaldocs.org  -->
    -
    -<!-- saved from url=(0026)http://www.naturaldocs.org -->
    -
    -
    -
    -
    -<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_findNode><div class=IEntry><a href="../files/util/mxUtils-php.html#mxUtils.findNode" target=_parent class=ISymbol>findNode</a>, <span class=IParent>mxUtils</span></div></div><div class=SRResult id=SR_findTreeRoots><div class=IEntry><a href="../files/view/mxGraph-php.html#mxGraph.findTreeRoots" target=_parent class=ISymbol>findTreeRoots</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_fine><div class=IEntry><a href="../files/util/mxLog-php.html#mxLog.fine" target=_parent class=ISymbol>fine</a>, <span class=IParent>mxLog</span></div></div><div class=SRResult id=SR_fireEvent><div class=IEntry><a href="../files/util/mxEventSource-php.html#mxEventSource.fireEvent" target=_parent class=ISymbol>fireEvent</a>, <span class=IParent>mxEventSource</span></div></div><div class=SRResult id=SR_flipImage><div class=IEntry><a href="../files/util/mxUtils-php.html#mxUtils.flipImage" target=_parent class=ISymbol>flipImage</a>, <span class=IParent>mxUtils</span></div></div><div class=SRResult id=SR_FONT_undBOLD><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.FONT_BOLD" target=_parent class=ISymbol>FONT_BOLD</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_FONT_undITALIC><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.FONT_ITALIC" target=_parent class=ISymbol>FONT_ITALIC</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_FONT_undUNDERLINE><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.FONT_UNDERLINE" target=_parent class=ISymbol>FONT_UNDERLINE</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_Functions><div class=IEntry><a href="javascript:searchResults.Toggle('SR_Functions')" class=ISymbol>Functions</a><div class=ISubIndex><a href="../files/model/mxCell-php.html#mxCell.Functions" target=_parent class=IParent>mxCell</a><a href="../files/io/mxCellCodec-php.html#mxCellCodec.Functions" target=_parent class=IParent>mxCellCodec</a><a href="../files/model/mxCellPath-php.html#mxCellPath.Functions" target=_parent class=IParent>mxCellPath</a><a href="../files/view/mxCellState-php.html#mxCellState.Functions" target=_parent class=IParent>mxCellState</a><a href="../files/io/mxCodec-php.html#mxCodec.Functions" target=_parent class=IParent>mxCodec</a><a href="../files/io/mxCodecRegistry-php.html#mxCodecRegistry.Functions" target=_parent class=IParent>mxCodecRegistry</a><a href="../files/view/mxConnectionConstraint-php.html#mxConnectionConstraint.Functions" target=_parent class=IParent>mxConnectionConstraint</a><a href="../files/view/mxEdgeStyle-php.html#mxEdgeStyleFunction.Functions" target=_parent class=IParent>mxEdgeStyleFunction</a><a href="../files/util/mxEventObject-php.html#mxEventObject.Functions" target=_parent class=IParent>mxEventObject</a><a href="../files/util/mxEventSource-php.html#mxEventSource.Functions" target=_parent class=IParent>mxEventSource</a><a href="../files/canvas/mxGdCanvas-php.html#mxGdCanvas.Functions" target=_parent class=IParent>mxGdCanvas</a><a href="../files/model/mxGeometry-php.html#mxGeometry.Functions" target=_parent class=IParent>mxGeometry</a><a href="../files/view/mxGraph-php.html#mxGraph.Functions" target=_parent class=IParent>mxGraph</a><a href="../files/model/mxGraphModel-php.html#mxGraphModel.Functions" target=_parent class=IParent>mxGraphModel</a><a href="../files/view/mxGraphView-php.html#mxGraphView.Functions" target=_parent class=IParent>mxGraphView</a><a href="../files/reader/mxGraphViewHtmlReader-php.html#mxGraphViewHtmlReader.Functions" target=_parent class=IParent>mxGraphViewHtmlReader</a><a href="../files/reader/mxGraphViewImageReader-php.html#mxGraphViewImageReader.Functions" target=_parent class=IParent>mxGraphViewImageReader</a><a href="../files/canvas/mxHtmlCanvas-php.html#mxHtmlCanvas.Functions" target=_parent class=IParent>mxHtmlCanvas</a><a href="../files/util/mxImageBundle-php.html#mxImageBundle.Functions" target=_parent class=IParent>mxImageBundle</a><a href="../files/util/mxLog-php.html#mxLog.Functions" target=_parent class=IParent>mxLog</a><a href="../files/io/mxModelCodec-php.html#mxModelCodec.Functions" target=_parent class=IParent>mxModelCodec</a><a href="../files/io/mxObjectCodec-php.html#mxObjectCodec.Functions" target=_parent class=IParent>mxObjectCodec</a><a href="../files/view/mxPerimeter-php.html#mxPerimeterFunction.Functions" target=_parent class=IParent>mxPerimeterFunction</a><a href="../files/util/mxPoint-php.html#mxPoint.Functions" target=_parent class=IParent>mxPoint</a><a href="../files/util/mxRectangle-php.html#mxRectangle.Functions" target=_parent class=IParent>mxRectangle</a><a href="../files/view/mxStyleRegistry-php.html#mxStyleRegistry.Functions" target=_parent class=IParent>mxStyleRegistry</a><a href="../files/view/mxStylesheet-php.html#mxStylesheet.Functions" target=_parent class=IParent>mxStylesheet</a><a href="../files/io/mxStylesheetCodec-php.html#mxStylesheetCodec.Functions" target=_parent class=IParent>mxStylesheetCodec</a><a href="../files/util/mxUtils-php.html#mxUtils.Functions" target=_parent class=IParent>mxUtils</a></div></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
    -document.getElementById("Loading").style.display="none";
    -document.getElementById("NoMatches").style.display="none";
    -var searchResults = new SearchResults("searchResults", "HTML");
    -searchResults.Search();
    ---></script></div><script language=JavaScript><!--
    -if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
    \ No newline at end of file
    diff --git a/docs/php-api/search/GeneralG.html b/docs/php-api/search/GeneralG.html
    deleted file mode 100644
    index d9b8e87ae..000000000
    --- a/docs/php-api/search/GeneralG.html
    +++ /dev/null
    @@ -1,20 +0,0 @@
    -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
    -
    -<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script></head><body class="PopupSearchResultsPage" onLoad="NDOnLoad()"><script language=JavaScript><!--
    -if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script>
    -
    -<!--  Generated by Natural Docs, version 1.51 -->
    -<!--  http://www.naturaldocs.org  -->
    -
    -<!-- saved from url=(0026)http://www.naturaldocs.org -->
    -
    -
    -
    -
    -<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_geometry><div class=IEntry><a href="../files/model/mxCell-php.html#mxCell.geometry" target=_parent class=ISymbol>geometry</a>, <span class=IParent>mxCell</span></div></div><div class=SRResult id=SR_getAttribute><div class=IEntry><a href="../files/model/mxCell-php.html#mxCell.getAttribute" target=_parent class=ISymbol>getAttribute</a>, <span class=IParent>mxCell</span></div></div><div class=SRResult id=SR_getAttributeName><div class=IEntry><a href="../files/io/mxObjectCodec-php.html#mxObjectCodec.getAttributeName" target=_parent class=ISymbol>getAttributeName</a>, <span class=IParent>mxObjectCodec</span></div></div><div class=SRResult id=SR_getBoundingBox><div class=IEntry><a href="javascript:searchResults.Toggle('SR_getBoundingBox')" class=ISymbol>getBoundingBox</a><div class=ISubIndex><a href="../files/view/mxGraph-php.html#mxGraph.getBoundingBox" target=_parent class=IParent>mxGraph</a><a href="../files/view/mxGraphView-php.html#mxGraphView.getBoundingBox" target=_parent class=IParent>mxGraphView</a><a href="../files/util/mxUtils-php.html#mxUtils.getBoundingBox" target=_parent class=IParent>mxUtils</a></div></div></div><div class=SRResult id=SR_getBounds><div class=IEntry><a href="../files/view/mxGraphView-php.html#mxGraphView.getBounds" target=_parent class=ISymbol>getBounds</a>, <span class=IParent>mxGraphView</span></div></div><div class=SRResult id=SR_getBoundsForCells><div class=IEntry><a href="../files/view/mxGraph-php.html#mxGraph.getBoundsForCells" target=_parent class=ISymbol>getBoundsForCells</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_getCellBounds><div class=IEntry><a href="../files/view/mxGraph-php.html#mxGraph.getCellBounds" target=_parent class=ISymbol>getCellBounds</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_getCellGeometry><div class=IEntry><a href="../files/view/mxGraph-php.html#mxGraph.getCellGeometry" target=_parent class=ISymbol>getCellGeometry</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_getCells><div class=IEntry><a href="../files/model/mxGraphModel-php.html#mxGraphModel.getCells" target=_parent class=ISymbol>getCells</a>, <span class=IParent>mxGraphModel</span></div></div><div class=SRResult id=SR_getCellStyle><div class=IEntry><a href="javascript:searchResults.Toggle('SR_getCellStyle')" class=ISymbol>getCellStyle</a><div class=ISubIndex><a href="../files/view/mxGraph-php.html#mxGraph.getCellStyle" target=_parent class=IParent>mxGraph</a><a href="../files/view/mxStylesheet-php.html#mxStylesheet.getCellStyle" target=_parent class=IParent>mxStylesheet</a></div></div></div><div class=SRResult id=SR_getCenterX><div class=IEntry><a href="../files/util/mxRectangle-php.html#mxRectangle.getCenterX" target=_parent class=ISymbol>getCenterX</a>, <span class=IParent>mxRectangle</span></div></div><div class=SRResult id=SR_getCenterY><div class=IEntry><a href="../files/util/mxRectangle-php.html#mxRectangle.getCenterY" target=_parent class=ISymbol>getCenterY</a>, <span class=IParent>mxRectangle</span></div></div><div class=SRResult id=SR_getChildAt><div class=IEntry><a href="javascript:searchResults.Toggle('SR_getChildAt')" class=ISymbol>getChildAt</a><div class=ISubIndex><a href="../files/model/mxCell-php.html#mxCell.getChildAt" target=_parent class=IParent>mxCell</a><a href="../files/model/mxGraphModel-php.html#mxGraphModel.getChildAt" target=_parent class=IParent>mxGraphModel</a></div></div></div><div class=SRResult id=SR_getChildCount><div class=IEntry><a href="javascript:searchResults.Toggle('SR_getChildCount')" class=ISymbol>getChildCount</a><div class=ISubIndex><a href="../files/model/mxCell-php.html#mxCell.getChildCount" target=_parent class=IParent>mxCell</a><a href="../files/model/mxGraphModel-php.html#mxGraphModel.getChildCount" target=_parent class=IParent>mxGraphModel</a></div></div></div><div class=SRResult id=SR_getChildOffsetForCell><div class=IEntry><a href="../files/view/mxGraph-php.html#mxGraph.getChildOffsetForCell" target=_parent class=ISymbol>getChildOffsetForCell</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_getCodec><div class=IEntry><a href="../files/io/mxCodecRegistry-php.html#mxCodecRegistry.getCodec" target=_parent class=ISymbol>getCodec</a>, <span class=IParent>mxCodecRegistry</span></div></div><div class=SRResult id=SR_getColor><div class=IEntry><a href="../files/canvas/mxGdCanvas-php.html#mxGdCanvas.getColor" target=_parent class=ISymbol>getColor</a>, <span class=IParent>mxGdCanvas</span></div></div><div class=SRResult id=SR_getConnectionConstraint><div class=IEntry><a href="../files/view/mxGraph-php.html#mxGraph.getConnectionConstraint" target=_parent class=ISymbol>getConnectionConstraint</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_getConnectionPoint><div class=IEntry><a href="../files/view/mxGraph-php.html#mxGraph.getConnectionPoint" target=_parent class=ISymbol>getConnectionPoint</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_getDefaultEdgeStyle><div class=IEntry><a href="../files/view/mxStylesheet-php.html#mxStylesheet.getDefaultEdgeStyle" target=_parent class=ISymbol>getDefaultEdgeStyle</a>, <span class=IParent>mxStylesheet</span></div></div><div class=SRResult id=SR_getDefaultParent><div class=IEntry><a href="../files/view/mxGraph-php.html#mxGraph.getDefaultParent" target=_parent class=ISymbol>getDefaultParent</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_getDefaultVertexStyle><div class=IEntry><a href="../files/view/mxStylesheet-php.html#mxStylesheet.getDefaultVertexStyle" target=_parent class=ISymbol>getDefaultVertexStyle</a>, <span class=IParent>mxStylesheet</span></div></div><div class=SRResult id=SR_getDirectedEdgeCount><div class=IEntry><a href="../files/model/mxGraphModel-php.html#mxGraphModel.getDirectedEdgeCount" target=_parent class=ISymbol>getDirectedEdgeCount</a>, <span class=IParent>mxGraphModel</span></div></div><div class=SRResult id=SR_getEdgeAt><div class=IEntry><a href="javascript:searchResults.Toggle('SR_getEdgeAt')" class=ISymbol>getEdgeAt</a><div class=ISubIndex><a href="../files/model/mxCell-php.html#mxCell.getEdgeAt" target=_parent class=IParent>mxCell</a><a href="../files/model/mxGraphModel-php.html#mxGraphModel.getEdgeAt" target=_parent class=IParent>mxGraphModel</a></div></div></div><div class=SRResult id=SR_getEdgeCount><div class=IEntry><a href="javascript:searchResults.Toggle('SR_getEdgeCount')" class=ISymbol>getEdgeCount</a><div class=ISubIndex><a href="../files/model/mxCell-php.html#mxCell.getEdgeCount" target=_parent class=IParent>mxCell</a><a href="../files/model/mxGraphModel-php.html#mxGraphModel.getEdgeCount" target=_parent class=IParent>mxGraphModel</a></div></div></div><div class=SRResult id=SR_getEdgeIndex><div class=IEntry><a href="../files/model/mxCell-php.html#mxCell.getEdgeIndex" target=_parent class=ISymbol>getEdgeIndex</a>, <span class=IParent>mxCell</span></div></div><div class=SRResult id=SR_getEdges><div class=IEntry><a href="../files/model/mxGraphModel-php.html#mxGraphModel.getEdges" target=_parent class=ISymbol>getEdges</a>, <span class=IParent>mxGraphModel</span></div></div><div class=SRResult id=SR_getEdgeStyle><div class=IEntry><a href="../files/view/mxGraphView-php.html#mxGraphView.getEdgeStyle" target=_parent class=ISymbol>getEdgeStyle</a>, <span class=IParent>mxGraphView</span></div></div><div class=SRResult id=SR_getElementById><div class=IEntry><a href="../files/io/mxCodec-php.html#mxCodec.getElementById" target=_parent class=ISymbol>getElementById</a>, <span class=IParent>mxCodec</span></div></div><div class=SRResult id=SR_getFieldName><div class=IEntry><a href="../files/io/mxObjectCodec-php.html#mxObjectCodec.getFieldName" target=_parent class=ISymbol>getFieldName</a>, <span class=IParent>mxObjectCodec</span></div></div><div class=SRResult id=SR_getFieldTemplate><div class=IEntry><a href="../files/io/mxObjectCodec-php.html#mxObjectCodec.getFieldTemplate" target=_parent class=ISymbol>getFieldTemplate</a>, <span class=IParent>mxObjectCodec</span></div></div><div class=SRResult id=SR_getFixedFontSize><div class=IEntry><a href="javascript:searchResults.Toggle('SR_getFixedFontSize')" class=ISymbol>getFixedFontSize</a><div class=ISubIndex><a href="../files/canvas/mxGdCanvas-php.html#mxGdCanvas.getFixedFontSize" target=_parent class=IParent>mxGdCanvas</a><a href="../files/util/mxUtils-php.html#mxUtils.getFixedFontSize" target=_parent class=IParent>mxUtils</a></div></div></div><div class=SRResult id=SR_getGeometry><div class=IEntry><a href="javascript:searchResults.Toggle('SR_getGeometry')" class=ISymbol>getGeometry</a><div class=ISubIndex><a href="../files/model/mxCell-php.html#mxCell.getGeometry" target=_parent class=IParent>mxCell</a><a href="../files/model/mxGraphModel-php.html#mxGraphModel.getGeometry" target=_parent class=IParent>mxGraphModel</a></div></div></div><div class=SRResult id=SR_getGraphBounds><div class=IEntry><a href="javascript:searchResults.Toggle('SR_getGraphBounds')" class=ISymbol>getGraphBounds</a><div class=ISubIndex><a href="../files/view/mxGraph-php.html#mxGraph.getGraphBounds" target=_parent class=IParent>mxGraph</a><a href="../files/view/mxGraphView-php.html#mxGraphView.getGraphBounds" target=_parent class=IParent>mxGraphView</a></div></div></div><div class=SRResult id=SR_getHashCode><div class=IEntry><a href="../files/view/mxGraphView-php.html#mxGraphView.getHashCode" target=_parent class=ISymbol>getHashCode</a>, <span class=IParent>mxGraphView</span></div></div><div class=SRResult id=SR_getHtml><div class=IEntry><a href="../files/canvas/mxHtmlCanvas-php.html#mxHtmlCanvas.getHtml" target=_parent class=ISymbol>getHtml</a>, <span class=IParent>mxHtmlCanvas</span></div></div><div class=SRResult id=SR_getId><div class=IEntry><a href="javascript:searchResults.Toggle('SR_getId')" class=ISymbol>getId</a><div class=ISubIndex><a href="../files/model/mxCell-php.html#mxCell.getId" target=_parent class=IParent>mxCell</a><a href="../files/io/mxCodec-php.html#mxCodec.getId" target=_parent class=IParent>mxCodec</a></div></div></div><div class=SRResult id=SR_getImage><div class=IEntry><a href="javascript:searchResults.Toggle('SR_getImage')" class=ISymbol>getImage</a><div class=ISubIndex><a href="../files/canvas/mxGdCanvas-php.html#mxGdCanvas.getImage" target=_parent class=IParent>mxGdCanvas</a><a href="../files/util/mxImageBundle-php.html#mxImageBundle.getImage" target=_parent class=IParent>mxImageBundle</a></div></div></div><div class=SRResult id=SR_getImageBundles><div class=IEntry><a href="../files/view/mxGraph-php.html#mxGraph.getImageBundles" target=_parent class=ISymbol>getImageBundles</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_getImageForStyle><div class=IEntry><a href="../files/canvas/mxGdCanvas-php.html#mxGdCanvas.getImageForStyle" target=_parent class=ISymbol>getImageForStyle</a>, <span class=IParent>mxGdCanvas</span></div></div><div class=SRResult id=SR_getImageFromBundles><div class=IEntry><a href="../files/view/mxGraph-php.html#mxGraph.getImageFromBundles" target=_parent class=ISymbol>getImageFromBundles</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_getImages><div class=IEntry><a href="../files/util/mxImageBundle-php.html#mxImageBundle.getImages" target=_parent class=ISymbol>getImages</a>, <span class=IParent>mxImageBundle</span></div></div><div class=SRResult id=SR_getIndex><div class=IEntry><a href="../files/model/mxCell-php.html#mxCell.getIndex" target=_parent class=ISymbol>getIndex</a>, <span class=IParent>mxCell</span></div></div><div class=SRResult id=SR_getInstanceForName><div class=IEntry><a href="../files/io/mxCodecRegistry-php.html#mxCodecRegistry.getInstanceForName" target=_parent class=ISymbol>getInstanceForName</a>, <span class=IParent>mxCodecRegistry</span></div></div><div class=SRResult id=SR_getLabel><div class=IEntry><a href="../files/view/mxGraph-php.html#mxGraph.getLabel" target=_parent class=ISymbol>getLabel</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_getLabelPaintBounds><div class=IEntry><a href="../files/util/mxUtils-php.html#mxUtils.getLabelPaintBounds" target=_parent class=ISymbol>getLabelPaintBounds</a>, <span class=IParent>mxUtils</span></div></div><div class=SRResult id=SR_getLabelSize><div class=IEntry><a href="../files/util/mxUtils-php.html#mxUtils.getLabelSize" target=_parent class=ISymbol>getLabelSize</a>, <span class=IParent>mxUtils</span></div></div><div class=SRResult id=SR_getModel><div class=IEntry><a href="../files/view/mxGraph-php.html#mxGraph.getModel" target=_parent class=ISymbol>getModel</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_getName><div class=IEntry><a href="javascript:searchResults.Toggle('SR_getName')" class=ISymbol>getName</a><div class=ISubIndex><a href="../files/io/mxCodecRegistry-php.html#mxCodecRegistry.getName" target=_parent class=IParent>mxCodecRegistry</a><a href="../files/util/mxEventObject-php.html#mxEventObject.getName" target=_parent class=IParent>mxEventObject</a><a href="../files/io/mxObjectCodec-php.html#mxObjectCodec.getName" target=_parent class=IParent>mxObjectCodec</a><a href="../files/view/mxStyleRegistry-php.html#mxStyleRegistry.getName" target=_parent class=IParent>mxStyleRegistry</a></div></div></div><div class=SRResult id=SR_getNearestCommonAncestor><div class=IEntry><a href="../files/model/mxGraphModel-php.html#mxGraphModel.getNearestCommonAncestor" target=_parent class=ISymbol>getNearestCommonAncestor</a>, <span class=IParent>mxGraphModel</span></div></div><div class=SRResult id=SR_getNextPoint><div class=IEntry><a href="../files/view/mxGraphView-php.html#mxGraphView.getNextPoint" target=_parent class=ISymbol>getNextPoint</a>, <span class=IParent>mxGraphView</span></div></div><div class=SRResult id=SR_getNumber><div class=IEntry><a href="../files/util/mxUtils-php.html#mxUtils.getNumber" target=_parent class=ISymbol>getNumber</a>, <span class=IParent>mxUtils</span></div></div><div class=SRResult id=SR_getObject><div class=IEntry><a href="../files/io/mxCodec-php.html#mxCodec.getObject" target=_parent class=ISymbol>getObject</a>, <span class=IParent>mxCodec</span></div></div><div class=SRResult id=SR_getOrigin><div class=IEntry><a href="../files/model/mxGraphModel-php.html#mxGraphModel.getOrigin" target=_parent class=ISymbol>getOrigin</a>, <span class=IParent>mxGraphModel</span></div></div><div class=SRResult id=SR_getPaintBounds><div class=IEntry><a href="../files/view/mxGraph-php.html#mxGraph.getPaintBounds" target=_parent class=ISymbol>getPaintBounds</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_getParent><div class=IEntry><a href="javascript:searchResults.Toggle('SR_getParent')" class=ISymbol>getParent</a><div class=ISubIndex><a href="../files/model/mxCell-php.html#mxCell.getParent" target=_parent class=IParent>mxCell</a><a href="../files/model/mxGraphModel-php.html#mxGraphModel.getParent" target=_parent class=IParent>mxGraphModel</a></div></div></div><div class=SRResult id=SR_getParentPath><div class=IEntry><a href="../files/model/mxCellPath-php.html#mxCellPath.getParentPath" target=_parent class=ISymbol>getParentPath</a>, <span class=IParent>mxCellPath</span></div></div><div class=SRResult id=SR_getPerimeterBounds><div class=IEntry><a href="javascript:searchResults.Toggle('SR_getPerimeterBounds')" class=ISymbol>getPerimeterBounds</a><div class=ISubIndex><a href="../files/view/mxCellState-php.html#mxCellState.getPerimeterBounds" target=_parent class=IParent>mxCellState</a><a href="../files/view/mxGraphView-php.html#mxGraphView.getPerimeterBounds" target=_parent class=IParent>mxGraphView</a></div></div></div><div class=SRResult id=SR_getPerimeterFunction><div class=IEntry><a href="../files/view/mxGraphView-php.html#mxGraphView.getPerimeterFunction" target=_parent class=ISymbol>getPerimeterFunction</a>, <span class=IParent>mxGraphView</span></div></div><div class=SRResult id=SR_getPerimeterPoint><div class=IEntry><a href="../files/view/mxGraphView-php.html#mxGraphView.getPerimeterPoint" target=_parent class=ISymbol>getPerimeterPoint</a>, <span class=IParent>mxGraphView</span></div></div><div class=SRResult id=SR_getPoint><div class=IEntry><a href="../files/view/mxGraphView-php.html#mxGraphView.getPoint" target=_parent class=ISymbol>getPoint</a>, <span class=IParent>mxGraphView</span></div></div><div class=SRResult id=SR_getProperties><div class=IEntry><a href="../files/util/mxEventObject-php.html#mxEventObject.getProperties" target=_parent class=ISymbol>getProperties</a>, <span class=IParent>mxEventObject</span></div></div><div class=SRResult id=SR_getProperty><div class=IEntry><a href="../files/util/mxEventObject-php.html#mxEventObject.getProperty" target=_parent class=ISymbol>getProperty</a>, <span class=IParent>mxEventObject</span></div></div><div class=SRResult id=SR_getRoot><div class=IEntry><a href="../files/model/mxGraphModel-php.html#mxGraphModel.getRoot" target=_parent class=ISymbol>getRoot</a>, <span class=IParent>mxGraphModel</span></div></div><div class=SRResult id=SR_getRotatedPoint><div class=IEntry><a href="../files/util/mxUtils-php.html#mxUtils.getRotatedPoint" target=_parent class=ISymbol>getRotatedPoint</a>, <span class=IParent>mxUtils</span></div></div><div class=SRResult id=SR_getRoutingCenterX><div class=IEntry><a href="../files/view/mxGraphView-php.html#mxGraphView.getRoutingCenterX" target=_parent class=ISymbol>getRoutingCenterX</a>, <span class=IParent>mxGraphView</span></div></div><div class=SRResult id=SR_getRoutingCenterY><div class=IEntry><a href="../files/view/mxGraphView-php.html#mxGraphView.getRoutingCenterY" target=_parent class=ISymbol>getRoutingCenterY</a>, <span class=IParent>mxGraphView</span></div></div><div class=SRResult id=SR_getScaledLabelBounds><div class=IEntry><a href="../files/util/mxUtils-php.html#mxUtils.getScaledLabelBounds" target=_parent class=ISymbol>getScaledLabelBounds</a>, <span class=IParent>mxUtils</span></div></div><div class=SRResult id=SR_getSizeForString><div class=IEntry><a href="../files/util/mxUtils-php.html#mxUtils.getSizeForString" target=_parent class=ISymbol>getSizeForString</a>, <span class=IParent>mxUtils</span></div></div><div class=SRResult id=SR_getState><div class=IEntry><a href="../files/view/mxGraphView-php.html#mxGraphView.getState" target=_parent class=ISymbol>getState</a>, <span class=IParent>mxGraphView</span></div></div><div class=SRResult id=SR_getStates><div class=IEntry><a href="../files/view/mxGraphView-php.html#mxGraphView.getStates" target=_parent class=ISymbol>getStates</a>, <span class=IParent>mxGraphView</span></div></div><div class=SRResult id=SR_getStyle><div class=IEntry><a href="javascript:searchResults.Toggle('SR_getStyle')" class=ISymbol>getStyle</a><div class=ISubIndex><a href="../files/model/mxCell-php.html#mxCell.getStyle" target=_parent class=IParent>mxCell</a><a href="../files/model/mxGraphModel-php.html#mxGraphModel.getStyle" target=_parent class=IParent>mxGraphModel</a></div></div></div><div class=SRResult id=SR_getStylename><div class=IEntry><a href="../files/util/mxUtils-php.html#mxUtils.getStylename" target=_parent class=ISymbol>getStylename</a>, <span class=IParent>mxUtils</span></div></div><div class=SRResult id=SR_getStylenames><div class=IEntry><a href="../files/util/mxUtils-php.html#mxUtils.getStylenames" target=_parent class=ISymbol>getStylenames</a>, <span class=IParent>mxUtils</span></div></div><div class=SRResult id=SR_getStylesheet><div class=IEntry><a href="../files/view/mxGraph-php.html#mxGraph.getStylesheet" target=_parent class=ISymbol>getStylesheet</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_getTerminal><div class=IEntry><a href="javascript:searchResults.Toggle('SR_getTerminal')" class=ISymbol>getTerminal</a><div class=ISubIndex><a href="../files/model/mxCell-php.html#mxCell.getTerminal" target=_parent class=IParent>mxCell</a><a href="../files/model/mxGraphModel-php.html#mxGraphModel.getTerminal" target=_parent class=IParent>mxGraphModel</a></div></div></div><div class=SRResult id=SR_getTerminalPoint><div class=IEntry><a href="../files/model/mxGeometry-php.html#mxGeometry.getTerminalPoint" target=_parent class=ISymbol>getTerminalPoint</a>, <span class=IParent>mxGeometry</span></div></div><div class=SRResult id=SR_getTerminalPort><div class=IEntry><a href="../files/view/mxGraphView-php.html#mxGraphView.getTerminalPort" target=_parent class=ISymbol>getTerminalPort</a>, <span class=IParent>mxGraphView</span></div></div><div class=SRResult id=SR_getTrueTypeFont><div class=IEntry><a href="javascript:searchResults.Toggle('SR_getTrueTypeFont')" class=ISymbol>getTrueTypeFont</a><div class=ISubIndex><a href="../files/canvas/mxGdCanvas-php.html#mxGdCanvas.getTrueTypeFont" target=_parent class=IParent>mxGdCanvas</a><a href="../files/util/mxUtils-php.html#mxUtils.getTrueTypeFont" target=_parent class=IParent>mxUtils</a></div></div></div><div class=SRResult id=SR_getTrueTypeFontSize><div class=IEntry><a href="javascript:searchResults.Toggle('SR_getTrueTypeFontSize')" class=ISymbol>getTrueTypeFontSize</a><div class=ISubIndex><a href="../files/canvas/mxGdCanvas-php.html#mxGdCanvas.getTrueTypeFontSize" target=_parent class=IParent>mxGdCanvas</a><a href="../files/util/mxUtils-php.html#mxUtils.getTrueTypeFontSize" target=_parent class=IParent>mxUtils</a></div></div></div><div class=SRResult id=SR_getValue><div class=IEntry><a href="javascript:searchResults.Toggle('SR_getValue')" class=ISymbol>getValue</a><div class=ISubIndex><a href="../files/model/mxCell-php.html#mxCell.getValue" target=_parent class=IParent>mxCell</a><a href="../files/model/mxGraphModel-php.html#mxGraphModel.getValue" target=_parent class=IParent>mxGraphModel</a><a href="../files/view/mxStyleRegistry-php.html#mxStyleRegistry.getValue" target=_parent class=IParent>mxStyleRegistry</a><a href="../files/util/mxUtils-php.html#mxUtils.getValue" target=_parent class=IParent>mxUtils</a></div></div></div><div class=SRResult id=SR_getView><div class=IEntry><a href="../files/view/mxGraph-php.html#mxGraph.getView" target=_parent class=ISymbol>getView</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_getVisibleTerminal><div class=IEntry><a href="../files/view/mxGraphView-php.html#mxGraphView.getVisibleTerminal" target=_parent class=ISymbol>getVisibleTerminal</a>, <span class=IParent>mxGraphView</span></div></div><div class=SRResult id=SR_graph><div class=IEntry><a href="../files/view/mxGraphView-php.html#mxGraphView.graph" target=_parent class=ISymbol>graph</a>, <span class=IParent>mxGraphView</span></div></div><div class=SRResult id=SR_GRAPH_undMODEL_undCHANGED><div class=IEntry><a href="../files/util/mxEvent-php.html#mxEvent.GRAPH_MODEL_CHANGED" target=_parent class=ISymbol>GRAPH_MODEL_CHANGED</a>, <span class=IParent>mxEvent</span></div></div><div class=SRResult id=SR_graphBounds><div class=IEntry><a href="../files/view/mxGraphView-php.html#mxGraphView.graphBounds" target=_parent class=ISymbol>graphBounds</a>, <span class=IParent>mxGraphView</span></div></div><div class=SRResult id=SR_graphModelChanged><div class=IEntry><a href="../files/view/mxGraph-php.html#mxGraph.graphModelChanged" target=_parent class=ISymbol>graphModelChanged</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_gridSize><div class=IEntry><a href="../files/view/mxGraph-php.html#mxGraph.gridSize" target=_parent class=ISymbol>gridSize</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_grow><div class=IEntry><a href="../files/util/mxRectangle-php.html#mxRectangle.grow" target=_parent class=ISymbol>grow</a>, <span class=IParent>mxRectangle</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
    -document.getElementById("Loading").style.display="none";
    -document.getElementById("NoMatches").style.display="none";
    -var searchResults = new SearchResults("searchResults", "HTML");
    -searchResults.Search();
    ---></script></div><script language=JavaScript><!--
    -if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
    \ No newline at end of file
    diff --git a/docs/php-api/search/GeneralH.html b/docs/php-api/search/GeneralH.html
    deleted file mode 100644
    index bd4898ce9..000000000
    --- a/docs/php-api/search/GeneralH.html
    +++ /dev/null
    @@ -1,20 +0,0 @@
    -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
    -
    -<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script></head><body class="PopupSearchResultsPage" onLoad="NDOnLoad()"><script language=JavaScript><!--
    -if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script>
    -
    -<!--  Generated by Natural Docs, version 1.51 -->
    -<!--  http://www.naturaldocs.org  -->
    -
    -<!-- saved from url=(0026)http://www.naturaldocs.org -->
    -
    -
    -
    -
    -<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_height><div class=IEntry><a href="javascript:searchResults.Toggle('SR_height')" class=ISymbol>height</a><div class=ISubIndex><a href="../files/canvas/mxGdCanvas-php.html#mxGdCanvas.height" target=_parent class=IParent>mxGdCanvas</a><a href="../files/util/mxRectangle-php.html#mxRectangle.height" target=_parent class=IParent>mxRectangle</a></div></div></div><div class=SRResult id=SR_html><div class=IEntry><a href="../files/canvas/mxHtmlCanvas-php.html#mxHtmlCanvas.html" target=_parent class=ISymbol>html</a>, <span class=IParent>mxHtmlCanvas</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
    -document.getElementById("Loading").style.display="none";
    -document.getElementById("NoMatches").style.display="none";
    -var searchResults = new SearchResults("searchResults", "HTML");
    -searchResults.Search();
    ---></script></div><script language=JavaScript><!--
    -if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
    \ No newline at end of file
    diff --git a/docs/php-api/search/GeneralI.html b/docs/php-api/search/GeneralI.html
    deleted file mode 100644
    index fa2068aad..000000000
    --- a/docs/php-api/search/GeneralI.html
    +++ /dev/null
    @@ -1,20 +0,0 @@
    -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
    -
    -<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script></head><body class="PopupSearchResultsPage" onLoad="NDOnLoad()"><script language=JavaScript><!--
    -if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script>
    -
    -<!--  Generated by Natural Docs, version 1.51 -->
    -<!--  http://www.naturaldocs.org  -->
    -
    -<!-- saved from url=(0026)http://www.naturaldocs.org -->
    -
    -
    -
    -
    -<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_id><div class=IEntry><a href="../files/model/mxCell-php.html#mxCell.id" target=_parent class=ISymbol>id</a>, <span class=IParent>mxCell</span></div></div><div class=SRResult id=SR_idrefs><div class=IEntry><a href="../files/io/mxObjectCodec-php.html#mxObjectCodec.idrefs" target=_parent class=ISymbol>idrefs</a>, <span class=IParent>mxObjectCodec</span></div></div><div class=SRResult id=SR_image><div class=IEntry><a href="../files/canvas/mxGdCanvas-php.html#mxGdCanvas.image" target=_parent class=ISymbol>image</a>, <span class=IParent>mxGdCanvas</span></div></div><div class=SRResult id=SR_imageBundles><div class=IEntry><a href="../files/view/mxGraph-php.html#mxGraph.imageBundles" target=_parent class=ISymbol>imageBundles</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_imageCache><div class=IEntry><a href="../files/canvas/mxGdCanvas-php.html#mxGdCanvas.imageCache" target=_parent class=ISymbol>imageCache</a>, <span class=IParent>mxGdCanvas</span></div></div><div class=SRResult id=SR_images><div class=IEntry><a href="../files/util/mxImageBundle-php.html#mxImageBundle.images" target=_parent class=ISymbol>images</a>, <span class=IParent>mxImageBundle</span></div></div><div class=SRResult id=SR_indexOf><div class=IEntry><a href="../files/util/mxUtils-php.html#mxUtils.indexOf" target=_parent class=ISymbol>indexOf</a>, <span class=IParent>mxUtils</span></div></div><div class=SRResult id=SR_indexOfStylename><div class=IEntry><a href="../files/util/mxUtils-php.html#mxUtils.indexOfStylename" target=_parent class=ISymbol>indexOfStylename</a>, <span class=IParent>mxUtils</span></div></div><div class=SRResult id=SR_info><div class=IEntry><a href="../files/util/mxLog-php.html#mxLog.info" target=_parent class=ISymbol>info</a>, <span class=IParent>mxLog</span></div></div><div class=SRResult id=SR_insert><div class=IEntry><a href="../files/model/mxCell-php.html#mxCell.insert" target=_parent class=ISymbol>insert</a>, <span class=IParent>mxCell</span></div></div><div class=SRResult id=SR_insertEdge><div class=IEntry><a href="javascript:searchResults.Toggle('SR_insertEdge')" class=ISymbol>insertEdge</a><div class=ISubIndex><a href="../files/model/mxCell-php.html#mxCell.insertEdge" target=_parent class=IParent>mxCell</a><a href="../files/view/mxGraph-php.html#mxGraph.insertEdge" target=_parent class=IParent>mxGraph</a></div></div></div><div class=SRResult id=SR_insertIntoGraph><div class=IEntry><a href="../files/io/mxCodec-php.html#mxCodec.insertIntoGraph" target=_parent class=ISymbol>insertIntoGraph</a>, <span class=IParent>mxCodec</span></div></div><div class=SRResult id=SR_insertVertex><div class=IEntry><a href="../files/view/mxGraph-php.html#mxGraph.insertVertex" target=_parent class=ISymbol>insertVertex</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_intersection><div class=IEntry><a href="../files/util/mxUtils-php.html#mxUtils.intersection" target=_parent class=ISymbol>intersection</a>, <span class=IParent>mxUtils</span></div></div><div class=SRResult id=SR_invalid><div class=IEntry><a href="../files/view/mxCellState-php.html#mxCellState.invalid" target=_parent class=ISymbol>invalid</a>, <span class=IParent>mxCellState</span></div></div><div class=SRResult id=SR_invalidate><div class=IEntry><a href="../files/view/mxGraphView-php.html#mxGraphView.invalidate" target=_parent class=ISymbol>invalidate</a>, <span class=IParent>mxGraphView</span></div></div><div class=SRResult id=SR_isAncestor><div class=IEntry><a href="../files/model/mxGraphModel-php.html#mxGraphModel.isAncestor" target=_parent class=ISymbol>isAncestor</a>, <span class=IParent>mxGraphModel</span></div></div><div class=SRResult id=SR_isCellCollapsed><div class=IEntry><a href="../files/view/mxGraph-php.html#mxGraph.isCellCollapsed" target=_parent class=ISymbol>isCellCollapsed</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_isCellVisible><div class=IEntry><a href="../files/view/mxGraph-php.html#mxGraph.isCellVisible" target=_parent class=ISymbol>isCellVisible</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_isCollapsed><div class=IEntry><a href="javascript:searchResults.Toggle('SR_isCollapsed')" class=ISymbol>isCollapsed</a><div class=ISubIndex><a href="../files/model/mxCell-php.html#mxCell.isCollapsed" target=_parent class=IParent>mxCell</a><a href="../files/model/mxGraphModel-php.html#mxGraphModel.isCollapsed" target=_parent class=IParent>mxGraphModel</a></div></div></div><div class=SRResult id=SR_isConnectable><div class=IEntry><a href="javascript:searchResults.Toggle('SR_isConnectable')" class=ISymbol>isConnectable</a><div class=ISubIndex><a href="../files/model/mxCell-php.html#mxCell.isConnectable" target=_parent class=IParent>mxCell</a><a href="../files/model/mxGraphModel-php.html#mxGraphModel.isConnectable" target=_parent class=IParent>mxGraphModel</a></div></div></div><div class=SRResult id=SR_isConsumed><div class=IEntry><a href="../files/util/mxEventObject-php.html#mxEventObject.isConsumed" target=_parent class=ISymbol>isConsumed</a>, <span class=IParent>mxEventObject</span></div></div><div class=SRResult id=SR_isEdge><div class=IEntry><a href="javascript:searchResults.Toggle('SR_isEdge')" class=ISymbol>isEdge</a><div class=ISubIndex><a href="../files/model/mxCell-php.html#mxCell.isEdge" target=_parent class=IParent>mxCell</a><a href="../files/model/mxGraphModel-php.html#mxGraphModel.isEdge" target=_parent class=IParent>mxGraphModel</a></div></div></div><div class=SRResult id=SR_isExcluded><div class=IEntry><a href="../files/io/mxObjectCodec-php.html#mxObjectCodec.isExcluded" target=_parent class=ISymbol>isExcluded</a>, <span class=IParent>mxObjectCodec</span></div></div><div class=SRResult id=SR_isNode><div class=IEntry><a href="../files/util/mxUtils-php.html#mxUtils.isNode" target=_parent class=ISymbol>isNode</a>, <span class=IParent>mxUtils</span></div></div><div class=SRResult id=SR_isOrthogonal><div class=IEntry><a href="../files/view/mxGraph-php.html#mxGraph.isOrthogonal" target=_parent class=ISymbol>isOrthogonal</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_isReference><div class=IEntry><a href="../files/io/mxObjectCodec-php.html#mxObjectCodec.isReference" target=_parent class=ISymbol>isReference</a>, <span class=IParent>mxObjectCodec</span></div></div><div class=SRResult id=SR_isVertex><div class=IEntry><a href="javascript:searchResults.Toggle('SR_isVertex')" class=ISymbol>isVertex</a><div class=ISubIndex><a href="../files/model/mxCell-php.html#mxCell.isVertex" target=_parent class=IParent>mxCell</a><a href="../files/model/mxGraphModel-php.html#mxGraphModel.isVertex" target=_parent class=IParent>mxGraphModel</a></div></div></div><div class=SRResult id=SR_isVisible><div class=IEntry><a href="javascript:searchResults.Toggle('SR_isVisible')" class=ISymbol>isVisible</a><div class=ISubIndex><a href="../files/model/mxCell-php.html#mxCell.isVisible" target=_parent class=IParent>mxCell</a><a href="../files/model/mxGraphModel-php.html#mxGraphModel.isVisible" target=_parent class=IParent>mxGraphModel</a></div></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
    -document.getElementById("Loading").style.display="none";
    -document.getElementById("NoMatches").style.display="none";
    -var searchResults = new SearchResults("searchResults", "HTML");
    -searchResults.Search();
    ---></script></div><script language=JavaScript><!--
    -if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
    \ No newline at end of file
    diff --git a/docs/php-api/search/GeneralL.html b/docs/php-api/search/GeneralL.html
    deleted file mode 100644
    index 58a049a54..000000000
    --- a/docs/php-api/search/GeneralL.html
    +++ /dev/null
    @@ -1,20 +0,0 @@
    -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
    -
    -<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script></head><body class="PopupSearchResultsPage" onLoad="NDOnLoad()"><script language=JavaScript><!--
    -if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script>
    -
    -<!--  Generated by Natural Docs, version 1.51 -->
    -<!--  http://www.naturaldocs.org  -->
    -
    -<!-- saved from url=(0026)http://www.naturaldocs.org -->
    -
    -
    -
    -
    -<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_LABEL_undINSET><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.LABEL_INSET" target=_parent class=ISymbol>LABEL_INSET</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_labelBounds><div class=IEntry><a href="../files/view/mxCellState-php.html#mxCellState.labelBounds" target=_parent class=ISymbol>labelBounds</a>, <span class=IParent>mxCellState</span></div></div><div class=SRResult id=SR_labelsVisible><div class=IEntry><a href="../files/view/mxGraph-php.html#mxGraph.labelsVisible" target=_parent class=ISymbol>labelsVisible</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_leave><div class=IEntry><a href="../files/util/mxLog-php.html#mxLog.leave" target=_parent class=ISymbol>leave</a>, <span class=IParent>mxLog</span></div></div><div class=SRResult id=SR_length><div class=IEntry><a href="../files/view/mxCellState-php.html#mxCellState.length" target=_parent class=ISymbol>length</a>, <span class=IParent>mxCellState</span></div></div><div class=SRResult id=SR_level_unddebug><div class=IEntry><a href="../files/util/mxLog-php.html#mxLog.level_debug" target=_parent class=ISymbol>level_debug</a>, <span class=IParent>mxLog</span></div></div><div class=SRResult id=SR_level_underror><div class=IEntry><a href="../files/util/mxLog-php.html#mxLog.level_error" target=_parent class=ISymbol>level_error</a>, <span class=IParent>mxLog</span></div></div><div class=SRResult id=SR_level_undfine><div class=IEntry><a href="../files/util/mxLog-php.html#mxLog.level_fine" target=_parent class=ISymbol>level_fine</a>, <span class=IParent>mxLog</span></div></div><div class=SRResult id=SR_level_undinfo><div class=IEntry><a href="../files/util/mxLog-php.html#mxLog.level_info" target=_parent class=ISymbol>level_info</a>, <span class=IParent>mxLog</span></div></div><div class=SRResult id=SR_level_undwarn><div class=IEntry><a href="../files/util/mxLog-php.html#mxLog.level_warn" target=_parent class=ISymbol>level_warn</a>, <span class=IParent>mxLog</span></div></div><div class=SRResult id=SR_loadImage><div class=IEntry><a href="javascript:searchResults.Toggle('SR_loadImage')" class=ISymbol>loadImage</a><div class=ISubIndex><a href="../files/canvas/mxGdCanvas-php.html#mxGdCanvas.loadImage" target=_parent class=IParent>mxGdCanvas</a><a href="../files/util/mxUtils-php.html#mxUtils.loadImage" target=_parent class=IParent>mxUtils</a></div></div></div><div class=SRResult id=SR_loadXmlDocument><div class=IEntry><a href="../files/util/mxUtils-php.html#mxUtils.loadXmlDocument" target=_parent class=ISymbol>loadXmlDocument</a>, <span class=IParent>mxUtils</span></div></div><div class=SRResult id=SR_logfiles><div class=IEntry><a href="../files/util/mxLog-php.html#mxLog.logfiles" target=_parent class=ISymbol>logfiles</a>, <span class=IParent>mxLog</span></div></div><div class=SRResult id=SR_lookup><div class=IEntry><a href="../files/io/mxCodec-php.html#mxCodec.lookup" target=_parent class=ISymbol>lookup</a>, <span class=IParent>mxCodec</span></div></div><div class=SRResult id=SR_Loop><div class=IEntry><a href="../files/view/mxEdgeStyle-php.html#mxEdgeStyle.Loop" target=_parent class=ISymbol>Loop</a>, <span class=IParent>mxEdgeStyle</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
    -document.getElementById("Loading").style.display="none";
    -document.getElementById("NoMatches").style.display="none";
    -var searchResults = new SearchResults("searchResults", "HTML");
    -searchResults.Search();
    ---></script></div><script language=JavaScript><!--
    -if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
    \ No newline at end of file
    diff --git a/docs/php-api/search/GeneralM.html b/docs/php-api/search/GeneralM.html
    deleted file mode 100644
    index 665f837d5..000000000
    --- a/docs/php-api/search/GeneralM.html
    +++ /dev/null
    @@ -1,20 +0,0 @@
    -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
    -
    -<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script></head><body class="PopupSearchResultsPage" onLoad="NDOnLoad()"><script language=JavaScript><!--
    -if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script>
    -
    -<!--  Generated by Natural Docs, version 1.51 -->
    -<!--  http://www.naturaldocs.org  -->
    -
    -<!-- saved from url=(0026)http://www.naturaldocs.org -->
    -
    -
    -
    -
    -<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_maintainEdgeParent><div class=IEntry><a href="../files/model/mxGraphModel-php.html#mxGraphModel.maintainEdgeParent" target=_parent class=ISymbol>maintainEdgeParent</a>, <span class=IParent>mxGraphModel</span></div></div><div class=SRResult id=SR_mapping><div class=IEntry><a href="../files/io/mxObjectCodec-php.html#mxObjectCodec.mapping" target=_parent class=ISymbol>mapping</a>, <span class=IParent>mxObjectCodec</span></div></div><div class=SRResult id=SR_mergeChildren><div class=IEntry><a href="../files/model/mxGraphModel-php.html#mxGraphModel.mergeChildren" target=_parent class=ISymbol>mergeChildren</a>, <span class=IParent>mxGraphModel</span></div></div><div class=SRResult id=SR_mergeChildrenImpl><div class=IEntry><a href="../files/model/mxGraphModel-php.html#mxGraphModel.mergeChildrenImpl" target=_parent class=ISymbol>mergeChildrenImpl</a>, <span class=IParent>mxGraphModel</span></div></div><div class=SRResult id=SR_MIN_undACTIVE_undREGION><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.MIN_ACTIVE_REGION" target=_parent class=ISymbol>MIN_ACTIVE_REGION</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_model><div class=IEntry><a href="../files/view/mxGraph-php.html#mxGraph.model" target=_parent class=ISymbol>model</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_mxCell><div class=IEntry><a href="javascript:searchResults.Toggle('SR_mxCell')" class=ISymbol>mxCell</a><div class=ISubIndex><a href="../files/model/mxCell-php.html#mxCell" target=_parent class=IParent>Global</a><a href="../files/model/mxCell-php.html#mxCell.mxCell" target=_parent class=IParent>mxCell</a></div></div></div><div class=SRResult id=SR_mxCellCodec><div class=IEntry><a href="../files/io/mxCellCodec-php.html#mxCellCodec" target=_parent class=ISymbol>mxCellCodec</a></div></div><div class=SRResult id=SR_mxCellPath><div class=IEntry><a href="../files/model/mxCellPath-php.html#mxCellPath" target=_parent class=ISymbol>mxCellPath</a></div></div><div class=SRResult id=SR_mxCellState><div class=IEntry><a href="javascript:searchResults.Toggle('SR_mxCellState')" class=ISymbol>mxCellState</a><div class=ISubIndex><a href="../files/view/mxCellState-php.html#mxCellState" target=_parent class=IParent>Global</a><a href="../files/view/mxCellState-php.html#mxCellState.mxCellState" target=_parent class=IParent>mxCellState</a></div></div></div><div class=SRResult id=SR_mxCodec><div class=IEntry><a href="../files/io/mxCodec-php.html#mxCodec" target=_parent class=ISymbol>mxCodec</a></div></div><div class=SRResult id=SR_mxCodecRegistry><div class=IEntry><a href="../files/io/mxCodecRegistry-php.html#mxCodecRegistry" target=_parent class=ISymbol>mxCodecRegistry</a></div></div><div class=SRResult id=SR_mxConnectionConstraint><div class=IEntry><a href="javascript:searchResults.Toggle('SR_mxConnectionConstraint')" class=ISymbol>mxConnectionConstraint</a><div class=ISubIndex><a href="../files/view/mxConnectionConstraint-php.html#mxConnectionConstraint" target=_parent class=IParent>Global</a><a href="../files/view/mxConnectionConstraint-php.html#mxConnectionConstraint.mxConnectionConstraint" target=_parent class=IParent>mxConnectionConstraint</a></div></div></div><div class=SRResult id=SR_mxConstants><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants" target=_parent class=ISymbol>mxConstants</a></div></div><div class=SRResult id=SR_mxEdgeStyle><div class=IEntry><a href="../files/view/mxEdgeStyle-php.html#mxEdgeStyle" target=_parent class=ISymbol>mxEdgeStyle</a></div></div><div class=SRResult id=SR_mxEdgeStyleFunction><div class=IEntry><a href="../files/view/mxEdgeStyle-php.html#mxEdgeStyleFunction" target=_parent class=ISymbol>mxEdgeStyleFunction</a></div></div><div class=SRResult id=SR_mxElbowConnector><div class=IEntry><a href="../files/view/mxEdgeStyle-php.html#mxElbowConnector" target=_parent class=ISymbol>mxElbowConnector</a></div></div><div class=SRResult id=SR_mxEllipsePerimeter><div class=IEntry><a href="../files/view/mxPerimeter-php.html#mxEllipsePerimeter" target=_parent class=ISymbol>mxEllipsePerimeter</a></div></div><div class=SRResult id=SR_mxEntityRelation><div class=IEntry><a href="../files/view/mxEdgeStyle-php.html#mxEntityRelation" target=_parent class=ISymbol>mxEntityRelation</a></div></div><div class=SRResult id=SR_mxEvent><div class=IEntry><a href="../files/util/mxEvent-php.html#mxEvent" target=_parent class=ISymbol>mxEvent</a></div></div><div class=SRResult id=SR_mxEventObject><div class=IEntry><a href="javascript:searchResults.Toggle('SR_mxEventObject')" class=ISymbol>mxEventObject</a><div class=ISubIndex><a href="../files/util/mxEventObject-php.html#mxEventObject" target=_parent class=IParent>Global</a><a href="../files/util/mxEventObject-php.html#mxEventObject.mxEventObject" target=_parent class=IParent>mxEventObject</a></div></div></div><div class=SRResult id=SR_mxEventSource><div class=IEntry><a href="../files/util/mxEventSource-php.html#mxEventSource" target=_parent class=ISymbol>mxEventSource</a></div></div><div class=SRResult id=SR_mxGdCanvas><div class=IEntry><a href="javascript:searchResults.Toggle('SR_mxGdCanvas')" class=ISymbol>mxGdCanvas</a><div class=ISubIndex><a href="../files/canvas/mxGdCanvas-php.html#mxGdCanvas" target=_parent class=IParent>Global</a><a href="../files/canvas/mxGdCanvas-php.html#mxGdCanvas.mxGdCanvas" target=_parent class=IParent>mxGdCanvas</a><a href="../files/canvas/mxHtmlCanvas-php.html#mxHtmlCanvas.mxGdCanvas" target=_parent class=IParent>mxHtmlCanvas</a></div></div></div><div class=SRResult id=SR_mxGdCanvas_perphp><div class=IEntry><a href="../files/canvas/mxGdCanvas-php.html#mxGdCanvas.php" target=_parent class=ISymbol>mxGdCanvas.php</a></div></div><div class=SRResult id=SR_mxGeometry><div class=IEntry><a href="javascript:searchResults.Toggle('SR_mxGeometry')" class=ISymbol>mxGeometry</a><div class=ISubIndex><a href="../files/model/mxGeometry-php.html#mxGeometry" target=_parent class=IParent>Global</a><a href="../files/model/mxGeometry-php.html#mxGeometry.mxGeometry" target=_parent class=IParent>mxGeometry</a></div></div></div><div class=SRResult id=SR_mxGraph><div class=IEntry><a href="../files/view/mxGraph-php.html#mxGraph" target=_parent class=ISymbol>mxGraph</a></div></div><div class=SRResult id=SR_mxGraphModel><div class=IEntry><a href="javascript:searchResults.Toggle('SR_mxGraphModel')" class=ISymbol>mxGraphModel</a><div class=ISubIndex><a href="../files/model/mxGraphModel-php.html#mxGraphModel" target=_parent class=IParent>Global</a><a href="../files/view/mxGraph-php.html#mxGraph.mxGraphModel" target=_parent class=IParent>mxGraph</a><a href="../files/model/mxGraphModel-php.html#mxGraphModel.mxGraphModel" target=_parent class=IParent>mxGraphModel</a></div></div></div><div class=SRResult id=SR_mxGraphView><div class=IEntry><a href="javascript:searchResults.Toggle('SR_mxGraphView')" class=ISymbol>mxGraphView</a><div class=ISubIndex><a href="../files/view/mxGraphView-php.html#mxGraphView" target=_parent class=IParent>Global</a><a href="../files/view/mxGraphView-php.html#mxGraphView.mxGraphView" target=_parent class=IParent>mxGraphView</a></div></div></div><div class=SRResult id=SR_mxGraphViewHtmlReader><div class=IEntry><a href="javascript:searchResults.Toggle('SR_mxGraphViewHtmlReader')" class=ISymbol>mxGraphViewHtmlReader</a><div class=ISubIndex><a href="../files/reader/mxGraphViewHtmlReader-php.html#mxGraphViewHtmlReader" target=_parent class=IParent>Global</a><a href="../files/io/mxCodec-php.html#mxCodec.mxGraphViewHtmlReader" target=_parent class=IParent>mxCodec</a><a href="../files/reader/mxGraphViewHtmlReader-php.html#mxGraphViewHtmlReader.mxGraphViewHtmlReader" target=_parent class=IParent>mxGraphViewHtmlReader</a></div></div></div><div class=SRResult id=SR_mxGraphViewImageReader><div class=IEntry><a href="javascript:searchResults.Toggle('SR_mxGraphViewImageReader')" class=ISymbol>mxGraphViewImageReader</a><div class=ISubIndex><a href="../files/reader/mxGraphViewImageReader-php.html#mxGraphViewImageReader" target=_parent class=IParent>Global</a><a href="../files/reader/mxGraphViewImageReader-php.html#mxGraphViewImageReader.mxGraphViewImageReader" target=_parent class=IParent>mxGraphViewImageReader</a></div></div></div><div class=SRResult id=SR_mxHtmlCanvas><div class=IEntry><a href="../files/canvas/mxHtmlCanvas-php.html#mxHtmlCanvas" target=_parent class=ISymbol>mxHtmlCanvas</a></div></div><div class=SRResult id=SR_mxImageBundle><div class=IEntry><a href="javascript:searchResults.Toggle('SR_mxImageBundle')" class=ISymbol>mxImageBundle</a><div class=ISubIndex><a href="../files/util/mxImageBundle-php.html#mxImageBundle" target=_parent class=IParent>Global</a><a href="../files/util/mxImageBundle-php.html#mxImageBundle.mxImageBundle" target=_parent class=IParent>mxImageBundle</a></div></div></div><div class=SRResult id=SR_mxLog><div class=IEntry><a href="../files/util/mxLog-php.html#mxLog" target=_parent class=ISymbol>mxLog</a></div></div><div class=SRResult id=SR_mxLoop><div class=IEntry><a href="../files/view/mxEdgeStyle-php.html#mxLoop" target=_parent class=ISymbol>mxLoop</a></div></div><div class=SRResult id=SR_mxModelCodec><div class=IEntry><a href="../files/io/mxModelCodec-php.html#mxModelCodec" target=_parent class=ISymbol>mxModelCodec</a></div></div><div class=SRResult id=SR_mxObjectCodec><div class=IEntry><a href="javascript:searchResults.Toggle('SR_mxObjectCodec')" class=ISymbol>mxObjectCodec</a><div class=ISubIndex><a href="../files/io/mxObjectCodec-php.html#mxObjectCodec" target=_parent class=IParent>Global</a><a href="../files/io/mxCellCodec-php.html#mxCellCodec.mxObjectCodec" target=_parent class=IParent>mxCellCodec</a><a href="../files/io/mxModelCodec-php.html#mxModelCodec.mxObjectCodec" target=_parent class=IParent>mxModelCodec</a><a href="../files/io/mxObjectCodec-php.html#mxObjectCodec.mxObjectCodec" target=_parent class=IParent>mxObjectCodec</a><a href="../files/io/mxStylesheetCodec-php.html#mxStylesheetCodec.mxObjectCodec" target=_parent class=IParent>mxStylesheetCodec</a></div></div></div><div class=SRResult id=SR_mxPerimeter><div class=IEntry><a href="../files/view/mxPerimeter-php.html#mxPerimeter" target=_parent class=ISymbol>mxPerimeter</a></div></div><div class=SRResult id=SR_mxPerimeterFunction><div class=IEntry><a href="../files/view/mxPerimeter-php.html#mxPerimeterFunction" target=_parent class=ISymbol>mxPerimeterFunction</a></div></div><div class=SRResult id=SR_mxPoint><div class=IEntry><a href="javascript:searchResults.Toggle('SR_mxPoint')" class=ISymbol>mxPoint</a><div class=ISubIndex><a href="../files/util/mxPoint-php.html#mxPoint" target=_parent class=IParent>Global</a><a href="../files/util/mxPoint-php.html#mxPoint.mxPoint" target=_parent class=IParent>mxPoint</a></div></div></div><div class=SRResult id=SR_mxRectangle><div class=IEntry><a href="javascript:searchResults.Toggle('SR_mxRectangle')" class=ISymbol>mxRectangle</a><div class=ISubIndex><a href="../files/util/mxRectangle-php.html#mxRectangle" target=_parent class=IParent>Global</a><a href="../files/util/mxRectangle-php.html#mxRectangle.mxRectangle" target=_parent class=IParent>mxRectangle</a></div></div></div><div class=SRResult id=SR_mxRectanglePerimeter><div class=IEntry><a href="../files/view/mxPerimeter-php.html#mxRectanglePerimeter" target=_parent class=ISymbol>mxRectanglePerimeter</a></div></div><div class=SRResult id=SR_mxRhombusPerimeter><div class=IEntry><a href="../files/view/mxPerimeter-php.html#mxRhombusPerimeter" target=_parent class=ISymbol>mxRhombusPerimeter</a></div></div><div class=SRResult id=SR_mxSideToSide><div class=IEntry><a href="../files/view/mxEdgeStyle-php.html#mxSideToSide" target=_parent class=ISymbol>mxSideToSide</a></div></div><div class=SRResult id=SR_mxStyleRegistry><div class=IEntry><a href="../files/view/mxStyleRegistry-php.html#mxStyleRegistry" target=_parent class=ISymbol>mxStyleRegistry</a></div></div><div class=SRResult id=SR_mxStylesheet><div class=IEntry><a href="javascript:searchResults.Toggle('SR_mxStylesheet')" class=ISymbol>mxStylesheet</a><div class=ISubIndex><a href="../files/view/mxStylesheet-php.html#mxStylesheet" target=_parent class=IParent>Global</a><a href="../files/view/mxStylesheet-php.html#mxStylesheet.mxStylesheet" target=_parent class=IParent>mxStylesheet</a></div></div></div><div class=SRResult id=SR_mxStylesheetCodec><div class=IEntry><a href="../files/io/mxStylesheetCodec-php.html#mxStylesheetCodec" target=_parent class=ISymbol>mxStylesheetCodec</a></div></div><div class=SRResult id=SR_mxTopToBottom><div class=IEntry><a href="../files/view/mxEdgeStyle-php.html#mxTopToBottom" target=_parent class=ISymbol>mxTopToBottom</a></div></div><div class=SRResult id=SR_mxTrianglePerimeter><div class=IEntry><a href="../files/view/mxPerimeter-php.html#mxTrianglePerimeter" target=_parent class=ISymbol>mxTrianglePerimeter</a></div></div><div class=SRResult id=SR_mxUtils><div class=IEntry><a href="../files/util/mxUtils-php.html#mxUtils" target=_parent class=ISymbol>mxUtils</a></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
    -document.getElementById("Loading").style.display="none";
    -document.getElementById("NoMatches").style.display="none";
    -var searchResults = new SearchResults("searchResults", "HTML");
    -searchResults.Search();
    ---></script></div><script language=JavaScript><!--
    -if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
    \ No newline at end of file
    diff --git a/docs/php-api/search/GeneralN.html b/docs/php-api/search/GeneralN.html
    deleted file mode 100644
    index f93d3467e..000000000
    --- a/docs/php-api/search/GeneralN.html
    +++ /dev/null
    @@ -1,20 +0,0 @@
    -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
    -
    -<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script></head><body class="PopupSearchResultsPage" onLoad="NDOnLoad()"><script language=JavaScript><!--
    -if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script>
    -
    -<!--  Generated by Natural Docs, version 1.51 -->
    -<!--  http://www.naturaldocs.org  -->
    -
    -<!-- saved from url=(0026)http://www.naturaldocs.org -->
    -
    -
    -
    -
    -<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_name><div class=IEntry><a href="../files/util/mxEventObject-php.html#mxEventObject.name" target=_parent class=ISymbol>name</a>, <span class=IParent>mxEventObject</span></div></div><div class=SRResult id=SR_nextId><div class=IEntry><a href="../files/model/mxGraphModel-php.html#mxGraphModel.nextId" target=_parent class=ISymbol>nextId</a>, <span class=IParent>mxGraphModel</span></div></div><div class=SRResult id=SR_NONE><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.NONE" target=_parent class=ISymbol>NONE</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_NS_undSVG><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.NS_SVG" target=_parent class=ISymbol>NS_SVG</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_NS_undXHTML><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.NS_XHTML" target=_parent class=ISymbol>NS_XHTML</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_NS_undXLINK><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.NS_XLINK" target=_parent class=ISymbol>NS_XLINK</a>, <span class=IParent>mxConstants</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
    -document.getElementById("Loading").style.display="none";
    -document.getElementById("NoMatches").style.display="none";
    -var searchResults = new SearchResults("searchResults", "HTML");
    -searchResults.Search();
    ---></script></div><script language=JavaScript><!--
    -if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
    \ No newline at end of file
    diff --git a/docs/php-api/search/GeneralO.html b/docs/php-api/search/GeneralO.html
    deleted file mode 100644
    index d8917aef4..000000000
    --- a/docs/php-api/search/GeneralO.html
    +++ /dev/null
    @@ -1,20 +0,0 @@
    -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
    -
    -<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script></head><body class="PopupSearchResultsPage" onLoad="NDOnLoad()"><script language=JavaScript><!--
    -if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script>
    -
    -<!--  Generated by Natural Docs, version 1.51 -->
    -<!--  http://www.naturaldocs.org  -->
    -
    -<!-- saved from url=(0026)http://www.naturaldocs.org -->
    -
    -
    -
    -
    -<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_objects><div class=IEntry><a href="../files/io/mxCodec-php.html#mxCodec.objects" target=_parent class=ISymbol>objects</a>, <span class=IParent>mxCodec</span></div></div><div class=SRResult id=SR_offset><div class=IEntry><a href="javascript:searchResults.Toggle('SR_offset')" class=ISymbol>offset</a><div class=ISubIndex><a href="../files/canvas/mxGdCanvas-php.html#mxGdCanvas.offset" target=_parent class=IParent>mxGdCanvas</a><a href="../files/model/mxGeometry-php.html#mxGeometry.offset" target=_parent class=IParent>mxGeometry</a></div></div></div><div class=SRResult id=SR_origin><div class=IEntry><a href="../files/view/mxCellState-php.html#mxCellState.origin" target=_parent class=ISymbol>origin</a>, <span class=IParent>mxCellState</span></div></div><div class=SRResult id=SR_out><div class=IEntry><a href="../files/canvas/mxHtmlCanvas-php.html#mxHtmlCanvas.out" target=_parent class=ISymbol>out</a>, <span class=IParent>mxHtmlCanvas</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
    -document.getElementById("Loading").style.display="none";
    -document.getElementById("NoMatches").style.display="none";
    -var searchResults = new SearchResults("searchResults", "HTML");
    -searchResults.Search();
    ---></script></div><script language=JavaScript><!--
    -if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
    \ No newline at end of file
    diff --git a/docs/php-api/search/GeneralP.html b/docs/php-api/search/GeneralP.html
    deleted file mode 100644
    index cb0b03ea1..000000000
    --- a/docs/php-api/search/GeneralP.html
    +++ /dev/null
    @@ -1,20 +0,0 @@
    -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
    -
    -<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script></head><body class="PopupSearchResultsPage" onLoad="NDOnLoad()"><script language=JavaScript><!--
    -if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script>
    -
    -<!--  Generated by Natural Docs, version 1.51 -->
    -<!--  http://www.naturaldocs.org  -->
    -
    -<!-- saved from url=(0026)http://www.naturaldocs.org -->
    -
    -
    -
    -
    -<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_paintCell><div class=IEntry><a href="../files/view/mxGraph-php.html#mxGraph.paintCell" target=_parent class=ISymbol>paintCell</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_paintState><div class=IEntry><a href="../files/view/mxGraph-php.html#mxGraph.paintState" target=_parent class=ISymbol>paintState</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_parent><div class=IEntry><a href="../files/model/mxCell-php.html#mxCell.parent" target=_parent class=ISymbol>parent</a>, <span class=IParent>mxCell</span></div></div><div class=SRResult id=SR_parsePoints><div class=IEntry><a href="../files/reader/mxGraphViewImageReader-php.html#mxGraphViewImageReader.parsePoints" target=_parent class=ISymbol>parsePoints</a>, <span class=IParent>mxGraphViewImageReader</span></div></div><div class=SRResult id=SR_parser><div class=IEntry><a href="../files/reader/mxGraphViewImageReader-php.html#mxGraphViewImageReader.parser" target=_parent class=ISymbol>parser</a>, <span class=IParent>mxGraphViewImageReader</span></div></div><div class=SRResult id=SR_parseState><div class=IEntry><a href="../files/reader/mxGraphViewImageReader-php.html#mxGraphViewImageReader.parseState" target=_parent class=ISymbol>parseState</a>, <span class=IParent>mxGraphViewImageReader</span></div></div><div class=SRResult id=SR_parseXml><div class=IEntry><a href="../files/util/mxUtils-php.html#mxUtils.parseXml" target=_parent class=ISymbol>parseXml</a>, <span class=IParent>mxUtils</span></div></div><div class=SRResult id=SR_perimeter><div class=IEntry><a href="../files/view/mxConnectionConstraint-php.html#mxConnectionConstraint.perimeter" target=_parent class=ISymbol>perimeter</a>, <span class=IParent>mxConnectionConstraint</span></div></div><div class=SRResult id=SR_PERIMETER_undELLIPSE><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.PERIMETER_ELLIPSE" target=_parent class=ISymbol>PERIMETER_ELLIPSE</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_PERIMETER_undRECTANGLE><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.PERIMETER_RECTANGLE" target=_parent class=ISymbol>PERIMETER_RECTANGLE</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_PERIMETER_undRHOMBUS><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.PERIMETER_RHOMBUS" target=_parent class=ISymbol>PERIMETER_RHOMBUS</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_PERIMETER_undTRIANGLE><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.PERIMETER_TRIANGLE" target=_parent class=ISymbol>PERIMETER_TRIANGLE</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_point><div class=IEntry><a href="../files/view/mxConnectionConstraint-php.html#mxConnectionConstraint.point" target=_parent class=ISymbol>point</a>, <span class=IParent>mxConnectionConstraint</span></div></div><div class=SRResult id=SR_points><div class=IEntry><a href="../files/model/mxGeometry-php.html#mxGeometry.points" target=_parent class=ISymbol>points</a>, <span class=IParent>mxGeometry</span></div></div><div class=SRResult id=SR_postProcessCellStyle><div class=IEntry><a href="../files/view/mxGraph-php.html#mxGraph.postProcessCellStyle" target=_parent class=ISymbol>postProcessCellStyle</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_printLog><div class=IEntry><a href="../files/util/mxLog-php.html#mxLog.printLog" target=_parent class=ISymbol>printLog</a>, <span class=IParent>mxLog</span></div></div><div class=SRResult id=SR_processInclude><div class=IEntry><a href="../files/io/mxObjectCodec-php.html#mxObjectCodec.processInclude" target=_parent class=ISymbol>processInclude</a>, <span class=IParent>mxObjectCodec</span></div></div><div class=SRResult id=SR_properties><div class=IEntry><a href="../files/util/mxEventObject-php.html#mxEventObject.properties" target=_parent class=ISymbol>properties</a>, <span class=IParent>mxEventObject</span></div></div><div class=SRResult id=SR_putCellStyle><div class=IEntry><a href="../files/view/mxStylesheet-php.html#mxStylesheet.putCellStyle" target=_parent class=ISymbol>putCellStyle</a>, <span class=IParent>mxStylesheet</span></div></div><div class=SRResult id=SR_putDefaultEdgeStyle><div class=IEntry><a href="../files/view/mxStylesheet-php.html#mxStylesheet.putDefaultEdgeStyle" target=_parent class=ISymbol>putDefaultEdgeStyle</a>, <span class=IParent>mxStylesheet</span></div></div><div class=SRResult id=SR_putDefaultVertexStyle><div class=IEntry><a href="../files/view/mxStylesheet-php.html#mxStylesheet.putDefaultVertexStyle" target=_parent class=ISymbol>putDefaultVertexStyle</a>, <span class=IParent>mxStylesheet</span></div></div><div class=SRResult id=SR_putImage><div class=IEntry><a href="../files/util/mxImageBundle-php.html#mxImageBundle.putImage" target=_parent class=ISymbol>putImage</a>, <span class=IParent>mxImageBundle</span></div></div><div class=SRResult id=SR_putObject><div class=IEntry><a href="../files/io/mxCodec-php.html#mxCodec.putObject" target=_parent class=ISymbol>putObject</a>, <span class=IParent>mxCodec</span></div></div><div class=SRResult id=SR_putValue><div class=IEntry><a href="../files/view/mxStyleRegistry-php.html#mxStyleRegistry.putValue" target=_parent class=ISymbol>putValue</a>, <span class=IParent>mxStyleRegistry</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
    -document.getElementById("Loading").style.display="none";
    -document.getElementById("NoMatches").style.display="none";
    -var searchResults = new SearchResults("searchResults", "HTML");
    -searchResults.Search();
    ---></script></div><script language=JavaScript><!--
    -if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
    \ No newline at end of file
    diff --git a/docs/php-api/search/GeneralR.html b/docs/php-api/search/GeneralR.html
    deleted file mode 100644
    index 5961aee4b..000000000
    --- a/docs/php-api/search/GeneralR.html
    +++ /dev/null
    @@ -1,20 +0,0 @@
    -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
    -
    -<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script></head><body class="PopupSearchResultsPage" onLoad="NDOnLoad()"><script language=JavaScript><!--
    -if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script>
    -
    -<!--  Generated by Natural Docs, version 1.51 -->
    -<!--  http://www.naturaldocs.org  -->
    -
    -<!-- saved from url=(0026)http://www.naturaldocs.org -->
    -
    -
    -
    -
    -<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_RAD_undPER_undDEG><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.RAD_PER_DEG" target=_parent class=ISymbol>RAD_PER_DEG</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_read><div class=IEntry><a href="../files/reader/mxGraphViewImageReader-php.html#mxGraphViewImageReader.read" target=_parent class=ISymbol>read</a>, <span class=IParent>mxGraphViewImageReader</span></div></div><div class=SRResult id=SR_readFile><div class=IEntry><a href="javascript:searchResults.Toggle('SR_readFile')" class=ISymbol>readFile</a><div class=ISubIndex><a href="../files/reader/mxGraphViewImageReader-php.html#mxGraphViewImageReader.readFile" target=_parent class=IParent>mxGraphViewImageReader</a><a href="../files/util/mxUtils-php.html#mxUtils.readFile" target=_parent class=IParent>mxUtils</a></div></div></div><div class=SRResult id=SR_RectanglePerimeter><div class=IEntry><a href="../files/view/mxPerimeter-php.html#mxPerimeter.RectanglePerimeter" target=_parent class=ISymbol>RectanglePerimeter</a>, <span class=IParent>mxPerimeter</span></div></div><div class=SRResult id=SR_reference><div class=IEntry><a href="../files/io/mxCodec-php.html#mxCodec.reference" target=_parent class=ISymbol>reference</a>, <span class=IParent>mxCodec</span></div></div><div class=SRResult id=SR_register><div class=IEntry><a href="../files/io/mxCodecRegistry-php.html#mxCodecRegistry.register" target=_parent class=ISymbol>register</a>, <span class=IParent>mxCodecRegistry</span></div></div><div class=SRResult id=SR_relative><div class=IEntry><a href="../files/model/mxGeometry-php.html#mxGeometry.relative" target=_parent class=ISymbol>relative</a>, <span class=IParent>mxGeometry</span></div></div><div class=SRResult id=SR_remove><div class=IEntry><a href="javascript:searchResults.Toggle('SR_remove')" class=ISymbol>remove</a><div class=ISubIndex><a href="../files/model/mxCell-php.html#mxCell.remove" target=_parent class=IParent>mxCell</a><a href="../files/model/mxGraphModel-php.html#mxGraphModel.remove" target=_parent class=IParent>mxGraphModel</a></div></div></div><div class=SRResult id=SR_removeAllStylenames><div class=IEntry><a href="../files/util/mxUtils-php.html#mxUtils.removeAllStylenames" target=_parent class=ISymbol>removeAllStylenames</a>, <span class=IParent>mxUtils</span></div></div><div class=SRResult id=SR_removeEdge><div class=IEntry><a href="../files/model/mxCell-php.html#mxCell.removeEdge" target=_parent class=ISymbol>removeEdge</a>, <span class=IParent>mxCell</span></div></div><div class=SRResult id=SR_removeFromParent><div class=IEntry><a href="../files/model/mxCell-php.html#mxCell.removeFromParent" target=_parent class=ISymbol>removeFromParent</a>, <span class=IParent>mxCell</span></div></div><div class=SRResult id=SR_removeFromTerminal><div class=IEntry><a href="../files/model/mxCell-php.html#mxCell.removeFromTerminal" target=_parent class=ISymbol>removeFromTerminal</a>, <span class=IParent>mxCell</span></div></div><div class=SRResult id=SR_removeImageBundle><div class=IEntry><a href="../files/view/mxGraph-php.html#mxGraph.removeImageBundle" target=_parent class=ISymbol>removeImageBundle</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_removeState><div class=IEntry><a href="../files/view/mxGraphView-php.html#mxGraphView.removeState" target=_parent class=ISymbol>removeState</a>, <span class=IParent>mxGraphView</span></div></div><div class=SRResult id=SR_removeStylename><div class=IEntry><a href="../files/util/mxUtils-php.html#mxUtils.removeStylename" target=_parent class=ISymbol>removeStylename</a>, <span class=IParent>mxUtils</span></div></div><div class=SRResult id=SR_resolve><div class=IEntry><a href="../files/model/mxCellPath-php.html#mxCellPath.resolve" target=_parent class=ISymbol>resolve</a>, <span class=IParent>mxCellPath</span></div></div><div class=SRResult id=SR_restoreClone><div class=IEntry><a href="../files/model/mxGraphModel-php.html#mxGraphModel.restoreClone" target=_parent class=ISymbol>restoreClone</a>, <span class=IParent>mxGraphModel</span></div></div><div class=SRResult id=SR_reverse><div class=IEntry><a href="../files/io/mxObjectCodec-php.html#mxObjectCodec.reverse" target=_parent class=ISymbol>reverse</a>, <span class=IParent>mxObjectCodec</span></div></div><div class=SRResult id=SR_RhombusPerimeter><div class=IEntry><a href="../files/view/mxPerimeter-php.html#mxPerimeter.RhombusPerimeter" target=_parent class=ISymbol>RhombusPerimeter</a>, <span class=IParent>mxPerimeter</span></div></div><div class=SRResult id=SR_root><div class=IEntry><a href="../files/model/mxGraphModel-php.html#mxGraphModel.root" target=_parent class=ISymbol>root</a>, <span class=IParent>mxGraphModel</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
    -document.getElementById("Loading").style.display="none";
    -document.getElementById("NoMatches").style.display="none";
    -var searchResults = new SearchResults("searchResults", "HTML");
    -searchResults.Search();
    ---></script></div><script language=JavaScript><!--
    -if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
    \ No newline at end of file
    diff --git a/docs/php-api/search/GeneralS.html b/docs/php-api/search/GeneralS.html
    deleted file mode 100644
    index a01aef7f8..000000000
    --- a/docs/php-api/search/GeneralS.html
    +++ /dev/null
    @@ -1,20 +0,0 @@
    -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
    -
    -<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script></head><body class="PopupSearchResultsPage" onLoad="NDOnLoad()"><script language=JavaScript><!--
    -if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script>
    -
    -<!--  Generated by Natural Docs, version 1.51 -->
    -<!--  http://www.naturaldocs.org  -->
    -
    -<!-- saved from url=(0026)http://www.naturaldocs.org -->
    -
    -
    -
    -
    -<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_scale><div class=IEntry><a href="javascript:searchResults.Toggle('SR_scale')" class=ISymbol>scale</a><div class=ISubIndex><a href="../files/view/mxGraphView-php.html#mxGraphView.scale" target=_parent class=IParent>mxGraphView</a><a href="../files/reader/mxGraphViewImageReader-php.html#mxGraphViewImageReader.scale" target=_parent class=IParent>mxGraphViewImageReader</a></div></div></div><div class=SRResult id=SR2_SCALE><div class=IEntry><a href="../files/util/mxEvent-php.html#mxEvent.SCALE" target=_parent class=ISymbol>SCALE</a>, <span class=IParent>mxEvent</span></div></div><div class=SRResult id=SR_segments><div class=IEntry><a href="../files/view/mxCellState-php.html#mxCellState.segments" target=_parent class=ISymbol>segments</a>, <span class=IParent>mxCellState</span></div></div><div class=SRResult id=SR_setAttribute><div class=IEntry><a href="javascript:searchResults.Toggle('SR_setAttribute')" class=ISymbol>setAttribute</a><div class=ISubIndex><a href="../files/model/mxCell-php.html#mxCell.setAttribute" target=_parent class=IParent>mxCell</a><a href="../files/io/mxCodec-php.html#mxCodec.setAttribute" target=_parent class=IParent>mxCodec</a></div></div></div><div class=SRResult id=SR_setCellStyleFlags><div class=IEntry><a href="../files/util/mxUtils-php.html#mxUtils.setCellStyleFlags" target=_parent class=ISymbol>setCellStyleFlags</a>, <span class=IParent>mxUtils</span></div></div><div class=SRResult id=SR_setCellStyles><div class=IEntry><a href="javascript:searchResults.Toggle('SR_setCellStyles')" class=ISymbol>setCellStyles</a><div class=ISubIndex><a href="../files/view/mxGraph-php.html#mxGraph.setCellStyles" target=_parent class=IParent>mxGraph</a><a href="../files/util/mxUtils-php.html#mxUtils.setCellStyles" target=_parent class=IParent>mxUtils</a></div></div></div><div class=SRResult id=SR_setCollapsed><div class=IEntry><a href="javascript:searchResults.Toggle('SR_setCollapsed')" class=ISymbol>setCollapsed</a><div class=ISubIndex><a href="../files/model/mxCell-php.html#mxCell.setCollapsed" target=_parent class=IParent>mxCell</a><a href="../files/model/mxGraphModel-php.html#mxGraphModel.setCollapsed" target=_parent class=IParent>mxGraphModel</a></div></div></div><div class=SRResult id=SR_setConnectable><div class=IEntry><a href="../files/model/mxCell-php.html#mxCell.setConnectable" target=_parent class=ISymbol>setConnectable</a>, <span class=IParent>mxCell</span></div></div><div class=SRResult id=SR_setEdge><div class=IEntry><a href="../files/model/mxCell-php.html#mxCell.setEdge" target=_parent class=ISymbol>setEdge</a>, <span class=IParent>mxCell</span></div></div><div class=SRResult id=SR_setGeometry><div class=IEntry><a href="javascript:searchResults.Toggle('SR_setGeometry')" class=ISymbol>setGeometry</a><div class=ISubIndex><a href="../files/model/mxCell-php.html#mxCell.setGeometry" target=_parent class=IParent>mxCell</a><a href="../files/model/mxGraphModel-php.html#mxGraphModel.setGeometry" target=_parent class=IParent>mxGraphModel</a></div></div></div><div class=SRResult id=SR_setGraphBounds><div class=IEntry><a href="../files/view/mxGraphView-php.html#mxGraphView.setGraphBounds" target=_parent class=ISymbol>setGraphBounds</a>, <span class=IParent>mxGraphView</span></div></div><div class=SRResult id=SR_setId><div class=IEntry><a href="../files/model/mxCell-php.html#mxCell.setId" target=_parent class=ISymbol>setId</a>, <span class=IParent>mxCell</span></div></div><div class=SRResult id=SR_setImage><div class=IEntry><a href="../files/canvas/mxGdCanvas-php.html#mxGdCanvas.setImage" target=_parent class=ISymbol>setImage</a>, <span class=IParent>mxGdCanvas</span></div></div><div class=SRResult id=SR_setImageBundles><div class=IEntry><a href="../files/view/mxGraph-php.html#mxGraph.setImageBundles" target=_parent class=ISymbol>setImageBundles</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_setParent><div class=IEntry><a href="../files/model/mxCell-php.html#mxCell.setParent" target=_parent class=ISymbol>setParent</a>, <span class=IParent>mxCell</span></div></div><div class=SRResult id=SR_setRect><div class=IEntry><a href="../files/util/mxRectangle-php.html#mxRectangle.setRect" target=_parent class=ISymbol>setRect</a>, <span class=IParent>mxRectangle</span></div></div><div class=SRResult id=SR_setRoot><div class=IEntry><a href="../files/model/mxGraphModel-php.html#mxGraphModel.setRoot" target=_parent class=ISymbol>setRoot</a>, <span class=IParent>mxGraphModel</span></div></div><div class=SRResult id=SR_setScale><div class=IEntry><a href="../files/view/mxGraphView-php.html#mxGraphView.setScale" target=_parent class=ISymbol>setScale</a>, <span class=IParent>mxGraphView</span></div></div><div class=SRResult id=SR_setStyle><div class=IEntry><a href="javascript:searchResults.Toggle('SR_setStyle')" class=ISymbol>setStyle</a><div class=ISubIndex><a href="../files/model/mxCell-php.html#mxCell.setStyle" target=_parent class=IParent>mxCell</a><a href="../files/model/mxGraphModel-php.html#mxGraphModel.setStyle" target=_parent class=IParent>mxGraphModel</a><a href="../files/util/mxUtils-php.html#mxUtils.setStyle" target=_parent class=IParent>mxUtils</a></div></div></div><div class=SRResult id=SR_setStyleFlag><div class=IEntry><a href="../files/util/mxUtils-php.html#mxUtils.setStyleFlag" target=_parent class=ISymbol>setStyleFlag</a>, <span class=IParent>mxUtils</span></div></div><div class=SRResult id=SR_setTerminal><div class=IEntry><a href="javascript:searchResults.Toggle('SR_setTerminal')" class=ISymbol>setTerminal</a><div class=ISubIndex><a href="../files/model/mxCell-php.html#mxCell.setTerminal" target=_parent class=IParent>mxCell</a><a href="../files/model/mxGraphModel-php.html#mxGraphModel.setTerminal" target=_parent class=IParent>mxGraphModel</a></div></div></div><div class=SRResult id=SR_setTerminalPoint><div class=IEntry><a href="../files/model/mxGeometry-php.html#mxGeometry.setTerminalPoint" target=_parent class=ISymbol>setTerminalPoint</a>, <span class=IParent>mxGeometry</span></div></div><div class=SRResult id=SR_setTerminals><div class=IEntry><a href="../files/model/mxGraphModel-php.html#mxGraphModel.setTerminals" target=_parent class=ISymbol>setTerminals</a>, <span class=IParent>mxGraphModel</span></div></div><div class=SRResult id=SR_setTranslate><div class=IEntry><a href="../files/view/mxGraphView-php.html#mxGraphView.setTranslate" target=_parent class=ISymbol>setTranslate</a>, <span class=IParent>mxGraphView</span></div></div><div class=SRResult id=SR_setValue><div class=IEntry><a href="javascript:searchResults.Toggle('SR_setValue')" class=ISymbol>setValue</a><div class=ISubIndex><a href="../files/model/mxCell-php.html#mxCell.setValue" target=_parent class=IParent>mxCell</a><a href="../files/model/mxGraphModel-php.html#mxGraphModel.setValue" target=_parent class=IParent>mxGraphModel</a></div></div></div><div class=SRResult id=SR_setVertex><div class=IEntry><a href="../files/model/mxCell-php.html#mxCell.setVertex" target=_parent class=ISymbol>setVertex</a>, <span class=IParent>mxCell</span></div></div><div class=SRResult id=SR_setVisible><div class=IEntry><a href="javascript:searchResults.Toggle('SR_setVisible')" class=ISymbol>setVisible</a><div class=ISubIndex><a href="../files/model/mxCell-php.html#mxCell.setVisible" target=_parent class=IParent>mxCell</a><a href="../files/model/mxGraphModel-php.html#mxGraphModel.setVisible" target=_parent class=IParent>mxGraphModel</a></div></div></div><div class=SRResult id=SR_SHADOW_undOFFSETX><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.SHADOW_OFFSETX" target=_parent class=ISymbol>SHADOW_OFFSETX</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_SHADOW_undOFFSETY><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.SHADOW_OFFSETY" target=_parent class=ISymbol>SHADOW_OFFSETY</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_shadowColor><div class=IEntry><a href="../files/canvas/mxGdCanvas-php.html#mxGdCanvas.shadowColor" target=_parent class=ISymbol>shadowColor</a>, <span class=IParent>mxGdCanvas</span></div></div><div class=SRResult id=SR_SHAPE_undACTOR><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.SHAPE_ACTOR" target=_parent class=ISymbol>SHAPE_ACTOR</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_SHAPE_undARROW><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.SHAPE_ARROW" target=_parent class=ISymbol>SHAPE_ARROW</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_SHAPE_undCLOUD><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.SHAPE_CLOUD" target=_parent class=ISymbol>SHAPE_CLOUD</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_SHAPE_undCONNECTOR><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.SHAPE_CONNECTOR" target=_parent class=ISymbol>SHAPE_CONNECTOR</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_SHAPE_undCYLINDER><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.SHAPE_CYLINDER" target=_parent class=ISymbol>SHAPE_CYLINDER</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_SHAPE_undDOUBLE_undELLIPSE><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.SHAPE_DOUBLE_ELLIPSE" target=_parent class=ISymbol>SHAPE_DOUBLE_ELLIPSE</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_SHAPE_undELLIPSE><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.SHAPE_ELLIPSE" target=_parent class=ISymbol>SHAPE_ELLIPSE</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_SHAPE_undHEXAGON><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.SHAPE_HEXAGON" target=_parent class=ISymbol>SHAPE_HEXAGON</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_SHAPE_undIMAGE><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.SHAPE_IMAGE" target=_parent class=ISymbol>SHAPE_IMAGE</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_SHAPE_undLABEL><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.SHAPE_LABEL" target=_parent class=ISymbol>SHAPE_LABEL</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_SHAPE_undLINE><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.SHAPE_LINE" target=_parent class=ISymbol>SHAPE_LINE</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_SHAPE_undRECTANGLE><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.SHAPE_RECTANGLE" target=_parent class=ISymbol>SHAPE_RECTANGLE</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_SHAPE_undRHOMBUS><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.SHAPE_RHOMBUS" target=_parent class=ISymbol>SHAPE_RHOMBUS</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_SHAPE_undSWIMLANE><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.SHAPE_SWIMLANE" target=_parent class=ISymbol>SHAPE_SWIMLANE</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_SHAPE_undTRIANGLE><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.SHAPE_TRIANGLE" target=_parent class=ISymbol>SHAPE_TRIANGLE</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_SideToSide><div class=IEntry><a href="../files/view/mxEdgeStyle-php.html#mxEdgeStyle.SideToSide" target=_parent class=ISymbol>SideToSide</a>, <span class=IParent>mxEdgeStyle</span></div></div><div class=SRResult id=SR_source><div class=IEntry><a href="../files/model/mxCell-php.html#mxCell.source" target=_parent class=ISymbol>source</a>, <span class=IParent>mxCell</span></div></div><div class=SRResult id=SR_sourcePoint><div class=IEntry><a href="../files/model/mxGeometry-php.html#mxGeometry.sourcePoint" target=_parent class=ISymbol>sourcePoint</a>, <span class=IParent>mxGeometry</span></div></div><div class=SRResult id=SR_sSTYLE_undENTRY_undPERIMETER><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.sSTYLE_ENTRY_PERIMETER" target=_parent class=ISymbol>sSTYLE_ENTRY_PERIMETER</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_stackTrace><div class=IEntry><a href="../files/util/mxUtils-php.html#mxUtils.stackTrace" target=_parent class=ISymbol>stackTrace</a>, <span class=IParent>mxUtils</span></div></div><div class=SRResult id=SR_startElement><div class=IEntry><a href="../files/reader/mxGraphViewImageReader-php.html#mxGraphViewImageReader.startElement" target=_parent class=ISymbol>startElement</a>, <span class=IParent>mxGraphViewImageReader</span></div></div><div class=SRResult id=SR_states><div class=IEntry><a href="../files/view/mxGraphView-php.html#mxGraphView.states" target=_parent class=ISymbol>states</a>, <span class=IParent>mxGraphView</span></div></div><div class=SRResult id=SR_style><div class=IEntry><a href="javascript:searchResults.Toggle('SR_style')" class=ISymbol>style</a><div class=ISubIndex><a href="../files/model/mxCell-php.html#mxCell.style" target=_parent class=IParent>mxCell</a><a href="../files/view/mxCellState-php.html#mxCellState.style" target=_parent class=IParent>mxCellState</a></div></div></div><div class=SRResult id=SR_STYLE_undALIGN><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_ALIGN" target=_parent class=ISymbol>STYLE_ALIGN</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undDASHED><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_DASHED" target=_parent class=ISymbol>STYLE_DASHED</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undDIRECTION><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_DIRECTION" target=_parent class=ISymbol>STYLE_DIRECTION</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undEDGE><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_EDGE" target=_parent class=ISymbol>STYLE_EDGE</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undELBOW><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_ELBOW" target=_parent class=ISymbol>STYLE_ELBOW</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undENDARROW><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_ENDARROW" target=_parent class=ISymbol>STYLE_ENDARROW</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undENDSIZE><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_ENDSIZE" target=_parent class=ISymbol>STYLE_ENDSIZE</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undENTRY_undX><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_ENTRY_X" target=_parent class=ISymbol>STYLE_ENTRY_X</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undENTRY_undY><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_ENTRY_Y" target=_parent class=ISymbol>STYLE_ENTRY_Y</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undEXIT_undPERIMETER><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_EXIT_PERIMETER" target=_parent class=ISymbol>STYLE_EXIT_PERIMETER</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undEXIT_undX><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_EXIT_X" target=_parent class=ISymbol>STYLE_EXIT_X</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undEXIT_undY><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_EXIT_Y" target=_parent class=ISymbol>STYLE_EXIT_Y</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undFILLCOLOR><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_FILLCOLOR" target=_parent class=ISymbol>STYLE_FILLCOLOR</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undFONTCOLOR><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_FONTCOLOR" target=_parent class=ISymbol>STYLE_FONTCOLOR</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undFONTFAMILY><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_FONTFAMILY" target=_parent class=ISymbol>STYLE_FONTFAMILY</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undFONTSIZE><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_FONTSIZE" target=_parent class=ISymbol>STYLE_FONTSIZE</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undFONTSTYLE><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_FONTSTYLE" target=_parent class=ISymbol>STYLE_FONTSTYLE</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undGRADIENT_undDIRECTION><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_GRADIENT_DIRECTION" target=_parent class=ISymbol>STYLE_GRADIENT_DIRECTION</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undGRADIENTCOLOR><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_GRADIENTCOLOR" target=_parent class=ISymbol>STYLE_GRADIENTCOLOR</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undHORIZONTAL><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_HORIZONTAL" target=_parent class=ISymbol>STYLE_HORIZONTAL</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undIMAGE><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_IMAGE" target=_parent class=ISymbol>STYLE_IMAGE</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undIMAGE_undALIGN><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_IMAGE_ALIGN" target=_parent class=ISymbol>STYLE_IMAGE_ALIGN</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undIMAGE_undBACKGROUND><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_IMAGE_BACKGROUND" target=_parent class=ISymbol>STYLE_IMAGE_BACKGROUND</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undIMAGE_undBORDER><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_IMAGE_BORDER" target=_parent class=ISymbol>STYLE_IMAGE_BORDER</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undIMAGE_undFLIPH><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_IMAGE_FLIPH" target=_parent class=ISymbol>STYLE_IMAGE_FLIPH</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undIMAGE_undFLIPV><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_IMAGE_FLIPV" target=_parent class=ISymbol>STYLE_IMAGE_FLIPV</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undIMAGE_undHEIGHT><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_IMAGE_HEIGHT" target=_parent class=ISymbol>STYLE_IMAGE_HEIGHT</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undIMAGE_undVERTICALALIGN><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_IMAGE_VERTICALALIGN" target=_parent class=ISymbol>STYLE_IMAGE_VERTICALALIGN</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undIMAGE_undWIDTH><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_IMAGE_WIDTH" target=_parent class=ISymbol>STYLE_IMAGE_WIDTH</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undINDICATOR_undCOLOR><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_INDICATOR_COLOR" target=_parent class=ISymbol>STYLE_INDICATOR_COLOR</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undINDICATOR_undGRADIENTCOLOR><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_INDICATOR_GRADIENTCOLOR" target=_parent class=ISymbol>STYLE_INDICATOR_GRADIENTCOLOR</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undINDICATOR_undHEIGHT><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_INDICATOR_HEIGHT" target=_parent class=ISymbol>STYLE_INDICATOR_HEIGHT</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undINDICATOR_undIMAGE><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_INDICATOR_IMAGE" target=_parent class=ISymbol>STYLE_INDICATOR_IMAGE</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undINDICATOR_undSHAPE><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_INDICATOR_SHAPE" target=_parent class=ISymbol>STYLE_INDICATOR_SHAPE</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undINDICATOR_undSPACING><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_INDICATOR_SPACING" target=_parent class=ISymbol>STYLE_INDICATOR_SPACING</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undINDICATOR_undWIDTH><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_INDICATOR_WIDTH" target=_parent class=ISymbol>STYLE_INDICATOR_WIDTH</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undLABEL_undBACKGROUNDCOLOR><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_LABEL_BACKGROUNDCOLOR" target=_parent class=ISymbol>STYLE_LABEL_BACKGROUNDCOLOR</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undLABEL_undBORDERCOLOR><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_LABEL_BORDERCOLOR" target=_parent class=ISymbol>STYLE_LABEL_BORDERCOLOR</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undLABEL_undPOSITION><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_LABEL_POSITION" target=_parent class=ISymbol>STYLE_LABEL_POSITION</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undLOOP><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_LOOP" target=_parent class=ISymbol>STYLE_LOOP</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undNOEDGESTYLE><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_NOEDGESTYLE" target=_parent class=ISymbol>STYLE_NOEDGESTYLE</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undNOLABEL><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_NOLABEL" target=_parent class=ISymbol>STYLE_NOLABEL</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undOPACITY><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_OPACITY" target=_parent class=ISymbol>STYLE_OPACITY</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undORTHOGONAL><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_ORTHOGONAL" target=_parent class=ISymbol>STYLE_ORTHOGONAL</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undOVERFLOW><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_OVERFLOW" target=_parent class=ISymbol>STYLE_OVERFLOW</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undPERIMETER><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_PERIMETER" target=_parent class=ISymbol>STYLE_PERIMETER</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undPERIMETER_undSPACING><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_PERIMETER_SPACING" target=_parent class=ISymbol>STYLE_PERIMETER_SPACING</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undROTATION><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_ROTATION" target=_parent class=ISymbol>STYLE_ROTATION</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undROUNDED><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_ROUNDED" target=_parent class=ISymbol>STYLE_ROUNDED</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undROUTING_undCENTER_undX><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_ROUTING_CENTER_X" target=_parent class=ISymbol>STYLE_ROUTING_CENTER_X</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undROUTING_undCENTER_undY><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_ROUTING_CENTER_Y" target=_parent class=ISymbol>STYLE_ROUTING_CENTER_Y</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undSEGMENT><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_SEGMENT" target=_parent class=ISymbol>STYLE_SEGMENT</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undSEPARATORCOLOR><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_SEPARATORCOLOR" target=_parent class=ISymbol>STYLE_SEPARATORCOLOR</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undSHADOW><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_SHADOW" target=_parent class=ISymbol>STYLE_SHADOW</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undSHAPE><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_SHAPE" target=_parent class=ISymbol>STYLE_SHAPE</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undSOURCE_undPERIMETER_undSPACING><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_SOURCE_PERIMETER_SPACING" target=_parent class=ISymbol>STYLE_SOURCE_PERIMETER_SPACING</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undSPACING><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_SPACING" target=_parent class=ISymbol>STYLE_SPACING</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undSPACING_undBOTTOM><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_SPACING_BOTTOM" target=_parent class=ISymbol>STYLE_SPACING_BOTTOM</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undSPACING_undLEFT><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_SPACING_LEFT" target=_parent class=ISymbol>STYLE_SPACING_LEFT</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undSPACING_undRIGHT><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_SPACING_RIGHT" target=_parent class=ISymbol>STYLE_SPACING_RIGHT</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undSPACING_undTOP><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_SPACING_TOP" target=_parent class=ISymbol>STYLE_SPACING_TOP</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undSTARTARROW><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_STARTARROW" target=_parent class=ISymbol>STYLE_STARTARROW</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undSTARTSIZE><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_STARTSIZE" target=_parent class=ISymbol>STYLE_STARTSIZE</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undSTROKECOLOR><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_STROKECOLOR" target=_parent class=ISymbol>STYLE_STROKECOLOR</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undSTROKEWIDTH><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_STROKEWIDTH" target=_parent class=ISymbol>STYLE_STROKEWIDTH</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undSWIMLANE_undFILLCOLOR><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_SWIMLANE_FILLCOLOR" target=_parent class=ISymbol>STYLE_SWIMLANE_FILLCOLOR</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undSWIMLANE_undLINE><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_SWIMLANE_LINE" target=_parent class=ISymbol>STYLE_SWIMLANE_LINE</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undTARGET_undPERIMETER_undSPACING><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_TARGET_PERIMETER_SPACING" target=_parent class=ISymbol>STYLE_TARGET_PERIMETER_SPACING</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undTEXT_undOPACITY><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_TEXT_OPACITY" target=_parent class=ISymbol>STYLE_TEXT_OPACITY</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undVERTICAL_undALIGN><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_VERTICAL_ALIGN" target=_parent class=ISymbol>STYLE_VERTICAL_ALIGN</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undVERTICAL_undLABEL_undPOSITION><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_VERTICAL_LABEL_POSITION" target=_parent class=ISymbol>STYLE_VERTICAL_LABEL_POSITION</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undWHITE_undSPACE><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_WHITE_SPACE" target=_parent class=ISymbol>STYLE_WHITE_SPACE</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_styles><div class=IEntry><a href="../files/view/mxStylesheet-php.html#mxStylesheet.styles" target=_parent class=ISymbol>styles</a>, <span class=IParent>mxStylesheet</span></div></div><div class=SRResult id=SR_stylesheet><div class=IEntry><a href="../files/view/mxGraph-php.html#mxGraph.stylesheet" target=_parent class=ISymbol>stylesheet</a>, <span class=IParent>mxGraph</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
    -document.getElementById("Loading").style.display="none";
    -document.getElementById("NoMatches").style.display="none";
    -var searchResults = new SearchResults("searchResults", "HTML");
    -searchResults.Search();
    ---></script></div><script language=JavaScript><!--
    -if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
    \ No newline at end of file
    diff --git a/docs/php-api/search/GeneralT.html b/docs/php-api/search/GeneralT.html
    deleted file mode 100644
    index 74244578a..000000000
    --- a/docs/php-api/search/GeneralT.html
    +++ /dev/null
    @@ -1,20 +0,0 @@
    -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
    -
    -<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script></head><body class="PopupSearchResultsPage" onLoad="NDOnLoad()"><script language=JavaScript><!--
    -if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script>
    -
    -<!--  Generated by Natural Docs, version 1.51 -->
    -<!--  http://www.naturaldocs.org  -->
    -
    -<!-- saved from url=(0026)http://www.naturaldocs.org -->
    -
    -
    -
    -
    -<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_tab><div class=IEntry><a href="../files/util/mxLog-php.html#mxLog.tab" target=_parent class=ISymbol>tab</a>, <span class=IParent>mxLog</span></div></div><div class=SRResult id=SR_target><div class=IEntry><a href="../files/model/mxCell-php.html#mxCell.target" target=_parent class=ISymbol>target</a>, <span class=IParent>mxCell</span></div></div><div class=SRResult id=SR_targetPoint><div class=IEntry><a href="../files/model/mxGeometry-php.html#mxGeometry.targetPoint" target=_parent class=ISymbol>targetPoint</a>, <span class=IParent>mxGeometry</span></div></div><div class=SRResult id=SR_template><div class=IEntry><a href="../files/io/mxObjectCodec-php.html#mxObjectCodec.template" target=_parent class=ISymbol>template</a>, <span class=IParent>mxObjectCodec</span></div></div><div class=SRResult id=SR_terminalDistance><div class=IEntry><a href="../files/view/mxCellState-php.html#mxCellState.terminalDistance" target=_parent class=ISymbol>terminalDistance</a>, <span class=IParent>mxCellState</span></div></div><div class=SRResult id=SR_TopToBottom><div class=IEntry><a href="../files/view/mxEdgeStyle-php.html#mxEdgeStyle.TopToBottom" target=_parent class=ISymbol>TopToBottom</a>, <span class=IParent>mxEdgeStyle</span></div></div><div class=SRResult id=SR_toRadians><div class=IEntry><a href="../files/util/mxUtils-php.html#mxUtils.toRadians" target=_parent class=ISymbol>toRadians</a>, <span class=IParent>mxUtils</span></div></div><div class=SRResult id=SR_transformControlPoint><div class=IEntry><a href="../files/view/mxGraphView-php.html#mxGraphView.transformControlPoint" target=_parent class=ISymbol>transformControlPoint</a>, <span class=IParent>mxGraphView</span></div></div><div class=SRResult id=SR_translate><div class=IEntry><a href="javascript:searchResults.Toggle('SR_translate')" class=ISymbol>translate</a><div class=ISubIndex><a href="../files/model/mxGeometry-php.html#mxGeometry.translate" target=_parent class=IParent>mxGeometry</a><a href="../files/view/mxGraphView-php.html#mxGraphView.translate" target=_parent class=IParent>mxGraphView</a></div></div></div><div class=SRResult id=SR2_TRANSLATE><div class=IEntry><a href="../files/util/mxEvent-php.html#mxEvent.TRANSLATE" target=_parent class=ISymbol>TRANSLATE</a>, <span class=IParent>mxEvent</span></div></div><div class=SRResult id=SR_TRANSLATE_undCONTROL_undPOINTS><div class=IEntry><a href="../files/model/mxGeometry-php.html#mxGeometry.TRANSLATE_CONTROL_POINTS" target=_parent class=ISymbol>TRANSLATE_CONTROL_POINTS</a>, <span class=IParent>mxGeometry</span></div></div><div class=SRResult id=SR_translatePoints><div class=IEntry><a href="../files/util/mxUtils-php.html#mxUtils.translatePoints" target=_parent class=ISymbol>translatePoints</a>, <span class=IParent>mxUtils</span></div></div><div class=SRResult id=SR_TrianglePerimeter><div class=IEntry><a href="../files/view/mxPerimeter-php.html#mxPerimeter.TrianglePerimeter" target=_parent class=ISymbol>TrianglePerimeter</a>, <span class=IParent>mxPerimeter</span></div></div><div class=SRResult id=SR_TTF_undENABLED><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.TTF_ENABLED" target=_parent class=ISymbol>TTF_ENABLED</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_TTF_undSIZEFACTOR><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.TTF_SIZEFACTOR" target=_parent class=ISymbol>TTF_SIZEFACTOR</a>, <span class=IParent>mxConstants</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
    -document.getElementById("Loading").style.display="none";
    -document.getElementById("NoMatches").style.display="none";
    -var searchResults = new SearchResults("searchResults", "HTML");
    -searchResults.Search();
    ---></script></div><script language=JavaScript><!--
    -if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
    \ No newline at end of file
    diff --git a/docs/php-api/search/GeneralU.html b/docs/php-api/search/GeneralU.html
    deleted file mode 100644
    index 8ad6939a0..000000000
    --- a/docs/php-api/search/GeneralU.html
    +++ /dev/null
    @@ -1,20 +0,0 @@
    -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
    -
    -<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script></head><body class="PopupSearchResultsPage" onLoad="NDOnLoad()"><script language=JavaScript><!--
    -if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script>
    -
    -<!--  Generated by Natural Docs, version 1.51 -->
    -<!--  http://www.naturaldocs.org  -->
    -
    -<!-- saved from url=(0026)http://www.naturaldocs.org -->
    -
    -
    -
    -
    -<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_updateBoundingBox><div class=IEntry><a href="../files/view/mxGraphView-php.html#mxGraphView.updateBoundingBox" target=_parent class=ISymbol>updateBoundingBox</a>, <span class=IParent>mxGraphView</span></div></div><div class=SRResult id=SR_updateCellState><div class=IEntry><a href="../files/view/mxGraphView-php.html#mxGraphView.updateCellState" target=_parent class=ISymbol>updateCellState</a>, <span class=IParent>mxGraphView</span></div></div><div class=SRResult id=SR_updateEdgeBounds><div class=IEntry><a href="../files/view/mxGraphView-php.html#mxGraphView.updateEdgeBounds" target=_parent class=ISymbol>updateEdgeBounds</a>, <span class=IParent>mxGraphView</span></div></div><div class=SRResult id=SR_updateEdgeParent><div class=IEntry><a href="../files/model/mxGraphModel-php.html#mxGraphModel.updateEdgeParent" target=_parent class=ISymbol>updateEdgeParent</a>, <span class=IParent>mxGraphModel</span></div></div><div class=SRResult id=SR_updateEdgeParents><div class=IEntry><a href="../files/model/mxGraphModel-php.html#mxGraphModel.updateEdgeParents" target=_parent class=ISymbol>updateEdgeParents</a>, <span class=IParent>mxGraphModel</span></div></div><div class=SRResult id=SR_updateEdgeState><div class=IEntry><a href="../files/view/mxGraphView-php.html#mxGraphView.updateEdgeState" target=_parent class=ISymbol>updateEdgeState</a>, <span class=IParent>mxGraphView</span></div></div><div class=SRResult id=SR_updateFixedTerminalPoint><div class=IEntry><a href="../files/view/mxGraphView-php.html#mxGraphView.updateFixedTerminalPoint" target=_parent class=ISymbol>updateFixedTerminalPoint</a>, <span class=IParent>mxGraphView</span></div></div><div class=SRResult id=SR_updateFixedTerminalPoints><div class=IEntry><a href="../files/view/mxGraphView-php.html#mxGraphView.updateFixedTerminalPoints" target=_parent class=ISymbol>updateFixedTerminalPoints</a>, <span class=IParent>mxGraphView</span></div></div><div class=SRResult id=SR_updateFloatingTerminalPoint><div class=IEntry><a href="../files/view/mxGraphView-php.html#mxGraphView.updateFloatingTerminalPoint" target=_parent class=ISymbol>updateFloatingTerminalPoint</a>, <span class=IParent>mxGraphView</span></div></div><div class=SRResult id=SR_updateFloatingTerminalPoints><div class=IEntry><a href="../files/view/mxGraphView-php.html#mxGraphView.updateFloatingTerminalPoints" target=_parent class=ISymbol>updateFloatingTerminalPoints</a>, <span class=IParent>mxGraphView</span></div></div><div class=SRResult id=SR_updateLabelBounds><div class=IEntry><a href="../files/view/mxGraphView-php.html#mxGraphView.updateLabelBounds" target=_parent class=ISymbol>updateLabelBounds</a>, <span class=IParent>mxGraphView</span></div></div><div class=SRResult id=SR_updateLevel><div class=IEntry><a href="../files/model/mxGraphModel-php.html#mxGraphModel.updateLevel" target=_parent class=ISymbol>updateLevel</a>, <span class=IParent>mxGraphModel</span></div></div><div class=SRResult id=SR_updatePoints><div class=IEntry><a href="../files/view/mxGraphView-php.html#mxGraphView.updatePoints" target=_parent class=ISymbol>updatePoints</a>, <span class=IParent>mxGraphView</span></div></div><div class=SRResult id=SR_updateVertexLabelOffset><div class=IEntry><a href="../files/view/mxGraphView-php.html#mxGraphView.updateVertexLabelOffset" target=_parent class=ISymbol>updateVertexLabelOffset</a>, <span class=IParent>mxGraphView</span></div></div><div class=SRResult id=SR_updateVertexState><div class=IEntry><a href="../files/view/mxGraphView-php.html#mxGraphView.updateVertexState" target=_parent class=ISymbol>updateVertexState</a>, <span class=IParent>mxGraphView</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
    -document.getElementById("Loading").style.display="none";
    -document.getElementById("NoMatches").style.display="none";
    -var searchResults = new SearchResults("searchResults", "HTML");
    -searchResults.Search();
    ---></script></div><script language=JavaScript><!--
    -if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
    \ No newline at end of file
    diff --git a/docs/php-api/search/GeneralV.html b/docs/php-api/search/GeneralV.html
    deleted file mode 100644
    index a666bfcd0..000000000
    --- a/docs/php-api/search/GeneralV.html
    +++ /dev/null
    @@ -1,20 +0,0 @@
    -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
    -
    -<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script></head><body class="PopupSearchResultsPage" onLoad="NDOnLoad()"><script language=JavaScript><!--
    -if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script>
    -
    -<!--  Generated by Natural Docs, version 1.51 -->
    -<!--  http://www.naturaldocs.org  -->
    -
    -<!-- saved from url=(0026)http://www.naturaldocs.org -->
    -
    -
    -
    -
    -<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_validate><div class=IEntry><a href="../files/view/mxGraphView-php.html#mxGraphView.validate" target=_parent class=ISymbol>validate</a>, <span class=IParent>mxGraphView</span></div></div><div class=SRResult id=SR_validateCell><div class=IEntry><a href="../files/view/mxGraphView-php.html#mxGraphView.validateCell" target=_parent class=ISymbol>validateCell</a>, <span class=IParent>mxGraphView</span></div></div><div class=SRResult id=SR_validateCellStates><div class=IEntry><a href="../files/view/mxGraphView-php.html#mxGraphView.validateCellStates" target=_parent class=ISymbol>validateCellStates</a>, <span class=IParent>mxGraphView</span></div></div><div class=SRResult id=SR_value><div class=IEntry><a href="../files/model/mxCell-php.html#mxCell.value" target=_parent class=ISymbol>value</a>, <span class=IParent>mxCell</span></div></div><div class=SRResult id=SR_values><div class=IEntry><a href="../files/view/mxStyleRegistry-php.html#mxStyleRegistry.values" target=_parent class=ISymbol>values</a>, <span class=IParent>mxStyleRegistry</span></div></div><div class=SRResult id=SR_Variables><div class=IEntry><a href="javascript:searchResults.Toggle('SR_Variables')" class=ISymbol>Variables</a><div class=ISubIndex><a href="../files/canvas/mxGdCanvas-php.html#Variables" target=_parent class=IParent>Global</a><a href="../files/model/mxCell-php.html#mxCell.Variables" target=_parent class=IParent>mxCell</a><a href="../files/model/mxCellPath-php.html#mxCellPath.Variables" target=_parent class=IParent>mxCellPath</a><a href="../files/view/mxCellState-php.html#mxCellState.Variables" target=_parent class=IParent>mxCellState</a><a href="../files/io/mxCodec-php.html#mxCodec.Variables" target=_parent class=IParent>mxCodec</a><a href="../files/io/mxCodecRegistry-php.html#mxCodecRegistry.Variables" target=_parent class=IParent>mxCodecRegistry</a><a href="../files/view/mxConnectionConstraint-php.html#mxConnectionConstraint.Variables" target=_parent class=IParent>mxConnectionConstraint</a><a href="../files/util/mxConstants-php.html#mxConstants.Variables" target=_parent class=IParent>mxConstants</a><a href="../files/view/mxEdgeStyle-php.html#mxEdgeStyle.Variables" target=_parent class=IParent>mxEdgeStyle</a><a href="../files/util/mxEvent-php.html#mxEvent.Variables" target=_parent class=IParent>mxEvent</a><a href="../files/util/mxEventObject-php.html#mxEventObject.Variables" target=_parent class=IParent>mxEventObject</a><a href="../files/util/mxEventSource-php.html#mxEventSource.Variables" target=_parent class=IParent>mxEventSource</a><a href="../files/canvas/mxGdCanvas-php.html#mxGdCanvas.Variables" target=_parent class=IParent>mxGdCanvas</a><a href="../files/model/mxGeometry-php.html#mxGeometry.Variables" target=_parent class=IParent>mxGeometry</a><a href="../files/view/mxGraph-php.html#mxGraph.Variables" target=_parent class=IParent>mxGraph</a><a href="../files/model/mxGraphModel-php.html#mxGraphModel.Variables" target=_parent class=IParent>mxGraphModel</a><a href="../files/view/mxGraphView-php.html#mxGraphView.Variables" target=_parent class=IParent>mxGraphView</a><a href="../files/reader/mxGraphViewImageReader-php.html#mxGraphViewImageReader.Variables" target=_parent class=IParent>mxGraphViewImageReader</a><a href="../files/canvas/mxHtmlCanvas-php.html#mxHtmlCanvas.Variables" target=_parent class=IParent>mxHtmlCanvas</a><a href="../files/util/mxImageBundle-php.html#mxImageBundle.Variables" target=_parent class=IParent>mxImageBundle</a><a href="../files/util/mxLog-php.html#mxLog.Variables" target=_parent class=IParent>mxLog</a><a href="../files/io/mxObjectCodec-php.html#mxObjectCodec.Variables" target=_parent class=IParent>mxObjectCodec</a><a href="../files/view/mxPerimeter-php.html#mxPerimeter.Variables" target=_parent class=IParent>mxPerimeter</a><a href="../files/util/mxPoint-php.html#mxPoint.Variables" target=_parent class=IParent>mxPoint</a><a href="../files/util/mxRectangle-php.html#mxRectangle.Variables" target=_parent class=IParent>mxRectangle</a><a href="../files/view/mxStyleRegistry-php.html#mxStyleRegistry.Variables" target=_parent class=IParent>mxStyleRegistry</a></div></div></div><div class=SRResult id=SR_vertex><div class=IEntry><a href="../files/model/mxCell-php.html#mxCell.vertex" target=_parent class=ISymbol>vertex</a>, <span class=IParent>mxCell</span></div></div><div class=SRResult id=SR_view><div class=IEntry><a href="javascript:searchResults.Toggle('SR_view')" class=ISymbol>view</a><div class=ISubIndex><a href="../files/view/mxCellState-php.html#mxCellState.view" target=_parent class=IParent>mxCellState</a><a href="../files/view/mxGraph-php.html#mxGraph.view" target=_parent class=IParent>mxGraph</a></div></div></div><div class=SRResult id=SR_visible><div class=IEntry><a href="../files/model/mxCell-php.html#mxCell.visible" target=_parent class=ISymbol>visible</a>, <span class=IParent>mxCell</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
    -document.getElementById("Loading").style.display="none";
    -document.getElementById("NoMatches").style.display="none";
    -var searchResults = new SearchResults("searchResults", "HTML");
    -searchResults.Search();
    ---></script></div><script language=JavaScript><!--
    -if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
    \ No newline at end of file
    diff --git a/docs/php-api/search/GeneralW.html b/docs/php-api/search/GeneralW.html
    deleted file mode 100644
    index f3a2f179a..000000000
    --- a/docs/php-api/search/GeneralW.html
    +++ /dev/null
    @@ -1,20 +0,0 @@
    -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
    -
    -<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script></head><body class="PopupSearchResultsPage" onLoad="NDOnLoad()"><script language=JavaScript><!--
    -if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script>
    -
    -<!--  Generated by Natural Docs, version 1.51 -->
    -<!--  http://www.naturaldocs.org  -->
    -
    -<!-- saved from url=(0026)http://www.naturaldocs.org -->
    -
    -
    -
    -
    -<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_W3C_undDEFAULT_undFONTFAMILY><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.W3C_DEFAULT_FONTFAMILY" target=_parent class=ISymbol>W3C_DEFAULT_FONTFAMILY</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_W3C_undSHADOWCOLOR><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.W3C_SHADOWCOLOR" target=_parent class=ISymbol>W3C_SHADOWCOLOR</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_warn><div class=IEntry><a href="../files/util/mxLog-php.html#mxLog.warn" target=_parent class=ISymbol>warn</a>, <span class=IParent>mxLog</span></div></div><div class=SRResult id=SR_width><div class=IEntry><a href="../files/util/mxRectangle-php.html#mxRectangle.width" target=_parent class=ISymbol>width</a>, <span class=IParent>mxRectangle</span></div></div><div class=SRResult id=SR_write><div class=IEntry><a href="../files/util/mxLog-php.html#mxLog.write" target=_parent class=ISymbol>write</a>, <span class=IParent>mxLog</span></div></div><div class=SRResult id=SR_writeAttribute><div class=IEntry><a href="../files/io/mxObjectCodec-php.html#mxObjectCodec.writeAttribute" target=_parent class=ISymbol>writeAttribute</a>, <span class=IParent>mxObjectCodec</span></div></div><div class=SRResult id=SR_writeComplexAttribute><div class=IEntry><a href="../files/io/mxObjectCodec-php.html#mxObjectCodec.writeComplexAttribute" target=_parent class=ISymbol>writeComplexAttribute</a>, <span class=IParent>mxObjectCodec</span></div></div><div class=SRResult id=SR_writeln><div class=IEntry><a href="../files/util/mxLog-php.html#mxLog.writeln" target=_parent class=ISymbol>writeln</a>, <span class=IParent>mxLog</span></div></div><div class=SRResult id=SR_writePrimitiveAttribute><div class=IEntry><a href="../files/io/mxObjectCodec-php.html#mxObjectCodec.writePrimitiveAttribute" target=_parent class=ISymbol>writePrimitiveAttribute</a>, <span class=IParent>mxObjectCodec</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
    -document.getElementById("Loading").style.display="none";
    -document.getElementById("NoMatches").style.display="none";
    -var searchResults = new SearchResults("searchResults", "HTML");
    -searchResults.Search();
    ---></script></div><script language=JavaScript><!--
    -if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
    \ No newline at end of file
    diff --git a/docs/php-api/search/GeneralX.html b/docs/php-api/search/GeneralX.html
    deleted file mode 100644
    index 675afa946..000000000
    --- a/docs/php-api/search/GeneralX.html
    +++ /dev/null
    @@ -1,20 +0,0 @@
    -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
    -
    -<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script></head><body class="PopupSearchResultsPage" onLoad="NDOnLoad()"><script language=JavaScript><!--
    -if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script>
    -
    -<!--  Generated by Natural Docs, version 1.51 -->
    -<!--  http://www.naturaldocs.org  -->
    -
    -<!-- saved from url=(0026)http://www.naturaldocs.org -->
    -
    -
    -
    -
    -<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_x><div class=IEntry><a href="../files/util/mxPoint-php.html#mxPoint.x" target=_parent class=ISymbol>x</a>, <span class=IParent>mxPoint</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
    -document.getElementById("Loading").style.display="none";
    -document.getElementById("NoMatches").style.display="none";
    -var searchResults = new SearchResults("searchResults", "HTML");
    -searchResults.Search();
    ---></script></div><script language=JavaScript><!--
    -if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
    \ No newline at end of file
    diff --git a/docs/php-api/search/GeneralY.html b/docs/php-api/search/GeneralY.html
    deleted file mode 100644
    index dc3517575..000000000
    --- a/docs/php-api/search/GeneralY.html
    +++ /dev/null
    @@ -1,20 +0,0 @@
    -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
    -
    -<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script></head><body class="PopupSearchResultsPage" onLoad="NDOnLoad()"><script language=JavaScript><!--
    -if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script>
    -
    -<!--  Generated by Natural Docs, version 1.51 -->
    -<!--  http://www.naturaldocs.org  -->
    -
    -<!-- saved from url=(0026)http://www.naturaldocs.org -->
    -
    -
    -
    -
    -<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_y><div class=IEntry><a href="../files/util/mxPoint-php.html#mxPoint.y" target=_parent class=ISymbol>y</a>, <span class=IParent>mxPoint</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
    -document.getElementById("Loading").style.display="none";
    -document.getElementById("NoMatches").style.display="none";
    -var searchResults = new SearchResults("searchResults", "HTML");
    -searchResults.Search();
    ---></script></div><script language=JavaScript><!--
    -if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
    \ No newline at end of file
    diff --git a/docs/php-api/search/InterfacesM.html b/docs/php-api/search/InterfacesM.html
    deleted file mode 100644
    index 439698a49..000000000
    --- a/docs/php-api/search/InterfacesM.html
    +++ /dev/null
    @@ -1,20 +0,0 @@
    -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
    -
    -<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script></head><body class="PopupSearchResultsPage" onLoad="NDOnLoad()"><script language=JavaScript><!--
    -if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script>
    -
    -<!--  Generated by Natural Docs, version 1.51 -->
    -<!--  http://www.naturaldocs.org  -->
    -
    -<!-- saved from url=(0026)http://www.naturaldocs.org -->
    -
    -
    -
    -
    -<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_mxEdgeStyleFunction><div class=IEntry><a href="../files/view/mxEdgeStyle-php.html#mxEdgeStyleFunction" target=_parent class=ISymbol>mxEdgeStyleFunction</a></div></div><div class=SRResult id=SR_mxPerimeterFunction><div class=IEntry><a href="../files/view/mxPerimeter-php.html#mxPerimeterFunction" target=_parent class=ISymbol>mxPerimeterFunction</a></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
    -document.getElementById("Loading").style.display="none";
    -document.getElementById("NoMatches").style.display="none";
    -var searchResults = new SearchResults("searchResults", "HTML");
    -searchResults.Search();
    ---></script></div><script language=JavaScript><!--
    -if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
    \ No newline at end of file
    diff --git a/docs/php-api/search/NoResults.html b/docs/php-api/search/NoResults.html
    deleted file mode 100644
    index 5ce771767..000000000
    --- a/docs/php-api/search/NoResults.html
    +++ /dev/null
    @@ -1,15 +0,0 @@
    -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
    -
    -<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script></head><body class="PopupSearchResultsPage" onLoad="NDOnLoad()"><script language=JavaScript><!--
    -if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script>
    -
    -<!--  Generated by Natural Docs, version 1.51 -->
    -<!--  http://www.naturaldocs.org  -->
    -
    -<!-- saved from url=(0026)http://www.naturaldocs.org -->
    -
    -
    -
    -
    -<div id=Index><div class=SRStatus id=NoMatches>No Matches</div></div><script language=JavaScript><!--
    -if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
    \ No newline at end of file
    diff --git a/docs/php-api/search/VariablesA.html b/docs/php-api/search/VariablesA.html
    deleted file mode 100644
    index 7a2a9c5c2..000000000
    --- a/docs/php-api/search/VariablesA.html
    +++ /dev/null
    @@ -1,20 +0,0 @@
    -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
    -
    -<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script></head><body class="PopupSearchResultsPage" onLoad="NDOnLoad()"><script language=JavaScript><!--
    -if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script>
    -
    -<!--  Generated by Natural Docs, version 1.51 -->
    -<!--  http://www.naturaldocs.org  -->
    -
    -<!-- saved from url=(0026)http://www.naturaldocs.org -->
    -
    -
    -
    -
    -<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_absoluteOffset><div class=IEntry><a href="../files/view/mxCellState-php.html#mxCellState.absoluteOffset" target=_parent class=ISymbol>absoluteOffset</a>, <span class=IParent>mxCellState</span></div></div><div class=SRResult id=SR_absolutePoints><div class=IEntry><a href="../files/view/mxCellState-php.html#mxCellState.absolutePoints" target=_parent class=ISymbol>absolutePoints</a>, <span class=IParent>mxCellState</span></div></div><div class=SRResult id=SR_ACTIVE_undREGION><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.ACTIVE_REGION" target=_parent class=ISymbol>ACTIVE_REGION</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_aliases><div class=IEntry><a href="../files/io/mxCodecRegistry-php.html#mxCodecRegistry.aliases" target=_parent class=ISymbol>aliases</a>, <span class=IParent>mxCodecRegistry</span></div></div><div class=SRResult id=SR_ALIGN_undBOTTOM><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.ALIGN_BOTTOM" target=_parent class=ISymbol>ALIGN_BOTTOM</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_ALIGN_undCENTER><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.ALIGN_CENTER" target=_parent class=ISymbol>ALIGN_CENTER</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_ALIGN_undLEFT><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.ALIGN_LEFT" target=_parent class=ISymbol>ALIGN_LEFT</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_ALIGN_undMIDDLE><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.ALIGN_MIDDLE" target=_parent class=ISymbol>ALIGN_MIDDLE</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_ALIGN_undRIGHT><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.ALIGN_RIGHT" target=_parent class=ISymbol>ALIGN_RIGHT</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_ALIGN_undTOP><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.ALIGN_TOP" target=_parent class=ISymbol>ALIGN_TOP</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_alternateBounds><div class=IEntry><a href="../files/model/mxGeometry-php.html#mxGeometry.alternateBounds" target=_parent class=ISymbol>alternateBounds</a>, <span class=IParent>mxGeometry</span></div></div><div class=SRResult id=SR_antialias><div class=IEntry><a href="javascript:searchResults.Toggle('SR_antialias')" class=ISymbol>antialias</a><div class=ISubIndex><a href="../files/canvas/mxGdCanvas-php.html#antialias" target=_parent class=IParent>Global</a><a href="../files/canvas/mxGdCanvas-php.html#mxGdCanvas.antialias" target=_parent class=IParent>mxGdCanvas</a></div></div></div><div class=SRResult id=SR_ARROW_undBLOCK><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.ARROW_BLOCK" target=_parent class=ISymbol>ARROW_BLOCK</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_ARROW_undCLASSIC><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.ARROW_CLASSIC" target=_parent class=ISymbol>ARROW_CLASSIC</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_ARROW_undDIAMOND><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.ARROW_DIAMOND" target=_parent class=ISymbol>ARROW_DIAMOND</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_ARROW_undOPEN><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.ARROW_OPEN" target=_parent class=ISymbol>ARROW_OPEN</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_ARROW_undOVAL><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.ARROW_OVAL" target=_parent class=ISymbol>ARROW_OVAL</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_ARROW_undSIZE><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.ARROW_SIZE" target=_parent class=ISymbol>ARROW_SIZE</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_ARROW_undSPACING><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.ARROW_SPACING" target=_parent class=ISymbol>ARROW_SPACING</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_ARROW_undWIDTH><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.ARROW_WIDTH" target=_parent class=ISymbol>ARROW_WIDTH</a>, <span class=IParent>mxConstants</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
    -document.getElementById("Loading").style.display="none";
    -document.getElementById("NoMatches").style.display="none";
    -var searchResults = new SearchResults("searchResults", "HTML");
    -searchResults.Search();
    ---></script></div><script language=JavaScript><!--
    -if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
    \ No newline at end of file
    diff --git a/docs/php-api/search/VariablesB.html b/docs/php-api/search/VariablesB.html
    deleted file mode 100644
    index 953bad088..000000000
    --- a/docs/php-api/search/VariablesB.html
    +++ /dev/null
    @@ -1,20 +0,0 @@
    -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
    -
    -<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script></head><body class="PopupSearchResultsPage" onLoad="NDOnLoad()"><script language=JavaScript><!--
    -if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script>
    -
    -<!--  Generated by Natural Docs, version 1.51 -->
    -<!--  http://www.naturaldocs.org  -->
    -
    -<!-- saved from url=(0026)http://www.naturaldocs.org -->
    -
    -
    -
    -
    -<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_background><div class=IEntry><a href="../files/reader/mxGraphViewImageReader-php.html#mxGraphViewImageReader.background" target=_parent class=ISymbol>background</a>, <span class=IParent>mxGraphViewImageReader</span></div></div><div class=SRResult id=SR_border><div class=IEntry><a href="../files/reader/mxGraphViewImageReader-php.html#mxGraphViewImageReader.border" target=_parent class=ISymbol>border</a>, <span class=IParent>mxGraphViewImageReader</span></div></div><div class=SRResult id=SR_boundingBox><div class=IEntry><a href="../files/view/mxCellState-php.html#mxCellState.boundingBox" target=_parent class=ISymbol>boundingBox</a>, <span class=IParent>mxCellState</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
    -document.getElementById("Loading").style.display="none";
    -document.getElementById("NoMatches").style.display="none";
    -var searchResults = new SearchResults("searchResults", "HTML");
    -searchResults.Search();
    ---></script></div><script language=JavaScript><!--
    -if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
    \ No newline at end of file
    diff --git a/docs/php-api/search/VariablesC.html b/docs/php-api/search/VariablesC.html
    deleted file mode 100644
    index c840e04eb..000000000
    --- a/docs/php-api/search/VariablesC.html
    +++ /dev/null
    @@ -1,20 +0,0 @@
    -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
    -
    -<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script></head><body class="PopupSearchResultsPage" onLoad="NDOnLoad()"><script language=JavaScript><!--
    -if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script>
    -
    -<!--  Generated by Natural Docs, version 1.51 -->
    -<!--  http://www.naturaldocs.org  -->
    -
    -<!-- saved from url=(0026)http://www.naturaldocs.org -->
    -
    -
    -
    -
    -<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_canvas><div class=IEntry><a href="../files/reader/mxGraphViewImageReader-php.html#mxGraphViewImageReader.canvas" target=_parent class=ISymbol>canvas</a>, <span class=IParent>mxGraphViewImageReader</span></div></div><div class=SRResult id=SR_cell><div class=IEntry><a href="../files/view/mxCellState-php.html#mxCellState.cell" target=_parent class=ISymbol>cell</a>, <span class=IParent>mxCellState</span></div></div><div class=SRResult id=SR_cells><div class=IEntry><a href="../files/model/mxGraphModel-php.html#mxGraphModel.cells" target=_parent class=ISymbol>cells</a>, <span class=IParent>mxGraphModel</span></div></div><div class=SRResult id=SR_children><div class=IEntry><a href="../files/model/mxCell-php.html#mxCell.children" target=_parent class=ISymbol>children</a>, <span class=IParent>mxCell</span></div></div><div class=SRResult id=SR_codecs><div class=IEntry><a href="javascript:searchResults.Toggle('SR_codecs')" class=ISymbol>codecs</a><div class=ISubIndex><a href="../files/model/mxCellPath-php.html#mxCellPath.codecs" target=_parent class=IParent>mxCellPath</a><a href="../files/io/mxCodecRegistry-php.html#mxCodecRegistry.codecs" target=_parent class=IParent>mxCodecRegistry</a></div></div></div><div class=SRResult id=SR_collapsed><div class=IEntry><a href="../files/model/mxCell-php.html#mxCell.collapsed" target=_parent class=ISymbol>collapsed</a>, <span class=IParent>mxCell</span></div></div><div class=SRResult id=SR_connectable><div class=IEntry><a href="../files/model/mxCell-php.html#mxCell.connectable" target=_parent class=ISymbol>connectable</a>, <span class=IParent>mxCell</span></div></div><div class=SRResult id=SR_consumed><div class=IEntry><a href="../files/util/mxEventObject-php.html#mxEventObject.consumed" target=_parent class=ISymbol>consumed</a>, <span class=IParent>mxEventObject</span></div></div><div class=SRResult id=SR_createIds><div class=IEntry><a href="../files/model/mxGraphModel-php.html#mxGraphModel.createIds" target=_parent class=ISymbol>createIds</a>, <span class=IParent>mxGraphModel</span></div></div><div class=SRResult id=SR_current><div class=IEntry><a href="../files/util/mxLog-php.html#mxLog.current" target=_parent class=ISymbol>current</a>, <span class=IParent>mxLog</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
    -document.getElementById("Loading").style.display="none";
    -document.getElementById("NoMatches").style.display="none";
    -var searchResults = new SearchResults("searchResults", "HTML");
    -searchResults.Search();
    ---></script></div><script language=JavaScript><!--
    -if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
    \ No newline at end of file
    diff --git a/docs/php-api/search/VariablesD.html b/docs/php-api/search/VariablesD.html
    deleted file mode 100644
    index 576dfe8ec..000000000
    --- a/docs/php-api/search/VariablesD.html
    +++ /dev/null
    @@ -1,20 +0,0 @@
    -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
    -
    -<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script></head><body class="PopupSearchResultsPage" onLoad="NDOnLoad()"><script language=JavaScript><!--
    -if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script>
    -
    -<!--  Generated by Natural Docs, version 1.51 -->
    -<!--  http://www.naturaldocs.org  -->
    -
    -<!-- saved from url=(0026)http://www.naturaldocs.org -->
    -
    -
    -
    -
    -<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_DEFAULT_undFONTFAMILY><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.DEFAULT_FONTFAMILY" target=_parent class=ISymbol>DEFAULT_FONTFAMILY</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_DEFAULT_undFONTSIZE><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.DEFAULT_FONTSIZE" target=_parent class=ISymbol>DEFAULT_FONTSIZE</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_DEFAULT_undIMAGESIZE><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.DEFAULT_IMAGESIZE" target=_parent class=ISymbol>DEFAULT_IMAGESIZE</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_DEFAULT_undLINESPACING><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.DEFAULT_LINESPACING" target=_parent class=ISymbol>DEFAULT_LINESPACING</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_DEFAULT_undMARKERSIZE><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.DEFAULT_MARKERSIZE" target=_parent class=ISymbol>DEFAULT_MARKERSIZE</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_DEFAULT_undSTARTSIZE><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.DEFAULT_STARTSIZE" target=_parent class=ISymbol>DEFAULT_STARTSIZE</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_defaultLoopStyle><div class=IEntry><a href="../files/view/mxGraph-php.html#mxGraph.defaultLoopStyle" target=_parent class=ISymbol>defaultLoopStyle</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_DEG_undPER_undRAD><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.DEG_PER_RAD" target=_parent class=ISymbol>DEG_PER_RAD</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_DIRECTION_undEAST><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.DIRECTION_EAST" target=_parent class=ISymbol>DIRECTION_EAST</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_DIRECTION_undNORTH><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.DIRECTION_NORTH" target=_parent class=ISymbol>DIRECTION_NORTH</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_DIRECTION_undSOUTH><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.DIRECTION_SOUTH" target=_parent class=ISymbol>DIRECTION_SOUTH</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_DIRECTION_undWEST><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.DIRECTION_WEST" target=_parent class=ISymbol>DIRECTION_WEST</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_document><div class=IEntry><a href="../files/io/mxCodec-php.html#mxCodec.document" target=_parent class=ISymbol>document</a>, <span class=IParent>mxCodec</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
    -document.getElementById("Loading").style.display="none";
    -document.getElementById("NoMatches").style.display="none";
    -var searchResults = new SearchResults("searchResults", "HTML");
    -searchResults.Search();
    ---></script></div><script language=JavaScript><!--
    -if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
    \ No newline at end of file
    diff --git a/docs/php-api/search/VariablesE.html b/docs/php-api/search/VariablesE.html
    deleted file mode 100644
    index d37b5f914..000000000
    --- a/docs/php-api/search/VariablesE.html
    +++ /dev/null
    @@ -1,20 +0,0 @@
    -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
    -
    -<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script></head><body class="PopupSearchResultsPage" onLoad="NDOnLoad()"><script language=JavaScript><!--
    -if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script>
    -
    -<!--  Generated by Natural Docs, version 1.51 -->
    -<!--  http://www.naturaldocs.org  -->
    -
    -<!-- saved from url=(0026)http://www.naturaldocs.org -->
    -
    -
    -
    -
    -<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_edge><div class=IEntry><a href="../files/model/mxCell-php.html#mxCell.edge" target=_parent class=ISymbol>edge</a>, <span class=IParent>mxCell</span></div></div><div class=SRResult id=SR_edges><div class=IEntry><a href="../files/model/mxCell-php.html#mxCell.edges" target=_parent class=ISymbol>edges</a>, <span class=IParent>mxCell</span></div></div><div class=SRResult id=SR_EDGESTYLE_undENTITY_undRELATION><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.EDGESTYLE_ENTITY_RELATION" target=_parent class=ISymbol>EDGESTYLE_ENTITY_RELATION</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_EDGESTYLE_undLOOP><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.EDGESTYLE_LOOP" target=_parent class=ISymbol>EDGESTYLE_LOOP</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_EDGESTYLE_undSIDETOSIDE><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.EDGESTYLE_SIDETOSIDE" target=_parent class=ISymbol>EDGESTYLE_SIDETOSIDE</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_EDGESTYLE_undTOPTOBOTTOM><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.EDGESTYLE_TOPTOBOTTOM" target=_parent class=ISymbol>EDGESTYLE_TOPTOBOTTOM</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_ELBOW_undHORIZONTAL><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.ELBOW_HORIZONTAL" target=_parent class=ISymbol>ELBOW_HORIZONTAL</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_ELBOW_undVERTICAL><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.ELBOW_VERTICAL" target=_parent class=ISymbol>ELBOW_VERTICAL</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_ElbowConnector><div class=IEntry><a href="../files/view/mxEdgeStyle-php.html#mxEdgeStyle.ElbowConnector" target=_parent class=ISymbol>ElbowConnector</a>, <span class=IParent>mxEdgeStyle</span></div></div><div class=SRResult id=SR_elements><div class=IEntry><a href="../files/io/mxCodec-php.html#mxCodec.elements" target=_parent class=ISymbol>elements</a>, <span class=IParent>mxCodec</span></div></div><div class=SRResult id=SR_EllipsePerimeter><div class=IEntry><a href="../files/view/mxPerimeter-php.html#mxPerimeter.EllipsePerimeter" target=_parent class=ISymbol>EllipsePerimeter</a>, <span class=IParent>mxPerimeter</span></div></div><div class=SRResult id=SR_EMPTY_undPOINT><div class=IEntry><a href="../files/view/mxGraphView-php.html#mxGraphView.EMPTY_POINT" target=_parent class=ISymbol>EMPTY_POINT</a>, <span class=IParent>mxGraphView</span></div></div><div class=SRResult id=SR_enableTtf><div class=IEntry><a href="../files/canvas/mxGdCanvas-php.html#mxGdCanvas.enableTtf" target=_parent class=ISymbol>enableTtf</a>, <span class=IParent>mxGdCanvas</span></div></div><div class=SRResult id=SR_encodeDefaults><div class=IEntry><a href="../files/io/mxCodec-php.html#mxCodec.encodeDefaults" target=_parent class=ISymbol>encodeDefaults</a>, <span class=IParent>mxCodec</span></div></div><div class=SRResult id=SR_ENTITY_undSEGMENT><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.ENTITY_SEGMENT" target=_parent class=ISymbol>ENTITY_SEGMENT</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_EntityRelation><div class=IEntry><a href="../files/view/mxEdgeStyle-php.html#mxEdgeStyle.EntityRelation" target=_parent class=ISymbol>EntityRelation</a>, <span class=IParent>mxEdgeStyle</span></div></div><div class=SRResult id=SR_eventListeners><div class=IEntry><a href="../files/util/mxEventSource-php.html#mxEventSource.eventListeners" target=_parent class=ISymbol>eventListeners</a>, <span class=IParent>mxEventSource</span></div></div><div class=SRResult id=SR_exclude><div class=IEntry><a href="../files/io/mxObjectCodec-php.html#mxObjectCodec.exclude" target=_parent class=ISymbol>exclude</a>, <span class=IParent>mxObjectCodec</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
    -document.getElementById("Loading").style.display="none";
    -document.getElementById("NoMatches").style.display="none";
    -var searchResults = new SearchResults("searchResults", "HTML");
    -searchResults.Search();
    ---></script></div><script language=JavaScript><!--
    -if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
    \ No newline at end of file
    diff --git a/docs/php-api/search/VariablesF.html b/docs/php-api/search/VariablesF.html
    deleted file mode 100644
    index 0d35bf9ba..000000000
    --- a/docs/php-api/search/VariablesF.html
    +++ /dev/null
    @@ -1,20 +0,0 @@
    -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
    -
    -<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script></head><body class="PopupSearchResultsPage" onLoad="NDOnLoad()"><script language=JavaScript><!--
    -if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script>
    -
    -<!--  Generated by Natural Docs, version 1.51 -->
    -<!--  http://www.naturaldocs.org  -->
    -
    -<!-- saved from url=(0026)http://www.naturaldocs.org -->
    -
    -
    -
    -
    -<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_FONT_undBOLD><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.FONT_BOLD" target=_parent class=ISymbol>FONT_BOLD</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_FONT_undITALIC><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.FONT_ITALIC" target=_parent class=ISymbol>FONT_ITALIC</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_FONT_undUNDERLINE><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.FONT_UNDERLINE" target=_parent class=ISymbol>FONT_UNDERLINE</a>, <span class=IParent>mxConstants</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
    -document.getElementById("Loading").style.display="none";
    -document.getElementById("NoMatches").style.display="none";
    -var searchResults = new SearchResults("searchResults", "HTML");
    -searchResults.Search();
    ---></script></div><script language=JavaScript><!--
    -if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
    \ No newline at end of file
    diff --git a/docs/php-api/search/VariablesG.html b/docs/php-api/search/VariablesG.html
    deleted file mode 100644
    index 90ac64138..000000000
    --- a/docs/php-api/search/VariablesG.html
    +++ /dev/null
    @@ -1,20 +0,0 @@
    -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
    -
    -<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script></head><body class="PopupSearchResultsPage" onLoad="NDOnLoad()"><script language=JavaScript><!--
    -if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script>
    -
    -<!--  Generated by Natural Docs, version 1.51 -->
    -<!--  http://www.naturaldocs.org  -->
    -
    -<!-- saved from url=(0026)http://www.naturaldocs.org -->
    -
    -
    -
    -
    -<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_geometry><div class=IEntry><a href="../files/model/mxCell-php.html#mxCell.geometry" target=_parent class=ISymbol>geometry</a>, <span class=IParent>mxCell</span></div></div><div class=SRResult id=SR_graph><div class=IEntry><a href="../files/view/mxGraphView-php.html#mxGraphView.graph" target=_parent class=ISymbol>graph</a>, <span class=IParent>mxGraphView</span></div></div><div class=SRResult id=SR_GRAPH_undMODEL_undCHANGED><div class=IEntry><a href="../files/util/mxEvent-php.html#mxEvent.GRAPH_MODEL_CHANGED" target=_parent class=ISymbol>GRAPH_MODEL_CHANGED</a>, <span class=IParent>mxEvent</span></div></div><div class=SRResult id=SR_graphBounds><div class=IEntry><a href="../files/view/mxGraphView-php.html#mxGraphView.graphBounds" target=_parent class=ISymbol>graphBounds</a>, <span class=IParent>mxGraphView</span></div></div><div class=SRResult id=SR_gridSize><div class=IEntry><a href="../files/view/mxGraph-php.html#mxGraph.gridSize" target=_parent class=ISymbol>gridSize</a>, <span class=IParent>mxGraph</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
    -document.getElementById("Loading").style.display="none";
    -document.getElementById("NoMatches").style.display="none";
    -var searchResults = new SearchResults("searchResults", "HTML");
    -searchResults.Search();
    ---></script></div><script language=JavaScript><!--
    -if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
    \ No newline at end of file
    diff --git a/docs/php-api/search/VariablesH.html b/docs/php-api/search/VariablesH.html
    deleted file mode 100644
    index bd4898ce9..000000000
    --- a/docs/php-api/search/VariablesH.html
    +++ /dev/null
    @@ -1,20 +0,0 @@
    -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
    -
    -<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script></head><body class="PopupSearchResultsPage" onLoad="NDOnLoad()"><script language=JavaScript><!--
    -if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script>
    -
    -<!--  Generated by Natural Docs, version 1.51 -->
    -<!--  http://www.naturaldocs.org  -->
    -
    -<!-- saved from url=(0026)http://www.naturaldocs.org -->
    -
    -
    -
    -
    -<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_height><div class=IEntry><a href="javascript:searchResults.Toggle('SR_height')" class=ISymbol>height</a><div class=ISubIndex><a href="../files/canvas/mxGdCanvas-php.html#mxGdCanvas.height" target=_parent class=IParent>mxGdCanvas</a><a href="../files/util/mxRectangle-php.html#mxRectangle.height" target=_parent class=IParent>mxRectangle</a></div></div></div><div class=SRResult id=SR_html><div class=IEntry><a href="../files/canvas/mxHtmlCanvas-php.html#mxHtmlCanvas.html" target=_parent class=ISymbol>html</a>, <span class=IParent>mxHtmlCanvas</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
    -document.getElementById("Loading").style.display="none";
    -document.getElementById("NoMatches").style.display="none";
    -var searchResults = new SearchResults("searchResults", "HTML");
    -searchResults.Search();
    ---></script></div><script language=JavaScript><!--
    -if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
    \ No newline at end of file
    diff --git a/docs/php-api/search/VariablesI.html b/docs/php-api/search/VariablesI.html
    deleted file mode 100644
    index a8de7ab62..000000000
    --- a/docs/php-api/search/VariablesI.html
    +++ /dev/null
    @@ -1,20 +0,0 @@
    -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
    -
    -<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script></head><body class="PopupSearchResultsPage" onLoad="NDOnLoad()"><script language=JavaScript><!--
    -if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script>
    -
    -<!--  Generated by Natural Docs, version 1.51 -->
    -<!--  http://www.naturaldocs.org  -->
    -
    -<!-- saved from url=(0026)http://www.naturaldocs.org -->
    -
    -
    -
    -
    -<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_id><div class=IEntry><a href="../files/model/mxCell-php.html#mxCell.id" target=_parent class=ISymbol>id</a>, <span class=IParent>mxCell</span></div></div><div class=SRResult id=SR_idrefs><div class=IEntry><a href="../files/io/mxObjectCodec-php.html#mxObjectCodec.idrefs" target=_parent class=ISymbol>idrefs</a>, <span class=IParent>mxObjectCodec</span></div></div><div class=SRResult id=SR_image><div class=IEntry><a href="../files/canvas/mxGdCanvas-php.html#mxGdCanvas.image" target=_parent class=ISymbol>image</a>, <span class=IParent>mxGdCanvas</span></div></div><div class=SRResult id=SR_imageBundles><div class=IEntry><a href="../files/view/mxGraph-php.html#mxGraph.imageBundles" target=_parent class=ISymbol>imageBundles</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_imageCache><div class=IEntry><a href="../files/canvas/mxGdCanvas-php.html#mxGdCanvas.imageCache" target=_parent class=ISymbol>imageCache</a>, <span class=IParent>mxGdCanvas</span></div></div><div class=SRResult id=SR_images><div class=IEntry><a href="../files/util/mxImageBundle-php.html#mxImageBundle.images" target=_parent class=ISymbol>images</a>, <span class=IParent>mxImageBundle</span></div></div><div class=SRResult id=SR_invalid><div class=IEntry><a href="../files/view/mxCellState-php.html#mxCellState.invalid" target=_parent class=ISymbol>invalid</a>, <span class=IParent>mxCellState</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
    -document.getElementById("Loading").style.display="none";
    -document.getElementById("NoMatches").style.display="none";
    -var searchResults = new SearchResults("searchResults", "HTML");
    -searchResults.Search();
    ---></script></div><script language=JavaScript><!--
    -if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
    \ No newline at end of file
    diff --git a/docs/php-api/search/VariablesL.html b/docs/php-api/search/VariablesL.html
    deleted file mode 100644
    index d8246ccb8..000000000
    --- a/docs/php-api/search/VariablesL.html
    +++ /dev/null
    @@ -1,20 +0,0 @@
    -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
    -
    -<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script></head><body class="PopupSearchResultsPage" onLoad="NDOnLoad()"><script language=JavaScript><!--
    -if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script>
    -
    -<!--  Generated by Natural Docs, version 1.51 -->
    -<!--  http://www.naturaldocs.org  -->
    -
    -<!-- saved from url=(0026)http://www.naturaldocs.org -->
    -
    -
    -
    -
    -<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_LABEL_undINSET><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.LABEL_INSET" target=_parent class=ISymbol>LABEL_INSET</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_labelBounds><div class=IEntry><a href="../files/view/mxCellState-php.html#mxCellState.labelBounds" target=_parent class=ISymbol>labelBounds</a>, <span class=IParent>mxCellState</span></div></div><div class=SRResult id=SR_labelsVisible><div class=IEntry><a href="../files/view/mxGraph-php.html#mxGraph.labelsVisible" target=_parent class=ISymbol>labelsVisible</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_length><div class=IEntry><a href="../files/view/mxCellState-php.html#mxCellState.length" target=_parent class=ISymbol>length</a>, <span class=IParent>mxCellState</span></div></div><div class=SRResult id=SR_level_unddebug><div class=IEntry><a href="../files/util/mxLog-php.html#mxLog.level_debug" target=_parent class=ISymbol>level_debug</a>, <span class=IParent>mxLog</span></div></div><div class=SRResult id=SR_level_underror><div class=IEntry><a href="../files/util/mxLog-php.html#mxLog.level_error" target=_parent class=ISymbol>level_error</a>, <span class=IParent>mxLog</span></div></div><div class=SRResult id=SR_level_undfine><div class=IEntry><a href="../files/util/mxLog-php.html#mxLog.level_fine" target=_parent class=ISymbol>level_fine</a>, <span class=IParent>mxLog</span></div></div><div class=SRResult id=SR_level_undinfo><div class=IEntry><a href="../files/util/mxLog-php.html#mxLog.level_info" target=_parent class=ISymbol>level_info</a>, <span class=IParent>mxLog</span></div></div><div class=SRResult id=SR_level_undwarn><div class=IEntry><a href="../files/util/mxLog-php.html#mxLog.level_warn" target=_parent class=ISymbol>level_warn</a>, <span class=IParent>mxLog</span></div></div><div class=SRResult id=SR_logfiles><div class=IEntry><a href="../files/util/mxLog-php.html#mxLog.logfiles" target=_parent class=ISymbol>logfiles</a>, <span class=IParent>mxLog</span></div></div><div class=SRResult id=SR_Loop><div class=IEntry><a href="../files/view/mxEdgeStyle-php.html#mxEdgeStyle.Loop" target=_parent class=ISymbol>Loop</a>, <span class=IParent>mxEdgeStyle</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
    -document.getElementById("Loading").style.display="none";
    -document.getElementById("NoMatches").style.display="none";
    -var searchResults = new SearchResults("searchResults", "HTML");
    -searchResults.Search();
    ---></script></div><script language=JavaScript><!--
    -if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
    \ No newline at end of file
    diff --git a/docs/php-api/search/VariablesM.html b/docs/php-api/search/VariablesM.html
    deleted file mode 100644
    index 7b1ac3b08..000000000
    --- a/docs/php-api/search/VariablesM.html
    +++ /dev/null
    @@ -1,20 +0,0 @@
    -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
    -
    -<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script></head><body class="PopupSearchResultsPage" onLoad="NDOnLoad()"><script language=JavaScript><!--
    -if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script>
    -
    -<!--  Generated by Natural Docs, version 1.51 -->
    -<!--  http://www.naturaldocs.org  -->
    -
    -<!-- saved from url=(0026)http://www.naturaldocs.org -->
    -
    -
    -
    -
    -<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_maintainEdgeParent><div class=IEntry><a href="../files/model/mxGraphModel-php.html#mxGraphModel.maintainEdgeParent" target=_parent class=ISymbol>maintainEdgeParent</a>, <span class=IParent>mxGraphModel</span></div></div><div class=SRResult id=SR_mapping><div class=IEntry><a href="../files/io/mxObjectCodec-php.html#mxObjectCodec.mapping" target=_parent class=ISymbol>mapping</a>, <span class=IParent>mxObjectCodec</span></div></div><div class=SRResult id=SR_MIN_undACTIVE_undREGION><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.MIN_ACTIVE_REGION" target=_parent class=ISymbol>MIN_ACTIVE_REGION</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_model><div class=IEntry><a href="../files/view/mxGraph-php.html#mxGraph.model" target=_parent class=ISymbol>model</a>, <span class=IParent>mxGraph</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
    -document.getElementById("Loading").style.display="none";
    -document.getElementById("NoMatches").style.display="none";
    -var searchResults = new SearchResults("searchResults", "HTML");
    -searchResults.Search();
    ---></script></div><script language=JavaScript><!--
    -if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
    \ No newline at end of file
    diff --git a/docs/php-api/search/VariablesN.html b/docs/php-api/search/VariablesN.html
    deleted file mode 100644
    index f93d3467e..000000000
    --- a/docs/php-api/search/VariablesN.html
    +++ /dev/null
    @@ -1,20 +0,0 @@
    -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
    -
    -<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script></head><body class="PopupSearchResultsPage" onLoad="NDOnLoad()"><script language=JavaScript><!--
    -if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script>
    -
    -<!--  Generated by Natural Docs, version 1.51 -->
    -<!--  http://www.naturaldocs.org  -->
    -
    -<!-- saved from url=(0026)http://www.naturaldocs.org -->
    -
    -
    -
    -
    -<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_name><div class=IEntry><a href="../files/util/mxEventObject-php.html#mxEventObject.name" target=_parent class=ISymbol>name</a>, <span class=IParent>mxEventObject</span></div></div><div class=SRResult id=SR_nextId><div class=IEntry><a href="../files/model/mxGraphModel-php.html#mxGraphModel.nextId" target=_parent class=ISymbol>nextId</a>, <span class=IParent>mxGraphModel</span></div></div><div class=SRResult id=SR_NONE><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.NONE" target=_parent class=ISymbol>NONE</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_NS_undSVG><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.NS_SVG" target=_parent class=ISymbol>NS_SVG</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_NS_undXHTML><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.NS_XHTML" target=_parent class=ISymbol>NS_XHTML</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_NS_undXLINK><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.NS_XLINK" target=_parent class=ISymbol>NS_XLINK</a>, <span class=IParent>mxConstants</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
    -document.getElementById("Loading").style.display="none";
    -document.getElementById("NoMatches").style.display="none";
    -var searchResults = new SearchResults("searchResults", "HTML");
    -searchResults.Search();
    ---></script></div><script language=JavaScript><!--
    -if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
    \ No newline at end of file
    diff --git a/docs/php-api/search/VariablesO.html b/docs/php-api/search/VariablesO.html
    deleted file mode 100644
    index a061ebcae..000000000
    --- a/docs/php-api/search/VariablesO.html
    +++ /dev/null
    @@ -1,20 +0,0 @@
    -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
    -
    -<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script></head><body class="PopupSearchResultsPage" onLoad="NDOnLoad()"><script language=JavaScript><!--
    -if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script>
    -
    -<!--  Generated by Natural Docs, version 1.51 -->
    -<!--  http://www.naturaldocs.org  -->
    -
    -<!-- saved from url=(0026)http://www.naturaldocs.org -->
    -
    -
    -
    -
    -<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_objects><div class=IEntry><a href="../files/io/mxCodec-php.html#mxCodec.objects" target=_parent class=ISymbol>objects</a>, <span class=IParent>mxCodec</span></div></div><div class=SRResult id=SR_offset><div class=IEntry><a href="../files/model/mxGeometry-php.html#mxGeometry.offset" target=_parent class=ISymbol>offset</a>, <span class=IParent>mxGeometry</span></div></div><div class=SRResult id=SR_origin><div class=IEntry><a href="../files/view/mxCellState-php.html#mxCellState.origin" target=_parent class=ISymbol>origin</a>, <span class=IParent>mxCellState</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
    -document.getElementById("Loading").style.display="none";
    -document.getElementById("NoMatches").style.display="none";
    -var searchResults = new SearchResults("searchResults", "HTML");
    -searchResults.Search();
    ---></script></div><script language=JavaScript><!--
    -if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
    \ No newline at end of file
    diff --git a/docs/php-api/search/VariablesP.html b/docs/php-api/search/VariablesP.html
    deleted file mode 100644
    index 28681be67..000000000
    --- a/docs/php-api/search/VariablesP.html
    +++ /dev/null
    @@ -1,20 +0,0 @@
    -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
    -
    -<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script></head><body class="PopupSearchResultsPage" onLoad="NDOnLoad()"><script language=JavaScript><!--
    -if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script>
    -
    -<!--  Generated by Natural Docs, version 1.51 -->
    -<!--  http://www.naturaldocs.org  -->
    -
    -<!-- saved from url=(0026)http://www.naturaldocs.org -->
    -
    -
    -
    -
    -<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_parent><div class=IEntry><a href="../files/model/mxCell-php.html#mxCell.parent" target=_parent class=ISymbol>parent</a>, <span class=IParent>mxCell</span></div></div><div class=SRResult id=SR_parser><div class=IEntry><a href="../files/reader/mxGraphViewImageReader-php.html#mxGraphViewImageReader.parser" target=_parent class=ISymbol>parser</a>, <span class=IParent>mxGraphViewImageReader</span></div></div><div class=SRResult id=SR_perimeter><div class=IEntry><a href="../files/view/mxConnectionConstraint-php.html#mxConnectionConstraint.perimeter" target=_parent class=ISymbol>perimeter</a>, <span class=IParent>mxConnectionConstraint</span></div></div><div class=SRResult id=SR_PERIMETER_undELLIPSE><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.PERIMETER_ELLIPSE" target=_parent class=ISymbol>PERIMETER_ELLIPSE</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_PERIMETER_undRECTANGLE><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.PERIMETER_RECTANGLE" target=_parent class=ISymbol>PERIMETER_RECTANGLE</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_PERIMETER_undRHOMBUS><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.PERIMETER_RHOMBUS" target=_parent class=ISymbol>PERIMETER_RHOMBUS</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_PERIMETER_undTRIANGLE><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.PERIMETER_TRIANGLE" target=_parent class=ISymbol>PERIMETER_TRIANGLE</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_point><div class=IEntry><a href="../files/view/mxConnectionConstraint-php.html#mxConnectionConstraint.point" target=_parent class=ISymbol>point</a>, <span class=IParent>mxConnectionConstraint</span></div></div><div class=SRResult id=SR_points><div class=IEntry><a href="../files/model/mxGeometry-php.html#mxGeometry.points" target=_parent class=ISymbol>points</a>, <span class=IParent>mxGeometry</span></div></div><div class=SRResult id=SR_printLog><div class=IEntry><a href="../files/util/mxLog-php.html#mxLog.printLog" target=_parent class=ISymbol>printLog</a>, <span class=IParent>mxLog</span></div></div><div class=SRResult id=SR_properties><div class=IEntry><a href="../files/util/mxEventObject-php.html#mxEventObject.properties" target=_parent class=ISymbol>properties</a>, <span class=IParent>mxEventObject</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
    -document.getElementById("Loading").style.display="none";
    -document.getElementById("NoMatches").style.display="none";
    -var searchResults = new SearchResults("searchResults", "HTML");
    -searchResults.Search();
    ---></script></div><script language=JavaScript><!--
    -if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
    \ No newline at end of file
    diff --git a/docs/php-api/search/VariablesR.html b/docs/php-api/search/VariablesR.html
    deleted file mode 100644
    index 388f2221a..000000000
    --- a/docs/php-api/search/VariablesR.html
    +++ /dev/null
    @@ -1,20 +0,0 @@
    -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
    -
    -<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script></head><body class="PopupSearchResultsPage" onLoad="NDOnLoad()"><script language=JavaScript><!--
    -if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script>
    -
    -<!--  Generated by Natural Docs, version 1.51 -->
    -<!--  http://www.naturaldocs.org  -->
    -
    -<!-- saved from url=(0026)http://www.naturaldocs.org -->
    -
    -
    -
    -
    -<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_RAD_undPER_undDEG><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.RAD_PER_DEG" target=_parent class=ISymbol>RAD_PER_DEG</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_RectanglePerimeter><div class=IEntry><a href="../files/view/mxPerimeter-php.html#mxPerimeter.RectanglePerimeter" target=_parent class=ISymbol>RectanglePerimeter</a>, <span class=IParent>mxPerimeter</span></div></div><div class=SRResult id=SR_relative><div class=IEntry><a href="../files/model/mxGeometry-php.html#mxGeometry.relative" target=_parent class=ISymbol>relative</a>, <span class=IParent>mxGeometry</span></div></div><div class=SRResult id=SR_reverse><div class=IEntry><a href="../files/io/mxObjectCodec-php.html#mxObjectCodec.reverse" target=_parent class=ISymbol>reverse</a>, <span class=IParent>mxObjectCodec</span></div></div><div class=SRResult id=SR_RhombusPerimeter><div class=IEntry><a href="../files/view/mxPerimeter-php.html#mxPerimeter.RhombusPerimeter" target=_parent class=ISymbol>RhombusPerimeter</a>, <span class=IParent>mxPerimeter</span></div></div><div class=SRResult id=SR_root><div class=IEntry><a href="../files/model/mxGraphModel-php.html#mxGraphModel.root" target=_parent class=ISymbol>root</a>, <span class=IParent>mxGraphModel</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
    -document.getElementById("Loading").style.display="none";
    -document.getElementById("NoMatches").style.display="none";
    -var searchResults = new SearchResults("searchResults", "HTML");
    -searchResults.Search();
    ---></script></div><script language=JavaScript><!--
    -if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
    \ No newline at end of file
    diff --git a/docs/php-api/search/VariablesS.html b/docs/php-api/search/VariablesS.html
    deleted file mode 100644
    index 03157d5de..000000000
    --- a/docs/php-api/search/VariablesS.html
    +++ /dev/null
    @@ -1,20 +0,0 @@
    -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
    -
    -<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script></head><body class="PopupSearchResultsPage" onLoad="NDOnLoad()"><script language=JavaScript><!--
    -if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script>
    -
    -<!--  Generated by Natural Docs, version 1.51 -->
    -<!--  http://www.naturaldocs.org  -->
    -
    -<!-- saved from url=(0026)http://www.naturaldocs.org -->
    -
    -
    -
    -
    -<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_scale><div class=IEntry><a href="javascript:searchResults.Toggle('SR_scale')" class=ISymbol>scale</a><div class=ISubIndex><a href="../files/view/mxGraphView-php.html#mxGraphView.scale" target=_parent class=IParent>mxGraphView</a><a href="../files/reader/mxGraphViewImageReader-php.html#mxGraphViewImageReader.scale" target=_parent class=IParent>mxGraphViewImageReader</a></div></div></div><div class=SRResult id=SR2_SCALE><div class=IEntry><a href="../files/util/mxEvent-php.html#mxEvent.SCALE" target=_parent class=ISymbol>SCALE</a>, <span class=IParent>mxEvent</span></div></div><div class=SRResult id=SR_segments><div class=IEntry><a href="../files/view/mxCellState-php.html#mxCellState.segments" target=_parent class=ISymbol>segments</a>, <span class=IParent>mxCellState</span></div></div><div class=SRResult id=SR_SHADOW_undOFFSETX><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.SHADOW_OFFSETX" target=_parent class=ISymbol>SHADOW_OFFSETX</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_SHADOW_undOFFSETY><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.SHADOW_OFFSETY" target=_parent class=ISymbol>SHADOW_OFFSETY</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_shadowColor><div class=IEntry><a href="../files/canvas/mxGdCanvas-php.html#mxGdCanvas.shadowColor" target=_parent class=ISymbol>shadowColor</a>, <span class=IParent>mxGdCanvas</span></div></div><div class=SRResult id=SR_SHAPE_undACTOR><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.SHAPE_ACTOR" target=_parent class=ISymbol>SHAPE_ACTOR</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_SHAPE_undARROW><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.SHAPE_ARROW" target=_parent class=ISymbol>SHAPE_ARROW</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_SHAPE_undCLOUD><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.SHAPE_CLOUD" target=_parent class=ISymbol>SHAPE_CLOUD</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_SHAPE_undCONNECTOR><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.SHAPE_CONNECTOR" target=_parent class=ISymbol>SHAPE_CONNECTOR</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_SHAPE_undCYLINDER><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.SHAPE_CYLINDER" target=_parent class=ISymbol>SHAPE_CYLINDER</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_SHAPE_undDOUBLE_undELLIPSE><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.SHAPE_DOUBLE_ELLIPSE" target=_parent class=ISymbol>SHAPE_DOUBLE_ELLIPSE</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_SHAPE_undELLIPSE><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.SHAPE_ELLIPSE" target=_parent class=ISymbol>SHAPE_ELLIPSE</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_SHAPE_undHEXAGON><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.SHAPE_HEXAGON" target=_parent class=ISymbol>SHAPE_HEXAGON</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_SHAPE_undIMAGE><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.SHAPE_IMAGE" target=_parent class=ISymbol>SHAPE_IMAGE</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_SHAPE_undLABEL><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.SHAPE_LABEL" target=_parent class=ISymbol>SHAPE_LABEL</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_SHAPE_undLINE><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.SHAPE_LINE" target=_parent class=ISymbol>SHAPE_LINE</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_SHAPE_undRECTANGLE><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.SHAPE_RECTANGLE" target=_parent class=ISymbol>SHAPE_RECTANGLE</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_SHAPE_undRHOMBUS><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.SHAPE_RHOMBUS" target=_parent class=ISymbol>SHAPE_RHOMBUS</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_SHAPE_undSWIMLANE><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.SHAPE_SWIMLANE" target=_parent class=ISymbol>SHAPE_SWIMLANE</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_SHAPE_undTRIANGLE><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.SHAPE_TRIANGLE" target=_parent class=ISymbol>SHAPE_TRIANGLE</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_SideToSide><div class=IEntry><a href="../files/view/mxEdgeStyle-php.html#mxEdgeStyle.SideToSide" target=_parent class=ISymbol>SideToSide</a>, <span class=IParent>mxEdgeStyle</span></div></div><div class=SRResult id=SR_source><div class=IEntry><a href="../files/model/mxCell-php.html#mxCell.source" target=_parent class=ISymbol>source</a>, <span class=IParent>mxCell</span></div></div><div class=SRResult id=SR_sourcePoint><div class=IEntry><a href="../files/model/mxGeometry-php.html#mxGeometry.sourcePoint" target=_parent class=ISymbol>sourcePoint</a>, <span class=IParent>mxGeometry</span></div></div><div class=SRResult id=SR_sSTYLE_undENTRY_undPERIMETER><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.sSTYLE_ENTRY_PERIMETER" target=_parent class=ISymbol>sSTYLE_ENTRY_PERIMETER</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_states><div class=IEntry><a href="../files/view/mxGraphView-php.html#mxGraphView.states" target=_parent class=ISymbol>states</a>, <span class=IParent>mxGraphView</span></div></div><div class=SRResult id=SR_style><div class=IEntry><a href="javascript:searchResults.Toggle('SR_style')" class=ISymbol>style</a><div class=ISubIndex><a href="../files/model/mxCell-php.html#mxCell.style" target=_parent class=IParent>mxCell</a><a href="../files/view/mxCellState-php.html#mxCellState.style" target=_parent class=IParent>mxCellState</a></div></div></div><div class=SRResult id=SR_STYLE_undALIGN><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_ALIGN" target=_parent class=ISymbol>STYLE_ALIGN</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undDASHED><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_DASHED" target=_parent class=ISymbol>STYLE_DASHED</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undDIRECTION><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_DIRECTION" target=_parent class=ISymbol>STYLE_DIRECTION</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undEDGE><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_EDGE" target=_parent class=ISymbol>STYLE_EDGE</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undELBOW><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_ELBOW" target=_parent class=ISymbol>STYLE_ELBOW</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undENDARROW><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_ENDARROW" target=_parent class=ISymbol>STYLE_ENDARROW</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undENDSIZE><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_ENDSIZE" target=_parent class=ISymbol>STYLE_ENDSIZE</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undENTRY_undX><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_ENTRY_X" target=_parent class=ISymbol>STYLE_ENTRY_X</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undENTRY_undY><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_ENTRY_Y" target=_parent class=ISymbol>STYLE_ENTRY_Y</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undEXIT_undPERIMETER><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_EXIT_PERIMETER" target=_parent class=ISymbol>STYLE_EXIT_PERIMETER</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undEXIT_undX><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_EXIT_X" target=_parent class=ISymbol>STYLE_EXIT_X</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undEXIT_undY><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_EXIT_Y" target=_parent class=ISymbol>STYLE_EXIT_Y</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undFILLCOLOR><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_FILLCOLOR" target=_parent class=ISymbol>STYLE_FILLCOLOR</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undFONTCOLOR><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_FONTCOLOR" target=_parent class=ISymbol>STYLE_FONTCOLOR</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undFONTFAMILY><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_FONTFAMILY" target=_parent class=ISymbol>STYLE_FONTFAMILY</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undFONTSIZE><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_FONTSIZE" target=_parent class=ISymbol>STYLE_FONTSIZE</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undFONTSTYLE><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_FONTSTYLE" target=_parent class=ISymbol>STYLE_FONTSTYLE</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undGRADIENT_undDIRECTION><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_GRADIENT_DIRECTION" target=_parent class=ISymbol>STYLE_GRADIENT_DIRECTION</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undGRADIENTCOLOR><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_GRADIENTCOLOR" target=_parent class=ISymbol>STYLE_GRADIENTCOLOR</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undHORIZONTAL><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_HORIZONTAL" target=_parent class=ISymbol>STYLE_HORIZONTAL</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undIMAGE><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_IMAGE" target=_parent class=ISymbol>STYLE_IMAGE</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undIMAGE_undALIGN><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_IMAGE_ALIGN" target=_parent class=ISymbol>STYLE_IMAGE_ALIGN</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undIMAGE_undBACKGROUND><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_IMAGE_BACKGROUND" target=_parent class=ISymbol>STYLE_IMAGE_BACKGROUND</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undIMAGE_undBORDER><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_IMAGE_BORDER" target=_parent class=ISymbol>STYLE_IMAGE_BORDER</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undIMAGE_undFLIPH><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_IMAGE_FLIPH" target=_parent class=ISymbol>STYLE_IMAGE_FLIPH</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undIMAGE_undFLIPV><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_IMAGE_FLIPV" target=_parent class=ISymbol>STYLE_IMAGE_FLIPV</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undIMAGE_undHEIGHT><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_IMAGE_HEIGHT" target=_parent class=ISymbol>STYLE_IMAGE_HEIGHT</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undIMAGE_undVERTICALALIGN><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_IMAGE_VERTICALALIGN" target=_parent class=ISymbol>STYLE_IMAGE_VERTICALALIGN</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undIMAGE_undWIDTH><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_IMAGE_WIDTH" target=_parent class=ISymbol>STYLE_IMAGE_WIDTH</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undINDICATOR_undCOLOR><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_INDICATOR_COLOR" target=_parent class=ISymbol>STYLE_INDICATOR_COLOR</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undINDICATOR_undGRADIENTCOLOR><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_INDICATOR_GRADIENTCOLOR" target=_parent class=ISymbol>STYLE_INDICATOR_GRADIENTCOLOR</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undINDICATOR_undHEIGHT><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_INDICATOR_HEIGHT" target=_parent class=ISymbol>STYLE_INDICATOR_HEIGHT</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undINDICATOR_undIMAGE><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_INDICATOR_IMAGE" target=_parent class=ISymbol>STYLE_INDICATOR_IMAGE</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undINDICATOR_undSHAPE><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_INDICATOR_SHAPE" target=_parent class=ISymbol>STYLE_INDICATOR_SHAPE</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undINDICATOR_undSPACING><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_INDICATOR_SPACING" target=_parent class=ISymbol>STYLE_INDICATOR_SPACING</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undINDICATOR_undWIDTH><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_INDICATOR_WIDTH" target=_parent class=ISymbol>STYLE_INDICATOR_WIDTH</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undLABEL_undBACKGROUNDCOLOR><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_LABEL_BACKGROUNDCOLOR" target=_parent class=ISymbol>STYLE_LABEL_BACKGROUNDCOLOR</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undLABEL_undBORDERCOLOR><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_LABEL_BORDERCOLOR" target=_parent class=ISymbol>STYLE_LABEL_BORDERCOLOR</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undLABEL_undPOSITION><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_LABEL_POSITION" target=_parent class=ISymbol>STYLE_LABEL_POSITION</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undLOOP><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_LOOP" target=_parent class=ISymbol>STYLE_LOOP</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undNOEDGESTYLE><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_NOEDGESTYLE" target=_parent class=ISymbol>STYLE_NOEDGESTYLE</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undNOLABEL><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_NOLABEL" target=_parent class=ISymbol>STYLE_NOLABEL</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undOPACITY><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_OPACITY" target=_parent class=ISymbol>STYLE_OPACITY</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undORTHOGONAL><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_ORTHOGONAL" target=_parent class=ISymbol>STYLE_ORTHOGONAL</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undOVERFLOW><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_OVERFLOW" target=_parent class=ISymbol>STYLE_OVERFLOW</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undPERIMETER><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_PERIMETER" target=_parent class=ISymbol>STYLE_PERIMETER</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undPERIMETER_undSPACING><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_PERIMETER_SPACING" target=_parent class=ISymbol>STYLE_PERIMETER_SPACING</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undROTATION><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_ROTATION" target=_parent class=ISymbol>STYLE_ROTATION</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undROUNDED><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_ROUNDED" target=_parent class=ISymbol>STYLE_ROUNDED</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undROUTING_undCENTER_undX><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_ROUTING_CENTER_X" target=_parent class=ISymbol>STYLE_ROUTING_CENTER_X</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undROUTING_undCENTER_undY><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_ROUTING_CENTER_Y" target=_parent class=ISymbol>STYLE_ROUTING_CENTER_Y</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undSEGMENT><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_SEGMENT" target=_parent class=ISymbol>STYLE_SEGMENT</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undSEPARATORCOLOR><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_SEPARATORCOLOR" target=_parent class=ISymbol>STYLE_SEPARATORCOLOR</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undSHADOW><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_SHADOW" target=_parent class=ISymbol>STYLE_SHADOW</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undSHAPE><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_SHAPE" target=_parent class=ISymbol>STYLE_SHAPE</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undSOURCE_undPERIMETER_undSPACING><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_SOURCE_PERIMETER_SPACING" target=_parent class=ISymbol>STYLE_SOURCE_PERIMETER_SPACING</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undSPACING><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_SPACING" target=_parent class=ISymbol>STYLE_SPACING</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undSPACING_undBOTTOM><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_SPACING_BOTTOM" target=_parent class=ISymbol>STYLE_SPACING_BOTTOM</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undSPACING_undLEFT><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_SPACING_LEFT" target=_parent class=ISymbol>STYLE_SPACING_LEFT</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undSPACING_undRIGHT><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_SPACING_RIGHT" target=_parent class=ISymbol>STYLE_SPACING_RIGHT</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undSPACING_undTOP><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_SPACING_TOP" target=_parent class=ISymbol>STYLE_SPACING_TOP</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undSTARTARROW><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_STARTARROW" target=_parent class=ISymbol>STYLE_STARTARROW</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undSTARTSIZE><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_STARTSIZE" target=_parent class=ISymbol>STYLE_STARTSIZE</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undSTROKECOLOR><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_STROKECOLOR" target=_parent class=ISymbol>STYLE_STROKECOLOR</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undSTROKEWIDTH><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_STROKEWIDTH" target=_parent class=ISymbol>STYLE_STROKEWIDTH</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undSWIMLANE_undFILLCOLOR><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_SWIMLANE_FILLCOLOR" target=_parent class=ISymbol>STYLE_SWIMLANE_FILLCOLOR</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undSWIMLANE_undLINE><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_SWIMLANE_LINE" target=_parent class=ISymbol>STYLE_SWIMLANE_LINE</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undTARGET_undPERIMETER_undSPACING><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_TARGET_PERIMETER_SPACING" target=_parent class=ISymbol>STYLE_TARGET_PERIMETER_SPACING</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undTEXT_undOPACITY><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_TEXT_OPACITY" target=_parent class=ISymbol>STYLE_TEXT_OPACITY</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undVERTICAL_undALIGN><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_VERTICAL_ALIGN" target=_parent class=ISymbol>STYLE_VERTICAL_ALIGN</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undVERTICAL_undLABEL_undPOSITION><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_VERTICAL_LABEL_POSITION" target=_parent class=ISymbol>STYLE_VERTICAL_LABEL_POSITION</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_STYLE_undWHITE_undSPACE><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.STYLE_WHITE_SPACE" target=_parent class=ISymbol>STYLE_WHITE_SPACE</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_stylesheet><div class=IEntry><a href="../files/view/mxGraph-php.html#mxGraph.stylesheet" target=_parent class=ISymbol>stylesheet</a>, <span class=IParent>mxGraph</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
    -document.getElementById("Loading").style.display="none";
    -document.getElementById("NoMatches").style.display="none";
    -var searchResults = new SearchResults("searchResults", "HTML");
    -searchResults.Search();
    ---></script></div><script language=JavaScript><!--
    -if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
    \ No newline at end of file
    diff --git a/docs/php-api/search/VariablesT.html b/docs/php-api/search/VariablesT.html
    deleted file mode 100644
    index f4308a1b0..000000000
    --- a/docs/php-api/search/VariablesT.html
    +++ /dev/null
    @@ -1,20 +0,0 @@
    -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
    -
    -<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script></head><body class="PopupSearchResultsPage" onLoad="NDOnLoad()"><script language=JavaScript><!--
    -if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script>
    -
    -<!--  Generated by Natural Docs, version 1.51 -->
    -<!--  http://www.naturaldocs.org  -->
    -
    -<!-- saved from url=(0026)http://www.naturaldocs.org -->
    -
    -
    -
    -
    -<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_tab><div class=IEntry><a href="../files/util/mxLog-php.html#mxLog.tab" target=_parent class=ISymbol>tab</a>, <span class=IParent>mxLog</span></div></div><div class=SRResult id=SR_target><div class=IEntry><a href="../files/model/mxCell-php.html#mxCell.target" target=_parent class=ISymbol>target</a>, <span class=IParent>mxCell</span></div></div><div class=SRResult id=SR_targetPoint><div class=IEntry><a href="../files/model/mxGeometry-php.html#mxGeometry.targetPoint" target=_parent class=ISymbol>targetPoint</a>, <span class=IParent>mxGeometry</span></div></div><div class=SRResult id=SR_template><div class=IEntry><a href="../files/io/mxObjectCodec-php.html#mxObjectCodec.template" target=_parent class=ISymbol>template</a>, <span class=IParent>mxObjectCodec</span></div></div><div class=SRResult id=SR_terminalDistance><div class=IEntry><a href="../files/view/mxCellState-php.html#mxCellState.terminalDistance" target=_parent class=ISymbol>terminalDistance</a>, <span class=IParent>mxCellState</span></div></div><div class=SRResult id=SR_TopToBottom><div class=IEntry><a href="../files/view/mxEdgeStyle-php.html#mxEdgeStyle.TopToBottom" target=_parent class=ISymbol>TopToBottom</a>, <span class=IParent>mxEdgeStyle</span></div></div><div class=SRResult id=SR_translate><div class=IEntry><a href="../files/view/mxGraphView-php.html#mxGraphView.translate" target=_parent class=ISymbol>translate</a>, <span class=IParent>mxGraphView</span></div></div><div class=SRResult id=SR2_TRANSLATE><div class=IEntry><a href="../files/util/mxEvent-php.html#mxEvent.TRANSLATE" target=_parent class=ISymbol>TRANSLATE</a>, <span class=IParent>mxEvent</span></div></div><div class=SRResult id=SR_TRANSLATE_undCONTROL_undPOINTS><div class=IEntry><a href="../files/model/mxGeometry-php.html#mxGeometry.TRANSLATE_CONTROL_POINTS" target=_parent class=ISymbol>TRANSLATE_CONTROL_POINTS</a>, <span class=IParent>mxGeometry</span></div></div><div class=SRResult id=SR_TrianglePerimeter><div class=IEntry><a href="../files/view/mxPerimeter-php.html#mxPerimeter.TrianglePerimeter" target=_parent class=ISymbol>TrianglePerimeter</a>, <span class=IParent>mxPerimeter</span></div></div><div class=SRResult id=SR_TTF_undENABLED><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.TTF_ENABLED" target=_parent class=ISymbol>TTF_ENABLED</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_TTF_undSIZEFACTOR><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.TTF_SIZEFACTOR" target=_parent class=ISymbol>TTF_SIZEFACTOR</a>, <span class=IParent>mxConstants</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
    -document.getElementById("Loading").style.display="none";
    -document.getElementById("NoMatches").style.display="none";
    -var searchResults = new SearchResults("searchResults", "HTML");
    -searchResults.Search();
    ---></script></div><script language=JavaScript><!--
    -if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
    \ No newline at end of file
    diff --git a/docs/php-api/search/VariablesU.html b/docs/php-api/search/VariablesU.html
    deleted file mode 100644
    index 24a6aa0e9..000000000
    --- a/docs/php-api/search/VariablesU.html
    +++ /dev/null
    @@ -1,20 +0,0 @@
    -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
    -
    -<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script></head><body class="PopupSearchResultsPage" onLoad="NDOnLoad()"><script language=JavaScript><!--
    -if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script>
    -
    -<!--  Generated by Natural Docs, version 1.51 -->
    -<!--  http://www.naturaldocs.org  -->
    -
    -<!-- saved from url=(0026)http://www.naturaldocs.org -->
    -
    -
    -
    -
    -<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_updateLevel><div class=IEntry><a href="../files/model/mxGraphModel-php.html#mxGraphModel.updateLevel" target=_parent class=ISymbol>updateLevel</a>, <span class=IParent>mxGraphModel</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
    -document.getElementById("Loading").style.display="none";
    -document.getElementById("NoMatches").style.display="none";
    -var searchResults = new SearchResults("searchResults", "HTML");
    -searchResults.Search();
    ---></script></div><script language=JavaScript><!--
    -if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
    \ No newline at end of file
    diff --git a/docs/php-api/search/VariablesV.html b/docs/php-api/search/VariablesV.html
    deleted file mode 100644
    index 1f9cbfbf0..000000000
    --- a/docs/php-api/search/VariablesV.html
    +++ /dev/null
    @@ -1,20 +0,0 @@
    -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
    -
    -<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script></head><body class="PopupSearchResultsPage" onLoad="NDOnLoad()"><script language=JavaScript><!--
    -if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script>
    -
    -<!--  Generated by Natural Docs, version 1.51 -->
    -<!--  http://www.naturaldocs.org  -->
    -
    -<!-- saved from url=(0026)http://www.naturaldocs.org -->
    -
    -
    -
    -
    -<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_value><div class=IEntry><a href="../files/model/mxCell-php.html#mxCell.value" target=_parent class=ISymbol>value</a>, <span class=IParent>mxCell</span></div></div><div class=SRResult id=SR_values><div class=IEntry><a href="../files/view/mxStyleRegistry-php.html#mxStyleRegistry.values" target=_parent class=ISymbol>values</a>, <span class=IParent>mxStyleRegistry</span></div></div><div class=SRResult id=SR_vertex><div class=IEntry><a href="../files/model/mxCell-php.html#mxCell.vertex" target=_parent class=ISymbol>vertex</a>, <span class=IParent>mxCell</span></div></div><div class=SRResult id=SR_view><div class=IEntry><a href="javascript:searchResults.Toggle('SR_view')" class=ISymbol>view</a><div class=ISubIndex><a href="../files/view/mxCellState-php.html#mxCellState.view" target=_parent class=IParent>mxCellState</a><a href="../files/view/mxGraph-php.html#mxGraph.view" target=_parent class=IParent>mxGraph</a></div></div></div><div class=SRResult id=SR_visible><div class=IEntry><a href="../files/model/mxCell-php.html#mxCell.visible" target=_parent class=ISymbol>visible</a>, <span class=IParent>mxCell</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
    -document.getElementById("Loading").style.display="none";
    -document.getElementById("NoMatches").style.display="none";
    -var searchResults = new SearchResults("searchResults", "HTML");
    -searchResults.Search();
    ---></script></div><script language=JavaScript><!--
    -if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
    \ No newline at end of file
    diff --git a/docs/php-api/search/VariablesW.html b/docs/php-api/search/VariablesW.html
    deleted file mode 100644
    index deaecee64..000000000
    --- a/docs/php-api/search/VariablesW.html
    +++ /dev/null
    @@ -1,20 +0,0 @@
    -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
    -
    -<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script></head><body class="PopupSearchResultsPage" onLoad="NDOnLoad()"><script language=JavaScript><!--
    -if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script>
    -
    -<!--  Generated by Natural Docs, version 1.51 -->
    -<!--  http://www.naturaldocs.org  -->
    -
    -<!-- saved from url=(0026)http://www.naturaldocs.org -->
    -
    -
    -
    -
    -<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_W3C_undDEFAULT_undFONTFAMILY><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.W3C_DEFAULT_FONTFAMILY" target=_parent class=ISymbol>W3C_DEFAULT_FONTFAMILY</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_W3C_undSHADOWCOLOR><div class=IEntry><a href="../files/util/mxConstants-php.html#mxConstants.W3C_SHADOWCOLOR" target=_parent class=ISymbol>W3C_SHADOWCOLOR</a>, <span class=IParent>mxConstants</span></div></div><div class=SRResult id=SR_width><div class=IEntry><a href="../files/util/mxRectangle-php.html#mxRectangle.width" target=_parent class=ISymbol>width</a>, <span class=IParent>mxRectangle</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
    -document.getElementById("Loading").style.display="none";
    -document.getElementById("NoMatches").style.display="none";
    -var searchResults = new SearchResults("searchResults", "HTML");
    -searchResults.Search();
    ---></script></div><script language=JavaScript><!--
    -if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
    \ No newline at end of file
    diff --git a/docs/php-api/search/VariablesX.html b/docs/php-api/search/VariablesX.html
    deleted file mode 100644
    index 675afa946..000000000
    --- a/docs/php-api/search/VariablesX.html
    +++ /dev/null
    @@ -1,20 +0,0 @@
    -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
    -
    -<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script></head><body class="PopupSearchResultsPage" onLoad="NDOnLoad()"><script language=JavaScript><!--
    -if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script>
    -
    -<!--  Generated by Natural Docs, version 1.51 -->
    -<!--  http://www.naturaldocs.org  -->
    -
    -<!-- saved from url=(0026)http://www.naturaldocs.org -->
    -
    -
    -
    -
    -<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_x><div class=IEntry><a href="../files/util/mxPoint-php.html#mxPoint.x" target=_parent class=ISymbol>x</a>, <span class=IParent>mxPoint</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
    -document.getElementById("Loading").style.display="none";
    -document.getElementById("NoMatches").style.display="none";
    -var searchResults = new SearchResults("searchResults", "HTML");
    -searchResults.Search();
    ---></script></div><script language=JavaScript><!--
    -if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
    \ No newline at end of file
    diff --git a/docs/php-api/search/VariablesY.html b/docs/php-api/search/VariablesY.html
    deleted file mode 100644
    index dc3517575..000000000
    --- a/docs/php-api/search/VariablesY.html
    +++ /dev/null
    @@ -1,20 +0,0 @@
    -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
    -
    -<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script></head><body class="PopupSearchResultsPage" onLoad="NDOnLoad()"><script language=JavaScript><!--
    -if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script>
    -
    -<!--  Generated by Natural Docs, version 1.51 -->
    -<!--  http://www.naturaldocs.org  -->
    -
    -<!-- saved from url=(0026)http://www.naturaldocs.org -->
    -
    -
    -
    -
    -<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_y><div class=IEntry><a href="../files/util/mxPoint-php.html#mxPoint.y" target=_parent class=ISymbol>y</a>, <span class=IParent>mxPoint</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
    -document.getElementById("Loading").style.display="none";
    -document.getElementById("NoMatches").style.display="none";
    -var searchResults = new SearchResults("searchResults", "HTML");
    -searchResults.Search();
    ---></script></div><script language=JavaScript><!--
    -if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
    \ No newline at end of file
    diff --git a/docs/php-api/styles/main.css b/docs/php-api/styles/main.css
    deleted file mode 100644
    index 511703fc4..000000000
    --- a/docs/php-api/styles/main.css
    +++ /dev/null
    @@ -1,828 +0,0 @@
    -/*
    -   IMPORTANT: If you're editing this file in the output directory of one of
    -   your projects, your changes will be overwritten the next time you run
    -   Natural Docs.  Instead, copy this file to your project directory, make your
    -   changes, and you can use it with -s.  Even better would be to make a CSS
    -   file in your project directory with only your changes, which you can then
    -   use with -s [original style] [your changes].
    -
    -   On the other hand, if you're editing this file in the Natural Docs styles
    -   directory, the changes will automatically be applied to all your projects
    -   that use this style the next time Natural Docs is run on them.
    -
    -   This file is part of Natural Docs, which is Copyright © 2003-2010 Greg Valure.
    -   Natural Docs is licensed under version 3 of the GNU Affero General Public
    -   License (AGPL).  Refer to License.txt for the complete details.
    -
    -   This file may be distributed with documentation files generated by Natural Docs.
    -   Such documentation is not covered by Natural Docs' copyright and licensing,
    -   and may have its own copyright and distribution terms as decided by its author.
    -*/
    -
    -body {
    -    font: 10pt Verdana, Arial, sans-serif;
    -    color: #000000;
    -    margin: 0; padding: 0;
    -    }
    -
    -.ContentPage,
    -.IndexPage,
    -.FramedMenuPage {
    -    background-color: #E8E8E8;
    -    }
    -.FramedContentPage,
    -.FramedIndexPage,
    -.FramedSearchResultsPage,
    -.PopupSearchResultsPage {
    -    background-color: #FFFFFF;
    -    }
    -
    -
    -a:link,
    -a:visited { color: #900000; text-decoration: none }
    -a:hover { color: #900000; text-decoration: underline }
    -a:active { color: #FF0000; text-decoration: underline }
    -
    -td {
    -    vertical-align: top }
    -
    -img { border: 0;  }
    -
    -
    -/*
    -    Comment out this line to use web-style paragraphs (blank line between
    -    paragraphs, no indent) instead of print-style paragraphs (no blank line,
    -    indented.)
    -*/
    -p {
    -    text-indent: 5ex; margin: 0 }
    -
    -
    -/*  Opera doesn't break with just wbr, but will if you add this.  */
    -.Opera wbr:after {
    -	content: "\00200B";
    -	}
    -
    -
    -/*  Blockquotes are used as containers for things that may need to scroll.  */
    -blockquote {
    -    padding: 0;
    -    margin: 0;
    -    overflow: auto;
    -    }
    -
    -
    -.Firefox1 blockquote {
    -    padding-bottom: .5em;
    -    }
    -
    -/*  Turn off scrolling when printing.  */
    -@media print {
    -    blockquote {
    -        overflow: visible;
    -        }
    -    .IE blockquote {
    -        width: auto;
    -        }
    -    }
    -
    -
    -
    -#Menu {
    -    font-size: 9pt;
    -    padding: 10px 0 0 0;
    -    }
    -.ContentPage #Menu,
    -.IndexPage #Menu {
    -    position: absolute;
    -    top: 0;
    -    left: 0;
    -    width: 31ex;
    -    overflow: hidden;
    -    }
    -.ContentPage .Firefox #Menu,
    -.IndexPage .Firefox #Menu {
    -    width: 27ex;
    -    }
    -
    -
    -    .MTitle {
    -        font-size: 16pt; font-weight: bold; font-variant: small-caps;
    -        text-align: center;
    -        padding: 5px 10px 15px 10px;
    -        border-bottom: 1px dotted #000000;
    -        margin-bottom: 15px }
    -
    -    .MSubTitle {
    -        font-size: 9pt; font-weight: normal; font-variant: normal;
    -        margin-top: 1ex; margin-bottom: 5px }
    -
    -
    -    .MEntry a:link,
    -    .MEntry a:hover,
    -    .MEntry a:visited { color: #606060; margin-right: 0 }
    -    .MEntry a:active { color: #A00000; margin-right: 0 }
    -
    -
    -    .MGroup {
    -        font-variant: small-caps; font-weight: bold;
    -        margin: 1em 0 1em 10px;
    -        }
    -
    -    .MGroupContent {
    -        font-variant: normal; font-weight: normal }
    -
    -    .MGroup a:link,
    -    .MGroup a:hover,
    -    .MGroup a:visited { color: #545454; margin-right: 10px }
    -    .MGroup a:active { color: #A00000; margin-right: 10px }
    -
    -
    -    .MFile,
    -    .MText,
    -    .MLink,
    -    .MIndex {
    -        padding: 1px 17px 2px 10px;
    -        margin: .25em 0 .25em 0;
    -        }
    -
    -    .MText {
    -        font-size: 8pt; font-style: italic }
    -
    -    .MLink {
    -        font-style: italic }
    -
    -    #MSelected {
    -        color: #000000; background-color: #FFFFFF;
    -        /*  Replace padding with border.  */
    -        padding: 0 10px 0 10px;
    -        border-width: 1px 2px 2px 0; border-style: solid; border-color: #000000;
    -        margin-right: 5px;
    -        }
    -
    -    /*  Close off the left side when its in a group.  */
    -    .MGroup #MSelected {
    -        padding-left: 9px; border-left-width: 1px }
    -
    -    /*  A treat for Mozilla users.  Blatantly non-standard.  Will be replaced with CSS 3 attributes when finalized/supported.  */
    -    .Firefox #MSelected {
    -        -moz-border-radius-topright: 10px;
    -        -moz-border-radius-bottomright: 10px }
    -    .Firefox .MGroup #MSelected {
    -        -moz-border-radius-topleft: 10px;
    -        -moz-border-radius-bottomleft: 10px }
    -
    -
    -    #MSearchPanel {
    -        padding: 0px 6px;
    -        margin: .25em 0;
    -        }
    -
    -
    -    #MSearchField {
    -        font: italic 9pt Verdana, sans-serif;
    -        color: #606060;
    -        background-color: #E8E8E8;
    -        border: none;
    -        padding: 2px 4px;
    -        width: 100%;
    -        }
    -    /* Only Opera gets it right. */
    -    .Firefox #MSearchField,
    -    .IE #MSearchField,
    -    .Safari #MSearchField {
    -        width: 94%;
    -        }
    -    .Opera9 #MSearchField,
    -    .Konqueror #MSearchField {
    -        width: 97%;
    -        }
    -    .FramedMenuPage .Firefox #MSearchField,
    -    .FramedMenuPage .Safari #MSearchField,
    -    .FramedMenuPage .Konqueror #MSearchField {
    -        width: 98%;
    -        }
    -
    -    /* Firefox doesn't do this right in frames without #MSearchPanel added on.
    -        It's presence doesn't hurt anything other browsers. */
    -    #MSearchPanel.MSearchPanelInactive:hover #MSearchField {
    -        background-color: #FFFFFF;
    -        border: 1px solid #C0C0C0;
    -        padding: 1px 3px;
    -        }
    -    .MSearchPanelActive #MSearchField {
    -        background-color: #FFFFFF;
    -        border: 1px solid #C0C0C0;
    -        font-style: normal;
    -        padding: 1px 3px;
    -        }
    -
    -    #MSearchType {
    -        visibility: hidden;
    -        font: 8pt Verdana, sans-serif;
    -        width: 98%;
    -        padding: 0;
    -        border: 1px solid #C0C0C0;
    -        }
    -    .MSearchPanelActive #MSearchType,
    -    /*  As mentioned above, Firefox doesn't do this right in frames without #MSearchPanel added on. */
    -    #MSearchPanel.MSearchPanelInactive:hover #MSearchType,
    -    #MSearchType:focus {
    -        visibility: visible;
    -        color: #606060;
    -        }
    -    #MSearchType option#MSearchEverything {
    -        font-weight: bold;
    -        }
    -
    -    .Opera8 .MSearchPanelInactive:hover,
    -    .Opera8 .MSearchPanelActive {
    -        margin-left: -1px;
    -        }
    -
    -
    -    iframe#MSearchResults {
    -        width: 60ex;
    -        height: 15em;
    -        }
    -    #MSearchResultsWindow {
    -        display: none;
    -        position: absolute;
    -        left: 0; top: 0;
    -        border: 1px solid #000000;
    -        background-color: #E8E8E8;
    -        }
    -    #MSearchResultsWindowClose {
    -        font-weight: bold;
    -        font-size: 8pt;
    -        display: block;
    -        padding: 2px 5px;
    -        }
    -    #MSearchResultsWindowClose:link,
    -    #MSearchResultsWindowClose:visited {
    -        color: #000000;
    -        text-decoration: none;
    -        }
    -    #MSearchResultsWindowClose:active,
    -    #MSearchResultsWindowClose:hover {
    -        color: #800000;
    -        text-decoration: none;
    -        background-color: #F4F4F4;
    -        }
    -
    -
    -
    -
    -#Content {
    -    padding-bottom: 15px;
    -    }
    -
    -.ContentPage #Content {
    -    border-width: 0 0 1px 1px;
    -    border-style: solid;
    -    border-color: #000000;
    -    background-color: #FFFFFF;
    -    font-size: 9pt;  /* To make 31ex match the menu's 31ex. */
    -    margin-left: 31ex;
    -    }
    -.ContentPage .Firefox #Content {
    -    margin-left: 27ex;
    -    }
    -
    -
    -
    -    .CTopic {
    -        font-size: 10pt;
    -        margin-bottom: 3em;
    -        }
    -
    -
    -    .CTitle {
    -        font-size: 12pt; font-weight: bold;
    -        border-width: 0 0 1px 0; border-style: solid; border-color: #A0A0A0;
    -        margin: 0 15px .5em 15px }
    -
    -    .CGroup .CTitle {
    -        font-size: 16pt; font-variant: small-caps;
    -        padding-left: 15px; padding-right: 15px;
    -        border-width: 0 0 2px 0; border-color: #000000;
    -        margin-left: 0; margin-right: 0 }
    -
    -    .CClass .CTitle,
    -    .CInterface .CTitle,
    -    .CDatabase .CTitle,
    -    .CDatabaseTable .CTitle,
    -    .CSection .CTitle {
    -        font-size: 18pt;
    -        color: #FFFFFF; background-color: #A0A0A0;
    -        padding: 10px 15px 10px 15px;
    -        border-width: 2px 0; border-color: #000000;
    -        margin-left: 0; margin-right: 0 }
    -
    -    #MainTopic .CTitle {
    -        font-size: 20pt;
    -        color: #FFFFFF; background-color: #7070C0;
    -        padding: 10px 15px 10px 15px;
    -        border-width: 0 0 3px 0; border-color: #000000;
    -        margin-left: 0; margin-right: 0 }
    -
    -    .CBody {
    -        margin-left: 15px; margin-right: 15px }
    -
    -
    -    .CToolTip {
    -        position: absolute; visibility: hidden;
    -        left: 0; top: 0;
    -        background-color: #FFFFE0;
    -        padding: 5px;
    -        border-width: 1px 2px 2px 1px; border-style: solid; border-color: #000000;
    -        font-size: 8pt;
    -        }
    -
    -    .Opera .CToolTip {
    -        max-width: 98%;
    -        }
    -
    -    /*  Scrollbars would be useless.  */
    -    .CToolTip blockquote {
    -        overflow: hidden;
    -        }
    -    .IE6 .CToolTip blockquote {
    -        overflow: visible;
    -        }
    -
    -    .CHeading {
    -        font-weight: bold; font-size: 10pt;
    -        margin: 1.5em 0 .5em 0;
    -        }
    -
    -    .CBody pre {
    -        font: 10pt "Courier New", Courier, monospace;
    -	    background-color: #FCFCFC;
    -	    margin: 1em 35px;
    -	    padding: 10px 15px 10px 10px;
    -	    border-color: #E0E0E0 #E0E0E0 #E0E0E0 #E4E4E4;
    -	    border-width: 1px 1px 1px 6px;
    -	    border-style: dashed dashed dashed solid;
    -        }
    -
    -    .CBody ul {
    -        /*  I don't know why CBody's margin doesn't apply, but it's consistent across browsers so whatever.
    -             Reapply it here as padding.  */
    -        padding-left: 15px; padding-right: 15px;
    -        margin: .5em 5ex .5em 5ex;
    -        }
    -
    -    .CDescriptionList {
    -        margin: .5em 5ex 0 5ex }
    -
    -        .CDLEntry {
    -            font: 10pt "Courier New", Courier, monospace; color: #808080;
    -            padding-bottom: .25em;
    -            white-space: nowrap }
    -
    -        .CDLDescription {
    -            font-size: 10pt;  /*  For browsers that don't inherit correctly, like Opera 5.  */
    -            padding-bottom: .5em; padding-left: 5ex }
    -
    -
    -    .CTopic img {
    -        text-align: center;
    -        display: block;
    -        margin: 1em auto;
    -        }
    -    .CImageCaption {
    -        font-variant: small-caps;
    -        font-size: 8pt;
    -        color: #808080;
    -        text-align: center;
    -        position: relative;
    -        top: 1em;
    -        }
    -
    -    .CImageLink {
    -        color: #808080;
    -        font-style: italic;
    -        }
    -    a.CImageLink:link,
    -    a.CImageLink:visited,
    -    a.CImageLink:hover { color: #808080 }
    -
    -
    -
    -
    -
    -.Prototype {
    -    font: 10pt "Courier New", Courier, monospace;
    -    padding: 5px 3ex;
    -    border-width: 1px; border-style: solid;
    -    margin: 0 5ex 1.5em 5ex;
    -    }
    -
    -    .Prototype td {
    -        font-size: 10pt;
    -        }
    -
    -    .PDefaultValue,
    -    .PDefaultValuePrefix,
    -    .PTypePrefix {
    -        color: #8F8F8F;
    -        }
    -    .PTypePrefix {
    -        text-align: right;
    -        }
    -    .PAfterParameters {
    -        vertical-align: bottom;
    -        }
    -
    -    .IE .Prototype table {
    -        padding: 0;
    -        }
    -
    -    .CFunction .Prototype {
    -        background-color: #F4F4F4; border-color: #D0D0D0 }
    -    .CProperty .Prototype {
    -        background-color: #F4F4FF; border-color: #C0C0E8 }
    -    .CVariable .Prototype {
    -        background-color: #FFFFF0; border-color: #E0E0A0 }
    -
    -    .CClass .Prototype {
    -        border-width: 1px 2px 2px 1px; border-style: solid; border-color: #A0A0A0;
    -        background-color: #F4F4F4;
    -        }
    -    .CInterface .Prototype {
    -        border-width: 1px 2px 2px 1px; border-style: solid; border-color: #A0A0D0;
    -        background-color: #F4F4FF;
    -        }
    -
    -    .CDatabaseIndex .Prototype,
    -    .CConstant .Prototype {
    -        background-color: #D0D0D0; border-color: #000000 }
    -    .CType .Prototype,
    -    .CEnumeration .Prototype {
    -        background-color: #FAF0F0; border-color: #E0B0B0;
    -        }
    -    .CDatabaseTrigger .Prototype,
    -    .CEvent .Prototype,
    -    .CDelegate .Prototype {
    -        background-color: #F0FCF0; border-color: #B8E4B8 }
    -
    -    .CToolTip .Prototype {
    -        margin: 0 0 .5em 0;
    -        white-space: nowrap;
    -        }
    -
    -
    -
    -
    -
    -.Summary {
    -    margin: 1.5em 5ex 0 5ex }
    -
    -    .STitle {
    -        font-size: 12pt; font-weight: bold;
    -        margin-bottom: .5em }
    -
    -
    -    .SBorder {
    -        background-color: #FFFFF0;
    -        padding: 15px;
    -        border: 1px solid #C0C060 }
    -
    -    /* In a frame IE 6 will make them too long unless you set the width to 100%.  Without frames it will be correct without a width
    -        or slightly too long (but not enough to scroll) with a width.  This arbitrary weirdness simply astounds me.  IE 7 has the same
    -        problem with frames, haven't tested it without.  */
    -    .FramedContentPage .IE .SBorder {
    -        width: 100% }
    -
    -    /*  A treat for Mozilla users.  Blatantly non-standard.  Will be replaced with CSS 3 attributes when finalized/supported.  */
    -    .Firefox .SBorder {
    -        -moz-border-radius: 20px }
    -
    -
    -    .STable {
    -        font-size: 9pt; width: 100% }
    -
    -    .SEntry {
    -        width: 30% }
    -    .SDescription {
    -        width: 70% }
    -
    -
    -    .SMarked {
    -        background-color: #F8F8D8 }
    -
    -    .SDescription { padding-left: 2ex }
    -    .SIndent1 .SEntry { padding-left: 1.5ex }   .SIndent1 .SDescription { padding-left: 3.5ex }
    -    .SIndent2 .SEntry { padding-left: 3.0ex }   .SIndent2 .SDescription { padding-left: 5.0ex }
    -    .SIndent3 .SEntry { padding-left: 4.5ex }   .SIndent3 .SDescription { padding-left: 6.5ex }
    -    .SIndent4 .SEntry { padding-left: 6.0ex }   .SIndent4 .SDescription { padding-left: 8.0ex }
    -    .SIndent5 .SEntry { padding-left: 7.5ex }   .SIndent5 .SDescription { padding-left: 9.5ex }
    -
    -    .SDescription a { color: #800000}
    -    .SDescription a:active { color: #A00000 }
    -
    -    .SGroup td {
    -        padding-top: .5em; padding-bottom: .25em }
    -
    -    .SGroup .SEntry {
    -        font-weight: bold; font-variant: small-caps }
    -
    -    .SGroup .SEntry a { color: #800000 }
    -    .SGroup .SEntry a:active { color: #F00000 }
    -
    -
    -    .SMain td,
    -    .SClass td,
    -    .SDatabase td,
    -    .SDatabaseTable td,
    -    .SSection td {
    -        font-size: 10pt;
    -        padding-bottom: .25em }
    -
    -    .SClass td,
    -    .SDatabase td,
    -    .SDatabaseTable td,
    -    .SSection td {
    -        padding-top: 1em }
    -
    -    .SMain .SEntry,
    -    .SClass .SEntry,
    -    .SDatabase .SEntry,
    -    .SDatabaseTable .SEntry,
    -    .SSection .SEntry {
    -        font-weight: bold;
    -        }
    -
    -    .SMain .SEntry a,
    -    .SClass .SEntry a,
    -    .SDatabase .SEntry a,
    -    .SDatabaseTable .SEntry a,
    -    .SSection .SEntry a { color: #000000 }
    -
    -    .SMain .SEntry a:active,
    -    .SClass .SEntry a:active,
    -    .SDatabase .SEntry a:active,
    -    .SDatabaseTable .SEntry a:active,
    -    .SSection .SEntry a:active { color: #A00000 }
    -
    -
    -
    -
    -
    -.ClassHierarchy {
    -    margin: 0 15px 1em 15px }
    -
    -    .CHEntry {
    -        border-width: 1px 2px 2px 1px; border-style: solid; border-color: #A0A0A0;
    -        margin-bottom: 3px;
    -        padding: 2px 2ex;
    -        font-size: 10pt;
    -        background-color: #F4F4F4; color: #606060;
    -        }
    -
    -    .Firefox .CHEntry {
    -        -moz-border-radius: 4px;
    -        }
    -
    -    .CHCurrent .CHEntry {
    -        font-weight: bold;
    -        border-color: #000000;
    -        color: #000000;
    -        }
    -
    -    .CHChildNote .CHEntry {
    -        font-style: italic;
    -        font-size: 8pt;
    -        }
    -
    -    .CHIndent {
    -        margin-left: 3ex;
    -        }
    -
    -    .CHEntry a:link,
    -    .CHEntry a:visited,
    -    .CHEntry a:hover {
    -        color: #606060;
    -        }
    -    .CHEntry a:active {
    -        color: #800000;
    -        }
    -
    -
    -
    -
    -
    -#Index {
    -    background-color: #FFFFFF;
    -    }
    -
    -/*  As opposed to .PopupSearchResultsPage #Index  */
    -.IndexPage #Index,
    -.FramedIndexPage #Index,
    -.FramedSearchResultsPage #Index {
    -    padding: 15px;
    -    }
    -
    -.IndexPage #Index {
    -    border-width: 0 0 1px 1px;
    -    border-style: solid;
    -    border-color: #000000;
    -    font-size: 9pt;  /* To make 27ex match the menu's 27ex. */
    -    margin-left: 27ex;
    -    }
    -
    -
    -    .IPageTitle {
    -        font-size: 20pt; font-weight: bold;
    -        color: #FFFFFF; background-color: #7070C0;
    -        padding: 10px 15px 10px 15px;
    -        border-width: 0 0 3px 0; border-color: #000000; border-style: solid;
    -        margin: -15px -15px 0 -15px }
    -
    -    .FramedSearchResultsPage .IPageTitle {
    -        margin-bottom: 15px;
    -        }
    -
    -    .INavigationBar {
    -        font-size: 10pt;
    -        text-align: center;
    -        background-color: #FFFFF0;
    -        padding: 5px;
    -        border-bottom: solid 1px black;
    -        margin: 0 -15px 15px -15px;
    -        }
    -
    -    .INavigationBar a {
    -        font-weight: bold }
    -
    -    .IHeading {
    -        font-size: 16pt; font-weight: bold;
    -        padding: 2.5em 0 .5em 0;
    -        text-align: center;
    -        width: 3.5ex;
    -        }
    -    #IFirstHeading {
    -        padding-top: 0;
    -        }
    -
    -    .IEntry {
    -        font-size: 10pt;
    -        padding-left: 1ex;
    -        }
    -    .PopupSearchResultsPage .IEntry {
    -        font-size: 8pt;
    -        padding: 1px 5px;
    -        }
    -    .PopupSearchResultsPage .Opera9 .IEntry,
    -    .FramedSearchResultsPage .Opera9 .IEntry {
    -        text-align: left;
    -        }
    -    .FramedSearchResultsPage .IEntry {
    -        padding: 0;
    -        }
    -
    -    .ISubIndex {
    -        padding-left: 3ex; padding-bottom: .5em }
    -    .PopupSearchResultsPage .ISubIndex {
    -        display: none;
    -        }
    -
    -    /*  While it may cause some entries to look like links when they aren't, I found it's much easier to read the
    -         index if everything's the same color.  */
    -    .ISymbol {
    -        font-weight: bold; color: #900000  }
    -
    -    .IndexPage .ISymbolPrefix,
    -    .FramedIndexPage .ISymbolPrefix {
    -        font-size: 10pt;
    -        text-align: right;
    -        color: #C47C7C;
    -        background-color: #F8F8F8;
    -        border-right: 3px solid #E0E0E0;
    -        border-left: 1px solid #E0E0E0;
    -        padding: 0 1px 0 2px;
    -        }
    -    .PopupSearchResultsPage .ISymbolPrefix,
    -    .FramedSearchResultsPage .ISymbolPrefix {
    -        color: #900000;
    -        }
    -    .PopupSearchResultsPage .ISymbolPrefix {
    -        font-size: 8pt;
    -        }
    -
    -    .IndexPage #IFirstSymbolPrefix,
    -    .FramedIndexPage #IFirstSymbolPrefix {
    -        border-top: 1px solid #E0E0E0;
    -        }
    -    .IndexPage #ILastSymbolPrefix,
    -    .FramedIndexPage #ILastSymbolPrefix {
    -        border-bottom: 1px solid #E0E0E0;
    -        }
    -    .IndexPage #IOnlySymbolPrefix,
    -    .FramedIndexPage #IOnlySymbolPrefix {
    -        border-top: 1px solid #E0E0E0;
    -        border-bottom: 1px solid #E0E0E0;
    -        }
    -
    -    a.IParent,
    -    a.IFile {
    -        display: block;
    -        }
    -
    -    .PopupSearchResultsPage .SRStatus {
    -        padding: 2px 5px;
    -        font-size: 8pt;
    -        font-style: italic;
    -        }
    -    .FramedSearchResultsPage .SRStatus {
    -        font-size: 10pt;
    -        font-style: italic;
    -        }
    -
    -    .SRResult {
    -        display: none;
    -        }
    -
    -
    -
    -#Footer {
    -    font-size: 8pt;
    -    color: #989898;
    -    text-align: right;
    -    }
    -
    -#Footer p {
    -    text-indent: 0;
    -    margin-bottom: .5em;
    -    }
    -
    -.ContentPage #Footer,
    -.IndexPage #Footer {
    -    text-align: right;
    -    margin: 2px;
    -    }
    -
    -.FramedMenuPage #Footer {
    -    text-align: center;
    -    margin: 5em 10px 10px 10px;
    -    padding-top: 1em;
    -    border-top: 1px solid #C8C8C8;
    -    }
    -
    -    #Footer a:link,
    -    #Footer a:hover,
    -    #Footer a:visited { color: #989898 }
    -    #Footer a:active { color: #A00000 }
    -
    -
    -
    -.prettyprint .kwd { color: #800000; }  /* keywords */
    -
    -    .prettyprint.PDefaultValue .kwd,
    -    .prettyprint.PDefaultValuePrefix .kwd,
    -    .prettyprint.PTypePrefix .kwd {
    -        color: #C88F8F;
    -        }
    -
    -.prettyprint .com { color: #008000; }  /* comments */
    -
    -    .prettyprint.PDefaultValue .com,
    -    .prettyprint.PDefaultValuePrefix .com,
    -    .prettyprint.PTypePrefix .com {
    -        color: #8FC88F;
    -        }
    -
    -.prettyprint .str { color: #0000B0; }  /* strings */
    -.prettyprint .lit { color: #0000B0; }  /* literals */
    -
    -    .prettyprint.PDefaultValue .str,
    -    .prettyprint.PDefaultValuePrefix .str,
    -    .prettyprint.PTypePrefix .str,
    -    .prettyprint.PDefaultValue .lit,
    -    .prettyprint.PDefaultValuePrefix .lit,
    -    .prettyprint.PTypePrefix .lit {
    -        color: #8F8FC0;
    -        }
    -
    -.prettyprint .typ { color: #000000; }  /* types */
    -.prettyprint .pun { color: #000000; }  /* punctuation */
    -.prettyprint .pln { color: #000000; }  /* punctuation */
    -
    -    .prettyprint.PDefaultValue .typ,
    -    .prettyprint.PDefaultValuePrefix .typ,
    -    .prettyprint.PTypePrefix .typ,
    -    .prettyprint.PDefaultValue .pun,
    -    .prettyprint.PDefaultValuePrefix .pun,
    -    .prettyprint.PTypePrefix .pun,
    -    .prettyprint.PDefaultValue .pln,
    -    .prettyprint.PDefaultValuePrefix .pln,
    -    .prettyprint.PTypePrefix .pln {
    -        color: #8F8F8F;
    -        }
    -
    -.prettyprint .tag { color: #008; }
    -.prettyprint .atn { color: #606; }
    -.prettyprint .atv { color: #080; }
    -.prettyprint .dec { color: #606; }
    -
    diff --git a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGraph.html b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGraph.html
    index 8da05a790..5f1bda3fb 100644
    --- a/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGraph.html
    +++ b/dotnet/docs/html/classcom_1_1mxgraph_1_1mxGraph.html
    @@ -277,8 +277,8 @@ Public Member Functions</h2></td></tr>
     </table><table class="memberdecls">
     <tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-attribs"></a>
     Public Attributes</h2></td></tr>
    -<tr class="memitem:a12b4a8dcf881951589ccca36c7ebfccb"><td class="memItemLeft" align="right" valign="top">const String&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classcom_1_1mxgraph_1_1mxGraph.html#a12b4a8dcf881951589ccca36c7ebfccb">VERSION</a> = &quot;4.0.3&quot;</td></tr>
    -<tr class="memdesc:a12b4a8dcf881951589ccca36c7ebfccb"><td class="mdescLeft">&#160;</td><td class="mdescRight">Holds the version number of this release. Current version is 4.0.3.  <a href="#a12b4a8dcf881951589ccca36c7ebfccb">More...</a><br /></td></tr>
    +<tr class="memitem:a12b4a8dcf881951589ccca36c7ebfccb"><td class="memItemLeft" align="right" valign="top">const String&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classcom_1_1mxgraph_1_1mxGraph.html#a12b4a8dcf881951589ccca36c7ebfccb">VERSION</a> = &quot;4.0.4&quot;</td></tr>
    +<tr class="memdesc:a12b4a8dcf881951589ccca36c7ebfccb"><td class="mdescLeft">&#160;</td><td class="mdescRight">Holds the version number of this release. Current version is 4.0.4.  <a href="#a12b4a8dcf881951589ccca36c7ebfccb">More...</a><br /></td></tr>
     <tr class="separator:a12b4a8dcf881951589ccca36c7ebfccb"><td class="memSeparator" colspan="2">&#160;</td></tr>
     </table><table class="memberdecls">
     <tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pro-methods"></a>
    @@ -3890,12 +3890,12 @@ Properties</h2></td></tr>
     <div class="memproto">
           <table class="memname">
             <tr>
    -          <td class="memname">const String com.mxgraph.mxGraph.VERSION = &quot;4.0.3&quot;</td>
    +          <td class="memname">const String com.mxgraph.mxGraph.VERSION = &quot;4.0.4&quot;</td>
             </tr>
           </table>
     </div><div class="memdoc">
     
    -<p>Holds the version number of this release. Current version is 4.0.3. </p>
    +<p>Holds the version number of this release. Current version is 4.0.4. </p>
     
     </div>
     </div>
    diff --git a/dotnet/src/view/mxGraph.cs b/dotnet/src/view/mxGraph.cs
    index 17a0c3744..e47ddd3a8 100644
    --- a/dotnet/src/view/mxGraph.cs
    +++ b/dotnet/src/view/mxGraph.cs
    @@ -15,9 +15,9 @@ namespace com.mxgraph
         {
             /// <summary>
             /// Holds the version number of this release. Current version
    -        /// is 4.0.3.
    +        /// is 4.0.4.
             /// </summary>
    -        public const String VERSION = "4.0.3";
    +        public const String VERSION = "4.0.4";
     
             /// <summary>
             /// Holds the model that contains the cells to be displayed.
    diff --git a/index.html b/index.html
    index 787ab00ad..183887b20 100644
    --- a/index.html
    +++ b/index.html
    @@ -1,6 +1,6 @@
     <html>
     <head>
    -	<title>mxGraph 4.0.3</title>
    +	<title>mxGraph 4.0.4</title>
         <link rel="stylesheet" href="docs/css/manual-styles.css">
         <link rel="stylesheet" href="docs/css/manual-colors.css">
     </head>
    @@ -9,12 +9,12 @@
     <center>
     <img src="docs/images/mxgraph_logo.gif" alt="mxGraph"/><br/>
     <font size="-1"><i>
    -Version 4.0.3 &ndash; 26. July 2019
    +Version 4.0.4 &ndash; 20. August 2019
     </i></font>
     </center>
     <br/>
     <br/>
    -<h1>mxGraph 4.0.3</h1>
    +<h1>mxGraph 4.0.4</h1>
     <p>
     	mxGraph is a JavaScript diagramming library that enables interactive graph 
     	and charting applications to be quickly created that run natively in any
    diff --git a/java/build.xml b/java/build.xml
    index 5d8f7fe0f..dcdf2831b 100644
    --- a/java/build.xml
    +++ b/java/build.xml
    @@ -7,7 +7,7 @@
     <project name="mxgraph" default="all" basedir=".">
     
     	<property name="product.name"    value="mxGraph"/>
    -	<property name="product.version" value="4.0.3"/>
    +	<property name="product.version" value="4.0.4"/>
     	<property name="all.jar"         value="mxgraph-all.jar"/>
     	<property name="core.jar"        value="mxgraph-core.jar"/>
     	<property name="swing.jar"       value="mxgraph-swing.jar"/>
    diff --git a/java/docs/com/mxgraph/analysis/StructuralException.html b/java/docs/com/mxgraph/analysis/StructuralException.html
    index 934a7d6d2..2c623ea4f 100644
    --- a/java/docs/com/mxgraph/analysis/StructuralException.html
    +++ b/java/docs/com/mxgraph/analysis/StructuralException.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>StructuralException (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>StructuralException (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="StructuralException (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="StructuralException (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -250,7 +250,7 @@ extends java.lang.Exception</pre>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/analysis/class-use/StructuralException.html b/java/docs/com/mxgraph/analysis/class-use/StructuralException.html
    index 0f223ef26..fc6d14f50 100644
    --- a/java/docs/com/mxgraph/analysis/class-use/StructuralException.html
    +++ b/java/docs/com/mxgraph/analysis/class-use/StructuralException.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.analysis.StructuralException (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.analysis.StructuralException (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.analysis.StructuralException (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.analysis.StructuralException (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -235,7 +235,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/analysis/class-use/mxAnalysisGraph.html b/java/docs/com/mxgraph/analysis/class-use/mxAnalysisGraph.html
    index acdd4ff3f..d6286cc75 100644
    --- a/java/docs/com/mxgraph/analysis/class-use/mxAnalysisGraph.html
    +++ b/java/docs/com/mxgraph/analysis/class-use/mxAnalysisGraph.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.analysis.mxAnalysisGraph (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.analysis.mxAnalysisGraph (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.analysis.mxAnalysisGraph (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.analysis.mxAnalysisGraph (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -560,7 +560,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/analysis/class-use/mxConstantCostFunction.html b/java/docs/com/mxgraph/analysis/class-use/mxConstantCostFunction.html
    index ef21448cc..409e3dfae 100644
    --- a/java/docs/com/mxgraph/analysis/class-use/mxConstantCostFunction.html
    +++ b/java/docs/com/mxgraph/analysis/class-use/mxConstantCostFunction.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.analysis.mxConstantCostFunction (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.analysis.mxConstantCostFunction (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.analysis.mxConstantCostFunction (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.analysis.mxConstantCostFunction (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/analysis/class-use/mxDistanceCostFunction.html b/java/docs/com/mxgraph/analysis/class-use/mxDistanceCostFunction.html
    index 0c3dc1e05..590bc56ab 100644
    --- a/java/docs/com/mxgraph/analysis/class-use/mxDistanceCostFunction.html
    +++ b/java/docs/com/mxgraph/analysis/class-use/mxDistanceCostFunction.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.analysis.mxDistanceCostFunction (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.analysis.mxDistanceCostFunction (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.analysis.mxDistanceCostFunction (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.analysis.mxDistanceCostFunction (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/analysis/class-use/mxFibonacciHeap.Node.html b/java/docs/com/mxgraph/analysis/class-use/mxFibonacciHeap.Node.html
    index 6a905469f..c8ac1d99d 100644
    --- a/java/docs/com/mxgraph/analysis/class-use/mxFibonacciHeap.Node.html
    +++ b/java/docs/com/mxgraph/analysis/class-use/mxFibonacciHeap.Node.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.analysis.mxFibonacciHeap.Node (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.analysis.mxFibonacciHeap.Node (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.analysis.mxFibonacciHeap.Node (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.analysis.mxFibonacciHeap.Node (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -272,7 +272,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/analysis/class-use/mxFibonacciHeap.html b/java/docs/com/mxgraph/analysis/class-use/mxFibonacciHeap.html
    index b9e8ca623..a3dde26a3 100644
    --- a/java/docs/com/mxgraph/analysis/class-use/mxFibonacciHeap.html
    +++ b/java/docs/com/mxgraph/analysis/class-use/mxFibonacciHeap.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.analysis.mxFibonacciHeap (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.analysis.mxFibonacciHeap (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.analysis.mxFibonacciHeap (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.analysis.mxFibonacciHeap (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -195,7 +195,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/analysis/class-use/mxGraphAnalysis.html b/java/docs/com/mxgraph/analysis/class-use/mxGraphAnalysis.html
    index 5979e32ec..67adbb6f8 100644
    --- a/java/docs/com/mxgraph/analysis/class-use/mxGraphAnalysis.html
    +++ b/java/docs/com/mxgraph/analysis/class-use/mxGraphAnalysis.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.analysis.mxGraphAnalysis (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.analysis.mxGraphAnalysis (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.analysis.mxGraphAnalysis (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.analysis.mxGraphAnalysis (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -201,7 +201,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/analysis/class-use/mxGraphGenerator.html b/java/docs/com/mxgraph/analysis/class-use/mxGraphGenerator.html
    index f3a31847c..c4adecb23 100644
    --- a/java/docs/com/mxgraph/analysis/class-use/mxGraphGenerator.html
    +++ b/java/docs/com/mxgraph/analysis/class-use/mxGraphGenerator.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.analysis.mxGraphGenerator (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.analysis.mxGraphGenerator (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.analysis.mxGraphGenerator (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.analysis.mxGraphGenerator (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -197,7 +197,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/analysis/class-use/mxGraphProperties.GraphType.html b/java/docs/com/mxgraph/analysis/class-use/mxGraphProperties.GraphType.html
    index f531f4859..5c517c2b1 100644
    --- a/java/docs/com/mxgraph/analysis/class-use/mxGraphProperties.GraphType.html
    +++ b/java/docs/com/mxgraph/analysis/class-use/mxGraphProperties.GraphType.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.analysis.mxGraphProperties.GraphType (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.analysis.mxGraphProperties.GraphType (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.analysis.mxGraphProperties.GraphType (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.analysis.mxGraphProperties.GraphType (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -177,7 +177,7 @@ the order they are declared.</div>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/analysis/class-use/mxGraphProperties.html b/java/docs/com/mxgraph/analysis/class-use/mxGraphProperties.html
    index 7b24a2712..ef924b756 100644
    --- a/java/docs/com/mxgraph/analysis/class-use/mxGraphProperties.html
    +++ b/java/docs/com/mxgraph/analysis/class-use/mxGraphProperties.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.analysis.mxGraphProperties (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.analysis.mxGraphProperties (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.analysis.mxGraphProperties (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.analysis.mxGraphProperties (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/analysis/class-use/mxGraphStructure.html b/java/docs/com/mxgraph/analysis/class-use/mxGraphStructure.html
    index 7c0eaec61..86cf043cc 100644
    --- a/java/docs/com/mxgraph/analysis/class-use/mxGraphStructure.html
    +++ b/java/docs/com/mxgraph/analysis/class-use/mxGraphStructure.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.analysis.mxGraphStructure (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.analysis.mxGraphStructure (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.analysis.mxGraphStructure (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.analysis.mxGraphStructure (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/analysis/class-use/mxICostFunction.html b/java/docs/com/mxgraph/analysis/class-use/mxICostFunction.html
    index 8e5f9c019..896ba2394 100644
    --- a/java/docs/com/mxgraph/analysis/class-use/mxICostFunction.html
    +++ b/java/docs/com/mxgraph/analysis/class-use/mxICostFunction.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Interface com.mxgraph.analysis.mxICostFunction (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Interface com.mxgraph.analysis.mxICostFunction (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Interface com.mxgraph.analysis.mxICostFunction (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Interface com.mxgraph.analysis.mxICostFunction (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -316,7 +316,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/analysis/class-use/mxTraversal.html b/java/docs/com/mxgraph/analysis/class-use/mxTraversal.html
    index 4411e85ae..a60f4af6b 100644
    --- a/java/docs/com/mxgraph/analysis/class-use/mxTraversal.html
    +++ b/java/docs/com/mxgraph/analysis/class-use/mxTraversal.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.analysis.mxTraversal (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.analysis.mxTraversal (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.analysis.mxTraversal (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.analysis.mxTraversal (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/analysis/class-use/mxUnionFind.Node.html b/java/docs/com/mxgraph/analysis/class-use/mxUnionFind.Node.html
    index cbfac28d1..9c666e79d 100644
    --- a/java/docs/com/mxgraph/analysis/class-use/mxUnionFind.Node.html
    +++ b/java/docs/com/mxgraph/analysis/class-use/mxUnionFind.Node.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.analysis.mxUnionFind.Node (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.analysis.mxUnionFind.Node (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.analysis.mxUnionFind.Node (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.analysis.mxUnionFind.Node (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -246,7 +246,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/analysis/class-use/mxUnionFind.html b/java/docs/com/mxgraph/analysis/class-use/mxUnionFind.html
    index f6e83e6d4..4fa51dd30 100644
    --- a/java/docs/com/mxgraph/analysis/class-use/mxUnionFind.html
    +++ b/java/docs/com/mxgraph/analysis/class-use/mxUnionFind.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.analysis.mxUnionFind (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.analysis.mxUnionFind (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.analysis.mxUnionFind (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.analysis.mxUnionFind (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -179,7 +179,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/analysis/mxAnalysisGraph.html b/java/docs/com/mxgraph/analysis/mxAnalysisGraph.html
    index 810c61ee7..e1b3aa566 100644
    --- a/java/docs/com/mxgraph/analysis/mxAnalysisGraph.html
    +++ b/java/docs/com/mxgraph/analysis/mxAnalysisGraph.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxAnalysisGraph (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxAnalysisGraph (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxAnalysisGraph (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxAnalysisGraph (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -643,7 +643,7 @@ extends java.lang.Object</pre>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/analysis/mxConstantCostFunction.html b/java/docs/com/mxgraph/analysis/mxConstantCostFunction.html
    index 1ff5c523f..000a480cf 100644
    --- a/java/docs/com/mxgraph/analysis/mxConstantCostFunction.html
    +++ b/java/docs/com/mxgraph/analysis/mxConstantCostFunction.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxConstantCostFunction (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxConstantCostFunction (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxConstantCostFunction (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxConstantCostFunction (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -327,7 +327,7 @@ implements <a href="mxICostFunction.html" title="interface in com.mxgraph.analys
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/analysis/mxDistanceCostFunction.html b/java/docs/com/mxgraph/analysis/mxDistanceCostFunction.html
    index 2acbc7c80..37ac22b2d 100644
    --- a/java/docs/com/mxgraph/analysis/mxDistanceCostFunction.html
    +++ b/java/docs/com/mxgraph/analysis/mxDistanceCostFunction.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxDistanceCostFunction (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxDistanceCostFunction (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxDistanceCostFunction (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxDistanceCostFunction (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -282,7 +282,7 @@ implements <a href="mxICostFunction.html" title="interface in com.mxgraph.analys
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/analysis/mxFibonacciHeap.Node.html b/java/docs/com/mxgraph/analysis/mxFibonacciHeap.Node.html
    index 60db14f3c..3c49788db 100644
    --- a/java/docs/com/mxgraph/analysis/mxFibonacciHeap.Node.html
    +++ b/java/docs/com/mxgraph/analysis/mxFibonacciHeap.Node.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxFibonacciHeap.Node (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxFibonacciHeap.Node (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxFibonacciHeap.Node (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxFibonacciHeap.Node (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -324,7 +324,7 @@ extends java.lang.Object</pre>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/analysis/mxFibonacciHeap.html b/java/docs/com/mxgraph/analysis/mxFibonacciHeap.html
    index 51d0f6f7b..d1327dfa1 100644
    --- a/java/docs/com/mxgraph/analysis/mxFibonacciHeap.html
    +++ b/java/docs/com/mxgraph/analysis/mxFibonacciHeap.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxFibonacciHeap (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxFibonacciHeap (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxFibonacciHeap (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxFibonacciHeap (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -701,7 +701,7 @@ extends java.lang.Object</pre>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/analysis/mxGraphAnalysis.html b/java/docs/com/mxgraph/analysis/mxGraphAnalysis.html
    index 9b5971f7f..027388ca5 100644
    --- a/java/docs/com/mxgraph/analysis/mxGraphAnalysis.html
    +++ b/java/docs/com/mxgraph/analysis/mxGraphAnalysis.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxGraphAnalysis (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxGraphAnalysis (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxGraphAnalysis (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxGraphAnalysis (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -624,7 +624,7 @@ extends java.lang.Object</pre>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/analysis/mxGraphGenerator.html b/java/docs/com/mxgraph/analysis/mxGraphGenerator.html
    index a5d37ea0a..53515008d 100644
    --- a/java/docs/com/mxgraph/analysis/mxGraphGenerator.html
    +++ b/java/docs/com/mxgraph/analysis/mxGraphGenerator.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxGraphGenerator (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxGraphGenerator (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxGraphGenerator (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxGraphGenerator (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -1026,7 +1026,7 @@ extends java.lang.Object</pre>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/analysis/mxGraphProperties.GraphType.html b/java/docs/com/mxgraph/analysis/mxGraphProperties.GraphType.html
    index a7de7570a..f7fcf50b7 100644
    --- a/java/docs/com/mxgraph/analysis/mxGraphProperties.GraphType.html
    +++ b/java/docs/com/mxgraph/analysis/mxGraphProperties.GraphType.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxGraphProperties.GraphType (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxGraphProperties.GraphType (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxGraphProperties.GraphType (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxGraphProperties.GraphType (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -781,7 +781,7 @@ not permitted.)</div>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/analysis/mxGraphProperties.html b/java/docs/com/mxgraph/analysis/mxGraphProperties.html
    index c7906cc58..fc47244a6 100644
    --- a/java/docs/com/mxgraph/analysis/mxGraphProperties.html
    +++ b/java/docs/com/mxgraph/analysis/mxGraphProperties.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxGraphProperties (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxGraphProperties (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxGraphProperties (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxGraphProperties (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -454,7 +454,7 @@ extends java.lang.Object</pre>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/analysis/mxGraphStructure.html b/java/docs/com/mxgraph/analysis/mxGraphStructure.html
    index 96f44145a..95222fd9e 100644
    --- a/java/docs/com/mxgraph/analysis/mxGraphStructure.html
    +++ b/java/docs/com/mxgraph/analysis/mxGraphStructure.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxGraphStructure (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxGraphStructure (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxGraphStructure (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxGraphStructure (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -824,7 +824,7 @@ extends java.lang.Object</pre>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/analysis/mxICostFunction.html b/java/docs/com/mxgraph/analysis/mxICostFunction.html
    index a750b7684..93e92daf0 100644
    --- a/java/docs/com/mxgraph/analysis/mxICostFunction.html
    +++ b/java/docs/com/mxgraph/analysis/mxICostFunction.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxICostFunction (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxICostFunction (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxICostFunction (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxICostFunction (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -225,7 +225,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/analysis/mxTraversal.html b/java/docs/com/mxgraph/analysis/mxTraversal.html
    index 78a7204f4..884ce84ee 100644
    --- a/java/docs/com/mxgraph/analysis/mxTraversal.html
    +++ b/java/docs/com/mxgraph/analysis/mxTraversal.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxTraversal (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxTraversal (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxTraversal (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxTraversal (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -469,7 +469,7 @@ extends java.lang.Object</pre>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/analysis/mxUnionFind.Node.html b/java/docs/com/mxgraph/analysis/mxUnionFind.Node.html
    index 15aafa6e0..9153e8fdf 100644
    --- a/java/docs/com/mxgraph/analysis/mxUnionFind.Node.html
    +++ b/java/docs/com/mxgraph/analysis/mxUnionFind.Node.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxUnionFind.Node (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxUnionFind.Node (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxUnionFind.Node (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxUnionFind.Node (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -388,7 +388,7 @@ extends java.lang.Object</pre>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/analysis/mxUnionFind.html b/java/docs/com/mxgraph/analysis/mxUnionFind.html
    index 1b8c5f49a..1516c3e5e 100644
    --- a/java/docs/com/mxgraph/analysis/mxUnionFind.html
    +++ b/java/docs/com/mxgraph/analysis/mxUnionFind.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxUnionFind (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxUnionFind (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxUnionFind (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxUnionFind (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -421,7 +421,7 @@ extends java.lang.Object</pre>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/analysis/package-summary.html b/java/docs/com/mxgraph/analysis/package-summary.html
    index 98b21f72a..352453ad2 100644
    --- a/java/docs/com/mxgraph/analysis/package-summary.html
    +++ b/java/docs/com/mxgraph/analysis/package-summary.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>com.mxgraph.analysis (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>com.mxgraph.analysis (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="com.mxgraph.analysis (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="com.mxgraph.analysis (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -252,7 +252,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/analysis/package-tree.html b/java/docs/com/mxgraph/analysis/package-tree.html
    index ea3e1ff0d..43be8d363 100644
    --- a/java/docs/com/mxgraph/analysis/package-tree.html
    +++ b/java/docs/com/mxgraph/analysis/package-tree.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>com.mxgraph.analysis Class Hierarchy (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>com.mxgraph.analysis Class Hierarchy (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="com.mxgraph.analysis Class Hierarchy (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="com.mxgraph.analysis Class Hierarchy (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -175,7 +175,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/analysis/package-use.html b/java/docs/com/mxgraph/analysis/package-use.html
    index 283b96163..423238015 100644
    --- a/java/docs/com/mxgraph/analysis/package-use.html
    +++ b/java/docs/com/mxgraph/analysis/package-use.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Package com.mxgraph.analysis (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Package com.mxgraph.analysis (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Package com.mxgraph.analysis (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Package com.mxgraph.analysis (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -256,7 +256,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/canvas/class-use/mxBasicCanvas.html b/java/docs/com/mxgraph/canvas/class-use/mxBasicCanvas.html
    index 222d40990..91b91ca06 100644
    --- a/java/docs/com/mxgraph/canvas/class-use/mxBasicCanvas.html
    +++ b/java/docs/com/mxgraph/canvas/class-use/mxBasicCanvas.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.canvas.mxBasicCanvas (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.canvas.mxBasicCanvas (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.canvas.mxBasicCanvas (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.canvas.mxBasicCanvas (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -220,7 +220,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/canvas/class-use/mxGraphics2DCanvas.html b/java/docs/com/mxgraph/canvas/class-use/mxGraphics2DCanvas.html
    index 57b57ddb8..85e3a268c 100644
    --- a/java/docs/com/mxgraph/canvas/class-use/mxGraphics2DCanvas.html
    +++ b/java/docs/com/mxgraph/canvas/class-use/mxGraphics2DCanvas.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.canvas.mxGraphics2DCanvas (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.canvas.mxGraphics2DCanvas (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.canvas.mxGraphics2DCanvas (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.canvas.mxGraphics2DCanvas (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -808,7 +808,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/canvas/class-use/mxGraphicsCanvas2D.CanvasState.html b/java/docs/com/mxgraph/canvas/class-use/mxGraphicsCanvas2D.CanvasState.html
    index 0013b8d01..9b18c5383 100644
    --- a/java/docs/com/mxgraph/canvas/class-use/mxGraphicsCanvas2D.CanvasState.html
    +++ b/java/docs/com/mxgraph/canvas/class-use/mxGraphicsCanvas2D.CanvasState.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.canvas.mxGraphicsCanvas2D.CanvasState (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.canvas.mxGraphicsCanvas2D.CanvasState (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.canvas.mxGraphicsCanvas2D.CanvasState (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.canvas.mxGraphicsCanvas2D.CanvasState (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -220,7 +220,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/canvas/class-use/mxGraphicsCanvas2D.html b/java/docs/com/mxgraph/canvas/class-use/mxGraphicsCanvas2D.html
    index eae1a229f..8a0382218 100644
    --- a/java/docs/com/mxgraph/canvas/class-use/mxGraphicsCanvas2D.html
    +++ b/java/docs/com/mxgraph/canvas/class-use/mxGraphicsCanvas2D.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.canvas.mxGraphicsCanvas2D (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.canvas.mxGraphicsCanvas2D (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.canvas.mxGraphicsCanvas2D (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.canvas.mxGraphicsCanvas2D (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -230,7 +230,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/canvas/class-use/mxHtmlCanvas.html b/java/docs/com/mxgraph/canvas/class-use/mxHtmlCanvas.html
    index 59f02a612..388100ebd 100644
    --- a/java/docs/com/mxgraph/canvas/class-use/mxHtmlCanvas.html
    +++ b/java/docs/com/mxgraph/canvas/class-use/mxHtmlCanvas.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.canvas.mxHtmlCanvas (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.canvas.mxHtmlCanvas (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.canvas.mxHtmlCanvas (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.canvas.mxHtmlCanvas (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/canvas/class-use/mxICanvas.html b/java/docs/com/mxgraph/canvas/class-use/mxICanvas.html
    index e59aa2163..8c95a516e 100644
    --- a/java/docs/com/mxgraph/canvas/class-use/mxICanvas.html
    +++ b/java/docs/com/mxgraph/canvas/class-use/mxICanvas.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Interface com.mxgraph.canvas.mxICanvas (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Interface com.mxgraph.canvas.mxICanvas (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Interface com.mxgraph.canvas.mxICanvas (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Interface com.mxgraph.canvas.mxICanvas (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -435,7 +435,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/canvas/class-use/mxICanvas2D.html b/java/docs/com/mxgraph/canvas/class-use/mxICanvas2D.html
    index 39fb354ab..79b570ffe 100644
    --- a/java/docs/com/mxgraph/canvas/class-use/mxICanvas2D.html
    +++ b/java/docs/com/mxgraph/canvas/class-use/mxICanvas2D.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Interface com.mxgraph.canvas.mxICanvas2D (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Interface com.mxgraph.canvas.mxICanvas2D (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Interface com.mxgraph.canvas.mxICanvas2D (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Interface com.mxgraph.canvas.mxICanvas2D (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -254,7 +254,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/canvas/class-use/mxImageCanvas.html b/java/docs/com/mxgraph/canvas/class-use/mxImageCanvas.html
    index 2c03dbc29..8e8577a81 100644
    --- a/java/docs/com/mxgraph/canvas/class-use/mxImageCanvas.html
    +++ b/java/docs/com/mxgraph/canvas/class-use/mxImageCanvas.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.canvas.mxImageCanvas (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.canvas.mxImageCanvas (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.canvas.mxImageCanvas (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.canvas.mxImageCanvas (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/canvas/class-use/mxSvgCanvas.html b/java/docs/com/mxgraph/canvas/class-use/mxSvgCanvas.html
    index ae9040c14..beab87e4d 100644
    --- a/java/docs/com/mxgraph/canvas/class-use/mxSvgCanvas.html
    +++ b/java/docs/com/mxgraph/canvas/class-use/mxSvgCanvas.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.canvas.mxSvgCanvas (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.canvas.mxSvgCanvas (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.canvas.mxSvgCanvas (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.canvas.mxSvgCanvas (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/canvas/class-use/mxVmlCanvas.html b/java/docs/com/mxgraph/canvas/class-use/mxVmlCanvas.html
    index 8aac47ca5..26ff9bb03 100644
    --- a/java/docs/com/mxgraph/canvas/class-use/mxVmlCanvas.html
    +++ b/java/docs/com/mxgraph/canvas/class-use/mxVmlCanvas.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.canvas.mxVmlCanvas (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.canvas.mxVmlCanvas (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.canvas.mxVmlCanvas (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.canvas.mxVmlCanvas (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/canvas/mxBasicCanvas.html b/java/docs/com/mxgraph/canvas/mxBasicCanvas.html
    index 3ad8ee0c4..d0f0f94ab 100644
    --- a/java/docs/com/mxgraph/canvas/mxBasicCanvas.html
    +++ b/java/docs/com/mxgraph/canvas/mxBasicCanvas.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxBasicCanvas (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxBasicCanvas (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxBasicCanvas (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxBasicCanvas (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -611,7 +611,7 @@ implements <a href="mxICanvas.html" title="interface in com.mxgraph.canvas">mxIC
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/canvas/mxGraphics2DCanvas.html b/java/docs/com/mxgraph/canvas/mxGraphics2DCanvas.html
    index 6bb85f03b..f7317c6d4 100644
    --- a/java/docs/com/mxgraph/canvas/mxGraphics2DCanvas.html
    +++ b/java/docs/com/mxgraph/canvas/mxGraphics2DCanvas.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxGraphics2DCanvas (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxGraphics2DCanvas (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxGraphics2DCanvas (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxGraphics2DCanvas (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -798,7 +798,7 @@ extends <a href="mxBasicCanvas.html" title="class in com.mxgraph.canvas">mxBasic
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/canvas/mxGraphicsCanvas2D.CanvasState.html b/java/docs/com/mxgraph/canvas/mxGraphicsCanvas2D.CanvasState.html
    index 4f455f38d..a95e0bbfd 100644
    --- a/java/docs/com/mxgraph/canvas/mxGraphicsCanvas2D.CanvasState.html
    +++ b/java/docs/com/mxgraph/canvas/mxGraphicsCanvas2D.CanvasState.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxGraphicsCanvas2D.CanvasState (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxGraphicsCanvas2D.CanvasState (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxGraphicsCanvas2D.CanvasState (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxGraphicsCanvas2D.CanvasState (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -858,7 +858,7 @@ implements java.lang.Cloneable</pre>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/canvas/mxGraphicsCanvas2D.html b/java/docs/com/mxgraph/canvas/mxGraphicsCanvas2D.html
    index d57bcf3f4..971c8f173 100644
    --- a/java/docs/com/mxgraph/canvas/mxGraphicsCanvas2D.html
    +++ b/java/docs/com/mxgraph/canvas/mxGraphicsCanvas2D.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxGraphicsCanvas2D (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxGraphicsCanvas2D (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxGraphicsCanvas2D (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxGraphicsCanvas2D (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -2338,7 +2338,7 @@ implements <a href="mxICanvas2D.html" title="interface in com.mxgraph.canvas">mx
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/canvas/mxHtmlCanvas.html b/java/docs/com/mxgraph/canvas/mxHtmlCanvas.html
    index 08b40e996..d7501cc66 100644
    --- a/java/docs/com/mxgraph/canvas/mxHtmlCanvas.html
    +++ b/java/docs/com/mxgraph/canvas/mxHtmlCanvas.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxHtmlCanvas (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxHtmlCanvas (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxHtmlCanvas (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxHtmlCanvas (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -573,7 +573,7 @@ extends <a href="mxBasicCanvas.html" title="class in com.mxgraph.canvas">mxBasic
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/canvas/mxICanvas.html b/java/docs/com/mxgraph/canvas/mxICanvas.html
    index 7555f5b38..97c1515c4 100644
    --- a/java/docs/com/mxgraph/canvas/mxICanvas.html
    +++ b/java/docs/com/mxgraph/canvas/mxICanvas.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxICanvas (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxICanvas (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxICanvas (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxICanvas (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -325,7 +325,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/canvas/mxICanvas2D.html b/java/docs/com/mxgraph/canvas/mxICanvas2D.html
    index 5a12f97e9..be8dc0260 100644
    --- a/java/docs/com/mxgraph/canvas/mxICanvas2D.html
    +++ b/java/docs/com/mxgraph/canvas/mxICanvas2D.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxICanvas2D (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxICanvas2D (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxICanvas2D (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxICanvas2D (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -1233,7 +1233,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/canvas/mxImageCanvas.html b/java/docs/com/mxgraph/canvas/mxImageCanvas.html
    index 221d15e54..d95e7f348 100644
    --- a/java/docs/com/mxgraph/canvas/mxImageCanvas.html
    +++ b/java/docs/com/mxgraph/canvas/mxImageCanvas.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxImageCanvas (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxImageCanvas (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxImageCanvas (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxImageCanvas (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -552,7 +552,7 @@ implements <a href="mxICanvas.html" title="interface in com.mxgraph.canvas">mxIC
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/canvas/mxSvgCanvas.html b/java/docs/com/mxgraph/canvas/mxSvgCanvas.html
    index cb612e7d6..6e4cef18b 100644
    --- a/java/docs/com/mxgraph/canvas/mxSvgCanvas.html
    +++ b/java/docs/com/mxgraph/canvas/mxSvgCanvas.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxSvgCanvas (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxSvgCanvas (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxSvgCanvas (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxSvgCanvas (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -804,7 +804,7 @@ extends <a href="mxBasicCanvas.html" title="class in com.mxgraph.canvas">mxBasic
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/canvas/mxVmlCanvas.html b/java/docs/com/mxgraph/canvas/mxVmlCanvas.html
    index eaa11158b..2fbbd0c71 100644
    --- a/java/docs/com/mxgraph/canvas/mxVmlCanvas.html
    +++ b/java/docs/com/mxgraph/canvas/mxVmlCanvas.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxVmlCanvas (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxVmlCanvas (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxVmlCanvas (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxVmlCanvas (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -537,7 +537,7 @@ extends <a href="mxBasicCanvas.html" title="class in com.mxgraph.canvas">mxBasic
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/canvas/package-summary.html b/java/docs/com/mxgraph/canvas/package-summary.html
    index bd9cca9ce..fecc69e60 100644
    --- a/java/docs/com/mxgraph/canvas/package-summary.html
    +++ b/java/docs/com/mxgraph/canvas/package-summary.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>com.mxgraph.canvas (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>com.mxgraph.canvas (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="com.mxgraph.canvas (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="com.mxgraph.canvas (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -215,7 +215,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/canvas/package-tree.html b/java/docs/com/mxgraph/canvas/package-tree.html
    index c59dc3985..ad2db398c 100644
    --- a/java/docs/com/mxgraph/canvas/package-tree.html
    +++ b/java/docs/com/mxgraph/canvas/package-tree.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>com.mxgraph.canvas Class Hierarchy (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>com.mxgraph.canvas Class Hierarchy (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="com.mxgraph.canvas Class Hierarchy (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="com.mxgraph.canvas Class Hierarchy (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -152,7 +152,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/canvas/package-use.html b/java/docs/com/mxgraph/canvas/package-use.html
    index b77801443..003100871 100644
    --- a/java/docs/com/mxgraph/canvas/package-use.html
    +++ b/java/docs/com/mxgraph/canvas/package-use.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Package com.mxgraph.canvas (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Package com.mxgraph.canvas (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Package com.mxgraph.canvas (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Package com.mxgraph.canvas (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -429,7 +429,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/costfunction/class-use/mxConstCostFunction.html b/java/docs/com/mxgraph/costfunction/class-use/mxConstCostFunction.html
    index 7195bb6e4..8ca7b26a1 100644
    --- a/java/docs/com/mxgraph/costfunction/class-use/mxConstCostFunction.html
    +++ b/java/docs/com/mxgraph/costfunction/class-use/mxConstCostFunction.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.costfunction.mxConstCostFunction (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.costfunction.mxConstCostFunction (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.costfunction.mxConstCostFunction (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.costfunction.mxConstCostFunction (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/costfunction/class-use/mxCostFunction.html b/java/docs/com/mxgraph/costfunction/class-use/mxCostFunction.html
    index 4b2b390cd..a9bba6f85 100644
    --- a/java/docs/com/mxgraph/costfunction/class-use/mxCostFunction.html
    +++ b/java/docs/com/mxgraph/costfunction/class-use/mxCostFunction.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.costfunction.mxCostFunction (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.costfunction.mxCostFunction (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.costfunction.mxCostFunction (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.costfunction.mxCostFunction (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -229,7 +229,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/costfunction/class-use/mxDoubleValCostFunction.html b/java/docs/com/mxgraph/costfunction/class-use/mxDoubleValCostFunction.html
    index b747b4077..18e31c10b 100644
    --- a/java/docs/com/mxgraph/costfunction/class-use/mxDoubleValCostFunction.html
    +++ b/java/docs/com/mxgraph/costfunction/class-use/mxDoubleValCostFunction.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.costfunction.mxDoubleValCostFunction (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.costfunction.mxDoubleValCostFunction (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.costfunction.mxDoubleValCostFunction (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.costfunction.mxDoubleValCostFunction (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/costfunction/mxConstCostFunction.html b/java/docs/com/mxgraph/costfunction/mxConstCostFunction.html
    index 253bfc795..d6026d1e5 100644
    --- a/java/docs/com/mxgraph/costfunction/mxConstCostFunction.html
    +++ b/java/docs/com/mxgraph/costfunction/mxConstCostFunction.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxConstCostFunction (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxConstCostFunction (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxConstCostFunction (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxConstCostFunction (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -282,7 +282,7 @@ extends <a href="mxCostFunction.html" title="class in com.mxgraph.costfunction">
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/costfunction/mxCostFunction.html b/java/docs/com/mxgraph/costfunction/mxCostFunction.html
    index 8b30a8b87..dd9ebf5d3 100644
    --- a/java/docs/com/mxgraph/costfunction/mxCostFunction.html
    +++ b/java/docs/com/mxgraph/costfunction/mxCostFunction.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxCostFunction (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxCostFunction (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxCostFunction (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxCostFunction (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -241,7 +241,7 @@ implements <a href="../analysis/mxICostFunction.html" title="interface in com.mx
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/costfunction/mxDoubleValCostFunction.html b/java/docs/com/mxgraph/costfunction/mxDoubleValCostFunction.html
    index f96279912..eab324f46 100644
    --- a/java/docs/com/mxgraph/costfunction/mxDoubleValCostFunction.html
    +++ b/java/docs/com/mxgraph/costfunction/mxDoubleValCostFunction.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxDoubleValCostFunction (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxDoubleValCostFunction (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxDoubleValCostFunction (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxDoubleValCostFunction (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -283,7 +283,7 @@ extends <a href="mxCostFunction.html" title="class in com.mxgraph.costfunction">
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/costfunction/package-summary.html b/java/docs/com/mxgraph/costfunction/package-summary.html
    index cc01f9278..88a2f3a51 100644
    --- a/java/docs/com/mxgraph/costfunction/package-summary.html
    +++ b/java/docs/com/mxgraph/costfunction/package-summary.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>com.mxgraph.costfunction (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>com.mxgraph.costfunction (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="com.mxgraph.costfunction (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="com.mxgraph.costfunction (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -148,7 +148,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/costfunction/package-tree.html b/java/docs/com/mxgraph/costfunction/package-tree.html
    index a4f45355c..ef28a5e83 100644
    --- a/java/docs/com/mxgraph/costfunction/package-tree.html
    +++ b/java/docs/com/mxgraph/costfunction/package-tree.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>com.mxgraph.costfunction Class Hierarchy (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>com.mxgraph.costfunction Class Hierarchy (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="com.mxgraph.costfunction Class Hierarchy (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="com.mxgraph.costfunction Class Hierarchy (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -140,7 +140,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/costfunction/package-use.html b/java/docs/com/mxgraph/costfunction/package-use.html
    index c0bff6693..3d86ab08e 100644
    --- a/java/docs/com/mxgraph/costfunction/package-use.html
    +++ b/java/docs/com/mxgraph/costfunction/package-use.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Package com.mxgraph.costfunction (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Package com.mxgraph.costfunction (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Package com.mxgraph.costfunction (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Package com.mxgraph.costfunction (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -179,7 +179,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/generatorfunction/class-use/mxGeneratorConstFunction.html b/java/docs/com/mxgraph/generatorfunction/class-use/mxGeneratorConstFunction.html
    index aba3c812b..0dfcf215d 100644
    --- a/java/docs/com/mxgraph/generatorfunction/class-use/mxGeneratorConstFunction.html
    +++ b/java/docs/com/mxgraph/generatorfunction/class-use/mxGeneratorConstFunction.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.generatorfunction.mxGeneratorConstFunction (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.generatorfunction.mxGeneratorConstFunction (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.generatorfunction.mxGeneratorConstFunction (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.generatorfunction.mxGeneratorConstFunction (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/generatorfunction/class-use/mxGeneratorFunction.html b/java/docs/com/mxgraph/generatorfunction/class-use/mxGeneratorFunction.html
    index b3e4dfe8b..67c1afb3c 100644
    --- a/java/docs/com/mxgraph/generatorfunction/class-use/mxGeneratorFunction.html
    +++ b/java/docs/com/mxgraph/generatorfunction/class-use/mxGeneratorFunction.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.generatorfunction.mxGeneratorFunction (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.generatorfunction.mxGeneratorFunction (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.generatorfunction.mxGeneratorFunction (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.generatorfunction.mxGeneratorFunction (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -225,7 +225,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/generatorfunction/class-use/mxGeneratorRandomFunction.html b/java/docs/com/mxgraph/generatorfunction/class-use/mxGeneratorRandomFunction.html
    index dff234987..64eef7722 100644
    --- a/java/docs/com/mxgraph/generatorfunction/class-use/mxGeneratorRandomFunction.html
    +++ b/java/docs/com/mxgraph/generatorfunction/class-use/mxGeneratorRandomFunction.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.generatorfunction.mxGeneratorRandomFunction (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.generatorfunction.mxGeneratorRandomFunction (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.generatorfunction.mxGeneratorRandomFunction (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.generatorfunction.mxGeneratorRandomFunction (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/generatorfunction/class-use/mxGeneratorRandomIntFunction.html b/java/docs/com/mxgraph/generatorfunction/class-use/mxGeneratorRandomIntFunction.html
    index 1c1dbea46..df6e51db5 100644
    --- a/java/docs/com/mxgraph/generatorfunction/class-use/mxGeneratorRandomIntFunction.html
    +++ b/java/docs/com/mxgraph/generatorfunction/class-use/mxGeneratorRandomIntFunction.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.generatorfunction.mxGeneratorRandomIntFunction (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.generatorfunction.mxGeneratorRandomIntFunction (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.generatorfunction.mxGeneratorRandomIntFunction (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.generatorfunction.mxGeneratorRandomIntFunction (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/generatorfunction/mxGeneratorConstFunction.html b/java/docs/com/mxgraph/generatorfunction/mxGeneratorConstFunction.html
    index d7563d97d..4fe246c73 100644
    --- a/java/docs/com/mxgraph/generatorfunction/mxGeneratorConstFunction.html
    +++ b/java/docs/com/mxgraph/generatorfunction/mxGeneratorConstFunction.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxGeneratorConstFunction (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxGeneratorConstFunction (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxGeneratorConstFunction (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxGeneratorConstFunction (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -282,7 +282,7 @@ extends <a href="mxGeneratorFunction.html" title="class in com.mxgraph.generator
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/generatorfunction/mxGeneratorFunction.html b/java/docs/com/mxgraph/generatorfunction/mxGeneratorFunction.html
    index a9aaefb25..3c17ab57f 100644
    --- a/java/docs/com/mxgraph/generatorfunction/mxGeneratorFunction.html
    +++ b/java/docs/com/mxgraph/generatorfunction/mxGeneratorFunction.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxGeneratorFunction (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxGeneratorFunction (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxGeneratorFunction (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxGeneratorFunction (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -241,7 +241,7 @@ implements <a href="../analysis/mxICostFunction.html" title="interface in com.mx
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/generatorfunction/mxGeneratorRandomFunction.html b/java/docs/com/mxgraph/generatorfunction/mxGeneratorRandomFunction.html
    index bbadc9c2f..bdca347a9 100644
    --- a/java/docs/com/mxgraph/generatorfunction/mxGeneratorRandomFunction.html
    +++ b/java/docs/com/mxgraph/generatorfunction/mxGeneratorRandomFunction.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxGeneratorRandomFunction (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxGeneratorRandomFunction (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxGeneratorRandomFunction (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxGeneratorRandomFunction (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -358,7 +358,7 @@ extends <a href="mxGeneratorFunction.html" title="class in com.mxgraph.generator
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/generatorfunction/mxGeneratorRandomIntFunction.html b/java/docs/com/mxgraph/generatorfunction/mxGeneratorRandomIntFunction.html
    index e3f3413c5..dba338b16 100644
    --- a/java/docs/com/mxgraph/generatorfunction/mxGeneratorRandomIntFunction.html
    +++ b/java/docs/com/mxgraph/generatorfunction/mxGeneratorRandomIntFunction.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxGeneratorRandomIntFunction (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxGeneratorRandomIntFunction (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxGeneratorRandomIntFunction (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxGeneratorRandomIntFunction (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -328,7 +328,7 @@ extends <a href="mxGeneratorFunction.html" title="class in com.mxgraph.generator
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/generatorfunction/package-summary.html b/java/docs/com/mxgraph/generatorfunction/package-summary.html
    index e3a506b5d..42b4efba0 100644
    --- a/java/docs/com/mxgraph/generatorfunction/package-summary.html
    +++ b/java/docs/com/mxgraph/generatorfunction/package-summary.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>com.mxgraph.generatorfunction (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>com.mxgraph.generatorfunction (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="com.mxgraph.generatorfunction (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="com.mxgraph.generatorfunction (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -150,7 +150,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/generatorfunction/package-tree.html b/java/docs/com/mxgraph/generatorfunction/package-tree.html
    index 74df88459..ae0159882 100644
    --- a/java/docs/com/mxgraph/generatorfunction/package-tree.html
    +++ b/java/docs/com/mxgraph/generatorfunction/package-tree.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>com.mxgraph.generatorfunction Class Hierarchy (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>com.mxgraph.generatorfunction Class Hierarchy (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="com.mxgraph.generatorfunction Class Hierarchy (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="com.mxgraph.generatorfunction Class Hierarchy (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -141,7 +141,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/generatorfunction/package-use.html b/java/docs/com/mxgraph/generatorfunction/package-use.html
    index f645dafa5..8a719927b 100644
    --- a/java/docs/com/mxgraph/generatorfunction/package-use.html
    +++ b/java/docs/com/mxgraph/generatorfunction/package-use.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Package com.mxgraph.generatorfunction (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Package com.mxgraph.generatorfunction (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Package com.mxgraph.generatorfunction (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Package com.mxgraph.generatorfunction (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -179,7 +179,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/io/class-use/mxCellCodec.html b/java/docs/com/mxgraph/io/class-use/mxCellCodec.html
    index 8452308dc..8cb2c6d09 100644
    --- a/java/docs/com/mxgraph/io/class-use/mxCellCodec.html
    +++ b/java/docs/com/mxgraph/io/class-use/mxCellCodec.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.io.mxCellCodec (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.io.mxCellCodec (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.io.mxCellCodec (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.io.mxCellCodec (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/io/class-use/mxChildChangeCodec.html b/java/docs/com/mxgraph/io/class-use/mxChildChangeCodec.html
    index a60b3c2fa..9eaf97f96 100644
    --- a/java/docs/com/mxgraph/io/class-use/mxChildChangeCodec.html
    +++ b/java/docs/com/mxgraph/io/class-use/mxChildChangeCodec.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.io.mxChildChangeCodec (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.io.mxChildChangeCodec (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.io.mxChildChangeCodec (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.io.mxChildChangeCodec (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/io/class-use/mxCodec.html b/java/docs/com/mxgraph/io/class-use/mxCodec.html
    index 45a631d61..f3e41c3c0 100644
    --- a/java/docs/com/mxgraph/io/class-use/mxCodec.html
    +++ b/java/docs/com/mxgraph/io/class-use/mxCodec.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.io.mxCodec (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.io.mxCodec (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.io.mxCodec (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.io.mxCodec (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -476,7 +476,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/io/class-use/mxCodecRegistry.html b/java/docs/com/mxgraph/io/class-use/mxCodecRegistry.html
    index b8eb9c294..63782aa36 100644
    --- a/java/docs/com/mxgraph/io/class-use/mxCodecRegistry.html
    +++ b/java/docs/com/mxgraph/io/class-use/mxCodecRegistry.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.io.mxCodecRegistry (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.io.mxCodecRegistry (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.io.mxCodecRegistry (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.io.mxCodecRegistry (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/io/class-use/mxGdCodec.html b/java/docs/com/mxgraph/io/class-use/mxGdCodec.html
    index 001af304a..503ea4874 100644
    --- a/java/docs/com/mxgraph/io/class-use/mxGdCodec.html
    +++ b/java/docs/com/mxgraph/io/class-use/mxGdCodec.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.io.mxGdCodec (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.io.mxGdCodec (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.io.mxGdCodec (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.io.mxGdCodec (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/io/class-use/mxGdCodec.mxGDParseState.html b/java/docs/com/mxgraph/io/class-use/mxGdCodec.mxGDParseState.html
    index 4d52d1d75..2b906d1c6 100644
    --- a/java/docs/com/mxgraph/io/class-use/mxGdCodec.mxGDParseState.html
    +++ b/java/docs/com/mxgraph/io/class-use/mxGdCodec.mxGDParseState.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.io.mxGdCodec.mxGDParseState (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.io.mxGdCodec.mxGDParseState (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.io.mxGdCodec.mxGDParseState (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.io.mxGdCodec.mxGDParseState (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -176,7 +176,7 @@ the order they are declared.</div>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/io/class-use/mxGenericChangeCodec.html b/java/docs/com/mxgraph/io/class-use/mxGenericChangeCodec.html
    index 82e9e3b7c..2c9c87dc3 100644
    --- a/java/docs/com/mxgraph/io/class-use/mxGenericChangeCodec.html
    +++ b/java/docs/com/mxgraph/io/class-use/mxGenericChangeCodec.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.io.mxGenericChangeCodec (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.io.mxGenericChangeCodec (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.io.mxGenericChangeCodec (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.io.mxGenericChangeCodec (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/io/class-use/mxModelCodec.html b/java/docs/com/mxgraph/io/class-use/mxModelCodec.html
    index 172664f40..8a73c6241 100644
    --- a/java/docs/com/mxgraph/io/class-use/mxModelCodec.html
    +++ b/java/docs/com/mxgraph/io/class-use/mxModelCodec.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.io.mxModelCodec (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.io.mxModelCodec (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.io.mxModelCodec (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.io.mxModelCodec (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/io/class-use/mxObjectCodec.html b/java/docs/com/mxgraph/io/class-use/mxObjectCodec.html
    index df0d94d62..b371ef848 100644
    --- a/java/docs/com/mxgraph/io/class-use/mxObjectCodec.html
    +++ b/java/docs/com/mxgraph/io/class-use/mxObjectCodec.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.io.mxObjectCodec (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.io.mxObjectCodec (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.io.mxObjectCodec (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.io.mxObjectCodec (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -271,7 +271,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/io/class-use/mxRootChangeCodec.html b/java/docs/com/mxgraph/io/class-use/mxRootChangeCodec.html
    index 1f0ce3861..5f245415b 100644
    --- a/java/docs/com/mxgraph/io/class-use/mxRootChangeCodec.html
    +++ b/java/docs/com/mxgraph/io/class-use/mxRootChangeCodec.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.io.mxRootChangeCodec (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.io.mxRootChangeCodec (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.io.mxRootChangeCodec (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.io.mxRootChangeCodec (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/io/class-use/mxStylesheetCodec.html b/java/docs/com/mxgraph/io/class-use/mxStylesheetCodec.html
    index 5f0bbc596..f7e5ee863 100644
    --- a/java/docs/com/mxgraph/io/class-use/mxStylesheetCodec.html
    +++ b/java/docs/com/mxgraph/io/class-use/mxStylesheetCodec.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.io.mxStylesheetCodec (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.io.mxStylesheetCodec (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.io.mxStylesheetCodec (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.io.mxStylesheetCodec (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/io/class-use/mxTerminalChangeCodec.html b/java/docs/com/mxgraph/io/class-use/mxTerminalChangeCodec.html
    index a77f06377..6ef87f339 100644
    --- a/java/docs/com/mxgraph/io/class-use/mxTerminalChangeCodec.html
    +++ b/java/docs/com/mxgraph/io/class-use/mxTerminalChangeCodec.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.io.mxTerminalChangeCodec (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.io.mxTerminalChangeCodec (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.io.mxTerminalChangeCodec (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.io.mxTerminalChangeCodec (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/io/mxCellCodec.html b/java/docs/com/mxgraph/io/mxCellCodec.html
    index acf33798b..af2e9e881 100644
    --- a/java/docs/com/mxgraph/io/mxCellCodec.html
    +++ b/java/docs/com/mxgraph/io/mxCellCodec.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxCellCodec (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxCellCodec (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxCellCodec (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxCellCodec (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -424,7 +424,7 @@ extends <a href="mxObjectCodec.html" title="class in com.mxgraph.io">mxObjectCod
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/io/mxChildChangeCodec.html b/java/docs/com/mxgraph/io/mxChildChangeCodec.html
    index 9005cf34f..b48eaf8ca 100644
    --- a/java/docs/com/mxgraph/io/mxChildChangeCodec.html
    +++ b/java/docs/com/mxgraph/io/mxChildChangeCodec.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxChildChangeCodec (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxChildChangeCodec (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxChildChangeCodec (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxChildChangeCodec (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -452,7 +452,7 @@ extends <a href="mxObjectCodec.html" title="class in com.mxgraph.io">mxObjectCod
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/io/mxCodec.html b/java/docs/com/mxgraph/io/mxCodec.html
    index 0ae9c34b8..ec215a47f 100644
    --- a/java/docs/com/mxgraph/io/mxCodec.html
    +++ b/java/docs/com/mxgraph/io/mxCodec.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxCodec (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxCodec (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxCodec (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxCodec (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -821,7 +821,7 @@ extends java.lang.Object</pre>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/io/mxCodecRegistry.html b/java/docs/com/mxgraph/io/mxCodecRegistry.html
    index 5f78775d4..def280ba1 100644
    --- a/java/docs/com/mxgraph/io/mxCodecRegistry.html
    +++ b/java/docs/com/mxgraph/io/mxCodecRegistry.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxCodecRegistry (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxCodecRegistry (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxCodecRegistry (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxCodecRegistry (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -489,7 +489,7 @@ extends java.lang.Object</pre>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/io/mxGdCodec.html b/java/docs/com/mxgraph/io/mxGdCodec.html
    index b8f30ca8d..a774cb529 100644
    --- a/java/docs/com/mxgraph/io/mxGdCodec.html
    +++ b/java/docs/com/mxgraph/io/mxGdCodec.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxGdCodec (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxGdCodec (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxGdCodec (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxGdCodec (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -370,7 +370,7 @@ extends java.lang.Object</pre>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/io/mxGdCodec.mxGDParseState.html b/java/docs/com/mxgraph/io/mxGdCodec.mxGDParseState.html
    index daa6a19c1..56117ec1e 100644
    --- a/java/docs/com/mxgraph/io/mxGdCodec.mxGDParseState.html
    +++ b/java/docs/com/mxgraph/io/mxGdCodec.mxGDParseState.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxGdCodec.mxGDParseState (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxGdCodec.mxGDParseState (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxGdCodec.mxGDParseState (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxGdCodec.mxGDParseState (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -366,7 +366,7 @@ not permitted.)</div>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/io/mxGenericChangeCodec.html b/java/docs/com/mxgraph/io/mxGenericChangeCodec.html
    index 91cac4b92..f307c9b76 100644
    --- a/java/docs/com/mxgraph/io/mxGenericChangeCodec.html
    +++ b/java/docs/com/mxgraph/io/mxGenericChangeCodec.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxGenericChangeCodec (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxGenericChangeCodec (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxGenericChangeCodec (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxGenericChangeCodec (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -377,7 +377,7 @@ extends <a href="mxObjectCodec.html" title="class in com.mxgraph.io">mxObjectCod
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/io/mxModelCodec.html b/java/docs/com/mxgraph/io/mxModelCodec.html
    index 278bcfb1b..0ab8ef3c7 100644
    --- a/java/docs/com/mxgraph/io/mxModelCodec.html
    +++ b/java/docs/com/mxgraph/io/mxModelCodec.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxModelCodec (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxModelCodec (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxModelCodec (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxModelCodec (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -386,7 +386,7 @@ extends <a href="mxObjectCodec.html" title="class in com.mxgraph.io">mxObjectCod
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/io/mxObjectCodec.html b/java/docs/com/mxgraph/io/mxObjectCodec.html
    index 05c12f47c..fb5224486 100644
    --- a/java/docs/com/mxgraph/io/mxObjectCodec.html
    +++ b/java/docs/com/mxgraph/io/mxObjectCodec.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxObjectCodec (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxObjectCodec (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxObjectCodec (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxObjectCodec (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -1512,7 +1512,7 @@ extends java.lang.Object</pre>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/io/mxRootChangeCodec.html b/java/docs/com/mxgraph/io/mxRootChangeCodec.html
    index 36b9209f4..03c8b1c16 100644
    --- a/java/docs/com/mxgraph/io/mxRootChangeCodec.html
    +++ b/java/docs/com/mxgraph/io/mxRootChangeCodec.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxRootChangeCodec (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxRootChangeCodec (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxRootChangeCodec (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxRootChangeCodec (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -411,7 +411,7 @@ extends <a href="mxObjectCodec.html" title="class in com.mxgraph.io">mxObjectCod
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/io/mxStylesheetCodec.html b/java/docs/com/mxgraph/io/mxStylesheetCodec.html
    index d763f7ef3..17ee4548b 100644
    --- a/java/docs/com/mxgraph/io/mxStylesheetCodec.html
    +++ b/java/docs/com/mxgraph/io/mxStylesheetCodec.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxStylesheetCodec (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxStylesheetCodec (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxStylesheetCodec (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxStylesheetCodec (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -399,7 +399,7 @@ extends <a href="mxObjectCodec.html" title="class in com.mxgraph.io">mxObjectCod
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/io/mxTerminalChangeCodec.html b/java/docs/com/mxgraph/io/mxTerminalChangeCodec.html
    index 1964dd9c3..8dc0fe747 100644
    --- a/java/docs/com/mxgraph/io/mxTerminalChangeCodec.html
    +++ b/java/docs/com/mxgraph/io/mxTerminalChangeCodec.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxTerminalChangeCodec (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxTerminalChangeCodec (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxTerminalChangeCodec (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxTerminalChangeCodec (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -341,7 +341,7 @@ extends <a href="mxObjectCodec.html" title="class in com.mxgraph.io">mxObjectCod
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/io/package-summary.html b/java/docs/com/mxgraph/io/package-summary.html
    index b13917fa3..2c4eebc09 100644
    --- a/java/docs/com/mxgraph/io/package-summary.html
    +++ b/java/docs/com/mxgraph/io/package-summary.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>com.mxgraph.io (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>com.mxgraph.io (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="com.mxgraph.io (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="com.mxgraph.io (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -224,7 +224,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/io/package-tree.html b/java/docs/com/mxgraph/io/package-tree.html
    index e05e5ae89..c756094f6 100644
    --- a/java/docs/com/mxgraph/io/package-tree.html
    +++ b/java/docs/com/mxgraph/io/package-tree.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>com.mxgraph.io Class Hierarchy (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>com.mxgraph.io Class Hierarchy (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="com.mxgraph.io Class Hierarchy (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="com.mxgraph.io Class Hierarchy (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -162,7 +162,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/io/package-use.html b/java/docs/com/mxgraph/io/package-use.html
    index 4715ac278..5a957adb1 100644
    --- a/java/docs/com/mxgraph/io/package-use.html
    +++ b/java/docs/com/mxgraph/io/package-use.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Package com.mxgraph.io (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Package com.mxgraph.io (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Package com.mxgraph.io (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Package com.mxgraph.io (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -171,7 +171,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/layout/class-use/mxCircleLayout.html b/java/docs/com/mxgraph/layout/class-use/mxCircleLayout.html
    index 4af4dd9c0..ba59c2508 100644
    --- a/java/docs/com/mxgraph/layout/class-use/mxCircleLayout.html
    +++ b/java/docs/com/mxgraph/layout/class-use/mxCircleLayout.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.layout.mxCircleLayout (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.layout.mxCircleLayout (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.layout.mxCircleLayout (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.layout.mxCircleLayout (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/layout/class-use/mxCompactTreeLayout.Polygon.html b/java/docs/com/mxgraph/layout/class-use/mxCompactTreeLayout.Polygon.html
    index c3c2cf4cf..3e86d2cb0 100644
    --- a/java/docs/com/mxgraph/layout/class-use/mxCompactTreeLayout.Polygon.html
    +++ b/java/docs/com/mxgraph/layout/class-use/mxCompactTreeLayout.Polygon.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.layout.mxCompactTreeLayout.Polygon (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.layout.mxCompactTreeLayout.Polygon (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.layout.mxCompactTreeLayout.Polygon (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.layout.mxCompactTreeLayout.Polygon (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -182,7 +182,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/layout/class-use/mxCompactTreeLayout.Polyline.html b/java/docs/com/mxgraph/layout/class-use/mxCompactTreeLayout.Polyline.html
    index c5263d61f..444fab1e3 100644
    --- a/java/docs/com/mxgraph/layout/class-use/mxCompactTreeLayout.Polyline.html
    +++ b/java/docs/com/mxgraph/layout/class-use/mxCompactTreeLayout.Polyline.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.layout.mxCompactTreeLayout.Polyline (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.layout.mxCompactTreeLayout.Polyline (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.layout.mxCompactTreeLayout.Polyline (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.layout.mxCompactTreeLayout.Polyline (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -255,7 +255,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/layout/class-use/mxCompactTreeLayout.TreeNode.html b/java/docs/com/mxgraph/layout/class-use/mxCompactTreeLayout.TreeNode.html
    index 26673c68f..1257414cf 100644
    --- a/java/docs/com/mxgraph/layout/class-use/mxCompactTreeLayout.TreeNode.html
    +++ b/java/docs/com/mxgraph/layout/class-use/mxCompactTreeLayout.TreeNode.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.layout.mxCompactTreeLayout.TreeNode (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.layout.mxCompactTreeLayout.TreeNode (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.layout.mxCompactTreeLayout.TreeNode (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.layout.mxCompactTreeLayout.TreeNode (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -296,7 +296,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/layout/class-use/mxCompactTreeLayout.WeightedCellSorter.html b/java/docs/com/mxgraph/layout/class-use/mxCompactTreeLayout.WeightedCellSorter.html
    index 729a2fc30..030ddd9f8 100644
    --- a/java/docs/com/mxgraph/layout/class-use/mxCompactTreeLayout.WeightedCellSorter.html
    +++ b/java/docs/com/mxgraph/layout/class-use/mxCompactTreeLayout.WeightedCellSorter.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.layout.mxCompactTreeLayout.WeightedCellSorter (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.layout.mxCompactTreeLayout.WeightedCellSorter (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.layout.mxCompactTreeLayout.WeightedCellSorter (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.layout.mxCompactTreeLayout.WeightedCellSorter (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/layout/class-use/mxCompactTreeLayout.html b/java/docs/com/mxgraph/layout/class-use/mxCompactTreeLayout.html
    index a1ddc1cfb..1f620ce68 100644
    --- a/java/docs/com/mxgraph/layout/class-use/mxCompactTreeLayout.html
    +++ b/java/docs/com/mxgraph/layout/class-use/mxCompactTreeLayout.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.layout.mxCompactTreeLayout (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.layout.mxCompactTreeLayout (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.layout.mxCompactTreeLayout (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.layout.mxCompactTreeLayout (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/layout/class-use/mxEdgeLabelLayout.html b/java/docs/com/mxgraph/layout/class-use/mxEdgeLabelLayout.html
    index eb4d0feb1..10a674df2 100644
    --- a/java/docs/com/mxgraph/layout/class-use/mxEdgeLabelLayout.html
    +++ b/java/docs/com/mxgraph/layout/class-use/mxEdgeLabelLayout.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.layout.mxEdgeLabelLayout (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.layout.mxEdgeLabelLayout (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.layout.mxEdgeLabelLayout (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.layout.mxEdgeLabelLayout (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/layout/class-use/mxFastOrganicLayout.html b/java/docs/com/mxgraph/layout/class-use/mxFastOrganicLayout.html
    index 692e87fb8..ee7d72a00 100644
    --- a/java/docs/com/mxgraph/layout/class-use/mxFastOrganicLayout.html
    +++ b/java/docs/com/mxgraph/layout/class-use/mxFastOrganicLayout.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.layout.mxFastOrganicLayout (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.layout.mxFastOrganicLayout (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.layout.mxFastOrganicLayout (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.layout.mxFastOrganicLayout (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/layout/class-use/mxGraphLayout.html b/java/docs/com/mxgraph/layout/class-use/mxGraphLayout.html
    index 8bc812c52..89e8075ea 100644
    --- a/java/docs/com/mxgraph/layout/class-use/mxGraphLayout.html
    +++ b/java/docs/com/mxgraph/layout/class-use/mxGraphLayout.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.layout.mxGraphLayout (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.layout.mxGraphLayout (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.layout.mxGraphLayout (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.layout.mxGraphLayout (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -260,7 +260,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/layout/class-use/mxIGraphLayout.html b/java/docs/com/mxgraph/layout/class-use/mxIGraphLayout.html
    index 4130929ea..fa5e7938c 100644
    --- a/java/docs/com/mxgraph/layout/class-use/mxIGraphLayout.html
    +++ b/java/docs/com/mxgraph/layout/class-use/mxIGraphLayout.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Interface com.mxgraph.layout.mxIGraphLayout (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Interface com.mxgraph.layout.mxIGraphLayout (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Interface com.mxgraph.layout.mxIGraphLayout (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Interface com.mxgraph.layout.mxIGraphLayout (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -312,7 +312,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/layout/class-use/mxOrganicLayout.CellWrapper.html b/java/docs/com/mxgraph/layout/class-use/mxOrganicLayout.CellWrapper.html
    index c1f210bb0..1ab3c04e4 100644
    --- a/java/docs/com/mxgraph/layout/class-use/mxOrganicLayout.CellWrapper.html
    +++ b/java/docs/com/mxgraph/layout/class-use/mxOrganicLayout.CellWrapper.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.layout.mxOrganicLayout.CellWrapper (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.layout.mxOrganicLayout.CellWrapper (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.layout.mxOrganicLayout.CellWrapper (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.layout.mxOrganicLayout.CellWrapper (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -175,7 +175,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/layout/class-use/mxOrganicLayout.html b/java/docs/com/mxgraph/layout/class-use/mxOrganicLayout.html
    index 1bd945c6b..2108d8296 100644
    --- a/java/docs/com/mxgraph/layout/class-use/mxOrganicLayout.html
    +++ b/java/docs/com/mxgraph/layout/class-use/mxOrganicLayout.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.layout.mxOrganicLayout (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.layout.mxOrganicLayout (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.layout.mxOrganicLayout (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.layout.mxOrganicLayout (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/layout/class-use/mxParallelEdgeLayout.html b/java/docs/com/mxgraph/layout/class-use/mxParallelEdgeLayout.html
    index f3054ddc6..8362b6287 100644
    --- a/java/docs/com/mxgraph/layout/class-use/mxParallelEdgeLayout.html
    +++ b/java/docs/com/mxgraph/layout/class-use/mxParallelEdgeLayout.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.layout.mxParallelEdgeLayout (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.layout.mxParallelEdgeLayout (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.layout.mxParallelEdgeLayout (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.layout.mxParallelEdgeLayout (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/layout/class-use/mxPartitionLayout.html b/java/docs/com/mxgraph/layout/class-use/mxPartitionLayout.html
    index 526bf3c47..2a75317e4 100644
    --- a/java/docs/com/mxgraph/layout/class-use/mxPartitionLayout.html
    +++ b/java/docs/com/mxgraph/layout/class-use/mxPartitionLayout.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.layout.mxPartitionLayout (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.layout.mxPartitionLayout (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.layout.mxPartitionLayout (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.layout.mxPartitionLayout (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/layout/class-use/mxStackLayout.html b/java/docs/com/mxgraph/layout/class-use/mxStackLayout.html
    index 46e908aac..930d4ed0b 100644
    --- a/java/docs/com/mxgraph/layout/class-use/mxStackLayout.html
    +++ b/java/docs/com/mxgraph/layout/class-use/mxStackLayout.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.layout.mxStackLayout (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.layout.mxStackLayout (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.layout.mxStackLayout (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.layout.mxStackLayout (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/layout/hierarchical/class-use/mxHierarchicalLayout.html b/java/docs/com/mxgraph/layout/hierarchical/class-use/mxHierarchicalLayout.html
    index 33545b687..8f8a16464 100644
    --- a/java/docs/com/mxgraph/layout/hierarchical/class-use/mxHierarchicalLayout.html
    +++ b/java/docs/com/mxgraph/layout/hierarchical/class-use/mxHierarchicalLayout.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.layout.hierarchical.mxHierarchicalLayout (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.layout.hierarchical.mxHierarchicalLayout (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.mxHierarchicalLayout (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.mxHierarchicalLayout (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -260,7 +260,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/layout/hierarchical/model/class-use/mxGraphAbstractHierarchyCell.html b/java/docs/com/mxgraph/layout/hierarchical/model/class-use/mxGraphAbstractHierarchyCell.html
    index e8bc029ed..4d22d6835 100644
    --- a/java/docs/com/mxgraph/layout/hierarchical/model/class-use/mxGraphAbstractHierarchyCell.html
    +++ b/java/docs/com/mxgraph/layout/hierarchical/model/class-use/mxGraphAbstractHierarchyCell.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphAbstractHierarchyCell (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphAbstractHierarchyCell (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphAbstractHierarchyCell (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphAbstractHierarchyCell (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -324,7 +324,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/layout/hierarchical/model/class-use/mxGraphHierarchyEdge.html b/java/docs/com/mxgraph/layout/hierarchical/model/class-use/mxGraphHierarchyEdge.html
    index fe4e82c31..b163cdfe7 100644
    --- a/java/docs/com/mxgraph/layout/hierarchical/model/class-use/mxGraphHierarchyEdge.html
    +++ b/java/docs/com/mxgraph/layout/hierarchical/model/class-use/mxGraphHierarchyEdge.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphHierarchyEdge (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphHierarchyEdge (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphHierarchyEdge (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphHierarchyEdge (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -312,7 +312,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/layout/hierarchical/model/class-use/mxGraphHierarchyModel.CellVisitor.html b/java/docs/com/mxgraph/layout/hierarchical/model/class-use/mxGraphHierarchyModel.CellVisitor.html
    index 1b237bca3..e83bdb98b 100644
    --- a/java/docs/com/mxgraph/layout/hierarchical/model/class-use/mxGraphHierarchyModel.CellVisitor.html
    +++ b/java/docs/com/mxgraph/layout/hierarchical/model/class-use/mxGraphHierarchyModel.CellVisitor.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Interface com.mxgraph.layout.hierarchical.model.mxGraphHierarchyModel.CellVisitor (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Interface com.mxgraph.layout.hierarchical.model.mxGraphHierarchyModel.CellVisitor (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Interface com.mxgraph.layout.hierarchical.model.mxGraphHierarchyModel.CellVisitor (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Interface com.mxgraph.layout.hierarchical.model.mxGraphHierarchyModel.CellVisitor (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -195,7 +195,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/layout/hierarchical/model/class-use/mxGraphHierarchyModel.html b/java/docs/com/mxgraph/layout/hierarchical/model/class-use/mxGraphHierarchyModel.html
    index 70e00b655..966337865 100644
    --- a/java/docs/com/mxgraph/layout/hierarchical/model/class-use/mxGraphHierarchyModel.html
    +++ b/java/docs/com/mxgraph/layout/hierarchical/model/class-use/mxGraphHierarchyModel.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphHierarchyModel (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphHierarchyModel (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphHierarchyModel (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphHierarchyModel (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -273,7 +273,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/layout/hierarchical/model/class-use/mxGraphHierarchyNode.html b/java/docs/com/mxgraph/layout/hierarchical/model/class-use/mxGraphHierarchyNode.html
    index 56b30866c..b16c42ceb 100644
    --- a/java/docs/com/mxgraph/layout/hierarchical/model/class-use/mxGraphHierarchyNode.html
    +++ b/java/docs/com/mxgraph/layout/hierarchical/model/class-use/mxGraphHierarchyNode.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphHierarchyNode (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphHierarchyNode (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphHierarchyNode (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphHierarchyNode (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -328,7 +328,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/layout/hierarchical/model/class-use/mxGraphHierarchyRank.html b/java/docs/com/mxgraph/layout/hierarchical/model/class-use/mxGraphHierarchyRank.html
    index 77db31674..ddfc80ab5 100644
    --- a/java/docs/com/mxgraph/layout/hierarchical/model/class-use/mxGraphHierarchyRank.html
    +++ b/java/docs/com/mxgraph/layout/hierarchical/model/class-use/mxGraphHierarchyRank.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphHierarchyRank (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphHierarchyRank (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphHierarchyRank (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.model.mxGraphHierarchyRank (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -166,7 +166,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/layout/hierarchical/model/mxGraphAbstractHierarchyCell.html b/java/docs/com/mxgraph/layout/hierarchical/model/mxGraphAbstractHierarchyCell.html
    index a1e651447..e89ed9bad 100644
    --- a/java/docs/com/mxgraph/layout/hierarchical/model/mxGraphAbstractHierarchyCell.html
    +++ b/java/docs/com/mxgraph/layout/hierarchical/model/mxGraphAbstractHierarchyCell.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxGraphAbstractHierarchyCell (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxGraphAbstractHierarchyCell (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxGraphAbstractHierarchyCell (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxGraphAbstractHierarchyCell (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -640,7 +640,7 @@ extends java.lang.Object</pre>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/layout/hierarchical/model/mxGraphHierarchyEdge.html b/java/docs/com/mxgraph/layout/hierarchical/model/mxGraphHierarchyEdge.html
    index 65cba290a..cc300c191 100644
    --- a/java/docs/com/mxgraph/layout/hierarchical/model/mxGraphHierarchyEdge.html
    +++ b/java/docs/com/mxgraph/layout/hierarchical/model/mxGraphHierarchyEdge.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxGraphHierarchyEdge (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxGraphHierarchyEdge (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxGraphHierarchyEdge (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxGraphHierarchyEdge (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -569,7 +569,7 @@ extends <a href="mxGraphAbstractHierarchyCell.html" title="class in com.mxgraph.
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/layout/hierarchical/model/mxGraphHierarchyModel.CellVisitor.html b/java/docs/com/mxgraph/layout/hierarchical/model/mxGraphHierarchyModel.CellVisitor.html
    index 09bdfb9ee..fe27f7a65 100644
    --- a/java/docs/com/mxgraph/layout/hierarchical/model/mxGraphHierarchyModel.CellVisitor.html
    +++ b/java/docs/com/mxgraph/layout/hierarchical/model/mxGraphHierarchyModel.CellVisitor.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxGraphHierarchyModel.CellVisitor (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxGraphHierarchyModel.CellVisitor (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxGraphHierarchyModel.CellVisitor (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxGraphHierarchyModel.CellVisitor (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -236,7 +236,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/layout/hierarchical/model/mxGraphHierarchyModel.html b/java/docs/com/mxgraph/layout/hierarchical/model/mxGraphHierarchyModel.html
    index 0de961bd6..fed052c60 100644
    --- a/java/docs/com/mxgraph/layout/hierarchical/model/mxGraphHierarchyModel.html
    +++ b/java/docs/com/mxgraph/layout/hierarchical/model/mxGraphHierarchyModel.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxGraphHierarchyModel (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxGraphHierarchyModel (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxGraphHierarchyModel (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxGraphHierarchyModel (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -733,7 +733,7 @@ extends java.lang.Object</pre>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/layout/hierarchical/model/mxGraphHierarchyNode.html b/java/docs/com/mxgraph/layout/hierarchical/model/mxGraphHierarchyNode.html
    index f85e5bb3f..8c365fc2c 100644
    --- a/java/docs/com/mxgraph/layout/hierarchical/model/mxGraphHierarchyNode.html
    +++ b/java/docs/com/mxgraph/layout/hierarchical/model/mxGraphHierarchyNode.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxGraphHierarchyNode (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxGraphHierarchyNode (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxGraphHierarchyNode (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxGraphHierarchyNode (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -566,7 +566,7 @@ extends <a href="mxGraphAbstractHierarchyCell.html" title="class in com.mxgraph.
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/layout/hierarchical/model/mxGraphHierarchyRank.html b/java/docs/com/mxgraph/layout/hierarchical/model/mxGraphHierarchyRank.html
    index 3a602fc67..6cb6482ac 100644
    --- a/java/docs/com/mxgraph/layout/hierarchical/model/mxGraphHierarchyRank.html
    +++ b/java/docs/com/mxgraph/layout/hierarchical/model/mxGraphHierarchyRank.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxGraphHierarchyRank (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxGraphHierarchyRank (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxGraphHierarchyRank (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxGraphHierarchyRank (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -304,7 +304,7 @@ extends java.util.LinkedHashSet&lt;<a href="mxGraphAbstractHierarchyCell.html" t
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/layout/hierarchical/model/package-summary.html b/java/docs/com/mxgraph/layout/hierarchical/model/package-summary.html
    index 47ea9b03c..bb8b45876 100644
    --- a/java/docs/com/mxgraph/layout/hierarchical/model/package-summary.html
    +++ b/java/docs/com/mxgraph/layout/hierarchical/model/package-summary.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>com.mxgraph.layout.hierarchical.model (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>com.mxgraph.layout.hierarchical.model (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="com.mxgraph.layout.hierarchical.model (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="com.mxgraph.layout.hierarchical.model (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -183,7 +183,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/layout/hierarchical/model/package-tree.html b/java/docs/com/mxgraph/layout/hierarchical/model/package-tree.html
    index 90e44b041..44d6094d5 100644
    --- a/java/docs/com/mxgraph/layout/hierarchical/model/package-tree.html
    +++ b/java/docs/com/mxgraph/layout/hierarchical/model/package-tree.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>com.mxgraph.layout.hierarchical.model Class Hierarchy (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>com.mxgraph.layout.hierarchical.model Class Hierarchy (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="com.mxgraph.layout.hierarchical.model Class Hierarchy (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="com.mxgraph.layout.hierarchical.model Class Hierarchy (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -164,7 +164,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/layout/hierarchical/model/package-use.html b/java/docs/com/mxgraph/layout/hierarchical/model/package-use.html
    index 7b39bccb4..85751bd3c 100644
    --- a/java/docs/com/mxgraph/layout/hierarchical/model/package-use.html
    +++ b/java/docs/com/mxgraph/layout/hierarchical/model/package-use.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Package com.mxgraph.layout.hierarchical.model (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Package com.mxgraph.layout.hierarchical.model (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Package com.mxgraph.layout.hierarchical.model (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Package com.mxgraph.layout.hierarchical.model (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -241,7 +241,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/layout/hierarchical/mxHierarchicalLayout.html b/java/docs/com/mxgraph/layout/hierarchical/mxHierarchicalLayout.html
    index 70d230014..452531cb5 100644
    --- a/java/docs/com/mxgraph/layout/hierarchical/mxHierarchicalLayout.html
    +++ b/java/docs/com/mxgraph/layout/hierarchical/mxHierarchicalLayout.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxHierarchicalLayout (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxHierarchicalLayout (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxHierarchicalLayout (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxHierarchicalLayout (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -1201,7 +1201,7 @@ extends <a href="../mxGraphLayout.html" title="class in com.mxgraph.layout">mxGr
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/layout/hierarchical/package-summary.html b/java/docs/com/mxgraph/layout/hierarchical/package-summary.html
    index 1ad8aee31..d02576138 100644
    --- a/java/docs/com/mxgraph/layout/hierarchical/package-summary.html
    +++ b/java/docs/com/mxgraph/layout/hierarchical/package-summary.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>com.mxgraph.layout.hierarchical (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>com.mxgraph.layout.hierarchical (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="com.mxgraph.layout.hierarchical (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="com.mxgraph.layout.hierarchical (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -140,7 +140,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/layout/hierarchical/package-tree.html b/java/docs/com/mxgraph/layout/hierarchical/package-tree.html
    index 16fcd0cf6..4936daa74 100644
    --- a/java/docs/com/mxgraph/layout/hierarchical/package-tree.html
    +++ b/java/docs/com/mxgraph/layout/hierarchical/package-tree.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>com.mxgraph.layout.hierarchical Class Hierarchy (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>com.mxgraph.layout.hierarchical Class Hierarchy (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="com.mxgraph.layout.hierarchical Class Hierarchy (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="com.mxgraph.layout.hierarchical Class Hierarchy (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -139,7 +139,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/layout/hierarchical/package-use.html b/java/docs/com/mxgraph/layout/hierarchical/package-use.html
    index b51d5afea..552c4d535 100644
    --- a/java/docs/com/mxgraph/layout/hierarchical/package-use.html
    +++ b/java/docs/com/mxgraph/layout/hierarchical/package-use.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Package com.mxgraph.layout.hierarchical (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Package com.mxgraph.layout.hierarchical (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Package com.mxgraph.layout.hierarchical (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Package com.mxgraph.layout.hierarchical (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -180,7 +180,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxCoordinateAssignment.AreaSpatialCache.html b/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxCoordinateAssignment.AreaSpatialCache.html
    index 2931fbd4e..12b12bb8c 100644
    --- a/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxCoordinateAssignment.AreaSpatialCache.html
    +++ b/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxCoordinateAssignment.AreaSpatialCache.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.layout.hierarchical.stage.mxCoordinateAssignment.AreaSpatialCache (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.layout.hierarchical.stage.mxCoordinateAssignment.AreaSpatialCache (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.stage.mxCoordinateAssignment.AreaSpatialCache (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.stage.mxCoordinateAssignment.AreaSpatialCache (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxCoordinateAssignment.WeightedCellSorter.html b/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxCoordinateAssignment.WeightedCellSorter.html
    index 33e18f1b4..da7c9179a 100644
    --- a/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxCoordinateAssignment.WeightedCellSorter.html
    +++ b/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxCoordinateAssignment.WeightedCellSorter.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.layout.hierarchical.stage.mxCoordinateAssignment.WeightedCellSorter (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.layout.hierarchical.stage.mxCoordinateAssignment.WeightedCellSorter (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.stage.mxCoordinateAssignment.WeightedCellSorter (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.stage.mxCoordinateAssignment.WeightedCellSorter (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxCoordinateAssignment.html b/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxCoordinateAssignment.html
    index 2dd3cd6b8..fc571980b 100644
    --- a/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxCoordinateAssignment.html
    +++ b/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxCoordinateAssignment.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.layout.hierarchical.stage.mxCoordinateAssignment (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.layout.hierarchical.stage.mxCoordinateAssignment (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.stage.mxCoordinateAssignment (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.stage.mxCoordinateAssignment (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxHierarchicalLayoutStage.html b/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxHierarchicalLayoutStage.html
    index 64861b29d..1cbb23e08 100644
    --- a/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxHierarchicalLayoutStage.html
    +++ b/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxHierarchicalLayoutStage.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Interface com.mxgraph.layout.hierarchical.stage.mxHierarchicalLayoutStage (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Interface com.mxgraph.layout.hierarchical.stage.mxHierarchicalLayoutStage (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Interface com.mxgraph.layout.hierarchical.stage.mxHierarchicalLayoutStage (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Interface com.mxgraph.layout.hierarchical.stage.mxHierarchicalLayoutStage (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -180,7 +180,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxMedianHybridCrossingReduction.MedianCellSorter.html b/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxMedianHybridCrossingReduction.MedianCellSorter.html
    index 16d631c44..127d39de2 100644
    --- a/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxMedianHybridCrossingReduction.MedianCellSorter.html
    +++ b/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxMedianHybridCrossingReduction.MedianCellSorter.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.layout.hierarchical.stage.mxMedianHybridCrossingReduction.MedianCellSorter (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.layout.hierarchical.stage.mxMedianHybridCrossingReduction.MedianCellSorter (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.stage.mxMedianHybridCrossingReduction.MedianCellSorter (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.stage.mxMedianHybridCrossingReduction.MedianCellSorter (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxMedianHybridCrossingReduction.html b/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxMedianHybridCrossingReduction.html
    index a76e39349..02b361e4f 100644
    --- a/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxMedianHybridCrossingReduction.html
    +++ b/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxMedianHybridCrossingReduction.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.layout.hierarchical.stage.mxMedianHybridCrossingReduction (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.layout.hierarchical.stage.mxMedianHybridCrossingReduction (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.stage.mxMedianHybridCrossingReduction (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.stage.mxMedianHybridCrossingReduction (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxMinimumCycleRemover.html b/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxMinimumCycleRemover.html
    index 3ec443014..833164186 100644
    --- a/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxMinimumCycleRemover.html
    +++ b/java/docs/com/mxgraph/layout/hierarchical/stage/class-use/mxMinimumCycleRemover.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.layout.hierarchical.stage.mxMinimumCycleRemover (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.layout.hierarchical.stage.mxMinimumCycleRemover (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.stage.mxMinimumCycleRemover (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.layout.hierarchical.stage.mxMinimumCycleRemover (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/layout/hierarchical/stage/mxCoordinateAssignment.AreaSpatialCache.html b/java/docs/com/mxgraph/layout/hierarchical/stage/mxCoordinateAssignment.AreaSpatialCache.html
    index faebcfef7..00f772e97 100644
    --- a/java/docs/com/mxgraph/layout/hierarchical/stage/mxCoordinateAssignment.AreaSpatialCache.html
    +++ b/java/docs/com/mxgraph/layout/hierarchical/stage/mxCoordinateAssignment.AreaSpatialCache.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxCoordinateAssignment.AreaSpatialCache (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxCoordinateAssignment.AreaSpatialCache (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxCoordinateAssignment.AreaSpatialCache (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxCoordinateAssignment.AreaSpatialCache (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -350,7 +350,7 @@ extends java.awt.geom.Rectangle2D.Double</pre>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/layout/hierarchical/stage/mxCoordinateAssignment.WeightedCellSorter.html b/java/docs/com/mxgraph/layout/hierarchical/stage/mxCoordinateAssignment.WeightedCellSorter.html
    index 2142cfdf3..f95a8ed5b 100644
    --- a/java/docs/com/mxgraph/layout/hierarchical/stage/mxCoordinateAssignment.WeightedCellSorter.html
    +++ b/java/docs/com/mxgraph/layout/hierarchical/stage/mxCoordinateAssignment.WeightedCellSorter.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxCoordinateAssignment.WeightedCellSorter (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxCoordinateAssignment.WeightedCellSorter (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxCoordinateAssignment.WeightedCellSorter (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxCoordinateAssignment.WeightedCellSorter (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -415,7 +415,7 @@ implements java.lang.Comparable&lt;java.lang.Object&gt;</pre>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/layout/hierarchical/stage/mxCoordinateAssignment.html b/java/docs/com/mxgraph/layout/hierarchical/stage/mxCoordinateAssignment.html
    index b66cd0e9a..6aa503e3e 100644
    --- a/java/docs/com/mxgraph/layout/hierarchical/stage/mxCoordinateAssignment.html
    +++ b/java/docs/com/mxgraph/layout/hierarchical/stage/mxCoordinateAssignment.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxCoordinateAssignment (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxCoordinateAssignment (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxCoordinateAssignment (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxCoordinateAssignment (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -1301,7 +1301,7 @@ implements <a href="mxHierarchicalLayoutStage.html" title="interface in com.mxgr
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/layout/hierarchical/stage/mxHierarchicalLayoutStage.html b/java/docs/com/mxgraph/layout/hierarchical/stage/mxHierarchicalLayoutStage.html
    index e609235ba..b42513212 100644
    --- a/java/docs/com/mxgraph/layout/hierarchical/stage/mxHierarchicalLayoutStage.html
    +++ b/java/docs/com/mxgraph/layout/hierarchical/stage/mxHierarchicalLayoutStage.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxHierarchicalLayoutStage (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxHierarchicalLayoutStage (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxHierarchicalLayoutStage (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxHierarchicalLayoutStage (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -221,7 +221,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/layout/hierarchical/stage/mxMedianHybridCrossingReduction.MedianCellSorter.html b/java/docs/com/mxgraph/layout/hierarchical/stage/mxMedianHybridCrossingReduction.MedianCellSorter.html
    index 19a8b2709..5f132b8a2 100644
    --- a/java/docs/com/mxgraph/layout/hierarchical/stage/mxMedianHybridCrossingReduction.MedianCellSorter.html
    +++ b/java/docs/com/mxgraph/layout/hierarchical/stage/mxMedianHybridCrossingReduction.MedianCellSorter.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxMedianHybridCrossingReduction.MedianCellSorter (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxMedianHybridCrossingReduction.MedianCellSorter (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxMedianHybridCrossingReduction.MedianCellSorter (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxMedianHybridCrossingReduction.MedianCellSorter (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -333,7 +333,7 @@ implements java.lang.Comparable&lt;java.lang.Object&gt;</pre>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/layout/hierarchical/stage/mxMedianHybridCrossingReduction.html b/java/docs/com/mxgraph/layout/hierarchical/stage/mxMedianHybridCrossingReduction.html
    index b7d2121c2..bc85833fb 100644
    --- a/java/docs/com/mxgraph/layout/hierarchical/stage/mxMedianHybridCrossingReduction.html
    +++ b/java/docs/com/mxgraph/layout/hierarchical/stage/mxMedianHybridCrossingReduction.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxMedianHybridCrossingReduction (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxMedianHybridCrossingReduction (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxMedianHybridCrossingReduction (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxMedianHybridCrossingReduction (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -463,7 +463,7 @@ implements <a href="mxHierarchicalLayoutStage.html" title="interface in com.mxgr
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/layout/hierarchical/stage/mxMinimumCycleRemover.html b/java/docs/com/mxgraph/layout/hierarchical/stage/mxMinimumCycleRemover.html
    index 59e1824a1..cc22750bb 100644
    --- a/java/docs/com/mxgraph/layout/hierarchical/stage/mxMinimumCycleRemover.html
    +++ b/java/docs/com/mxgraph/layout/hierarchical/stage/mxMinimumCycleRemover.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxMinimumCycleRemover (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxMinimumCycleRemover (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxMinimumCycleRemover (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxMinimumCycleRemover (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -325,7 +325,7 @@ implements <a href="mxHierarchicalLayoutStage.html" title="interface in com.mxgr
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/layout/hierarchical/stage/package-summary.html b/java/docs/com/mxgraph/layout/hierarchical/stage/package-summary.html
    index fa3a7b411..06c76f2df 100644
    --- a/java/docs/com/mxgraph/layout/hierarchical/stage/package-summary.html
    +++ b/java/docs/com/mxgraph/layout/hierarchical/stage/package-summary.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>com.mxgraph.layout.hierarchical.stage (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>com.mxgraph.layout.hierarchical.stage (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="com.mxgraph.layout.hierarchical.stage (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="com.mxgraph.layout.hierarchical.stage (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -169,7 +169,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/layout/hierarchical/stage/package-tree.html b/java/docs/com/mxgraph/layout/hierarchical/stage/package-tree.html
    index 5cdb7e531..935c5f720 100644
    --- a/java/docs/com/mxgraph/layout/hierarchical/stage/package-tree.html
    +++ b/java/docs/com/mxgraph/layout/hierarchical/stage/package-tree.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>com.mxgraph.layout.hierarchical.stage Class Hierarchy (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>com.mxgraph.layout.hierarchical.stage Class Hierarchy (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="com.mxgraph.layout.hierarchical.stage Class Hierarchy (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="com.mxgraph.layout.hierarchical.stage Class Hierarchy (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -158,7 +158,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/layout/hierarchical/stage/package-use.html b/java/docs/com/mxgraph/layout/hierarchical/stage/package-use.html
    index b48253d67..39f8a44de 100644
    --- a/java/docs/com/mxgraph/layout/hierarchical/stage/package-use.html
    +++ b/java/docs/com/mxgraph/layout/hierarchical/stage/package-use.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Package com.mxgraph.layout.hierarchical.stage (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Package com.mxgraph.layout.hierarchical.stage (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Package com.mxgraph.layout.hierarchical.stage (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Package com.mxgraph.layout.hierarchical.stage (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -157,7 +157,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/layout/mxCircleLayout.html b/java/docs/com/mxgraph/layout/mxCircleLayout.html
    index f3212dae7..a4da92b09 100644
    --- a/java/docs/com/mxgraph/layout/mxCircleLayout.html
    +++ b/java/docs/com/mxgraph/layout/mxCircleLayout.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxCircleLayout (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxCircleLayout (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxCircleLayout (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxCircleLayout (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -701,7 +701,7 @@ extends <a href="mxGraphLayout.html" title="class in com.mxgraph.layout">mxGraph
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/layout/mxCompactTreeLayout.Polygon.html b/java/docs/com/mxgraph/layout/mxCompactTreeLayout.Polygon.html
    index c10742c37..c19114749 100644
    --- a/java/docs/com/mxgraph/layout/mxCompactTreeLayout.Polygon.html
    +++ b/java/docs/com/mxgraph/layout/mxCompactTreeLayout.Polygon.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxCompactTreeLayout.Polygon (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxCompactTreeLayout.Polygon (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxCompactTreeLayout.Polygon (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxCompactTreeLayout.Polygon (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -315,7 +315,7 @@ extends java.lang.Object</pre>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/layout/mxCompactTreeLayout.Polyline.html b/java/docs/com/mxgraph/layout/mxCompactTreeLayout.Polyline.html
    index 4fb491bc6..845ff295d 100644
    --- a/java/docs/com/mxgraph/layout/mxCompactTreeLayout.Polyline.html
    +++ b/java/docs/com/mxgraph/layout/mxCompactTreeLayout.Polyline.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxCompactTreeLayout.Polyline (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxCompactTreeLayout.Polyline (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxCompactTreeLayout.Polyline (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxCompactTreeLayout.Polyline (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -305,7 +305,7 @@ extends java.lang.Object</pre>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/layout/mxCompactTreeLayout.TreeNode.html b/java/docs/com/mxgraph/layout/mxCompactTreeLayout.TreeNode.html
    index 1e9861fd9..fb4c7437b 100644
    --- a/java/docs/com/mxgraph/layout/mxCompactTreeLayout.TreeNode.html
    +++ b/java/docs/com/mxgraph/layout/mxCompactTreeLayout.TreeNode.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxCompactTreeLayout.TreeNode (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxCompactTreeLayout.TreeNode (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxCompactTreeLayout.TreeNode (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxCompactTreeLayout.TreeNode (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -397,7 +397,7 @@ extends java.lang.Object</pre>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/layout/mxCompactTreeLayout.WeightedCellSorter.html b/java/docs/com/mxgraph/layout/mxCompactTreeLayout.WeightedCellSorter.html
    index 37334ffb3..04e7de95a 100644
    --- a/java/docs/com/mxgraph/layout/mxCompactTreeLayout.WeightedCellSorter.html
    +++ b/java/docs/com/mxgraph/layout/mxCompactTreeLayout.WeightedCellSorter.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxCompactTreeLayout.WeightedCellSorter (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxCompactTreeLayout.WeightedCellSorter (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxCompactTreeLayout.WeightedCellSorter (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxCompactTreeLayout.WeightedCellSorter (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -398,7 +398,7 @@ implements java.lang.Comparable&lt;java.lang.Object&gt;</pre>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/layout/mxCompactTreeLayout.html b/java/docs/com/mxgraph/layout/mxCompactTreeLayout.html
    index ad97a1043..351d81930 100644
    --- a/java/docs/com/mxgraph/layout/mxCompactTreeLayout.html
    +++ b/java/docs/com/mxgraph/layout/mxCompactTreeLayout.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxCompactTreeLayout (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxCompactTreeLayout (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxCompactTreeLayout (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxCompactTreeLayout (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -1375,7 +1375,7 @@ extends <a href="mxGraphLayout.html" title="class in com.mxgraph.layout">mxGraph
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/layout/mxEdgeLabelLayout.html b/java/docs/com/mxgraph/layout/mxEdgeLabelLayout.html
    index 11ae6c045..662b54d64 100644
    --- a/java/docs/com/mxgraph/layout/mxEdgeLabelLayout.html
    +++ b/java/docs/com/mxgraph/layout/mxEdgeLabelLayout.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxEdgeLabelLayout (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxEdgeLabelLayout (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxEdgeLabelLayout (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxEdgeLabelLayout (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -345,7 +345,7 @@ extends <a href="mxGraphLayout.html" title="class in com.mxgraph.layout">mxGraph
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/layout/mxFastOrganicLayout.html b/java/docs/com/mxgraph/layout/mxFastOrganicLayout.html
    index 509c0c206..51270c64f 100644
    --- a/java/docs/com/mxgraph/layout/mxFastOrganicLayout.html
    +++ b/java/docs/com/mxgraph/layout/mxFastOrganicLayout.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxFastOrganicLayout (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxFastOrganicLayout (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxFastOrganicLayout (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxFastOrganicLayout (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -1114,7 +1114,7 @@ extends <a href="mxGraphLayout.html" title="class in com.mxgraph.layout">mxGraph
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/layout/mxGraphLayout.html b/java/docs/com/mxgraph/layout/mxGraphLayout.html
    index 200e64e78..09d34e33d 100644
    --- a/java/docs/com/mxgraph/layout/mxGraphLayout.html
    +++ b/java/docs/com/mxgraph/layout/mxGraphLayout.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxGraphLayout (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxGraphLayout (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxGraphLayout (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxGraphLayout (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -737,7 +737,7 @@ implements <a href="mxIGraphLayout.html" title="interface in com.mxgraph.layout"
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/layout/mxIGraphLayout.html b/java/docs/com/mxgraph/layout/mxIGraphLayout.html
    index a5e4ada98..68d2fd7b3 100644
    --- a/java/docs/com/mxgraph/layout/mxIGraphLayout.html
    +++ b/java/docs/com/mxgraph/layout/mxIGraphLayout.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxIGraphLayout (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxIGraphLayout (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxIGraphLayout (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxIGraphLayout (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -250,7 +250,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/layout/mxOrganicLayout.CellWrapper.html b/java/docs/com/mxgraph/layout/mxOrganicLayout.CellWrapper.html
    index ab7fc8859..65becb2e5 100644
    --- a/java/docs/com/mxgraph/layout/mxOrganicLayout.CellWrapper.html
    +++ b/java/docs/com/mxgraph/layout/mxOrganicLayout.CellWrapper.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxOrganicLayout.CellWrapper (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxOrganicLayout.CellWrapper (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxOrganicLayout.CellWrapper (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxOrganicLayout.CellWrapper (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -756,7 +756,7 @@ extends java.lang.Object</pre>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/layout/mxOrganicLayout.html b/java/docs/com/mxgraph/layout/mxOrganicLayout.html
    index cded90af5..d4509ca6c 100644
    --- a/java/docs/com/mxgraph/layout/mxOrganicLayout.html
    +++ b/java/docs/com/mxgraph/layout/mxOrganicLayout.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxOrganicLayout (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxOrganicLayout (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxOrganicLayout (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxOrganicLayout (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -2451,7 +2451,7 @@ extends <a href="mxGraphLayout.html" title="class in com.mxgraph.layout">mxGraph
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/layout/mxParallelEdgeLayout.html b/java/docs/com/mxgraph/layout/mxParallelEdgeLayout.html
    index eb94171b3..4d1167614 100644
    --- a/java/docs/com/mxgraph/layout/mxParallelEdgeLayout.html
    +++ b/java/docs/com/mxgraph/layout/mxParallelEdgeLayout.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxParallelEdgeLayout (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxParallelEdgeLayout (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxParallelEdgeLayout (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxParallelEdgeLayout (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -428,7 +428,7 @@ extends <a href="mxGraphLayout.html" title="class in com.mxgraph.layout">mxGraph
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/layout/mxPartitionLayout.html b/java/docs/com/mxgraph/layout/mxPartitionLayout.html
    index 5377149eb..6fd9c891b 100644
    --- a/java/docs/com/mxgraph/layout/mxPartitionLayout.html
    +++ b/java/docs/com/mxgraph/layout/mxPartitionLayout.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxPartitionLayout (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxPartitionLayout (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxPartitionLayout (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxPartitionLayout (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -523,7 +523,7 @@ extends <a href="mxGraphLayout.html" title="class in com.mxgraph.layout">mxGraph
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/layout/mxStackLayout.html b/java/docs/com/mxgraph/layout/mxStackLayout.html
    index c19c0b1bd..f0c3af2ce 100644
    --- a/java/docs/com/mxgraph/layout/mxStackLayout.html
    +++ b/java/docs/com/mxgraph/layout/mxStackLayout.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxStackLayout (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxStackLayout (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxStackLayout (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxStackLayout (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -608,7 +608,7 @@ extends <a href="mxGraphLayout.html" title="class in com.mxgraph.layout">mxGraph
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/layout/orthogonal/class-use/mxOrthogonalLayout.html b/java/docs/com/mxgraph/layout/orthogonal/class-use/mxOrthogonalLayout.html
    index 724d9c6f7..8a5e73491 100644
    --- a/java/docs/com/mxgraph/layout/orthogonal/class-use/mxOrthogonalLayout.html
    +++ b/java/docs/com/mxgraph/layout/orthogonal/class-use/mxOrthogonalLayout.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.layout.orthogonal.mxOrthogonalLayout (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.layout.orthogonal.mxOrthogonalLayout (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.layout.orthogonal.mxOrthogonalLayout (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.layout.orthogonal.mxOrthogonalLayout (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/layout/orthogonal/model/class-use/mxOrthogonalModel.html b/java/docs/com/mxgraph/layout/orthogonal/model/class-use/mxOrthogonalModel.html
    index 4e9516ebd..e45974888 100644
    --- a/java/docs/com/mxgraph/layout/orthogonal/model/class-use/mxOrthogonalModel.html
    +++ b/java/docs/com/mxgraph/layout/orthogonal/model/class-use/mxOrthogonalModel.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.layout.orthogonal.model.mxOrthogonalModel (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.layout.orthogonal.model.mxOrthogonalModel (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.layout.orthogonal.model.mxOrthogonalModel (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.layout.orthogonal.model.mxOrthogonalModel (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -164,7 +164,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/layout/orthogonal/model/class-use/mxPointPair.html b/java/docs/com/mxgraph/layout/orthogonal/model/class-use/mxPointPair.html
    index ab3f3a67c..af9e7bea6 100644
    --- a/java/docs/com/mxgraph/layout/orthogonal/model/class-use/mxPointPair.html
    +++ b/java/docs/com/mxgraph/layout/orthogonal/model/class-use/mxPointPair.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.layout.orthogonal.model.mxPointPair (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.layout.orthogonal.model.mxPointPair (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.layout.orthogonal.model.mxPointPair (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.layout.orthogonal.model.mxPointPair (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/layout/orthogonal/model/class-use/mxPointSequence.html b/java/docs/com/mxgraph/layout/orthogonal/model/class-use/mxPointSequence.html
    index 355b983bd..00df65b7e 100644
    --- a/java/docs/com/mxgraph/layout/orthogonal/model/class-use/mxPointSequence.html
    +++ b/java/docs/com/mxgraph/layout/orthogonal/model/class-use/mxPointSequence.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.layout.orthogonal.model.mxPointSequence (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.layout.orthogonal.model.mxPointSequence (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.layout.orthogonal.model.mxPointSequence (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.layout.orthogonal.model.mxPointSequence (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/layout/orthogonal/model/class-use/mxSegment.html b/java/docs/com/mxgraph/layout/orthogonal/model/class-use/mxSegment.html
    index fafd773fb..8ca99bb5f 100644
    --- a/java/docs/com/mxgraph/layout/orthogonal/model/class-use/mxSegment.html
    +++ b/java/docs/com/mxgraph/layout/orthogonal/model/class-use/mxSegment.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.layout.orthogonal.model.mxSegment (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.layout.orthogonal.model.mxSegment (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.layout.orthogonal.model.mxSegment (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.layout.orthogonal.model.mxSegment (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/layout/orthogonal/model/mxOrthogonalModel.html b/java/docs/com/mxgraph/layout/orthogonal/model/mxOrthogonalModel.html
    index 9a264fac8..ce95eb748 100644
    --- a/java/docs/com/mxgraph/layout/orthogonal/model/mxOrthogonalModel.html
    +++ b/java/docs/com/mxgraph/layout/orthogonal/model/mxOrthogonalModel.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxOrthogonalModel (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxOrthogonalModel (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxOrthogonalModel (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxOrthogonalModel (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -226,7 +226,7 @@ extends java.lang.Object</pre>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/layout/orthogonal/model/mxPointPair.html b/java/docs/com/mxgraph/layout/orthogonal/model/mxPointPair.html
    index f549fa8db..c5d70c2ab 100644
    --- a/java/docs/com/mxgraph/layout/orthogonal/model/mxPointPair.html
    +++ b/java/docs/com/mxgraph/layout/orthogonal/model/mxPointPair.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxPointPair (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxPointPair (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxPointPair (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxPointPair (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -225,7 +225,7 @@ extends java.lang.Object</pre>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/layout/orthogonal/model/mxPointSequence.html b/java/docs/com/mxgraph/layout/orthogonal/model/mxPointSequence.html
    index 667eb902c..5807dd99e 100644
    --- a/java/docs/com/mxgraph/layout/orthogonal/model/mxPointSequence.html
    +++ b/java/docs/com/mxgraph/layout/orthogonal/model/mxPointSequence.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxPointSequence (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxPointSequence (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxPointSequence (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxPointSequence (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -225,7 +225,7 @@ extends java.lang.Object</pre>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/layout/orthogonal/model/mxSegment.html b/java/docs/com/mxgraph/layout/orthogonal/model/mxSegment.html
    index 415d7f03b..50eee0160 100644
    --- a/java/docs/com/mxgraph/layout/orthogonal/model/mxSegment.html
    +++ b/java/docs/com/mxgraph/layout/orthogonal/model/mxSegment.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxSegment (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxSegment (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxSegment (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxSegment (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -225,7 +225,7 @@ extends java.lang.Object</pre>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/layout/orthogonal/model/package-summary.html b/java/docs/com/mxgraph/layout/orthogonal/model/package-summary.html
    index aa1ce5172..175b1f147 100644
    --- a/java/docs/com/mxgraph/layout/orthogonal/model/package-summary.html
    +++ b/java/docs/com/mxgraph/layout/orthogonal/model/package-summary.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>com.mxgraph.layout.orthogonal.model (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>com.mxgraph.layout.orthogonal.model (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="com.mxgraph.layout.orthogonal.model (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="com.mxgraph.layout.orthogonal.model (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -152,7 +152,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/layout/orthogonal/model/package-tree.html b/java/docs/com/mxgraph/layout/orthogonal/model/package-tree.html
    index 360f35c22..3d9fa8fa6 100644
    --- a/java/docs/com/mxgraph/layout/orthogonal/model/package-tree.html
    +++ b/java/docs/com/mxgraph/layout/orthogonal/model/package-tree.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>com.mxgraph.layout.orthogonal.model Class Hierarchy (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>com.mxgraph.layout.orthogonal.model Class Hierarchy (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="com.mxgraph.layout.orthogonal.model Class Hierarchy (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="com.mxgraph.layout.orthogonal.model Class Hierarchy (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -138,7 +138,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/layout/orthogonal/model/package-use.html b/java/docs/com/mxgraph/layout/orthogonal/model/package-use.html
    index 76508034d..415b162e0 100644
    --- a/java/docs/com/mxgraph/layout/orthogonal/model/package-use.html
    +++ b/java/docs/com/mxgraph/layout/orthogonal/model/package-use.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Package com.mxgraph.layout.orthogonal.model (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Package com.mxgraph.layout.orthogonal.model (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Package com.mxgraph.layout.orthogonal.model (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Package com.mxgraph.layout.orthogonal.model (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -157,7 +157,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/layout/orthogonal/mxOrthogonalLayout.html b/java/docs/com/mxgraph/layout/orthogonal/mxOrthogonalLayout.html
    index 48fd31751..e55e5d297 100644
    --- a/java/docs/com/mxgraph/layout/orthogonal/mxOrthogonalLayout.html
    +++ b/java/docs/com/mxgraph/layout/orthogonal/mxOrthogonalLayout.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxOrthogonalLayout (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxOrthogonalLayout (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxOrthogonalLayout (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxOrthogonalLayout (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -359,7 +359,7 @@ extends <a href="../mxGraphLayout.html" title="class in com.mxgraph.layout">mxGr
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/layout/orthogonal/package-summary.html b/java/docs/com/mxgraph/layout/orthogonal/package-summary.html
    index ea7274b8b..f988b8ed9 100644
    --- a/java/docs/com/mxgraph/layout/orthogonal/package-summary.html
    +++ b/java/docs/com/mxgraph/layout/orthogonal/package-summary.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>com.mxgraph.layout.orthogonal (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>com.mxgraph.layout.orthogonal (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="com.mxgraph.layout.orthogonal (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="com.mxgraph.layout.orthogonal (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -138,7 +138,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/layout/orthogonal/package-tree.html b/java/docs/com/mxgraph/layout/orthogonal/package-tree.html
    index 06fe21e42..d373ff5e5 100644
    --- a/java/docs/com/mxgraph/layout/orthogonal/package-tree.html
    +++ b/java/docs/com/mxgraph/layout/orthogonal/package-tree.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>com.mxgraph.layout.orthogonal Class Hierarchy (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>com.mxgraph.layout.orthogonal Class Hierarchy (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="com.mxgraph.layout.orthogonal Class Hierarchy (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="com.mxgraph.layout.orthogonal Class Hierarchy (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -139,7 +139,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/layout/orthogonal/package-use.html b/java/docs/com/mxgraph/layout/orthogonal/package-use.html
    index fc76422aa..c892fa6fe 100644
    --- a/java/docs/com/mxgraph/layout/orthogonal/package-use.html
    +++ b/java/docs/com/mxgraph/layout/orthogonal/package-use.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Package com.mxgraph.layout.orthogonal (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Package com.mxgraph.layout.orthogonal (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Package com.mxgraph.layout.orthogonal (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Package com.mxgraph.layout.orthogonal (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/layout/package-summary.html b/java/docs/com/mxgraph/layout/package-summary.html
    index 3bc56ddbc..d239f60db 100644
    --- a/java/docs/com/mxgraph/layout/package-summary.html
    +++ b/java/docs/com/mxgraph/layout/package-summary.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>com.mxgraph.layout (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>com.mxgraph.layout (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="com.mxgraph.layout (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="com.mxgraph.layout (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -211,7 +211,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/layout/package-tree.html b/java/docs/com/mxgraph/layout/package-tree.html
    index 0cde5d240..86af6b517 100644
    --- a/java/docs/com/mxgraph/layout/package-tree.html
    +++ b/java/docs/com/mxgraph/layout/package-tree.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>com.mxgraph.layout Class Hierarchy (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>com.mxgraph.layout Class Hierarchy (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="com.mxgraph.layout Class Hierarchy (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="com.mxgraph.layout Class Hierarchy (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -157,7 +157,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/layout/package-use.html b/java/docs/com/mxgraph/layout/package-use.html
    index 241020eeb..e7395cc88 100644
    --- a/java/docs/com/mxgraph/layout/package-use.html
    +++ b/java/docs/com/mxgraph/layout/package-use.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Package com.mxgraph.layout (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Package com.mxgraph.layout (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Package com.mxgraph.layout (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Package com.mxgraph.layout (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -268,7 +268,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/model/class-use/mxCell.html b/java/docs/com/mxgraph/model/class-use/mxCell.html
    index 0bf24f5e3..ab92ec427 100644
    --- a/java/docs/com/mxgraph/model/class-use/mxCell.html
    +++ b/java/docs/com/mxgraph/model/class-use/mxCell.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.model.mxCell (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.model.mxCell (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.model.mxCell (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.model.mxCell (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/model/class-use/mxCellPath.html b/java/docs/com/mxgraph/model/class-use/mxCellPath.html
    index b7c82502c..2f1e2042e 100644
    --- a/java/docs/com/mxgraph/model/class-use/mxCellPath.html
    +++ b/java/docs/com/mxgraph/model/class-use/mxCellPath.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.model.mxCellPath (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.model.mxCellPath (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.model.mxCellPath (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.model.mxCellPath (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/model/class-use/mxGeometry.html b/java/docs/com/mxgraph/model/class-use/mxGeometry.html
    index ce3cf1f4a..d817446fa 100644
    --- a/java/docs/com/mxgraph/model/class-use/mxGeometry.html
    +++ b/java/docs/com/mxgraph/model/class-use/mxGeometry.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.model.mxGeometry (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.model.mxGeometry (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.model.mxGeometry (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.model.mxGeometry (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -399,7 +399,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/model/class-use/mxGraphModel.Filter.html b/java/docs/com/mxgraph/model/class-use/mxGraphModel.Filter.html
    index 2673b703d..5c72b2d6b 100644
    --- a/java/docs/com/mxgraph/model/class-use/mxGraphModel.Filter.html
    +++ b/java/docs/com/mxgraph/model/class-use/mxGraphModel.Filter.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Interface com.mxgraph.model.mxGraphModel.Filter (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Interface com.mxgraph.model.mxGraphModel.Filter (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Interface com.mxgraph.model.mxGraphModel.Filter (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Interface com.mxgraph.model.mxGraphModel.Filter (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -184,7 +184,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/model/class-use/mxGraphModel.html b/java/docs/com/mxgraph/model/class-use/mxGraphModel.html
    index 67e1480e6..e9e3043af 100644
    --- a/java/docs/com/mxgraph/model/class-use/mxGraphModel.html
    +++ b/java/docs/com/mxgraph/model/class-use/mxGraphModel.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.model.mxGraphModel (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.model.mxGraphModel (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -215,7 +215,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxChildChange.html b/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxChildChange.html
    index 27079fe48..6b63aba3a 100644
    --- a/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxChildChange.html
    +++ b/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxChildChange.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.model.mxGraphModel.mxChildChange (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.model.mxGraphModel.mxChildChange (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel.mxChildChange (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel.mxChildChange (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxCollapseChange.html b/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxCollapseChange.html
    index 255f91754..73e056eb0 100644
    --- a/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxCollapseChange.html
    +++ b/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxCollapseChange.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.model.mxGraphModel.mxCollapseChange (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.model.mxGraphModel.mxCollapseChange (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel.mxCollapseChange (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel.mxCollapseChange (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxGeometryChange.html b/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxGeometryChange.html
    index f96e3d96e..5aa392654 100644
    --- a/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxGeometryChange.html
    +++ b/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxGeometryChange.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.model.mxGraphModel.mxGeometryChange (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.model.mxGraphModel.mxGeometryChange (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel.mxGeometryChange (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel.mxGeometryChange (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxRootChange.html b/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxRootChange.html
    index 1b979be97..2b20ad855 100644
    --- a/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxRootChange.html
    +++ b/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxRootChange.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.model.mxGraphModel.mxRootChange (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.model.mxGraphModel.mxRootChange (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel.mxRootChange (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel.mxRootChange (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxStyleChange.html b/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxStyleChange.html
    index 44146c3df..4b9c51c71 100644
    --- a/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxStyleChange.html
    +++ b/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxStyleChange.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.model.mxGraphModel.mxStyleChange (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.model.mxGraphModel.mxStyleChange (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel.mxStyleChange (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel.mxStyleChange (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxTerminalChange.html b/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxTerminalChange.html
    index 0560f7de6..ea2da047b 100644
    --- a/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxTerminalChange.html
    +++ b/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxTerminalChange.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.model.mxGraphModel.mxTerminalChange (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.model.mxGraphModel.mxTerminalChange (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel.mxTerminalChange (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel.mxTerminalChange (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxValueChange.html b/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxValueChange.html
    index f8e2f5c05..4fa74e301 100644
    --- a/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxValueChange.html
    +++ b/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxValueChange.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.model.mxGraphModel.mxValueChange (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.model.mxGraphModel.mxValueChange (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel.mxValueChange (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel.mxValueChange (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxVisibleChange.html b/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxVisibleChange.html
    index 75b6033f2..0f28292b0 100644
    --- a/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxVisibleChange.html
    +++ b/java/docs/com/mxgraph/model/class-use/mxGraphModel.mxVisibleChange.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.model.mxGraphModel.mxVisibleChange (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.model.mxGraphModel.mxVisibleChange (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel.mxVisibleChange (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.model.mxGraphModel.mxVisibleChange (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/model/class-use/mxICell.html b/java/docs/com/mxgraph/model/class-use/mxICell.html
    index 6e15946e0..ac8d4b950 100644
    --- a/java/docs/com/mxgraph/model/class-use/mxICell.html
    +++ b/java/docs/com/mxgraph/model/class-use/mxICell.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Interface com.mxgraph.model.mxICell (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Interface com.mxgraph.model.mxICell (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Interface com.mxgraph.model.mxICell (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Interface com.mxgraph.model.mxICell (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -623,7 +623,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/model/class-use/mxIGraphModel.html b/java/docs/com/mxgraph/model/class-use/mxIGraphModel.html
    index 48c29c2fe..e68f40822 100644
    --- a/java/docs/com/mxgraph/model/class-use/mxIGraphModel.html
    +++ b/java/docs/com/mxgraph/model/class-use/mxIGraphModel.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Interface com.mxgraph.model.mxIGraphModel (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Interface com.mxgraph.model.mxIGraphModel (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Interface com.mxgraph.model.mxIGraphModel (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Interface com.mxgraph.model.mxIGraphModel (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -593,7 +593,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/model/class-use/mxIGraphModel.mxAtomicGraphModelChange.html b/java/docs/com/mxgraph/model/class-use/mxIGraphModel.mxAtomicGraphModelChange.html
    index 7c3e3c9bf..b7f70bf21 100644
    --- a/java/docs/com/mxgraph/model/class-use/mxIGraphModel.mxAtomicGraphModelChange.html
    +++ b/java/docs/com/mxgraph/model/class-use/mxIGraphModel.mxAtomicGraphModelChange.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.model.mxIGraphModel.mxAtomicGraphModelChange (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.model.mxIGraphModel.mxAtomicGraphModelChange (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.model.mxIGraphModel.mxAtomicGraphModelChange (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.model.mxIGraphModel.mxAtomicGraphModelChange (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -218,7 +218,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/model/mxCell.html b/java/docs/com/mxgraph/model/mxCell.html
    index a3b55d5b5..3153f393f 100644
    --- a/java/docs/com/mxgraph/model/mxCell.html
    +++ b/java/docs/com/mxgraph/model/mxCell.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxCell (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxCell (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxCell (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxCell (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -1709,7 +1709,7 @@ implements <a href="mxICell.html" title="interface in com.mxgraph.model">mxICell
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/model/mxCellPath.html b/java/docs/com/mxgraph/model/mxCellPath.html
    index 0493858bb..d567ccd44 100644
    --- a/java/docs/com/mxgraph/model/mxCellPath.html
    +++ b/java/docs/com/mxgraph/model/mxCellPath.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxCellPath (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxCellPath (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxCellPath (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxCellPath (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -393,7 +393,7 @@ extends java.lang.Object</pre>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/model/mxGeometry.html b/java/docs/com/mxgraph/model/mxGeometry.html
    index c0afffd50..3021a20c4 100644
    --- a/java/docs/com/mxgraph/model/mxGeometry.html
    +++ b/java/docs/com/mxgraph/model/mxGeometry.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxGeometry (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxGeometry (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxGeometry (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxGeometry (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -864,7 +864,7 @@ extends <a href="../util/mxRectangle.html" title="class in com.mxgraph.util">mxR
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/model/mxGraphModel.Filter.html b/java/docs/com/mxgraph/model/mxGraphModel.Filter.html
    index f4ccfbe4d..3963468bf 100644
    --- a/java/docs/com/mxgraph/model/mxGraphModel.Filter.html
    +++ b/java/docs/com/mxgraph/model/mxGraphModel.Filter.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxGraphModel.Filter (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxGraphModel.Filter (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxGraphModel.Filter (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxGraphModel.Filter (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -211,7 +211,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/model/mxGraphModel.html b/java/docs/com/mxgraph/model/mxGraphModel.html
    index 99b66dca4..9ecfbe756 100644
    --- a/java/docs/com/mxgraph/model/mxGraphModel.html
    +++ b/java/docs/com/mxgraph/model/mxGraphModel.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxGraphModel (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxGraphModel (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxGraphModel (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxGraphModel (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -2728,7 +2728,7 @@ implements <a href="mxIGraphModel.html" title="interface in com.mxgraph.model">m
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/model/mxGraphModel.mxChildChange.html b/java/docs/com/mxgraph/model/mxGraphModel.mxChildChange.html
    index 472d03e66..c6d6dfe83 100644
    --- a/java/docs/com/mxgraph/model/mxGraphModel.mxChildChange.html
    +++ b/java/docs/com/mxgraph/model/mxGraphModel.mxChildChange.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxGraphModel.mxChildChange (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxGraphModel.mxChildChange (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxGraphModel.mxChildChange (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxGraphModel.mxChildChange (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -676,7 +676,7 @@ extends <a href="mxIGraphModel.mxAtomicGraphModelChange.html" title="class in co
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/model/mxGraphModel.mxCollapseChange.html b/java/docs/com/mxgraph/model/mxGraphModel.mxCollapseChange.html
    index 252374bfd..fc95c6252 100644
    --- a/java/docs/com/mxgraph/model/mxGraphModel.mxCollapseChange.html
    +++ b/java/docs/com/mxgraph/model/mxGraphModel.mxCollapseChange.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxGraphModel.mxCollapseChange (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxGraphModel.mxCollapseChange (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxGraphModel.mxCollapseChange (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxGraphModel.mxCollapseChange (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -482,7 +482,7 @@ extends <a href="mxIGraphModel.mxAtomicGraphModelChange.html" title="class in co
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/model/mxGraphModel.mxGeometryChange.html b/java/docs/com/mxgraph/model/mxGraphModel.mxGeometryChange.html
    index 9e8711e72..ba755f6e8 100644
    --- a/java/docs/com/mxgraph/model/mxGraphModel.mxGeometryChange.html
    +++ b/java/docs/com/mxgraph/model/mxGraphModel.mxGeometryChange.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxGraphModel.mxGeometryChange (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxGraphModel.mxGeometryChange (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxGraphModel.mxGeometryChange (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxGraphModel.mxGeometryChange (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -482,7 +482,7 @@ extends <a href="mxIGraphModel.mxAtomicGraphModelChange.html" title="class in co
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/model/mxGraphModel.mxRootChange.html b/java/docs/com/mxgraph/model/mxGraphModel.mxRootChange.html
    index d4f985440..c1d2ff137 100644
    --- a/java/docs/com/mxgraph/model/mxGraphModel.mxRootChange.html
    +++ b/java/docs/com/mxgraph/model/mxGraphModel.mxRootChange.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxGraphModel.mxRootChange (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxGraphModel.mxRootChange (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxGraphModel.mxRootChange (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxGraphModel.mxRootChange (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -440,7 +440,7 @@ extends <a href="mxIGraphModel.mxAtomicGraphModelChange.html" title="class in co
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/model/mxGraphModel.mxStyleChange.html b/java/docs/com/mxgraph/model/mxGraphModel.mxStyleChange.html
    index 38a89ec65..66f4fe66a 100644
    --- a/java/docs/com/mxgraph/model/mxGraphModel.mxStyleChange.html
    +++ b/java/docs/com/mxgraph/model/mxGraphModel.mxStyleChange.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxGraphModel.mxStyleChange (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxGraphModel.mxStyleChange (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxGraphModel.mxStyleChange (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxGraphModel.mxStyleChange (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -482,7 +482,7 @@ extends <a href="mxIGraphModel.mxAtomicGraphModelChange.html" title="class in co
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/model/mxGraphModel.mxTerminalChange.html b/java/docs/com/mxgraph/model/mxGraphModel.mxTerminalChange.html
    index 8052f28f9..108afee94 100644
    --- a/java/docs/com/mxgraph/model/mxGraphModel.mxTerminalChange.html
    +++ b/java/docs/com/mxgraph/model/mxGraphModel.mxTerminalChange.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxGraphModel.mxTerminalChange (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxGraphModel.mxTerminalChange (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxGraphModel.mxTerminalChange (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxGraphModel.mxTerminalChange (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -530,7 +530,7 @@ extends <a href="mxIGraphModel.mxAtomicGraphModelChange.html" title="class in co
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/model/mxGraphModel.mxValueChange.html b/java/docs/com/mxgraph/model/mxGraphModel.mxValueChange.html
    index db69371e7..1071055fa 100644
    --- a/java/docs/com/mxgraph/model/mxGraphModel.mxValueChange.html
    +++ b/java/docs/com/mxgraph/model/mxGraphModel.mxValueChange.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxGraphModel.mxValueChange (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxGraphModel.mxValueChange (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxGraphModel.mxValueChange (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxGraphModel.mxValueChange (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -482,7 +482,7 @@ extends <a href="mxIGraphModel.mxAtomicGraphModelChange.html" title="class in co
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/model/mxGraphModel.mxVisibleChange.html b/java/docs/com/mxgraph/model/mxGraphModel.mxVisibleChange.html
    index c408da72f..98f0a3326 100644
    --- a/java/docs/com/mxgraph/model/mxGraphModel.mxVisibleChange.html
    +++ b/java/docs/com/mxgraph/model/mxGraphModel.mxVisibleChange.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxGraphModel.mxVisibleChange (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxGraphModel.mxVisibleChange (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxGraphModel.mxVisibleChange (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxGraphModel.mxVisibleChange (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -482,7 +482,7 @@ extends <a href="mxIGraphModel.mxAtomicGraphModelChange.html" title="class in co
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/model/mxICell.html b/java/docs/com/mxgraph/model/mxICell.html
    index 51aa3dd38..bbd63a0f4 100644
    --- a/java/docs/com/mxgraph/model/mxICell.html
    +++ b/java/docs/com/mxgraph/model/mxICell.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxICell (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxICell (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxICell (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxICell (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -955,7 +955,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/model/mxIGraphModel.html b/java/docs/com/mxgraph/model/mxIGraphModel.html
    index b3367b150..7262a11d5 100644
    --- a/java/docs/com/mxgraph/model/mxIGraphModel.html
    +++ b/java/docs/com/mxgraph/model/mxIGraphModel.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxIGraphModel (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxIGraphModel (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxIGraphModel (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxIGraphModel (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -996,7 +996,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/model/mxIGraphModel.mxAtomicGraphModelChange.html b/java/docs/com/mxgraph/model/mxIGraphModel.mxAtomicGraphModelChange.html
    index 9939e0830..c3dbb4669 100644
    --- a/java/docs/com/mxgraph/model/mxIGraphModel.mxAtomicGraphModelChange.html
    +++ b/java/docs/com/mxgraph/model/mxIGraphModel.mxAtomicGraphModelChange.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxIGraphModel.mxAtomicGraphModelChange (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxIGraphModel.mxAtomicGraphModelChange (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxIGraphModel.mxAtomicGraphModelChange (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxIGraphModel.mxAtomicGraphModelChange (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -382,7 +382,7 @@ implements <a href="../util/mxUndoableEdit.mxUndoableChange.html" title="interfa
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/model/package-summary.html b/java/docs/com/mxgraph/model/package-summary.html
    index 04aaa939c..a66b1b0bb 100644
    --- a/java/docs/com/mxgraph/model/package-summary.html
    +++ b/java/docs/com/mxgraph/model/package-summary.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>com.mxgraph.model (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>com.mxgraph.model (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="com.mxgraph.model (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="com.mxgraph.model (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -228,7 +228,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/model/package-tree.html b/java/docs/com/mxgraph/model/package-tree.html
    index 1c7aa25ac..62187141f 100644
    --- a/java/docs/com/mxgraph/model/package-tree.html
    +++ b/java/docs/com/mxgraph/model/package-tree.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>com.mxgraph.model Class Hierarchy (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>com.mxgraph.model Class Hierarchy (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="com.mxgraph.model Class Hierarchy (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="com.mxgraph.model Class Hierarchy (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -170,7 +170,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/model/package-use.html b/java/docs/com/mxgraph/model/package-use.html
    index 67c98ff8f..cef2c076c 100644
    --- a/java/docs/com/mxgraph/model/package-use.html
    +++ b/java/docs/com/mxgraph/model/package-use.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Package com.mxgraph.model (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Package com.mxgraph.model (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Package com.mxgraph.model (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Package com.mxgraph.model (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -271,7 +271,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/reader/class-use/mxDomOutputParser.IElementHandler.html b/java/docs/com/mxgraph/reader/class-use/mxDomOutputParser.IElementHandler.html
    index 7d561eb06..3ca80f7d2 100644
    --- a/java/docs/com/mxgraph/reader/class-use/mxDomOutputParser.IElementHandler.html
    +++ b/java/docs/com/mxgraph/reader/class-use/mxDomOutputParser.IElementHandler.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Interface com.mxgraph.reader.mxDomOutputParser.IElementHandler (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Interface com.mxgraph.reader.mxDomOutputParser.IElementHandler (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Interface com.mxgraph.reader.mxDomOutputParser.IElementHandler (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Interface com.mxgraph.reader.mxDomOutputParser.IElementHandler (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -167,7 +167,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/reader/class-use/mxDomOutputParser.html b/java/docs/com/mxgraph/reader/class-use/mxDomOutputParser.html
    index e8886e4fb..8749e6202 100644
    --- a/java/docs/com/mxgraph/reader/class-use/mxDomOutputParser.html
    +++ b/java/docs/com/mxgraph/reader/class-use/mxDomOutputParser.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.reader.mxDomOutputParser (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.reader.mxDomOutputParser (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.reader.mxDomOutputParser (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.reader.mxDomOutputParser (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/reader/class-use/mxGraphViewImageReader.html b/java/docs/com/mxgraph/reader/class-use/mxGraphViewImageReader.html
    index 805d9d051..8c89c5694 100644
    --- a/java/docs/com/mxgraph/reader/class-use/mxGraphViewImageReader.html
    +++ b/java/docs/com/mxgraph/reader/class-use/mxGraphViewImageReader.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.reader.mxGraphViewImageReader (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.reader.mxGraphViewImageReader (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.reader.mxGraphViewImageReader (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.reader.mxGraphViewImageReader (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -178,7 +178,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/reader/class-use/mxGraphViewReader.html b/java/docs/com/mxgraph/reader/class-use/mxGraphViewReader.html
    index 0b080aff7..8e1702af9 100644
    --- a/java/docs/com/mxgraph/reader/class-use/mxGraphViewReader.html
    +++ b/java/docs/com/mxgraph/reader/class-use/mxGraphViewReader.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.reader.mxGraphViewReader (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.reader.mxGraphViewReader (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.reader.mxGraphViewReader (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.reader.mxGraphViewReader (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -169,7 +169,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/reader/class-use/mxSaxOutputHandler.IElementHandler.html b/java/docs/com/mxgraph/reader/class-use/mxSaxOutputHandler.IElementHandler.html
    index f556bb606..5f4b3d672 100644
    --- a/java/docs/com/mxgraph/reader/class-use/mxSaxOutputHandler.IElementHandler.html
    +++ b/java/docs/com/mxgraph/reader/class-use/mxSaxOutputHandler.IElementHandler.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Interface com.mxgraph.reader.mxSaxOutputHandler.IElementHandler (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Interface com.mxgraph.reader.mxSaxOutputHandler.IElementHandler (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Interface com.mxgraph.reader.mxSaxOutputHandler.IElementHandler (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Interface com.mxgraph.reader.mxSaxOutputHandler.IElementHandler (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -167,7 +167,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/reader/class-use/mxSaxOutputHandler.html b/java/docs/com/mxgraph/reader/class-use/mxSaxOutputHandler.html
    index ada71380a..5452dde49 100644
    --- a/java/docs/com/mxgraph/reader/class-use/mxSaxOutputHandler.html
    +++ b/java/docs/com/mxgraph/reader/class-use/mxSaxOutputHandler.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.reader.mxSaxOutputHandler (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.reader.mxSaxOutputHandler (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.reader.mxSaxOutputHandler (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.reader.mxSaxOutputHandler (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/reader/mxDomOutputParser.IElementHandler.html b/java/docs/com/mxgraph/reader/mxDomOutputParser.IElementHandler.html
    index cc115ac9b..0ca791447 100644
    --- a/java/docs/com/mxgraph/reader/mxDomOutputParser.IElementHandler.html
    +++ b/java/docs/com/mxgraph/reader/mxDomOutputParser.IElementHandler.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxDomOutputParser.IElementHandler (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxDomOutputParser.IElementHandler (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxDomOutputParser.IElementHandler (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxDomOutputParser.IElementHandler (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -211,7 +211,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/reader/mxDomOutputParser.html b/java/docs/com/mxgraph/reader/mxDomOutputParser.html
    index fe9e7e9a5..54da80f74 100644
    --- a/java/docs/com/mxgraph/reader/mxDomOutputParser.html
    +++ b/java/docs/com/mxgraph/reader/mxDomOutputParser.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxDomOutputParser (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxDomOutputParser (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxDomOutputParser (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxDomOutputParser (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -416,7 +416,7 @@ extends java.lang.Object</pre>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/reader/mxGraphViewImageReader.html b/java/docs/com/mxgraph/reader/mxGraphViewImageReader.html
    index a2ddfd308..f611bb77b 100644
    --- a/java/docs/com/mxgraph/reader/mxGraphViewImageReader.html
    +++ b/java/docs/com/mxgraph/reader/mxGraphViewImageReader.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxGraphViewImageReader (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxGraphViewImageReader (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxGraphViewImageReader (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxGraphViewImageReader (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -732,7 +732,7 @@ extends <a href="mxGraphViewReader.html" title="class in com.mxgraph.reader">mxG
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/reader/mxGraphViewReader.html b/java/docs/com/mxgraph/reader/mxGraphViewReader.html
    index e875a3f73..313e57dc1 100644
    --- a/java/docs/com/mxgraph/reader/mxGraphViewReader.html
    +++ b/java/docs/com/mxgraph/reader/mxGraphViewReader.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxGraphViewReader (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxGraphViewReader (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxGraphViewReader (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxGraphViewReader (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -527,7 +527,7 @@ extends org.xml.sax.helpers.DefaultHandler</pre>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/reader/mxSaxOutputHandler.IElementHandler.html b/java/docs/com/mxgraph/reader/mxSaxOutputHandler.IElementHandler.html
    index f0d3a0e33..7e1a2f959 100644
    --- a/java/docs/com/mxgraph/reader/mxSaxOutputHandler.IElementHandler.html
    +++ b/java/docs/com/mxgraph/reader/mxSaxOutputHandler.IElementHandler.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxSaxOutputHandler.IElementHandler (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxSaxOutputHandler.IElementHandler (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxSaxOutputHandler.IElementHandler (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxSaxOutputHandler.IElementHandler (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -211,7 +211,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/reader/mxSaxOutputHandler.html b/java/docs/com/mxgraph/reader/mxSaxOutputHandler.html
    index 75bf8c5e8..483ee6d35 100644
    --- a/java/docs/com/mxgraph/reader/mxSaxOutputHandler.html
    +++ b/java/docs/com/mxgraph/reader/mxSaxOutputHandler.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxSaxOutputHandler (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxSaxOutputHandler (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxSaxOutputHandler (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxSaxOutputHandler (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -447,7 +447,7 @@ extends org.xml.sax.helpers.DefaultHandler</pre>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/reader/package-summary.html b/java/docs/com/mxgraph/reader/package-summary.html
    index 40612882f..e18b4234c 100644
    --- a/java/docs/com/mxgraph/reader/package-summary.html
    +++ b/java/docs/com/mxgraph/reader/package-summary.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>com.mxgraph.reader (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>com.mxgraph.reader (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="com.mxgraph.reader (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="com.mxgraph.reader (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -225,7 +225,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/reader/package-tree.html b/java/docs/com/mxgraph/reader/package-tree.html
    index 9d26ffa66..42f4e9c4a 100644
    --- a/java/docs/com/mxgraph/reader/package-tree.html
    +++ b/java/docs/com/mxgraph/reader/package-tree.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>com.mxgraph.reader Class Hierarchy (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>com.mxgraph.reader Class Hierarchy (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="com.mxgraph.reader Class Hierarchy (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="com.mxgraph.reader Class Hierarchy (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -152,7 +152,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/reader/package-use.html b/java/docs/com/mxgraph/reader/package-use.html
    index 9e4ed7a64..0bd4b5fe7 100644
    --- a/java/docs/com/mxgraph/reader/package-use.html
    +++ b/java/docs/com/mxgraph/reader/package-use.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Package com.mxgraph.reader (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Package com.mxgraph.reader (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Package com.mxgraph.reader (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Package com.mxgraph.reader (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -174,7 +174,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/shape/class-use/mxActorShape.html b/java/docs/com/mxgraph/shape/class-use/mxActorShape.html
    index 42938fb51..02bdb8b87 100644
    --- a/java/docs/com/mxgraph/shape/class-use/mxActorShape.html
    +++ b/java/docs/com/mxgraph/shape/class-use/mxActorShape.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.shape.mxActorShape (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.shape.mxActorShape (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.shape.mxActorShape (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.shape.mxActorShape (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/shape/class-use/mxArrowShape.html b/java/docs/com/mxgraph/shape/class-use/mxArrowShape.html
    index 56ea845af..56f8d5af7 100644
    --- a/java/docs/com/mxgraph/shape/class-use/mxArrowShape.html
    +++ b/java/docs/com/mxgraph/shape/class-use/mxArrowShape.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.shape.mxArrowShape (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.shape.mxArrowShape (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.shape.mxArrowShape (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.shape.mxArrowShape (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/shape/class-use/mxBasicShape.html b/java/docs/com/mxgraph/shape/class-use/mxBasicShape.html
    index 5213bc1bc..11fabd338 100644
    --- a/java/docs/com/mxgraph/shape/class-use/mxBasicShape.html
    +++ b/java/docs/com/mxgraph/shape/class-use/mxBasicShape.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.shape.mxBasicShape (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.shape.mxBasicShape (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.shape.mxBasicShape (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.shape.mxBasicShape (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -254,7 +254,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/shape/class-use/mxCloudShape.html b/java/docs/com/mxgraph/shape/class-use/mxCloudShape.html
    index 9a1d878b0..08c2a4049 100644
    --- a/java/docs/com/mxgraph/shape/class-use/mxCloudShape.html
    +++ b/java/docs/com/mxgraph/shape/class-use/mxCloudShape.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.shape.mxCloudShape (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.shape.mxCloudShape (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.shape.mxCloudShape (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.shape.mxCloudShape (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/shape/class-use/mxConnectorShape.html b/java/docs/com/mxgraph/shape/class-use/mxConnectorShape.html
    index 6ac5809d3..346aaf920 100644
    --- a/java/docs/com/mxgraph/shape/class-use/mxConnectorShape.html
    +++ b/java/docs/com/mxgraph/shape/class-use/mxConnectorShape.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.shape.mxConnectorShape (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.shape.mxConnectorShape (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.shape.mxConnectorShape (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.shape.mxConnectorShape (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -164,7 +164,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/shape/class-use/mxCurveLabelShape.LabelGlyphCache.html b/java/docs/com/mxgraph/shape/class-use/mxCurveLabelShape.LabelGlyphCache.html
    index e82a6a399..14a6287e5 100644
    --- a/java/docs/com/mxgraph/shape/class-use/mxCurveLabelShape.LabelGlyphCache.html
    +++ b/java/docs/com/mxgraph/shape/class-use/mxCurveLabelShape.LabelGlyphCache.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.shape.mxCurveLabelShape.LabelGlyphCache (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.shape.mxCurveLabelShape.LabelGlyphCache (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.shape.mxCurveLabelShape.LabelGlyphCache (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.shape.mxCurveLabelShape.LabelGlyphCache (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -167,7 +167,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/shape/class-use/mxCurveLabelShape.LabelPosition.html b/java/docs/com/mxgraph/shape/class-use/mxCurveLabelShape.LabelPosition.html
    index c1d43fc4d..1dbb6689e 100644
    --- a/java/docs/com/mxgraph/shape/class-use/mxCurveLabelShape.LabelPosition.html
    +++ b/java/docs/com/mxgraph/shape/class-use/mxCurveLabelShape.LabelPosition.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.shape.mxCurveLabelShape.LabelPosition (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.shape.mxCurveLabelShape.LabelPosition (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.shape.mxCurveLabelShape.LabelPosition (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.shape.mxCurveLabelShape.LabelPosition (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -166,7 +166,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/shape/class-use/mxCurveLabelShape.html b/java/docs/com/mxgraph/shape/class-use/mxCurveLabelShape.html
    index 26a346828..7c71ab339 100644
    --- a/java/docs/com/mxgraph/shape/class-use/mxCurveLabelShape.html
    +++ b/java/docs/com/mxgraph/shape/class-use/mxCurveLabelShape.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.shape.mxCurveLabelShape (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.shape.mxCurveLabelShape (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.shape.mxCurveLabelShape (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.shape.mxCurveLabelShape (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/shape/class-use/mxCurveShape.html b/java/docs/com/mxgraph/shape/class-use/mxCurveShape.html
    index 1e6ea7bd8..9ebb46284 100644
    --- a/java/docs/com/mxgraph/shape/class-use/mxCurveShape.html
    +++ b/java/docs/com/mxgraph/shape/class-use/mxCurveShape.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.shape.mxCurveShape (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.shape.mxCurveShape (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.shape.mxCurveShape (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.shape.mxCurveShape (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/shape/class-use/mxCylinderShape.html b/java/docs/com/mxgraph/shape/class-use/mxCylinderShape.html
    index 6ff3080c2..b627808d1 100644
    --- a/java/docs/com/mxgraph/shape/class-use/mxCylinderShape.html
    +++ b/java/docs/com/mxgraph/shape/class-use/mxCylinderShape.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.shape.mxCylinderShape (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.shape.mxCylinderShape (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.shape.mxCylinderShape (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.shape.mxCylinderShape (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/shape/class-use/mxDefaultTextShape.html b/java/docs/com/mxgraph/shape/class-use/mxDefaultTextShape.html
    index 0476c24a2..173f297fa 100644
    --- a/java/docs/com/mxgraph/shape/class-use/mxDefaultTextShape.html
    +++ b/java/docs/com/mxgraph/shape/class-use/mxDefaultTextShape.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.shape.mxDefaultTextShape (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.shape.mxDefaultTextShape (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.shape.mxDefaultTextShape (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.shape.mxDefaultTextShape (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/shape/class-use/mxDoubleEllipseShape.html b/java/docs/com/mxgraph/shape/class-use/mxDoubleEllipseShape.html
    index 02eca862f..a0766f8bf 100644
    --- a/java/docs/com/mxgraph/shape/class-use/mxDoubleEllipseShape.html
    +++ b/java/docs/com/mxgraph/shape/class-use/mxDoubleEllipseShape.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.shape.mxDoubleEllipseShape (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.shape.mxDoubleEllipseShape (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.shape.mxDoubleEllipseShape (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.shape.mxDoubleEllipseShape (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/shape/class-use/mxDoubleRectangleShape.html b/java/docs/com/mxgraph/shape/class-use/mxDoubleRectangleShape.html
    index 08dde9dce..aa7d90d88 100644
    --- a/java/docs/com/mxgraph/shape/class-use/mxDoubleRectangleShape.html
    +++ b/java/docs/com/mxgraph/shape/class-use/mxDoubleRectangleShape.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.shape.mxDoubleRectangleShape (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.shape.mxDoubleRectangleShape (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.shape.mxDoubleRectangleShape (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.shape.mxDoubleRectangleShape (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/shape/class-use/mxEllipseShape.html b/java/docs/com/mxgraph/shape/class-use/mxEllipseShape.html
    index 5feb6c375..ea7d7f847 100644
    --- a/java/docs/com/mxgraph/shape/class-use/mxEllipseShape.html
    +++ b/java/docs/com/mxgraph/shape/class-use/mxEllipseShape.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.shape.mxEllipseShape (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.shape.mxEllipseShape (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.shape.mxEllipseShape (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.shape.mxEllipseShape (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -164,7 +164,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/shape/class-use/mxHexagonShape.html b/java/docs/com/mxgraph/shape/class-use/mxHexagonShape.html
    index 293b83c14..198125579 100644
    --- a/java/docs/com/mxgraph/shape/class-use/mxHexagonShape.html
    +++ b/java/docs/com/mxgraph/shape/class-use/mxHexagonShape.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.shape.mxHexagonShape (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.shape.mxHexagonShape (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.shape.mxHexagonShape (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.shape.mxHexagonShape (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/shape/class-use/mxHtmlTextShape.html b/java/docs/com/mxgraph/shape/class-use/mxHtmlTextShape.html
    index db5feb9ab..3841b132d 100644
    --- a/java/docs/com/mxgraph/shape/class-use/mxHtmlTextShape.html
    +++ b/java/docs/com/mxgraph/shape/class-use/mxHtmlTextShape.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.shape.mxHtmlTextShape (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.shape.mxHtmlTextShape (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.shape.mxHtmlTextShape (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.shape.mxHtmlTextShape (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/shape/class-use/mxIMarker.html b/java/docs/com/mxgraph/shape/class-use/mxIMarker.html
    index 0a3a9cfc8..47a8adcd1 100644
    --- a/java/docs/com/mxgraph/shape/class-use/mxIMarker.html
    +++ b/java/docs/com/mxgraph/shape/class-use/mxIMarker.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Interface com.mxgraph.shape.mxIMarker (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Interface com.mxgraph.shape.mxIMarker (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Interface com.mxgraph.shape.mxIMarker (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Interface com.mxgraph.shape.mxIMarker (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -195,7 +195,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/shape/class-use/mxIShape.html b/java/docs/com/mxgraph/shape/class-use/mxIShape.html
    index 104394772..3c6743c0e 100644
    --- a/java/docs/com/mxgraph/shape/class-use/mxIShape.html
    +++ b/java/docs/com/mxgraph/shape/class-use/mxIShape.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Interface com.mxgraph.shape.mxIShape (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Interface com.mxgraph.shape.mxIShape (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Interface com.mxgraph.shape.mxIShape (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Interface com.mxgraph.shape.mxIShape (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -328,7 +328,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/shape/class-use/mxITextShape.html b/java/docs/com/mxgraph/shape/class-use/mxITextShape.html
    index 8a34b3c29..31b7fdfe1 100644
    --- a/java/docs/com/mxgraph/shape/class-use/mxITextShape.html
    +++ b/java/docs/com/mxgraph/shape/class-use/mxITextShape.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Interface com.mxgraph.shape.mxITextShape (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Interface com.mxgraph.shape.mxITextShape (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Interface com.mxgraph.shape.mxITextShape (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Interface com.mxgraph.shape.mxITextShape (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -242,7 +242,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/shape/class-use/mxImageShape.html b/java/docs/com/mxgraph/shape/class-use/mxImageShape.html
    index 504993198..564ff956e 100644
    --- a/java/docs/com/mxgraph/shape/class-use/mxImageShape.html
    +++ b/java/docs/com/mxgraph/shape/class-use/mxImageShape.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.shape.mxImageShape (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.shape.mxImageShape (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.shape.mxImageShape (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.shape.mxImageShape (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -164,7 +164,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/shape/class-use/mxLabelShape.html b/java/docs/com/mxgraph/shape/class-use/mxLabelShape.html
    index c8349838c..508ca2347 100644
    --- a/java/docs/com/mxgraph/shape/class-use/mxLabelShape.html
    +++ b/java/docs/com/mxgraph/shape/class-use/mxLabelShape.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.shape.mxLabelShape (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.shape.mxLabelShape (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.shape.mxLabelShape (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.shape.mxLabelShape (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/shape/class-use/mxLineShape.html b/java/docs/com/mxgraph/shape/class-use/mxLineShape.html
    index 432f4c09a..77cbda7b1 100644
    --- a/java/docs/com/mxgraph/shape/class-use/mxLineShape.html
    +++ b/java/docs/com/mxgraph/shape/class-use/mxLineShape.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.shape.mxLineShape (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.shape.mxLineShape (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.shape.mxLineShape (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.shape.mxLineShape (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/shape/class-use/mxMarkerRegistry.html b/java/docs/com/mxgraph/shape/class-use/mxMarkerRegistry.html
    index 384aa971b..c655c09e7 100644
    --- a/java/docs/com/mxgraph/shape/class-use/mxMarkerRegistry.html
    +++ b/java/docs/com/mxgraph/shape/class-use/mxMarkerRegistry.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.shape.mxMarkerRegistry (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.shape.mxMarkerRegistry (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.shape.mxMarkerRegistry (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.shape.mxMarkerRegistry (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/shape/class-use/mxRectangleShape.html b/java/docs/com/mxgraph/shape/class-use/mxRectangleShape.html
    index c5f13777a..200e6f84b 100644
    --- a/java/docs/com/mxgraph/shape/class-use/mxRectangleShape.html
    +++ b/java/docs/com/mxgraph/shape/class-use/mxRectangleShape.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.shape.mxRectangleShape (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.shape.mxRectangleShape (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.shape.mxRectangleShape (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.shape.mxRectangleShape (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -176,7 +176,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/shape/class-use/mxRhombusShape.html b/java/docs/com/mxgraph/shape/class-use/mxRhombusShape.html
    index 3ff45f91e..e4e9580d4 100644
    --- a/java/docs/com/mxgraph/shape/class-use/mxRhombusShape.html
    +++ b/java/docs/com/mxgraph/shape/class-use/mxRhombusShape.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.shape.mxRhombusShape (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.shape.mxRhombusShape (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.shape.mxRhombusShape (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.shape.mxRhombusShape (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/shape/class-use/mxStencil.html b/java/docs/com/mxgraph/shape/class-use/mxStencil.html
    index 419ab1975..fc62903ea 100644
    --- a/java/docs/com/mxgraph/shape/class-use/mxStencil.html
    +++ b/java/docs/com/mxgraph/shape/class-use/mxStencil.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.shape.mxStencil (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.shape.mxStencil (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.shape.mxStencil (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.shape.mxStencil (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -199,7 +199,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/shape/class-use/mxStencilRegistry.html b/java/docs/com/mxgraph/shape/class-use/mxStencilRegistry.html
    index cea5f1dca..a5c8e9952 100644
    --- a/java/docs/com/mxgraph/shape/class-use/mxStencilRegistry.html
    +++ b/java/docs/com/mxgraph/shape/class-use/mxStencilRegistry.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.shape.mxStencilRegistry (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.shape.mxStencilRegistry (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.shape.mxStencilRegistry (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.shape.mxStencilRegistry (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/shape/class-use/mxStencilShape.html b/java/docs/com/mxgraph/shape/class-use/mxStencilShape.html
    index 9f61b7aff..98164e602 100644
    --- a/java/docs/com/mxgraph/shape/class-use/mxStencilShape.html
    +++ b/java/docs/com/mxgraph/shape/class-use/mxStencilShape.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.shape.mxStencilShape (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.shape.mxStencilShape (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.shape.mxStencilShape (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.shape.mxStencilShape (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/shape/class-use/mxStencilShape.svgShape.html b/java/docs/com/mxgraph/shape/class-use/mxStencilShape.svgShape.html
    index 4bf921f2c..dfb6ebf9a 100644
    --- a/java/docs/com/mxgraph/shape/class-use/mxStencilShape.svgShape.html
    +++ b/java/docs/com/mxgraph/shape/class-use/mxStencilShape.svgShape.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.shape.mxStencilShape.svgShape (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.shape.mxStencilShape.svgShape (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.shape.mxStencilShape.svgShape (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.shape.mxStencilShape.svgShape (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -222,7 +222,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/shape/class-use/mxSwimlaneShape.html b/java/docs/com/mxgraph/shape/class-use/mxSwimlaneShape.html
    index 35f0aad77..23d77f43d 100644
    --- a/java/docs/com/mxgraph/shape/class-use/mxSwimlaneShape.html
    +++ b/java/docs/com/mxgraph/shape/class-use/mxSwimlaneShape.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.shape.mxSwimlaneShape (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.shape.mxSwimlaneShape (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.shape.mxSwimlaneShape (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.shape.mxSwimlaneShape (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/shape/class-use/mxTriangleShape.html b/java/docs/com/mxgraph/shape/class-use/mxTriangleShape.html
    index 8d07f58cf..4ee8f39bf 100644
    --- a/java/docs/com/mxgraph/shape/class-use/mxTriangleShape.html
    +++ b/java/docs/com/mxgraph/shape/class-use/mxTriangleShape.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.shape.mxTriangleShape (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.shape.mxTriangleShape (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.shape.mxTriangleShape (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.shape.mxTriangleShape (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/shape/mxActorShape.html b/java/docs/com/mxgraph/shape/mxActorShape.html
    index 98314fdc8..ab3a427bd 100644
    --- a/java/docs/com/mxgraph/shape/mxActorShape.html
    +++ b/java/docs/com/mxgraph/shape/mxActorShape.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxActorShape (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxActorShape (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxActorShape (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxActorShape (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -285,7 +285,7 @@ extends <a href="mxBasicShape.html" title="class in com.mxgraph.shape">mxBasicSh
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/shape/mxArrowShape.html b/java/docs/com/mxgraph/shape/mxArrowShape.html
    index 3b3472b86..5a35253cb 100644
    --- a/java/docs/com/mxgraph/shape/mxArrowShape.html
    +++ b/java/docs/com/mxgraph/shape/mxArrowShape.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxArrowShape (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxArrowShape (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxArrowShape (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxArrowShape (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -285,7 +285,7 @@ extends <a href="mxBasicShape.html" title="class in com.mxgraph.shape">mxBasicSh
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/shape/mxBasicShape.html b/java/docs/com/mxgraph/shape/mxBasicShape.html
    index 29a47520f..06709b714 100644
    --- a/java/docs/com/mxgraph/shape/mxBasicShape.html
    +++ b/java/docs/com/mxgraph/shape/mxBasicShape.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxBasicShape (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxBasicShape (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxBasicShape (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxBasicShape (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -404,7 +404,7 @@ implements <a href="mxIShape.html" title="interface in com.mxgraph.shape">mxISha
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/shape/mxCloudShape.html b/java/docs/com/mxgraph/shape/mxCloudShape.html
    index e26a31dba..2e32dd45c 100644
    --- a/java/docs/com/mxgraph/shape/mxCloudShape.html
    +++ b/java/docs/com/mxgraph/shape/mxCloudShape.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxCloudShape (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxCloudShape (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxCloudShape (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxCloudShape (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -285,7 +285,7 @@ extends <a href="mxBasicShape.html" title="class in com.mxgraph.shape">mxBasicSh
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/shape/mxConnectorShape.html b/java/docs/com/mxgraph/shape/mxConnectorShape.html
    index cfeace4d8..3f8281f7b 100644
    --- a/java/docs/com/mxgraph/shape/mxConnectorShape.html
    +++ b/java/docs/com/mxgraph/shape/mxConnectorShape.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxConnectorShape (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxConnectorShape (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxConnectorShape (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxConnectorShape (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -381,7 +381,7 @@ extends <a href="mxBasicShape.html" title="class in com.mxgraph.shape">mxBasicSh
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/shape/mxCurveLabelShape.LabelGlyphCache.html b/java/docs/com/mxgraph/shape/mxCurveLabelShape.LabelGlyphCache.html
    index 042b95e87..60237b1f1 100644
    --- a/java/docs/com/mxgraph/shape/mxCurveLabelShape.LabelGlyphCache.html
    +++ b/java/docs/com/mxgraph/shape/mxCurveLabelShape.LabelGlyphCache.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxCurveLabelShape.LabelGlyphCache (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxCurveLabelShape.LabelGlyphCache (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxCurveLabelShape.LabelGlyphCache (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxCurveLabelShape.LabelGlyphCache (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -366,7 +366,7 @@ extends java.lang.Object</pre>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/shape/mxCurveLabelShape.LabelPosition.html b/java/docs/com/mxgraph/shape/mxCurveLabelShape.LabelPosition.html
    index 16d9ea170..39cc72c40 100644
    --- a/java/docs/com/mxgraph/shape/mxCurveLabelShape.LabelPosition.html
    +++ b/java/docs/com/mxgraph/shape/mxCurveLabelShape.LabelPosition.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxCurveLabelShape.LabelPosition (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxCurveLabelShape.LabelPosition (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxCurveLabelShape.LabelPosition (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxCurveLabelShape.LabelPosition (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -301,7 +301,7 @@ extends java.lang.Object</pre>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/shape/mxCurveLabelShape.html b/java/docs/com/mxgraph/shape/mxCurveLabelShape.html
    index 6d700d483..35a033167 100644
    --- a/java/docs/com/mxgraph/shape/mxCurveLabelShape.html
    +++ b/java/docs/com/mxgraph/shape/mxCurveLabelShape.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxCurveLabelShape (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxCurveLabelShape (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxCurveLabelShape (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxCurveLabelShape (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -840,7 +840,7 @@ implements <a href="mxITextShape.html" title="interface in com.mxgraph.shape">mx
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/shape/mxCurveShape.html b/java/docs/com/mxgraph/shape/mxCurveShape.html
    index c4dcf3516..c4482a7ad 100644
    --- a/java/docs/com/mxgraph/shape/mxCurveShape.html
    +++ b/java/docs/com/mxgraph/shape/mxCurveShape.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxCurveShape (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxCurveShape (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxCurveShape (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxCurveShape (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -455,7 +455,7 @@ extends <a href="mxConnectorShape.html" title="class in com.mxgraph.shape">mxCon
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/shape/mxCylinderShape.html b/java/docs/com/mxgraph/shape/mxCylinderShape.html
    index d0891ab5c..8600b307b 100644
    --- a/java/docs/com/mxgraph/shape/mxCylinderShape.html
    +++ b/java/docs/com/mxgraph/shape/mxCylinderShape.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxCylinderShape (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxCylinderShape (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxCylinderShape (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxCylinderShape (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -290,7 +290,7 @@ extends <a href="mxBasicShape.html" title="class in com.mxgraph.shape">mxBasicSh
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/shape/mxDefaultTextShape.html b/java/docs/com/mxgraph/shape/mxDefaultTextShape.html
    index fa9abfd88..91e698b8f 100644
    --- a/java/docs/com/mxgraph/shape/mxDefaultTextShape.html
    +++ b/java/docs/com/mxgraph/shape/mxDefaultTextShape.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxDefaultTextShape (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxDefaultTextShape (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxDefaultTextShape (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxDefaultTextShape (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -314,7 +314,7 @@ implements <a href="mxITextShape.html" title="interface in com.mxgraph.shape">mx
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/shape/mxDoubleEllipseShape.html b/java/docs/com/mxgraph/shape/mxDoubleEllipseShape.html
    index 5fb9aaa4a..ea8dae814 100644
    --- a/java/docs/com/mxgraph/shape/mxDoubleEllipseShape.html
    +++ b/java/docs/com/mxgraph/shape/mxDoubleEllipseShape.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxDoubleEllipseShape (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxDoubleEllipseShape (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxDoubleEllipseShape (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxDoubleEllipseShape (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -299,7 +299,7 @@ extends <a href="mxEllipseShape.html" title="class in com.mxgraph.shape">mxEllip
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/shape/mxDoubleRectangleShape.html b/java/docs/com/mxgraph/shape/mxDoubleRectangleShape.html
    index be54abe89..c95349020 100644
    --- a/java/docs/com/mxgraph/shape/mxDoubleRectangleShape.html
    +++ b/java/docs/com/mxgraph/shape/mxDoubleRectangleShape.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxDoubleRectangleShape (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxDoubleRectangleShape (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxDoubleRectangleShape (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxDoubleRectangleShape (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -299,7 +299,7 @@ extends <a href="mxRectangleShape.html" title="class in com.mxgraph.shape">mxRec
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/shape/mxEllipseShape.html b/java/docs/com/mxgraph/shape/mxEllipseShape.html
    index 8b5876c10..bb4f853f5 100644
    --- a/java/docs/com/mxgraph/shape/mxEllipseShape.html
    +++ b/java/docs/com/mxgraph/shape/mxEllipseShape.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxEllipseShape (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxEllipseShape (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxEllipseShape (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxEllipseShape (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -289,7 +289,7 @@ extends <a href="mxBasicShape.html" title="class in com.mxgraph.shape">mxBasicSh
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/shape/mxHexagonShape.html b/java/docs/com/mxgraph/shape/mxHexagonShape.html
    index e0c0cd1d4..793dad37a 100644
    --- a/java/docs/com/mxgraph/shape/mxHexagonShape.html
    +++ b/java/docs/com/mxgraph/shape/mxHexagonShape.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxHexagonShape (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxHexagonShape (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxHexagonShape (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxHexagonShape (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -285,7 +285,7 @@ extends <a href="mxBasicShape.html" title="class in com.mxgraph.shape">mxBasicSh
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/shape/mxHtmlTextShape.html b/java/docs/com/mxgraph/shape/mxHtmlTextShape.html
    index 518ccdf19..52fbcf350 100644
    --- a/java/docs/com/mxgraph/shape/mxHtmlTextShape.html
    +++ b/java/docs/com/mxgraph/shape/mxHtmlTextShape.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxHtmlTextShape (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxHtmlTextShape (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxHtmlTextShape (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxHtmlTextShape (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -393,7 +393,7 @@ implements <a href="mxITextShape.html" title="interface in com.mxgraph.shape">mx
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/shape/mxIMarker.html b/java/docs/com/mxgraph/shape/mxIMarker.html
    index 889a38b16..e63c51460 100644
    --- a/java/docs/com/mxgraph/shape/mxIMarker.html
    +++ b/java/docs/com/mxgraph/shape/mxIMarker.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxIMarker (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxIMarker (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxIMarker (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxIMarker (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -221,7 +221,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/shape/mxIShape.html b/java/docs/com/mxgraph/shape/mxIShape.html
    index 89c3e0c0c..196f5d670 100644
    --- a/java/docs/com/mxgraph/shape/mxIShape.html
    +++ b/java/docs/com/mxgraph/shape/mxIShape.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxIShape (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxIShape (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxIShape (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxIShape (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -213,7 +213,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/shape/mxITextShape.html b/java/docs/com/mxgraph/shape/mxITextShape.html
    index 3138fa353..8d510b012 100644
    --- a/java/docs/com/mxgraph/shape/mxITextShape.html
    +++ b/java/docs/com/mxgraph/shape/mxITextShape.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxITextShape (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxITextShape (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxITextShape (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxITextShape (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -217,7 +217,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/shape/mxImageShape.html b/java/docs/com/mxgraph/shape/mxImageShape.html
    index 326023b2c..83caea97a 100644
    --- a/java/docs/com/mxgraph/shape/mxImageShape.html
    +++ b/java/docs/com/mxgraph/shape/mxImageShape.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxImageShape (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxImageShape (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxImageShape (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxImageShape (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -397,7 +397,7 @@ extends <a href="mxRectangleShape.html" title="class in com.mxgraph.shape">mxRec
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/shape/mxLabelShape.html b/java/docs/com/mxgraph/shape/mxLabelShape.html
    index 811f746d6..a9b52c033 100644
    --- a/java/docs/com/mxgraph/shape/mxLabelShape.html
    +++ b/java/docs/com/mxgraph/shape/mxLabelShape.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxLabelShape (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxLabelShape (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxLabelShape (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxLabelShape (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -410,7 +410,7 @@ extends <a href="mxImageShape.html" title="class in com.mxgraph.shape">mxImageSh
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/shape/mxLineShape.html b/java/docs/com/mxgraph/shape/mxLineShape.html
    index 7bd3cfaa1..13d9a8186 100644
    --- a/java/docs/com/mxgraph/shape/mxLineShape.html
    +++ b/java/docs/com/mxgraph/shape/mxLineShape.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxLineShape (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxLineShape (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxLineShape (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxLineShape (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -303,7 +303,7 @@ extends <a href="mxBasicShape.html" title="class in com.mxgraph.shape">mxBasicSh
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/shape/mxMarkerRegistry.html b/java/docs/com/mxgraph/shape/mxMarkerRegistry.html
    index 06e35f662..0d8fa9c1f 100644
    --- a/java/docs/com/mxgraph/shape/mxMarkerRegistry.html
    +++ b/java/docs/com/mxgraph/shape/mxMarkerRegistry.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxMarkerRegistry (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxMarkerRegistry (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxMarkerRegistry (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxMarkerRegistry (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -321,7 +321,7 @@ extends java.lang.Object</pre>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/shape/mxRectangleShape.html b/java/docs/com/mxgraph/shape/mxRectangleShape.html
    index 7c9dd6b53..745f5f2cc 100644
    --- a/java/docs/com/mxgraph/shape/mxRectangleShape.html
    +++ b/java/docs/com/mxgraph/shape/mxRectangleShape.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxRectangleShape (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxRectangleShape (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxRectangleShape (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxRectangleShape (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -312,7 +312,7 @@ extends <a href="mxBasicShape.html" title="class in com.mxgraph.shape">mxBasicSh
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/shape/mxRhombusShape.html b/java/docs/com/mxgraph/shape/mxRhombusShape.html
    index 7a503ed9b..ea229f577 100644
    --- a/java/docs/com/mxgraph/shape/mxRhombusShape.html
    +++ b/java/docs/com/mxgraph/shape/mxRhombusShape.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxRhombusShape (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxRhombusShape (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxRhombusShape (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxRhombusShape (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -285,7 +285,7 @@ extends <a href="mxBasicShape.html" title="class in com.mxgraph.shape">mxBasicSh
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/shape/mxStencil.html b/java/docs/com/mxgraph/shape/mxStencil.html
    index 835b81841..296d0b4e0 100644
    --- a/java/docs/com/mxgraph/shape/mxStencil.html
    +++ b/java/docs/com/mxgraph/shape/mxStencil.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxStencil (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxStencil (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxStencil (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxStencil (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -743,7 +743,7 @@ implements <a href="mxIShape.html" title="interface in com.mxgraph.shape">mxISha
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/shape/mxStencilRegistry.html b/java/docs/com/mxgraph/shape/mxStencilRegistry.html
    index ef39ae80a..2fa7d6340 100644
    --- a/java/docs/com/mxgraph/shape/mxStencilRegistry.html
    +++ b/java/docs/com/mxgraph/shape/mxStencilRegistry.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxStencilRegistry (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxStencilRegistry (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxStencilRegistry (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxStencilRegistry (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -327,7 +327,7 @@ extends java.lang.Object</pre>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/shape/mxStencilShape.html b/java/docs/com/mxgraph/shape/mxStencilShape.html
    index cf64c3d1c..067dd9381 100644
    --- a/java/docs/com/mxgraph/shape/mxStencilShape.html
    +++ b/java/docs/com/mxgraph/shape/mxStencilShape.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxStencilShape (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxStencilShape (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxStencilShape (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxStencilShape (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -683,7 +683,7 @@ extends <a href="mxBasicShape.html" title="class in com.mxgraph.shape">mxBasicSh
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/shape/mxStencilShape.svgShape.html b/java/docs/com/mxgraph/shape/mxStencilShape.svgShape.html
    index 52c4af6bf..468cc5b9e 100644
    --- a/java/docs/com/mxgraph/shape/mxStencilShape.svgShape.html
    +++ b/java/docs/com/mxgraph/shape/mxStencilShape.svgShape.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxStencilShape.svgShape (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxStencilShape.svgShape (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxStencilShape.svgShape (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxStencilShape.svgShape (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -420,7 +420,7 @@ extends java.lang.Object</pre>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/shape/mxSwimlaneShape.html b/java/docs/com/mxgraph/shape/mxSwimlaneShape.html
    index 84c4a70f9..9c8e94514 100644
    --- a/java/docs/com/mxgraph/shape/mxSwimlaneShape.html
    +++ b/java/docs/com/mxgraph/shape/mxSwimlaneShape.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxSwimlaneShape (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxSwimlaneShape (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxSwimlaneShape (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxSwimlaneShape (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -446,7 +446,7 @@ extends <a href="mxBasicShape.html" title="class in com.mxgraph.shape">mxBasicSh
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/shape/mxTriangleShape.html b/java/docs/com/mxgraph/shape/mxTriangleShape.html
    index d166a0519..eb24c8d4d 100644
    --- a/java/docs/com/mxgraph/shape/mxTriangleShape.html
    +++ b/java/docs/com/mxgraph/shape/mxTriangleShape.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxTriangleShape (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxTriangleShape (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxTriangleShape (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxTriangleShape (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -285,7 +285,7 @@ extends <a href="mxBasicShape.html" title="class in com.mxgraph.shape">mxBasicSh
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/shape/package-summary.html b/java/docs/com/mxgraph/shape/package-summary.html
    index 4e54b2ee5..696780b25 100644
    --- a/java/docs/com/mxgraph/shape/package-summary.html
    +++ b/java/docs/com/mxgraph/shape/package-summary.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>com.mxgraph.shape (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>com.mxgraph.shape (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="com.mxgraph.shape (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="com.mxgraph.shape (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -269,7 +269,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/shape/package-tree.html b/java/docs/com/mxgraph/shape/package-tree.html
    index 856313ade..fa22869b5 100644
    --- a/java/docs/com/mxgraph/shape/package-tree.html
    +++ b/java/docs/com/mxgraph/shape/package-tree.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>com.mxgraph.shape Class Hierarchy (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>com.mxgraph.shape Class Hierarchy (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="com.mxgraph.shape Class Hierarchy (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="com.mxgraph.shape Class Hierarchy (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -185,7 +185,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/shape/package-use.html b/java/docs/com/mxgraph/shape/package-use.html
    index 8b38100c8..af5033024 100644
    --- a/java/docs/com/mxgraph/shape/package-use.html
    +++ b/java/docs/com/mxgraph/shape/package-use.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Package com.mxgraph.shape (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Package com.mxgraph.shape (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Package com.mxgraph.shape (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Package com.mxgraph.shape (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -237,7 +237,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/class-use/mxGraphComponent.html b/java/docs/com/mxgraph/swing/class-use/mxGraphComponent.html
    index eff2cd450..8579be7f6 100644
    --- a/java/docs/com/mxgraph/swing/class-use/mxGraphComponent.html
    +++ b/java/docs/com/mxgraph/swing/class-use/mxGraphComponent.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.swing.mxGraphComponent (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.swing.mxGraphComponent (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.swing.mxGraphComponent (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.swing.mxGraphComponent (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -687,7 +687,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/class-use/mxGraphComponent.mxGraphControl.html b/java/docs/com/mxgraph/swing/class-use/mxGraphComponent.mxGraphControl.html
    index 8bc3a703f..d729220b6 100644
    --- a/java/docs/com/mxgraph/swing/class-use/mxGraphComponent.mxGraphControl.html
    +++ b/java/docs/com/mxgraph/swing/class-use/mxGraphComponent.mxGraphControl.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.swing.mxGraphComponent.mxGraphControl (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.swing.mxGraphComponent.mxGraphControl (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.swing.mxGraphComponent.mxGraphControl (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.swing.mxGraphComponent.mxGraphControl (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -190,7 +190,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/class-use/mxGraphComponent.mxMouseRedirector.html b/java/docs/com/mxgraph/swing/class-use/mxGraphComponent.mxMouseRedirector.html
    index e0b749a19..d7aefb00e 100644
    --- a/java/docs/com/mxgraph/swing/class-use/mxGraphComponent.mxMouseRedirector.html
    +++ b/java/docs/com/mxgraph/swing/class-use/mxGraphComponent.mxMouseRedirector.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.swing.mxGraphComponent.mxMouseRedirector (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.swing.mxGraphComponent.mxMouseRedirector (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.swing.mxGraphComponent.mxMouseRedirector (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.swing.mxGraphComponent.mxMouseRedirector (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/class-use/mxGraphOutline.MouseTracker.html b/java/docs/com/mxgraph/swing/class-use/mxGraphOutline.MouseTracker.html
    index 3d6406a4e..eb1ccd72f 100644
    --- a/java/docs/com/mxgraph/swing/class-use/mxGraphOutline.MouseTracker.html
    +++ b/java/docs/com/mxgraph/swing/class-use/mxGraphOutline.MouseTracker.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.swing.mxGraphOutline.MouseTracker (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.swing.mxGraphOutline.MouseTracker (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.swing.mxGraphOutline.MouseTracker (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.swing.mxGraphOutline.MouseTracker (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -167,7 +167,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/class-use/mxGraphOutline.html b/java/docs/com/mxgraph/swing/class-use/mxGraphOutline.html
    index bed27a0f6..0141020da 100644
    --- a/java/docs/com/mxgraph/swing/class-use/mxGraphOutline.html
    +++ b/java/docs/com/mxgraph/swing/class-use/mxGraphOutline.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.swing.mxGraphOutline (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.swing.mxGraphOutline (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.swing.mxGraphOutline (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.swing.mxGraphOutline (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/handler/class-use/mxCellHandler.html b/java/docs/com/mxgraph/swing/handler/class-use/mxCellHandler.html
    index 4a255b5e3..d4d2ffb94 100644
    --- a/java/docs/com/mxgraph/swing/handler/class-use/mxCellHandler.html
    +++ b/java/docs/com/mxgraph/swing/handler/class-use/mxCellHandler.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.swing.handler.mxCellHandler (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.swing.handler.mxCellHandler (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.swing.handler.mxCellHandler (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.swing.handler.mxCellHandler (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -238,7 +238,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/handler/class-use/mxCellMarker.html b/java/docs/com/mxgraph/swing/handler/class-use/mxCellMarker.html
    index 52f897ba5..719a41630 100644
    --- a/java/docs/com/mxgraph/swing/handler/class-use/mxCellMarker.html
    +++ b/java/docs/com/mxgraph/swing/handler/class-use/mxCellMarker.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.swing.handler.mxCellMarker (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.swing.handler.mxCellMarker (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.swing.handler.mxCellMarker (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.swing.handler.mxCellMarker (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -239,7 +239,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/handler/class-use/mxCellTracker.html b/java/docs/com/mxgraph/swing/handler/class-use/mxCellTracker.html
    index 9767df1c1..a436607a8 100644
    --- a/java/docs/com/mxgraph/swing/handler/class-use/mxCellTracker.html
    +++ b/java/docs/com/mxgraph/swing/handler/class-use/mxCellTracker.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.swing.handler.mxCellTracker (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.swing.handler.mxCellTracker (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.swing.handler.mxCellTracker (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.swing.handler.mxCellTracker (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/handler/class-use/mxConnectPreview.html b/java/docs/com/mxgraph/swing/handler/class-use/mxConnectPreview.html
    index d76b9c88d..f164bcc58 100644
    --- a/java/docs/com/mxgraph/swing/handler/class-use/mxConnectPreview.html
    +++ b/java/docs/com/mxgraph/swing/handler/class-use/mxConnectPreview.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.swing.handler.mxConnectPreview (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.swing.handler.mxConnectPreview (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.swing.handler.mxConnectPreview (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.swing.handler.mxConnectPreview (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -202,7 +202,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/handler/class-use/mxConnectionHandler.html b/java/docs/com/mxgraph/swing/handler/class-use/mxConnectionHandler.html
    index 3d010c3e1..d62c280cc 100644
    --- a/java/docs/com/mxgraph/swing/handler/class-use/mxConnectionHandler.html
    +++ b/java/docs/com/mxgraph/swing/handler/class-use/mxConnectionHandler.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.swing.handler.mxConnectionHandler (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.swing.handler.mxConnectionHandler (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.swing.handler.mxConnectionHandler (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.swing.handler.mxConnectionHandler (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -187,7 +187,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/handler/class-use/mxEdgeHandler.html b/java/docs/com/mxgraph/swing/handler/class-use/mxEdgeHandler.html
    index 9e8d41171..5fb50be28 100644
    --- a/java/docs/com/mxgraph/swing/handler/class-use/mxEdgeHandler.html
    +++ b/java/docs/com/mxgraph/swing/handler/class-use/mxEdgeHandler.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.swing.handler.mxEdgeHandler (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.swing.handler.mxEdgeHandler (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.swing.handler.mxEdgeHandler (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.swing.handler.mxEdgeHandler (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -167,7 +167,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/handler/class-use/mxElbowEdgeHandler.html b/java/docs/com/mxgraph/swing/handler/class-use/mxElbowEdgeHandler.html
    index c2b802acf..799f33722 100644
    --- a/java/docs/com/mxgraph/swing/handler/class-use/mxElbowEdgeHandler.html
    +++ b/java/docs/com/mxgraph/swing/handler/class-use/mxElbowEdgeHandler.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.swing.handler.mxElbowEdgeHandler (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.swing.handler.mxElbowEdgeHandler (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.swing.handler.mxElbowEdgeHandler (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.swing.handler.mxElbowEdgeHandler (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/handler/class-use/mxGraphHandler.html b/java/docs/com/mxgraph/swing/handler/class-use/mxGraphHandler.html
    index 44da672f2..53f2c0805 100644
    --- a/java/docs/com/mxgraph/swing/handler/class-use/mxGraphHandler.html
    +++ b/java/docs/com/mxgraph/swing/handler/class-use/mxGraphHandler.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.swing.handler.mxGraphHandler (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.swing.handler.mxGraphHandler (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.swing.handler.mxGraphHandler (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.swing.handler.mxGraphHandler (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -187,7 +187,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/handler/class-use/mxGraphTransferHandler.html b/java/docs/com/mxgraph/swing/handler/class-use/mxGraphTransferHandler.html
    index f218d7b97..54c589638 100644
    --- a/java/docs/com/mxgraph/swing/handler/class-use/mxGraphTransferHandler.html
    +++ b/java/docs/com/mxgraph/swing/handler/class-use/mxGraphTransferHandler.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.swing.handler.mxGraphTransferHandler (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.swing.handler.mxGraphTransferHandler (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.swing.handler.mxGraphTransferHandler (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.swing.handler.mxGraphTransferHandler (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -169,7 +169,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/handler/class-use/mxInsertHandler.html b/java/docs/com/mxgraph/swing/handler/class-use/mxInsertHandler.html
    index f9099790d..0c49bcf42 100644
    --- a/java/docs/com/mxgraph/swing/handler/class-use/mxInsertHandler.html
    +++ b/java/docs/com/mxgraph/swing/handler/class-use/mxInsertHandler.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.swing.handler.mxInsertHandler (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.swing.handler.mxInsertHandler (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.swing.handler.mxInsertHandler (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.swing.handler.mxInsertHandler (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/handler/class-use/mxKeyboardHandler.html b/java/docs/com/mxgraph/swing/handler/class-use/mxKeyboardHandler.html
    index e9dd50ca1..f8b6b2303 100644
    --- a/java/docs/com/mxgraph/swing/handler/class-use/mxKeyboardHandler.html
    +++ b/java/docs/com/mxgraph/swing/handler/class-use/mxKeyboardHandler.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.swing.handler.mxKeyboardHandler (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.swing.handler.mxKeyboardHandler (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.swing.handler.mxKeyboardHandler (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.swing.handler.mxKeyboardHandler (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/handler/class-use/mxMovePreview.html b/java/docs/com/mxgraph/swing/handler/class-use/mxMovePreview.html
    index 0d3a346f1..7b2501ce7 100644
    --- a/java/docs/com/mxgraph/swing/handler/class-use/mxMovePreview.html
    +++ b/java/docs/com/mxgraph/swing/handler/class-use/mxMovePreview.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.swing.handler.mxMovePreview (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.swing.handler.mxMovePreview (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.swing.handler.mxMovePreview (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.swing.handler.mxMovePreview (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -187,7 +187,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/handler/class-use/mxPanningHandler.html b/java/docs/com/mxgraph/swing/handler/class-use/mxPanningHandler.html
    index c2b3ece21..79095a0d4 100644
    --- a/java/docs/com/mxgraph/swing/handler/class-use/mxPanningHandler.html
    +++ b/java/docs/com/mxgraph/swing/handler/class-use/mxPanningHandler.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.swing.handler.mxPanningHandler (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.swing.handler.mxPanningHandler (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.swing.handler.mxPanningHandler (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.swing.handler.mxPanningHandler (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -187,7 +187,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/handler/class-use/mxRotationHandler.html b/java/docs/com/mxgraph/swing/handler/class-use/mxRotationHandler.html
    index 4516afdf4..c0724d033 100644
    --- a/java/docs/com/mxgraph/swing/handler/class-use/mxRotationHandler.html
    +++ b/java/docs/com/mxgraph/swing/handler/class-use/mxRotationHandler.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.swing.handler.mxRotationHandler (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.swing.handler.mxRotationHandler (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.swing.handler.mxRotationHandler (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.swing.handler.mxRotationHandler (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/handler/class-use/mxRubberband.html b/java/docs/com/mxgraph/swing/handler/class-use/mxRubberband.html
    index 422edc6c0..5adc62dc8 100644
    --- a/java/docs/com/mxgraph/swing/handler/class-use/mxRubberband.html
    +++ b/java/docs/com/mxgraph/swing/handler/class-use/mxRubberband.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.swing.handler.mxRubberband (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.swing.handler.mxRubberband (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.swing.handler.mxRubberband (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.swing.handler.mxRubberband (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/handler/class-use/mxSelectionCellsHandler.html b/java/docs/com/mxgraph/swing/handler/class-use/mxSelectionCellsHandler.html
    index 156e3528f..6ad6d0abc 100644
    --- a/java/docs/com/mxgraph/swing/handler/class-use/mxSelectionCellsHandler.html
    +++ b/java/docs/com/mxgraph/swing/handler/class-use/mxSelectionCellsHandler.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.swing.handler.mxSelectionCellsHandler (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.swing.handler.mxSelectionCellsHandler (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.swing.handler.mxSelectionCellsHandler (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.swing.handler.mxSelectionCellsHandler (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -187,7 +187,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/handler/class-use/mxVertexHandler.html b/java/docs/com/mxgraph/swing/handler/class-use/mxVertexHandler.html
    index 7c843cc54..69dc6838f 100644
    --- a/java/docs/com/mxgraph/swing/handler/class-use/mxVertexHandler.html
    +++ b/java/docs/com/mxgraph/swing/handler/class-use/mxVertexHandler.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.swing.handler.mxVertexHandler (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.swing.handler.mxVertexHandler (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.swing.handler.mxVertexHandler (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.swing.handler.mxVertexHandler (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/handler/mxCellHandler.html b/java/docs/com/mxgraph/swing/handler/mxCellHandler.html
    index 8ef1326a4..675c563cf 100644
    --- a/java/docs/com/mxgraph/swing/handler/mxCellHandler.html
    +++ b/java/docs/com/mxgraph/swing/handler/mxCellHandler.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxCellHandler (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxCellHandler (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxCellHandler (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxCellHandler (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -966,7 +966,7 @@ extends java.lang.Object</pre>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/handler/mxCellMarker.html b/java/docs/com/mxgraph/swing/handler/mxCellMarker.html
    index a7f0f2f67..c6a95b0a4 100644
    --- a/java/docs/com/mxgraph/swing/handler/mxCellMarker.html
    +++ b/java/docs/com/mxgraph/swing/handler/mxCellMarker.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxCellMarker (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxCellMarker (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxCellMarker (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxCellMarker (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -1381,7 +1381,7 @@ extends javax.swing.JComponent</pre>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/handler/mxCellTracker.html b/java/docs/com/mxgraph/swing/handler/mxCellTracker.html
    index 79769576e..d09630f8d 100644
    --- a/java/docs/com/mxgraph/swing/handler/mxCellTracker.html
    +++ b/java/docs/com/mxgraph/swing/handler/mxCellTracker.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxCellTracker (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxCellTracker (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxCellTracker (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxCellTracker (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -521,7 +521,7 @@ implements java.awt.event.MouseListener, java.awt.event.MouseMotionListener</pre
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/handler/mxConnectPreview.html b/java/docs/com/mxgraph/swing/handler/mxConnectPreview.html
    index 51958196a..b5b2fb038 100644
    --- a/java/docs/com/mxgraph/swing/handler/mxConnectPreview.html
    +++ b/java/docs/com/mxgraph/swing/handler/mxConnectPreview.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxConnectPreview (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxConnectPreview (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxConnectPreview (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxConnectPreview (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -610,7 +610,7 @@ extends <a href="../../util/mxEventSource.html" title="class in com.mxgraph.util
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/handler/mxConnectionHandler.html b/java/docs/com/mxgraph/swing/handler/mxConnectionHandler.html
    index b949aee2a..b6c041216 100644
    --- a/java/docs/com/mxgraph/swing/handler/mxConnectionHandler.html
    +++ b/java/docs/com/mxgraph/swing/handler/mxConnectionHandler.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxConnectionHandler (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxConnectionHandler (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxConnectionHandler (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxConnectionHandler (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -1194,7 +1194,7 @@ extends <a href="../util/mxMouseAdapter.html" title="class in com.mxgraph.swing.
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/handler/mxEdgeHandler.html b/java/docs/com/mxgraph/swing/handler/mxEdgeHandler.html
    index 393c461e0..e4100afe5 100644
    --- a/java/docs/com/mxgraph/swing/handler/mxEdgeHandler.html
    +++ b/java/docs/com/mxgraph/swing/handler/mxEdgeHandler.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxEdgeHandler (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxEdgeHandler (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxEdgeHandler (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxEdgeHandler (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -980,7 +980,7 @@ extends <a href="mxCellHandler.html" title="class in com.mxgraph.swing.handler">
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/handler/mxElbowEdgeHandler.html b/java/docs/com/mxgraph/swing/handler/mxElbowEdgeHandler.html
    index cefc67186..11f7d96ec 100644
    --- a/java/docs/com/mxgraph/swing/handler/mxElbowEdgeHandler.html
    +++ b/java/docs/com/mxgraph/swing/handler/mxElbowEdgeHandler.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxElbowEdgeHandler (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxElbowEdgeHandler (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxElbowEdgeHandler (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxElbowEdgeHandler (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -388,7 +388,7 @@ extends <a href="mxEdgeHandler.html" title="class in com.mxgraph.swing.handler">
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/handler/mxGraphHandler.html b/java/docs/com/mxgraph/swing/handler/mxGraphHandler.html
    index 8e0674d7f..3aaf325d6 100644
    --- a/java/docs/com/mxgraph/swing/handler/mxGraphHandler.html
    +++ b/java/docs/com/mxgraph/swing/handler/mxGraphHandler.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxGraphHandler (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxGraphHandler (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxGraphHandler (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxGraphHandler (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -1617,7 +1617,7 @@ implements java.awt.dnd.DropTargetListener</pre>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/handler/mxGraphTransferHandler.html b/java/docs/com/mxgraph/swing/handler/mxGraphTransferHandler.html
    index f90ec2342..8c14309b3 100644
    --- a/java/docs/com/mxgraph/swing/handler/mxGraphTransferHandler.html
    +++ b/java/docs/com/mxgraph/swing/handler/mxGraphTransferHandler.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxGraphTransferHandler (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxGraphTransferHandler (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxGraphTransferHandler (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxGraphTransferHandler (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -884,7 +884,7 @@ extends javax.swing.TransferHandler</pre>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/handler/mxInsertHandler.html b/java/docs/com/mxgraph/swing/handler/mxInsertHandler.html
    index 80b33198e..cea33d8be 100644
    --- a/java/docs/com/mxgraph/swing/handler/mxInsertHandler.html
    +++ b/java/docs/com/mxgraph/swing/handler/mxInsertHandler.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxInsertHandler (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxInsertHandler (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxInsertHandler (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxInsertHandler (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -645,7 +645,7 @@ extends <a href="../util/mxMouseAdapter.html" title="class in com.mxgraph.swing.
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/handler/mxKeyboardHandler.html b/java/docs/com/mxgraph/swing/handler/mxKeyboardHandler.html
    index 0aa9f416e..c7d66d36c 100644
    --- a/java/docs/com/mxgraph/swing/handler/mxKeyboardHandler.html
    +++ b/java/docs/com/mxgraph/swing/handler/mxKeyboardHandler.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxKeyboardHandler (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxKeyboardHandler (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxKeyboardHandler (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxKeyboardHandler (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -304,7 +304,7 @@ extends java.lang.Object</pre>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/handler/mxMovePreview.html b/java/docs/com/mxgraph/swing/handler/mxMovePreview.html
    index a80a3fa10..730867cea 100644
    --- a/java/docs/com/mxgraph/swing/handler/mxMovePreview.html
    +++ b/java/docs/com/mxgraph/swing/handler/mxMovePreview.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxMovePreview (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxMovePreview (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxMovePreview (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxMovePreview (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -880,7 +880,7 @@ extends <a href="../../util/mxEventSource.html" title="class in com.mxgraph.util
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/handler/mxPanningHandler.html b/java/docs/com/mxgraph/swing/handler/mxPanningHandler.html
    index 379b524b1..a5a6057d6 100644
    --- a/java/docs/com/mxgraph/swing/handler/mxPanningHandler.html
    +++ b/java/docs/com/mxgraph/swing/handler/mxPanningHandler.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxPanningHandler (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxPanningHandler (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxPanningHandler (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxPanningHandler (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -448,7 +448,7 @@ extends <a href="../util/mxMouseAdapter.html" title="class in com.mxgraph.swing.
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/handler/mxRotationHandler.html b/java/docs/com/mxgraph/swing/handler/mxRotationHandler.html
    index 83e683a30..ff5e45667 100644
    --- a/java/docs/com/mxgraph/swing/handler/mxRotationHandler.html
    +++ b/java/docs/com/mxgraph/swing/handler/mxRotationHandler.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxRotationHandler (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxRotationHandler (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxRotationHandler (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxRotationHandler (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -612,7 +612,7 @@ extends <a href="../util/mxMouseAdapter.html" title="class in com.mxgraph.swing.
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/handler/mxRubberband.html b/java/docs/com/mxgraph/swing/handler/mxRubberband.html
    index 96464cc32..c93373981 100644
    --- a/java/docs/com/mxgraph/swing/handler/mxRubberband.html
    +++ b/java/docs/com/mxgraph/swing/handler/mxRubberband.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxRubberband (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxRubberband (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxRubberband (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxRubberband (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -708,7 +708,7 @@ implements java.awt.event.MouseListener, java.awt.event.MouseMotionListener</pre
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/handler/mxSelectionCellsHandler.html b/java/docs/com/mxgraph/swing/handler/mxSelectionCellsHandler.html
    index 25f06e873..c6bb21405 100644
    --- a/java/docs/com/mxgraph/swing/handler/mxSelectionCellsHandler.html
    +++ b/java/docs/com/mxgraph/swing/handler/mxSelectionCellsHandler.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxSelectionCellsHandler (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxSelectionCellsHandler (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxSelectionCellsHandler (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxSelectionCellsHandler (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -774,7 +774,7 @@ implements java.awt.event.MouseListener, java.awt.event.MouseMotionListener</pre
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/handler/mxVertexHandler.html b/java/docs/com/mxgraph/swing/handler/mxVertexHandler.html
    index f9d9b573b..088586608 100644
    --- a/java/docs/com/mxgraph/swing/handler/mxVertexHandler.html
    +++ b/java/docs/com/mxgraph/swing/handler/mxVertexHandler.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxVertexHandler (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxVertexHandler (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxVertexHandler (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxVertexHandler (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -590,7 +590,7 @@ extends <a href="mxCellHandler.html" title="class in com.mxgraph.swing.handler">
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/handler/package-summary.html b/java/docs/com/mxgraph/swing/handler/package-summary.html
    index ec91a4eb4..135a34c1d 100644
    --- a/java/docs/com/mxgraph/swing/handler/package-summary.html
    +++ b/java/docs/com/mxgraph/swing/handler/package-summary.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>com.mxgraph.swing.handler (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>com.mxgraph.swing.handler (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="com.mxgraph.swing.handler (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="com.mxgraph.swing.handler (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -224,7 +224,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/handler/package-tree.html b/java/docs/com/mxgraph/swing/handler/package-tree.html
    index 5aa8a8499..1cf6ad6e7 100644
    --- a/java/docs/com/mxgraph/swing/handler/package-tree.html
    +++ b/java/docs/com/mxgraph/swing/handler/package-tree.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>com.mxgraph.swing.handler Class Hierarchy (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>com.mxgraph.swing.handler Class Hierarchy (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="com.mxgraph.swing.handler Class Hierarchy (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="com.mxgraph.swing.handler Class Hierarchy (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -184,7 +184,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/handler/package-use.html b/java/docs/com/mxgraph/swing/handler/package-use.html
    index dd88351ab..92dcb083d 100644
    --- a/java/docs/com/mxgraph/swing/handler/package-use.html
    +++ b/java/docs/com/mxgraph/swing/handler/package-use.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Package com.mxgraph.swing.handler (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Package com.mxgraph.swing.handler (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Package com.mxgraph.swing.handler (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Package com.mxgraph.swing.handler (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -226,7 +226,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/mxGraphComponent.html b/java/docs/com/mxgraph/swing/mxGraphComponent.html
    index 30a5dc330..38a59be04 100644
    --- a/java/docs/com/mxgraph/swing/mxGraphComponent.html
    +++ b/java/docs/com/mxgraph/swing/mxGraphComponent.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxGraphComponent (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxGraphComponent (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxGraphComponent (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxGraphComponent (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -5121,7 +5121,7 @@ implements java.awt.print.Printable</pre>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/mxGraphComponent.mxGraphControl.html b/java/docs/com/mxgraph/swing/mxGraphComponent.mxGraphControl.html
    index 8cc07d647..7f04091d9 100644
    --- a/java/docs/com/mxgraph/swing/mxGraphComponent.mxGraphControl.html
    +++ b/java/docs/com/mxgraph/swing/mxGraphComponent.mxGraphControl.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxGraphComponent.mxGraphControl (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxGraphComponent.mxGraphControl (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxGraphComponent.mxGraphControl (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxGraphComponent.mxGraphControl (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -712,7 +712,7 @@ extends javax.swing.JComponent</pre>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/mxGraphComponent.mxMouseRedirector.html b/java/docs/com/mxgraph/swing/mxGraphComponent.mxMouseRedirector.html
    index 83b25adf0..cc2b15e4e 100644
    --- a/java/docs/com/mxgraph/swing/mxGraphComponent.mxMouseRedirector.html
    +++ b/java/docs/com/mxgraph/swing/mxGraphComponent.mxMouseRedirector.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxGraphComponent.mxMouseRedirector (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxGraphComponent.mxMouseRedirector (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxGraphComponent.mxMouseRedirector (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxGraphComponent.mxMouseRedirector (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -426,7 +426,7 @@ implements java.awt.event.MouseListener, java.awt.event.MouseMotionListener</pre
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/mxGraphOutline.MouseTracker.html b/java/docs/com/mxgraph/swing/mxGraphOutline.MouseTracker.html
    index 956937260..a52a689e4 100644
    --- a/java/docs/com/mxgraph/swing/mxGraphOutline.MouseTracker.html
    +++ b/java/docs/com/mxgraph/swing/mxGraphOutline.MouseTracker.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxGraphOutline.MouseTracker (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxGraphOutline.MouseTracker (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxGraphOutline.MouseTracker (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxGraphOutline.MouseTracker (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -442,7 +442,7 @@ implements java.awt.event.MouseListener, java.awt.event.MouseMotionListener</pre
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/mxGraphOutline.html b/java/docs/com/mxgraph/swing/mxGraphOutline.html
    index 3a554ce7e..db62df335 100644
    --- a/java/docs/com/mxgraph/swing/mxGraphOutline.html
    +++ b/java/docs/com/mxgraph/swing/mxGraphOutline.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxGraphOutline (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxGraphOutline (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxGraphOutline (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxGraphOutline (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -1161,7 +1161,7 @@ extends javax.swing.JComponent</pre>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/package-summary.html b/java/docs/com/mxgraph/swing/package-summary.html
    index 0d853c3f0..934d77fcc 100644
    --- a/java/docs/com/mxgraph/swing/package-summary.html
    +++ b/java/docs/com/mxgraph/swing/package-summary.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>com.mxgraph.swing (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>com.mxgraph.swing (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="com.mxgraph.swing (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="com.mxgraph.swing (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -157,7 +157,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/package-tree.html b/java/docs/com/mxgraph/swing/package-tree.html
    index 47297c011..09fc2fff2 100644
    --- a/java/docs/com/mxgraph/swing/package-tree.html
    +++ b/java/docs/com/mxgraph/swing/package-tree.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>com.mxgraph.swing Class Hierarchy (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>com.mxgraph.swing Class Hierarchy (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="com.mxgraph.swing Class Hierarchy (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="com.mxgraph.swing Class Hierarchy (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -155,7 +155,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/package-use.html b/java/docs/com/mxgraph/swing/package-use.html
    index 6f5d4b3b8..e10ee35f3 100644
    --- a/java/docs/com/mxgraph/swing/package-use.html
    +++ b/java/docs/com/mxgraph/swing/package-use.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Package com.mxgraph.swing (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Package com.mxgraph.swing (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Package com.mxgraph.swing (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Package com.mxgraph.swing (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -251,7 +251,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/util/class-use/mxAnimation.html b/java/docs/com/mxgraph/swing/util/class-use/mxAnimation.html
    index a9af2bff3..00bd6fd56 100644
    --- a/java/docs/com/mxgraph/swing/util/class-use/mxAnimation.html
    +++ b/java/docs/com/mxgraph/swing/util/class-use/mxAnimation.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.swing.util.mxAnimation (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.swing.util.mxAnimation (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.swing.util.mxAnimation (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.swing.util.mxAnimation (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -169,7 +169,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/util/class-use/mxCellOverlay.html b/java/docs/com/mxgraph/swing/util/class-use/mxCellOverlay.html
    index 867834064..420686cf7 100644
    --- a/java/docs/com/mxgraph/swing/util/class-use/mxCellOverlay.html
    +++ b/java/docs/com/mxgraph/swing/util/class-use/mxCellOverlay.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.swing.util.mxCellOverlay (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.swing.util.mxCellOverlay (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.swing.util.mxCellOverlay (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.swing.util.mxCellOverlay (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.DeleteAction.html b/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.DeleteAction.html
    index ed13cb7b3..57238a46c 100644
    --- a/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.DeleteAction.html
    +++ b/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.DeleteAction.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.swing.util.mxGraphActions.DeleteAction (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.swing.util.mxGraphActions.DeleteAction (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.DeleteAction (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.DeleteAction (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.DrillAction.html b/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.DrillAction.html
    index eb8447a2d..48c11bc64 100644
    --- a/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.DrillAction.html
    +++ b/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.DrillAction.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.swing.util.mxGraphActions.DrillAction (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.swing.util.mxGraphActions.DrillAction (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.DrillAction (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.DrillAction (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.EditAction.html b/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.EditAction.html
    index 0101a2a01..701391a09 100644
    --- a/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.EditAction.html
    +++ b/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.EditAction.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.swing.util.mxGraphActions.EditAction (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.swing.util.mxGraphActions.EditAction (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.EditAction (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.EditAction (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.FoldAction.html b/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.FoldAction.html
    index 219891d25..5ee72b1a7 100644
    --- a/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.FoldAction.html
    +++ b/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.FoldAction.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.swing.util.mxGraphActions.FoldAction (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.swing.util.mxGraphActions.FoldAction (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.FoldAction (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.FoldAction (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.GroupAction.html b/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.GroupAction.html
    index 6583da191..37946a4b3 100644
    --- a/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.GroupAction.html
    +++ b/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.GroupAction.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.swing.util.mxGraphActions.GroupAction (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.swing.util.mxGraphActions.GroupAction (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.GroupAction (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.GroupAction (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.LayerAction.html b/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.LayerAction.html
    index 2da45ae04..8993bcce9 100644
    --- a/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.LayerAction.html
    +++ b/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.LayerAction.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.swing.util.mxGraphActions.LayerAction (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.swing.util.mxGraphActions.LayerAction (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.LayerAction (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.LayerAction (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.RemoveFromParentAction.html b/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.RemoveFromParentAction.html
    index 548e991c3..fb092b699 100644
    --- a/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.RemoveFromParentAction.html
    +++ b/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.RemoveFromParentAction.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.swing.util.mxGraphActions.RemoveFromParentAction (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.swing.util.mxGraphActions.RemoveFromParentAction (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.RemoveFromParentAction (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.RemoveFromParentAction (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.SelectAction.html b/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.SelectAction.html
    index 9d77b7c1f..445117cce 100644
    --- a/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.SelectAction.html
    +++ b/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.SelectAction.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.swing.util.mxGraphActions.SelectAction (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.swing.util.mxGraphActions.SelectAction (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.SelectAction (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.SelectAction (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.UngroupAction.html b/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.UngroupAction.html
    index a8168ae68..08a2b4df9 100644
    --- a/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.UngroupAction.html
    +++ b/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.UngroupAction.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.swing.util.mxGraphActions.UngroupAction (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.swing.util.mxGraphActions.UngroupAction (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.UngroupAction (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.UngroupAction (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.UpdateGroupBoundsAction.html b/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.UpdateGroupBoundsAction.html
    index eedb8684b..0cfe1d2f0 100644
    --- a/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.UpdateGroupBoundsAction.html
    +++ b/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.UpdateGroupBoundsAction.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.swing.util.mxGraphActions.UpdateGroupBoundsAction (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.swing.util.mxGraphActions.UpdateGroupBoundsAction (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.UpdateGroupBoundsAction (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.UpdateGroupBoundsAction (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.ZoomAction.html b/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.ZoomAction.html
    index 4fef27847..ef93f1c90 100644
    --- a/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.ZoomAction.html
    +++ b/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.ZoomAction.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.swing.util.mxGraphActions.ZoomAction (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.swing.util.mxGraphActions.ZoomAction (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.ZoomAction (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions.ZoomAction (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.html b/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.html
    index a3b428597..c4871fc64 100644
    --- a/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.html
    +++ b/java/docs/com/mxgraph/swing/util/class-use/mxGraphActions.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.swing.util.mxGraphActions (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.swing.util.mxGraphActions (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphActions (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/util/class-use/mxGraphTransferable.html b/java/docs/com/mxgraph/swing/util/class-use/mxGraphTransferable.html
    index 928ee9975..c6a0db011 100644
    --- a/java/docs/com/mxgraph/swing/util/class-use/mxGraphTransferable.html
    +++ b/java/docs/com/mxgraph/swing/util/class-use/mxGraphTransferable.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.swing.util.mxGraphTransferable (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.swing.util.mxGraphTransferable (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphTransferable (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.swing.util.mxGraphTransferable (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -216,7 +216,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/util/class-use/mxICellOverlay.html b/java/docs/com/mxgraph/swing/util/class-use/mxICellOverlay.html
    index fbe9a5a55..306578d5d 100644
    --- a/java/docs/com/mxgraph/swing/util/class-use/mxICellOverlay.html
    +++ b/java/docs/com/mxgraph/swing/util/class-use/mxICellOverlay.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Interface com.mxgraph.swing.util.mxICellOverlay (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Interface com.mxgraph.swing.util.mxICellOverlay (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Interface com.mxgraph.swing.util.mxICellOverlay (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Interface com.mxgraph.swing.util.mxICellOverlay (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -294,7 +294,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/util/class-use/mxMorphing.html b/java/docs/com/mxgraph/swing/util/class-use/mxMorphing.html
    index ca180e6a6..33ea14a12 100644
    --- a/java/docs/com/mxgraph/swing/util/class-use/mxMorphing.html
    +++ b/java/docs/com/mxgraph/swing/util/class-use/mxMorphing.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.swing.util.mxMorphing (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.swing.util.mxMorphing (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.swing.util.mxMorphing (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.swing.util.mxMorphing (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/util/class-use/mxMouseAdapter.html b/java/docs/com/mxgraph/swing/util/class-use/mxMouseAdapter.html
    index edca9a51f..5b22d2fd4 100644
    --- a/java/docs/com/mxgraph/swing/util/class-use/mxMouseAdapter.html
    +++ b/java/docs/com/mxgraph/swing/util/class-use/mxMouseAdapter.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.swing.util.mxMouseAdapter (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.swing.util.mxMouseAdapter (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.swing.util.mxMouseAdapter (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.swing.util.mxMouseAdapter (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -191,7 +191,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/util/class-use/mxSwingConstants.html b/java/docs/com/mxgraph/swing/util/class-use/mxSwingConstants.html
    index 71c22efe6..982c4144e 100644
    --- a/java/docs/com/mxgraph/swing/util/class-use/mxSwingConstants.html
    +++ b/java/docs/com/mxgraph/swing/util/class-use/mxSwingConstants.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.swing.util.mxSwingConstants (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.swing.util.mxSwingConstants (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.swing.util.mxSwingConstants (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.swing.util.mxSwingConstants (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/util/mxAnimation.html b/java/docs/com/mxgraph/swing/util/mxAnimation.html
    index 638614a20..7b00684a7 100644
    --- a/java/docs/com/mxgraph/swing/util/mxAnimation.html
    +++ b/java/docs/com/mxgraph/swing/util/mxAnimation.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxAnimation (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxAnimation (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxAnimation (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxAnimation (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -494,7 +494,7 @@ extends <a href="../../util/mxEventSource.html" title="class in com.mxgraph.util
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/util/mxCellOverlay.html b/java/docs/com/mxgraph/swing/util/mxCellOverlay.html
    index 7e89dc5f9..377ba71e2 100644
    --- a/java/docs/com/mxgraph/swing/util/mxCellOverlay.html
    +++ b/java/docs/com/mxgraph/swing/util/mxCellOverlay.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxCellOverlay (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxCellOverlay (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxCellOverlay (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxCellOverlay (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -557,7 +557,7 @@ implements <a href="mxICellOverlay.html" title="interface in com.mxgraph.swing.u
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/util/mxGraphActions.DeleteAction.html b/java/docs/com/mxgraph/swing/util/mxGraphActions.DeleteAction.html
    index 2d999e18e..41c9cd0ed 100644
    --- a/java/docs/com/mxgraph/swing/util/mxGraphActions.DeleteAction.html
    +++ b/java/docs/com/mxgraph/swing/util/mxGraphActions.DeleteAction.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxGraphActions.DeleteAction (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxGraphActions.DeleteAction (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxGraphActions.DeleteAction (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxGraphActions.DeleteAction (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -322,7 +322,7 @@ extends javax.swing.AbstractAction</pre>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/util/mxGraphActions.DrillAction.html b/java/docs/com/mxgraph/swing/util/mxGraphActions.DrillAction.html
    index 488a3cefb..b856616a0 100644
    --- a/java/docs/com/mxgraph/swing/util/mxGraphActions.DrillAction.html
    +++ b/java/docs/com/mxgraph/swing/util/mxGraphActions.DrillAction.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxGraphActions.DrillAction (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxGraphActions.DrillAction (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxGraphActions.DrillAction (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxGraphActions.DrillAction (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -322,7 +322,7 @@ extends javax.swing.AbstractAction</pre>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/util/mxGraphActions.EditAction.html b/java/docs/com/mxgraph/swing/util/mxGraphActions.EditAction.html
    index c6d4e844d..9950931e8 100644
    --- a/java/docs/com/mxgraph/swing/util/mxGraphActions.EditAction.html
    +++ b/java/docs/com/mxgraph/swing/util/mxGraphActions.EditAction.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxGraphActions.EditAction (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxGraphActions.EditAction (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxGraphActions.EditAction (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxGraphActions.EditAction (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -322,7 +322,7 @@ extends javax.swing.AbstractAction</pre>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/util/mxGraphActions.FoldAction.html b/java/docs/com/mxgraph/swing/util/mxGraphActions.FoldAction.html
    index 80b75d337..7735dc59e 100644
    --- a/java/docs/com/mxgraph/swing/util/mxGraphActions.FoldAction.html
    +++ b/java/docs/com/mxgraph/swing/util/mxGraphActions.FoldAction.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxGraphActions.FoldAction (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxGraphActions.FoldAction (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxGraphActions.FoldAction (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxGraphActions.FoldAction (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -322,7 +322,7 @@ extends javax.swing.AbstractAction</pre>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/util/mxGraphActions.GroupAction.html b/java/docs/com/mxgraph/swing/util/mxGraphActions.GroupAction.html
    index 73118b8f1..4ae0138ac 100644
    --- a/java/docs/com/mxgraph/swing/util/mxGraphActions.GroupAction.html
    +++ b/java/docs/com/mxgraph/swing/util/mxGraphActions.GroupAction.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxGraphActions.GroupAction (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxGraphActions.GroupAction (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxGraphActions.GroupAction (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxGraphActions.GroupAction (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -336,7 +336,7 @@ extends javax.swing.AbstractAction</pre>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/util/mxGraphActions.LayerAction.html b/java/docs/com/mxgraph/swing/util/mxGraphActions.LayerAction.html
    index bde560d07..55c62f718 100644
    --- a/java/docs/com/mxgraph/swing/util/mxGraphActions.LayerAction.html
    +++ b/java/docs/com/mxgraph/swing/util/mxGraphActions.LayerAction.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxGraphActions.LayerAction (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxGraphActions.LayerAction (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxGraphActions.LayerAction (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxGraphActions.LayerAction (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -322,7 +322,7 @@ extends javax.swing.AbstractAction</pre>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/util/mxGraphActions.RemoveFromParentAction.html b/java/docs/com/mxgraph/swing/util/mxGraphActions.RemoveFromParentAction.html
    index 1921f9c3f..0f11901c1 100644
    --- a/java/docs/com/mxgraph/swing/util/mxGraphActions.RemoveFromParentAction.html
    +++ b/java/docs/com/mxgraph/swing/util/mxGraphActions.RemoveFromParentAction.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxGraphActions.RemoveFromParentAction (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxGraphActions.RemoveFromParentAction (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxGraphActions.RemoveFromParentAction (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxGraphActions.RemoveFromParentAction (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -322,7 +322,7 @@ extends javax.swing.AbstractAction</pre>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/util/mxGraphActions.SelectAction.html b/java/docs/com/mxgraph/swing/util/mxGraphActions.SelectAction.html
    index d91c2cde7..860afb5e4 100644
    --- a/java/docs/com/mxgraph/swing/util/mxGraphActions.SelectAction.html
    +++ b/java/docs/com/mxgraph/swing/util/mxGraphActions.SelectAction.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxGraphActions.SelectAction (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxGraphActions.SelectAction (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxGraphActions.SelectAction (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxGraphActions.SelectAction (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -322,7 +322,7 @@ extends javax.swing.AbstractAction</pre>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/util/mxGraphActions.UngroupAction.html b/java/docs/com/mxgraph/swing/util/mxGraphActions.UngroupAction.html
    index b12d6f656..b876600af 100644
    --- a/java/docs/com/mxgraph/swing/util/mxGraphActions.UngroupAction.html
    +++ b/java/docs/com/mxgraph/swing/util/mxGraphActions.UngroupAction.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxGraphActions.UngroupAction (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxGraphActions.UngroupAction (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxGraphActions.UngroupAction (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxGraphActions.UngroupAction (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -322,7 +322,7 @@ extends javax.swing.AbstractAction</pre>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/util/mxGraphActions.UpdateGroupBoundsAction.html b/java/docs/com/mxgraph/swing/util/mxGraphActions.UpdateGroupBoundsAction.html
    index 93df854eb..82b57ae11 100644
    --- a/java/docs/com/mxgraph/swing/util/mxGraphActions.UpdateGroupBoundsAction.html
    +++ b/java/docs/com/mxgraph/swing/util/mxGraphActions.UpdateGroupBoundsAction.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxGraphActions.UpdateGroupBoundsAction (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxGraphActions.UpdateGroupBoundsAction (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxGraphActions.UpdateGroupBoundsAction (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxGraphActions.UpdateGroupBoundsAction (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -336,7 +336,7 @@ extends javax.swing.AbstractAction</pre>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/util/mxGraphActions.ZoomAction.html b/java/docs/com/mxgraph/swing/util/mxGraphActions.ZoomAction.html
    index a312be1bd..b9a30f75b 100644
    --- a/java/docs/com/mxgraph/swing/util/mxGraphActions.ZoomAction.html
    +++ b/java/docs/com/mxgraph/swing/util/mxGraphActions.ZoomAction.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxGraphActions.ZoomAction (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxGraphActions.ZoomAction (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxGraphActions.ZoomAction (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxGraphActions.ZoomAction (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -322,7 +322,7 @@ extends javax.swing.AbstractAction</pre>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/util/mxGraphActions.html b/java/docs/com/mxgraph/swing/util/mxGraphActions.html
    index 87bb392cc..2e756d510 100644
    --- a/java/docs/com/mxgraph/swing/util/mxGraphActions.html
    +++ b/java/docs/com/mxgraph/swing/util/mxGraphActions.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxGraphActions (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxGraphActions (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxGraphActions (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxGraphActions (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -774,7 +774,7 @@ extends java.lang.Object</pre>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/util/mxGraphTransferable.html b/java/docs/com/mxgraph/swing/util/mxGraphTransferable.html
    index 516335227..40f74e218 100644
    --- a/java/docs/com/mxgraph/swing/util/mxGraphTransferable.html
    +++ b/java/docs/com/mxgraph/swing/util/mxGraphTransferable.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxGraphTransferable (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxGraphTransferable (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxGraphTransferable (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxGraphTransferable (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -772,7 +772,7 @@ implements java.awt.datatransfer.Transferable, javax.swing.plaf.UIResource, java
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/util/mxICellOverlay.html b/java/docs/com/mxgraph/swing/util/mxICellOverlay.html
    index b56229c0b..4cb933d0d 100644
    --- a/java/docs/com/mxgraph/swing/util/mxICellOverlay.html
    +++ b/java/docs/com/mxgraph/swing/util/mxICellOverlay.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxICellOverlay (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxICellOverlay (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxICellOverlay (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxICellOverlay (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -211,7 +211,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/util/mxMorphing.html b/java/docs/com/mxgraph/swing/util/mxMorphing.html
    index a89bf9c9b..6d34bdc42 100644
    --- a/java/docs/com/mxgraph/swing/util/mxMorphing.html
    +++ b/java/docs/com/mxgraph/swing/util/mxMorphing.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxMorphing (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxMorphing (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxMorphing (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxMorphing (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -729,7 +729,7 @@ extends <a href="mxAnimation.html" title="class in com.mxgraph.swing.util">mxAni
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/util/mxMouseAdapter.html b/java/docs/com/mxgraph/swing/util/mxMouseAdapter.html
    index dad4b01e7..1dbb16ba4 100644
    --- a/java/docs/com/mxgraph/swing/util/mxMouseAdapter.html
    +++ b/java/docs/com/mxgraph/swing/util/mxMouseAdapter.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxMouseAdapter (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxMouseAdapter (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxMouseAdapter (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxMouseAdapter (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -384,7 +384,7 @@ implements java.awt.event.MouseMotionListener, java.awt.event.MouseListener</pre
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/util/mxSwingConstants.html b/java/docs/com/mxgraph/swing/util/mxSwingConstants.html
    index 96f677aca..114e2d62b 100644
    --- a/java/docs/com/mxgraph/swing/util/mxSwingConstants.html
    +++ b/java/docs/com/mxgraph/swing/util/mxSwingConstants.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxSwingConstants (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxSwingConstants (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxSwingConstants (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxSwingConstants (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -548,7 +548,7 @@ extends java.lang.Object</pre>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/util/package-summary.html b/java/docs/com/mxgraph/swing/util/package-summary.html
    index e53f1691d..31b603580 100644
    --- a/java/docs/com/mxgraph/swing/util/package-summary.html
    +++ b/java/docs/com/mxgraph/swing/util/package-summary.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>com.mxgraph.swing.util (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>com.mxgraph.swing.util (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="com.mxgraph.swing.util (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="com.mxgraph.swing.util (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -231,7 +231,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/util/package-tree.html b/java/docs/com/mxgraph/swing/util/package-tree.html
    index 6c637e6b8..41578aacf 100644
    --- a/java/docs/com/mxgraph/swing/util/package-tree.html
    +++ b/java/docs/com/mxgraph/swing/util/package-tree.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>com.mxgraph.swing.util Class Hierarchy (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>com.mxgraph.swing.util Class Hierarchy (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="com.mxgraph.swing.util Class Hierarchy (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="com.mxgraph.swing.util Class Hierarchy (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -181,7 +181,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/util/package-use.html b/java/docs/com/mxgraph/swing/util/package-use.html
    index 9ca7bb71f..79f0179e8 100644
    --- a/java/docs/com/mxgraph/swing/util/package-use.html
    +++ b/java/docs/com/mxgraph/swing/util/package-use.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Package com.mxgraph.swing.util (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Package com.mxgraph.swing.util (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Package com.mxgraph.swing.util (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Package com.mxgraph.swing.util (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -216,7 +216,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/view/class-use/mxCellEditor.html b/java/docs/com/mxgraph/swing/view/class-use/mxCellEditor.html
    index b110d76f9..a089d09b3 100644
    --- a/java/docs/com/mxgraph/swing/view/class-use/mxCellEditor.html
    +++ b/java/docs/com/mxgraph/swing/view/class-use/mxCellEditor.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.swing.view.mxCellEditor (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.swing.view.mxCellEditor (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.swing.view.mxCellEditor (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.swing.view.mxCellEditor (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/view/class-use/mxCellStatePreview.html b/java/docs/com/mxgraph/swing/view/class-use/mxCellStatePreview.html
    index d85011603..ea9dd2a1d 100644
    --- a/java/docs/com/mxgraph/swing/view/class-use/mxCellStatePreview.html
    +++ b/java/docs/com/mxgraph/swing/view/class-use/mxCellStatePreview.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.swing.view.mxCellStatePreview (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.swing.view.mxCellStatePreview (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.swing.view.mxCellStatePreview (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.swing.view.mxCellStatePreview (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -237,7 +237,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/view/class-use/mxICellEditor.html b/java/docs/com/mxgraph/swing/view/class-use/mxICellEditor.html
    index 86cafaa82..b568d0eca 100644
    --- a/java/docs/com/mxgraph/swing/view/class-use/mxICellEditor.html
    +++ b/java/docs/com/mxgraph/swing/view/class-use/mxICellEditor.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Interface com.mxgraph.swing.view.mxICellEditor (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Interface com.mxgraph.swing.view.mxICellEditor (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Interface com.mxgraph.swing.view.mxICellEditor (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Interface com.mxgraph.swing.view.mxICellEditor (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -234,7 +234,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/view/class-use/mxInteractiveCanvas.html b/java/docs/com/mxgraph/swing/view/class-use/mxInteractiveCanvas.html
    index 0423cee11..6e71a7558 100644
    --- a/java/docs/com/mxgraph/swing/view/class-use/mxInteractiveCanvas.html
    +++ b/java/docs/com/mxgraph/swing/view/class-use/mxInteractiveCanvas.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.swing.view.mxInteractiveCanvas (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.swing.view.mxInteractiveCanvas (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.swing.view.mxInteractiveCanvas (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.swing.view.mxInteractiveCanvas (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -190,7 +190,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/view/mxCellEditor.html b/java/docs/com/mxgraph/swing/view/mxCellEditor.html
    index 4f2298567..1db8bb5ae 100644
    --- a/java/docs/com/mxgraph/swing/view/mxCellEditor.html
    +++ b/java/docs/com/mxgraph/swing/view/mxCellEditor.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxCellEditor (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxCellEditor (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxCellEditor (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxCellEditor (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -950,7 +950,7 @@ implements <a href="mxICellEditor.html" title="interface in com.mxgraph.swing.vi
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/view/mxCellStatePreview.html b/java/docs/com/mxgraph/swing/view/mxCellStatePreview.html
    index ab99dd726..57387e28b 100644
    --- a/java/docs/com/mxgraph/swing/view/mxCellStatePreview.html
    +++ b/java/docs/com/mxgraph/swing/view/mxCellStatePreview.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxCellStatePreview (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxCellStatePreview (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxCellStatePreview (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxCellStatePreview (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -688,7 +688,7 @@ extends java.lang.Object</pre>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/view/mxICellEditor.html b/java/docs/com/mxgraph/swing/view/mxICellEditor.html
    index 06e43efa8..d9fb52488 100644
    --- a/java/docs/com/mxgraph/swing/view/mxICellEditor.html
    +++ b/java/docs/com/mxgraph/swing/view/mxICellEditor.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxICellEditor (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxICellEditor (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxICellEditor (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxICellEditor (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -250,7 +250,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/view/mxInteractiveCanvas.html b/java/docs/com/mxgraph/swing/view/mxInteractiveCanvas.html
    index 6f4e08501..6915a040d 100644
    --- a/java/docs/com/mxgraph/swing/view/mxInteractiveCanvas.html
    +++ b/java/docs/com/mxgraph/swing/view/mxInteractiveCanvas.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxInteractiveCanvas (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxInteractiveCanvas (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxInteractiveCanvas (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxInteractiveCanvas (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -483,7 +483,7 @@ extends <a href="../../canvas/mxGraphics2DCanvas.html" title="class in com.mxgra
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/view/package-summary.html b/java/docs/com/mxgraph/swing/view/package-summary.html
    index eb0feb988..8471a1736 100644
    --- a/java/docs/com/mxgraph/swing/view/package-summary.html
    +++ b/java/docs/com/mxgraph/swing/view/package-summary.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>com.mxgraph.swing.view (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>com.mxgraph.swing.view (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="com.mxgraph.swing.view (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="com.mxgraph.swing.view (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -172,7 +172,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/view/package-tree.html b/java/docs/com/mxgraph/swing/view/package-tree.html
    index 04a283516..202145fe0 100644
    --- a/java/docs/com/mxgraph/swing/view/package-tree.html
    +++ b/java/docs/com/mxgraph/swing/view/package-tree.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>com.mxgraph.swing.view Class Hierarchy (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>com.mxgraph.swing.view Class Hierarchy (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="com.mxgraph.swing.view Class Hierarchy (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="com.mxgraph.swing.view Class Hierarchy (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -151,7 +151,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/swing/view/package-use.html b/java/docs/com/mxgraph/swing/view/package-use.html
    index 357fe2296..166403c82 100644
    --- a/java/docs/com/mxgraph/swing/view/package-use.html
    +++ b/java/docs/com/mxgraph/swing/view/package-use.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Package com.mxgraph.swing.view (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Package com.mxgraph.swing.view (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Package com.mxgraph.swing.view (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Package com.mxgraph.swing.view (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -239,7 +239,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/class-use/mxBase64.html b/java/docs/com/mxgraph/util/class-use/mxBase64.html
    index 8a963a2c2..4725914c1 100644
    --- a/java/docs/com/mxgraph/util/class-use/mxBase64.html
    +++ b/java/docs/com/mxgraph/util/class-use/mxBase64.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.util.mxBase64 (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.util.mxBase64 (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.util.mxBase64 (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.util.mxBase64 (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/class-use/mxCellRenderer.CanvasFactory.html b/java/docs/com/mxgraph/util/class-use/mxCellRenderer.CanvasFactory.html
    index 3ba8b5e4a..f554ebb16 100644
    --- a/java/docs/com/mxgraph/util/class-use/mxCellRenderer.CanvasFactory.html
    +++ b/java/docs/com/mxgraph/util/class-use/mxCellRenderer.CanvasFactory.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.util.mxCellRenderer.CanvasFactory (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.util.mxCellRenderer.CanvasFactory (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.util.mxCellRenderer.CanvasFactory (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.util.mxCellRenderer.CanvasFactory (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -175,7 +175,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/class-use/mxCellRenderer.html b/java/docs/com/mxgraph/util/class-use/mxCellRenderer.html
    index 7d0be07a5..1dfb912c7 100644
    --- a/java/docs/com/mxgraph/util/class-use/mxCellRenderer.html
    +++ b/java/docs/com/mxgraph/util/class-use/mxCellRenderer.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.util.mxCellRenderer (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.util.mxCellRenderer (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.util.mxCellRenderer (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.util.mxCellRenderer (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/class-use/mxConstants.html b/java/docs/com/mxgraph/util/class-use/mxConstants.html
    index 82eeeecf3..f1aaa266a 100644
    --- a/java/docs/com/mxgraph/util/class-use/mxConstants.html
    +++ b/java/docs/com/mxgraph/util/class-use/mxConstants.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.util.mxConstants (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.util.mxConstants (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.util.mxConstants (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.util.mxConstants (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/class-use/mxCurve.html b/java/docs/com/mxgraph/util/class-use/mxCurve.html
    index ecc589daa..eb54bf44a 100644
    --- a/java/docs/com/mxgraph/util/class-use/mxCurve.html
    +++ b/java/docs/com/mxgraph/util/class-use/mxCurve.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.util.mxCurve (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.util.mxCurve (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.util.mxCurve (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.util.mxCurve (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -239,7 +239,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/class-use/mxDomUtils.html b/java/docs/com/mxgraph/util/class-use/mxDomUtils.html
    index ea00ed1a7..a556f72bb 100644
    --- a/java/docs/com/mxgraph/util/class-use/mxDomUtils.html
    +++ b/java/docs/com/mxgraph/util/class-use/mxDomUtils.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.util.mxDomUtils (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.util.mxDomUtils (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.util.mxDomUtils (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.util.mxDomUtils (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/class-use/mxEvent.html b/java/docs/com/mxgraph/util/class-use/mxEvent.html
    index 6afcf011d..67f5a78f7 100644
    --- a/java/docs/com/mxgraph/util/class-use/mxEvent.html
    +++ b/java/docs/com/mxgraph/util/class-use/mxEvent.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.util.mxEvent (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.util.mxEvent (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.util.mxEvent (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.util.mxEvent (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/class-use/mxEventObject.html b/java/docs/com/mxgraph/util/class-use/mxEventObject.html
    index b122c5e00..ee20ae0c2 100644
    --- a/java/docs/com/mxgraph/util/class-use/mxEventObject.html
    +++ b/java/docs/com/mxgraph/util/class-use/mxEventObject.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.util.mxEventObject (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.util.mxEventObject (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.util.mxEventObject (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.util.mxEventObject (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -187,7 +187,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/class-use/mxEventSource.html b/java/docs/com/mxgraph/util/class-use/mxEventSource.html
    index ac7d66e8e..f29233a8c 100644
    --- a/java/docs/com/mxgraph/util/class-use/mxEventSource.html
    +++ b/java/docs/com/mxgraph/util/class-use/mxEventSource.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.util.mxEventSource (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.util.mxEventSource (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.util.mxEventSource (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.util.mxEventSource (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -397,7 +397,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/class-use/mxEventSource.mxIEventListener.html b/java/docs/com/mxgraph/util/class-use/mxEventSource.mxIEventListener.html
    index 3081eb220..f236bb04c 100644
    --- a/java/docs/com/mxgraph/util/class-use/mxEventSource.mxIEventListener.html
    +++ b/java/docs/com/mxgraph/util/class-use/mxEventSource.mxIEventListener.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Interface com.mxgraph.util.mxEventSource.mxIEventListener (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Interface com.mxgraph.util.mxEventSource.mxIEventListener (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Interface com.mxgraph.util.mxEventSource.mxIEventListener (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Interface com.mxgraph.util.mxEventSource.mxIEventListener (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -487,7 +487,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/class-use/mxHtmlColor.html b/java/docs/com/mxgraph/util/class-use/mxHtmlColor.html
    index ddd65d6c8..2f5a52f68 100644
    --- a/java/docs/com/mxgraph/util/class-use/mxHtmlColor.html
    +++ b/java/docs/com/mxgraph/util/class-use/mxHtmlColor.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.util.mxHtmlColor (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.util.mxHtmlColor (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.util.mxHtmlColor (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.util.mxHtmlColor (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/class-use/mxImage.html b/java/docs/com/mxgraph/util/class-use/mxImage.html
    index af45799a9..a4fd5d17b 100644
    --- a/java/docs/com/mxgraph/util/class-use/mxImage.html
    +++ b/java/docs/com/mxgraph/util/class-use/mxImage.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.util.mxImage (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.util.mxImage (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.util.mxImage (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.util.mxImage (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/class-use/mxImageBundle.html b/java/docs/com/mxgraph/util/class-use/mxImageBundle.html
    index a4d69c9d4..70cc35d30 100644
    --- a/java/docs/com/mxgraph/util/class-use/mxImageBundle.html
    +++ b/java/docs/com/mxgraph/util/class-use/mxImageBundle.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.util.mxImageBundle (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.util.mxImageBundle (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.util.mxImageBundle (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.util.mxImageBundle (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -227,7 +227,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/class-use/mxLightweightLabel.html b/java/docs/com/mxgraph/util/class-use/mxLightweightLabel.html
    index 711c032ca..932d6af22 100644
    --- a/java/docs/com/mxgraph/util/class-use/mxLightweightLabel.html
    +++ b/java/docs/com/mxgraph/util/class-use/mxLightweightLabel.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.util.mxLightweightLabel (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.util.mxLightweightLabel (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.util.mxLightweightLabel (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.util.mxLightweightLabel (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -183,7 +183,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/class-use/mxLine.html b/java/docs/com/mxgraph/util/class-use/mxLine.html
    index 83e01ce94..1e5bc32e9 100644
    --- a/java/docs/com/mxgraph/util/class-use/mxLine.html
    +++ b/java/docs/com/mxgraph/util/class-use/mxLine.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.util.mxLine (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.util.mxLine (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.util.mxLine (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.util.mxLine (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -250,7 +250,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/class-use/mxPoint.html b/java/docs/com/mxgraph/util/class-use/mxPoint.html
    index d8553c66f..222bfccb0 100644
    --- a/java/docs/com/mxgraph/util/class-use/mxPoint.html
    +++ b/java/docs/com/mxgraph/util/class-use/mxPoint.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.util.mxPoint (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.util.mxPoint (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.util.mxPoint (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.util.mxPoint (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -1840,7 +1840,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/class-use/mxRectangle.html b/java/docs/com/mxgraph/util/class-use/mxRectangle.html
    index 749331d97..1dc8220b5 100644
    --- a/java/docs/com/mxgraph/util/class-use/mxRectangle.html
    +++ b/java/docs/com/mxgraph/util/class-use/mxRectangle.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.util.mxRectangle (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.util.mxRectangle (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.util.mxRectangle (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.util.mxRectangle (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -1640,7 +1640,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/class-use/mxResources.html b/java/docs/com/mxgraph/util/class-use/mxResources.html
    index e1e664de7..a6881c552 100644
    --- a/java/docs/com/mxgraph/util/class-use/mxResources.html
    +++ b/java/docs/com/mxgraph/util/class-use/mxResources.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.util.mxResources (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.util.mxResources (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.util.mxResources (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.util.mxResources (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/class-use/mxSpline.html b/java/docs/com/mxgraph/util/class-use/mxSpline.html
    index 85ab1acce..4c8082f95 100644
    --- a/java/docs/com/mxgraph/util/class-use/mxSpline.html
    +++ b/java/docs/com/mxgraph/util/class-use/mxSpline.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.util.mxSpline (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.util.mxSpline (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.util.mxSpline (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.util.mxSpline (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/class-use/mxSpline1D.html b/java/docs/com/mxgraph/util/class-use/mxSpline1D.html
    index 271e9050f..951b5ce96 100644
    --- a/java/docs/com/mxgraph/util/class-use/mxSpline1D.html
    +++ b/java/docs/com/mxgraph/util/class-use/mxSpline1D.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.util.mxSpline1D (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.util.mxSpline1D (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.util.mxSpline1D (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.util.mxSpline1D (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -173,7 +173,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/class-use/mxStyleUtils.html b/java/docs/com/mxgraph/util/class-use/mxStyleUtils.html
    index 757de55b7..e8fe86022 100644
    --- a/java/docs/com/mxgraph/util/class-use/mxStyleUtils.html
    +++ b/java/docs/com/mxgraph/util/class-use/mxStyleUtils.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.util.mxStyleUtils (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.util.mxStyleUtils (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.util.mxStyleUtils (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.util.mxStyleUtils (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/class-use/mxUndoManager.html b/java/docs/com/mxgraph/util/class-use/mxUndoManager.html
    index 9b8578d9f..2571d16ec 100644
    --- a/java/docs/com/mxgraph/util/class-use/mxUndoManager.html
    +++ b/java/docs/com/mxgraph/util/class-use/mxUndoManager.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.util.mxUndoManager (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.util.mxUndoManager (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.util.mxUndoManager (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.util.mxUndoManager (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/class-use/mxUndoableEdit.html b/java/docs/com/mxgraph/util/class-use/mxUndoableEdit.html
    index a46b7bb96..30c2f2938 100644
    --- a/java/docs/com/mxgraph/util/class-use/mxUndoableEdit.html
    +++ b/java/docs/com/mxgraph/util/class-use/mxUndoableEdit.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.util.mxUndoableEdit (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.util.mxUndoableEdit (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.util.mxUndoableEdit (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.util.mxUndoableEdit (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -263,7 +263,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/class-use/mxUndoableEdit.mxUndoableChange.html b/java/docs/com/mxgraph/util/class-use/mxUndoableEdit.mxUndoableChange.html
    index d896ed1b1..b9d4f9e7a 100644
    --- a/java/docs/com/mxgraph/util/class-use/mxUndoableEdit.mxUndoableChange.html
    +++ b/java/docs/com/mxgraph/util/class-use/mxUndoableEdit.mxUndoableChange.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Interface com.mxgraph.util.mxUndoableEdit.mxUndoableChange (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Interface com.mxgraph.util.mxUndoableEdit.mxUndoableChange (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Interface com.mxgraph.util.mxUndoableEdit.mxUndoableChange (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Interface com.mxgraph.util.mxUndoableEdit.mxUndoableChange (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -373,7 +373,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/class-use/mxUtils.html b/java/docs/com/mxgraph/util/class-use/mxUtils.html
    index 74dab2e71..20b10492e 100644
    --- a/java/docs/com/mxgraph/util/class-use/mxUtils.html
    +++ b/java/docs/com/mxgraph/util/class-use/mxUtils.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.util.mxUtils (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.util.mxUtils (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.util.mxUtils (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.util.mxUtils (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/class-use/mxXmlUtils.html b/java/docs/com/mxgraph/util/class-use/mxXmlUtils.html
    index 8de59ffc9..e90ef8102 100644
    --- a/java/docs/com/mxgraph/util/class-use/mxXmlUtils.html
    +++ b/java/docs/com/mxgraph/util/class-use/mxXmlUtils.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.util.mxXmlUtils (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.util.mxXmlUtils (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.util.mxXmlUtils (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.util.mxXmlUtils (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/mxBase64.html b/java/docs/com/mxgraph/util/mxBase64.html
    index 3170dd0fb..aebc99465 100644
    --- a/java/docs/com/mxgraph/util/mxBase64.html
    +++ b/java/docs/com/mxgraph/util/mxBase64.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxBase64 (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxBase64 (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxBase64 (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxBase64 (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -555,7 +555,7 @@ extends java.lang.Object</pre>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/mxCellRenderer.CanvasFactory.html b/java/docs/com/mxgraph/util/mxCellRenderer.CanvasFactory.html
    index 383bf65ce..9f1c0ced9 100644
    --- a/java/docs/com/mxgraph/util/mxCellRenderer.CanvasFactory.html
    +++ b/java/docs/com/mxgraph/util/mxCellRenderer.CanvasFactory.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxCellRenderer.CanvasFactory (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxCellRenderer.CanvasFactory (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxCellRenderer.CanvasFactory (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxCellRenderer.CanvasFactory (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -274,7 +274,7 @@ extends java.lang.Object</pre>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/mxCellRenderer.html b/java/docs/com/mxgraph/util/mxCellRenderer.html
    index aed7b3027..e8d5f4162 100644
    --- a/java/docs/com/mxgraph/util/mxCellRenderer.html
    +++ b/java/docs/com/mxgraph/util/mxCellRenderer.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxCellRenderer (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxCellRenderer (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxCellRenderer (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxCellRenderer (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -381,7 +381,7 @@ extends java.lang.Object</pre>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/mxConstants.html b/java/docs/com/mxgraph/util/mxConstants.html
    index ebced3ec3..e07e6d67a 100644
    --- a/java/docs/com/mxgraph/util/mxConstants.html
    +++ b/java/docs/com/mxgraph/util/mxConstants.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxConstants (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxConstants (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxConstants (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxConstants (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -4050,7 +4050,7 @@ extends java.lang.Object</pre>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/mxCurve.html b/java/docs/com/mxgraph/util/mxCurve.html
    index acdd1f743..eb6434823 100644
    --- a/java/docs/com/mxgraph/util/mxCurve.html
    +++ b/java/docs/com/mxgraph/util/mxCurve.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxCurve (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxCurve (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxCurve (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxCurve (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -1101,7 +1101,7 @@ extends java.lang.Object</pre>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/mxDomUtils.html b/java/docs/com/mxgraph/util/mxDomUtils.html
    index 694860428..4d5b05e74 100644
    --- a/java/docs/com/mxgraph/util/mxDomUtils.html
    +++ b/java/docs/com/mxgraph/util/mxDomUtils.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxDomUtils (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxDomUtils (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxDomUtils (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxDomUtils (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -321,7 +321,7 @@ extends java.lang.Object</pre>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/mxEvent.html b/java/docs/com/mxgraph/util/mxEvent.html
    index ecfb1204b..21b4c1ba0 100644
    --- a/java/docs/com/mxgraph/util/mxEvent.html
    +++ b/java/docs/com/mxgraph/util/mxEvent.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxEvent (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxEvent (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxEvent (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxEvent (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -1305,7 +1305,7 @@ extends java.lang.Object</pre>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/mxEventObject.html b/java/docs/com/mxgraph/util/mxEventObject.html
    index 257116f71..81da0db0b 100644
    --- a/java/docs/com/mxgraph/util/mxEventObject.html
    +++ b/java/docs/com/mxgraph/util/mxEventObject.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxEventObject (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxEventObject (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxEventObject (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxEventObject (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -431,7 +431,7 @@ extends java.lang.Object</pre>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/mxEventSource.html b/java/docs/com/mxgraph/util/mxEventSource.html
    index b0d209b6a..731510c2a 100644
    --- a/java/docs/com/mxgraph/util/mxEventSource.html
    +++ b/java/docs/com/mxgraph/util/mxEventSource.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxEventSource (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxEventSource (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxEventSource (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxEventSource (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -538,7 +538,7 @@ extends java.lang.Object</pre>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/mxEventSource.mxIEventListener.html b/java/docs/com/mxgraph/util/mxEventSource.mxIEventListener.html
    index df4d34e32..7f5e1d601 100644
    --- a/java/docs/com/mxgraph/util/mxEventSource.mxIEventListener.html
    +++ b/java/docs/com/mxgraph/util/mxEventSource.mxIEventListener.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxEventSource.mxIEventListener (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxEventSource.mxIEventListener (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxEventSource.mxIEventListener (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxEventSource.mxIEventListener (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -222,7 +222,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/mxHtmlColor.html b/java/docs/com/mxgraph/util/mxHtmlColor.html
    index ec64ee633..800620bb7 100644
    --- a/java/docs/com/mxgraph/util/mxHtmlColor.html
    +++ b/java/docs/com/mxgraph/util/mxHtmlColor.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxHtmlColor (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxHtmlColor (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxHtmlColor (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxHtmlColor (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -460,7 +460,7 @@ extends java.lang.Object</pre>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/mxImage.html b/java/docs/com/mxgraph/util/mxImage.html
    index 2e6898923..f462722ea 100644
    --- a/java/docs/com/mxgraph/util/mxImage.html
    +++ b/java/docs/com/mxgraph/util/mxImage.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxImage (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxImage (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxImage (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxImage (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -453,7 +453,7 @@ implements java.io.Serializable, java.lang.Cloneable</pre>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/mxImageBundle.html b/java/docs/com/mxgraph/util/mxImageBundle.html
    index c3e75a6af..8612fafac 100644
    --- a/java/docs/com/mxgraph/util/mxImageBundle.html
    +++ b/java/docs/com/mxgraph/util/mxImageBundle.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxImageBundle (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxImageBundle (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxImageBundle (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxImageBundle (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -380,7 +380,7 @@ extends java.lang.Object</pre>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/mxLightweightLabel.html b/java/docs/com/mxgraph/util/mxLightweightLabel.html
    index cdcee36c5..ac1a6af7c 100644
    --- a/java/docs/com/mxgraph/util/mxLightweightLabel.html
    +++ b/java/docs/com/mxgraph/util/mxLightweightLabel.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxLightweightLabel (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxLightweightLabel (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxLightweightLabel (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxLightweightLabel (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -751,7 +751,7 @@ extends javax.swing.JLabel</pre>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/mxLine.html b/java/docs/com/mxgraph/util/mxLine.html
    index c0efcef04..5791f4854 100644
    --- a/java/docs/com/mxgraph/util/mxLine.html
    +++ b/java/docs/com/mxgraph/util/mxLine.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxLine (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxLine (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxLine (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxLine (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -458,7 +458,7 @@ extends <a href="mxPoint.html" title="class in com.mxgraph.util">mxPoint</a></pr
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/mxPoint.html b/java/docs/com/mxgraph/util/mxPoint.html
    index 442970a55..b2a6a737a 100644
    --- a/java/docs/com/mxgraph/util/mxPoint.html
    +++ b/java/docs/com/mxgraph/util/mxPoint.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxPoint (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxPoint (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxPoint (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxPoint (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -563,7 +563,7 @@ implements java.io.Serializable, java.lang.Cloneable</pre>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/mxRectangle.html b/java/docs/com/mxgraph/util/mxRectangle.html
    index 83bbd89e7..689502cd9 100644
    --- a/java/docs/com/mxgraph/util/mxRectangle.html
    +++ b/java/docs/com/mxgraph/util/mxRectangle.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxRectangle (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxRectangle (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxRectangle (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxRectangle (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -780,7 +780,7 @@ extends <a href="mxPoint.html" title="class in com.mxgraph.util">mxPoint</a></pr
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/mxResources.html b/java/docs/com/mxgraph/util/mxResources.html
    index 616ea48e6..14eec334e 100644
    --- a/java/docs/com/mxgraph/util/mxResources.html
    +++ b/java/docs/com/mxgraph/util/mxResources.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxResources (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxResources (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxResources (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxResources (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -473,7 +473,7 @@ extends java.lang.Object</pre>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/mxSpline.html b/java/docs/com/mxgraph/util/mxSpline.html
    index 2e7b7229f..f825f99f2 100644
    --- a/java/docs/com/mxgraph/util/mxSpline.html
    +++ b/java/docs/com/mxgraph/util/mxSpline.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxSpline (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxSpline (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxSpline (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxSpline (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -394,7 +394,7 @@ extends java.lang.Object</pre>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/mxSpline1D.html b/java/docs/com/mxgraph/util/mxSpline1D.html
    index b0cb88c33..2603785ce 100644
    --- a/java/docs/com/mxgraph/util/mxSpline1D.html
    +++ b/java/docs/com/mxgraph/util/mxSpline1D.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxSpline1D (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxSpline1D (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxSpline1D (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxSpline1D (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -490,7 +490,7 @@ extends java.lang.Object</pre>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/mxStyleUtils.html b/java/docs/com/mxgraph/util/mxStyleUtils.html
    index 4bf0c24f1..02f73577a 100644
    --- a/java/docs/com/mxgraph/util/mxStyleUtils.html
    +++ b/java/docs/com/mxgraph/util/mxStyleUtils.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxStyleUtils (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxStyleUtils (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxStyleUtils (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxStyleUtils (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -521,7 +521,7 @@ extends java.lang.Object</pre>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/mxUndoManager.html b/java/docs/com/mxgraph/util/mxUndoManager.html
    index cef53ee1d..d9dc66309 100644
    --- a/java/docs/com/mxgraph/util/mxUndoManager.html
    +++ b/java/docs/com/mxgraph/util/mxUndoManager.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxUndoManager (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxUndoManager (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxUndoManager (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxUndoManager (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -532,7 +532,7 @@ extends <a href="mxEventSource.html" title="class in com.mxgraph.util">mxEventSo
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/mxUndoableEdit.html b/java/docs/com/mxgraph/util/mxUndoableEdit.html
    index 9f797bb50..f5aa5dbfc 100644
    --- a/java/docs/com/mxgraph/util/mxUndoableEdit.html
    +++ b/java/docs/com/mxgraph/util/mxUndoableEdit.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxUndoableEdit (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxUndoableEdit (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxUndoableEdit (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxUndoableEdit (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -600,7 +600,7 @@ extends java.lang.Object</pre>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/mxUndoableEdit.mxUndoableChange.html b/java/docs/com/mxgraph/util/mxUndoableEdit.mxUndoableChange.html
    index f61e3c90b..1385d01ee 100644
    --- a/java/docs/com/mxgraph/util/mxUndoableEdit.mxUndoableChange.html
    +++ b/java/docs/com/mxgraph/util/mxUndoableEdit.mxUndoableChange.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxUndoableEdit.mxUndoableChange (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxUndoableEdit.mxUndoableChange (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxUndoableEdit.mxUndoableChange (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxUndoableEdit.mxUndoableChange (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -219,7 +219,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/mxUtils.html b/java/docs/com/mxgraph/util/mxUtils.html
    index b0140f065..0595fde5d 100644
    --- a/java/docs/com/mxgraph/util/mxUtils.html
    +++ b/java/docs/com/mxgraph/util/mxUtils.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxUtils (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxUtils (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxUtils (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxUtils (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -2671,7 +2671,7 @@ extends java.lang.Object</pre>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/mxXmlUtils.html b/java/docs/com/mxgraph/util/mxXmlUtils.html
    index ba0089bf1..c8d0d08f1 100644
    --- a/java/docs/com/mxgraph/util/mxXmlUtils.html
    +++ b/java/docs/com/mxgraph/util/mxXmlUtils.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxXmlUtils (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxXmlUtils (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxXmlUtils (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxXmlUtils (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -310,7 +310,7 @@ extends java.lang.Object</pre>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/package-summary.html b/java/docs/com/mxgraph/util/package-summary.html
    index e955020a9..55b8996ec 100644
    --- a/java/docs/com/mxgraph/util/package-summary.html
    +++ b/java/docs/com/mxgraph/util/package-summary.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>com.mxgraph.util (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>com.mxgraph.util (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="com.mxgraph.util (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="com.mxgraph.util (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -303,7 +303,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/package-tree.html b/java/docs/com/mxgraph/util/package-tree.html
    index e665917da..fe7370837 100644
    --- a/java/docs/com/mxgraph/util/package-tree.html
    +++ b/java/docs/com/mxgraph/util/package-tree.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>com.mxgraph.util Class Hierarchy (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>com.mxgraph.util Class Hierarchy (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="com.mxgraph.util Class Hierarchy (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="com.mxgraph.util Class Hierarchy (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -187,7 +187,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/package-use.html b/java/docs/com/mxgraph/util/package-use.html
    index ab97aa30e..a76d97255 100644
    --- a/java/docs/com/mxgraph/util/package-use.html
    +++ b/java/docs/com/mxgraph/util/package-use.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Package com.mxgraph.util (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Package com.mxgraph.util (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Package com.mxgraph.util (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Package com.mxgraph.util (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -627,7 +627,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/png/class-use/mxPngEncodeParam.Gray.html b/java/docs/com/mxgraph/util/png/class-use/mxPngEncodeParam.Gray.html
    index e7be3fb0d..bc2ad0a38 100644
    --- a/java/docs/com/mxgraph/util/png/class-use/mxPngEncodeParam.Gray.html
    +++ b/java/docs/com/mxgraph/util/png/class-use/mxPngEncodeParam.Gray.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.util.png.mxPngEncodeParam.Gray (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.util.png.mxPngEncodeParam.Gray (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.util.png.mxPngEncodeParam.Gray (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.util.png.mxPngEncodeParam.Gray (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/png/class-use/mxPngEncodeParam.Palette.html b/java/docs/com/mxgraph/util/png/class-use/mxPngEncodeParam.Palette.html
    index 79fc4bf0c..281a83436 100644
    --- a/java/docs/com/mxgraph/util/png/class-use/mxPngEncodeParam.Palette.html
    +++ b/java/docs/com/mxgraph/util/png/class-use/mxPngEncodeParam.Palette.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.util.png.mxPngEncodeParam.Palette (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.util.png.mxPngEncodeParam.Palette (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.util.png.mxPngEncodeParam.Palette (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.util.png.mxPngEncodeParam.Palette (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/png/class-use/mxPngEncodeParam.RGB.html b/java/docs/com/mxgraph/util/png/class-use/mxPngEncodeParam.RGB.html
    index 77af165b6..05f02d57d 100644
    --- a/java/docs/com/mxgraph/util/png/class-use/mxPngEncodeParam.RGB.html
    +++ b/java/docs/com/mxgraph/util/png/class-use/mxPngEncodeParam.RGB.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.util.png.mxPngEncodeParam.RGB (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.util.png.mxPngEncodeParam.RGB (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.util.png.mxPngEncodeParam.RGB (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.util.png.mxPngEncodeParam.RGB (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/png/class-use/mxPngEncodeParam.html b/java/docs/com/mxgraph/util/png/class-use/mxPngEncodeParam.html
    index 120540341..e5a8de06b 100644
    --- a/java/docs/com/mxgraph/util/png/class-use/mxPngEncodeParam.html
    +++ b/java/docs/com/mxgraph/util/png/class-use/mxPngEncodeParam.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.util.png.mxPngEncodeParam (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.util.png.mxPngEncodeParam (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.util.png.mxPngEncodeParam (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.util.png.mxPngEncodeParam (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -228,7 +228,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/png/class-use/mxPngImageEncoder.html b/java/docs/com/mxgraph/util/png/class-use/mxPngImageEncoder.html
    index 49d788f91..5bac1a006 100644
    --- a/java/docs/com/mxgraph/util/png/class-use/mxPngImageEncoder.html
    +++ b/java/docs/com/mxgraph/util/png/class-use/mxPngImageEncoder.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.util.png.mxPngImageEncoder (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.util.png.mxPngImageEncoder (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.util.png.mxPngImageEncoder (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.util.png.mxPngImageEncoder (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/png/class-use/mxPngSuggestedPaletteEntry.html b/java/docs/com/mxgraph/util/png/class-use/mxPngSuggestedPaletteEntry.html
    index cd69a6346..c2ff45418 100644
    --- a/java/docs/com/mxgraph/util/png/class-use/mxPngSuggestedPaletteEntry.html
    +++ b/java/docs/com/mxgraph/util/png/class-use/mxPngSuggestedPaletteEntry.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.util.png.mxPngSuggestedPaletteEntry (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.util.png.mxPngSuggestedPaletteEntry (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.util.png.mxPngSuggestedPaletteEntry (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.util.png.mxPngSuggestedPaletteEntry (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -167,7 +167,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/png/class-use/mxPngTextDecoder.html b/java/docs/com/mxgraph/util/png/class-use/mxPngTextDecoder.html
    index a9480c0ca..5b1cd1c53 100644
    --- a/java/docs/com/mxgraph/util/png/class-use/mxPngTextDecoder.html
    +++ b/java/docs/com/mxgraph/util/png/class-use/mxPngTextDecoder.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.util.png.mxPngTextDecoder (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.util.png.mxPngTextDecoder (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.util.png.mxPngTextDecoder (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.util.png.mxPngTextDecoder (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/png/mxPngEncodeParam.Gray.html b/java/docs/com/mxgraph/util/png/mxPngEncodeParam.Gray.html
    index b72452f82..89923738c 100644
    --- a/java/docs/com/mxgraph/util/png/mxPngEncodeParam.Gray.html
    +++ b/java/docs/com/mxgraph/util/png/mxPngEncodeParam.Gray.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxPngEncodeParam.Gray (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxPngEncodeParam.Gray (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxPngEncodeParam.Gray (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxPngEncodeParam.Gray (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -561,7 +561,7 @@ extends <a href="mxPngEncodeParam.html" title="class in com.mxgraph.util.png">mx
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/png/mxPngEncodeParam.Palette.html b/java/docs/com/mxgraph/util/png/mxPngEncodeParam.Palette.html
    index 1d91cd5e2..2cfb791ee 100644
    --- a/java/docs/com/mxgraph/util/png/mxPngEncodeParam.Palette.html
    +++ b/java/docs/com/mxgraph/util/png/mxPngEncodeParam.Palette.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxPngEncodeParam.Palette (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxPngEncodeParam.Palette (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxPngEncodeParam.Palette (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxPngEncodeParam.Palette (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -545,7 +545,7 @@ extends <a href="mxPngEncodeParam.html" title="class in com.mxgraph.util.png">mx
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/png/mxPngEncodeParam.RGB.html b/java/docs/com/mxgraph/util/png/mxPngEncodeParam.RGB.html
    index 6d08cbebd..116a6a58e 100644
    --- a/java/docs/com/mxgraph/util/png/mxPngEncodeParam.RGB.html
    +++ b/java/docs/com/mxgraph/util/png/mxPngEncodeParam.RGB.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxPngEncodeParam.RGB (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxPngEncodeParam.RGB (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxPngEncodeParam.RGB (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxPngEncodeParam.RGB (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -457,7 +457,7 @@ extends <a href="mxPngEncodeParam.html" title="class in com.mxgraph.util.png">mx
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/png/mxPngEncodeParam.html b/java/docs/com/mxgraph/util/png/mxPngEncodeParam.html
    index 1576d954c..16002d808 100644
    --- a/java/docs/com/mxgraph/util/png/mxPngEncodeParam.html
    +++ b/java/docs/com/mxgraph/util/png/mxPngEncodeParam.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxPngEncodeParam (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxPngEncodeParam (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxPngEncodeParam (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxPngEncodeParam (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -1897,7 +1897,7 @@ extends java.lang.Object</pre>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/png/mxPngImageEncoder.html b/java/docs/com/mxgraph/util/png/mxPngImageEncoder.html
    index 64516aa25..18a8e11bd 100644
    --- a/java/docs/com/mxgraph/util/png/mxPngImageEncoder.html
    +++ b/java/docs/com/mxgraph/util/png/mxPngImageEncoder.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxPngImageEncoder (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxPngImageEncoder (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxPngImageEncoder (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxPngImageEncoder (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -371,7 +371,7 @@ extends java.lang.Object</pre>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/png/mxPngSuggestedPaletteEntry.html b/java/docs/com/mxgraph/util/png/mxPngSuggestedPaletteEntry.html
    index 8b1868088..7d1d98653 100644
    --- a/java/docs/com/mxgraph/util/png/mxPngSuggestedPaletteEntry.html
    +++ b/java/docs/com/mxgraph/util/png/mxPngSuggestedPaletteEntry.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxPngSuggestedPaletteEntry (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxPngSuggestedPaletteEntry (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxPngSuggestedPaletteEntry (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxPngSuggestedPaletteEntry (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -385,7 +385,7 @@ implements java.io.Serializable</pre>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/png/mxPngTextDecoder.html b/java/docs/com/mxgraph/util/png/mxPngTextDecoder.html
    index 27f4368c5..2febc77a7 100644
    --- a/java/docs/com/mxgraph/util/png/mxPngTextDecoder.html
    +++ b/java/docs/com/mxgraph/util/png/mxPngTextDecoder.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxPngTextDecoder (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxPngTextDecoder (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxPngTextDecoder (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxPngTextDecoder (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -331,7 +331,7 @@ extends java.lang.Object</pre>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/png/package-summary.html b/java/docs/com/mxgraph/util/png/package-summary.html
    index ed28bc09b..38d6da9d6 100644
    --- a/java/docs/com/mxgraph/util/png/package-summary.html
    +++ b/java/docs/com/mxgraph/util/png/package-summary.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>com.mxgraph.util.png (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>com.mxgraph.util.png (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="com.mxgraph.util.png (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="com.mxgraph.util.png (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -171,7 +171,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/png/package-tree.html b/java/docs/com/mxgraph/util/png/package-tree.html
    index 02de8fc4f..4f72dc0ba 100644
    --- a/java/docs/com/mxgraph/util/png/package-tree.html
    +++ b/java/docs/com/mxgraph/util/png/package-tree.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>com.mxgraph.util.png Class Hierarchy (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>com.mxgraph.util.png Class Hierarchy (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="com.mxgraph.util.png Class Hierarchy (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="com.mxgraph.util.png Class Hierarchy (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -144,7 +144,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/png/package-use.html b/java/docs/com/mxgraph/util/png/package-use.html
    index 2af24e9e0..cd5ff7593 100644
    --- a/java/docs/com/mxgraph/util/png/package-use.html
    +++ b/java/docs/com/mxgraph/util/png/package-use.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Package com.mxgraph.util.png (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Package com.mxgraph.util.png (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Package com.mxgraph.util.png (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Package com.mxgraph.util.png (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -164,7 +164,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/svg/AWTPathProducer.html b/java/docs/com/mxgraph/util/svg/AWTPathProducer.html
    index 37044cb26..cb853e821 100644
    --- a/java/docs/com/mxgraph/util/svg/AWTPathProducer.html
    +++ b/java/docs/com/mxgraph/util/svg/AWTPathProducer.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>AWTPathProducer (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>AWTPathProducer (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="AWTPathProducer (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="AWTPathProducer (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -1149,7 +1149,7 @@ implements <a href="PathHandler.html" title="interface in com.mxgraph.util.svg">
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/svg/AWTPolygonProducer.html b/java/docs/com/mxgraph/util/svg/AWTPolygonProducer.html
    index 5d5138413..fbfd11665 100644
    --- a/java/docs/com/mxgraph/util/svg/AWTPolygonProducer.html
    +++ b/java/docs/com/mxgraph/util/svg/AWTPolygonProducer.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>AWTPolygonProducer (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>AWTPolygonProducer (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="AWTPolygonProducer (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="AWTPolygonProducer (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -337,7 +337,7 @@ extends <a href="AWTPolylineProducer.html" title="class in com.mxgraph.util.svg"
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/svg/AWTPolylineProducer.html b/java/docs/com/mxgraph/util/svg/AWTPolylineProducer.html
    index 7041a0d58..6703ac3e7 100644
    --- a/java/docs/com/mxgraph/util/svg/AWTPolylineProducer.html
    +++ b/java/docs/com/mxgraph/util/svg/AWTPolylineProducer.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>AWTPolylineProducer (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>AWTPolylineProducer (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="AWTPolylineProducer (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="AWTPolylineProducer (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -511,7 +511,7 @@ implements <a href="PointsHandler.html" title="interface in com.mxgraph.util.svg
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/svg/AbstractParser.html b/java/docs/com/mxgraph/util/svg/AbstractParser.html
    index e942560e5..67628c92a 100644
    --- a/java/docs/com/mxgraph/util/svg/AbstractParser.html
    +++ b/java/docs/com/mxgraph/util/svg/AbstractParser.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>AbstractParser (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>AbstractParser (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="AbstractParser (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="AbstractParser (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -621,7 +621,7 @@ implements <a href="Parser.html" title="interface in com.mxgraph.util.svg">Parse
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/svg/CSSConstants.html b/java/docs/com/mxgraph/util/svg/CSSConstants.html
    index 9da876241..88f0ba97d 100644
    --- a/java/docs/com/mxgraph/util/svg/CSSConstants.html
    +++ b/java/docs/com/mxgraph/util/svg/CSSConstants.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>CSSConstants (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>CSSConstants (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="CSSConstants (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="CSSConstants (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -243,7 +243,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/svg/DefaultErrorHandler.html b/java/docs/com/mxgraph/util/svg/DefaultErrorHandler.html
    index 72342ef85..e3552aead 100644
    --- a/java/docs/com/mxgraph/util/svg/DefaultErrorHandler.html
    +++ b/java/docs/com/mxgraph/util/svg/DefaultErrorHandler.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>DefaultErrorHandler (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>DefaultErrorHandler (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="DefaultErrorHandler (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="DefaultErrorHandler (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -280,7 +280,7 @@ implements <a href="ErrorHandler.html" title="interface in com.mxgraph.util.svg"
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/svg/ErrorHandler.html b/java/docs/com/mxgraph/util/svg/ErrorHandler.html
    index 070b67590..2e22b4020 100644
    --- a/java/docs/com/mxgraph/util/svg/ErrorHandler.html
    +++ b/java/docs/com/mxgraph/util/svg/ErrorHandler.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>ErrorHandler (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>ErrorHandler (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="ErrorHandler (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="ErrorHandler (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -221,7 +221,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/svg/ExtendedGeneralPath.html b/java/docs/com/mxgraph/util/svg/ExtendedGeneralPath.html
    index 0c232a2b8..e68f672b7 100644
    --- a/java/docs/com/mxgraph/util/svg/ExtendedGeneralPath.html
    +++ b/java/docs/com/mxgraph/util/svg/ExtendedGeneralPath.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>ExtendedGeneralPath (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>ExtendedGeneralPath (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="ExtendedGeneralPath (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="ExtendedGeneralPath (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -1006,7 +1006,7 @@ implements java.awt.Shape, java.lang.Cloneable</pre>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/svg/ExtendedPathIterator.html b/java/docs/com/mxgraph/util/svg/ExtendedPathIterator.html
    index f0f7f6dc0..f861203b4 100644
    --- a/java/docs/com/mxgraph/util/svg/ExtendedPathIterator.html
    +++ b/java/docs/com/mxgraph/util/svg/ExtendedPathIterator.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>ExtendedPathIterator (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>ExtendedPathIterator (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="ExtendedPathIterator (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="ExtendedPathIterator (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -526,7 +526,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/svg/NormalizingReader.html b/java/docs/com/mxgraph/util/svg/NormalizingReader.html
    index d065e377f..eb18ff560 100644
    --- a/java/docs/com/mxgraph/util/svg/NormalizingReader.html
    +++ b/java/docs/com/mxgraph/util/svg/NormalizingReader.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>NormalizingReader (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>NormalizingReader (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="NormalizingReader (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="NormalizingReader (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -358,7 +358,7 @@ extends java.io.Reader</pre>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/svg/NumberParser.html b/java/docs/com/mxgraph/util/svg/NumberParser.html
    index 9c625e8e4..208e9716a 100644
    --- a/java/docs/com/mxgraph/util/svg/NumberParser.html
    +++ b/java/docs/com/mxgraph/util/svg/NumberParser.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>NumberParser (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>NumberParser (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="NumberParser (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="NumberParser (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -330,7 +330,7 @@ extends <a href="AbstractParser.html" title="class in com.mxgraph.util.svg">Abst
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/svg/ParseException.html b/java/docs/com/mxgraph/util/svg/ParseException.html
    index 0785894b6..da1934caf 100644
    --- a/java/docs/com/mxgraph/util/svg/ParseException.html
    +++ b/java/docs/com/mxgraph/util/svg/ParseException.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>ParseException (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>ParseException (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="ParseException (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="ParseException (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -501,7 +501,7 @@ extends java.lang.RuntimeException</pre>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/svg/Parser.html b/java/docs/com/mxgraph/util/svg/Parser.html
    index 64e66ca59..ba58a455a 100644
    --- a/java/docs/com/mxgraph/util/svg/Parser.html
    +++ b/java/docs/com/mxgraph/util/svg/Parser.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Parser (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Parser (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Parser (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Parser (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -249,7 +249,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/svg/PathHandler.html b/java/docs/com/mxgraph/util/svg/PathHandler.html
    index cf5b3f2dc..4c61f7c79 100644
    --- a/java/docs/com/mxgraph/util/svg/PathHandler.html
    +++ b/java/docs/com/mxgraph/util/svg/PathHandler.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>PathHandler (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>PathHandler (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="PathHandler (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="PathHandler (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -855,7 +855,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/svg/PathParser.html b/java/docs/com/mxgraph/util/svg/PathParser.html
    index d4e8422e4..348a93d1f 100644
    --- a/java/docs/com/mxgraph/util/svg/PathParser.html
    +++ b/java/docs/com/mxgraph/util/svg/PathParser.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>PathParser (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>PathParser (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="PathParser (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="PathParser (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -951,7 +951,7 @@ extends <a href="NumberParser.html" title="class in com.mxgraph.util.svg">Number
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/svg/PointsHandler.html b/java/docs/com/mxgraph/util/svg/PointsHandler.html
    index d1f5a377f..207ed01cf 100644
    --- a/java/docs/com/mxgraph/util/svg/PointsHandler.html
    +++ b/java/docs/com/mxgraph/util/svg/PointsHandler.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>PointsHandler (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>PointsHandler (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="PointsHandler (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="PointsHandler (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -274,7 +274,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/svg/PointsParser.html b/java/docs/com/mxgraph/util/svg/PointsParser.html
    index eabb64a95..1bd70712d 100644
    --- a/java/docs/com/mxgraph/util/svg/PointsParser.html
    +++ b/java/docs/com/mxgraph/util/svg/PointsParser.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>PointsParser (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>PointsParser (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="PointsParser (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="PointsParser (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -422,7 +422,7 @@ extends <a href="NumberParser.html" title="class in com.mxgraph.util.svg">Number
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/svg/ShapeProducer.html b/java/docs/com/mxgraph/util/svg/ShapeProducer.html
    index 948d51a9a..03eb17fa2 100644
    --- a/java/docs/com/mxgraph/util/svg/ShapeProducer.html
    +++ b/java/docs/com/mxgraph/util/svg/ShapeProducer.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>ShapeProducer (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>ShapeProducer (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="ShapeProducer (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="ShapeProducer (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -254,7 +254,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/svg/StringNormalizingReader.html b/java/docs/com/mxgraph/util/svg/StringNormalizingReader.html
    index 9ef89cf76..8a6c3cdb2 100644
    --- a/java/docs/com/mxgraph/util/svg/StringNormalizingReader.html
    +++ b/java/docs/com/mxgraph/util/svg/StringNormalizingReader.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>StringNormalizingReader (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>StringNormalizingReader (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="StringNormalizingReader (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="StringNormalizingReader (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -501,7 +501,7 @@ extends <a href="NormalizingReader.html" title="class in com.mxgraph.util.svg">N
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/svg/class-use/AWTPathProducer.html b/java/docs/com/mxgraph/util/svg/class-use/AWTPathProducer.html
    index 28c222b9e..50bcca9e1 100644
    --- a/java/docs/com/mxgraph/util/svg/class-use/AWTPathProducer.html
    +++ b/java/docs/com/mxgraph/util/svg/class-use/AWTPathProducer.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.util.svg.AWTPathProducer (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.util.svg.AWTPathProducer (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.util.svg.AWTPathProducer (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.util.svg.AWTPathProducer (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/svg/class-use/AWTPolygonProducer.html b/java/docs/com/mxgraph/util/svg/class-use/AWTPolygonProducer.html
    index 544fb46da..25efe959f 100644
    --- a/java/docs/com/mxgraph/util/svg/class-use/AWTPolygonProducer.html
    +++ b/java/docs/com/mxgraph/util/svg/class-use/AWTPolygonProducer.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.util.svg.AWTPolygonProducer (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.util.svg.AWTPolygonProducer (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.util.svg.AWTPolygonProducer (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.util.svg.AWTPolygonProducer (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/svg/class-use/AWTPolylineProducer.html b/java/docs/com/mxgraph/util/svg/class-use/AWTPolylineProducer.html
    index f886a211c..b7d0c818c 100644
    --- a/java/docs/com/mxgraph/util/svg/class-use/AWTPolylineProducer.html
    +++ b/java/docs/com/mxgraph/util/svg/class-use/AWTPolylineProducer.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.util.svg.AWTPolylineProducer (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.util.svg.AWTPolylineProducer (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.util.svg.AWTPolylineProducer (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.util.svg.AWTPolylineProducer (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -166,7 +166,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/svg/class-use/AbstractParser.html b/java/docs/com/mxgraph/util/svg/class-use/AbstractParser.html
    index 12a6c4a7b..a9f2886be 100644
    --- a/java/docs/com/mxgraph/util/svg/class-use/AbstractParser.html
    +++ b/java/docs/com/mxgraph/util/svg/class-use/AbstractParser.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.util.svg.AbstractParser (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.util.svg.AbstractParser (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.util.svg.AbstractParser (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.util.svg.AbstractParser (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -182,7 +182,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/svg/class-use/CSSConstants.html b/java/docs/com/mxgraph/util/svg/class-use/CSSConstants.html
    index 805745354..ad4fd21ae 100644
    --- a/java/docs/com/mxgraph/util/svg/class-use/CSSConstants.html
    +++ b/java/docs/com/mxgraph/util/svg/class-use/CSSConstants.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Interface com.mxgraph.util.svg.CSSConstants (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Interface com.mxgraph.util.svg.CSSConstants (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Interface com.mxgraph.util.svg.CSSConstants (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Interface com.mxgraph.util.svg.CSSConstants (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/svg/class-use/DefaultErrorHandler.html b/java/docs/com/mxgraph/util/svg/class-use/DefaultErrorHandler.html
    index 79cc705af..bb26ba894 100644
    --- a/java/docs/com/mxgraph/util/svg/class-use/DefaultErrorHandler.html
    +++ b/java/docs/com/mxgraph/util/svg/class-use/DefaultErrorHandler.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.util.svg.DefaultErrorHandler (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.util.svg.DefaultErrorHandler (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.util.svg.DefaultErrorHandler (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.util.svg.DefaultErrorHandler (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/svg/class-use/ErrorHandler.html b/java/docs/com/mxgraph/util/svg/class-use/ErrorHandler.html
    index add377af5..614d69025 100644
    --- a/java/docs/com/mxgraph/util/svg/class-use/ErrorHandler.html
    +++ b/java/docs/com/mxgraph/util/svg/class-use/ErrorHandler.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Interface com.mxgraph.util.svg.ErrorHandler (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Interface com.mxgraph.util.svg.ErrorHandler (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Interface com.mxgraph.util.svg.ErrorHandler (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Interface com.mxgraph.util.svg.ErrorHandler (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -207,7 +207,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/svg/class-use/ExtendedGeneralPath.html b/java/docs/com/mxgraph/util/svg/class-use/ExtendedGeneralPath.html
    index 2b4e9a0f3..8ae9bda9a 100644
    --- a/java/docs/com/mxgraph/util/svg/class-use/ExtendedGeneralPath.html
    +++ b/java/docs/com/mxgraph/util/svg/class-use/ExtendedGeneralPath.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.util.svg.ExtendedGeneralPath (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.util.svg.ExtendedGeneralPath (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.util.svg.ExtendedGeneralPath (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.util.svg.ExtendedGeneralPath (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -166,7 +166,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/svg/class-use/ExtendedPathIterator.html b/java/docs/com/mxgraph/util/svg/class-use/ExtendedPathIterator.html
    index cc2aaaae8..f9adf33a2 100644
    --- a/java/docs/com/mxgraph/util/svg/class-use/ExtendedPathIterator.html
    +++ b/java/docs/com/mxgraph/util/svg/class-use/ExtendedPathIterator.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Interface com.mxgraph.util.svg.ExtendedPathIterator (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Interface com.mxgraph.util.svg.ExtendedPathIterator (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Interface com.mxgraph.util.svg.ExtendedPathIterator (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Interface com.mxgraph.util.svg.ExtendedPathIterator (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -184,7 +184,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/svg/class-use/NormalizingReader.html b/java/docs/com/mxgraph/util/svg/class-use/NormalizingReader.html
    index f9af7c903..89ed66510 100644
    --- a/java/docs/com/mxgraph/util/svg/class-use/NormalizingReader.html
    +++ b/java/docs/com/mxgraph/util/svg/class-use/NormalizingReader.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.util.svg.NormalizingReader (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.util.svg.NormalizingReader (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.util.svg.NormalizingReader (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.util.svg.NormalizingReader (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -183,7 +183,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/svg/class-use/NumberParser.html b/java/docs/com/mxgraph/util/svg/class-use/NumberParser.html
    index f298e984b..7cc6d6df4 100644
    --- a/java/docs/com/mxgraph/util/svg/class-use/NumberParser.html
    +++ b/java/docs/com/mxgraph/util/svg/class-use/NumberParser.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.util.svg.NumberParser (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.util.svg.NumberParser (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.util.svg.NumberParser (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.util.svg.NumberParser (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -175,7 +175,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/svg/class-use/ParseException.html b/java/docs/com/mxgraph/util/svg/class-use/ParseException.html
    index 78456efe0..a612e4cdc 100644
    --- a/java/docs/com/mxgraph/util/svg/class-use/ParseException.html
    +++ b/java/docs/com/mxgraph/util/svg/class-use/ParseException.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.util.svg.ParseException (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.util.svg.ParseException (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.util.svg.ParseException (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.util.svg.ParseException (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -851,7 +851,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/svg/class-use/Parser.html b/java/docs/com/mxgraph/util/svg/class-use/Parser.html
    index eddde5686..498349d99 100644
    --- a/java/docs/com/mxgraph/util/svg/class-use/Parser.html
    +++ b/java/docs/com/mxgraph/util/svg/class-use/Parser.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Interface com.mxgraph.util.svg.Parser (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Interface com.mxgraph.util.svg.Parser (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Interface com.mxgraph.util.svg.Parser (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Interface com.mxgraph.util.svg.Parser (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -189,7 +189,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/svg/class-use/PathHandler.html b/java/docs/com/mxgraph/util/svg/class-use/PathHandler.html
    index 67468d3c8..ab86afefa 100644
    --- a/java/docs/com/mxgraph/util/svg/class-use/PathHandler.html
    +++ b/java/docs/com/mxgraph/util/svg/class-use/PathHandler.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Interface com.mxgraph.util.svg.PathHandler (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Interface com.mxgraph.util.svg.PathHandler (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Interface com.mxgraph.util.svg.PathHandler (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Interface com.mxgraph.util.svg.PathHandler (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -233,7 +233,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/svg/class-use/PathParser.html b/java/docs/com/mxgraph/util/svg/class-use/PathParser.html
    index 8876a5131..0b0d35af6 100644
    --- a/java/docs/com/mxgraph/util/svg/class-use/PathParser.html
    +++ b/java/docs/com/mxgraph/util/svg/class-use/PathParser.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.util.svg.PathParser (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.util.svg.PathParser (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.util.svg.PathParser (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.util.svg.PathParser (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/svg/class-use/PointsHandler.html b/java/docs/com/mxgraph/util/svg/class-use/PointsHandler.html
    index e21b55cba..1cdbb5a04 100644
    --- a/java/docs/com/mxgraph/util/svg/class-use/PointsHandler.html
    +++ b/java/docs/com/mxgraph/util/svg/class-use/PointsHandler.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Interface com.mxgraph.util.svg.PointsHandler (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Interface com.mxgraph.util.svg.PointsHandler (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Interface com.mxgraph.util.svg.PointsHandler (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Interface com.mxgraph.util.svg.PointsHandler (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -239,7 +239,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/svg/class-use/PointsParser.html b/java/docs/com/mxgraph/util/svg/class-use/PointsParser.html
    index 547a95248..ed52d9954 100644
    --- a/java/docs/com/mxgraph/util/svg/class-use/PointsParser.html
    +++ b/java/docs/com/mxgraph/util/svg/class-use/PointsParser.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.util.svg.PointsParser (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.util.svg.PointsParser (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.util.svg.PointsParser (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.util.svg.PointsParser (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/svg/class-use/ShapeProducer.html b/java/docs/com/mxgraph/util/svg/class-use/ShapeProducer.html
    index 1e9b1a951..d3534361c 100644
    --- a/java/docs/com/mxgraph/util/svg/class-use/ShapeProducer.html
    +++ b/java/docs/com/mxgraph/util/svg/class-use/ShapeProducer.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Interface com.mxgraph.util.svg.ShapeProducer (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Interface com.mxgraph.util.svg.ShapeProducer (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Interface com.mxgraph.util.svg.ShapeProducer (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Interface com.mxgraph.util.svg.ShapeProducer (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -181,7 +181,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/svg/class-use/StringNormalizingReader.html b/java/docs/com/mxgraph/util/svg/class-use/StringNormalizingReader.html
    index 450302e93..8f1166d1c 100644
    --- a/java/docs/com/mxgraph/util/svg/class-use/StringNormalizingReader.html
    +++ b/java/docs/com/mxgraph/util/svg/class-use/StringNormalizingReader.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.util.svg.StringNormalizingReader (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.util.svg.StringNormalizingReader (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.util.svg.StringNormalizingReader (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.util.svg.StringNormalizingReader (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../../index-all.html">Index</a></li>
     <li><a href="../../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/svg/package-summary.html b/java/docs/com/mxgraph/util/svg/package-summary.html
    index 58ec3b868..c22ce84ba 100644
    --- a/java/docs/com/mxgraph/util/svg/package-summary.html
    +++ b/java/docs/com/mxgraph/util/svg/package-summary.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>com.mxgraph.util.svg (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>com.mxgraph.util.svg (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="com.mxgraph.util.svg (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="com.mxgraph.util.svg (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -283,7 +283,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/svg/package-tree.html b/java/docs/com/mxgraph/util/svg/package-tree.html
    index 645d45d4c..2762baf34 100644
    --- a/java/docs/com/mxgraph/util/svg/package-tree.html
    +++ b/java/docs/com/mxgraph/util/svg/package-tree.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>com.mxgraph.util.svg Class Hierarchy (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>com.mxgraph.util.svg Class Hierarchy (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="com.mxgraph.util.svg Class Hierarchy (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="com.mxgraph.util.svg Class Hierarchy (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -186,7 +186,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/util/svg/package-use.html b/java/docs/com/mxgraph/util/svg/package-use.html
    index 5f5ea5f23..7ec89b0d5 100644
    --- a/java/docs/com/mxgraph/util/svg/package-use.html
    +++ b/java/docs/com/mxgraph/util/svg/package-use.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Package com.mxgraph.util.svg (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Package com.mxgraph.util.svg (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Package com.mxgraph.util.svg (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Package com.mxgraph.util.svg (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -233,7 +233,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/view/class-use/mxCellState.html b/java/docs/com/mxgraph/view/class-use/mxCellState.html
    index 73643fcbe..f1f8a395f 100644
    --- a/java/docs/com/mxgraph/view/class-use/mxCellState.html
    +++ b/java/docs/com/mxgraph/view/class-use/mxCellState.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.view.mxCellState (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.view.mxCellState (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.view.mxCellState (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.view.mxCellState (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -2196,7 +2196,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/view/class-use/mxConnectionConstraint.html b/java/docs/com/mxgraph/view/class-use/mxConnectionConstraint.html
    index 0b5625934..1867295a4 100644
    --- a/java/docs/com/mxgraph/view/class-use/mxConnectionConstraint.html
    +++ b/java/docs/com/mxgraph/view/class-use/mxConnectionConstraint.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.view.mxConnectionConstraint (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.view.mxConnectionConstraint (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.view.mxConnectionConstraint (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.view.mxConnectionConstraint (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -241,7 +241,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/view/class-use/mxEdgeStyle.html b/java/docs/com/mxgraph/view/class-use/mxEdgeStyle.html
    index 0f386e2d2..db6bcab77 100644
    --- a/java/docs/com/mxgraph/view/class-use/mxEdgeStyle.html
    +++ b/java/docs/com/mxgraph/view/class-use/mxEdgeStyle.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.view.mxEdgeStyle (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.view.mxEdgeStyle (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.view.mxEdgeStyle (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.view.mxEdgeStyle (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/view/class-use/mxEdgeStyle.mxEdgeStyleFunction.html b/java/docs/com/mxgraph/view/class-use/mxEdgeStyle.mxEdgeStyleFunction.html
    index fad8e03bc..2c98a3106 100644
    --- a/java/docs/com/mxgraph/view/class-use/mxEdgeStyle.mxEdgeStyleFunction.html
    +++ b/java/docs/com/mxgraph/view/class-use/mxEdgeStyle.mxEdgeStyleFunction.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Interface com.mxgraph.view.mxEdgeStyle.mxEdgeStyleFunction (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Interface com.mxgraph.view.mxEdgeStyle.mxEdgeStyleFunction (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Interface com.mxgraph.view.mxEdgeStyle.mxEdgeStyleFunction (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Interface com.mxgraph.view.mxEdgeStyle.mxEdgeStyleFunction (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -266,7 +266,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/view/class-use/mxGraph.html b/java/docs/com/mxgraph/view/class-use/mxGraph.html
    index 968df1f07..b58c9e1a7 100644
    --- a/java/docs/com/mxgraph/view/class-use/mxGraph.html
    +++ b/java/docs/com/mxgraph/view/class-use/mxGraph.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.view.mxGraph (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.view.mxGraph (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.view.mxGraph (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.view.mxGraph (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -1057,7 +1057,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/view/class-use/mxGraph.mxICellVisitor.html b/java/docs/com/mxgraph/view/class-use/mxGraph.mxICellVisitor.html
    index e5c635c48..99f47328b 100644
    --- a/java/docs/com/mxgraph/view/class-use/mxGraph.mxICellVisitor.html
    +++ b/java/docs/com/mxgraph/view/class-use/mxGraph.mxICellVisitor.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Interface com.mxgraph.view.mxGraph.mxICellVisitor (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Interface com.mxgraph.view.mxGraph.mxICellVisitor (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Interface com.mxgraph.view.mxGraph.mxICellVisitor (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Interface com.mxgraph.view.mxGraph.mxICellVisitor (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -237,7 +237,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/view/class-use/mxGraphSelectionModel.html b/java/docs/com/mxgraph/view/class-use/mxGraphSelectionModel.html
    index ba6765e3f..305e0365e 100644
    --- a/java/docs/com/mxgraph/view/class-use/mxGraphSelectionModel.html
    +++ b/java/docs/com/mxgraph/view/class-use/mxGraphSelectionModel.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.view.mxGraphSelectionModel (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.view.mxGraphSelectionModel (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.view.mxGraphSelectionModel (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.view.mxGraphSelectionModel (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -211,7 +211,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/view/class-use/mxGraphSelectionModel.mxSelectionChange.html b/java/docs/com/mxgraph/view/class-use/mxGraphSelectionModel.mxSelectionChange.html
    index 0886aac40..0fae80530 100644
    --- a/java/docs/com/mxgraph/view/class-use/mxGraphSelectionModel.mxSelectionChange.html
    +++ b/java/docs/com/mxgraph/view/class-use/mxGraphSelectionModel.mxSelectionChange.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.view.mxGraphSelectionModel.mxSelectionChange (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.view.mxGraphSelectionModel.mxSelectionChange (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.view.mxGraphSelectionModel.mxSelectionChange (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.view.mxGraphSelectionModel.mxSelectionChange (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/view/class-use/mxGraphView.html b/java/docs/com/mxgraph/view/class-use/mxGraphView.html
    index b456cdf4c..283248504 100644
    --- a/java/docs/com/mxgraph/view/class-use/mxGraphView.html
    +++ b/java/docs/com/mxgraph/view/class-use/mxGraphView.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.view.mxGraphView (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.view.mxGraphView (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.view.mxGraphView (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.view.mxGraphView (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -294,7 +294,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/view/class-use/mxGraphView.mxCurrentRootChange.html b/java/docs/com/mxgraph/view/class-use/mxGraphView.mxCurrentRootChange.html
    index 345543b82..8f52df383 100644
    --- a/java/docs/com/mxgraph/view/class-use/mxGraphView.mxCurrentRootChange.html
    +++ b/java/docs/com/mxgraph/view/class-use/mxGraphView.mxCurrentRootChange.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.view.mxGraphView.mxCurrentRootChange (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.view.mxGraphView.mxCurrentRootChange (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.view.mxGraphView.mxCurrentRootChange (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.view.mxGraphView.mxCurrentRootChange (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/view/class-use/mxLayoutManager.html b/java/docs/com/mxgraph/view/class-use/mxLayoutManager.html
    index fe5b996be..de1585fbd 100644
    --- a/java/docs/com/mxgraph/view/class-use/mxLayoutManager.html
    +++ b/java/docs/com/mxgraph/view/class-use/mxLayoutManager.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.view.mxLayoutManager (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.view.mxLayoutManager (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.view.mxLayoutManager (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.view.mxLayoutManager (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/view/class-use/mxMultiplicity.html b/java/docs/com/mxgraph/view/class-use/mxMultiplicity.html
    index b3eca15f6..097301263 100644
    --- a/java/docs/com/mxgraph/view/class-use/mxMultiplicity.html
    +++ b/java/docs/com/mxgraph/view/class-use/mxMultiplicity.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.view.mxMultiplicity (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.view.mxMultiplicity (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.view.mxMultiplicity (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.view.mxMultiplicity (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -199,7 +199,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/view/class-use/mxPerimeter.html b/java/docs/com/mxgraph/view/class-use/mxPerimeter.html
    index 35e49db4d..df50236f5 100644
    --- a/java/docs/com/mxgraph/view/class-use/mxPerimeter.html
    +++ b/java/docs/com/mxgraph/view/class-use/mxPerimeter.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.view.mxPerimeter (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.view.mxPerimeter (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.view.mxPerimeter (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.view.mxPerimeter (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/view/class-use/mxPerimeter.mxPerimeterFunction.html b/java/docs/com/mxgraph/view/class-use/mxPerimeter.mxPerimeterFunction.html
    index bc02963a1..d9a6a712a 100644
    --- a/java/docs/com/mxgraph/view/class-use/mxPerimeter.mxPerimeterFunction.html
    +++ b/java/docs/com/mxgraph/view/class-use/mxPerimeter.mxPerimeterFunction.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Interface com.mxgraph.view.mxPerimeter.mxPerimeterFunction (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Interface com.mxgraph.view.mxPerimeter.mxPerimeterFunction (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Interface com.mxgraph.view.mxPerimeter.mxPerimeterFunction (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Interface com.mxgraph.view.mxPerimeter.mxPerimeterFunction (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -214,7 +214,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/view/class-use/mxStyleRegistry.html b/java/docs/com/mxgraph/view/class-use/mxStyleRegistry.html
    index 16a391f84..75a8e0397 100644
    --- a/java/docs/com/mxgraph/view/class-use/mxStyleRegistry.html
    +++ b/java/docs/com/mxgraph/view/class-use/mxStyleRegistry.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.view.mxStyleRegistry (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.view.mxStyleRegistry (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.view.mxStyleRegistry (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.view.mxStyleRegistry (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/view/class-use/mxStylesheet.html b/java/docs/com/mxgraph/view/class-use/mxStylesheet.html
    index 7becba6dc..7badbbc5f 100644
    --- a/java/docs/com/mxgraph/view/class-use/mxStylesheet.html
    +++ b/java/docs/com/mxgraph/view/class-use/mxStylesheet.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.view.mxStylesheet (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.view.mxStylesheet (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.view.mxStylesheet (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.view.mxStylesheet (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -232,7 +232,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/view/class-use/mxSwimlaneManager.html b/java/docs/com/mxgraph/view/class-use/mxSwimlaneManager.html
    index 48fe369da..f1ce5ad2d 100644
    --- a/java/docs/com/mxgraph/view/class-use/mxSwimlaneManager.html
    +++ b/java/docs/com/mxgraph/view/class-use/mxSwimlaneManager.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.view.mxSwimlaneManager (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.view.mxSwimlaneManager (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.view.mxSwimlaneManager (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.view.mxSwimlaneManager (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/view/class-use/mxTemporaryCellStates.html b/java/docs/com/mxgraph/view/class-use/mxTemporaryCellStates.html
    index f781842f1..3f33499eb 100644
    --- a/java/docs/com/mxgraph/view/class-use/mxTemporaryCellStates.html
    +++ b/java/docs/com/mxgraph/view/class-use/mxTemporaryCellStates.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Class com.mxgraph.view.mxTemporaryCellStates (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Class com.mxgraph.view.mxTemporaryCellStates (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Class com.mxgraph.view.mxTemporaryCellStates (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Class com.mxgraph.view.mxTemporaryCellStates (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -120,7 +120,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../../index-all.html">Index</a></li>
     <li><a href="../../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/view/mxCellState.html b/java/docs/com/mxgraph/view/mxCellState.html
    index ce7561516..9cfbd931d 100644
    --- a/java/docs/com/mxgraph/view/mxCellState.html
    +++ b/java/docs/com/mxgraph/view/mxCellState.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxCellState (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxCellState (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxCellState (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxCellState (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -1402,7 +1402,7 @@ extends <a href="../util/mxRectangle.html" title="class in com.mxgraph.util">mxR
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/view/mxConnectionConstraint.html b/java/docs/com/mxgraph/view/mxConnectionConstraint.html
    index 2140bbcd8..d87b17e94 100644
    --- a/java/docs/com/mxgraph/view/mxConnectionConstraint.html
    +++ b/java/docs/com/mxgraph/view/mxConnectionConstraint.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxConnectionConstraint (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxConnectionConstraint (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxConnectionConstraint (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxConnectionConstraint (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -429,7 +429,7 @@ extends java.lang.Object</pre>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/view/mxEdgeStyle.html b/java/docs/com/mxgraph/view/mxEdgeStyle.html
    index a27f76f13..b89ffab93 100644
    --- a/java/docs/com/mxgraph/view/mxEdgeStyle.html
    +++ b/java/docs/com/mxgraph/view/mxEdgeStyle.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxEdgeStyle (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxEdgeStyle (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxEdgeStyle (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxEdgeStyle (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -725,7 +725,7 @@ extends java.lang.Object</pre>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/view/mxEdgeStyle.mxEdgeStyleFunction.html b/java/docs/com/mxgraph/view/mxEdgeStyle.mxEdgeStyleFunction.html
    index 985051255..38d5c3c10 100644
    --- a/java/docs/com/mxgraph/view/mxEdgeStyle.mxEdgeStyleFunction.html
    +++ b/java/docs/com/mxgraph/view/mxEdgeStyle.mxEdgeStyleFunction.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxEdgeStyle.mxEdgeStyleFunction (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxEdgeStyle.mxEdgeStyleFunction (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxEdgeStyle.mxEdgeStyleFunction (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxEdgeStyle.mxEdgeStyleFunction (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -239,7 +239,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/view/mxGraph.html b/java/docs/com/mxgraph/view/mxGraph.html
    index 7dedf3b77..e554f73dc 100644
    --- a/java/docs/com/mxgraph/view/mxGraph.html
    +++ b/java/docs/com/mxgraph/view/mxGraph.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxGraph (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxGraph (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxGraph (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxGraph (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -3679,7 +3679,7 @@ extends <a href="../util/mxEventSource.html" title="class in com.mxgraph.util">m
     <h4>VERSION</h4>
     <pre>public static final&nbsp;java.lang.String VERSION</pre>
     <div class="block">Holds the version number of this release. Current version
    - is 4.0.3.</div>
    + is 4.0.4.</div>
     <dl>
     <dt><span class="seeLabel">See Also:</span></dt>
     <dd><a href="../../../constant-values.html#com.mxgraph.view.mxGraph.VERSION">Constant Field Values</a></dd>
    @@ -9892,7 +9892,7 @@ extends <a href="../util/mxEventSource.html" title="class in com.mxgraph.util">m
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/view/mxGraph.mxICellVisitor.html b/java/docs/com/mxgraph/view/mxGraph.mxICellVisitor.html
    index 626d83ef1..708fb2bcf 100644
    --- a/java/docs/com/mxgraph/view/mxGraph.mxICellVisitor.html
    +++ b/java/docs/com/mxgraph/view/mxGraph.mxICellVisitor.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxGraph.mxICellVisitor (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxGraph.mxICellVisitor (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxGraph.mxICellVisitor (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxGraph.mxICellVisitor (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -218,7 +218,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/view/mxGraphSelectionModel.html b/java/docs/com/mxgraph/view/mxGraphSelectionModel.html
    index cd427b030..cea31326d 100644
    --- a/java/docs/com/mxgraph/view/mxGraphSelectionModel.html
    +++ b/java/docs/com/mxgraph/view/mxGraphSelectionModel.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxGraphSelectionModel (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxGraphSelectionModel (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxGraphSelectionModel (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxGraphSelectionModel (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -723,7 +723,7 @@ extends <a href="../util/mxEventSource.html" title="class in com.mxgraph.util">m
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/view/mxGraphSelectionModel.mxSelectionChange.html b/java/docs/com/mxgraph/view/mxGraphSelectionModel.mxSelectionChange.html
    index 719933a77..7e02804b0 100644
    --- a/java/docs/com/mxgraph/view/mxGraphSelectionModel.mxSelectionChange.html
    +++ b/java/docs/com/mxgraph/view/mxGraphSelectionModel.mxSelectionChange.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxGraphSelectionModel.mxSelectionChange (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxGraphSelectionModel.mxSelectionChange (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxGraphSelectionModel.mxSelectionChange (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxGraphSelectionModel.mxSelectionChange (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -360,7 +360,7 @@ implements <a href="../util/mxUndoableEdit.mxUndoableChange.html" title="interfa
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/view/mxGraphView.html b/java/docs/com/mxgraph/view/mxGraphView.html
    index 785c78496..4c5eaf814 100644
    --- a/java/docs/com/mxgraph/view/mxGraphView.html
    +++ b/java/docs/com/mxgraph/view/mxGraphView.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxGraphView (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxGraphView (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxGraphView (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxGraphView (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -1836,7 +1836,7 @@ extends <a href="../util/mxEventSource.html" title="class in com.mxgraph.util">m
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/view/mxGraphView.mxCurrentRootChange.html b/java/docs/com/mxgraph/view/mxGraphView.mxCurrentRootChange.html
    index 94b281d20..23ced893c 100644
    --- a/java/docs/com/mxgraph/view/mxGraphView.mxCurrentRootChange.html
    +++ b/java/docs/com/mxgraph/view/mxGraphView.mxCurrentRootChange.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxGraphView.mxCurrentRootChange (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxGraphView.mxCurrentRootChange (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxGraphView.mxCurrentRootChange (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxGraphView.mxCurrentRootChange (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -437,7 +437,7 @@ implements <a href="../util/mxUndoableEdit.mxUndoableChange.html" title="interfa
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/view/mxLayoutManager.html b/java/docs/com/mxgraph/view/mxLayoutManager.html
    index 3d0b7be74..57879a6e4 100644
    --- a/java/docs/com/mxgraph/view/mxLayoutManager.html
    +++ b/java/docs/com/mxgraph/view/mxLayoutManager.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxLayoutManager (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxLayoutManager (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxLayoutManager (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxLayoutManager (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -644,7 +644,7 @@ extends <a href="../util/mxEventSource.html" title="class in com.mxgraph.util">m
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/view/mxMultiplicity.html b/java/docs/com/mxgraph/view/mxMultiplicity.html
    index 090813602..3bb9b51d4 100644
    --- a/java/docs/com/mxgraph/view/mxMultiplicity.html
    +++ b/java/docs/com/mxgraph/view/mxMultiplicity.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxMultiplicity (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxMultiplicity (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxMultiplicity (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxMultiplicity (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -652,7 +652,7 @@ extends java.lang.Object</pre>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/view/mxPerimeter.html b/java/docs/com/mxgraph/view/mxPerimeter.html
    index ed5514ea3..4ba257db2 100644
    --- a/java/docs/com/mxgraph/view/mxPerimeter.html
    +++ b/java/docs/com/mxgraph/view/mxPerimeter.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxPerimeter (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxPerimeter (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxPerimeter (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxPerimeter (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -369,7 +369,7 @@ extends java.lang.Object</pre>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/view/mxPerimeter.mxPerimeterFunction.html b/java/docs/com/mxgraph/view/mxPerimeter.mxPerimeterFunction.html
    index 2eefc554d..50606b466 100644
    --- a/java/docs/com/mxgraph/view/mxPerimeter.mxPerimeterFunction.html
    +++ b/java/docs/com/mxgraph/view/mxPerimeter.mxPerimeterFunction.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxPerimeter.mxPerimeterFunction (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxPerimeter.mxPerimeterFunction (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxPerimeter.mxPerimeterFunction (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxPerimeter.mxPerimeterFunction (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -235,7 +235,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/view/mxStyleRegistry.html b/java/docs/com/mxgraph/view/mxStyleRegistry.html
    index dea18a4b9..285e46c3d 100644
    --- a/java/docs/com/mxgraph/view/mxStyleRegistry.html
    +++ b/java/docs/com/mxgraph/view/mxStyleRegistry.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxStyleRegistry (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxStyleRegistry (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxStyleRegistry (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxStyleRegistry (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -349,7 +349,7 @@ extends java.lang.Object</pre>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/view/mxStylesheet.html b/java/docs/com/mxgraph/view/mxStylesheet.html
    index 71ad5f15e..eca949b7e 100644
    --- a/java/docs/com/mxgraph/view/mxStylesheet.html
    +++ b/java/docs/com/mxgraph/view/mxStylesheet.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxStylesheet (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxStylesheet (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxStylesheet (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxStylesheet (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -540,7 +540,7 @@ extends java.lang.Object</pre>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/view/mxSwimlaneManager.html b/java/docs/com/mxgraph/view/mxSwimlaneManager.html
    index b2767edc8..b0417109f 100644
    --- a/java/docs/com/mxgraph/view/mxSwimlaneManager.html
    +++ b/java/docs/com/mxgraph/view/mxSwimlaneManager.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxSwimlaneManager (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxSwimlaneManager (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxSwimlaneManager (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxSwimlaneManager (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -748,7 +748,7 @@ extends <a href="../util/mxEventSource.html" title="class in com.mxgraph.util">m
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/view/mxTemporaryCellStates.html b/java/docs/com/mxgraph/view/mxTemporaryCellStates.html
    index 2bd400234..7d48844ee 100644
    --- a/java/docs/com/mxgraph/view/mxTemporaryCellStates.html
    +++ b/java/docs/com/mxgraph/view/mxTemporaryCellStates.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxTemporaryCellStates (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxTemporaryCellStates (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="mxTemporaryCellStates (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="mxTemporaryCellStates (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -61,7 +61,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -391,7 +391,7 @@ extends java.lang.Object</pre>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/view/package-summary.html b/java/docs/com/mxgraph/view/package-summary.html
    index aed338ab0..22afa97a1 100644
    --- a/java/docs/com/mxgraph/view/package-summary.html
    +++ b/java/docs/com/mxgraph/view/package-summary.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>com.mxgraph.view (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>com.mxgraph.view (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="com.mxgraph.view (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="com.mxgraph.view (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -262,7 +262,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/view/package-tree.html b/java/docs/com/mxgraph/view/package-tree.html
    index 0a1ec0fa9..5814c76db 100644
    --- a/java/docs/com/mxgraph/view/package-tree.html
    +++ b/java/docs/com/mxgraph/view/package-tree.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>com.mxgraph.view Class Hierarchy (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>com.mxgraph.view Class Hierarchy (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="com.mxgraph.view Class Hierarchy (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="com.mxgraph.view Class Hierarchy (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -169,7 +169,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/com/mxgraph/view/package-use.html b/java/docs/com/mxgraph/view/package-use.html
    index db47220bb..871e634ce 100644
    --- a/java/docs/com/mxgraph/view/package-use.html
    +++ b/java/docs/com/mxgraph/view/package-use.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Uses of Package com.mxgraph.view (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Uses of Package com.mxgraph.view (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="../../../script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Uses of Package com.mxgraph.view (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Uses of Package com.mxgraph.view (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -684,7 +684,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="../../../index-all.html">Index</a></li>
     <li><a href="../../../help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/constant-values.html b/java/docs/constant-values.html
    index b912115fa..71ed5cf65 100644
    --- a/java/docs/constant-values.html
    +++ b/java/docs/constant-values.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Constant Field Values (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Constant Field Values (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Constant Field Values (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Constant Field Values (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="index-all.html">Index</a></li>
     <li><a href="help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -1215,7 +1215,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <!--   -->
     </a><code>public&nbsp;static&nbsp;final&nbsp;java.lang.String</code></td>
     <th class="colSecond" scope="row"><code><a href="com/mxgraph/view/mxGraph.html#VERSION">VERSION</a></code></th>
    -<td class="colLast"><code>"4.0.3"</code></td>
    +<td class="colLast"><code>"4.0.4"</code></td>
     </tr>
     </tbody>
     </table>
    @@ -1244,7 +1244,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="index-all.html">Index</a></li>
     <li><a href="help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/deprecated-list.html b/java/docs/deprecated-list.html
    index ec406c523..0227437b5 100644
    --- a/java/docs/deprecated-list.html
    +++ b/java/docs/deprecated-list.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Deprecated List (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Deprecated List (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Deprecated List (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Deprecated List (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="index-all.html">Index</a></li>
     <li><a href="help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -224,7 +224,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="index-all.html">Index</a></li>
     <li><a href="help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/help-doc.html b/java/docs/help-doc.html
    index d2263bca1..1f917b3cd 100644
    --- a/java/docs/help-doc.html
    +++ b/java/docs/help-doc.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>API Help (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>API Help (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="API Help (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="API Help (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="index-all.html">Index</a></li>
     <li class="navBarCell1Rev">Help</li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -252,7 +252,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="index-all.html">Index</a></li>
     <li class="navBarCell1Rev">Help</li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/index-all.html b/java/docs/index-all.html
    index b0439cd8d..e05176de3 100644
    --- a/java/docs/index-all.html
    +++ b/java/docs/index-all.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Index (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Index (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Index (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Index (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li class="navBarCell1Rev">Index</li>
     <li><a href="help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -16446,7 +16446,7 @@ the order they are declared.</div>
     <li class="navBarCell1Rev">Index</li>
     <li><a href="help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/index.html b/java/docs/index.html
    index c245fb2d8..4e050cc7d 100644
    --- a/java/docs/index.html
    +++ b/java/docs/index.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Overview (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Overview (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Overview (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Overview (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="index-all.html">Index</a></li>
     <li><a href="help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -95,7 +95,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     </nav>
     </header>
     <div class="header">
    -<h1 class="title">mxGraph 4.0.3 API Specification</h1>
    +<h1 class="title">mxGraph 4.0.4 API Specification</h1>
     </div>
     <main role="main">
     <div class="contentContainer">
    @@ -253,7 +253,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="index-all.html">Index</a></li>
     <li><a href="help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/overview-summary.html b/java/docs/overview-summary.html
    index c94196272..b854b6f05 100644
    --- a/java/docs/overview-summary.html
    +++ b/java/docs/overview-summary.html
    @@ -2,8 +2,8 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>mxGraph 4.0.3 API Specification</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>mxGraph 4.0.4 API Specification</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
     <script type="text/javascript">window.location.replace('index.html')</script>
     <noscript>
    diff --git a/java/docs/overview-tree.html b/java/docs/overview-tree.html
    index 6a0c7e9b5..c034051ed 100644
    --- a/java/docs/overview-tree.html
    +++ b/java/docs/overview-tree.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Class Hierarchy (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Class Hierarchy (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Class Hierarchy (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Class Hierarchy (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="index-all.html">Index</a></li>
     <li><a href="help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -576,7 +576,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="index-all.html">Index</a></li>
     <li><a href="help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/docs/serialized-form.html b/java/docs/serialized-form.html
    index a6fb1a1d0..af7f9ac6a 100644
    --- a/java/docs/serialized-form.html
    +++ b/java/docs/serialized-form.html
    @@ -2,10 +2,10 @@
     <!-- NewPage -->
     <html lang="en">
     <head>
    -<!-- Generated by javadoc (11.0.3) on Fri Jul 26 16:05:09 UTC 2019 -->
    -<title>Serialized Form (mxGraph 4.0.3 API Specification)</title>
    +<!-- Generated by javadoc (11.0.4) on Tue Aug 20 16:49:48 UTC 2019 -->
    +<title>Serialized Form (mxGraph 4.0.4 API Specification)</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    -<meta name="dc.created" content="2019-07-26">
    +<meta name="dc.created" content="2019-08-20">
     <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
     <link rel="stylesheet" type="text/css" href="jquery/jquery-ui.css" title="Style">
     <script type="text/javascript" src="script.js"></script>
    @@ -22,7 +22,7 @@
     <script type="text/javascript"><!--
         try {
             if (location.href.indexOf('is-external=true') == -1) {
    -            parent.document.title="Serialized Form (mxGraph 4.0.3 API Specification)";
    +            parent.document.title="Serialized Form (mxGraph 4.0.4 API Specification)";
             }
         }
         catch(err) {
    @@ -55,7 +55,7 @@ loadScripts(document, 'script');</script>
     <li><a href="index-all.html">Index</a></li>
     <li><a href="help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_top">
    @@ -1462,7 +1462,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
     <li><a href="index-all.html">Index</a></li>
     <li><a href="help-doc.html">Help</a></li>
     </ul>
    -<div class="aboutLanguage"><p><b>mxGraph 4.0.3</b></p></div>
    +<div class="aboutLanguage"><p><b>mxGraph 4.0.4</b></p></div>
     </div>
     <div class="subNav">
     <ul class="navList" id="allclasses_navbar_bottom">
    diff --git a/java/lib/mxgraph-all.jar b/java/lib/mxgraph-all.jar
    index 9938a1b30..6c10cde1f 100644
    Binary files a/java/lib/mxgraph-all.jar and b/java/lib/mxgraph-all.jar differ
    diff --git a/java/lib/mxgraph-core.jar b/java/lib/mxgraph-core.jar
    index 098663d41..92cfde129 100644
    Binary files a/java/lib/mxgraph-core.jar and b/java/lib/mxgraph-core.jar differ
    diff --git a/java/lib/mxgraph-swing.jar b/java/lib/mxgraph-swing.jar
    index a919f8875..2406e3298 100644
    Binary files a/java/lib/mxgraph-swing.jar and b/java/lib/mxgraph-swing.jar differ
    diff --git a/java/src/com/mxgraph/view/mxGraph.java b/java/src/com/mxgraph/view/mxGraph.java
    index d2e161bb4..e6d903732 100644
    --- a/java/src/com/mxgraph/view/mxGraph.java
    +++ b/java/src/com/mxgraph/view/mxGraph.java
    @@ -198,9 +198,9 @@ public class mxGraph extends mxEventSource
     
     	/**
     	 * Holds the version number of this release. Current version
    -	 * is 4.0.3.
    +	 * is 4.0.4.
     	 */
    -	public static final String VERSION = "4.0.3";
    +	public static final String VERSION = "4.0.4";
     
     	/**
     	 * 
    diff --git a/javascript/examples/grapheditor/www/js/Actions.js b/javascript/examples/grapheditor/www/js/Actions.js
    index 0c8930a14..6bb060703 100644
    --- a/javascript/examples/grapheditor/www/js/Actions.js
    +++ b/javascript/examples/grapheditor/www/js/Actions.js
    @@ -65,7 +65,7 @@ Actions.prototype.init = function()
     	}).isEnabled = isGraphEnabled;
     	this.addAction('save', function() { ui.saveFile(false); }, null, null, Editor.ctrlKey + '+S').isEnabled = isGraphEnabled;
     	this.addAction('saveAs...', function() { ui.saveFile(true); }, null, null, Editor.ctrlKey + '+Shift+S').isEnabled = isGraphEnabled;
    -	this.addAction('export...', function() { ui.showDialog(new ExportDialog(ui).container, 300, 230, true, true); });
    +	this.addAction('export...', function() { ui.showDialog(new ExportDialog(ui).container, 300, 296, true, true); });
     	this.addAction('editDiagram...', function()
     	{
     		var dlg = new EditDiagramDialog(ui);
    diff --git a/javascript/examples/grapheditor/www/js/Dialogs.js b/javascript/examples/grapheditor/www/js/Dialogs.js
    index 5fdc583f3..7ab80b9c5 100644
    --- a/javascript/examples/grapheditor/www/js/Dialogs.js
    +++ b/javascript/examples/grapheditor/www/js/Dialogs.js
    @@ -488,6 +488,7 @@ var FilenameDialog = function(editorUi, filename, buttonText, fn, label, validat
     	};
     
     	td = document.createElement('td');
    +	td.style.whiteSpace = 'nowrap';
     	td.appendChild(nameInput);
     	row.appendChild(td);
     	
    @@ -1077,6 +1078,97 @@ var ExportDialog = function(editorUi)
     	
     	row = document.createElement('tr');
     	
    +	td = document.createElement('td');
    +	td.style.fontSize = '10pt';
    +	mxUtils.write(td, mxResources.get('dpi') + ':');
    +	
    +	row.appendChild(td);
    +	
    +	var dpiSelect = document.createElement('select');
    +	dpiSelect.style.width = '180px';
    +
    +	var dpi100Option = document.createElement('option');
    +	dpi100Option.setAttribute('value', '100');
    +	mxUtils.write(dpi100Option, '100dpi');
    +	dpiSelect.appendChild(dpi100Option);
    +
    +	var dpi200Option = document.createElement('option');
    +	dpi200Option.setAttribute('value', '200');
    +	mxUtils.write(dpi200Option, '200dpi');
    +	dpiSelect.appendChild(dpi200Option);
    +	
    +	var dpi300Option = document.createElement('option');
    +	dpi300Option.setAttribute('value', '300');
    +	mxUtils.write(dpi300Option, '300dpi');
    +	dpiSelect.appendChild(dpi300Option);
    +	
    +	var dpi400Option = document.createElement('option');
    +	dpi400Option.setAttribute('value', '400');
    +	mxUtils.write(dpi400Option, '400dpi');
    +	dpiSelect.appendChild(dpi400Option);
    +	
    +	var dpiCustOption = document.createElement('option');
    +	dpiCustOption.setAttribute('value', 'custom');
    +	mxUtils.write(dpiCustOption, mxResources.get('custom'));
    +	dpiSelect.appendChild(dpiCustOption);
    +
    +	var customDpi = document.createElement('input');
    +	customDpi.style.width = '180px';
    +	customDpi.style.display = 'none';
    +	customDpi.setAttribute('value', '100');
    +	customDpi.setAttribute('type', 'number');
    +	customDpi.setAttribute('min', '50');
    +	customDpi.setAttribute('step', '50');
    +	
    +	var zoomUserChanged = false;
    +	
    +	mxEvent.addListener(dpiSelect, 'change', function()
    +	{
    +		if (this.value == 'custom')
    +		{
    +			this.style.display = 'none';
    +			customDpi.style.display = '';
    +			customDpi.focus();
    +		}
    +		else
    +		{
    +			customDpi.value = this.value;
    +			
    +			if (!zoomUserChanged) 
    +			{
    +				zoomInput.value = this.value;
    +			}
    +		}
    +	});
    +	
    +	mxEvent.addListener(customDpi, 'change', function()
    +	{
    +		var dpi = parseInt(customDpi.value);
    +		
    +		if (isNaN(dpi) || dpi <= 0)
    +		{
    +			customDpi.style.backgroundColor = 'red';
    +		}
    +		else
    +		{
    +			customDpi.style.backgroundColor = '';
    +
    +			if (!zoomUserChanged) 
    +			{
    +				zoomInput.value = dpi;
    +			}
    +		}	
    +	});
    +	
    +	td = document.createElement('td');
    +	td.appendChild(dpiSelect);
    +	td.appendChild(customDpi);
    +	row.appendChild(td);
    +
    +	tbody.appendChild(row);
    +	
    +	row = document.createElement('tr');
    +	
     	td = document.createElement('td');
     	td.style.fontSize = '10pt';
     	mxUtils.write(td, mxResources.get('background') + ':');
    @@ -1153,6 +1245,17 @@ var ExportDialog = function(editorUi)
     		{
     			transparentCheckbox.setAttribute('disabled', 'disabled');
     		}
    +		
    +		if (imageFormatSelect.value === 'png')
    +		{
    +			dpiSelect.removeAttribute('disabled');
    +			customDpi.removeAttribute('disabled');
    +		}
    +		else
    +		{
    +			dpiSelect.setAttribute('disabled', 'disabled');
    +			customDpi.setAttribute('disabled', 'disabled');
    +		}
     	};
     	
     	mxEvent.addListener(imageFormatSelect, 'change', formatChanged);
    @@ -1181,6 +1284,7 @@ var ExportDialog = function(editorUi)
     
     	mxEvent.addListener(zoomInput, 'change', function()
     	{
    +		zoomUserChanged = true;
     		var s = Math.max(0, parseFloat(zoomInput.value) || 100) / 100;
     		zoomInput.value = parseFloat((s * 100).toFixed(2));
     		
    @@ -1256,6 +1360,7 @@ var ExportDialog = function(editorUi)
     	    	var s = Math.max(0, parseFloat(zoomInput.value) || 100) / 100;
     			var b = Math.max(0, parseInt(borderInput.value));
     			var bg = graph.background;
    +			var dpi = Math.max(1, parseInt(customDpi.value));
     			
     			if ((format == 'svg' || format == 'png') && transparentCheckbox.checked)
     			{
    @@ -1267,7 +1372,7 @@ var ExportDialog = function(editorUi)
     			}
     			
     			ExportDialog.lastBorderValue = b;
    -			ExportDialog.exportFile(editorUi, name, format, bg, s, b);
    +			ExportDialog.exportFile(editorUi, name, format, bg, s, b, dpi);
     		}
     	}));
     	saveBtn.className = 'geBtn gePrimaryBtn';
    @@ -1316,7 +1421,7 @@ ExportDialog.showXmlOption = true;
      * parameter and value to be used in the request in the form
      * key=value, where value should be URL encoded.
      */
    -ExportDialog.exportFile = function(editorUi, name, format, bg, s, b)
    +ExportDialog.exportFile = function(editorUi, name, format, bg, s, b, dpi)
     {
     	var graph = editorUi.editor.graph;
     	
    @@ -1358,7 +1463,8 @@ ExportDialog.exportFile = function(editorUi, name, format, bg, s, b)
     			var req = new mxXmlRequest(EXPORT_URL, 'format=' + format +
     				'&filename=' + encodeURIComponent(name) +
     				'&bg=' + ((bg != null) ? bg : 'none') +
    -				'&w=' + w + '&h=' + h + '&' + param);
    +				'&w=' + w + '&h=' + h + '&' + param +
    +				'&dpi=' + dpi);
     			req.simulate(document, '_blank');
     		}
     		else
    diff --git a/javascript/examples/grapheditor/www/js/Format.js b/javascript/examples/grapheditor/www/js/Format.js
    index 2d84484fa..239c84d45 100644
    --- a/javascript/examples/grapheditor/www/js/Format.js
    +++ b/javascript/examples/grapheditor/www/js/Format.js
    @@ -725,7 +725,7 @@ BaseFormatPanel.prototype.createTitle = function(title)
     /**
      * 
      */
    -BaseFormatPanel.prototype.createStepper = function(input, update, step, height, disableFocus, defaultValue)
    +BaseFormatPanel.prototype.createStepper = function(input, update, step, height, disableFocus, defaultValue, isFloat)
     {
     	step = (step != null) ? step : 1;
     	height = (height != null) ? height : 8;
    @@ -765,7 +765,7 @@ BaseFormatPanel.prototype.createStepper = function(input, update, step, height,
     			input.value = defaultValue || '2';
     		}
     		
    -		var val = parseInt(input.value);
    +		var val = isFloat? parseFloat(input.value) : parseInt(input.value);
     		
     		if (!isNaN(val))
     		{
    @@ -787,7 +787,7 @@ BaseFormatPanel.prototype.createStepper = function(input, update, step, height,
     			input.value = defaultValue || '0';
     		}
     		
    -		var val = parseInt(input.value);
    +		var val = isFloat? parseFloat(input.value) : parseInt(input.value);
     		
     		if (!isNaN(val))
     		{
    @@ -1264,7 +1264,7 @@ BaseFormatPanel.prototype.addArrow = function(elt, height)
     /**
      * 
      */
    -BaseFormatPanel.prototype.addUnitInput = function(container, unit, right, width, update, step, marginTop, disableFocus)
    +BaseFormatPanel.prototype.addUnitInput = function(container, unit, right, width, update, step, marginTop, disableFocus, isFloat)
     {
     	marginTop = (marginTop != null) ? marginTop : 0;
     	
    @@ -1276,7 +1276,7 @@ BaseFormatPanel.prototype.addUnitInput = function(container, unit, right, width,
     	input.style.width = width + 'px';
     	container.appendChild(input);
     	
    -	var stepper = this.createStepper(input, update, step, null, disableFocus);
    +	var stepper = this.createStepper(input, update, step, null, disableFocus, null, isFloat);
     	stepper.style.marginTop = (marginTop - 2) + 'px';
     	stepper.style.right = right + 'px';
     	container.appendChild(stepper);
    @@ -1909,11 +1909,67 @@ ArrangePanel.prototype.addAngle = function(div)
     	return div;
     };
     
    +BaseFormatPanel.prototype.getUnit = function()
    +{
    +	var unit = this.editorUi.editor.graph.view.unit;
    +	
    +	switch(unit)
    +	{
    +		case mxConstants.POINTS:
    +			return 'pt';
    +		case mxConstants.INCHES:
    +			return '"';
    +		case mxConstants.MILLIMETERS:
    +			return 'mm';
    +	}
    +};
    +
    +BaseFormatPanel.prototype.inUnit = function(pixels)
    +{
    +	return this.editorUi.editor.graph.view.formatUnitText(pixels);
    +};
    +
    +BaseFormatPanel.prototype.fromUnit = function(value)
    +{
    +	var unit = this.editorUi.editor.graph.view.unit;
    +	
    +	switch(unit)
    +	{
    +		case mxConstants.POINTS:
    +			return value;
    +		case mxConstants.INCHES:
    +			return value * mxConstants.PIXELS_PER_INCH;
    +		case mxConstants.MILLIMETERS:
    +			return value * mxConstants.PIXELS_PER_MM;
    +	}
    +};
    +
    +BaseFormatPanel.prototype.isFloatUnit = function()
    +{
    +	return this.editorUi.editor.graph.view.unit != mxConstants.POINTS;
    +};
    +
    +BaseFormatPanel.prototype.getUnitStep = function()
    +{
    +	var unit = this.editorUi.editor.graph.view.unit;
    +	
    +	switch(unit)
    +	{
    +		case mxConstants.POINTS:
    +			return 1;
    +		case mxConstants.INCHES:
    +			return 0.1;
    +		case mxConstants.MILLIMETERS:
    +			return 0.5;
    +	}
    +};
    +
     /**
      * 
      */
     ArrangePanel.prototype.addGeometry = function(container)
     {
    +	var panel = this;
     	var ui = this.editorUi;
     	var graph = ui.editor.graph;
     	var rect = this.format.getSelectionState();
    @@ -1930,14 +1986,14 @@ ArrangePanel.prototype.addGeometry = function(container)
     	div.appendChild(span);
     
     	var widthUpdate, heightUpdate, leftUpdate, topUpdate;
    -	var width = this.addUnitInput(div, 'pt', 84, 44, function()
    +	var width = this.addUnitInput(div, this.getUnit(), 84, 44, function()
     	{
     		widthUpdate.apply(this, arguments);
    -	});
    -	var height = this.addUnitInput(div, 'pt', 20, 44, function()
    +	}, this.getUnitStep(), null, null, this.isFloatUnit());
    +	var height = this.addUnitInput(div, this.getUnit(), 20, 44, function()
     	{
     		heightUpdate.apply(this, arguments);
    -	});
    +	}, this.getUnitStep(), null, null, this.isFloatUnit());
     	
     	var autosizeBtn = document.createElement('div');
     	autosizeBtn.className = 'geSprite geSprite-fit';
    @@ -1988,7 +2044,7 @@ ArrangePanel.prototype.addGeometry = function(container)
     	{
     		if (geo.width > 0)
     		{
    -			var value = Math.max(1, value);
    +			var value = Math.max(1, panel.fromUnit(value));
     			
     			if (constrainCheckbox.checked)
     			{
    @@ -2002,7 +2058,7 @@ ArrangePanel.prototype.addGeometry = function(container)
     	{
     		if (geo.height > 0)
     		{
    -			var value = Math.max(1, value);
    +			var value = Math.max(1, panel.fromUnit(value));
     			
     			if (constrainCheckbox.checked)
     			{
    @@ -2026,14 +2082,14 @@ ArrangePanel.prototype.addGeometry = function(container)
     	mxUtils.write(span, mxResources.get('position'));
     	div2.appendChild(span);
     	
    -	var left = this.addUnitInput(div2, 'pt', 84, 44, function()
    +	var left = this.addUnitInput(div2, this.getUnit(), 84, 44, function()
     	{
     		leftUpdate.apply(this, arguments);
    -	});
    -	var top = this.addUnitInput(div2, 'pt', 20, 44, function()
    +	}, this.getUnitStep(), null, null, this.isFloatUnit());
    +	var top = this.addUnitInput(div2, this.getUnit(), 20, 44, function()
     	{
     		topUpdate.apply(this, arguments);
    -	});
    +	}, this.getUnitStep(), null, null, this.isFloatUnit());
     
     	mxUtils.br(div2);
     	this.addLabel(div2, mxResources.get('left'), 84);
    @@ -2050,12 +2106,12 @@ ArrangePanel.prototype.addGeometry = function(container)
     			
     			if (force || document.activeElement != width)
     			{
    -				width.value = rect.width + ((rect.width == '') ? '' : ' pt');
    +				width.value = this.inUnit(rect.width) + ((rect.width == '') ? '' : ' ' + this.getUnit());
     			}
     			
     			if (force || document.activeElement != height)
     			{
    -				height.value = rect.height + ((rect.height == '') ? '' : ' pt');
    +				height.value = this.inUnit(rect.height) + ((rect.height == '') ? '' : ' ' + this.getUnit());
     			}
     		}
     		else
    @@ -2070,12 +2126,12 @@ ArrangePanel.prototype.addGeometry = function(container)
     			
     			if (force || document.activeElement != left)
     			{
    -				left.value = rect.x  + ((rect.x == '') ? '' : ' pt');
    +				left.value = this.inUnit(rect.x)  + ((rect.x == '') ? '' : ' ' + this.getUnit());
     			}
     			
     			if (force || document.activeElement != top)
     			{
    -				top.value = rect.y + ((rect.y == '') ? '' : ' pt');
    +				top.value = this.inUnit(rect.y) + ((rect.y == '') ? '' : ' ' + this.getUnit());
     			}
     		}
     		else
    @@ -2093,6 +2149,8 @@ ArrangePanel.prototype.addGeometry = function(container)
     	
     	leftUpdate = this.addGeometryHandler(left, function(geo, value)
     	{
    +		value = panel.fromUnit(value);
    +		
     		if (geo.relative)
     		{
     			geo.offset.x = value;
    @@ -2104,6 +2162,8 @@ ArrangePanel.prototype.addGeometry = function(container)
     	});
     	topUpdate = this.addGeometryHandler(top, function(geo, value)
     	{
    +		value = panel.fromUnit(value);
    +		
     		if (geo.relative)
     		{
     			geo.offset.y = value;
    @@ -2125,6 +2185,7 @@ ArrangePanel.prototype.addGeometryHandler = function(input, fn)
     	var ui = this.editorUi;
     	var graph = ui.editor.graph;
     	var initialValue = null;
    +	var panel = this;
     	
     	function update(evt)
     	{
    @@ -2134,7 +2195,7 @@ ArrangePanel.prototype.addGeometryHandler = function(input, fn)
     
     			if (isNaN(value)) 
     			{
    -				input.value = initialValue + ' pt';
    +				input.value = initialValue + ' ' + panel.getUnit();
     			}
     			else if (value != initialValue)
     			{
    @@ -2165,7 +2226,7 @@ ArrangePanel.prototype.addGeometryHandler = function(input, fn)
     				}
     				
     				initialValue = value;
    -				input.value = value + ' pt';
    +				input.value = value + ' ' + panel.getUnit();
     			}
     		}
     		
    @@ -2491,12 +2552,6 @@ TextFormatPanel.prototype.addFont = function(container)
     		var arrow = cssMenu.getElementsByTagName('div')[0];
     		arrow.style.cssFloat = 'right';
     		container.appendChild(cssPanel);
    -		
    -		// Workaround for offset in FF
    -		if (mxClient.IS_FF)
    -		{
    -			cssMenu.getElementsByTagName('div')[0].style.marginTop = '-18px';
    -		}
     	}
     	
     	container.appendChild(stylePanel);
    @@ -2518,12 +2573,6 @@ TextFormatPanel.prototype.addFont = function(container)
     	fontMenu.style.width = '192px';
     	fontMenu.style.height = '15px';
     	
    -	// Workaround for offset in FF
    -	if (mxClient.IS_FF)
    -	{
    -		fontMenu.getElementsByTagName('div')[0].style.marginTop = '-18px';
    -	}
    -	
     	var stylePanel2 = stylePanel.cloneNode(false);
     	stylePanel2.style.marginLeft = '-3px';
     	var fontStyleItems = this.editorUi.toolbar.addItems(['bold', 'italic', 'underline'], stylePanel2, true);
    @@ -2645,6 +2694,7 @@ TextFormatPanel.prototype.addFont = function(container)
     			{
     				document.execCommand('superscript', false, null);
     			}, stylePanel3)]);
    +		sub.style.marginLeft = '9px';
     		
     		var tmp = stylePanel3.cloneNode(false);
     		tmp.style.paddingTop = '4px';
    @@ -3801,29 +3851,34 @@ TextFormatPanel.prototype.addFont = function(container)
     							setSelected(fontStyleItems[1], css.fontStyle == 'italic' ||
     								hasParentOrOnlyChild('I') || hasParentOrOnlyChild('EM'));
     							setSelected(fontStyleItems[2], hasParentOrOnlyChild('U'));
    -							setSelected(full, isEqualOrPrefixed(css.textAlign, 'justify'));
     							setSelected(sup, hasParentOrOnlyChild('SUP'));
     							setSelected(sub, hasParentOrOnlyChild('SUB'));
     							
     							if (!graph.cellEditor.isTableSelected())
     							{
     								var align = graph.cellEditor.align || mxUtils.getValue(ss.style, mxConstants.STYLE_ALIGN, mxConstants.ALIGN_CENTER);
    -								setSelected(left, align == mxConstants.ALIGN_LEFT);
    -								setSelected(center, align == mxConstants.ALIGN_CENTER);
    -								setSelected(right, align == mxConstants.ALIGN_RIGHT);
    -								
    -								setSelected(full, false);
    -								full.style.opacity = 0.2;
    -								full.style.cursor = 'default';
    +
    +								if (isEqualOrPrefixed(css.textAlign, 'justify'))
    +								{
    +									setSelected(full, isEqualOrPrefixed(css.textAlign, 'justify'));
    +									setSelected(left, false);
    +									setSelected(center, false);
    +									setSelected(right, false);
    +								}
    +								else
    +								{
    +									setSelected(full, false);
    +									setSelected(left, align == mxConstants.ALIGN_LEFT);
    +									setSelected(center, align == mxConstants.ALIGN_CENTER);
    +									setSelected(right, align == mxConstants.ALIGN_RIGHT);
    +								}
     							}
     							else
     							{
    +								setSelected(full, isEqualOrPrefixed(css.textAlign, 'justify'));
     								setSelected(left, isEqualOrPrefixed(css.textAlign, 'left'));
     								setSelected(center, isEqualOrPrefixed(css.textAlign, 'center'));
     								setSelected(right, isEqualOrPrefixed(css.textAlign, 'right'));
    -								
    -								full.style.opacity = 1;
    -								full.style.cursor = '';
     							}
     							
     							currentTable = graph.getParentByName(node, 'TABLE', graph.cellEditor.textarea);
    @@ -5458,6 +5513,7 @@ DiagramFormatPanel.prototype.addOptions = function(div)
      */
     DiagramFormatPanel.prototype.addGridOption = function(container)
     {
    +	var fPanel = this;
     	var ui = this.editorUi;
     	var graph = ui.editor.graph;
     	
    @@ -5465,9 +5521,9 @@ DiagramFormatPanel.prototype.addGridOption = function(container)
     	input.style.position = 'absolute';
     	input.style.textAlign = 'right';
     	input.style.width = '38px';
    -	input.value = graph.getGridSize() + ' pt';
    +	input.value = this.inUnit(graph.getGridSize()) + ' ' + this.getUnit(); 
     	
    -	var stepper = this.createStepper(input, update);
    +	var stepper = this.createStepper(input, update, this.getUnitStep(), null, null, null, this.isFloatUnit());
     	input.style.display = (graph.isGridEnabled()) ? '' : 'none';
     	stepper.style.display = input.style.display;
     
    @@ -5488,21 +5544,30 @@ DiagramFormatPanel.prototype.addGridOption = function(container)
     	
     	function update(evt)
     	{
    -		var value = parseInt(input.value);
    -		value = Math.max(1, (isNaN(value)) ? 10 : value);
    +		var value = fPanel.isFloatUnit()? parseFloat(input.value) : parseInt(input.value);
    +		value = fPanel.fromUnit(Math.max(fPanel.inUnit(1), (isNaN(value)) ? fPanel.inUnit(10) : value));
     		
     		if (value != graph.getGridSize())
     		{
     			graph.setGridSize(value)
     		}
     
    -		input.value = value + ' pt';
    +		input.value = fPanel.inUnit(value) + ' ' + fPanel.getUnit();
     		mxEvent.consume(evt);
     	};
     
     	mxEvent.addListener(input, 'blur', update);
     	mxEvent.addListener(input, 'change', update);
     	
    +	var unitChangeListener = function(sender, evt)
    +	{
    +		input.value = fPanel.inUnit(graph.getGridSize()) + ' ' + fPanel.getUnit();
    +		fPanel.format.refresh();
    +	};
    +	
    +	graph.view.addListener('unitChanged', unitChangeListener);
    +	this.listeners.push({destroy: function() { graph.view.removeListener(unitChangeListener); }});
    +	
     	if (mxClient.IS_SVG)
     	{
     		input.style.marginTop = '-2px';
    diff --git a/javascript/examples/grapheditor/www/js/Graph.js b/javascript/examples/grapheditor/www/js/Graph.js
    index 1bf77f6c6..d962bee29 100644
    --- a/javascript/examples/grapheditor/www/js/Graph.js
    +++ b/javascript/examples/grapheditor/www/js/Graph.js
    @@ -55,6 +55,18 @@ if (!Date.now)
     }
     
     // Changes default colors
    +/**
    + * Measurements Units
    + */
    +mxConstants.POINTS = 1;
    +mxConstants.MILLIMETERS = 2;
    +mxConstants.INCHES = 3;
    +/**
    + * This ratio is with page scale 1
    + */
    +mxConstants.PIXELS_PER_MM = 3.937;
    +mxConstants.PIXELS_PER_INCH = 100;
    +
     mxConstants.SHADOW_OPACITY = 0.25;
     mxConstants.SHADOWCOLOR = '#000000';
     mxConstants.VML_SHADOWCOLOR = '#d0d0d0';
    @@ -95,6 +107,19 @@ mxGraphView.prototype.minGridSize = 4;
     // UrlParams is null in embed mode
     mxGraphView.prototype.gridColor = '#e0e0e0';
     
    +//Units
    +mxGraphView.prototype.unit = mxConstants.POINTS;
    +
    +mxGraphView.prototype.setUnit = function(unit) 
    +{
    +	if (this.unit != unit)
    +	{
    +	    this.unit = unit;
    +	    
    +	    this.fireEvent(new mxEventObject('unitChanged', 'unit', unit));
    +	}
    +};
    +
     // Alternative text for unsupported foreignObjects
     mxSvgCanvas2D.prototype.foAltText = '[Not supported by viewer]';
     
    @@ -3928,7 +3953,8 @@ HoverIcons.prototype.getState = function(state)
      */
     HoverIcons.prototype.update = function(state, x, y)
     {
    -	if (!this.graph.connectionArrowsEnabled)
    +	if (!this.graph.connectionArrowsEnabled || (state != null &&
    +		mxUtils.getValue(state.style, 'allowArrows', '1') == '0'))
     	{
     		this.reset();
     	}
    @@ -7714,6 +7740,28 @@ if (typeof mxVertexHandler != 'undefined')
     			return hint;
     		};
     		
    +		/**
    +		 * Format pixels in the given unit
    +		 */
    +		function formatHintText(pixels, unit) 
    +		{
    +		    switch(unit) 
    +		    {
    +		        case mxConstants.POINTS:
    +		            return pixels;
    +		        case mxConstants.MILLIMETERS:
    +		            return (pixels / mxConstants.PIXELS_PER_MM).toFixed(1);
    +		        case mxConstants.INCHES:
    +		            return (pixels / mxConstants.PIXELS_PER_INCH).toFixed(2);
    +		    }
    +		};
    +		
    +		
    +		mxGraphView.prototype.formatUnitText = function(pixels) 
    +		{
    +			return pixels? formatHintText(pixels, this.unit) : pixels;
    +		};
    +		
     		/**
     		 * Updates the hint for the current operation.
     		 */
    @@ -7731,8 +7779,9 @@ if (typeof mxVertexHandler != 'undefined')
     				var s = this.graph.view.scale;
     				var x = this.roundLength((this.bounds.x + this.currentDx) / s - t.x);
     				var y = this.roundLength((this.bounds.y + this.currentDy) / s - t.y);
    +				var unit = this.graph.view.unit;
     				
    -				this.hint.innerHTML = x + ', ' + y;
    +				this.hint.innerHTML = formatHintText(x, unit) + ', ' + formatHintText(y, unit);
     	
     				this.hint.style.left = (this.shape.bounds.x + Math.round((this.shape.bounds.width - this.hint.clientWidth) / 2)) + 'px';
     				this.hint.style.top = (this.shape.bounds.y + this.shape.bounds.height + 12) + 'px';
    @@ -7817,7 +7866,9 @@ if (typeof mxVertexHandler != 'undefined')
     				else
     				{
     					var s = this.state.view.scale;
    -					this.hint.innerHTML = this.roundLength(this.bounds.width / s) + ' x ' + this.roundLength(this.bounds.height / s);
    +					var unit = this.state.view.unit;
    +					this.hint.innerHTML = formatHintText(this.roundLength(this.bounds.width / s), unit) + ' x ' + 
    +											formatHintText(this.roundLength(this.bounds.height / s), unit);
     				}
     				
     				var rot = (this.currentAlpha != null) ? this.currentAlpha : this.state.style[mxConstants.STYLE_ROTATION] || '0';
    @@ -7866,8 +7917,9 @@ if (typeof mxVertexHandler != 'undefined')
     			var s = this.graph.view.scale;
     			var x = this.roundLength(point.x / s - t.x);
     			var y = this.roundLength(point.y / s - t.y);
    +			var unit = this.graph.view.unit;
     			
    -			this.hint.innerHTML = x + ', ' + y;
    +			this.hint.innerHTML = formatHintText(x, unit) + ', ' + formatHintText(y, unit);
     			this.hint.style.visibility = 'visible';
     			
     			if (this.isSource || this.isTarget)
    diff --git a/javascript/examples/grapheditor/www/js/Shapes.js b/javascript/examples/grapheditor/www/js/Shapes.js
    index d73f65070..0e76130c1 100644
    --- a/javascript/examples/grapheditor/www/js/Shapes.js
    +++ b/javascript/examples/grapheditor/www/js/Shapes.js
    @@ -2801,6 +2801,26 @@
     		};
     	});
     	
    +	// Registers and defines the custom marker
    +	mxMarker.addMarker('halfCircle', function(c, shape, type, pe, unitX, unitY, size, source, sw, filled)
    +	{
    +		var nx = unitX * (size + sw + 1);
    +		var ny = unitY * (size + sw + 1);
    +		var pt = pe.clone();
    +		
    +		pe.x -= nx;
    +		pe.y -= ny;
    +
    +		return function()
    +		{
    +			c.begin();
    +			c.moveTo(pt.x - ny, pt.y + nx);
    +			c.quadTo(pe.x - ny, pe.y + nx, pe.x, pe.y);
    +			c.quadTo(pe.x + ny, pe.y - nx, pt.x + ny, pt.y - nx);
    +			c.stroke();
    +		};
    +	});
    +
     	mxMarker.addMarker('async', function(c, shape, type, pe, unitX, unitY, size, source, sw, filled)
     	{
     		// The angle of the forward facing arrow sides against the x axis is
    diff --git a/javascript/examples/grapheditor/www/js/Sidebar.js b/javascript/examples/grapheditor/www/js/Sidebar.js
    index 7fae4e8dc..f21a2388f 100644
    --- a/javascript/examples/grapheditor/www/js/Sidebar.js
    +++ b/javascript/examples/grapheditor/www/js/Sidebar.js
    @@ -314,6 +314,7 @@ Sidebar.prototype.showTooltip = function(elt, cells, w, h, title, showLabel)
     				}
     
     				this.tooltip.style.width = width + 'px';
    +				var w2 = width;
     				
     				// Adds title for entry
     				if (this.tooltipTitles && title != null && title.length > 0)
    @@ -324,8 +325,6 @@ Sidebar.prototype.showTooltip = function(elt, cells, w, h, title, showLabel)
     						this.tooltipTitle.style.borderTop = '1px solid gray';
     						this.tooltipTitle.style.textAlign = 'center';
     						this.tooltipTitle.style.width = '100%';
    -						
    -						// Oversize titles are cut-off currently. Should make tooltip wider later.
     						this.tooltipTitle.style.overflow = 'hidden';
     						this.tooltipTitle.style.position = 'absolute';
     						this.tooltipTitle.style.paddingTop = '6px';
    @@ -341,6 +340,8 @@ Sidebar.prototype.showTooltip = function(elt, cells, w, h, title, showLabel)
     					this.tooltipTitle.style.display = '';
     					mxUtils.write(this.tooltipTitle, title);
     					
    +					// Allows for wider labels
    +					w2 = Math.min(this.maxTooltipWidth, Math.max(width, this.tooltipTitle.scrollWidth + 4));
     					var ddy = this.tooltipTitle.offsetHeight + 10;
     					height += ddy;
     					
    @@ -358,9 +359,15 @@ Sidebar.prototype.showTooltip = function(elt, cells, w, h, title, showLabel)
     				{
     					this.tooltipTitle.style.display = 'none';
     				}
    +
    +				// Updates width if label is wider
    +				if (w2 > width)
    +				{
    +					this.tooltip.style.width = w2 + 'px';
    +				}
     				
     				this.tooltip.style.height = height + 'px';
    -				var x0 = -Math.round(bounds.x - this.tooltipBorder);
    +				var x0 = -Math.round(bounds.x - this.tooltipBorder) + (w2 - width) / 2;
     				var y0 = -Math.round(bounds.y - this.tooltipBorder);
     				
     				var b = document.body;
    @@ -1329,8 +1336,13 @@ Sidebar.prototype.addUmlPalette = function(expand)
     			
     			return sb.createVertexTemplateFromCells([cell.clone()], cell.geometry.width, cell.geometry.height, 'Interface 2');
     		}),
    -		this.createVertexTemplateEntry('shape=providedRequiredInterface;html=1;verticalLabelPosition=bottom;', 20, 20, '', 'Provided/Required Interface', null, null, dt + 'provided required interface'),
    -		this.createVertexTemplateEntry('shape=requiredInterface;html=1;verticalLabelPosition=bottom;', 10, 20, '', 'Required Interface', null, null, dt + 'required interface'),
    +		this.createVertexTemplateEntry('shape=providedRequiredInterface;html=1;verticalLabelPosition=bottom;', 20, 20, '', 'Provided/Required Interface', null, null, 'uml provided required interface lollipop'),
    +		this.createVertexTemplateEntry('shape=requiredInterface;html=1;verticalLabelPosition=bottom;', 10, 20, '', 'Required Interface', null, null, 'uml required interface lollipop'),
    +		this.addEntry('uml lollipop provided required interface', function()
    +		{
    +			return sb.createVertexTemplateFromData('zVTBrptADPyavVYEkt4b0uQd3pMq5dD2uAUD27dgZJwE8vX1spsQlETtpVWRIjFjex3PmFVJWvc70m31hjlYlXxWSUqI7N/qPgVrVRyZXCUbFceR/FS8fRJdjNGo1QQN/0lB7AuO2h7AM57oeLCBIDw0Obj8SCVrJK6wxEbbV8RWyIWQP4F52Juzq9AHRqEqrm2IQpN/IsKTwAYb8MzWWBuO9B0hL2E2BGsqIQyxvJ9rzApD7QBrYBokhcBqNsf5UbrzsLzmXUu/oJET42jwGat5QYcHyiDkTDLKy03TiRrFfSx08m+FrrQtUkOZvZdbFKThmwMfVhf4fQ43/W3uZriiPPT+KKhjwnf4anKuQv//wsg+NPJ7/9d9Xf7eVykwbeeMOFWGYd/qzEVO8tHP/Suw4a2ujXV/+gXsEdhkOgSC8os44BQt0tggicZHeG1N2QiXibhAV48epRayEDd8MT7Ct06TUaXVWq027tCuhcx5VZjebeeaoDNn/WMcb/p+j0AM/dNr6InLl4Lgzylsk6OCgRWYsuI592gNZh5OhgmcblPv7+1l+ws=',
    +				40, 10, 'Lollipop Notation');
    +		}),
     		this.createVertexTemplateEntry('shape=umlBoundary;whiteSpace=wrap;html=1;', 100, 80, 'Boundary Object', 'Boundary Object', null, null, 'uml boundary object'),
     		this.createVertexTemplateEntry('ellipse;shape=umlEntity;whiteSpace=wrap;html=1;', 80, 80, 'Entity Object', 'Entity Object', null, null, 'uml entity object'),
     		this.createVertexTemplateEntry('ellipse;shape=umlControl;whiteSpace=wrap;html=1;', 70, 80, 'Control Object', 'Control Object', null, null, 'uml control object'),
    diff --git a/javascript/examples/grapheditor/www/resources/grapheditor.txt b/javascript/examples/grapheditor/www/resources/grapheditor.txt
    index d463301d7..f61eb4036 100644
    --- a/javascript/examples/grapheditor/www/resources/grapheditor.txt
    +++ b/javascript/examples/grapheditor/www/resources/grapheditor.txt
    @@ -87,6 +87,7 @@ distribute=Distribute
     divider=Divider
     documentProperties=Document Properties
     dotted=Dotted
    +dpi=DPI
     drawing=Drawing{1}
     drawingEmpty=Drawing is empty
     drawingTooLarge=Drawing is too large
    diff --git a/javascript/examples/grapheditor/www/resources/grapheditor_de.txt b/javascript/examples/grapheditor/www/resources/grapheditor_de.txt
    index c11cdf3bd..23f0dcd12 100644
    --- a/javascript/examples/grapheditor/www/resources/grapheditor_de.txt
    +++ b/javascript/examples/grapheditor/www/resources/grapheditor_de.txt
    @@ -85,8 +85,9 @@ diamondThin=Diamant (Schmal)
     direction=Richtung
     distribute=Verteilen
     divider=Treelinie
    -dotted=Punktiert
     documentProperties=Dokumenteigenschaften
    +dotted=Punktiert
    +dpi=DPI
     drawing=Zeichnung{1}
     drawingEmpty=Zeichnung ist leer
     drawingTooLarge=Zeichnung ist zu gross
    diff --git a/javascript/mxClient.js b/javascript/mxClient.js
    index 56ba9c6fc..7f11d877d 100644
    --- a/javascript/mxClient.js
    +++ b/javascript/mxClient.js
    @@ -20,9 +20,9 @@ var mxClient =
     	 * 
     	 * versionMajor.versionMinor.buildNumber.revisionNumber
     	 * 
    -	 * Current version is 4.0.3.
    +	 * Current version is 4.0.4.
     	 */
    -	VERSION: '4.0.3',
    +	VERSION: '4.0.4',
     
     	/**
     	 * Variable: IS_IE
    @@ -8860,7 +8860,6 @@ var mxUtils =
     	 * for the STYLE_PERIMETER style.
     	 */
     	PERIMETER_TRIANGLE: 'trianglePerimeter'
    -
     };
     /**
      * Copyright (c) 2006-2015, JGraph Ltd
    @@ -19094,7 +19093,7 @@ mxSvgCanvas2D.prototype.updateFill = function()
     			var id = this.getSvgGradient(String(s.fillColor), String(s.gradientColor),
     				s.gradientFillAlpha, s.gradientAlpha, s.gradientDirection);
     			
    -			if (!mxClient.IS_CHROME_APP && !mxClient.IS_IE && !mxClient.IS_IE11 &&
    +			if (!mxClient.IS_CHROMEAPP && !mxClient.IS_IE && !mxClient.IS_IE11 &&
     				!mxClient.IS_EDGE && this.root.ownerDocument == document)
     			{
     				// Workaround for potential base tag and brackets must be escaped
    @@ -20341,7 +20340,7 @@ mxSvgCanvas2D.prototype.plainText = function(x, y, w, h, str, align, valign, wra
     			this.root.appendChild(c);
     		}
     		
    -		if (!mxClient.IS_CHROME_APP && !mxClient.IS_IE && !mxClient.IS_IE11 &&
    +		if (!mxClient.IS_CHROMEAPP && !mxClient.IS_IE && !mxClient.IS_IE11 &&
     			!mxClient.IS_EDGE && this.root.ownerDocument == document)
     		{
     			// Workaround for potential base tag
    @@ -89072,7 +89071,7 @@ var mxStylesheetCodec = mxCodecRegistry.register(function()
     		
     		if (type == 'function')
     		{
    -			value = mxStyleRegistry.getName(style[j]);
    +			value = mxStyleRegistry.getName(value);
     		}
     		else if (type == 'object')
     		{
    diff --git a/javascript/mxClient.min.js b/javascript/mxClient.min.js
    index ba1442610..caf8bb8bf 100644
    --- a/javascript/mxClient.min.js
    +++ b/javascript/mxClient.min.js
    @@ -1,4 +1,4 @@
    -var mxClient={VERSION:"4.0.3",IS_IE:0<=navigator.userAgent.indexOf("MSIE"),IS_IE6:0<=navigator.userAgent.indexOf("MSIE 6"),IS_IE11:!!navigator.userAgent.match(/Trident\/7\./),IS_EDGE:!!navigator.userAgent.match(/Edge\//),IS_QUIRKS:0<=navigator.userAgent.indexOf("MSIE")&&(null==document.documentMode||5==document.documentMode),IS_EM:"spellcheck"in document.createElement("textarea")&&8==document.documentMode,VML_PREFIX:"v",OFFICE_PREFIX:"o",IS_NS:0<=navigator.userAgent.indexOf("Mozilla/")&&0>navigator.userAgent.indexOf("MSIE")&&
    +var mxClient={VERSION:"4.0.4",IS_IE:0<=navigator.userAgent.indexOf("MSIE"),IS_IE6:0<=navigator.userAgent.indexOf("MSIE 6"),IS_IE11:!!navigator.userAgent.match(/Trident\/7\./),IS_EDGE:!!navigator.userAgent.match(/Edge\//),IS_QUIRKS:0<=navigator.userAgent.indexOf("MSIE")&&(null==document.documentMode||5==document.documentMode),IS_EM:"spellcheck"in document.createElement("textarea")&&8==document.documentMode,VML_PREFIX:"v",OFFICE_PREFIX:"o",IS_NS:0<=navigator.userAgent.indexOf("Mozilla/")&&0>navigator.userAgent.indexOf("MSIE")&&
     0>navigator.userAgent.indexOf("Edge/"),IS_OP:0<=navigator.userAgent.indexOf("Opera/")||0<=navigator.userAgent.indexOf("OPR/"),IS_OT:0<=navigator.userAgent.indexOf("Presto/")&&0>navigator.userAgent.indexOf("Presto/2.4.")&&0>navigator.userAgent.indexOf("Presto/2.3.")&&0>navigator.userAgent.indexOf("Presto/2.2.")&&0>navigator.userAgent.indexOf("Presto/2.1.")&&0>navigator.userAgent.indexOf("Presto/2.0.")&&0>navigator.userAgent.indexOf("Presto/1."),IS_SF:0<=navigator.userAgent.indexOf("AppleWebKit/")&&
     0>navigator.userAgent.indexOf("Chrome/")&&0>navigator.userAgent.indexOf("Edge/"),IS_IOS:navigator.userAgent.match(/(iPad|iPhone|iPod)/g)?!0:!1,IS_GC:0<=navigator.userAgent.indexOf("Chrome/")&&0>navigator.userAgent.indexOf("Edge/"),IS_CHROMEAPP:null!=window.chrome&&null!=chrome.app&&null!=chrome.app.runtime,IS_FF:0<=navigator.userAgent.indexOf("Firefox/"),IS_MT:0<=navigator.userAgent.indexOf("Firefox/")&&0>navigator.userAgent.indexOf("Firefox/1.")&&0>navigator.userAgent.indexOf("Firefox/2.")||0<=navigator.userAgent.indexOf("Iceweasel/")&&
     0>navigator.userAgent.indexOf("Iceweasel/1.")&&0>navigator.userAgent.indexOf("Iceweasel/2.")||0<=navigator.userAgent.indexOf("SeaMonkey/")&&0>navigator.userAgent.indexOf("SeaMonkey/1.")||0<=navigator.userAgent.indexOf("Iceape/")&&0>navigator.userAgent.indexOf("Iceape/1."),IS_VML:"MICROSOFT INTERNET EXPLORER"==navigator.appName.toUpperCase(),IS_SVG:"MICROSOFT INTERNET EXPLORER"!=navigator.appName.toUpperCase(),NO_FO:!document.createElementNS||"[object SVGForeignObjectElement]"!=document.createElementNS("http://www.w3.org/2000/svg",
    @@ -306,7 +306,7 @@ e.setAttribute("offset","0%");e.setAttribute("style","stop-color:"+a+c);f.append
     mxSvgCanvas2D.prototype.addNode=function(a,b){var c=this.node,d=this.state;if(null!=c){if("path"==c.nodeName)if(null!=this.path&&0<this.path.length)c.setAttribute("d",this.path.join(" "));else return;a&&null!=d.fillColor?this.updateFill():this.styleEnabled||("ellipse"==c.nodeName&&mxClient.IS_FF?c.setAttribute("fill","transparent"):c.setAttribute("fill","none"),a=!1);b&&null!=d.strokeColor?this.updateStroke():this.styleEnabled||c.setAttribute("stroke","none");null!=d.transform&&0<d.transform.length&&
     c.setAttribute("transform",d.transform);d.shadow&&this.root.appendChild(this.createShadow(c));0<this.strokeTolerance&&!a&&this.root.appendChild(this.createTolerance(c));this.pointerEvents?c.setAttribute("pointer-events",this.pointerEventsValue):this.pointerEvents||null!=this.originalRoot||c.setAttribute("pointer-events","none");("rect"!=c.nodeName&&"path"!=c.nodeName&&"ellipse"!=c.nodeName||"none"!=c.getAttribute("fill")&&"transparent"!=c.getAttribute("fill")||"none"!=c.getAttribute("stroke")||"none"!=
     c.getAttribute("pointer-events"))&&this.root.appendChild(c);this.node=null}};
    -mxSvgCanvas2D.prototype.updateFill=function(){var a=this.state;(1>a.alpha||1>a.fillAlpha)&&this.node.setAttribute("fill-opacity",a.alpha*a.fillAlpha);if(null!=a.fillColor)if(null!=a.gradientColor)if(a=this.getSvgGradient(String(a.fillColor),String(a.gradientColor),a.gradientFillAlpha,a.gradientAlpha,a.gradientDirection),mxClient.IS_CHROME_APP||mxClient.IS_IE||mxClient.IS_IE11||mxClient.IS_EDGE||this.root.ownerDocument!=document)this.node.setAttribute("fill","url(#"+a+")");else{var b=this.getBaseUrl().replace(/([\(\)])/g,
    +mxSvgCanvas2D.prototype.updateFill=function(){var a=this.state;(1>a.alpha||1>a.fillAlpha)&&this.node.setAttribute("fill-opacity",a.alpha*a.fillAlpha);if(null!=a.fillColor)if(null!=a.gradientColor)if(a=this.getSvgGradient(String(a.fillColor),String(a.gradientColor),a.gradientFillAlpha,a.gradientAlpha,a.gradientDirection),mxClient.IS_CHROMEAPP||mxClient.IS_IE||mxClient.IS_IE11||mxClient.IS_EDGE||this.root.ownerDocument!=document)this.node.setAttribute("fill","url(#"+a+")");else{var b=this.getBaseUrl().replace(/([\(\)])/g,
     "\\$1");this.node.setAttribute("fill","url("+b+"#"+a+")")}else this.node.setAttribute("fill",String(a.fillColor).toLowerCase())};mxSvgCanvas2D.prototype.getCurrentStrokeWidth=function(){return Math.max(this.minStrokeWidth,Math.max(.01,this.format(this.state.strokeWidth*this.state.scale)))};
     mxSvgCanvas2D.prototype.updateStroke=function(){var a=this.state;this.node.setAttribute("stroke",String(a.strokeColor).toLowerCase());(1>a.alpha||1>a.strokeAlpha)&&this.node.setAttribute("stroke-opacity",a.alpha*a.strokeAlpha);var b=this.getCurrentStrokeWidth();1!=b&&this.node.setAttribute("stroke-width",b);"path"==this.node.nodeName&&this.updateStrokeAttributes();a.dashed&&this.node.setAttribute("stroke-dasharray",this.createDashPattern((a.fixDash?1:a.strokeWidth)*a.scale))};
     mxSvgCanvas2D.prototype.updateStrokeAttributes=function(){var a=this.state;null!=a.lineJoin&&"miter"!=a.lineJoin&&this.node.setAttribute("stroke-linejoin",a.lineJoin);if(null!=a.lineCap){var b=a.lineCap;"flat"==b&&(b="butt");"butt"!=b&&this.node.setAttribute("stroke-linecap",b)}null==a.miterLimit||this.styleEnabled&&10==a.miterLimit||this.node.setAttribute("stroke-miterlimit",a.miterLimit)};
    @@ -341,7 +341,7 @@ d/2:g==mxConstants.ALIGN_BOTTOM&&(q-=d);"fill"!=m&&mxClient.IS_FF&&mxClient.IS_W
     ")"+z);x.setAttribute("width",Math.round(Math.max(1,c)));x.setAttribute("height",Math.round(Math.max(1,d)));this.root.ownerDocument!=document&&(a=this.createAlternateContent(x,a,b,c,d,e,f,g,k,l,m,n,p),null!=a&&(x.setAttribute("requiredFeatures","http://www.w3.org/TR/SVG11/feature#Extensibility"),c=this.createElement("switch"),c.appendChild(x),c.appendChild(a),u.appendChild(c)))}}else this.plainText(a,b,c,d,e,f,g,k,m,n,p,q)}};
     mxSvgCanvas2D.prototype.createClip=function(a,b,c,d){a=Math.round(a);b=Math.round(b);c=Math.round(c);d=Math.round(d);for(var e="mx-clip-"+a+"-"+b+"-"+c+"-"+d,f=0,g=e+"-"+f;null!=document.getElementById(g);)g=e+"-"+ ++f;clip=this.createElement("clipPath");clip.setAttribute("id",g);e=this.createElement("rect");e.setAttribute("x",a);e.setAttribute("y",b);e.setAttribute("width",c);e.setAttribute("height",d);clip.appendChild(e);return clip};
     mxSvgCanvas2D.prototype.plainText=function(a,b,c,d,e,f,g,k,l,m,n,p){n=null!=n?n:0;k=this.state;var q=k.fontSize,r=this.createElement("g"),t=k.transform||"";this.updateFont(r);0!=n&&(t+="rotate("+n+","+this.format(a*k.scale)+","+this.format(b*k.scale)+")");null!=p&&r.setAttribute("direction",p);m&&0<c&&0<d&&(p=a,n=b,f==mxConstants.ALIGN_CENTER?p-=c/2:f==mxConstants.ALIGN_RIGHT&&(p-=c),"fill"!=l&&(g==mxConstants.ALIGN_MIDDLE?n-=d/2:g==mxConstants.ALIGN_BOTTOM&&(n-=d)),n=this.createClip(p*k.scale-2,
    -n*k.scale-2,c*k.scale+4,d*k.scale+4),null!=this.defs?this.defs.appendChild(n):this.root.appendChild(n),mxClient.IS_CHROME_APP||mxClient.IS_IE||mxClient.IS_IE11||mxClient.IS_EDGE||this.root.ownerDocument!=document?r.setAttribute("clip-path","url(#"+n.getAttribute("id")+")"):(p=this.getBaseUrl().replace(/([\(\)])/g,"\\$1"),r.setAttribute("clip-path","url("+p+"#"+n.getAttribute("id")+")")));n=f==mxConstants.ALIGN_RIGHT?"end":f==mxConstants.ALIGN_CENTER?"middle":"start";"start"!=n&&r.setAttribute("text-anchor",
    +n*k.scale-2,c*k.scale+4,d*k.scale+4),null!=this.defs?this.defs.appendChild(n):this.root.appendChild(n),mxClient.IS_CHROMEAPP||mxClient.IS_IE||mxClient.IS_IE11||mxClient.IS_EDGE||this.root.ownerDocument!=document?r.setAttribute("clip-path","url(#"+n.getAttribute("id")+")"):(p=this.getBaseUrl().replace(/([\(\)])/g,"\\$1"),r.setAttribute("clip-path","url("+p+"#"+n.getAttribute("id")+")")));n=f==mxConstants.ALIGN_RIGHT?"end":f==mxConstants.ALIGN_CENTER?"middle":"start";"start"!=n&&r.setAttribute("text-anchor",
     n);this.styleEnabled&&q==mxConstants.DEFAULT_FONTSIZE||r.setAttribute("font-size",q*k.scale+"px");0<t.length&&r.setAttribute("transform",t);1>k.alpha&&r.setAttribute("opacity",k.alpha);t=e.split("\n");p=Math.round(q*mxConstants.LINE_HEIGHT);var u=q+(t.length-1)*p;n=b+q-1;g==mxConstants.ALIGN_MIDDLE?"fill"==l?n-=d/2:(m=(this.matchHtmlAlignment&&m&&0<d?Math.min(u,d):u)/2,n-=m+1):g==mxConstants.ALIGN_BOTTOM&&("fill"==l?n-=d:(m=this.matchHtmlAlignment&&m&&0<d?Math.min(u,d):u,n-=m+2));for(m=0;m<t.length;m++)0<
     t[m].length&&0<mxUtils.trim(t[m]).length&&(q=this.createElement("text"),q.setAttribute("x",this.format(a*k.scale)+this.textOffset),q.setAttribute("y",this.format(n*k.scale)+this.textOffset),mxUtils.write(q,t[m]),r.appendChild(q)),n+=p;this.root.appendChild(r);this.addTextBackground(r,e,a,b,c,"fill"==l?d:u,f,g,l)};
     mxSvgCanvas2D.prototype.updateFont=function(a){var b=this.state;a.setAttribute("fill",b.fontColor);this.styleEnabled&&b.fontFamily==mxConstants.DEFAULT_FONTFAMILY||a.setAttribute("font-family",b.fontFamily);(b.fontStyle&mxConstants.FONT_BOLD)==mxConstants.FONT_BOLD&&a.setAttribute("font-weight","bold");(b.fontStyle&mxConstants.FONT_ITALIC)==mxConstants.FONT_ITALIC&&a.setAttribute("font-style","italic");(b.fontStyle&mxConstants.FONT_UNDERLINE)==mxConstants.FONT_UNDERLINE&&a.setAttribute("text-decoration",
    @@ -1815,8 +1815,8 @@ mxCodecRegistry.register(function(){var a=new mxObjectCodec(new mxGraphView);a.e
     typeof g&&n.setAttribute(p,g);g=f.absolutePoints;if(null!=g&&0<g.length){l=Math.round(g[0].x)+","+Math.round(g[0].y);for(p=1;p<g.length;p++)l+=" "+Math.round(g[p].x)+","+Math.round(g[p].y);n.setAttribute("points",l)}else n.setAttribute("x",Math.round(f.x)),n.setAttribute("y",Math.round(f.y)),n.setAttribute("width",Math.round(f.width)),n.setAttribute("height",Math.round(f.height));p=f.absoluteOffset;null!=p&&(0!=p.x&&n.setAttribute("dx",Math.round(p.x)),0!=p.y&&n.setAttribute("dy",Math.round(p.y)))}for(p=
     0;p<k;p++)f=this.encodeCell(a,c,b.getChildAt(d,p)),null!=f&&n.appendChild(f)}}return n};return a}());
     var mxStylesheetCodec=mxCodecRegistry.register(function(){var a=new mxObjectCodec(new mxStylesheet);a.encode=function(a,c){var b=a.document.createElement(this.getName()),e;for(e in c.styles){var f=c.styles[e],g=a.document.createElement("add");if(null!=e){g.setAttribute("as",e);for(var k in f){var l=this.getStringValue(k,f[k]);if(null!=l){var m=a.document.createElement("add");m.setAttribute("value",l);m.setAttribute("as",k);g.appendChild(m)}}0<g.childNodes.length&&b.appendChild(g)}}return b};a.getStringValue=
    -function(a,c){var b=typeof c;"function"==b?c=mxStyleRegistry.getName(style[j]):"object"==b&&(c=null);return c};a.decode=function(a,c,d){d=d||new this.template.constructor;var b=c.getAttribute("id");null!=b&&(a.objects[b]=d);for(c=c.firstChild;null!=c;){if(!this.processInclude(a,c,d)&&"add"==c.nodeName&&(b=c.getAttribute("as"),null!=b)){var f=c.getAttribute("extend"),g=null!=f?mxUtils.clone(d.styles[f]):null;null==g&&(null!=f&&mxLog.warn("mxStylesheetCodec.decode: stylesheet "+f+" not found to extend"),
    -g={});for(f=c.firstChild;null!=f;){if(f.nodeType==mxConstants.NODETYPE_ELEMENT){var k=f.getAttribute("as");if("add"==f.nodeName){var l=mxUtils.getTextContent(f);null!=l&&0<l.length&&mxStylesheetCodec.allowEval?l=mxUtils.eval(l):(l=f.getAttribute("value"),mxUtils.isNumeric(l)&&(l=parseFloat(l)));null!=l&&(g[k]=l)}else"remove"==f.nodeName&&delete g[k]}f=f.nextSibling}d.putCellStyle(b,g)}c=c.nextSibling}return d};return a}());mxStylesheetCodec.allowEval=!0;
    +function(a,c){var b=typeof c;"function"==b?c=mxStyleRegistry.getName(c):"object"==b&&(c=null);return c};a.decode=function(a,c,d){d=d||new this.template.constructor;var b=c.getAttribute("id");null!=b&&(a.objects[b]=d);for(c=c.firstChild;null!=c;){if(!this.processInclude(a,c,d)&&"add"==c.nodeName&&(b=c.getAttribute("as"),null!=b)){var f=c.getAttribute("extend"),g=null!=f?mxUtils.clone(d.styles[f]):null;null==g&&(null!=f&&mxLog.warn("mxStylesheetCodec.decode: stylesheet "+f+" not found to extend"),g=
    +{});for(f=c.firstChild;null!=f;){if(f.nodeType==mxConstants.NODETYPE_ELEMENT){var k=f.getAttribute("as");if("add"==f.nodeName){var l=mxUtils.getTextContent(f);null!=l&&0<l.length&&mxStylesheetCodec.allowEval?l=mxUtils.eval(l):(l=f.getAttribute("value"),mxUtils.isNumeric(l)&&(l=parseFloat(l)));null!=l&&(g[k]=l)}else"remove"==f.nodeName&&delete g[k]}f=f.nextSibling}d.putCellStyle(b,g)}c=c.nextSibling}return d};return a}());mxStylesheetCodec.allowEval=!0;
     mxCodecRegistry.register(function(){var a=new mxObjectCodec(new mxDefaultKeyHandler);a.encode=function(a,c){return null};a.decode=function(a,c,d){if(null!=d)for(c=c.firstChild;null!=c;){if(!this.processInclude(a,c,d)&&"add"==c.nodeName){var b=c.getAttribute("as"),f=c.getAttribute("action"),g=c.getAttribute("control");d.bindAction(b,f,g)}c=c.nextSibling}return d};return a}());
     var mxDefaultToolbarCodec=mxCodecRegistry.register(function(){var a=new mxObjectCodec(new mxDefaultToolbar);a.encode=function(a,c){return null};a.decode=function(a,c,d){if(null!=d){var b=d.editor;for(c=c.firstChild;null!=c;){if(c.nodeType==mxConstants.NODETYPE_ELEMENT&&!this.processInclude(a,c,d))if("separator"==c.nodeName)d.addSeparator();else if("br"==c.nodeName)d.toolbar.addBreak();else if("hr"==c.nodeName)d.toolbar.addLine();else if("add"==c.nodeName){var f=c.getAttribute("as"),f=mxResources.get(f)||
     f,g=c.getAttribute("icon"),k=c.getAttribute("pressedIcon"),l=c.getAttribute("action"),m=c.getAttribute("mode"),n=c.getAttribute("template"),p="0"!=c.getAttribute("toggle"),q=mxUtils.getTextContent(c),r=null;if(null!=l)r=d.addItem(f,g,l,k);else if(null!=m)var t=mxDefaultToolbarCodec.allowEval?mxUtils.eval(q):null,r=d.addMode(f,g,m,k,t);else if(null!=n||null!=q&&0<q.length)r=b.templates[n],n=c.getAttribute("style"),null!=r&&null!=n&&(r=b.graph.cloneCell(r),r.setStyle(n)),n=null,null!=q&&0<q.length&&
    diff --git a/javascript/src/css/common.css b/javascript/src/css/common.css
    index 37bfb0eac..21f389211 100644
    --- a/javascript/src/css/common.css
    +++ b/javascript/src/css/common.css
    @@ -29,7 +29,8 @@ div.mxWindow {
     	-webkit-box-shadow: 3px 3px 12px #C0C0C0;
     	-moz-box-shadow: 3px 3px 12px #C0C0C0;
     	box-shadow: 3px 3px 12px #C0C0C0;
    -	background: url('../images/window.gif');
    +	background: url(data:image/gif;base64,R0lGODlhGgAUAIAAAOzs7PDw8CH5BAAAAAAALAAAAAAaABQAAAIijI+py70Ao5y02lud3lzhD4ZUR5aPiKajyZbqq7YyB9dhAQA7);
    +	_background: url('../images/window.gif');
     	border:1px solid #c3c3c3;
     	position: absolute;
     	overflow: hidden;
    @@ -42,7 +43,8 @@ table.mxWindow {
     	font-size: 8pt;
     }
     td.mxWindowTitle {
    -	background: url('../images/window-title.gif') repeat-x;
    +	background: url(data:image/gif;base64,R0lGODlhFwAXAMQAANfX18rKyuHh4c7OzsDAwMHBwc/Pz+Li4uTk5NHR0dvb2+jo6O/v79/f3/n5+dnZ2dbW1uPj44yMjNPT0+Dg4N3d3ebm5szMzAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH5BAAAAAAALAAAAAAXABcAAAWQICESxWiW5Ck6bOu+MMvMdG3f86LvfO/rlqBwSCwaj8ikUohoOp/QaDNCrVqvWKpgezhsv+AwmEIum89ocmPNbrvf64p8Tq/b5Yq8fs/v5x+AgYKDhIAAh4iJiouHEI6PkJGSjhOVlpeYmZUJnJ2en6CcBqMDpaanqKgXq6ytrq+rAbKztLW2shK5uru8vbkhADs=)  repeat-x;
    +	_background: url('../images/window-title.gif') repeat-x;
     	text-overflow: ellipsis;
     	white-space: nowrap;
      	text-align: center;
    @@ -75,7 +77,8 @@ td.mxWindowPane input, td.mxWindowPane select, td.mxWindowPane textarea, td.mxWi
      	padding: 1px;
     }
     td.mxWindowPane button {
    -	background: url('../images/button.gif') repeat-x;
    +	background: url(data:image/gif;base64,R0lGODlhCgATALMAAP7+/t7e3vj4+Ojo6OXl5e/v7/n5+fb29vPz8/39/e3t7fHx8e7u7v///wAAAAAAACH5BAAAAAAALAAAAAAKABMAAAQ2MMlJhb0Y6c2X/2AhjiRjnqiirizqMkEsz0Rt30Ou7y8K/ouDcEg0GI9IgHLJbDif0Kh06owAADs=) repeat-x;
    +	_background: url('../images/button.gif') repeat-x;
       	font-family: Arial;
       	font-size: 8pt;
       	padding: 2px;
    @@ -126,7 +129,8 @@ div.mxPopupMenu {
     	-webkit-box-shadow: 3px 3px 12px #C0C0C0;
     	-moz-box-shadow: 3px 3px 12px #C0C0C0;
     	box-shadow: 3px 3px 12px #C0C0C0;
    -	background: url('../images/window.gif');
    +	background: url(data:image/gif;base64,R0lGODlhGgAUAIAAAOzs7PDw8CH5BAAAAAAALAAAAAAaABQAAAIijI+py70Ao5y02lud3lzhD4ZUR5aPiKajyZbqq7YyB9dhAQA7);
    +	_background: url('../images/window.gif');
     	position: absolute;
     	border-style: solid;
     	border-width: 1px;
    diff --git a/javascript/src/js/io/mxStylesheetCodec.js b/javascript/src/js/io/mxStylesheetCodec.js
    index 8899116fb..5e70ea48f 100644
    --- a/javascript/src/js/io/mxStylesheetCodec.js
    +++ b/javascript/src/js/io/mxStylesheetCodec.js
    @@ -66,7 +66,7 @@ var mxStylesheetCodec = mxCodecRegistry.register(function()
     		
     		if (type == 'function')
     		{
    -			value = mxStyleRegistry.getName(style[j]);
    +			value = mxStyleRegistry.getName(value);
     		}
     		else if (type == 'object')
     		{
    diff --git a/javascript/src/js/mxClient.js b/javascript/src/js/mxClient.js
    index f138b1c32..51f338308 100644
    --- a/javascript/src/js/mxClient.js
    +++ b/javascript/src/js/mxClient.js
    @@ -20,9 +20,9 @@ var mxClient =
     	 * 
     	 * versionMajor.versionMinor.buildNumber.revisionNumber
     	 * 
    -	 * Current version is 4.0.3.
    +	 * Current version is 4.0.4.
     	 */
    -	VERSION: '4.0.3',
    +	VERSION: '4.0.4',
     
     	/**
     	 * Variable: IS_IE
    diff --git a/javascript/src/js/util/mxConstants.js b/javascript/src/js/util/mxConstants.js
    index 543c4400d..5ce2dc150 100644
    --- a/javascript/src/js/util/mxConstants.js
    +++ b/javascript/src/js/util/mxConstants.js
    @@ -2326,5 +2326,4 @@
     	 * for the STYLE_PERIMETER style.
     	 */
     	PERIMETER_TRIANGLE: 'trianglePerimeter'
    -
     };
    diff --git a/javascript/src/js/util/mxSvgCanvas2D.js b/javascript/src/js/util/mxSvgCanvas2D.js
    index a9503a449..d252b3bc6 100644
    --- a/javascript/src/js/util/mxSvgCanvas2D.js
    +++ b/javascript/src/js/util/mxSvgCanvas2D.js
    @@ -676,7 +676,7 @@ mxSvgCanvas2D.prototype.updateFill = function()
     			var id = this.getSvgGradient(String(s.fillColor), String(s.gradientColor),
     				s.gradientFillAlpha, s.gradientAlpha, s.gradientDirection);
     			
    -			if (!mxClient.IS_CHROME_APP && !mxClient.IS_IE && !mxClient.IS_IE11 &&
    +			if (!mxClient.IS_CHROMEAPP && !mxClient.IS_IE && !mxClient.IS_IE11 &&
     				!mxClient.IS_EDGE && this.root.ownerDocument == document)
     			{
     				// Workaround for potential base tag and brackets must be escaped
    @@ -1923,7 +1923,7 @@ mxSvgCanvas2D.prototype.plainText = function(x, y, w, h, str, align, valign, wra
     			this.root.appendChild(c);
     		}
     		
    -		if (!mxClient.IS_CHROME_APP && !mxClient.IS_IE && !mxClient.IS_IE11 &&
    +		if (!mxClient.IS_CHROMEAPP && !mxClient.IS_IE && !mxClient.IS_IE11 &&
     			!mxClient.IS_EDGE && this.root.ownerDocument == document)
     		{
     			// Workaround for potential base tag
    diff --git a/package.json b/package.json
    index 6197a4130..1e895611d 100644
    --- a/package.json
    +++ b/package.json
    @@ -1,7 +1,7 @@
     {
       "name": "mxgraph",
       "description": "mxGraph is a fully client side JavaScript diagramming library that uses SVG and HTML for rendering.",
    -  "version": "4.0.3",
    +  "version": "4.0.4",
       "homepage": "https://github.com/jgraph/mxgraph",
       "author": {
         "name": "JGraph Ltd",
    diff --git a/php/examples/backend.php b/php/examples/backend.php
    deleted file mode 100644
    index 2e1d87735..000000000
    --- a/php/examples/backend.php
    +++ /dev/null
    @@ -1,61 +0,0 @@
    -<?php
    -/**
    - * Copyright (c) 2006, Gaudenz Alder
    - */
    -include_once("../src/mxServer.php");
    -
    -/**
    - * Creates a graph using the API and returns the XML.
    - */
    -function createGraph()
    -{
    -	$id = $_GET["id"];
    -	error_log("Requested id=".$id);
    -	
    -	// Creates the graph on the server-side
    -	$graph = new mxGraph();
    -	$model = $graph->getModel();
    -	$parent = $graph->getDefaultParent();
    -
    -	$model->beginUpdate();
    -	
    -	$v1 = $graph->insertVertex($parent, null, "Hello", 20, 20, 80, 30);
    -	$v2 = $graph->insertVertex($parent, null, "World", 200, 150, 80, 30);
    -	$graph->insertEdge($parent, null, "", $v1, $v2);
    -
    -	$model->endUpdate();
    -
    -	$enc = new mxCodec();
    -	$xmlNode = $enc->encode($model);
    -	
    -	return str_replace("\n", "&#xa;", $xmlNode->ownerDocument->saveXML($xmlNode));
    -}
    -
    -/**
    - * Handles save request and prints XML.
    - */
    -if (isset($_POST["xml"]))
    -{
    -	$id = $_GET["id"];
    -	$xml = str_replace("\n", "&#xa;", stripslashes($_POST["xml"]));
    -	
    -	error_log("Received id=".$id." xml=".$xml);
    -}
    -else
    -{
    -	if (isset($_GET["id"]))
    -	{
    -		header("Content-Type: text/xml;charset=UTF-8");
    -		header("Pragma: no-cache"); // HTTP 1.0
    -		header("Cache-Control: private, no-cache, no-store");
    -		header("Expires: 0");
    -		
    -		echo createGraph();
    -	}
    -	else
    -	{
    -		// Redirects to frontend.html
    -		header('Location: frontend.html');
    -	}
    -}
    -?>
    diff --git a/php/examples/deployment.php b/php/examples/deployment.php
    deleted file mode 100644
    index 5ff7446d2..000000000
    --- a/php/examples/deployment.php
    +++ /dev/null
    @@ -1,115 +0,0 @@
    -<?php
    -/**
    - * Copyright (c) 2006, Gaudenz Alder
    - */
    -include_once("../src/mxServer.php");
    -
    -/**
    - * Function: main
    - * 
    - * Demonstrates the deployment of a graph which is created on the server side
    - * and then deployed with the client library in a single response. This is done
    - * by replacing the %graph% placeholder in the javascript/example/template.html
    - * file with the XML representation of the graph that was created on the server.
    - * 
    - * Point your browser to http://localhost/graph to fetch the HTML file. Make sure
    - * to deploy the mxgraph distribution directory to the webroot for this example
    - * to work, or replace the mxBasePath and URL for the mxClient.js in the
    - * template to match your environment.
    - *
    - * This example returns an HTML page when the client issues a get request. The
    - * readme in the php directory explains how to run this example.
    - * 
    - * The template.html file is used by this example. In main a graph is created
    - * and the XML of the graph obtained by:
    - * 
    - *   $enc = new mxCodec();
    - *   $xmlNode = $enc->encode($model);
    - *   $xml = $xmlNode->ownerDocument->saveXML($xmlNode);
    - * 
    - * The template.html is then loaded as a string and instances of %graph% are
    - * replaced with the XML of the graph. In the template.html the following line
    - * defines the page body:
    - * 
    - *   <body onload="main(document.getElementById('graphContainer'), '%graph%');">
    - * 
    - * So the XML string of the graph becomes the second parameter of the main
    - * function. When the template.html page is loaded in the browser, the main
    - * function is called and within that function these lines:
    - * 
    - *   var doc = mxUtils.parseXml(xml);
    - *   var codec = new mxCodec(doc);
    - *   codec.decode(doc.documentElement, graph.getModel());
    - * 
    - * insert the XML into the graph model and that graph will then display.
    - */
    -function main()
    -{
    -	// True-type fonts not needed in this example
    -	mxConstants::$TTF_ENABLED = false;
    -
    -	// Creates the graph on the server-side
    -	$graph = new mxGraph();
    -	$model = $graph->getModel();
    -	$parent = $graph->getDefaultParent();
    -
    -	$model->beginUpdate();
    -	try
    -	{	
    -		$v1 = $graph->insertVertex($parent, null, "Hello", 20, 20, 80, 30);
    -		$v2 = $graph->insertVertex($parent, null, "World", 200, 150, 80, 30);
    -		$graph->insertEdge($parent, null, "", $v1, $v2);
    -	}
    -	catch (Exception $e)
    -	{
    -		$model->endUpdate();
    -		throw($e);
    -	}
    -	$model->endUpdate();
    -
    -	// Turns the graph into XML data
    -	$enc = new mxCodec();
    -	$xmlNode = $enc->encode($model);
    -	$xml = addslashes(htmlentities(str_replace("\n", "&#xa;",
    -		$xmlNode->ownerDocument->saveXML($xmlNode))));
    -	
    -	// Loads the template into a single string
    -	$template = mxUtils::readFile("template.html");
    -
    -	// Replaces the placeholder in the template with the XML data
    -	// which is then parsed into the graph model. Note: In a production
    -	// environment you should use a template engine instead.
    -	$page = str_replace("%graph%", $xml, $template);
    -	
    -	// Makes sure there is no caching on the client side
    -	header("Pragma: no-cache"); // HTTP 1.0
    -	header("Cache-control: private, no-cache, no-store");
    -	header("Expires: 0");
    -
    -	echo $page;
    -}
    -
    -// Uses a local font so that all examples work on all platforms. This can be
    -// changed to vera on Mac or arial on Windows systems.
    -mxConstants::$DEFAULT_FONTFAMILY = "ttf/verah.ttf";
    -
    -// If you can't get the fonts to render try using one of the following:
    -//mxConstants::$DEFAULT_FONTFAMILY = "C:\WINDOWS\Fonts\arial.ttf";
    -//mxConstants::$DEFAULT_FONTFAMILY = "verah"; putenv("GDFONTPATH=".realpath("./ttf"));
    -//mxConstants::$TTF_ENABLED = false;
    -
    -// Handles save image request
    -if ($_SERVER["REQUEST_METHOD"] == "POST")
    -{
    -	$xml = urldecode($_POST["xml"]);
    -	
    -	// Creates a PNG representation of the file
    -	$image =  mxGraphViewImageReader::convert($xml, "#FFFFFF");
    -	header("Content-Type: image/png");
    -	echo mxUtils::encodeImage($image);
    -}
    -else
    -{
    -	main();
    -}
    -?>
    diff --git a/php/examples/diagrams/graphmodel.xml b/php/examples/diagrams/graphmodel.xml
    deleted file mode 100644
    index 9bf1f34e2..000000000
    --- a/php/examples/diagrams/graphmodel.xml
    +++ /dev/null
    @@ -1,8 +0,0 @@
    -<mxGraphModel>
    -	<root>
    -		<Workflow label="Swimlanes" id="0"></Workflow>
    -		<Layer label="Default Layer" id="1">
    -			<mxCell parent="0" />
    -		</Layer>
    -	</root>
    -</mxGraphModel>
    diff --git a/php/examples/diagrams/graphview.xml b/php/examples/diagrams/graphview.xml
    deleted file mode 100644
    index e7754c34a..000000000
    --- a/php/examples/diagrams/graphview.xml
    +++ /dev/null
    @@ -1,34 +0,0 @@
    -<graph label="My Diagram" x="90" y="50" width="400" height="280">
    -	<layer label="Default Layer">
    -		<group label="Container" x="90" y="50" width="200" height="200"
    -			shape="swimlane" fontSize="11" align="center" verticalAlign="top"
    -			shadow="0" strokeColor="#EEEEEE" fillColor="#D4D4D4"
    -			gradientColor="white" startSize="23">
    -			<vertex label="Rounded" x="110" y="90" width="80"
    -				height="30" shape="rectangle" fontSize="11" align="center"
    -				verticalAlign="middle" shadow="1" strokeColor="#C3D9FF"
    -				fillColor="#C3D9FF" gradientColor="white" rounded="1" />
    -			<vertex label="Shape" x="130" y="160" width="60" height="50"
    -				shape="ellipse" fontSize="11" align="center" verticalAlign="middle"
    -				shadow="1" strokeColor="#CDEB8B" fillColor="#CDEB8B"
    -				gradientColor="white" />
    -			<edge label="" points="150,120 150,159" shape="connector"
    -				fontSize="10" rounded="1" strokeColor="#36393D" strokeWidth="1"
    -				endArrow="classic" />
    -		</group>
    -		<vertex label="Shape" x="380" y="170" width="60" height="50"
    -			shape="rhombus" fontSize="11" align="center" verticalAlign="middle"
    -			shadow="1" strokeColor="#FFCF8A" fillColor="#FFCF8A"
    -			gradientColor="white" />
    -		<edge label="" points="190,185 379,185" shape="connector"
    -			fontSize="10" rounded="1" strokeColor="#36393D" strokeWidth="1"
    -			endArrow="classic" />
    -		<vertex label="Shape" x="240" y="280" width="60" height="50"
    -			shape="cylinder" fontSize="11" align="center" verticalAlign="middle"
    -			shadow="1" strokeColor="#4096EE" fillColor="#4096EE"
    -			gradientColor="white" />
    -		<edge label="" points="440,195 490,195 490,305 301,305"
    -			shape="connector" fontSize="10" rounded="1" strokeColor="#36393D"
    -			strokeWidth="1" endArrow="classic" />
    -	</layer>
    -</graph>
    diff --git a/php/examples/embedimage.html b/php/examples/embedimage.html
    deleted file mode 100644
    index ff4fe1a5d..000000000
    --- a/php/examples/embedimage.html
    +++ /dev/null
    @@ -1,124 +0,0 @@
    -<html>
    -<head>
    -	<title>Embedded images</title>
    -	<!--%mhtml%-->
    -	<!-- Sets the basepath for the library if not in same directory -->
    -	<script type="text/javascript">
    -		mxBasePath = '../../javascript/src';
    -	</script>
    -
    -	<!-- Loads and initializes the library -->
    -	<script type="text/javascript" src="../../javascript/src/js/mxClient.js"></script>
    -
    -	<!-- Example code -->
    -	<script type="text/javascript">
    -		// True if data URIs are supported. IE8 has a size limit of 32KB for
    -		// data URIs, so this must be used as a global size limit. It's not
    -		// possible to work around this limitation by using MHTML because that
    -		// is not supported in IE8.
    -		var DATA_URL = %dataUrl%;
    -		var graph = new mxGraph();
    -		var bundle = new mxImageBundle(!DATA_URL);
    -
    -		function insert(name, data, fallback)
    -		{
    -			bundle.putImage(name, data, fallback);
    -			var parent = graph.getDefaultParent();
    -			graph.insertVertex(parent, null, '', 100, 20, 130, 80, 'shape=image;image=' + name);
    -		};
    -	
    -		// Program starts here. Creates a sample graph in the
    -		// DOM node with the specified ID. This function is invoked
    -		// from the onLoad event handler of the document (see below).
    -		function main()
    -		{
    -			%bundle%
    -			graph.addImageBundle(bundle);
    -			graph.init(document.getElementById('graphContainer'));
    -			graph.setConnectable(true);
    -			
    -			// Enables rubberband selection
    -			new mxRubberband(graph);
    -			
    -			// Gets the default parent for inserting new cells. This
    -			// is normally the first child of the root (ie. layer 0).
    -			var parent = graph.getDefaultParent();
    -							
    -			// Adds cells to the model in a single step
    -			graph.getModel().beginUpdate();
    -			try
    -			{
    -				graph.insertVertex(parent, null, '', 20, 20, 30, 30, 'shape=image;image=myImage');
    -			}
    -			finally
    -			{
    -				// Updates the display
    -				graph.getModel().endUpdate();
    -			}
    -
    -			// Three scenarios for loading embedded images in IE6/7:
    -			// 1. At load-time: Embed in HTML page (see above and server-side)
    -			// 2. From URL at runtime: Use script to encode and cache response. This is also needed for
    -			//    browsers that support HTML5 canvas because it's not possible to base64 encode an image
    -			//    from another domain due to security restrictions.
    -			var url = 'http://www.jgraph.com/images/mxgraph.gif';
    -			mxUtils.get(window.location.href + '?url=' + encodeURIComponent(url), function(req)
    -			{
    -				var lines = req.getText().split('\n');
    -				var data = '';
    -				
    -				// Scans the response for base64 encoded image data
    -				for (var i = 6; i < lines.length; i++)
    -				{
    -					if (lines[i].length == 0)
    -					{
    -						data = lines[i + 1];
    -						break;
    -					}
    -				}
    -				
    -				data = data.substring(0, data.length - 1);
    -
    -				// The fallback can either be the URL or the MHTML URL which turns the image
    -				// into MHTML on the server-side. Both are cached so even if the image changes
    -				// while the diagram is open the image will remain visible. Note that the image
    -				// will be replaced with an embedded image the next time the diagram is opened.
    -				//url = 'mhtml:' + window.location.href + '?url=' + encodeURIComponent(url) + '!image';
    -				insert(url, 'data:image/gif,' + data, url);
    -			});
    -
    -			// 3. From local at runtime: Requires two roundtrips, one to get the base64 encoded
    -			//    string to put it into the bundle and another (in IE6/7) for the mhtml href.
    -			//    The response of the POST request contains JavaScript which calls the insert
    -			//    method above and removes the dynamically generated iframe with the form (below).
    -			var clickHandler = function()
    -			{
    -				if (document.getElementById('embedimageframe') == null)
    -				{
    -					var ifrm = document.createElement('iframe');
    -					ifrm.setAttribute('id', 'embedimageframe');
    -					document.body.appendChild(ifrm);
    -					ifrm = (ifrm.contentWindow) ? ifrm.contentWindow :
    -						(ifrm.contentDocument.document) ? ifrm.contentDocument.document : ifrm.contentDocument;
    -		            ifrm.document.open();
    -		            ifrm.document.write('<form method="POST" enctype="multipart/form-data" '+
    -				    	'action="' + window.location.href + '">');
    -		            ifrm.document.write('File: <input type="file" name="upfile">');
    -		            ifrm.document.write('<input type="hidden" name="dataurl" value="' + DATA_URL + '">');
    -		            ifrm.document.write('<br><input type="submit" value="Insert">');
    -		            ifrm.document.write('</form>');
    -		            ifrm.document.close();
    -				}
    -			};
    -
    -			document.body.appendChild(mxUtils.button('Insert image', clickHandler));
    -			mxUtils.br(document.body);
    -		};
    -	</script>
    -</head>
    -<body onload="main()">
    -	<div id="graphContainer"
    -		style="overflow:hidden;width:320px;height:240px;border:solid black 1px;cursor:default;">
    -	</div>
    -</body>
    -</html>
    diff --git a/php/examples/embedimage.php b/php/examples/embedimage.php
    deleted file mode 100644
    index 1247de5eb..000000000
    --- a/php/examples/embedimage.php
    +++ /dev/null
    @@ -1,147 +0,0 @@
    -<?php
    -// Does not use cookies for sessions since the only session exists between
    -// two requests where the URL of the second request is defined below.
    -ini_set('session.use_cookies', '0');
    -$compress = strpos($_SERVER['HTTP_ACCEPT_ENCODING'], 'gzip') !== false;
    -
    -function mhtml($name, $data)
    -{
    -	return "Content-Type: multipart/related; boundary=\"----\"\n".
    -		"\n".
    -		"------\n".
    -		"Content-Location:$name\n".
    -		"Content-Transfer-Encoding:base64\n".
    -		"\n".
    -		$data.
    -		"=\n".
    -		"------\n";
    -}
    -
    -// Uses wire-compression for response
    -if ($compress)
    -{
    -	ob_start();
    -	ob_start("ob_gzhandler");
    -}
    -
    -// Converts an uploaded file to a base64 MHTML response
    -// which is inserted via injected JavaScript on the client-side.
    -if ($_SERVER["REQUEST_METHOD"] == "POST")
    -{
    -	$tmpfile = $_FILES["upfile"]["tmp_name"];
    -	header("Content-Type: text/html");	
    -
    -	echo "<html>\n";
    -	echo "<head>\n";
    -	echo "</head>\n";
    -	echo "<body>\n";
    -	echo "<script type=\"text/javascript\">\n";
    -	
    -	// Shows an error message on the client-side if the file is larger than
    -	// 32 KB, which is the maximum size foe data URIs in IE8.
    -	if (filesize($tmpfile) > 32768)
    -	{
    -		echo "alert(\"File exceeds the maximum allowed size. File must be less than 32KB.\");\n";
    -	}
    -	else
    -	{
    -		$img = file_get_contents($tmpfile);
    -		$data = base64_encode($img);
    -		
    -		// Makes the name unique by adding a timestamp as a postfix
    -		$name = $_FILES["upfile"]["name"]."-".mktime();
    -
    -		// Stores the file in the session which only exists between this and the
    -		// next request. The subsequent request is handled in the else branch.
    -		// Note that the request destroys the session and its contents, however,
    -		// in IE the MHTML resource is only loaded once and kept in the browser.
    -		if ($_POST["dataurl"] == "false")
    -		{
    -			// In theory, up to 4K in 300 cookies can be used to transfer the data
    -			// directly in the GET request of the image to avoid a session state.
    -			// This can be done by splitting the base64 data into 4K cookies in the
    -			// insert method in the client and then forcing an image prefetch with
    -			// the respective MHTML URL for the image. On the server-side all we
    -			// we need to do is fetch the content location (get param) and data.
    -			// In practice most servers have a header size limit of 8-16K.
    -			session_start();
    -			$url = "'mhtml:'+window.location.href+'?PHPSESSID=".session_id()."&img=$name!$name'";
    -			$_SESSION["image"] = "<!--\n".mhtml($name, $data)."-->\n";
    -		}
    -		else
    -		{
    -			$url = "null";
    -		}
    -
    -		echo "window.parent.insert(\"$name\", \"data:image/png,".$data."\", $url);\n";
    -	}
    -
    -	// NOTE: Ignore "Failed to load resource" error in Chrome,
    -	// see http://code.google.com/p/chromium/issues/detail?id=29180
    -	echo "var iframe = window.parent.document.getElementById('embedimageframe');\n";
    -	echo "iframe.parentNode.removeChild(iframe);";
    -	echo "</script>\n";
    -	echo "</body>\n";
    -	echo "</html>\n";
    -}
    -// Fetches the given image and encodes it as a MHTM page.
    -// On the client-side the page is used as is and the
    -// base64 encoded data is extracted and put into an
    -// mxImageBundle for storage with the diagram.
    -else if (isset($_GET["url"]))
    -{
    -	$url = $_GET["url"];
    -	$img = file_get_contents($url);
    -
    -	// Enables caching of this response
    -	header("Content-Type: text/plain");
    -	header("Cache-Control: private");
    -	header("Expires: Thu, 15 Apr 2030 20:00:00 GMT");
    -	
    -	echo "<!--\n".mhtml("image", base64_encode($img))."-->\n";
    -}
    -// Returns the MHTML stored in the session.
    -else if (isset($_GET["PHPSESSID"]))
    -{
    -	header("Content-Type: text/plain");
    -
    -	// Gets the image from the session and destroys the session (since we do
    -	// not use session cookies there is no need to delete a cookie here).
    -	session_start();
    -	echo $_SESSION["image"];
    -	session_destroy();
    -}
    -else
    -{
    -	header("Content-Type: text/html");
    -	
    -	$userAgent = strtoupper(getenv("HTTP_USER_AGENT"));
    -	$dataUrl = strpos($userAgent, "MSIE 6") === false &&
    -			   strpos($userAgent, "MSIE 7") === false;
    -
    -	// In a real-world environment the following would be done for each entry
    -	// of the image bundle in an XML file for a diagram.
    -	$name = "myImage";
    -	$data = "R0lGODlhEAAQAMIGAAAAAICAAICAgP//AOzp2O3r2////////yH+FUNyZWF0ZWQgd2l0aCBUaGUgR0lNUAAh+QQBCgAHACwAAAAAEAAQAAADTXi63AowynnAMDfjPUDlnAAJhmeBFxAEloliKltWmiYCQvfVr6lBPB1ggxN1hilaSSASFQpIV5HJBDyHpqK2ejVRm2AAgZCdmCGO9CIBADs";
    -	
    -	$mhtml = ($dataUrl) ? "" : "\n".mhtml($name, $data);
    -	$bundle = "bundle.putImage('myImage', 'data:image/png,$data=', 'mhtml:' + window.location.href + '!$name');";
    -
    -	// Replaces the placeholders in the template with the data from above.
    -	// Note: In a production environment you should use a template engine.
    -	$page = file_get_contents("embedimage.html");
    -	$page = str_replace("%mhtml%", $mhtml, $page);
    -	$page = str_replace("%dataUrl%", ($dataUrl) ? "true" : "false", $page);
    -	$page = str_replace("%bundle%", $bundle, $page);
    -	
    -	echo $page;
    -}
    -
    -// Flushes the compression buffers	
    -if ($compress)
    -{
    -	ob_end_flush();
    -	ob_end_flush();
    -}
    -?>
    -
    diff --git a/php/examples/fixedpoints.php b/php/examples/fixedpoints.php
    deleted file mode 100644
    index 28b7a0cb2..000000000
    --- a/php/examples/fixedpoints.php
    +++ /dev/null
    @@ -1,64 +0,0 @@
    -<?php
    -/**
    - * Copyright (c) 2006, Gaudenz Alder
    - */
    -include_once("../src/mxServer.php");
    -
    -/**
    - * Function: main
    - * 
    - * Creates a graph using the API and converts it into a PNG image.
    - */
    -function main()
    -{
    -	// Creates graph with model
    -	$model = new mxGraphModel();
    -	$graph = new mxGraph($model);
    -	$parent = $graph->getDefaultParent();
    -	
    -	// Adds cells into the model
    -	$model->beginUpdate();
    -	try
    -	{
    -		$v1 = $graph->insertVertex($parent, null, "Hello,", 20, 20, 80, 60,
    -			"shape=triangle;perimeter=trianglePerimeter");
    -		$v2 = $graph->insertVertex($parent, null, "World!", 200, 150, 80, 60,
    -			"shape=ellipse;perimeter=ellipsePerimeter");
    -		$v3 = $graph->insertVertex($parent, null, "Hello,", 200, 20, 80, 30);
    -		$e1 = $graph->insertEdge($parent, null, "", $v1, $v2,
    -			"edgeStyle=elbowEdgeStyle;elbow=horizontal;".
    -			"exitX=0.5;exitY=1;exitPerimeter=1;entryX=0;entryY=0;entryPerimeter=1;");
    -		$e2 = $graph->insertEdge($parent, null, "", $v3, $v2,
    -			"edgeStyle=elbowEdgeStyle;elbow=horizontal;orthogonal=0;".
    -			"entryX=0;entryY=0;entryPerimeter=1;");
    -	}
    -	catch (Exception $e)
    -	{
    -		$model->endUpdate();
    -		throw($e);
    -	}
    -	$model->endUpdate();
    -
    -	// Sends PNG image to client
    -	$image = $graph->createImage(null, "#FFFFFF");
    -	
    -	// Creates an interlaced image for better loading in the browser
    -	//imageInterlace($image, 1);
    -	// Marks background color as being transparent
    -	//imageColorTransparent($image, imageColorAllocate($image, 255, 255, 255));
    -
    -	header("Content-Type: image/png");	
    -	echo mxUtils::encodeImage($image);
    -}
    -
    -// Uses a local font so that all examples work on all platforms. This can be
    -// changed to vera on Mac or arial on Windows systems.
    -mxConstants::$DEFAULT_FONTFAMILY = "ttf/verah.ttf";
    -
    -// If you can't get the fonts to render try using one of the following:
    -//mxConstants::$DEFAULT_FONTFAMILY = "C:\WINDOWS\Fonts\arial.ttf";
    -//mxConstants::$DEFAULT_FONTFAMILY = "verah"; putenv("GDFONTPATH=".realpath("./ttf"));
    -//mxConstants::$TTF_ENABLED = false;
    -
    -main();
    -?>
    diff --git a/php/examples/frontend.html b/php/examples/frontend.html
    deleted file mode 100644
    index 36d17f1db..000000000
    --- a/php/examples/frontend.html
    +++ /dev/null
    @@ -1,92 +0,0 @@
    -<!--
    -  Copyright (c) 2006-2013, JGraph Ltd
    -  
    -  Backend example for mxGraph. This example demonstrates using
    -  AJAX to open and save XML from a Java backend.
    --->
    -<html>
    -<head>
    -	<title>Backend example for mxGraph</title>
    -
    -	<!-- Sets the basepath for the library if not in same directory -->
    -	<script type="text/javascript">
    -		mxBasePath = '../../javascript/src';
    -	</script>
    -
    -	<!-- Loads and initializes the library -->
    -	<script type="text/javascript" src="../../javascript/src/js/mxClient.js"></script>
    -
    -	<!-- Example code -->
    -	<script type="text/javascript">
    -		// Program starts here. Creates a sample graph in the
    -		// DOM node with the specified ID. This function is invoked
    -		// from the onLoad event handler of the document (see below).
    -		function main(container)
    -		{
    -			// Checks if the browser is supported
    -			if (!mxClient.isBrowserSupported())
    -			{
    -				// Displays an error message if the browser is not supported.
    -				mxUtils.error('Browser is not supported!', 200, false);
    -			}
    -			else
    -			{
    -				// Disables the built-in context menu
    -				mxEvent.disableContextMenu(container);
    -				
    -				// Creates the graph inside the given container
    -				var graph = new mxGraph(container);
    -
    -				// Opens a file from the backend
    -				document.body.appendChild(mxUtils.button('Open', function()
    -				{
    -					// Asks for dummy file ID to demonstrate handling of IDs in general
    -					var id = mxUtils.prompt('Enter file ID');
    -					
    -					mxUtils.get('backend.php?id=' + id, function(req)
    -					{
    -						var node = req.getDocumentElement();
    -						var dec = new mxCodec(node.ownerDocument);
    -						dec.decode(node, graph.getModel());
    -						
    -						// Stores ID for saving
    -						graph.id = id;
    -					});
    -				}));
    -				
    -				// Saves a file to the backend
    -				document.body.appendChild(mxUtils.button('Save', function()
    -				{
    -					if (graph.id == null)
    -					{
    -						mxUtils.alert('No open file');
    -					}
    -					else
    -					{
    -						var enc = new mxCodec();
    -						var node = enc.encode(graph.getModel());
    -						var xml = mxUtils.getXml(node);
    -						
    -						mxUtils.post('backend.php?id=' + graph.id, 'xml=' + encodeURIComponent(xml), function()
    -						{
    -							mxUtils.alert('Saved');
    -						}, function()
    -						{
    -							mxUtils.alert('Error');
    -						});
    -					}
    -				}));
    -			}
    -		};
    -	</script>
    -</head>
    -
    -<!-- Page passes the container for the graph to the program -->
    -<body onload="main(document.getElementById('graphContainer'))">
    -
    -	<!-- Creates a container for the graph with a grid wallpaper -->
    -	<div id="graphContainer"
    -		style="position:relative;overflow:hidden;width:321px;height:241px;background:url('../../javascript/examples/editors/images/grid.gif');cursor:default;">
    -	</div>
    -</body>
    -</html>
    diff --git a/php/examples/graph.php b/php/examples/graph.php
    deleted file mode 100644
    index f929c86b7..000000000
    --- a/php/examples/graph.php
    +++ /dev/null
    @@ -1,56 +0,0 @@
    -<?php
    -/**
    - * Copyright (c) 2006, Gaudenz Alder
    - */
    -include_once("../src/mxServer.php");
    -
    -/**
    - * Function: main
    - * 
    - * Creates a graph using the API and converts it into a PNG image.
    - */
    -function main()
    -{
    -	// Creates graph with model
    -	$model = new mxGraphModel();
    -	$graph = new mxGraph($model);
    -	$parent = $graph->getDefaultParent();
    -	
    -	// Adds cells into the model
    -	$model->beginUpdate();
    -	try
    -	{
    -	    $v1 = $graph->insertVertex($parent, null, "Hello,", 20, 20, 80, 30);
    -	    $v2 = $graph->insertVertex($parent, null, "World!", 200, 150, 80, 30);
    -	    $e1 = $graph->insertEdge($parent, null, "e1", $v1, $v2);
    -	}
    -	catch (Exception $e)
    -	{
    -		$model->endUpdate();
    -		throw($e);
    -	}
    -	$model->endUpdate();
    -
    -	// Sends PNG image to client
    -	$image = $graph->createImage(null, "#FFFFFF");
    -	
    -	// Creates an interlaced image for better loading in the browser
    -	//imageInterlace($image, 1);
    -	// Marks background color as being transparent
    -	//imageColorTransparent($image, imageColorAllocate($image, 255, 255, 255));
    -
    -	header("Content-Type: image/png");	
    -	echo mxUtils::encodeImage($image);
    -}
    -
    -// Uses a local font so that all examples work on all platforms. This can be
    -// changed to vera on Mac or arial on Windows systems.
    -mxConstants::$DEFAULT_FONTFAMILY = "ttf/verah.ttf";
    -
    -// If you can't get the fonts to render try using one of the following:
    -//mxConstants::$DEFAULT_FONTFAMILY = "C:\WINDOWS\Fonts\arial.ttf";
    -//mxConstants::$DEFAULT_FONTFAMILY = "verah"; putenv("GDFONTPATH=".realpath("./ttf"));
    -//mxConstants::$TTF_ENABLED = false;
    -
    -main();
    -?>
    diff --git a/php/examples/reader.php b/php/examples/reader.php
    deleted file mode 100644
    index db9a20261..000000000
    --- a/php/examples/reader.php
    +++ /dev/null
    @@ -1,49 +0,0 @@
    -<?php
    -/**
    - * Copyright (c) 2006, Gaudenz Alder
    - */
    -include_once("../src/mxServer.php");
    -
    -/**
    - * Function: main
    - * 
    - * Reads a graph view XML file and creates HTML on the fly,
    - * ie. without creating a graph and model for it.
    - */
    -function main()
    -{
    -	// Reads the XML representation of a graph_view_! If you need to
    -	// create an image for a graph_model_ then use the following code:
    -	//
    -	// $doc = mxUtils::parseXml($xml);
    -	// $dec = new mxCodec($doc);
    -	// $dec->decode($doc->documentElement, $graph->getModel());
    -	//
    -	// $image = $graph->createImage(null, "#FFFFFF");
    -
    -	$filename = "diagrams/graphview.xml";
    -	//echo mxGraphViewHtmlReader::convertFile($filename);
    -
    -	// Creates a PNG representation of the file
    -	$image =  mxGraphViewImageReader::convertFile($filename, "#FFFFFF");
    -
    -	// Creates an interlaced image for better loading in the browser
    -	//imageInterlace($image, 1);
    -	// Marks background color as being transparent
    -	//imageColorTransparent($image, imageColorAllocate($image, 255, 255, 255));
    -	
    -	header("Content-Type: image/png");
    -	echo mxUtils::encodeImage($image);
    -}
    -
    -// Uses a local font so that all examples work on all platforms. This can be
    -// changed to vera on Mac or arial on Windows systems.
    -mxConstants::$DEFAULT_FONTFAMILY = "ttf/verah.ttf";
    -
    -// If you can't get the fonts to render try using one of the following:
    -//mxConstants::$DEFAULT_FONTFAMILY = "C:\WINDOWS\Fonts\arial.ttf";
    -//mxConstants::$DEFAULT_FONTFAMILY = "verah"; putenv("GDFONTPATH=".realpath("./ttf"));
    -//mxConstants::$TTF_ENABLED = false;
    -
    -main();
    -?>
    diff --git a/php/examples/server.php b/php/examples/server.php
    deleted file mode 100644
    index 23fb717ba..000000000
    --- a/php/examples/server.php
    +++ /dev/null
    @@ -1,71 +0,0 @@
    -<?php
    -/**
    - * Copyright (c) 2006, Gaudenz Alder
    - *
    - * This server handles two types of POST requests:
    - * 
    - *   - Save requests persist a graph model XML to a local file.
    - *     They have an xml and draft (GET) parameter. draft
    - *     is optional, the default value for draft is false.
    - *   - Show requests convert a display XML to an image
    - *     They have an xml and format (GET) paramter.
    - *     xml is the mxGraphView XML data, format
    - *     is one of html, png or jpg.
    - */
    -// Includes the mxGraph library
    -include_once("../src/mxServer.php");
    -
    -// Gets the format parameter from the URL
    -$format = $_GET["format"];
    -
    -// Gets the XML parameter from the POST request
    -$xml = stripslashes($_POST["xml"]);
    -
    -if (isset($xml))
    -{
    -	// Creates an image for the given format
    -	if (isset($format))
    -	{
    -		// Displays a saveAs dialog on the client
    -		header("Content-Disposition: attachment; filename=\"diagram.$format\"");
    -		header("Content-Type: image/$format");
    -		$image = mxGraphViewImageReader::convert($xml, "#FFFFFF");
    -		echo mxUtils::encodeImage($image, $format);
    -	}
    -	else
    -	{
    -		// Stores the xml in a local file
    -		$ext = "tmp";
    -
    -		if (!isset($HTTP_GET_VARS["draft"]))
    -		{
    -			$ext = "xml";
    -			unlink("diagram.tmp");
    -		}
    -		
    -		$filename = "diagram.$ext";
    -		$fh = fopen($filename, "w");
    -		fputs($fh, stripslashes($xml)); 
    -		fclose($fh);
    -		chmod($filename, 0777);
    -	}
    -}
    -else
    -{
    -	// Sends the diagram file to the client if
    -	// there is a draft (tmp-file).	
    -	$filename = "diagram.tmp";
    -
    -	if (file_exists($filename))
    -	{
    -		// Avoids cache in Firefox
    -		header("Content-type: text/xml");
    -		Header("Pragma: no-cache"); #HTTP 1.0
    -		Header("Cache-control: private, no-cache, no-store");
    -		Header("Expires: 0");
    -		$fh=fopen($filename, "r");
    -		fpassthru($fh); 
    -		fclose($fh);
    -	}
    -}
    -?>
    diff --git a/php/examples/template.html b/php/examples/template.html
    deleted file mode 100644
    index 5a9a43d59..000000000
    --- a/php/examples/template.html
    +++ /dev/null
    @@ -1,67 +0,0 @@
    -<!--
    -  Copyright (c) 2008, Gaudenz Alder
    -  
    -  Template example for mxGraph. This is used as a template HTML file by the
    -  backends to demonstrate the deployment of the client with a graph embedded
    -  in the page as XML data (see graph variable in the onload-handler).
    -  
    -  *** THIS FILE MUST BE DEPLOYED BY ONE OF THE BACKENDS! ***
    --->
    -<html>
    -<head>
    -	<title>Hello, World! example for mxGraph</title>
    -
    -	<!-- Sets the basepath for the library if not in same directory -->
    -	<script type="text/javascript">
    -		mxBasePath = '../../javascript/src';
    -	</script>
    -
    -	<!-- Loads and initializes the library -->
    -	<script type="text/javascript" src="../../javascript/src/js/mxClient.js"></script>
    -
    -	<!-- Example code -->
    -	<script type="text/javascript">
    -		// Program starts here. Creates a sample graph in the
    -		// DOM node with the specified ID. This function is invoked
    -		// from the onLoad event handler of the document (see below).
    -		function main(container, xml)
    -		{
    -			// Checks if the browser is supported
    -			if (!mxClient.isBrowserSupported())
    -			{
    -				// Displays an error message if the browser is not supported.
    -				mxUtils.error('Browser is not supported!', 200, false);
    -			}
    -			else
    -			{
    -				// Creates the graph inside the given container
    -				var graph = new mxGraph(container);
    -				
    -				// Adds rubberband selection to the graph
    -				new mxRubberband(graph);
    -				
    -				var doc = mxUtils.parseXml(xml);
    -				var codec = new mxCodec(doc);
    -				codec.decode(doc.documentElement, graph.getModel());
    -			}
    -			
    -			// Adds button for saving image via PHP backend
    -			document.body.appendChild(mxUtils.button('Save Image', function()
    -			{
    -    			var node = mxUtils.getViewXml(graph, 1);
    -    			var xml = mxUtils.getXml(node);
    -
    -				new mxXmlRequest('deployment.php', 'xml=' + encodeURIComponent(xml)).simulate(document, '_blank');
    -			}));
    -		};
    -	</script>
    -</head>
    -
    -<!-- Page passes the container for the graph to the program -->
    -<body onload="main(document.getElementById('graphContainer'), '%graph%');">
    -
    -	<!-- Creates a container for the graph with a grid wallpaper -->
    -	<div id="graphContainer" style="overflow:hidden;width:321px;height:241px;background:url('../../javascript/examples/editors/images/grid.gif')">
    -	</div>
    -</body>
    -</html>
    diff --git a/php/examples/ttf/verah.ttf b/php/examples/ttf/verah.ttf
    deleted file mode 100644
    index fd3e07692..000000000
    Binary files a/php/examples/ttf/verah.ttf and /dev/null differ
    diff --git a/php/index.html b/php/index.html
    deleted file mode 100644
    index b48679ef5..000000000
    --- a/php/index.html
    +++ /dev/null
    @@ -1,68 +0,0 @@
    -<html>
    -<head>
    -	<title>mxGraph PHP</title>
    -    <link rel="stylesheet" href="../docs/css/manual-styles.css">
    -    <link rel="stylesheet" href="../docs/css/manual-colors.css">
    -</head>
    -<body>
    -<h1>mxGraph PHP</h1>
    -<h2>Installation</h2>
    -<p>
    -	The following assumes that an Apache server or another server capable of
    -	running PHP 5 is running on the default port (80) on localhost. The
    -	mxGraph top-level directory is assumed to be located at
    -	<a href="http://localhost/mxgraph">http://localhost/mxgraph</a>.
    -</p>
    -<h2>Examples</h2>
    -<h3>Graph</h3>
    -<p>
    -	In this example, a graph is programmatically created and turned into a PNG
    -	image. Point your browser to
    -	<a href="http://localhost/mxgraph/php/examples/graph.php">http://localhost/mxgraph/php/examples/graph.php</a>
    -	to run this example.
    -</p>
    -<h3>Reader</h3>
    -<p>
    -	Creates a HTML graphical representation for a GraphView which is stored in
    -	an XML file. Point your browser to 
    -	<a href="http://localhost/mxgraph/php/examples/reader.php">http://localhost/mxgraph/php/examples/reader.php</a>
    -	to run this example.
    -</p>
    -<h3>Server</h3>
    -<p>
    -	In order to be able to save files, the server.php file demonstrates how to
    -	accept a post request from a client, and put the data from the client
    -	request into a file on the disk.
    -</p>
    -<p>
    -	Before accessing the HTML files, you must modify the config file of the
    -	example you want to use. For example, when using the diagrameditor.html
    -	file, you should modify javascript/examples/editors/config/diagrameditor.xml.
    -	The only change to the config file is to add the urlPost attribute to the
    -	mxEditor node as follows:
    -</p>
    -<pre>
    -&lt;mxEditor urlPost="php/examples/server.php" ... &gt;
    -</pre>
    -<p>
    -	This enables the save function in the editor and will post the XML of the
    -	current diagram to the server.php on the server. The script will write the
    -	diagram to a local file called diagram.xml in the same directory as the
    -	script is located.
    -</p>
    -<p>
    -	Note that you will have to add the save action in the user interface. To
    -	add the save action to the dropdown list of actions, change the items in
    -	the diagrameditor.html file as follows:
    -</p>
    -<pre>
    -var items = ['redo', 'ungroup', 'cut', 'copy', 'paste', 'show', 'exportImage', 'save'];
    -</pre>
    -<p>
    -	To use the example, point your browser to
    -	<a href="http://localhost/mxgraph/javascript/examples/editors/diagrameditor.html">http://localhost/mxgraph/javascript/examples/editors/diagrameditor.html</a>
    -</p>
    -<hr size="1">
    -&copy; 2006-2017 by JGraph Ltd.
    -</body>
    -</html>
    diff --git a/php/src/canvas/mxGdCanvas.php b/php/src/canvas/mxGdCanvas.php
    deleted file mode 100644
    index b4812a450..000000000
    --- a/php/src/canvas/mxGdCanvas.php
    +++ /dev/null
    @@ -1,1414 +0,0 @@
    -<?php
    -/**
    - * Copyright (c) 2006-2013, Gaudenz Alder
    - */
    -class mxGdCanvas
    -{
    -	/** 
    -	 * Variable: antialias
    -	 *
    -	 * Specifies if image aspect should be preserved in drawImage. Default is true.
    -	 */
    -	public static $PRESERVE_IMAGE_ASPECT = true;
    -	
    -	/**
    -	 * Class: mxGdCanvas
    -	 *
    -	 * Canvas for drawing graphs using the GD library. This class requires GD
    -	 * support (GDLib). Note that rounded corners, gradients and word wrapping
    -	 * are not supported by GD.
    -	 * 
    -	 * Variable: antialias
    -	 *
    -	 * Specifies if antialiasing should be enabled. Default is false. NOTE: GD
    -	 * has a known bug where strokeWidths are ignored if this is enabled.
    -	 */
    -	var $antialias = false;
    -
    -	/**
    -	 * Variable: enableTtf
    -	 *
    -	 * Specifies if truetype fonts are enabled if available. Default is <mxConstants.TTF_ENABLED>.
    -	 */
    -	var $enableTtf;
    -
    -	/**
    -	 * Variable: shadowColor
    -	 *
    -	 * Holds the color object for the shadow color defined in
    -	 * <mxConstants.W3C_SHADOWCOLOR>.
    -	 */
    -	var $shadowColor;
    -
    -	/**
    -	 * Defines the base path for images with relative paths. Trailing slash
    -	 * is required. Default is an empty string.
    -	 */
    -	var $imageBasePath;
    -
    -	/**
    -	 * Variable: imageCache
    -	 *
    -	 * Holds the image cache.
    -	 */
    -	var $imageCache = array();
    -	
    -	/**
    -	 * Variable: image
    -	 *
    -	 * Holds the image.
    -	 */
    -	var $image;
    -	
    -	/**
    -	 * Variable: height
    -	 *
    -	 * Holds the height.
    -	 */
    -	var $scale;
    -
    -	/**
    -	 * Constructor: mxGdCanvas
    -	 *
    -	 * Constructs a new GD canvas. Use a HTML color definition for
    -	 * the optional background parameter, eg. white or #FFFFFF.
    -	 * The buffered <image> is only created if the given
    -	 * width and height are greater than 0.
    -	 */
    -	function mxGdCanvas($width = 0, $height = 0, $scale = 1,
    -		$background = null, $imageBasePath = "")
    -	{
    -	 	$this->enableTtf = mxConstants::$TTF_ENABLED;
    -		$this->imageBasePath = $imageBasePath;
    -	 	$this->scale = $scale;
    -	 	
    -	 	if ($width > 0 && $height > 0)
    -	 	{
    -			$this->image = @imageCreateTrueColor($width, $height);
    -			
    -			if ($this->antialias &&
    -				function_exists("imageantialias"))
    -			{
    -				imageantialias($this->image, true);
    -	 		}
    -			
    -			if (isset($background))
    -			{
    -				$color = $this->getColor($background);
    -				imageFilledRectangle($this->image,
    -					0, 0, $width, $height, $color);
    -			}
    -			
    -			$this->shadowColor = $this->getColor(mxConstants::$W3C_SHADOWCOLOR);
    -		}
    -	}
    -
    -	/**
    -	 * Function: loadImage
    -	 * 
    -	 * Returns an image instance for the given URL. If the URL has
    -	 * been loaded before than an instance of the same instance is
    -	 * returned as in the previous call.
    -	 */
    -	function loadImage($image)
    -	{
    -		$img = (array_key_exists($image, $this->imageCache)) ? $this->imageCache[$image] : null;
    -		
    -		if (!isset($img))
    -		{
    -			$img = mxUtils::loadImage($image);
    -
    -			if (isset($img))
    -			{
    -				$this->imageCache[$image] = $img;
    -			}
    -		}
    -		
    -		return $img;
    -	}
    -
    -	/**
    -	 * Function: drawCell
    -	 * 
    -	 * Draws the given cell state.
    -	 */
    -	function drawCell($state)
    -	{
    -		$style = $state->style;
    -		
    -		if (sizeof($state->absolutePoints) > 1)
    -		{
    -			$dashed = mxUtils::getNumber($style, mxConstants::$STYLE_DASHED);
    -			$stroke = mxUtils::getValue($style, mxConstants::$STYLE_STROKECOLOR);
    -			$strokeWidth = mxUtils::getNumber($style, mxConstants::$STYLE_STROKEWIDTH, 1) * $this->scale;
    -
    -			if ($stroke == "none")
    -			{
    -				$stroke = null;
    -			}
    -						
    -			if (isset($this->image))
    -			{
    -				// KNOWN: Stroke widths are ignored by GD if antialias is on
    -				imagesetthickness($this->image, $strokeWidth);
    -			}
    -	
    -			// Draws the start marker
    -			$marker = mxUtils::getValue($style, mxConstants::$STYLE_STARTARROW);
    -	
    -			$pts = $state->absolutePoints;
    -			$p0 = $pts[0];
    -			$pt = $pts[1];
    -			$offset = null;
    -			
    -			if (isset($marker))
    -			{
    -				$size = mxUtils::getNumber($style, mxConstants::$STYLE_STARTSIZE,
    -					mxConstants::$DEFAULT_MARKERSIZE);
    -				$offset = $this->drawMarker($marker, $pt, $p0, $size, $stroke);
    -			}
    -			else
    -			{
    -				$dx = $pt->x - $p0->x;
    -				$dy = $pt->y - $p0->y;
    -	
    -				$dist = max(1, sqrt($dx * $dx + $dy * $dy));
    -				$nx = $dx * $strokeWidth / $dist;
    -				$ny = $dy * $strokeWidth / $dist;
    -				
    -				$offset = new mxPoint($nx / 2, $ny / 2);
    -			}
    -
    -			// Applies offset to the point
    -			if (isset($offset))
    -			{
    -				$p0 = $p0->copy();
    -				$p0->x += $offset->x;
    -				$p0->y += $offset->y;
    -				
    -				unset($offset);
    -			}
    -		
    -			// Draws the end marker
    -			$len = sizeof($pts);
    -			$marker = mxUtils::getValue($style, mxConstants::$STYLE_ENDARROW);
    -			
    -			$pe = $pts[$len - 1];
    -			$pt = $pts[$len - 2];
    -			$offset = null;
    -			
    -			if (isset($marker))
    -			{
    -				$size = mxUtils::getNumber($style, mxConstants::$STYLE_ENDSIZE,
    -					mxConstants::$DEFAULT_MARKERSIZE);
    -				$offset = $this->drawMarker($marker, $pt, $pe, $size, $stroke);
    -			}
    -			else
    -			{
    -				$dx = $pt->x - $p0->x;
    -				$dy = $pt->y - $p0->y;
    -	
    -				$dist = max(1, sqrt($dx * $dx + $dy * $dy));
    -				$nx = $dx * $strokeWidth / $dist;
    -				$ny = $dy * $strokeWidth / $dist;
    -				
    -				$offset = new mxPoint($nx / 2, $ny / 2);
    -			}
    -
    -			// Applies offset to the point			
    -			if (isset($offset))
    -			{
    -				$pe = $pe->copy();
    -				$pe->x += $offset->x;
    -				$pe->y += $offset->y;
    -				
    -				unset($offset);
    -			}
    -
    -			// Draws the line segments
    -			$pt = $p0;
    -			
    -		 	for ($i = 1; $i < $len - 1; $i++)
    -		 	{
    -		 		$tmp = $pts[$i];
    -		 		$this->drawLine($pt->x, $pt->y, $tmp->x, $tmp->y, $stroke, $dashed);
    -		 		$pt = $tmp;
    -			}
    -			
    -			$this->drawLine($pt->x, $pt->y, $pe->x, $pe->y, $stroke, $dashed);
    -			
    -			if (isset($this->image))
    -			{
    -				imagesetthickness($this->image, 1);
    -			}
    -		}
    -		else
    -		{
    -			$x = $state->x;
    -			$y = $state->y;
    -			$w = $state->width;
    -			$h = $state->height;
    -
    -			// Draws the vertex
    -			if (mxUtils::getValue($style, mxConstants::$STYLE_SHAPE, "") !=
    -            	mxConstants::$SHAPE_SWIMLANE)
    -			{
    -				$this->drawShape($x, $y, $w, $h, $style);
    -			}
    -			else
    -			{
    -				$start = mxUtils::getNumber($style, mxConstants::$STYLE_STARTSIZE,
    -					mxConstants::$DEFAULT_STARTSIZE) * $this->scale;
    -
    -                    // Removes some styles to draw the content area
    -				$cloned = array_slice($style, 0);
    -				$cloned[mxConstants::$STYLE_FILLCOLOR] = $cloned[mxConstants::$STYLE_SWIMLANE_FILLCOLOR];
    -				unset($cloned[mxConstants::$STYLE_GRADIENTCOLOR]);
    -				unset($cloned[mxConstants::$STYLE_ROUNDED]);
    -
    -				// TODO: Clone style, remove fill and rounded and take into account
    -				// the label orientation
    -				//if (mxUtils::getValue($style, mxConstants::$STYLE_HORIZONTAL, true))
    -				{
    -					$this->drawShape($x, $y, $w, $h, $cloned);
    -					$this->drawShape($x, $y, $w, min($h, $start), $style);
    -				}
    -			}
    -		}
    -	}
    -	
    -	/**
    -	 * Function: drawLabel
    -	 * 
    -	 * Draws the given label.
    -	 */
    -	function drawLabel($text, $state, $html = false)
    -	{
    -		$bounds = $state->labelBounds;
    -		
    -		if (isset($bounds))
    -		{
    -			$x = $bounds->x;
    -			$y = $bounds->y;
    -			$w = $bounds->width;
    -			$h = $bounds->height;
    -			
    -			$this->drawText($text, $x, $y, $w, $h, $state->style);
    -		}
    -	}
    -	
    -	/**
    -	 * Function: drawMarker
    -	 * 
    -	 * Draws the specified marker.
    -	 */
    -	function drawMarker($type, $p0, $pe, $size, $stroke)
    -	{
    -		$offset = null;
    -
    -		// Computes the norm and the inverse norm
    -		$dx = $pe->x - $p0->x;
    -		$dy = $pe->y - $p0->y;
    -
    -		$dist = max(1, sqrt($dx*$dx+$dy*$dy));
    -		$absSize = $size * $this->scale;
    -		$nx = $dx * $absSize / $dist;
    -		$ny = $dy * $absSize / $dist;
    -		
    -		$pe = $pe->copy();
    -		$pe->x -= $nx / (2 * $size);
    -		$pe->y -= $ny / (2 * $size);
    -
    -		if ($type == mxConstants::$ARROW_CLASSIC ||
    -			$type == mxConstants::$ARROW_BLOCK)
    -		{
    -			$poly = array($pe->x, $pe->y,
    -				$pe->x - $nx - $ny / 2,
    -				$pe->y - $ny + $nx / 2);
    -
    -			if ($type == mxConstants::$ARROW_CLASSIC)
    -			{
    -				array_push($poly, $pe->x - $nx * 3 / 4, $pe->y - $ny * 3 / 4);
    -			}
    -			
    -			array_push($poly, $pe->x + $ny / 2 - $nx, $pe->y - $ny - $nx / 2);
    -			$this->drawPolygon($poly, $stroke, $stroke, false);
    -			
    -			$offset = new mxPoint(-$nx * 3 / 4, -$ny * 3 / 4);
    -		}
    -		else if ($type == mxConstants::$ARROW_OPEN)
    -		{
    -			$nx *= 1.2;
    -			$ny *= 1.2;
    -			
    -			$this->drawLine($pe->x - $nx -  $ny / 2, $pe->y - $ny + $nx / 2,
    -				$pe->x - $nx / 6, $pe->y - $ny / 6, $stroke);
    -			$this->drawLine($pe->x - $nx / 6, $pe->y - $ny / 6,
    -				$pe->x + $ny / 2 - $nx, $pe->y - $ny - $nx / 2, $stroke);
    -
    -			$offset = new mxPoint(-$nx / 4, -$ny / 4);
    -		}
    -		else if ($type == mxConstants::$ARROW_OVAL)
    -		{
    -			$nx *= 1.2;
    -			$ny *= 1.2;
    -			$absSize *= 1.2;
    -			
    -			$tmp = $absSize / 2;
    -			$x = $pe->x - $nx / 2 - $tmp;
    -			$y = $pe->y - $ny / 2 - $tmp;
    -			
    -			$this->drawOval($x, $y, $absSize, $absSize, $stroke, $stroke, false);
    -			
    -			$offset = new mxPoint(-$nx / 2, -$ny / 2);
    -		}
    -		else if ($type == mxConstants::$ARROW_DIAMOND)
    -		{
    -			$nx *= 1.2;
    -			$ny *= 1.2;
    -			
    -			$poly = array($pe->x + $nx / 2, $pe->y + $ny / 2,
    -				$pe->x - $ny / 2, $pe->y + $nx / 2,
    -				$pe->x - $nx / 2, $pe->y - $ny / 2,
    -				$pe->x + $ny, $pe->y - $nx / 2);
    -			$this->drawPolygon($poly, $stroke, $stroke, false);
    -		}
    -		
    -		return $offset;
    -	}
    -
    -	/**
    -	 * Function: getImage
    -	 *
    -	 * Returns an image that represents this canvas.
    -	 */
    -	function getImage()
    -	{
    -		return $this->image;
    -	}
    -
    -	/**
    -	 * Function: setImage
    -	 *
    -	 * Sets the image that represents the canvas.
    -	 */
    -	function setImage($img)
    -	{
    -		$this->image = $img;
    -	}
    -
    -	/**
    -	 * Function: getImageForStyle
    -	 *
    -	 * Returns an image that represents this canvas.
    -	 */
    -	function getImageForStyle($style)
    -	{
    -		$filename = mxUtils::getValue($style, mxConstants::$STYLE_IMAGE, "");
    -
    -		if ($filename != null && strpos($filename, "/") > 0)
    -		{
    -			$filename = $this->imageBasePath.$filename;
    -		}
    -
    -		return $filename;
    -	}
    -	
    -	/**
    -	 * Function: drawLine
    -	 *
    -	 * Draws the given line.
    -	 */
    -	function drawLine($x0, $y0, $x1, $y1, $stroke = null, $dashed = false)
    -	{
    -		$stroke = $this->getColor($stroke, "black");
    -		
    -		if ($dashed)
    -		{
    -			// ImageDashedLine only works for vertical lines and
    -			// ImageSetStyle doesnt work with antialiasing.
    -			if ($this->antialias &&
    -				function_exists("imageantialias"))
    -			{
    -				imageantialias($this->image, false);
    -	 		}
    -	 		
    -			$st = array($stroke, $stroke, $stroke, $stroke,
    -				IMG_COLOR_TRANSPARENT, IMG_COLOR_TRANSPARENT,
    -				IMG_COLOR_TRANSPARENT, IMG_COLOR_TRANSPARENT);
    -			imageSetStyle($this->image, $st);
    -			imageLine($this->image, $x0, $y0, $x1, $y1, IMG_COLOR_STYLED);
    -
    -			if ($this->antialias &&
    -				function_exists("imageantialias"))
    -			{
    -				imageantialias($this->image, true);
    -	 		}
    -		}
    -		else
    -		{
    -			imageLine($this->image, $x0, $y0, $x1, $y1, $stroke);
    -		}
    -	}
    -	
    -	/**
    -	 * Function: drawShape
    -	 *
    -	 * Draws the given shape.
    -	 */
    -	function drawShape($x, $y, $w, $h, $style)
    -	{
    -		// Draws the shape
    -		$shape = mxUtils::getValue($style, mxConstants::$STYLE_SHAPE);
    -		$image = $shape == mxConstants::$SHAPE_IMAGE;
    -		
    -		// Redirects background styles for image shapes
    -		$fillStyle = ($image) ? mxConstants::$STYLE_IMAGE_BACKGROUND : mxConstants::$STYLE_FILLCOLOR;
    -		$strokeStyle = ($image) ? mxConstants::$STYLE_IMAGE_BORDER : mxConstants::$STYLE_STROKECOLOR;
    -
    -        // Prepares the background and foreground
    -		$stroke = mxUtils::getValue($style, $strokeStyle);
    -		$fill = mxUtils::getValue($style, $fillStyle);
    -					
    -		if ($stroke == "none")
    -		{
    -			$stroke = null;
    -		}
    -		
    -		if ($fill == "none")
    -		{
    -			$fill = null;
    -		}
    -		
    -		if ($fill != null || $stroke != null || $image)
    -		{
    -			$shadow = mxUtils::getValue($style, mxConstants::$STYLE_SHADOW);
    -			$strokeWidth = mxUtils::getValue($style, mxConstants::$STYLE_STROKEWIDTH, 1) * $this->scale;
    -			
    -			if (isset($this->image))
    -			{
    -				imagesetthickness($this->image, $strokeWidth);
    -			}
    -
    -			if ($shape == mxConstants::$SHAPE_ELLIPSE)
    -	 		{
    -	 			$this->drawOval($x, $y, $w, $h, $fill, $stroke, $shadow);
    -	 		}
    -	 		else if ($shape == mxConstants::$SHAPE_LINE)
    -	 		{
    -				$direction = mxUtils::getValue($style, mxConstants::$STYLE_DIRECTION, mxConstants::$DIRECTION_EAST);
    -	 			
    -	            if ($direction == mxConstants::$DIRECTION_EAST || $direction == mxConstants::$DIRECTION_WEST)
    -	            {
    -	                $mid = $y + $h / 2;
    -	                $this->drawLine($x, $mid, $x + $w, $mid, $stroke);
    -	            }
    -	            else
    -	            {
    -	                $mid = $x + $w / 2;
    -	                $this->drawLine($mid, $y, $mid, $y + $h, $stroke);
    -	            }
    -	 			
    -	 		}
    -	 		else if ($shape == mxConstants::$SHAPE_DOUBLE_ELLIPSE)
    -	 		{
    -	 			$this->drawOval($x, $y, $w, $h, $fill, $stroke, $shadow);
    -	 			
    -	 			$inset = (3 + 1) * $this->scale;
    -	 			$x += $inset;
    -	 			$y += $inset;
    -	 			$w -= 2 * $inset;
    -	 			$h -= 2 * $inset;
    -	 			$this->drawOval($x, $y, $w, $h, null, $stroke, false);
    -	 		}
    -	 		else if ($shape == mxConstants::$SHAPE_RHOMBUS)
    -	 		{
    -				$this->drawRhombus($x, $y, $w, $h, $fill, $stroke, $shadow);
    -	 		}
    -	 		else if ($shape == mxConstants::$SHAPE_TRIANGLE)
    -	 		{
    -				$dir = mxUtils::getValue($style, mxConstants::$STYLE_DIRECTION);
    -				$this->drawTriangle($x, $y, $w, $h, $fill, $stroke, $shadow, $dir);
    -	 		}
    -	 		else if ($shape == mxConstants::$SHAPE_HEXAGON)
    -	 		{
    -				$dir = mxUtils::getValue($style, mxConstants::$STYLE_DIRECTION);
    -				$this->drawHexagon($x, $y, $w, $h, $fill, $stroke, $shadow, $dir);
    -	 		}
    -	 		else if ($shape == mxConstants::$SHAPE_CYLINDER)
    -	 		{
    -			 	$this->drawCylinder($x, $y, $w, $h, $fill, $stroke, $shadow);
    -	 		}
    -	 		else if ($shape == mxConstants::$SHAPE_CLOUD)
    -	 		{
    -			 	$this->drawCloud($x, $y, $w, $h, $fill, $stroke, $shadow);
    -	 		}
    -	 		else if ($shape == mxConstants::$SHAPE_ACTOR)
    -	 		{
    -			 	$this->drawActor($x, $y, $w, $h, $fill, $stroke, $shadow);
    -	 		}
    -	 		else
    -	 		{
    -				$rounded = mxUtils::getValue($style, mxConstants::$STYLE_ROUNDED);
    -				$dashed = mxUtils::getNumber($style, mxConstants::$STYLE_DASHED);
    -				$this->drawRect($x, $y, $w, $h, $fill, $stroke, $shadow, $rounded, $dashed);
    -	
    -				// Draws the image as a shape
    -		 		if ($image)
    -		 		{
    -					$img = $this->getImageForStyle($style);
    -					
    -					if ($img != null)
    -					{
    -						$aspect = mxGdCanvas::$PRESERVE_IMAGE_ASPECT;
    -						$flipH = mxUtils::getValue($style, mxConstants::$STYLE_IMAGE_FLIPH, 0);
    -						$flipV = mxUtils::getValue($style, mxConstants::$STYLE_IMAGE_FLIPV, 0);
    -						
    -						$this->drawImage($x, $y, $w, $h, $img, $aspect, $flipH, $flipV);
    -					}
    -				}
    -	 			
    -				// Draws the image of the label inside the label shape
    -	 			if ($shape == mxConstants::$SHAPE_LABEL)
    -	 			{
    -					$image = $this->getImageForStyle($style);
    -					
    -					if ($image != null)
    -					{
    -		 				$imgAlign = mxUtils::getValue($style, mxConstants::$STYLE_IMAGE_ALIGN);
    -		 				$imgValign = mxUtils::getValue($style, mxConstants::$STYLE_IMAGE_VERTICAL_ALIGN);
    -		 				$imgWidth = mxUtils::getNumber($style, mxConstants::$STYLE_IMAGE_WIDTH,
    -		 					mxConstants::$DEFAULT_IMAGESIZE) * $this->scale;
    -		 				$imgHeight = mxUtils::getNumber($style, mxConstants::$STYLE_IMAGE_HEIGHT,
    -		 					mxConstants::$DEFAULT_IMAGESIZE) * $this->scale;
    -		 				$spacing = mxUtils::getNumber($style, mxConstants::$STYLE_SPACING, 2) * $this->scale;
    -		 				
    -		 				$imgX = $x;
    -		 				
    -		 				if ($imgAlign == mxConstants::$ALIGN_LEFT)
    -		 				{
    -		 					$imgX += $spacing;
    -		 				}
    -		 				else if ($imgAlign == mxConstants::$ALIGN_RIGHT)
    -		 				{
    -		 					$imgX += $w - $imgWidth - $spacing;
    -		 				}
    -		 				else // CENTER
    -		 				{
    -		 					$imgX += ($w - $imgWidth) / 2;
    -		 				}
    -		 				
    -		 				$imgY = $y;
    -		 				
    -		 				if ($imgValign == mxConstants::$ALIGN_TOP)
    -		 				{
    -		 					$imgY += $spacing;
    -		 				}
    -		 				else if ($imgValign == mxConstants::$ALIGN_BOTTOM)
    -		 				{
    -		 					$imgY += $h - $imgHeight - $spacing;
    -		 				}
    -		 				else // MIDDLE
    -		 				{
    -		 					$imgY += ($h - $imgHeight) / 2;
    -		 				}
    -		
    -						$this->drawImage($imgX, $imgY, $imgWidth, $imgHeight, $image);
    -					} 				
    -	 			}
    -			}
    -			
    -			if (isset($this->image))
    -			{
    -				imagesetthickness($this->image, 1);
    -			}
    -		}
    -	}
    -
    -	/**
    -	 * Function: drawPolygon
    -	 *
    -	 * Draws the given polygon.
    -	 */
    -	function drawPolygon($points, $fill = null, $stroke = null, $shadow = false)
    -	{
    -		if (isset($this->image))
    -		{
    -			$n = sizeof($points) / 2;
    -			
    -			if (isset($fill))
    -		 	{
    -				if ($shadow)
    -				{
    -					imageFilledPolygon($this->image, $this->offset($points),
    -						$n, $this->shadowColor);	
    -				}
    -				
    -			 	$fill = $this->getColor($fill);
    -				imageFilledPolygon($this->image, $points, $n, $fill);
    -			}
    -			
    -		 	if (isset($stroke))
    -		 	{
    -			 	$stroke = $this->getColor($stroke);
    -				imagePolygon($this->image, $points, $n, $stroke);
    -			}
    -		}
    -	}
    -	
    -	/**
    -	 * Function: drawRect
    -	 *
    -	 * Draws then given rectangle. Rounded is currently ignored.
    -	 */
    -	function drawRect($x, $y, $w, $h, $fill = null, $stroke = null,
    -		$shadow = false, $rounded = false, $dashed = false)
    -	{
    -		// TODO: Rounded rectangles
    -	 	if (isset($fill))
    -	 	{
    -			if ($shadow)
    -			{
    -				imageFilledRectangle($this->image,
    -					$x + mxConstants::$SHADOW_OFFSETX ,
    -					$y + mxConstants::$SHADOW_OFFSETY,
    -					$x + mxConstants::$SHADOW_OFFSETX + $w,
    -					$y + mxConstants::$SHADOW_OFFSETX + $h,
    -					$this->shadowColor);
    -			}
    -			
    -		 	$fill = $this->getColor($fill);
    -			imageFilledRectangle($this->image, $x, $y, $x + $w, $y + $h, $fill);
    -		}
    -		
    -	 	if (isset($stroke))
    -	 	{
    -		 	if ($dashed)
    -		 	{
    -		 		$this->drawLine($x, $y, $x + $w, $y, $stroke, $dashed);
    -		 		$this->drawLine($x + $w, $y, $x + $w, $y + $h, $stroke, $dashed);
    -		 		$this->drawLine($x, $y + $h, $x + $w, $y + $h, $stroke, $dashed);
    -		 		$this->drawLine($x, $y + $h, $x, $y, $stroke, $dashed);
    -		 	}
    -		 	else
    -		 	{
    -		 		$stroke = $this->getColor($stroke);
    -		 		imageRectangle($this->image, $x, $y, $x + $w, $y + $h, $stroke);
    -		 	}
    -		}
    -	}
    -	
    -	/**
    -	 * Function: drawOval
    -	 *
    -	 * Draws then given ellipse.
    -	 */
    -	function drawOval($x, $y, $w, $h, $fill = null, $stroke = null, $shadow = false)
    -	{
    -	 	if (isset($fill))
    -	 	{
    -			if ($shadow)
    -			{
    -				imageFilledEllipse($this->image,
    -					$x + $w / 2 + mxConstants::$SHADOW_OFFSETX,
    -					$y + $h / 2 + mxConstants::$SHADOW_OFFSETY,
    -					$w, $h, $this->shadowColor);	
    -			}
    -			
    -		 	$fill = $this->getColor($fill);
    -			imageFilledEllipse($this->image, $x + $w / 2, $y + $h / 2,
    -				$w, $h, $fill);
    -		}
    -		
    -	 	if (isset($stroke))
    -	 	{
    -		 	$stroke = $this->getColor($stroke);
    -			imageEllipse($this->image, $x + $w / 2, $y + $h / 2,
    -				$w, $h, $stroke);
    -		}
    -	}
    -
    -	/**
    -	 * Function: drawRhombus
    -	 *
    -	 * Draws then given rhombus.
    -	 */
    -	function drawRhombus($x, $y, $w, $h, $fill = null, $stroke = null, $shadow = false)
    -	{
    -		$halfWidth = $x + $w / 2;
    -		$halfHeight = $y + $h / 2;
    -
    -		$points = array($halfWidth, $y, $x + $w, $halfHeight,
    -			$halfWidth, $y + $h, $x, $halfHeight, $halfWidth, $y);
    -			
    -		$this->drawPolygon($points, $fill, $stroke, $shadow);
    -	}
    -	
    -	/**
    -	 * Function: drawTriangle
    -	 *
    -	 * Draws then given triangle.
    -	 */
    -	function drawTriangle($x, $y, $w, $h, $fill = null, $stroke = null,
    -		$shadow = false, $direction = null)
    -	{
    -		if ($direction == mxConstants::$DIRECTION_NORTH)
    -		{
    -			$points = array($x, $y + $h, $x + $w / 2, $y,
    -				$x + $w, $y + $h, $x, $y + $h);
    -		}
    -		else if ($direction == mxConstants::$DIRECTION_SOUTH)
    -		{
    -			$points = array($x, $y, $x + $w / 2, $y + $h,
    -				$x + $w, $y, $x, $y);
    -		}
    -		else if ($direction == mxConstants::$DIRECTION_WEST)
    -		{
    -			$points = array($x + $w, $y, $x, $y + $h / 2,
    -				$x + $w, $y + $h, $x + $w, $y);
    -		}
    -		else // east
    -		{
    -			$points = array($x, $y, $x + $w, $y + $h / 2,
    -				$x, $y + $h, $x, $y);
    -		}
    -		
    -		$this->drawPolygon($points, $fill, $stroke, $shadow);
    -	}
    -		
    -	/**
    -	 * Function: drawHexagon
    -	 *
    -	 * Draws then given haxagon.
    -	 */
    -	function drawHexagon($x, $y, $w, $h, $fill = null, $stroke = null,
    -		$shadow = false, $direction = null)
    -	{
    -		if ($direction == mxConstants::$DIRECTION_NORTH ||
    -			$direction == mxConstants::$DIRECTION_SOUTH)
    -		{
    -			$points = array($x + 0.5 * $w, $y, $x + $w, $y + 0.25 * $h,
    -				$x + $w, $y + 0.75 * $h, $x + 0.5 * $w, $y + $h,
    -				$x, $y + 0.75 * $h, $x, $y + 0.25 * $h);
    -		}
    -		else
    -		{
    -			$points = array($x + 0.25 * $w, $y, $x + 0.75 * $w, $y,
    -				$x + $w, $y + 0.5 * $h, $x + 0.75 * $w, $y + $h,
    -				$x + 0.25 * $w, $y + $h, $x, $y + 0.5 * $h);
    -		}
    -		
    -		$this->drawPolygon($points, $fill, $stroke, $shadow);
    -	}
    -	
    -	/**
    -	 * Function: drawCylinder
    -	 *
    -	 * Draws then given cylinder.
    -	 */
    -	function drawCylinder($x, $y, $w, $h, $fill = null, $stroke = null, $shadow = false)
    -	{
    -		$h4 = $h / 4;
    -	 	$h8 = $h4 / 2;
    -
    -	 	if (isset($fill))
    -	 	{
    -	 		$this->drawOval($x, $y, $w, $h4, $fill, null, $shadow);
    -	 		$this->drawRect($x, $y + $h8, $w, $h - $h4, $fill, null, $shadow);
    -	 		$this->drawOval($x, $y + $h - $h4, $w, $h4, $fill, null, $shadow);
    -		}
    -		
    -	 	if (isset($stroke))
    -	 	{
    -	 		$this->drawOval($x, $y, $w, $h4, null, $stroke, false);
    -	 		$this->drawLine($x, $y + $h8, $x, $y + $h - $h8, $stroke);
    -	 		$this->drawLine($x + $w, $y + $h8, $x + $w, $y + $h - $h8, $stroke);
    -	 		$this->drawOval($x, $y + $h - $h4, $w, $h4, null, $stroke, false);
    -		}
    -
    -		// Hides lower arc for filled cylinder
    -	 	if (isset($fill) && isset($stroke))
    -	 	{
    -	 		$this->drawRect($x + 1, $y + $h - $h4, $w - 2, $h8, $fill, null, false);
    -		}
    -	}
    -	
    -	/**
    -	 * Function: drawCloud
    -	 *
    -	 * Draws then given cloud.
    -	 */
    -	function drawCloud($x, $y, $w, $h, $fill = null, $stroke = null, $shadow=false)
    -	{
    -		if (isset($fill))
    -	 	{
    -			if ($shadow)
    -			{
    -				$dx = mxConstants::$SHADOW_OFFSETX;
    -				$dy = mxConstants::$SHADOW_OFFSETY;
    -				
    -				imageFilledEllipse($this->image, $x + 0.2 * $w + $dx, $y + 0.42 * $h + $dy, 0.3 * $w, 0.29 * $h, $this->shadowColor);
    -				imageFilledEllipse($this->image, $x + 0.4 * $w + $dx, $y + 0.25 * $h + $dy, 0.4 * $w, 0.4 * $h, $this->shadowColor);
    -				imageFilledEllipse($this->image, $x + 0.75 * $w + $dx, $y + 0.35 * $h + $dy, 0.5 * $w, 0.4 * $h, $this->shadowColor);
    -				imageFilledEllipse($this->image, $x + 0.2 * $w + $dx, $y + 0.65 * $h + $dy, 0.3 * $w, 0.3 * $h, $this->shadowColor);
    -				imageFilledEllipse($this->image, $x + 0.55 * $w + $dx, $y + 0.62 * $h + $dy, 0.6 * $w, 0.6 * $h, $this->shadowColor);
    -				imageFilledEllipse($this->image, $x + 0.88 * $w + $dx, $y + 0.63 * $h + $dy, 0.3 * $w, 0.3 * $h, $this->shadowColor);
    -			}
    -
    -			$fill = $this->getColor($fill);
    -			imageFilledEllipse($this->image, $x + 0.2 * $w, $y + 0.42 * $h, 0.3 * $w, 0.29 * $h, $fill);
    -			imageFilledEllipse($this->image, $x + 0.4 * $w, $y + 0.25 * $h, 0.4 * $w, 0.4 * $h, $fill);
    -			imageFilledEllipse($this->image, $x + 0.75 * $w, $y + 0.35 * $h, 0.5 * $w, 0.4 * $h, $fill);
    -			imageFilledEllipse($this->image, $x + 0.2 * $w, $y + 0.65 * $h, 0.3 * $w, 0.3 * $h, $fill);
    -			imageFilledEllipse($this->image, $x + 0.55 * $w, $y + 0.62 * $h, 0.6 * $w, 0.6 * $h, $fill);
    -			imageFilledEllipse($this->image, $x + 0.88 * $w, $y + 0.63 * $h, 0.3 * $w, 0.3 * $h, $fill);
    -		}
    -
    -	 	if (isset($stroke))
    -	 	{
    -			$stroke = $this->getColor($stroke);
    -			imageArc($this->image, $x + 0.2 * $w, $y + 0.42 * $h, 0.3 * $w, 0.29 * $h, 125, 270, $stroke);
    -			imageArc($this->image, $x + 0.4 * $w, $y + 0.25 * $h, 0.4 * $w, 0.4 * $h, 170, 345, $stroke);
    -			imageArc($this->image, $x + 0.75 * $w, $y + 0.35 * $h, 0.5 * $w, 0.4 * $h, 230, 55, $stroke);
    -			imageArc($this->image, $x + 0.2 * $w, $y + 0.65 * $h, 0.3 * $w, 0.3 * $h, 50, 235, $stroke);
    -			imageArc($this->image, $x + 0.55 * $w, $y + 0.62 * $h, 0.6 * $w, 0.6 * $h, 33, 145, $stroke);
    -			imageArc($this->image, $x + 0.88 * $w, $y + 0.63 * $h, 0.3 * $w, 0.3 * $h, 290, 120, $stroke);
    -		}
    -	}
    -		
    -	/**
    -	 * Function: drawActor
    -	 *
    -	 * Draws then given cloud.
    -	 */
    -	function drawActor($x, $y, $w, $h, $fill = null, $stroke = null, $shadow=false)
    -	{
    -		if (isset($fill))
    -	 	{
    -			if ($shadow)
    -			{
    -				$dx = mxConstants::$SHADOW_OFFSETX;
    -				$dy = mxConstants::$SHADOW_OFFSETY;
    -					
    -				imageFilledEllipse($this->image, $x + 0.5 * $w + $dx, $y + 0.2 * $h + $dy, 0.4 * $w, 0.4 * $h, $this->shadowColor);
    -				imageFilledEllipse($this->image, $x + 0.2 * $w + $dx, $y + 0.6 * $h + $dy, 0.4 * $w, 0.4 * $h, $this->shadowColor);
    -				imageFilledEllipse($this->image, $x + 0.8 * $w + $dx, $y + 0.6 * $h + $dy, 0.4 * $w, 0.4 * $h, $this->shadowColor);
    -				imageFilledRectangle($this->image, $x + 0.2 * $w + $dx, $y + 0.4 * $h + $dy, $x + 0.8 * $w + $dx, $y + 0.6 * $h + $dy, $this->shadowColor);
    -				imageFilledRectangle($this->image, $x + $dx, $y + 0.6 * $h + $dy, $x + $w + $dx, $y + $h + $dy, $this->shadowColor);
    -			}
    -
    -			$fill = $this->getColor($fill);
    -			imageFilledEllipse($this->image, $x + 0.5 * $w, $y + 0.2 * $h, 0.4 * $w, 0.4 * $h, $fill);
    -			imageFilledEllipse($this->image, $x + 0.2 * $w, $y + 0.6 * $h, 0.4 * $w, 0.4 * $h, $fill);
    -			imageFilledEllipse($this->image, $x + 0.8 * $w, $y + 0.6 * $h, 0.4 * $w, 0.4 * $h, $fill);
    -			imageFilledRectangle($this->image, $x + 0.2 * $w, $y + 0.4 * $h, $x + 0.8 * $w, $y + 0.6 * $h, $fill);
    -			imageFilledRectangle($this->image, $x, $y + 0.6 * $h, $x + $w, $y + $h, $fill);
    -		}
    -
    -	 	if ($stroke != null)
    -	 	{
    -			$stroke = $this->getColor($stroke);
    -			imageEllipse($this->image, $x + 0.5 * $w, $y + 0.2 * $h, 0.4 * $w, 0.4 * $h, $stroke);
    -			imageLine($this->image, $x + 0.2 * $w, $y + 0.4 * $h, $x + 0.8 * $w, $y + 0.4 * $h, $stroke);
    -			imageArc($this->image, $x + 0.2 * $w, $y + 0.6 * $h, 0.4 * $w, 0.4 * $h, 180, 270, $stroke);
    -			imageArc($this->image, $x + 0.8 * $w, $y + 0.6 * $h, 0.4 * $w, 0.4 * $h, 270, 360, $stroke);
    -			imageLine($this->image, $x, $y + 0.6 * $h, $x, $y + $h, $stroke);
    -			imageLine($this->image, $x, $y + $h, $x + $w, $y + $h, $stroke);
    -			imageLine($this->image, $x + $w, $y + $h, $x + $w, $y + 0.6 * $h, $stroke);
    -		}
    -	}
    -	
    -	/**
    -	 * Function: drawImage
    -	 *
    -	 * Draws a given image.
    -	 */
    -	function drawImage($x, $y, $w, $h, $image, $aspect = true, $flipH = false, $flipV = false)
    -	{
    -		$img = $this->loadImage($image);
    -
    -		if ($img != null)
    -		{
    -			$iw = imagesx($img);
    -			$ih = imagesy($img);
    -			
    -			// Horizontal and vertical image flipping
    -			if ($flipH || $flipV)
    -			{
    -				$img = mxUtils::flipImage($img, $flipH, $flipV);
    -			}
    -			
    -			// Preserved aspect ratio
    -			if ($aspect)
    -			{
    -				$s = min($w / $iw, $h / $ih);
    -				$x0 = ($w - $iw * $s) / 2;
    -				$y0 = ($h - $ih * $s) / 2;
    -
    -				imageCopyResized($this->image, $img, $x0 + $x, $y0 + $y,
    -					0, 0, $iw * $s, $ih * $s, $iw, $ih);
    -			}
    -			else
    -			{
    -				imageCopyResized($this->image, $img, $x, $y, 0, 0,
    -					$w, $h, $iw, $ih);
    -			}
    -		}
    -	}
    -
    -	/**
    -	 * Function: drawText
    -	 */
    -	function drawText($string, $x, $y, $w, $h, $style)
    -	{
    -		if (gettype($string) == "string" && strlen($string) > 0)
    -		{
    -			// Draws the label background and border
    -			$bg = mxUtils::getValue($style, mxConstants::$STYLE_LABEL_BACKGROUNDCOLOR);
    -			$border = mxUtils::getValue($style, mxConstants::$STYLE_LABEL_BORDERCOLOR);
    -	
    -			if ($bg != null || $border != null)
    -			{			
    -				$bounds->width += 2;
    -				$bounds->x -= 2;
    -				$bounds->y -= 1;
    -	
    -				$this->drawRect($x, $y, $w, $h, $bg, $border, false);
    -			}
    -
    -			// Draws the label string			
    -			if ($this->enableTtf && function_exists("imagettftext"))
    -			{
    -				$this->drawTtfText($string, $x, $y, $w, $h, $style);
    -			}
    -			else
    -			{
    -				$this->drawFixedText($string, $x, $y, $w, $h, $style);
    -			}
    -		}
    -	}
    -	
    -	/**
    -	 * Function: getTrueTypeFont
    -	 * 
    -	 * Returns the truetype font to be used to draw the text with the given style.
    -	 */
    -	 function getTrueTypeFont($style)
    -	 {
    -	 	return mxUtils::getTrueTypeFont($style);
    -	 }
    -	
    -	/**
    -	 * Function: getTrueTypeFontSize
    -	 * 
    -	 * Returns the truetype font size to be used to draw the text with the
    -	 * given style. This returns the fontSize in the style of the default
    -	 * fontsize multiplied with <ttfSizeFactor>.
    -	 */
    -	 function getTrueTypeFontSize($style)
    -	 {
    -	 	return mxUtils::getTrueTypeFontSize(
    -	 		mxUtils::getValue($style, mxConstants::$STYLE_FONTSIZE,
    -			mxConstants::$DEFAULT_FONTSIZE) * $this->scale);
    -	 }
    -
    -	/**
    -	 * Function: drawTtfText
    -	 */
    -	function drawTtfText($string, $x, $y, $w, $h, $style)
    -	{
    -		$lines = explode("\n", $string);
    -		$lineCount = sizeof($lines);
    -		
    -		if ($lineCount > 0)
    -		{
    -			// Gets the orientation and alignment
    -			$horizontal = mxUtils::getValue($style, mxConstants::$STYLE_HORIZONTAL, true);
    -			$align = mxUtils::getValue($style, mxConstants::$STYLE_ALIGN, mxConstants::$ALIGN_CENTER);
    -
    -			if ($align == mxConstants::$ALIGN_LEFT)
    -			{
    -				if ($horizontal)
    -				{
    -					$x += mxConstants::$LABEL_INSET;
    -				}
    -				else
    -				{
    -					$y -= mxConstants::$LABEL_INSET;
    -				}
    -			}
    -			else if ($align == mxConstants::$ALIGN_RIGHT)
    -			{
    -				if ($horizontal)
    -				{
    -					$x -= mxConstants::$LABEL_INSET;
    -				}
    -				else
    -				{
    -					$y += mxConstants::$LABEL_INSET;
    -				}
    -			}
    -
    -			// Gets the font
    -			$fontSize = $this->getTrueTypeFontSize($style);
    -			$font = $this->getTrueTypeFont($style);
    -
    -			// Gets the color
    -			$fontColor = mxUtils::getValue($style, mxConstants::$STYLE_FONTCOLOR);
    -	 		$color = $this->getColor($fontColor, "black");
    -	 		
    -	 		$dy = ((($horizontal) ? $h : $w) - 2 * mxConstants::$LABEL_INSET) / $lineCount;
    -
    -			if ($horizontal)
    -			{
    -	 			$y += 0.8 * $dy + mxConstants::$LABEL_INSET;				
    -			}
    -			else
    -			{
    -				$y += $h;
    -				$x += $dy;
    -			}
    -
    -			// Draws the text line by line
    -			for ($i = 0; $i < $lineCount; $i++)
    -			{
    -				$left = $x;
    -				$top = $y;
    -				$tmp = imagettfbbox($fontSize, 0, $font, $lines[$i]);
    -				$lineWidth = $tmp[2] - $tmp[0];
    -	
    -				if ($align == mxConstants::$ALIGN_CENTER)
    -				{
    -					if ($horizontal)
    -					{
    -						$left += ($w - $lineWidth) / 2;
    -					}
    -					else
    -					{
    -						$top -= ($h - $lineWidth) / 2;
    -					}
    -				}
    -				else if ($align == mxConstants::$ALIGN_RIGHT)
    -				{
    -					if ($horizontal)
    -					{
    -						$left += $w - $lineWidth;
    -					}
    -					else
    -					{
    -						$top -= $h - $lineWidth;
    -					}
    -				}
    -				
    -				$this->drawTtfTextLine($lines[$i], $left, $top, $w, $h,
    -					$color, $fontSize, $font, ($horizontal) ? 0 : 90);
    -					
    -				if ($horizontal)
    -				{
    -					$y += $dy;
    -				}
    -				else
    -				{
    -					$x += $dy;
    -				}
    -			}
    -		}
    -	}
    -	
    -	/**
    -	 * Function: drawTtxTextLine
    -	 *
    -	 * Draws a single line of the given true type font text. The w and h are
    -	 * the width and height of the complete text box that contains this line.
    -	 */
    -	function drawTtfTextLine($line, $x, $y, $w, $h, $color, $fontSize, $font, $rot)
    -	{
    -		imagettftext($this->image, $fontSize, $rot, $x, $y, $color, $font, $line);
    -	}
    -	
    -	/**
    -	 * Function: getFixedFontSize
    -	 * 
    -	 * Returns the fixed font size for GD (1 t0 5) for the given font properties
    -	 */
    -	function getFixedFontSize($fontSize, $fontFamily, $fontStyle=null)
    -	{
    -		return mxUtils::getFixedFontSize($fontSize, $fontFamily);
    -	}
    -	
    -	/**
    -	 * Function: drawString
    -	 */
    -	function drawFixedText($string, $x, $y, $w, $h, $style)
    -	{
    -		$lines = explode("\n", $string);
    -		$lineCount = sizeof($lines);
    -		
    -		if ($lineCount > 0)
    -		{
    -			// Gets the orientation and alignment
    -			$horizontal = mxUtils::getValue($style, mxConstants::$STYLE_HORIZONTAL, true);
    -			$align = mxUtils::getValue($style, mxConstants::$STYLE_ALIGN, mxConstants::$ALIGN_CENTER);
    -
    -			if ($align == mxConstants::$ALIGN_LEFT)
    -			{
    -				if ($horizontal)
    -				{
    -					$x += mxConstants::$LABEL_INSET;
    -				}
    -				else
    -				{
    -					$y -= mxConstants::$LABEL_INSET;
    -				}
    -			}
    -			else if ($align == mxConstants::$ALIGN_RIGHT)
    -			{
    -				if ($horizontal)
    -				{
    -					$x -= mxConstants::$LABEL_INSET;
    -				}
    -				else
    -				{
    -					$y += mxConstants::$LABEL_INSET;
    -				}
    -			}
    -
    -			if ($horizontal)
    -			{
    -	 			$y += 2 * mxConstants::$LABEL_INSET;				
    -			}
    -			else
    -			{
    -				$y += $h;
    -				$x += 2 * mxConstants::$LABEL_INSET;
    -			}
    -
    -			// Gets the font
    -			$fontSize = mxUtils::getValue($style, mxConstants::$STYLE_FONTSIZE,
    -				mxConstants::$DEFAULT_FONTSIZE) * $this->scale;
    -			$fontFamily = mxUtils::getValue($style, mxConstants::$STYLE_FONTFAMILY,
    -				mxConstants::$DEFAULT_FONTFAMILY);
    -			$font = $this->getFixedFontSize($fontSize, $fontFamily);
    -
    -			// Gets the color
    -			$fontColor = mxUtils::getValue($style, mxConstants::$STYLE_FONTCOLOR);
    -	 		$color = $this->getColor($fontColor, "black");
    -	 		
    -	 		$dx = imageFontWidth($font);
    -	 		$dy = ((($horizontal) ? $h : $w) - 2 * mxConstants::$LABEL_INSET) / $lineCount;
    -
    -			// Draws the text line by line
    -			for ($i = 0; $i < $lineCount; $i++)
    -			{
    -				$left = $x;
    -				$top = $y;
    -				$lineWidth = strlen($lines[$i]) * $dx;
    -	
    -				if ($align == mxConstants::$ALIGN_CENTER)
    -				{
    -					if ($horizontal)
    -					{
    -						$left += ($w - $lineWidth) / 2;
    -					}
    -					else
    -					{
    -						$top -= ($h - $lineWidth) / 2;
    -					}
    -				}
    -				else if ($align == mxConstants::$ALIGN_RIGHT)
    -				{
    -					if ($horizontal)
    -					{
    -						$left += $w - $lineWidth;
    -					}
    -					else
    -					{
    -						$top -= $h - $lineWidth;
    -					}
    -				}
    -
    -				$this->drawFixedTextLine($lines[$i], $font,
    -						$left, $top, $color, $horizontal);
    -				
    -				if ($horizontal)
    -				{
    -					$y += $dy;
    -				}
    -				else
    -				{
    -					$x += $dy;
    -				}
    -			}
    -		}
    -	}
    -	
    -	/**
    -	 * Function: drawFixedTextLine
    -	 *
    -	 * Draws the given fixed text line.
    -	 */
    -	function drawFixedTextLine($text, $font, $left, $top, $color, $horizontal = true)
    -	{
    -		if ($horizontal)
    -		{
    -			imageString($this->image, $font, $left, $top,
    -				$text, $color);
    -		}
    -		else
    -		{
    -			imageStringUp($this->image, $font, $left, $top,
    -				$text, $color);
    -		}
    -	}
    -
    -	/**
    -	 * Function: getColor
    -	 *
    -	 * Allocates the given color and returns a reference to it. Supported
    -	 * color names are black, red, green, blue, orange, yellow, pink,
    -	 * turqoise, white, gray and any hex codes between 000000 and FFFFFF.
    -	 */
    -	function getColor($hex, $default = null)
    -	{
    -		if (!isset($hex))
    -		{
    -			$hex = $default;
    -		}
    -		
    -		$result = null;
    -		$hex = strtolower($hex);
    -		
    -		if ($hex == "black")
    -		{
    -			$result = imageColorAllocate($this->image, 0, 0, 0);
    -		}
    -		else if ($hex == "red")
    -		{
    -			$result = imageColorAllocate($this->image, 255, 0, 0);
    -		}
    -		else if ($hex == "green")
    -		{
    -			$result = imageColorAllocate($this->image, 0, 255, 0);
    -		}
    -		else if ($hex == "blue")
    -		{
    -			$result = imageColorAllocate($this->image, 0, 0, 255);
    -		}
    -		else if ($hex == "orange")
    -		{
    -			$result = imageColorAllocate($this->image, 255, 128, 64);
    -		}
    -		else if ($hex == "yellow")
    -		{
    -			$result = imageColorAllocate($this->image, 255, 255, 0);
    -		}
    -		else if ($hex == "pink")
    -		{
    -			$result = imageColorAllocate($this->image, 255, 0, 255);
    -		}
    -		else if ($hex == "turqoise")
    -		{
    -			$result = imageColorAllocate($this->image, 0, 255, 255);
    -		}
    -		else if ($hex == "white")
    -		{
    -			$result = imageColorAllocate($this->image, 255, 255, 255);
    -		}
    -		else if ($hex == "gray")
    -		{
    -			$result = imageColorAllocate($this->image, 128, 128, 128);
    -		}
    -		else if ($hex == "none")
    -		{
    -			$result = null;
    -		}
    -		else
    -		{
    -	       	$rgb = array_map("hexdec", explode("|", wordwrap(substr($hex, 1), 2, "|", 1)));
    -	       	
    -	       	if (sizeof($rgb) > 2)
    -	       	{
    -				$result = imageColorAllocate($this->image, $rgb[0], $rgb[1], $rgb[2]);
    -	       	}
    -	       	else
    -	       	{
    -	       		$result = imageColorAllocate($this->image, 0, 0, 0);
    -	       	}
    -		}
    -		
    -	 	return $result;
    -	}
    -	
    -	/**
    -	 * Function: offset
    -	 *
    -	 * Creates a new array of x, y sequences where the each coordinate is
    -	 * translated by dx and dy, respectively.
    -	 */
    -	function offset($points, $dx = null, $dy = null)
    -	{
    -		$result = array();
    -		
    -		if ($points != null)
    -		{
    -			if (!isset($dx))
    -			{
    -				$dx = mxConstants::$SHADOW_OFFSETX;
    -			}
    -			
    -			if (!isset($dy))
    -			{
    -				$dy = mxConstants::$SHADOW_OFFSETY;
    -			}
    -			
    -			for ($i = 0; $i < sizeof($points) - 1; $i = $i + 2)
    -			{
    -				array_push($result, $points[$i] + $dx);
    -				array_push($result, $points[$i + 1] + $dy);
    -			}
    -		}
    -		
    -		return $result;
    -	}
    -	
    -	/**
    -	 * Destructor: destroy
    -	 *
    -	 * Destroys all allocated resources.
    -	 */
    -	function destroy()
    -	{
    -		imageDestroy($this->image);
    -	}
    -	
    -	/**
    -	 * Function: drawGraph
    -	 * 
    -	 * Draws the given graph using this canvas.
    -	 */
    -	public static function drawGraph($graph, $clip = null, $bg = null)
    -	{
    -	 	if (!isset($clip))
    -	 	{
    -	 		$clip = $graph->getGraphBounds();
    -	 	}
    -	 	
    -	 	// TODO: Support custom origin in mxGdCanvas
    -	 	// $x = round($clip->x);
    -	 	// $y = round($clip->y);
    -	 	// $width = round($clip->width - $x + $clip->x) + 1;
    -	 	// $height = round($clip->height - $y + $clip->y) + 1;
    -	 	$width = round($clip->width + $clip->x) + 1;
    -	 	$height = round($clip->width + $clip->x) + 1;
    -	 	
    -	 	$canvas = new mxGdCanvas($width, $height, $graph->view->scale, $bg);
    -	 	
    -	 	$graph->drawGraph($canvas);
    -	 	$image = $canvas->getImage();
    -	 	//TODO: $canvas->destroy();
    -	 	
    -	 	return $image;
    -	}
    -
    -}
    -?>
    diff --git a/php/src/canvas/mxHtmlCanvas.php b/php/src/canvas/mxHtmlCanvas.php
    deleted file mode 100644
    index 956675721..000000000
    --- a/php/src/canvas/mxHtmlCanvas.php
    +++ /dev/null
    @@ -1,188 +0,0 @@
    -<?php
    -/**
    - * Copyright (c) 2006-2013, Gaudenz Alder
    - */
    -class mxHtmlCanvas extends mxGdCanvas
    -{
    -
    -	/**
    -	 * Class: mxHtmlCanvas
    -	 *
    -	 * Canvas for drawing graphs using HTML.
    -	 * 
    -	 * Variable: html
    -	 *
    -	 * Holds the html markup.
    -	 */
    -	var $html;
    -
    -	/**
    -	 * Constructor: mxGdCanvas
    -	 *
    -	 * Constructs a new GD canvas. Use a HTML color definition for
    -	 * the optional background parameter, eg. white or #FFFFFF.
    -	 */
    -	function mxHtmlCanvas($scale=1, $basePath = "")
    -	{
    -		parent::mxGdCanvas(null, null, $scale, null, $basePath);
    -		$this->html = "";
    -	}
    -
    -	/**
    -	 * Function: getHtml
    -	 *
    -	 * Gets the HTML that represents the canvas.
    -	 */
    -	function getHtml()
    -	{
    -		return $this->html;
    -	}
    -
    -	/**
    -	 * Function: out
    -	 *
    -	 * Adds the specified string to the output.
    -	 */
    -	function out($string)
    -	{
    -		return $this->html .= "$string\n";
    -	}
    -
    -	/**
    -	 * Function: drawLine
    -	 *
    -	 * Draws the specified line.
    -	 */
    -	function drawLine($x0, $y0, $x1, $y1, $stroke = null, $dashed = false)
    -	{
    - 		$tmpX = min($x0, $x1);
    - 		$tmpY = min($y0, $y1);
    - 		$w = max($x0, $x1) - $tmpX;
    - 		$h = max($y0, $y1) - $tmpY;
    - 		$x0 = $tmpX;
    - 		$y0 = $tmpY;
    - 		
    - 		if ($w == 0 || $h == 0)
    - 		{
    -			$style = "position:absolute;".
    -				"overflow:hidden;".
    -				"left:".$x0."px;".
    -				"top:".$y0."px;".
    -				"width:".$w."px;".
    -				"height:".$h."px;".
    -				"border-color:$stroke;".
    -				"border-style:solid;".
    -				"border-width:1 1 0 0px";
    -	 		$this->out("<DIV STYLE='$style'></DIV>");
    -		}
    -		else
    -		{
    -			$x = $x0 + ($x1 - $x0) / 2;
    -			$this->drawLine($x0, $y0, $x, $y0);
    -			$this->drawLine($x, $y0, $x, $y1);
    -			$this->drawLine($x, $y1, $x1, $y1);
    -		}
    - 	}
    -	
    -	/**
    -	 * Function: drawShape
    -	 *
    -	 * Draws the specified shape.
    -	 */
    -	function drawShape($shape, $x, $y, $w, $h, $stroke=null, $fill=null)
    -	{
    -		$style = "position:absolute;".
    -			"left:".$x."px;".
    -			"top:".$y."px;".
    -			"width:".$w."px;".
    -			"height:".$h."px;".
    -			"border-style:solid;".
    -			"border-color:$stroke;".
    -			"border-width:1px;".
    -			"background-color:$fill;";
    - 		$this->out("<DIV STYLE='$style'></DIV>");
    -	}
    -
    -	/**
    -	 * Function: drawImage
    -	 *
    -	 * Draws the specified image.
    -	 */
    -	function drawImage($x, $y, $w, $h, $image, $aspect = true, $flipH = false, $flipV = false)
    -	{
    -		$style = "position:absolute;".
    -			"left:".$x."px;".
    -			"top:".$y."px;".
    -			"width:".$w."px;".
    -			"height:".$h."px;";
    - 		$this->out("<IMAGE SRC='$image' STYLE='$style'/>");
    -	}
    -
    -	/**
    -	 * Function: drawText
    -	 *
    -	 * Draws the specified text.
    -	 */
    -	function drawText($string, $x, $y, $w, $h, $style)
    -	{
    -		$horizontal = mxUtils::getValue($style, mxConstants::$STYLE_HORIZONTAL, 1);
    -	 	$font = mxUtils::getValue($style, mxConstants::$STYLE_FONTFAMILY,
    -			mxConstants::$W3C_DEFAULT_FONTFAMILY);
    -		$fontSize = mxUtils::getValue($style, mxConstants::$STYLE_FONTSIZE,
    -			mxConstants::$DEFAULT_FONTSIZE) * $this->scale;
    - 		$color = mxUtils::getValue($style, mxConstants::$STYLE_FONTCOLOR, "black");
    -		$align = mxUtils::getValue($style, mxConstants::$STYLE_ALIGN, "center");
    -		$valign = mxUtils::getValue($style, mxConstants::$STYLE_VERTICAL_ALIGN, "middle");
    -
    -		$style = "position:absolute;".
    -			"overflow:hidden;".
    -			"left:".($x-4)."px;".
    -			"width:".$w."px;".
    -			"height:".$h."px;".
    -			"font-family:$font;".
    -			"font-size:".$fontSize."px;".
    -			"color:$color;";
    -			
    -		if ($horizontal)
    -		{
    -			$style .= "top:".($y-5)."px;";
    -		}
    -		else
    -		{
    -			$style .= "top:".($y-$h)."px;";
    -		}
    -		
    -		$string = htmlentities($string);
    -		$string = str_replace("\n", "<br>", $string);
    - 		$this->out("<TABLE STYLE='$style'>".
    -			"<TR><TD ALIGN='$align' VALIGN='$valign'>".
    -			"$string</TD></TR></TABLE>");
    -	}
    -
    -	/**
    -	 * Destructor: destroy
    -	 *
    -	 * Destroy all allocated resources.
    -	 */
    -	function destroy()
    -	{
    -	 	$this->html = "";
    -	}
    -	
    -	/**
    -	 * Function: drawGraph
    -	 * 
    -	 * Draws the given graph using this canvas.
    -	 */
    -	public static function drawGraph($graph, $clip = null, $bg = null)
    -	{
    -	 	$graph->view->validate();
    -
    -	 	$canvas = new mxHtmlCanvas($graph->view->scale);
    -	 	$graph->drawGraph($canvas);
    -	 	
    -	 	return $canvas->getHtml();
    -	}
    -
    -}
    -?>
    diff --git a/php/src/index.txt b/php/src/index.txt
    deleted file mode 100644
    index a8a89faa1..000000000
    --- a/php/src/index.txt
    +++ /dev/null
    @@ -1,19 +0,0 @@
    -Document: API Specification
    -
    -Overview:
    -
    -  This PHP library is divided into 4 packages. The top-level <mxServer>
    -  class dynamically includes everything else.
    -  
    -  The *view* and *model* packages implement the graph component, represented
    -  by <mxGraph>. It refers to a <mxGraphModel> which contains <mxCell>s and
    -  caches the state of the cells in a <mxGraphView>. The cells are painted
    -  using a <mxCanvas> based on the appearance defined in <mxStylesheet>.
    -
    -  The *io* package implements a generic <mxObjectCodec> for turning
    -  PHP objects into XML. The main class is <mxCodec>. <mxCodecRegistry>
    -  is the global registry for custom codecs.
    -
    -Requirements:
    -
    -  The I/O module requires libxml support. The <mxGdCanvas> requires GD support.
    diff --git a/php/src/io/mxCellCodec.php b/php/src/io/mxCellCodec.php
    deleted file mode 100644
    index f1a85048e..000000000
    --- a/php/src/io/mxCellCodec.php
    +++ /dev/null
    @@ -1,210 +0,0 @@
    -<?php
    -/**
    - * Copyright (c) 2006-2013, Gaudenz Alder
    - */
    -class mxCellCodec extends mxObjectCodec
    -{
    -
    -	/**
    -	 * Class: mxCellCodec
    -	 *
    -	 * Codec for <mxCell>s. This class is created and registered
    -	 * dynamically at load time and used implicitely via <mxCodec>
    -	 * and the <mxCodecRegistry>.
    -	 *
    -	 * Transient Fields:
    -	 *
    -	 * - children
    -	 * - edges
    -	 * - states
    -	 * - overlay
    -	 * - mxTransient
    -	 *
    -	 * Reference Fields:
    -	 *
    -	 * - parent
    -	 * - source
    -	 * - target
    -	 * 
    -	 * Constructor: mxObjectCodec
    -	 *
    -	 * Constructs a new codec for the specified template object.
    -	 * The variables in the optional exclude array are ignored by
    -	 * the codec. Variables in the optional idrefs array are
    -	 * turned into references in the XML. The optional mapping
    -	 * may be used to map from variable names to XML attributes.
    -	 *
    -	 * Parameters:
    -	 *
    -	 * template - Prototypical instance of the object to be
    -	 * encoded/decoded.
    -	 * exclude - Optional array of fieldnames to be ignored.
    -	 * idrefs - Optional array of fieldnames to be converted to/from
    -	 * references.
    -	 * mapping - Optional mapping from field- to attributenames.
    -	 */
    -	function mxCellCodec($template)
    -	{
    -		parent::mxObjectCodec($template, array("children", "edges", "states",
    -			"overlay", "mxTransient"), array("parent",
    -			"source", "target"));
    -	}
    -	
    -	/**
    -	 * Override <mxObjectCodec.isExcluded>.
    -	 */
    -	function isExcluded($obj, $attr, $value, $isWrite)
    -	{
    -		return parent::isExcluded($obj, $attr, $value, $isWrite) ||
    -				($isWrite && $attr == "value" && is_object($value) &&
    -			   get_class($value) == "DOMElement");
    -	}
    -
    -	/**
    -	 * Override <mxObjectCodec.afterEncode>.
    -	 */
    -	function afterEncode($enc, $obj, $node)
    -	{
    -		if (is_object($obj->value) && get_class($obj->value) == "DOMElement")
    -		{
    -			// Wraps the graphical annotation up in the
    -			// user object (inversion) by putting the
    -			// result of the default encoding into
    -			// a clone of the user object (node type 1)
    -			// and returning this cloned user object.
    -			$tmp = $node;
    -
    -			$node = $enc->document->importNode($obj->value, true);
    -			$node->appendChild($tmp);
    -						
    -			// Moves the id attribute to the outermost
    -			// XML node, namely the node which denotes
    -			// the object boundaries in the file.
    -			$id = $tmp->getAttribute("id");
    -			$node->setAttribute("id", $id);
    -			$tmp->removeAttribute("id");
    -		}
    -
    -		return $node;
    -	}
    -
    -	/**
    -	 * Override <mxObjectCodec.beforeDecode>.
    -	 */
    -	function beforeDecode($dec, $node, &$obj)
    -	{
    -		$inner = $node;
    -		$classname = $this->getName();
    -		
    -		if ($node->nodeName != $classname)
    -		{
    -			// Passes the inner graphical annotation node to the
    -			// object codec for further processing of the cell.
    -			$tmp = $node->getElementsByTagName($classname)->item(0);
    -			
    -			if (isset($tmp) && $tmp->parentNode == $node)
    -			{
    -				$inner = $tmp;
    -
    -				// Removes annotation and whitespace from node
    -				$tmp2 = $tmp->previousSibling;
    -
    -				while (isset($tmp2) && $tmp2->nodeType == XML_TEXT_NODE)
    -				{
    -					$tmp3 = $tmp2->previousSibling;
    -
    -					if (strlen(trim($tmp2->textContent)) == 0)
    -					{
    -						$tmp2->parentNode->removeChild($tmp2);
    -					}
    -					
    -					$tmp2 = $tmp3;
    -				}
    -				
    -				// Removes more whitespace
    -				$tmp2 = $tmp->nextSibling;
    -				
    -				while (isset($tmp2) && $tmp2->nodeType == XML_TEXT_NODE)
    -				{
    -					$tmp3 = $tmp2->previousSibling;
    -					
    -					if (strlen(trim($tmp2->textContent)) == 0)
    -					{
    -						$tmp2->parentNode->removeChild($tmp2);
    -					}
    -					
    -					$tmp2 = $tmp3;
    -				}
    -				
    -				$tmp->parentNode->removeChild($tmp);
    -			}
    -			else
    -			{
    -				$inner = null;
    -			}
    -			
    -			// Creates the user object out of the XML node
    -			$obj->value = $node->cloneNode(true);
    -			$id = $obj->value->getAttribute("id");
    -			
    -			if (strlen($id) > 0)
    -			{
    -				$obj->setId($id);
    -				$obj->value->removeAttribute("id");
    -			}
    -		}
    -		else
    -		{
    -			$obj->setId($node->getAttribute("id"));
    -		}
    -			
    -		// Preprocesses and removes all Id-references
    -		// in order to use the correct encoder (this)
    -		// for the known references to cells (all).
    -		if (isset($inner))
    -		{
    -			for ($i = 0; $i < sizeof($this->idrefs); $i++)
    -			{
    -				$attr = $this->idrefs[$i];
    -				$ref = $inner->getAttribute($attr);
    -				
    -				if (strlen($ref) > 0)
    -				{
    -					$inner->removeAttribute($attr);
    -					$object = (isset($dec->objects[$ref])) ? $dec->objects[$ref] : null;
    -					
    -					if (!isset($object))
    -					{
    -						$object = $dec->lookup($ref);
    -					}
    -					
    -					if (!isset($object))
    -					{
    -						// Needs to decode forward reference
    -						$element = $dec->getElementById($ref);
    -
    -						if (isset($element))
    -						{
    -							$decoder = mxCodecRegistry::$codecs[$element->nodeName];
    -	
    -							if (!isset($decoder))
    -							{
    -								$decoder = $this;
    -							}
    -
    -							$object = $decoder->decode($dec, $element);
    -						}
    -					}
    -											
    -					$obj->$attr = $object;
    -				}
    -			}
    -		}
    -		
    -		return $inner;
    -	}
    -
    -}
    -
    -mxCodecRegistry::register(new mxCellCodec(new mxCell()));
    -?>
    diff --git a/php/src/io/mxCodec.php b/php/src/io/mxCodec.php
    deleted file mode 100644
    index 4f15fbd67..000000000
    --- a/php/src/io/mxCodec.php
    +++ /dev/null
    @@ -1,474 +0,0 @@
    -<?php
    -/**
    - * Copyright (c) 2006-2013, Gaudenz Alder
    - */
    -class mxCodec
    -{
    -	
    -	/**
    -	 * Class: mxCodec
    -	 *
    -	 * XML codec for PHP object graphs. In order to resolve forward references
    -	 * when reading files the XML document that contains the data must be passed
    -	 * to the constructor.
    -	 * 
    -	 * Variable: document
    -	 *
    -	 * The owner document of the codec.
    -	 */
    -	var $document;
    -	
    -	/**
    -	 * Variable: objects
    -	 *
    -	 * Maps from IDs to objects.
    -	 */
    -	var $objects = array();
    -
    -	/**
    -	 * Variable: elements
    -	 *
    -	 * Maps from IDs to elements.
    -	 */
    -	var $elements = null;
    -	
    -	/**
    -	 * Variable: encodeDefaults
    -	 *
    -	 * Specifies if default values should be encoded.
    -	 * Default is false.
    -	 */
    -	var $encodeDefaults = false;
    -
    -	/**
    -	 * Constructor: mxGraphViewHtmlReader
    -	 *
    -	 * Constructs a new HTML graph view reader.
    -	 */
    -	function mxCodec($document=null)
    -	{
    -		if ($document == null)
    -		{
    -			$document = mxUtils::createXmlDocument();
    -		}
    -		
    -		$this->document = $document;
    -	}
    -
    -	/**
    -	 * Function: putObject
    -	 * 
    -	 * Assoiates the given object with the given ID.
    -	 * 
    -	 * Parameters
    -	 * 
    -	 * id - ID for the object to be associated with.
    -	 * obj - Object to be associated with the ID.
    -	 */
    -	function putObject($id, $object)
    -	{
    -		$this->objects[$id] = $object;
    -
    -		return $object;
    -	}
    -
    -	/**
    -	 * Function: getObject
    -	 *
    -	 * Returns the decoded object for the element with the specified ID in
    -	 * <document>. If the object is not known then <lookup> is used to find an
    -	 * object. If no object is found, then the element with the respective ID
    -	 * from the document is parsed using <decode>.
    -	 */
    -	function getObject($id)
    -	{		
    -		$obj = null;
    -		
    -		if (isset($id))
    -		{
    -			$obj = $this->objects[$id];
    -			
    -			if (!isset($obj))
    -			{
    -				$obj = $this->lookup($id);
    -				
    -				if (!isset($obj))
    -				{
    -					$node = $this->getElementById($id);
    -					
    -					if (isset($node))
    -					{
    -						$obj = $this->decode($node);
    -					}
    -				}
    -			}
    -		}
    -		
    -		return $obj;
    -	}
    -
    -	/**
    -	 * Function: lookup
    -	 *
    -	 * Hook for subclassers to implement a custom lookup
    -	 * mechanism for cell IDs. This implementation always
    -	 * returns null.
    -	 *
    -	 * Parameters:
    -	 *
    -	 * id - ID of the object to be returned.
    -	 */
    -	function lookup($id)
    -	{		
    -		return null;
    -	}
    -
    -	/**
    -	 * Function: getElementById
    -	 *
    -	 * Returns the element with the given ID from <document>.
    -	 *
    -	 * Parameters:
    -	 *
    -	 * id - String that contains the ID.
    -	 */
    -	function getElementById($id)
    -	{
    -		if ($this->elements == null)
    -		{
    -			$this->elements = array();
    -			$this->addElement($this->document->documentElement);
    -		}
    -	
    -		return $this->elements[$id];
    -	}
    -	
    -	/**
    -	 * Function: addElement
    -	 *
    -	 * Adds the given element to <elements> if it has an ID.
    -	 */
    -	function addElement($node)
    -	{
    -		if ($node instanceof DOMElement)
    -		{
    -			$id = $node->getAttribute("id");
    -			
    -			if ($id != null && $this->elements[$id] == null)
    -			{
    -				$this->elements[$id] = $node;
    -			}
    -		}
    -		
    -		$node = $node->firstChild;
    -		
    -		while ($node != null)
    -		{
    -			$this->addElement($node);
    -			$node = $node->nextSibling;
    -		}
    -	}
    -
    -	/**
    -	 * Function: getId
    -	 *
    -	 * Returns the ID of the specified object. This implementation
    -	 * calls <reference> first and if that returns null handles
    -	 * the object as an <mxCell> by returning their IDs using
    -	 * <mxCell.getId>. If no ID exists for the given cell, then
    -	 * an on-the-fly ID is generated using <mxCellPath.create>.
    -	 *
    -	 * Parameters:
    -	 *
    -	 * obj - Object to return the ID for.
    -	 */
    -	function getId($obj)
    -	{
    -		$id = null;
    -		
    -		if (isset($obj))
    -		{
    -			$id = $this->reference($obj);
    -			
    -			if (!isset($id) && mxCodecRegistry::getName($obj) == "mxCell")
    -			{
    -				$id = $obj->getId();
    -
    -				if (!isset($id))
    -				{
    -					// Uses an on-the-fly Id
    -					$id = mxCellPath::create($obj);
    -					
    -					if (strlen($id) == 0)
    -					{
    -						$id = "root";
    -					}
    -				}
    -			}
    -		}
    -		
    -		return $id;
    -	}
    -
    -	/**
    -	 * Function: reference
    -	 *
    -	 * Hook for subclassers to implement a custom method
    -	 * for retrieving IDs from objects. This implementation
    -	 * always returns null.
    -	 *
    -	 * Parameters:
    -	 *
    -	 * obj - Object whose ID should be returned.
    -	 */
    -	function reference($obj)
    -	{
    -		return null;
    -	}
    -	
    -	/**
    -	 * Function: encode
    -	 *
    -	 * Encodes the specified object and returns the resulting
    -	 * XML node.
    -	 *
    -	 * Parameters:
    -	 *
    -	 * obj - Object to be encoded. 
    -	 */
    -	function encode($obj)
    -	{
    -		$node = null;
    -		
    -		if (is_object($obj) || is_array($obj))
    -		{
    -			if (is_array($obj))
    -			{
    -				$enc = new mxObjectCodec(array());
    -			}
    -			else
    -			{
    -				$enc = mxCodecRegistry::getCodec(
    -					mxCodecRegistry::getName($obj));
    -			}
    -			
    -			if (isset($enc))
    -			{
    -				$node = $enc->encode($this, $obj);
    -			}
    -			else
    -			{
    -				if (get_class($obj) == "DOMElement")
    -				{
    -					$node = $obj->cloneNode(true);
    -				}
    -				else
    -				{
    -		    		mxLog::warn("mxCodec.encode: No codec for ".
    -		    			mxCodecRegistry::getName($obj));
    -				}
    -			}
    -		}
    -		
    -		return $node;
    -	}
    -
    -	/**
    -	 * Function: decode
    -	 *
    -	 * Decodes the given XML node. The optional "into"
    -	 * argument specifies an existing object to be
    -	 * used. If no object is given, then a new instance
    -	 * is created using the constructor from the codec.
    -	 *
    -	 * The function returns the passed in object or
    -	 * the new instance if no object was given.
    -	 *
    -	 * Parameters:
    -	 *
    -	 * node - XML node to be decoded.
    -	 * into - Optional object to be decodec into.
    -	 */
    -	function decode($node, $into = null)
    -	{
    -		$obj = null;
    -		
    -		if (isset($node) && $node->nodeType == XML_ELEMENT_NODE)
    -		{
    -			$dec = mxCodecRegistry::getCodec($node->nodeName);
    -			
    -			try
    -			{
    -				if (isset($dec))
    -				{
    -					$obj = $dec->decode($this, $node, $into);
    -				}
    -				else
    -				{
    -					$obj = $node->cloneNode(true);
    -					$obj->removeAttribute("as");
    -				}
    -			}
    -			catch (Exception $ex)
    -			{
    -				// ignore
    -				mxLog::debug("Cannot decode ".$node->nodeName.": $ex");
    -				throw $ex;
    -			}
    -		}
    -		
    -		return $obj;
    -	}
    -
    -	/**
    -	 * Function: encodeCell
    -	 *
    -	 * Encoding of cell hierarchies is built-into the core, but
    -	 * is a higher-level function that needs to be explicitely
    -	 * used by the respective object encoders (eg. <mxModelCodec>,
    -	 * <mxChildChangeCodec> and <mxRootChangeCodec>). This
    -	 * implementation writes the given cell and its children as a
    -	 * (flat) sequence into the given node. The children are not
    -	 * encoded if the optional includeChildren is false. The
    -	 * function is in charge of adding the result into the
    -	 * given node and has no return value.
    -	 *
    -	 * Parameters:
    -	 *
    -	 * cell - <mxCell> to be encoded.
    -	 * node - Parent XML node to add the encoded cell into.
    -	 * includeChildren - Optional boolean indicating if the
    -	 * function should include all descendents. Default is true. 
    -	 */
    -	function encodeCell($cell, $node, $includeChildren=true)
    -	{
    -		$node->appendChild($this->encode($cell));
    -		
    -		if ($includeChildren)
    -		{
    -			$childCount = $cell->getChildCount();
    -			
    -			for ($i = 0; $i < $childCount; $i++)
    -			{
    -				$this->encodeCell($cell->getChildAt($i), $node);
    -			}
    -		}
    -	}
    -
    -	/**
    -	 * Function: decodeCell
    -	 *
    -	 * Decodes cells that have been encoded using inversion, ie.
    -	 * where the user object is the enclosing node in the XML,
    -	 * and restores the group and graph structure in the cells.
    -	 * Returns a new <mxCell> instance that represents the
    -	 * given node.
    -	 *
    -	 * Parameters:
    -	 *
    -	 * node - XML node that contains the cell data.
    -	 * restoreStructures - Optional boolean indicating whether
    -	 * the graph structure should be restored by calling insert
    -	 * and insertEdge on the parent and terminals, respectively.
    -	 * Default is true.
    -	 */
    -	function decodeCell($node, $restoreStructures = true)
    -	{
    -		$cell = null;
    -		
    -		if (isset($node) && $node->nodeType == XML_ELEMENT_NODE)
    -		{
    -			// Tries to find a codec for the given node name. If that does
    -			// not return a codec then the node is the user object (an XML node
    -			// that contains the mxCell, aka inversion).
    -			$decoder = mxCodecRegistry::getCodec($node->nodeName);
    -
    -			// Tries to find the codec for the cell inside the user object.
    -			// This assumes all node names inside the user object are either
    -			// not registered or they correspond to a class for cells.
    -			if (!isset($decoder))
    -			{
    -				$child = $node->firstChild;
    -				
    -				while (isset($child) && !($decoder instanceof mxCellCodec))
    -				{
    -					$decoder = mxCodecRegistry::getCodec($child->nodeName);
    -					$child = $child->nextSibling;
    -				}
    -			}
    -			
    -			if (!($decoder instanceof mxCellCodec))
    -			{
    -				$decoder = mxCodecRegistry::getCodec("mxCell");
    -			}
    -
    -			$cell = $decoder->decode($this, $node);
    -			
    -			if ($restoreStructures)
    -			{
    -				$this->insertIntoGraph($cell);
    -			}
    -		}
    -		
    -		return $cell;
    -	}
    -	
    -	/**
    -	 * Function: insertIntoGraph
    -	 *
    -	 * Inserts the given cell into its parent and terminal cells.
    -	 */
    -	function insertIntoGraph($cell)
    -	{
    -		$parent = $cell->getParent();
    -		$source = $cell->getTerminal(true);
    -		$target = $cell->getTerminal(false);
    -		
    -		// Fixes possible inconsistencies during insert into graph
    -		$cell->setTerminal(null, false);
    -		$cell->setTerminal(null, true);
    -		$cell->setParent(null);
    -		
    -		if (isset($parent))
    -		{
    -			$parent->insert($cell);
    -		}
    -
    -		if (isset($source))
    -		{
    -			$source->insertEdge($cell, true);
    -		}
    -
    -		if (isset($target))
    -		{
    -			$target->insertEdge($cell, false);
    -		}
    -	}
    -	
    -	/**
    -	 * Function: setAttribute
    -	 *
    -	 * Sets the attribute on the specified node to value. This is a
    -	 * helper method that makes sure the attribute and value arguments
    -	 * are not null.
    -	 *
    -	 * Parameters:
    -	 *
    -	 * node - XML node to set the attribute for.
    -	 * attributes - Attributename to be set.
    -	 * value - New value of the attribute.
    -	 */
    -	function setAttribute($node, $attribute, $value)
    -	{
    -		if (is_array($value))
    -		{
    -			error_log("cannot write array $attribute");
    -		}
    -		else if (isset($attribute) && isset($value))
    -		{
    -			$node->setAttribute($attribute, $value);
    -		}
    -	}
    -
    -}
    -?>
    diff --git a/php/src/io/mxCodecRegistry.php b/php/src/io/mxCodecRegistry.php
    deleted file mode 100644
    index 31fdde7f2..000000000
    --- a/php/src/io/mxCodecRegistry.php
    +++ /dev/null
    @@ -1,152 +0,0 @@
    -<?php
    -/**
    - * Copyright (c) 2006-2013, Gaudenz Alder
    - */
    -class mxCodecRegistry
    -{
    -
    -	/**
    -	 * Class: mxCodecRegistry
    -	 *
    -	 * A class to register codecs for objects.
    -	 * 
    -	 * Variable: codecs
    -	 *
    -	 * Maps from constructor names to codecs.
    -	 */
    -	public static $codecs = array();
    -
    -	/**
    -	 * Variable: aliases
    -	 *
    -	 * Maps from classnames to codecnames.
    -	 */
    -	public static $aliases = array();
    -	
    -	/**
    -	 * Function: register
    -	 *
    -	 * Registers a new codec and associates the name of the template constructor
    -	 * in the codec with the codec object. Automatically creates an alias if the
    -	 * codename and the classname are not equal.
    -	 *
    -	 * Parameters:
    -	 *
    -	 * codec - <mxObjectCodec> to be registered.
    -	 */
    -	static function register($codec)
    -	{
    -		if (isset($codec))
    -		{
    -			$name = $codec->getName();
    -			mxCodecRegistry::$codecs[$name] = $codec;
    -			
    -			$classname = mxCodecRegistry::getName($codec->template);
    -			
    -			if ($classname != $name)
    -			{
    -				mxCodecRegistry::addAlias($classname, $name);
    -			}
    -		}
    -		
    -		return $codec;
    -	}
    -
    -	/**
    -	 * Function: addAlias
    -	 *
    -	 * Adds an alias for mapping a classname to a codecname.
    -	 */
    -	static function addAlias($classname, $codecname)
    -	{
    -		mxCodecRegistry::$aliases[$classname] = $codecname;
    -	}
    -	/**
    -	 * Function: getCodec
    -	 *
    -	 * Returns a codec that handles objects that are constructed
    -	 * using the given ctor.
    -	 *
    -	 * Parameters:
    -	 *
    -	 * ctor - JavaScript constructor function. 
    -	 */
    -	static function getCodec($name)
    -	{
    -		$codec = null;
    -		
    -		if (isset($name))
    -		{
    -			if (isset(mxCodecRegistry::$aliases[$name]))
    -			{
    -				$tmp = mxCodecRegistry::$aliases[$name];
    -				
    -				if (strlen($tmp) > 0)
    -				{
    -					$name = $tmp;
    -				}
    -			}
    -			
    -			$codec = (isset(mxCodecRegistry::$codecs[$name])) ?
    -				mxCodecRegistry::$codecs[$name] : null;
    -				
    -			// Registers a new default codec for the given constructor
    -			// if no codec has been previously defined.
    -			if (!isset($codec))
    -			{
    -				try
    -				{
    -					$obj = mxCodecRegistry::getInstanceForName($name);
    -					
    -					if (isset($obj))
    -					{
    -						$codec = new mxObjectCodec($obj);
    -						mxCodecRegistry::register($codec);
    -					}
    -				}
    -				catch (Exception $e)
    -				{
    -					// ignore
    -				}
    -			}
    -		}
    -		
    -		return $codec;
    -	}
    -
    -	/**
    -	 * Function: getInstanceForName
    -	 *
    -	 * Creates and returns a new instance for the given class name.
    -	 */
    -	static function getInstanceForName($name)
    -	{
    -		if (class_exists($name))
    -		{
    -			return new $name();
    -		}
    -		
    -		return null;
    -	}
    -	
    -	/**
    -	 * Function: getName
    -	 *
    -	 * Returns the codec name for the given object instance.
    -	 *
    -	 * Parameters:
    -	 *
    -	 * obj - PHP object to return the codec name for. 
    -	 */
    -	static function getName($obj)
    -	{
    -		if (is_array($obj))
    -		{
    -			return "Array";
    -		}
    -
    -		return get_class($obj);
    -	}
    -
    -}
    -?>
    diff --git a/php/src/io/mxModelCodec.php b/php/src/io/mxModelCodec.php
    deleted file mode 100644
    index dd237a74f..000000000
    --- a/php/src/io/mxModelCodec.php
    +++ /dev/null
    @@ -1,92 +0,0 @@
    -<?php
    -/**
    - * Copyright (c) 2006-2013, Gaudenz Alder
    - */
    -class mxModelCodec extends mxObjectCodec
    -{
    -
    -	/**
    -	 * Class: mxModelCodec
    -	 *
    -	 * Codec for <mxGraphModels>. This class is created and registered
    -	 * dynamically at load time and used implicitly via <mxCodec>
    -	 * and the <mxCodecRegistry>.
    -	 * 
    -	 * Constructor: mxObjectCodec
    -	 *
    -	 * Constructs a new codec for the specified template object.
    -	 * The variables in the optional exclude array are ignored by
    -	 * the codec. Variables in the optional idrefs array are
    -	 * turned into references in the XML. The optional mapping
    -	 * may be used to map from variable names to XML attributes.
    -	 *
    -	 * Parameters:
    -	 *
    -	 * template - Prototypical instance of the object to be
    -	 * encoded/decoded.
    -	 * exclude - Optional array of fieldnames to be ignored.
    -	 * idrefs - Optional array of fieldnames to be converted to/from
    -	 * references.
    -	 * mapping - Optional mapping from field- to attributenames.
    -	 */
    -	function mxModelCodec($template)
    -	{
    -		parent::mxObjectCodec($template);
    -	}
    -	
    -	/**
    -	 * Overrides <mxObjectCodec.encodeObject>.
    -	 */
    -	function encodeObject($enc, $obj, $node)
    -	{
    -		$rootNode = $enc->document->createElement("root");
    -		$enc->encodeCell($obj->getRoot(), $rootNode);
    -		$node->appendChild($rootNode);
    -	}
    -
    -	/**
    -	 * Override <mxObjectCodec.decodeChild>.
    -	 */	
    -	function decodeChild($dec, $child, &$obj)
    -	{
    -		if ($child->nodeName == "root")
    -		{
    -			$this->decodeRoot($dec, $child, $obj);
    -		}
    -		else
    -		{
    -			parent::decodeChild($dec, $child, $obj);
    -		}
    -	}
    -		
    -	/**
    -	 * Override <mxObjectCodec.decodeRoot>.
    -	 */
    -	function decodeRoot($dec, $root, $model)
    -	{
    -		$rootCell = null;
    -		$tmp = $root->firstChild;
    -		
    -		while (isset($tmp))
    -		{
    -			$cell = $dec->decodeCell($tmp);
    -			
    -			if (isset($cell) && $cell->getParent() == null)
    -			{
    -				$rootCell = $cell;
    -			}
    -			
    -			$tmp = $tmp->nextSibling;
    -		}
    -
    -		// Sets the root on the model if one has been decoded
    -		if (isset($rootCell))
    -		{
    -			$model->setRoot($rootCell);
    -		}
    -	}
    -
    -}
    -
    -mxCodecRegistry::register(new mxModelCodec(new mxGraphModel()));
    -?>
    diff --git a/php/src/io/mxObjectCodec.php b/php/src/io/mxObjectCodec.php
    deleted file mode 100644
    index 6bd6938d9..000000000
    --- a/php/src/io/mxObjectCodec.php
    +++ /dev/null
    @@ -1,826 +0,0 @@
    -<?php
    -/**
    - * Copyright (c) 2006-2013, Gaudenz Alder
    - */
    -class mxObjectCodec
    -{
    -	
    -	/**
    -	 * Class: mxObjectCodec
    -	 *
    -	 * XML codec for PHP object graphs.
    -	 * 
    -	 * Implementation note:
    -	 * 
    -	 * The passing of the argument by reference in <decode>, <decodeNode>,
    -	 * <decodeAttributes>, <decodeAttribute>, <decodeChildren>, <decodeChild>,
    -	 * <beforeDecode> and <afterDecode> is required since the object may be an
    -	 * array instance, which needs an explicit reference operator even in PHP 5
    -	 * to be changed in-place.
    -	 * 
    -	 * Variable: template
    -	 *
    -	 * Holds the template object associated with this codec.
    -	 */
    -	var $template;
    -	
    -	/**
    -	 * Variable: exclude
    -	 *
    -	 * Array containing the variable names that should be
    -	 * ignored by the codec.
    -	 */
    -	var $exclude;
    -	
    -	/**
    -	 * Variable: idrefs
    -	 *
    -	 * Array containing the variable names that should be
    -	 * turned into or converted from references. See
    -	 * <mxCodec.getId> and <mxCodec.getObject>.
    -	 */
    -	var $idrefs;
    -	
    -	/**
    -	 * Variable: mapping
    -	 *
    -	 * Maps from from fieldnames to XML attribute names.
    -	 */
    -	var $mapping;
    -	
    -	/**
    -	 * Variable: reverse
    -	 *
    -	 * Maps from from XML attribute names to fieldnames.
    -	 */
    -	var $reverse;
    -
    -	/**
    -	 * Constructor: mxObjectCodec
    -	 *
    -	 * Constructs a new codec for the specified template object.
    -	 * The variables in the optional exclude array are ignored by
    -	 * the codec. Variables in the optional idrefs array are
    -	 * turned into references in the XML. The optional mapping
    -	 * may be used to map from variable names to XML attributes.
    -	 *
    -	 * Parameters:
    -	 *
    -	 * template - Prototypical instance of the object to be
    -	 * encoded/decoded.
    -	 * exclude - Optional array of fieldnames to be ignored.
    -	 * idrefs - Optional array of fieldnames to be converted to/from
    -	 * references.
    -	 * mapping - Optional mapping from field- to attributenames.
    -	 */
    -	function mxObjectCodec($template, $exclude = array(),
    -		$idrefs = array(), $mapping = array())
    -	{
    -		$this->template = $template;
    -		
    -		$this->exclude = $exclude;
    -		$this->idrefs = $idrefs;
    -		$this->mapping = $mapping;
    -		
    -		$this->reverse = array();
    -		
    -		foreach($mapping as $key => $value)
    -		{
    -			$this->reverse[$value] = $key;
    -		}
    -	}
    -	
    -	/**
    -	 * Function: getName
    -	 *
    -	 * Creates a new instance of the template for this codec.
    -	 */
    -	function getName()
    -	{
    -		return mxCodecRegistry::getName($this->template);
    -	}
    -	
    -	/**
    -	 * Function: cloneTemplate
    -	 *
    -	 * Creates a new instance of the template for this codec.
    -	 */
    -	function cloneTemplate()
    -	{
    -		if (is_array($this->template))
    -		{
    -			return array();
    -		}
    -		else
    -		{
    -			$tmp = get_class($this->template);
    -
    -			return new $tmp();
    -		}
    -	}
    -	
    -	/**
    -	 * Function: getFieldName
    -	 * 
    -	 * Returns the fieldname for the given attributename.
    -	 * Looks up the value in the <reverse> mapping or returns
    -	 * the input if there is no reverse mapping for the
    -	 * given name.
    -	 */
    -	function getFieldName($attributename)
    -	{
    -		if ($attributename != null)
    -		{
    -			$mapped = ((in_array($attributename, $this->reverse))) ?
    -				$this->reverse[$attributename] : null;
    -			
    -			if ($mapped != null)
    -			{
    -				$attributename = $mapped;
    -			}
    -		}
    -		
    -		return $attributename;
    -	}
    -
    -	/**
    -	 * Function: getAttributeName
    -	 * 
    -	 * Returns the attributename for the given fieldname.
    -	 * Looks up the value in the <mapping> or returns
    -	 * the input if there is no mapping for the
    -	 * given name.
    -	 */
    -	function getAttributeName($fieldname)
    -	{
    -		if (isset($fieldname) && isset($this->mapping[$fieldname]))
    -		{
    -			$fieldname = $this->mapping[$fieldname];
    -		}
    -		
    -		return $fieldname;
    -	}
    -
    -	/**
    -	 * Function: isExcluded
    -	 *
    -	 * Returns true if the given attribute is to be ignored by the codec. This
    -	 * implementation returns true if the given fieldname is in <exclude> or
    -	 * if the fieldname equals <mxObjectIdentity.FIELD_NAME>.
    -	 *
    -	 * Parameters:
    -	 *
    -	 * obj - Object instance that contains the field.
    -	 * attr - Fieldname of the field.
    -	 * value - Value of the field.
    -	 * write - Boolean indicating if the field is being encoded or decoded.
    -	 * Write is true if the field is being encoded, else it is being decoded.
    -	 */
    -	function isExcluded($obj, $attr, $value, $write)
    -	{
    -		return mxUtils::indexOf($this->exclude, $attr) >= 0;
    -	}
    -	
    -	/**
    -	 * Function: isReference
    -	 *
    -	 * Returns true if the given fieldname is to be treated
    -	 * as a textual reference (ID). This implementation returns
    -	 * true if the given fieldname is in <idrefs>.
    -	 *
    -	 * Parameters:
    -	 *
    -	 * obj - Object instance that contains the field.
    -	 * attr - Fieldname of the field.
    -	 * value - Value of the field. 
    -	 * write - Boolean indicating if the field is being encoded or decoded.
    -	 * Write is true if the field is being encoded, else it is being decoded.
    -	 */
    -	function isReference($obj, $attr, $value, $write)
    -	{
    -		return mxUtils::indexOf($this->idrefs, $attr) >= 0;
    -	}
    -
    -	/**
    -	 * Function: encode
    -	 *
    -	 * Encodes the specified object and returns a node
    -	 * representing then given object. Calls <beforeEncode>
    -	 * after creating the node and <afterEncode> with the 
    -	 * resulting node after processing.
    -	 *
    -	 * Enc is a reference to the calling encoder. It is used
    -	 * to encode complex objects and create references.
    -	 *
    -	 * This implementation encodes all variables of an
    -	 * object according to the following rules:
    -	 *
    -	 * - If the variable name is in <exclude> then it is ignored.
    -	 * - If the variable name is in <idrefs> then <mxCodec.getId>
    -	 * is used to replace the object with its ID.
    -	 * - The variable name is mapped using <mapping>.
    -	 * - If obj is an array and the variable name is numeric
    -	 * (ie. an index) then it is not encoded.
    -	 * - If the value is an object, then the codec is used to
    -	 * create a child node with the variable name encoded into
    -	 * the "as" attribute.
    -	 * - Else, if <encodeDefaults> is true or the value differs
    -	 * from the template value, then ...
    -	 * - ... if obj is not an array, then the value is mapped to
    -	 * an attribute.
    -	 * - ... else if obj is an array, the value is mapped to an
    -	 * add child with a value attribute or a text child node,
    -	 * if the value is a function.
    -	 *
    -	 * If no ID exists for a variable in <idrefs> or if an object
    -	 * cannot be encoded, a warning is issued using <mxLog.warn>.
    -	 *
    -	 * Returns the resulting XML node that represents the given
    -	 * object.
    -	 *
    -	 * Parameters:
    -	 *
    -	 * enc - <mxCodec> that controls the encoding process.
    -	 * obj - Object to be encoded.
    -	 */
    -	function encode($enc, $obj)
    -	{
    -		$node = $enc->document->createElement($this->getName());
    -		
    -		$obj = $this->beforeEncode($enc, $obj, $node);
    -		$this->encodeObject($enc, $obj, $node);
    -		
    -		return $this->afterEncode($enc, $obj, $node);
    -	}
    -		
    -	/**
    -	 * Function: encodeObject
    -	 *
    -	 * Encodes the value of each member in then given obj
    -	 * into the given node using <encodeValue>.
    -	 * 
    -	 * Parameters:
    -	 *
    -	 * enc - <mxCodec> that controls the encoding process.
    -	 * obj - Object to be encoded.
    -	 * node - XML node that contains the encoded object.
    -	 */
    -	function encodeObject($enc, $obj, $node)
    -	{
    -		$enc->setAttribute($node, "id", $enc->getId($obj));
    -		
    -		if (is_array($obj))
    -		{
    -			$count = sizeof($obj);
    -
    -			for ($i = 0; $i < $count; $i++)
    -			{
    -				$this->encodeValue($enc, $obj, null, $obj[$i], $node);
    -			}
    -		}
    -		else
    -		{
    -			$vars = get_object_vars($obj);
    -			
    -		    foreach ($vars as $name => $value)
    -		    {
    -		    	if ($value != null &&
    -		    		!$this->isExcluded($obj, $name, $value, true))
    -		    	{
    -		    		if (is_numeric($name))
    -		    		{
    -		    			unset($name);
    -		    		}
    -		    		
    -		    		$this->encodeValue($enc, $obj, $name, $value, $node);
    -		    	}
    -		    }
    -		}
    -	}
    -	
    -	/**
    -	 * Function: encodeValue
    -	 * 
    -	 * Converts the given value according to the mappings
    -	 * and id-refs in this codec and uses <writeAttribute>
    -	 * to write the attribute into the given node.
    -	 * 
    -	 * Parameters:
    -	 *
    -	 * enc - <mxCodec> that controls the encoding process.
    -	 * obj - Object whose property is going to be encoded.
    -	 * name - XML node that contains the encoded object.
    -	 * value - Value of the property to be encoded.
    -	 * node - XML node that contains the encoded object.
    -	 */
    -	function encodeValue($enc, $obj, $name, $value, $node)
    -	{
    -		if ($value != null)
    -		{
    -			if ($this->isReference($obj, $name, $value, true))
    -			{
    -				$tmp = $enc->getId($value);
    -				
    -				if (!isset($tmp))
    -				{
    -			    	mxLog::warn("mxObjectCodec.encode: No ID for value of ".
    -			    		$this->getName().".$name of type ".get_class($value));
    -			    	return; // exit
    -			    }
    -			    
    -			    $value = $tmp;
    -			}
    -
    -			$defaults = (is_object($this->template)) ? get_object_vars($this->template) : null;
    -			$defaultValue = (isset($defaults[$name])) ? $defaults[$name] : null;
    -			
    -			// Checks if the value is a named default value
    -			if (!isset($name) || $enc->encodeDefaults || $defaultValue !== $value)
    -			{
    -				$name = $this->getAttributeName($name);
    -				$this->writeAttribute($enc, $obj, $name, $value, $node);	
    -			}
    -		}
    -	}
    -
    -	/**
    -	 * Function: writeAttribute
    -	 * 
    -	 * Writes the given value into node using <writePrimitiveAttribute>
    -	 * or <writeComplexAttribute> depending on the type of the value.
    -	 */
    -	function writeAttribute($enc, $obj, $attr, $value, $node)
    -	{
    -		if (!is_object($value) && !is_array($value) /* primitive type */)
    -		{
    -			$this->writePrimitiveAttribute($enc, $obj, $attr, $value, $node);
    -		}
    -		else /* complex type */
    -		{
    -			$this->writeComplexAttribute($enc, $obj, $attr, $value, $node);
    -    	}
    -    }
    -	
    -	/**
    -	 * Function: writePrimitiveAttribute
    -	 * 
    -	 * Writes the given value as an attribute of the given node.
    -	 */
    -	function writePrimitiveAttribute($enc, $obj, $attr, $value, $node)
    -	{
    -		$value = $this->convertValueToXml($value);
    -		
    -		if (!isset($attr))
    -		{
    -    		$child = $enc->document->createElement("add");
    -    		
    -    		// TODO: Handle "as" attribute for maps here
    -	    	$enc->setAttribute($child, "value", $value);
    -    		$node->appendChild($child);
    -    	}
    -    	else
    -    	{
    -        	$enc->setAttribute($node, $attr, $value);
    -    	}		
    -	}
    -		
    -	/**
    -	 * Function: writeComplexAttribute
    -	 * 
    -	 * Writes the given value as a child node of the given node.
    -	 */
    -	function writeComplexAttribute($enc, $obj, $attr, $value, $node)
    -	{
    -    	$child = $enc->encode($value);
    -    	
    -    	if (isset($child))
    -    	{
    -    		if (isset($attr))
    -    		{
    -	    		$child->setAttribute("as", $attr);
    -	    	}
    -	    	
    -	    	$node->appendChild($child);
    -    	}
    -    	else
    -    	{
    -    		mxLog::warn("mxObjectCodec.encode: No node for value of ".
    -    			$this->getName().".$attr");
    -    	}
    -	}
    -	
    -	/**
    -	 * Function: convertValueToXml
    -	 * 
    -	 * Returns the given value without applying a conversion.
    -	 */
    -	function convertValueToXml($value)
    -	{
    -		return $value;
    -	}
    -				
    -	/**
    -	 * Function: convertValueFromXml
    -	 * 
    -	 * Returns the given value. In PHP there is no need to convert the
    -	 * boolean strings "0" and "1" to their numeric / boolean values.
    -	 */
    -	function convertValueFromXml($value)
    -	{
    -		return $value;
    -	}
    -
    -	/**
    -	 * Function: beforeEncode
    -	 *
    -	 * Hook for subclassers to pre-process the object before
    -	 * encoding. This returns the input object. The return
    -	 * value of this function is used in <encode> to perform
    -	 * the default encoding into the given node.
    -	 *
    -	 * Parameters:
    -	 *
    -	 * enc - <mxCodec> that controls the encoding process.
    -	 * obj - Object to be encoded.
    -	 * node - XML node to encode the object into.
    -	 */
    -	function beforeEncode($enc, $obj, $node)
    -	{
    -		return $obj;
    -	}
    -	
    -	/**
    -	 * Function: afterEncode
    -	 *
    -	 * Hook for subclassers to post-process the node
    -	 * for the given object after encoding and return the
    -	 * post-processed node. This implementation returns 
    -	 * the input node. The return value of this method
    -	 * is returned to the encoder from <encode>.
    -	 *
    -	 * Parameters:
    -	 *
    -	 * enc - <mxCodec> that controls the encoding process.
    -	 * obj - Object to be encoded.
    -	 * node - XML node that represents the default encoding.
    -	 */
    -	function afterEncode($enc, $obj, $node)
    -	{
    -		return $node;
    -	}
    -
    -	/**
    -	 * Function: decode
    -	 *
    -	 * Parses the given node into the object or returns a new object
    -	 * representing the given node.
    -	 *
    -	 * Dec is a reference to the calling decoder. It is used to decode
    -	 * complex objects and resolve references.
    -	 *
    -	 * If a node has an id attribute then the object cache is checked for the
    -	 * object. If the object is not yet in the cache then it is constructed
    -	 * using the constructor of <template> and cached in <mxCodec.objects>.
    -	 *
    -	 * This implementation decodes all attributes and childs of a node
    -	 * according to the following rules:
    -	 *
    -	 * - If the variable name is in <exclude> or if the attribute name is "id"
    -	 * or "as" then it is ignored.
    -	 * - If the variable name is in <idrefs> then <mxCodec.getObject> is used
    -	 * to replace the reference with an object.
    -	 * - The variable name is mapped using a reverse <mapping>.
    -	 * - If the value has a child node, then the codec is used to create a
    -	 * child object with the variable name taken from the "as" attribute.
    -	 * - If the object is an array and the variable name is empty then the
    -	 * value or child object is appended to the array.
    -	 * - If an add child has no value or the object is not an array then
    -	 * the child text content is evaluated using <mxUtils.eval>.
    -	 *
    -	 * For add nodes where the object is not an array and the variable name
    -	 * is defined, the default mechanism is used, allowing to override/add
    -	 * methods as follows:
    -	 *
    -	 * (code)
    -	 * <Object>
    -	 *   <add as="hello"><![CDATA[
    -	 *     function(arg1) {
    -	 *       alert('Hello '+arg1);
    -	 *     }
    -	 *   ]]></add>
    -	 * </Object>
    -	 * (end) 
    -	 *
    -	 * If no object exists for an ID in <idrefs> a warning is issued
    -	 * using <mxLog.warn>.
    -	 *
    -	 * Returns the resulting object that represents the given XML node
    -	 * or the object given to the method as the into parameter.
    -	 *
    -	 * Parameters:
    -	 *
    -	 * dec - <mxCodec> that controls the decoding process.
    -	 * node - XML node to be decoded.
    -	 * into - Optional objec to encode the node into.
    -	 */
    -	function decode($dec, $node, &$into = null)
    -	{
    -		$id = $node->getAttribute("id");
    -		$obj = null;
    -		
    -		if (array_key_exists($id, $dec->objects))
    -		{
    -			$obj = $dec->objects[$id];
    -		}
    -
    -		if (!isset($obj))
    -		{
    -			if (isset($into))
    -			{
    -				$obj = $into;
    -			}
    -			else
    -			{
    -				$obj = $this->cloneTemplate();
    -			}
    -			
    -			if (strlen($id) > 0)
    -			{
    -				$dec->putObject($id, $obj);
    -			}
    -		}
    -
    -		$node = $this->beforeDecode($dec, $node, $obj);
    -		$this->decodeNode($dec, $node, $obj);
    -
    -	    return $this->afterDecode($dec, $node, $obj);
    -	}		
    -	
    -	/**
    -	 * Function: decodeNode
    -	 * 
    -	 * Calls <decodeAttributes> and <decodeChildren> for the given node.
    -	 */	
    -	function decodeNode($dec, $node, &$obj)
    -	{
    -		if (isset($node))
    -		{
    -			$this->decodeAttributes($dec, $node, $obj);
    -			$this->decodeChildren($dec, $node, $obj);
    -		}
    -	}
    -
    -	/**
    -	 * Function: decodeAttributes
    -	 * 
    -	 * Decodes all attributes of the given node using <decodeAttribute>.
    -	 */	
    -	function decodeAttributes($dec, $node, &$obj)
    -	{
    -		$attrs = $node->attributes;
    -
    -		if ($attrs != null)
    -		{
    -			for ($i = 0; $i < $attrs->length; $i++)
    -			{
    -				$this->decodeAttribute($dec, $attrs->item($i), $obj);
    -			}
    -		}
    -	}	
    -
    -	/**
    -	 * Function: decodeAttribute
    -	 * 
    -	 * Reads the given attribute into the specified object.
    -	 */	
    -	function decodeAttribute($dec, $attr, &$obj)
    -	{
    -		$name = $attr->nodeName;
    -
    -		if ($name != "as" && $name != "id")
    -		{
    -			// Converts the string true and false to their boolean values.
    -			// This may require an additional check on the obj to see if
    -			// the existing field is a boolean value or uninitialized, in
    -			// which case we may want to convert true and false to a string.
    -			$value = $this->convertValueFromXml($attr->nodeValue);
    -			$fieldname = $this->getFieldName($name);
    -			
    -			if ($this->isReference($obj, $fieldname, $value, false))
    -			{
    -				$tmp = $dec->getObject($value);
    -				
    -				if (!isset($tmp))
    -				{
    -			    	mxLog::warn("mxObjectCodec.decode: No object for ".
    -			    		$this->getName().".$fieldname=$value");
    -			    	return; // exit
    -			    }
    -			    
    -			    $value = $tmp;
    -			}
    -
    -			if (!$this->isExcluded($obj, $fieldname, $value, false))
    -			{
    -				//mxLog.debug(mxCodecRegistry::getName($obj)."$name=$value");
    -				$obj->$fieldname = $value;
    -			}
    -		}
    -	}
    -
    -	/**
    -	 * Function: decodeChildren
    -	 * 
    -	 * Decodec all children of the given node using <decodeChild>.
    -	 */	
    -	function decodeChildren($dec, $node, &$obj)
    -	{
    -		$child = $node->firstChild;
    -		
    -		while ($child != null)
    -		{
    -			$tmp = $child->nextSibling;
    -			
    -			if ($child->nodeType == XML_ELEMENT_NODE &&
    -				!$this->processInclude($dec, $child, $obj))
    -			{
    -				$this->decodeChild($dec, $child, $obj);
    -			}
    -			
    -			$child = $tmp;
    -		}
    -	}
    -
    -	/**
    -	 * Function: decodeChild
    -	 * 
    -	 * Reads the specified child into the given object.
    -	 */	
    -	function decodeChild($dec, $child, &$obj)
    -	{
    -		$fieldname = $this->getFieldName($child->getAttribute("as"));
    -		
    -		if (!isset($fieldname) ||
    -			!$this->isExcluded($obj, $fieldname, $child, false))
    -		{
    -			$template = $this->getFieldTemplate($obj, $fieldname, $child);
    -			$value = null;
    -			
    -			if ($child->nodeName == "add")
    -			{
    -				$value = $child->getAttribute("value");
    -				
    -				if (!isset($value))
    -				{
    -					// TODO: Evaluate text content
    -					//$value = eval($child->get_content());
    -					//mxLog.debug('Decoded '+fieldname+' '+mxUtils.getTextContent(child));
    -				}
    -			}
    -			else
    -			{
    -				
    -				$value = $dec->decode($child, $template);
    -			}
    -			
    -			$this->addObjectValue($obj, $fieldname, $value, $template);
    -		}
    -	}
    -		
    -	/**
    -	 * Function: getFieldTemplate
    -	 * 
    -	 * Returns the template instance for the given field. This returns the
    -	 * value of the field, null if the value is an array or an empty collection
    -	 * if the value is a collection. The value is then used to populate the
    -	 * field for a new instance. For strongly typed languages it may be
    -	 * required to override this to return the correct collection instance
    -	 * based on the encoded child.
    -	 */
    -	function getFieldTemplate(&$obj, $fieldname, $child)
    -	{
    -		$template = (is_object($obj)) ? $obj->$fieldname : null;
    -		
    -		// Non-empty arrays are replaced completely
    -		if (is_array($template) && count($template) > 0)
    -		{
    -			$template = null;
    -		}
    -		
    -		return $template;
    -	}
    -		
    -	/**
    -	 * Function: addObjectValue
    -	 * 
    -	 * Sets the decoded child node as a value of the given object. If the
    -	 * object is a map, then the value is added with the given fieldname as a
    -	 * key. If the fieldname is not empty, then setFieldValue is called or
    -	 * else, if the object is a collection, the value is added to the
    -	 * collection. For strongly typed languages it may be required to
    -	 * override this with the correct code to add an entry to an object.
    -	 */
    -	function addObjectValue(&$obj, $fieldname, $value, $template)
    -	{
    -		if ($value !== null && ($template == null || $value != $template))
    -		{	
    -			if (isset($fieldname) && strlen($fieldname) > 0)
    -			{
    -				$obj->$fieldname = $value;
    -			}
    -			else
    -			{
    -				array_push($obj, $value);
    -			}
    -			//mxLog.debug('Decoded '+mxUtils.getFunctionName(obj.constructor)+'.'+fieldname+': '+value);
    -		}
    -	}
    -	
    -	/**
    -	 * Function: processInclude
    -	 *
    -	 * Returns true if the given node is an include directive and
    -	 * executes the include by decoding the XML document. Returns
    -	 * false if the given node is not an include directive.
    -	 *
    -	 * Parameters:
    -	 *
    -	 * dec - <mxCodec> that controls the encoding/decoding process.
    -	 * node - XML node to be checked.
    -	 * into - Optional object to pass-thru to the codec.
    -	 */
    -	function processInclude($dec, $node, $into)
    -	{
    -		if ($node->nodeName == "include")
    -		{
    -			$name = $node->getAttribute("name");
    -			
    -			if (isset($name))
    -			{
    -				try
    -				{
    -					$xml = mxUtils::loadXmlDocument($name)->documentElement;
    -					
    -					if (isset($xml))
    -					{
    -						$dec->decode($xml, $into);
    -					}
    -				}
    -				catch (Exception $e)
    -				{
    -					// ignore
    -				}
    -			}
    -			
    -			return true;
    -		}
    -		
    -		return false;
    -	}
    -	
    -	/**
    -	 * Function: beforeDecode
    -	 *
    -	 * Hook for subclassers to pre-process the node for
    -	 * the specified object and return the node to be
    -	 * used for further processing by <decode>.
    -	 * The object is created based on the template in the 
    -	 * calling method and is never null. This implementation
    -	 * returns the input node. The return value of this
    -	 * function is used in <decode> to perform
    -	 * the default decoding into the given object.
    -	 *
    -	 * Parameters:
    -	 *
    -	 * dec - <mxCodec> that controls the decoding process.
    -	 * node - XML node to be decoded.
    -	 * obj - Object to encode the node into.
    -	 */
    -	function beforeDecode($dec, $node, &$obj)
    -	{
    -		return $node;
    -	}
    -	
    -	/**
    -	 * Function: afterDecode
    -	 *
    -	 * Hook for subclassers to post-process the object after
    -	 * decoding. This implementation returns the given object
    -	 * without any changes. The return value of this method
    -	 * is returned to the decoder from <decode>.
    -	 *
    -	 * Parameters:
    -	 *
    -	 * enc - <mxCodec> that controls the encoding process.
    -	 * node - XML node to be decoded.
    -	 * obj - Object that represents the default decoding.
    -	 */
    -	function afterDecode($dec, $node, &$obj)
    -	{
    -		return $obj;
    -	}
    -
    -}
    -
    -mxCodecRegistry::register(new mxObjectCodec(array()));
    -?>
    diff --git a/php/src/io/mxStylesheetCodec.php b/php/src/io/mxStylesheetCodec.php
    deleted file mode 100644
    index bd9c5fcfe..000000000
    --- a/php/src/io/mxStylesheetCodec.php
    +++ /dev/null
    @@ -1,181 +0,0 @@
    -<?php
    -/**
    - * Copyright (c) 2006-2013, Gaudenz Alder
    - */
    -class mxStylesheetCodec extends mxObjectCodec
    -{
    -
    -	/**
    -	 * Class: mxStylesheetCodec
    -	 *
    -	 * Codec for <mxStylesheets>. This class is created and registered
    -	 * dynamically at load time and used implicitely via <mxCodec>
    -	 * and the <mxCodecRegistry>.
    -	 * 
    -	 * Constructor: mxObjectCodec
    -	 *
    -	 * Constructs a new codec for the specified template object.
    -	 * The variables in the optional exclude array are ignored by
    -	 * the codec. Variables in the optional idrefs array are
    -	 * turned into references in the XML. The optional mapping
    -	 * may be used to map from variable names to XML attributes.
    -	 *
    -	 * Parameters:
    -	 *
    -	 * template - Prototypical instance of the object to be
    -	 * encoded/decoded.
    -	 * exclude - Optional array of fieldnames to be ignored.
    -	 * idrefs - Optional array of fieldnames to be converted to/from
    -	 * references.
    -	 * mapping - Optional mapping from field- to attributenames.
    -	 */
    -	function mxStylesheetCodec($template)
    -	{
    -		parent::mxObjectCodec($template);
    -	}
    -	
    -	/**
    -	 * Override <mxObjectCodec.encode>.
    -	 */
    -	function encode($enc, $obj)
    -	{
    -		$node = $enc->document->createElement($this->getName());
    -		
    -		foreach ($obj->styles as $i => $value)
    -		{
    -			$styleNode = $enc->document->createElement("add");
    -			
    -			if (isset($i))
    -			{
    -				$styleNode->setAttribute("as", $i);
    -				
    -				foreach ($style as $j => $value)
    -				{
    -					$value = $this->getStringValue($j, $value);
    -					
    -					if (isset($value))
    -					{
    -						$entry = $enc->document->createElement("add");
    -						$entry->setAttribute("value", $value);
    -						$entry->setAttribute("as", $j);
    -						$styleNode->appendChild($entry);
    -					}
    -				}
    -				
    -				if ($styleNode->getChildCount() > 0)
    -				{
    -					$node->appendChild($styleNode);
    -				}
    -			}
    -		}
    -		
    -	    return node;
    -	}
    -		
    -	/**
    -	 * Returns the string for encoding the given value.
    -	 */
    -	function getStringValue($key, $value)
    -	{
    -		return (!function_exists($value) && !is_object($value)) ? $value : null;
    -	}
    -	
    -	/**
    -	 * Override <mxObjectCodec.decode>.
    -	 */
    -	function decode($dec, $node, &$into = null)
    -	{
    -		$id = $node->getAttribute("id");
    -		$obj = (in_array($id, $dec->objects)) ? $dec->objects[$id] : null;
    -		
    -		if (!isset($obj))
    -		{
    -			if (isset($into))
    -			{
    -				$obj = $into;
    -			}
    -			else
    -			{
    -				$tmp = get_class($this->template);
    -				$obj = new $tmp();
    -			}
    -			
    -			if (isset($id))
    -			{
    -				$dec->putObject($id, $obj);
    -			}
    -		}
    -
    -		$node = $node->firstChild;
    -		
    -		while (isset($node))
    -		{
    -			if (!$this->processInclude($dec, $node, $obj) &&
    -				$node->nodeName == "add")
    -			{
    -				$as = $node->getAttribute("as");
    -				
    -				if (strlen($as) > 0)
    -				{
    -					$extend = $node->getAttribute("extend");
    -
    -					$style = (strlen($extend) > 0 &&
    -						isset($obj->styles[$extend])) ?
    -						array_slice($obj->styles[$extend], 0) :
    -						null;					
    -					
    -					if (!isset($style))
    -					{
    -						$style = array();
    -					}
    -					
    -					$entry = $node->firstChild;
    -					
    -					while (isset($entry))
    -					{
    -						if ($entry->nodeType == XML_ELEMENT_NODE)
    -						{
    -							$key = $entry->getAttribute("as");
    -						 	
    -						 	if ($entry->nodeName == "add")
    -						 	{
    -							 	$text = $entry->textContent;
    -							 	$value = null;
    -							 	
    -							 	if (isset($text) && strlen($text) > 0)
    -							 	{
    -							 		$value = mxUtils::evaluate($text);
    -							 	}
    -							 	else
    -							 	{
    -							 		$value = $entry->getAttribute("value");
    -								}
    -								
    -								if ($value != null)
    -								{
    -									$style[$key] = $value;
    -								}
    -						 	}
    -						 	else if ($entry->nodeName == "remove")
    -						 	{
    -						 		unset($style[$key]);
    -						 	}
    -						}
    -						
    -						$entry = $entry->nextSibling;
    -					}
    -				
    -					$obj->putCellStyle($as, $style);
    -				}
    -			}
    -			
    -			$node = $node->nextSibling;
    -		}
    -		
    -		return $obj;
    -	}
    -
    -}
    -
    -mxCodecRegistry::register(new mxStylesheetCodec(new mxStylesheet()));
    -?>
    diff --git a/php/src/model/mxCell.php b/php/src/model/mxCell.php
    deleted file mode 100644
    index 5c91cbb47..000000000
    --- a/php/src/model/mxCell.php
    +++ /dev/null
    @@ -1,751 +0,0 @@
    -<?php
    -/**
    - * Copyright (c) 2006-2013, Gaudenz Alder
    - */
    -class mxCell
    -{
    -
    -	/**
    -	 * Class: mxCell
    -	 * 
    -	 * Cells are the elements of the graph model. They represent the state
    -	 * of the groups, vertices and edges in a graph.
    -	 * 
    -	 * Variable: id
    -	 *
    -	 * Holds the Id. Default is null.
    -	 */
    -	var $id = null;
    -
    -	/**
    -	 * Variable: value
    -	 *
    -	 * Holds the user object. Default is null.
    -	 */
    -	var $value = null;
    -
    -	/**
    -	 * Variable: geometry
    -	 *
    -	 * Holds the <mxGeometry>. Default is null.
    -	 */
    -	var $geometry = null;
    -
    -	/**
    -	 * Variable: style
    -	 *
    -	 * Holds the style as a string of the form [(stylename|key=value);].
    -	 * Default is null.
    -	 */
    -	var $style = null;
    -
    -	/**
    -	 * Variable: vertex
    -	 *
    -	 * Specifies whether the cell is a vertex. Default is false.
    -	 */
    -	var $vertex = false;
    -
    -	/**
    -	 * Variable: edge
    -	 *
    -	 * Specifies whether the cell is an edge. Default is false.
    -	 */
    -	var $edge = false;
    -
    -	/**
    -	 * Variable: connectable
    -	 *
    -	 * Specifies whether the cell is connectable. Default is true.
    -	 */
    -	var $connectable = true;
    -
    -	/**
    -	 * Variable: visible
    -	 *
    -	 * Specifies whether the cell is visible. Default is true.
    -	 */
    -	var $visible = true;
    -
    -	/**
    -	 * Variable: collapsed
    -	 *
    -	 * Specifies whether the cell is collapsed. Default is false.
    -	 */
    -	var $collapsed = false;
    -
    -	/**
    -	 * Variable: parent
    -	 *
    -	 * Reference to the parent cell.
    -	 */
    -	var $parent = null;
    -
    -	/**
    -	 * Variable: source
    -	 *
    -	 * Reference to the source terminal.
    -	 */
    -	var $source = null;
    -
    -	/**
    -	 * Variable: target
    -	 *
    -	 * Reference to the target terminal.
    -	 */
    -	var $target = null;
    -
    -	/**
    -	 * Variable: children
    -	 *
    -	 * Holds the child cells.
    -	 */
    -	var $children = null; // transient
    -
    -	/**
    -	 * Variable: edges
    -	 *
    -	 * Holds the edges.
    -	 */
    -	var $edges = null; // transient
    -
    -	/**
    -	 * Constructor: mxCell
    -	 *
    -	 * Constructs a new cell to be used in a graph model.
    -	 * This method invokes <onInit> upon completion.
    -	 * 
    -	 * Parameters:
    -	 * 
    -	 * value - Optional object that represents the cell value.
    -	 * geometry - Optional <mxGeometry> that specifies the geometry.
    -	 * style - Optional formatted string that defines the style.
    -	 */
    -	function mxCell($value = null, $geometry = null, $style = null)
    -	{
    -		$this->setValue($value);
    -		$this->setGeometry($geometry);
    -		$this->setStyle($style);
    -	}
    -
    -	/**
    -	 * Function: getId
    -	 *
    -	 * Returns the Id of the cell as a string.
    -	 */
    -	function getId()
    -	{
    -		return $this->id;
    -	}
    -			
    -	/**
    -	 * Function: setId
    -	 *
    -	 * Sets the Id of the cell to the given string.
    -	 */
    -	 function setId($id)
    -	 {
    -		$this->id = $id;
    -	}
    -
    -	/**
    -	 * Function: getValue
    -	 *
    -	 * Returns the user object of the cell. The user
    -	 * object is stored in <value>.
    -	 */
    -	function getValue()
    -	{
    -		return $this->value;
    -	}
    -			
    -	/**
    -	 * Function: setValue
    -	 *
    -	 * Sets the user object of the cell. The user object
    -	 * is stored in <value>.
    -	 */
    -	 function setValue($value)
    -	 {
    -		$this->value = $value;
    -	}
    -
    -	/**
    -	 * Function: getGeometry
    -	 *
    -	 * Returns the <mxGeometry> that describes the <geometry>.
    -	 */
    -	function getGeometry()
    -	{
    -		return $this->geometry;
    -	}
    -			
    -	/**
    -	 * Function: setGeometry
    -	 *
    -	 * Sets the <mxGeometry> to be used as the <geometry>.
    -	 */
    -	 function setGeometry($geometry)
    -	 {
    -		$this->geometry = $geometry;
    -	}
    -
    -	/**
    -	 * Function: getStyle
    -	 *
    -	 * Returns a string that describes the <style>.
    -	 */
    -	function getStyle()
    -	{
    -		return $this->style;
    -	}
    -			
    -	/**
    -	 * Function: setStyle
    -	 *
    -	 * Sets the string to be used as the <style>.
    -	 */
    -	 function setStyle($style)
    -	 {
    -		$this->style = $style;
    -	 }
    -
    -	/**
    -	 * Function: isVertex
    -	 *
    -	 * Returns true if the cell is a vertex.
    -	 */
    -	function isVertex()
    -	{
    -		return $this->vertex;
    -	}
    -			
    -	/**
    -	 * Function: setVertex
    -	 *
    -	 * Specifies if the cell is a vertex. This should only be assigned at
    -	 * construction of the cell and not be changed during its lifecycle.
    -	 * 
    -	 * Parameters:
    -	 * 
    -	 * vertex - Boolean that specifies if the cell is a vertex.
    -	 */
    -	 function setVertex($vertex)
    -	 {
    -		$this->vertex = $vertex;
    -	 }
    -	 
    -	/**
    -	 * Function: isEdge
    -	 *
    -	 * Returns true if the cell is an edge.
    -	 */
    -	function isEdge()
    -	{
    -		return $this->edge;
    -	}
    -			
    -	/**
    -	 * Function: setEdge
    -	 * 
    -	 * Specifies if the cell is an edge. This should only be assigned at
    -	 * construction of the cell and not be changed during its lifecycle.
    -	 * 
    -	 * Parameters:
    -	 * 
    -	 * edge - Boolean that specifies if the cell is an edge.
    -	 */
    -	 function setEdge($edge)
    -	 {
    -		$this->edge = $edge;
    -	 }
    -	
    -	/**
    -	 * Function: isConnectable
    -	 *
    -	 * Returns true if the cell is connectable.
    -	 */
    -	function isConnectable()
    -	{
    -		return $this->connectable;
    -	}
    -	
    -	/**
    -	 * Function: setConnectable
    -	 *
    -	 * Sets the connectable state.
    -	 * 
    -	 * Parameters:
    -	 * 
    -	 * connectable - Boolean that specifies the new connectable state.
    -	 */
    -	function setConnectable($connectable)
    -	{
    -		$this->connectable = $connectable;
    -	}
    -
    -	/**
    -	 * Function: isVisible
    -	 *
    -	 * Returns true if the cell is visibile.
    -	 */
    -	function isVisible()
    -	{
    -		return $this->visible;
    -	}
    -	
    -	/**
    -	 * Function: setVisible
    -	 *
    -	 * Specifies if the cell is visible.
    -	 * 
    -	 * Parameters:
    -	 * 
    -	 * visible - Boolean that specifies the new visible state.
    -	 */
    -	function setVisible($visible)
    -	{
    -		$this->visible = $visible;
    -	}
    -	
    -	/**
    -	 * Function: isCollapsed
    -	 *
    -	 * Returns true if the cell is collapsed.
    -	 */
    -	function isCollapsed()
    -	{
    -		return $this->collapsed;
    -	}
    -	
    -	/**
    -	 * Function: setCollapsed
    -	 *
    -	 * Sets the collapsed state.
    -	 * 
    -	 * Parameters:
    -	 * 
    -	 * collapsed - Boolean that specifies the new collapsed state.
    - 	 */
    -	function setCollapsed($collapsed)
    -	{
    -		$this->collapsed = $collapsed;
    -	}
    -
    -	/**
    -	 * Function: getParent
    -	 *
    -	 * Returns the cell's parent.
    -	 */
    -	function getParent()
    -	{
    -		return $this->parent;
    -	}
    -			
    -	/**
    -	 * Function: setParent
    -	 *
    -	 * Sets the parent cell.
    -	 * 
    -	 * Parameters:
    -	 * 
    -	 * parent - <mxCell> that represents the new parent.
    -	 */
    -	 function setParent($parent)
    -	 {
    -		$this->parent = $parent;
    -	}
    -		
    -	/**
    -	 * Function: getTerminal
    -	 *
    -	 * Returns the source or target terminal.
    -	 * 
    -	 * Parameters:
    -	 * 
    -	 * source - Boolean that specifies if the source terminal should be
    -	 * returned.
    -	 */
    -	function getTerminal($source)
    -	{
    -		if ($source)
    -		{
    -			return $this->source;
    -		}
    -		else
    -		{
    -			return $this->target;
    -		}
    -	}
    -			
    -	/**
    -	 * Function: setTerminal
    -	 *
    -	 * Sets the source or target terminal and returns the new terminal.
    -	 * 
    -	 * Parameters:
    -	 * 
    -	 * terminal - <mxCell> that represents the new source or target terminal.
    -	 * source - Boolean that specifies if the source or target terminal
    -	 * should be set.
    -	 */
    -	 function setTerminal($terminal, $source)
    -	 {
    -	 	if ($source)
    -	 	{
    -	 		$this->source = $terminal;
    -	 	}
    -	 	else
    -	 	{
    -	 		$this->target = $terminal;
    -	 	}
    -	 	
    -	 	return $terminal;
    -	}
    -	
    -	/**
    -	 * Function: getChildCount
    -	 *
    -	 * Returns the number of child cells.
    -	 */
    -	function getChildCount()
    -	{
    -		return ($this->children == null) ? 0 : sizeof($this->children);
    -	}
    -
    -	/**
    -	 * Function: getIndex
    -	 *
    -	 * Returns the index of the specified child in the child array.
    -	 * 
    -	 * Parameters:
    -	 * 
    -	 * child - Child whose index should be returned.
    -	 */
    -	function getIndex($child)
    -	{
    -		return mxUtils::indexOf($this->children, $child);
    -	}
    -
    -	/**
    -	 * Function: getChildAt
    -	 *
    -	 * Returns the child at the specified index.
    -	 * 
    -	 * Parameters:
    -	 * 
    -	 * index - Integer that specifies the child to be returned.
    -	 */
    -	function getChildAt($index)
    -	{
    -		if ($this->children != null)
    -		{
    -			return $this->children[$index];
    -		}
    -		
    -		return null;
    -	}
    -
    -	/**
    -	 * Function: insert
    -	 *
    -	 * Inserts the specified child into the child array at the specified index
    -	 * and updates the parent reference of the child. If not childIndex is
    -	 * specified then the child is appended to the child array. Returns the
    -	 * inserted child.
    -	 * 
    -	 * Parameters:
    -	 * 
    -	 * child - <mxCell> to be inserted or appended to the child array.
    -	 * index - Optional integer that specifies the index at which the child
    -	 * should be inserted into the child array.
    -	 */
    -	function insert($child, $index = null)
    -	{
    -		if (isset($child))
    -		{
    -			if (!isset($index))
    -			{
    -				$index = $this->getChildCount();
    -				
    -				if ($child->getParent() === $this)
    -				{
    -					$index--;
    -				}
    -			} 
    -
    -			$child->removeFromParent();
    -			$child->setParent($this);
    -			
    -			if ($this->children == null)
    -			{
    -				$this->children = array();
    -				array_push($this->children, $child);
    -			}
    -			else
    -			{
    -				array_splice($this->children, $index, 0, array($child));
    -			}
    -		}
    -		
    -		return $child;
    -	}
    -
    -	/**
    -	 * Function: remove
    -	 *
    -	 * Removes the child at the specified index from the child array and
    -	 * returns the child that was removed. Will remove the parent reference of
    -	 * the child.
    -	 * 
    -	 * Parameters:
    -	 * 
    -	 * index - Integer that specifies the index of the child to be
    -	 * removed.
    -	 */
    -	function remove($index)
    -	{
    -		if ($this->children != null && $index >= 0)
    -		{
    -			$child = $this->getChildAt($index);
    -			
    -			if ($child != null)
    -			{
    -				array_splice($this->children, $index, 1);
    -				$child->setParent(null);
    -			}
    -			
    -			return $child;
    -		}
    -		
    -		return null;
    -	}
    -
    -	/**
    -	 * Function: removeFromParent
    -	 *
    -	 * Removes the cell from its parent.
    -	 */
    -	function removeFromParent()
    -	{
    -	 	if (isset($this->parent))
    -	 	{
    -	 		$index = $this->parent->getIndex($this);
    -	 		$this->parent->remove($index);
    -	 	}
    -	}
    -
    -	/**
    -	 * Function: getEdgeCount
    -	 *
    -	 * Returns the number of edges in the edge array.
    -	 */
    -	function getEdgeCount()
    -	{
    -		return ($this->edges == null) ? 0 : sizeof($this->edges);
    -	}
    -
    -	/**
    -	 * Function: getEdgeIndex
    -	 *
    -	 * Returns the index of the specified edge in <edges>.
    -	 * 
    -	 * Parameters:
    -	 * 
    -	 * edge - <mxCell> whose index in <edges> should be returned.
    -	 */
    -	function getEdgeIndex($edge)
    -	{
    -		return mxUtils::indexOf($this->edges, $edge);
    -	}
    -	
    -	/**
    -	 * Function: getEdgeAt
    -	 *
    -	 * Returns the edge at the specified index in <edges>.
    -	 * 
    -	 * Parameters:
    -	 * 
    -	 * index - Integer that specifies the index of the edge to be returned.
    -	 */
    -	function getEdgeAt($index)
    -	{
    -		if ($this->edges != null)
    -		{
    -			return $this->edges[$index];
    -		}
    -		
    -		return null;
    -	}
    -
    -	/**
    -	 * Function: insertEdge
    -	 *
    -	 * Inserts the specified edge into the edge array and returns the edge.
    -	 * Will update the respective terminal reference of the edge.
    -	 * 
    -	 * Parameters:
    -	 * 
    -	 * edge - <mxCell> to be inserted into the edge array.
    -	 * outgoing - Boolean that specifies if the edge is outgoing.
    -	 */
    -	function insertEdge($edge, $outgoing)
    -	{
    -		if (isset($edge))
    -		{
    -			$edge->removeFromTerminal($outgoing);
    -			$edge->setTerminal($this, $outgoing);
    -
    -			if ($this->edges == null ||
    -				$edge->getTerminal(!$outgoing) !== $this ||
    -				mxUtils::indexOf($this->edges, $edge) < 0)
    -			{
    -				if ($this->edges == null)
    -				{
    -					$this->edges = array();
    -				}
    -				
    -				array_push($this->edges, $edge);
    -			}
    -		}
    -		
    -		return $edge;
    -	}
    -
    -	/**
    -	 * Function: removeEdge
    -	 *
    -	 * Removes the specified edge from the edge array and returns the edge.
    -	 * Will remove the respective terminal reference from the edge.
    -	 * 
    -	 * Parameters:
    -	 * 
    -	 * edge - <mxCell> to be removed from the edge array.
    -	 * outgoing - Boolean that specifies if the edge is outgoing.
    -	 */
    -	function removeEdge($edge, $outgoing)
    -	{
    -		if (isset($edge))
    -		{
    -			if ($edge->getTerminal(!$outgoing) !== $this &&
    -				$this->edges != null)
    -			{
    -				$index = $this->getEdgeIndex($edge);
    -				
    -				if ($index >= 0)
    -				{
    -					array_splice($this->edges, $index, 1);
    -				}
    -			}
    -			
    -			$edge->setTerminal(null, $outgoing);
    -		}
    -
    -		return $edge;
    -	}
    -
    -	/**
    -	 * Function: removeFromTerminal
    -	 *
    -	 * Removes the edge from its source or target terminal.
    -	 * 
    -	 * Parameters:
    -	 * 
    -	 * source - Boolean that specifies if the edge should be removed from its
    -	 * source or target terminal.
    -	 */
    -	function removeFromTerminal($source)
    -	{
    -	 	$terminal = $this->getTerminal($source);
    -	 	
    -	 	if (isset($terminal))
    -	 	{
    -	 		$terminal->removeEdge($this, $source);
    -	 	}
    -	}
    -
    -	/**
    -	 * Function: getAttribute
    -	 *
    -	 * Returns the specified attribute from the user object if it is an XML
    -	 * node.
    -	 */
    -	function getAttribute($key, $defaultValue = null)
    -	{
    -		$userObject = $this->getValue();
    -		
    -		$value = (is_object($userObject) &&
    -			$userObject->nodeType == XML_ELEMENT_NODE) ?
    -			$userObject->getAttribute($key) : null;
    -			
    -		if (!isset($value))
    -		{
    -			$value = $defaultValue;
    -		}
    -		
    -		return $value;
    -	}
    -
    -	/**
    -	 * Function: setAttribute
    -	 *
    -	 * Sets the specified attribute on the user object if it is an XML node.
    -	 */
    -	function setAttribute($key, $value)
    -	{
    -		$userObject = $this->getValue();
    -		
    -		if (is_object($userObject) &&
    -			$userObject->nodeType == XML_ELEMENT_NODE)
    -		{
    -			$userObject->setAttribute($key, $value);
    -		}
    -	}
    -	
    -	/**
    -	 * Function: copy
    -	 *
    -	 * Returns a clone of the cell. Uses <cloneValue> to clone
    -	 * the user object.
    -	 */
    -	function copy()
    -	{
    -	 	$clone = new mxCell($this->copyValue(), null, $this->style);
    -	 	$clone->vertex = $this->vertex;
    -	 	$clone->edge = $this->edge;
    -	 	$clone->connectable = $this->connectable;
    -	 	$clone->visible = $this->visible;
    -	 	$clone->collapsed = $this->collapsed;
    -		
    -		// Clones the geometry
    -		if (isset($this->geometry))
    -		{
    -			$clone->geometry = $this->geometry->copy();
    -		}
    -		
    -		return $clone;
    -	}
    -
    -	/**
    -	 * Function: copyValue
    -	 *
    -	 * Returns a clone of the cell's user object.
    -	 */
    -	function copyValue()
    -	{
    -		$value = $this->getValue();
    -		
    -		if (isset($value))
    -		{
    -			if (method_exists($value, "cloneNode"))
    -			{
    -				$value = $value->cloneNode(true);
    -			}
    -		}
    -		
    -		return $value;
    -	}
    -
    -}
    -
    -?>
    diff --git a/php/src/model/mxCellPath.php b/php/src/model/mxCellPath.php
    deleted file mode 100644
    index 8064c9b0f..000000000
    --- a/php/src/model/mxCellPath.php
    +++ /dev/null
    @@ -1,102 +0,0 @@
    -<?php
    -/**
    - * Copyright (c) 2006-2013, Gaudenz Alder
    - */
    -class mxCellPath
    -{
    -
    -	/**
    -	 * Class: mxCellPath
    -	 * 
    -	 * Implements a mechanism for temporary cell Ids.
    -	 * 
    -	 * Variable: codecs
    -	 *
    -	 * Maps from constructor names to codecs.
    -	 */
    -	public static $PATH_SEPARATOR = ".";
    -
    -	/**
    -	 * Function: create
    -	 * 
    -	 * Creates the cell path for the given cell. The cell path is a
    -	 * concatenation of the indices of all ancestors on the (finite) path to
    -	 * the root, eg. "0.0.0.1".
    -	 * 
    -	 * Parameters:
    -	 * 
    -	 * cell - Cell whose path should be returned.
    -	 */
    -	static function create($cell)
    -	{
    -		$result = "";
    -		$parent = $cell->getParent();
    -
    -		while ($parent != null)
    -		{
    -			$index = $parent->getIndex($cell);
    -			$result = $index . mxCellPath::$PATH_SEPARATOR . $result;
    -			
    -			$cell = $parent;
    -			$parent = $cell->getParent();
    -		}
    -		
    -		return (strlen($result) > 1) ?
    -			substr($result, 0, strlen($result) - 1) : "";
    -	}
    -
    -	/**
    -	 * Function: getParentPath
    -	 * 
    -	 * Returns the cell for the specified cell path using the given root as the
    -	 * root of the path.
    -	 * 
    -	 * Parameters:
    -	 * 
    -	 * path - Path whose parent path should be returned.
    -	 */
    -	static function getParentPath($path)
    -	{
    -		if ($path != null && strlen($path) > 0)
    -		{
    -			$index = strrpos($path, mxCellPath::$PATH_SEPARATOR);
    -			
    -			if ($index === false)
    -			{
    -				return "";
    -			}
    -			else
    -			{
    -				return substr($path, 0, $index);
    -			}
    -		}
    -		
    -		return null;
    -	}
    -
    -	/**
    -	 * Function: resolve
    -	 * 
    -	 * Returns the cell for the specified cell path using the given root as the
    -	 * root of the path.
    -	 * 
    -	 * Parameters:
    -	 * 
    -	 * root - Root cell of the path to be resolved.
    -	 * path - String that defines the path.
    -	 */
    -	static function resolve($root, $path)
    -	{
    -		$parent = $root;
    -		$tokens = explode(mxCellPath::$PATH_SEPARATOR, $path);
    -		
    -		for ($i=0; $i<sizeof($tokens); $i++)
    -		{
    -			$parent = $parent->getChildAt($tokens[$i]);
    -		}
    -		
    -		return $parent;
    -	}
    -
    -}
    -?>
    diff --git a/php/src/model/mxGeometry.php b/php/src/model/mxGeometry.php
    deleted file mode 100644
    index 21279b2ae..000000000
    --- a/php/src/model/mxGeometry.php
    +++ /dev/null
    @@ -1,233 +0,0 @@
    -<?php
    -/**
    - * Copyright (c) 2006-2013, Gaudenz Alder
    - */
    -class mxGeometry extends mxRectangle
    -{
    -
    -	/**
    -	 * Class: mxGeometry
    -	 *
    -	 * Represents the geometry of a cell. For vertices, the geometry consists
    -	 * of the x- and y-location, as well as the width and height. For edges,
    -	 * the edge either defines the source- and target-terminal, or the geometry
    -	 * defines the respective terminal points.
    -	 * 
    -	 * Variable: TRANSLATE_CONTROL_POINTS
    -	 * 
    -	 * Global switch to translate the points in translate. Default is true.
    -	 */
    -	public static $TRANSLATE_CONTROL_POINTS = true;
    -
    -	/**
    -	 * Variable: alternateBounds
    -	 *
    -	 * Stores alternate values for x, y, width and height in a rectangle.
    -	 * Default is null.
    -	 */
    -	var $alternateBounds;
    -
    -	/**
    -	 * Variable: sourcePoint
    -	 *
    -	 * Defines the source point of the edge. This is used if the corresponding
    -	 * edge does not have a source vertex. Otherwise it is ignored. Default is
    -	 * null.
    -	 */
    -	var $sourcePoint;
    -	
    -	/**
    -	 * Variable: targetPoint
    -	 *
    -	 * Defines the target point of the edge. This is used if the corresponding
    -	 * edge does not have a target vertex. Otherwise it is ignored. Default is
    -	 * null.
    -	 */
    -	var $targetPoint;
    -		
    -	/**
    -	 * Variable: points
    -	 *
    -	 * Array of <mxPoints> which specifies the control points along the edge.
    -	 * These points are the intermediate points on the edge, for the endpoints
    -	 * use <targetPoint> and <sourcePoint> or set the terminals of the edge to
    -	 * a non-null value. Default is null.
    -	 */
    -	var $points;
    -	
    -	/**
    -	 * Variable: offset
    -	 *
    -	 * Holds the offset of the label for edges. This is the absolute vector
    -	 * between the center of the edge and the top, left point of the label.
    -	 * Default is null.
    -	 */
    -	var $offset;
    -
    -	/**
    -	 * Variable: relative
    -	 *
    -	 * Specifies if the coordinates in the geometry are to be interpreted as
    -	 * relative coordinates. Default is false. This is used to mark a geometry
    -	 * with an x- and y-coordinate that is used to describe an edge label
    -	 * position.
    -	 */
    -	var $relative = false;
    -
    -	/**
    -	 * Constructor: mxGeometry
    -	 *
    -	 * Constructs a new object to describe the size and location
    -	 * of a vertex or the control points of an edge.
    -	 */
    -	function mxGeometry($x=0, $y=0, $width=0, $height=0)
    -	{
    -		parent::mxRectangle($x, $y, $width, $height);
    -	}
    -
    -	/**
    -	 * Function: getTerminalPoint
    -	 * 
    -	 * Returns the <mxPoint> representing the source or target point of this
    -	 * edge. This is only used if the edge has no source or target vertex.
    -	 * 
    -	 * Parameters:
    -	 * 
    -	 * isSource - Boolean that specifies if the source or target point
    -	 * should be returned.
    -	 */
    -	function getTerminalPoint($isSource)
    -	{
    -		return ($isSource) ? $this->sourcePoint : $this->targetPoint;
    -	}
    -	
    -	/**
    -	 * Function: setTerminalPoint
    -	 * 
    -	 * Sets the <sourcePoint> or <targetPoint> to the given <mxPoint> and
    -	 * returns the new point.
    -	 * 
    -	 * Parameters:
    -	 * 
    -	 * point - Point to be used as the new source or target point.
    -	 * isSource - Boolean that specifies if the source or target point
    -	 * should be set.
    -	 */
    -	function setTerminalPoint($point, $isSource)
    -	{
    -		if ($isSource)
    -		{
    -			$this->sourcePoint = $point;
    -		}
    -		else
    -		{
    -			$this->targetPoint = $point;
    -		}
    -		
    -		return $point;
    -	}
    -	
    -	/**
    -	 * Function: translate
    -	 * 
    -	 * Translates the geometry by the specified amount. That is, <x> and <y>
    -	 * of the geometry, the <sourcePoint>, <targetPoint> and all elements of
    -	 * <points> are translated by the given amount. <x> and <y> are only
    -	 * translated if <relative> is false. If <TRANSLATE_CONTROL_POINTS> is
    -	 * false, then <points> are not modified by this function.
    -	 * 
    -	 * Parameters:
    -	 * 
    -	 * dx - Integer that specifies the x-coordinate of the translation.
    -	 * dy - Integer that specifies the y-coordinate of the translation.
    -	 */
    -	function translate($dx, $dy)
    -	{
    -		// Translates the geometry
    -		if (!$this->relative)
    -		{
    -			$this->x += $dx;
    -			$this->y += $dy;
    -		}
    -		
    -		// Translates the source point
    -		if ($this->sourcePoint != null)
    -		{
    -			$this->sourcePoint->x += $dx;
    -			$this->sourcePoint->y += $dy;
    -		}
    -		
    -		// Translates the target point
    -		if ($this->targetPoint != null)
    -		{
    -			$this->targetPoint->x += $dx;
    -			$this->targetPoint->y += $dy;
    -		}
    -
    -		// Translate the control points
    -		if (mxGeometry::$TRANSLATE_CONTROL_POINTS &&
    -			$this->points != null)
    -		{
    -			$count = sizeof($this->points);
    -			
    -			for ($i = 0; $i < $count; $i++)
    -			{
    -				$pt = $this->points[i];
    -				
    -				$pt->x += $dx;
    -				$pt->y += $dy;
    -			}
    -		}
    -	}
    -	
    -	/**
    -	 * Function: copy
    -	 *
    -	 * Returns a copy of this <mxGeometry>.
    -	 */
    -	function copy()
    -	{
    -	 	$clone = new mxGeometry($this->x, $this->y, $this->width, $this->height);
    -				
    -		// Clones the points
    -		if ($this->points != null)
    -		{
    -			$clone->points = array();
    -			
    -			for ($i = 0; $i < sizeof($this->points); $i++)
    -			{
    -				array_push($clone->points, $this->points[$i]->copy());
    -			}
    -		}
    -		
    -		// Clones the alternatebounds
    -		if ($this->alternateBounds != null)
    -		{
    -			$clone->alternateBounds = $this->alternateBounds->copy();
    -		}
    -		
    -		// Clones the offset
    -		if ($this->offset != null)
    -		{
    -			$clone->offset = $this->offset->copy();
    -		}
    -		
    -		// Clones the source and targetpoint
    -		if ($this->sourcePoint != null)
    -		{
    -			$clone->sourcePoint = $this->sourcePoint->copy();
    -		}
    -		
    -		if ($this->targetPoint != null)
    -		{
    -			$clone->targetPoint = $this->targetPoint->copy();
    -		}
    -
    -	 	$clone->relative = $this->relative;
    -
    -		return $clone;
    -	}
    -
    -}
    -
    -?>
    diff --git a/php/src/model/mxGraphModel.php b/php/src/model/mxGraphModel.php
    deleted file mode 100644
    index 5dd549480..000000000
    --- a/php/src/model/mxGraphModel.php
    +++ /dev/null
    @@ -1,1334 +0,0 @@
    -<?php
    -/**
    - * Copyright (c) 2006-2013, Gaudenz Alder
    - */
    -class mxGraphModel extends mxEventSource
    -{
    -	
    -	/**
    -	 * Class: mxGraphModel
    -	 * 
    -	 * Cells are the elements of the graph model. They represent the state
    -	 * of the groups, vertices and edges in a graph.
    -	 *
    -	 * Fires a graphModelChanged event after each group of changes.
    -	 * 
    -	 * Variable: root
    -	 * 
    -	 * Holds the root cell, which in turn contains the cells that represent the
    -	 * layers of the diagram as child cells. That is, the actual elements of the
    -	 * diagram are supposed to live in the third generation of cells and below.
    -	 */
    -	var $root;
    -		
    -	/**
    -	 * Variable: cells
    -	 * 
    -	 * Maps from Ids to cells.
    -	 */
    -	var $cells;
    -	
    -	/**
    -	 * Variable: maintainEdgeParent
    -	 * 
    -	 * Specifies if edges should automatically be moved into the nearest common
    -	 * ancestor of their terminals. Default is true.
    -	 */
    -	var $maintainEdgeParent = true;
    -
    -	/**
    -	 * Variable: createIds
    -	 * 
    -	 * Specifies if the model should automatically create Ids for new cells.
    -	 * Default is true.
    -	 */
    -	var $createIds = true;
    -	
    -	/**
    -	 * Variable: nextId
    -	 * 
    -	 * Specifies the next Id to be created. Default is 0.
    -	 */
    -	var $nextId = 0;
    -
    -	/**
    -	 * Variable: updateLevel
    -	 * 
    -	 * Counter for the depth of nested transactions. Each call to <beginUpdate>
    -	 * will increment this number and each call to <endUpdate> will decrement
    -	 * it. When the counter reaches 0, the transaction is closed and the
    -	 * respective events are fired. Initial value is 0.
    -	 */
    -	var $updateLevel = 0;
    -
    -	/**
    -	 * Constructor: mxGraphModel
    -	 *
    -	 * Constructs a new graph model using the specified root cell.
    -	 */
    -	function mxGraphModel($root = null)
    -	{
    -	 	if (isset($root))
    -	 	{
    -			$this->setRoot($root);
    -	 	}
    -	 	else
    -	 	{
    -	 		$this->clear();
    -	 	}
    -	}
    -		
    -	/**
    -	 * Function: clear
    -	 *
    -	 * Sets a new root using <createRoot>.
    -	 */
    -	function clear()
    -	{
    -		$this->setRoot($this->createRoot());
    -	}
    -
    -	/**
    -	 * Function: createRoot
    -	 *
    -	 * Creates a new root cell with a default layer (child 0).
    -	 */
    -	function createRoot()
    -	{
    -		$root = new mxCell();
    -		$root->insert(new mxCell());
    -			
    -		return $root;
    -	}
    -	
    -	/**
    -	 * Function: getCells
    -	 * 
    -	 * Returns the internal lookup table that is used to map from Ids to cells.
    -	 */
    -	function getCells()
    -	{
    -	 	return $this->cells;
    -	}
    -
    -	/**
    -	 * Function: setRoot
    -	 *
    -	 */
    -	function getCell($id)
    -	{
    -		$result = null;
    -
    -		if ($this->cells != null)
    -		{
    -			$result = mxUtils::getValue($this->cells, $id);
    -		}
    -
    -		return $result;
    -	}
    -	
    -	/**
    -	 * Function: getRoot
    -	 * 
    -	 * Returns the root of the model.
    -	 */
    -	function getRoot()
    -	{
    -	 	return $this->root;
    -	}
    -	
    -	/**
    -	 * Function: setRoot
    -	 * 
    -	 * Sets the <root> of the model using <mxRootChange> and adds the change to
    -	 * the current transaction. This resets all datastructures in the model and
    -	 * is the preferred way of clearing an existing model. Returns the new
    -	 * root.
    -	 *
    -	 * Parameters:
    -	 * 
    -	 * root - <mxCell> that specifies the new root.
    -	 */
    -	function setRoot($root)
    -	{
    -		$oldRoot = $this->root;
    -		
    -	 	$this->beginUpdate();
    -	 	try
    -	 	{
    -			$this->root = $root;
    -			$this->nextId = 0;
    -			$this->cells = null;
    -			
    -			$this->cellAdded($root);
    -		}
    -		catch (Exception $e)
    -		{
    -			$this->endUpdate();
    -			throw($e);
    -		}
    -		$this->endUpdate();
    -		
    -		return $oldRoot;
    -	}
    -
    -	//
    -	// Cell Cloning
    -	//
    -
    -	/**
    -	 * Function: cloneCell
    -	 * 
    -	 * Returns a deep clone of the given <mxCell> (including
    -	 * the children) which is created using <cloneCells>.
    -	 *
    -	 * Parameters:
    -	 * 
    -	 * cell - <mxCell> to be cloned.
    -	 */
    -	function cloneCell($cell)
    -	{
    -		$clones = $this->cloneCells(array($cell), true);
    -		
    -		return $clones[0];
    -	}
    -
    -	/**
    -	 * Function: cloneCells
    -	 * 
    -	 * Returns an array of clones for the given array of <mxCells>.
    -	 * Depending on the value of includeChildren, a deep clone is created for
    -	 * each cell. Connections are restored based if the corresponding
    -	 * cell is contained in the passed in array.
    -	 *
    -	 * Parameters:
    -	 * 
    -	 * cells - Array of <mxCell> to be cloned.
    -	 * includeChildren - Boolean indicating if the cells should be cloned
    -	 * with all descendants.
    -	 */
    -	function cloneCells($cells, $includeChildren=true)
    -	{
    -		$mapping = array();
    -		$clones = array();
    -		
    -		for ($i=0; $i<sizeof($cells); $i++)
    -		{
    -			$cell = $cells[$i];
    -			$clne = $this->cloneCellImpl($cell, $mapping, $includeChildren);
    -			array_push($clones, $clne);
    -		}
    -		
    -		for ($i=0; $i<sizeof($clones); $i++)
    -		{
    -			$this->restoreClone($clones[$i], $cells[$i], $mapping);
    -		}
    -		
    -		return $clones;
    -	}
    -				
    -	/**
    -	 * Function: cloneCellImpl
    -	 * 
    -	 * Inner helper method for cloning cells recursively.
    -	 */
    -	function cloneCellImpl($cell, $mapping, $includeChildren)
    -	{
    -		$ident = mxCellPath::create($cell);
    -		$clne = $mapping[$ident];
    -		
    -		if ($clne == null)
    -		{
    -			$clne = $this->cellCloned($cell);
    -			$mapping[$ident] = $clne;	
    -		
    -			if ($includeChildren)
    -			{
    -				$childCount = $this->getChildCount($cell);
    -	
    -				for ($i = 0; $i < $childCount; $i++)
    -				{
    -					$child = $this->getChildAt($cell, $i);
    -					$cloneChild = $this->cloneCellImpl($child, $mapping, true);
    -					$clne->insert($cloneChild);
    -				}
    -			}
    -		}
    -		
    -		return $clne;
    -	}
    -
    -	/**
    -	 * Function: cellCloned
    -	 * 
    -	 * Hook for cloning the cell. This returns cell->copy() or
    -	 * any possible exceptions.
    -	 */
    -	function cellCloned($cell)
    -	{
    -		return $cell->copy();
    -	}
    -	
    -	/**
    -	 * Function: restoreClone
    -	 * 
    -	 * Inner helper method for restoring the connections in
    -	 * a network of cloned cells.
    -	 */
    -	function restoreClone($clne, $cell, $mapping)
    -	{
    -		$source = $this->getTerminal($cell, true);
    -		
    -		if ($source != null)
    -		{
    -			$tmp = $mapping[mxCellPath::create($source)];
    -			
    -			if ($tmp != null)
    -			{
    -				$tmp->insertEdge($clne, true);
    -			}
    -		}
    -		
    -		$target = $this->getTerminal($cell, false);
    -		
    -		if ($target != null)
    -		{
    -			$tmp = $mapping[mxCellPath::create($target)];
    -			
    -			if ($tmp != null)
    -			{
    -				$tmp->insertEdge($clne, false);
    -			}
    -		}
    -		
    -		$childCount = $this->getChildCount($clne);
    -		
    -		for ($i = 0; $i < $childCount; $i++)
    -		{
    -			$this->restoreClone($this->getChildAt($clne, $i),
    -				$this->getChildAt($cell, $i), $mapping);
    -		}
    -	}
    -	
    -	/**
    -	 * Function: isAncestor
    -	 * 
    -	 * Returns true if the given parent is an ancestor of the given child.
    -	 *
    -	 * Parameters:
    -	 * 
    -	 * parent - <mxCell> that specifies the parent.
    -	 * child - <mxCell> that specifies the child.
    -	 */
    -	function isAncestor($parent, $child)
    -	{
    -		while ($child != null && $child != $parent)
    -		{
    -			$child = $this->getParent($child);
    -		}
    -
    -		return $child === $parent;
    -	}
    -
    -	/**
    -	 * Function: contains
    -	 * 
    -	 * Returns true if the model contains the given <mxCell>.
    -	 *
    -	 * Parameters:
    -	 * 
    -	 * cell - <mxCell> that specifies the cell.
    -	 */
    -	function contains($cell)
    -	{
    -		return $this->isAncestor($this->root, $cell);
    -	}
    -	
    -	/**
    -	 * Function: getParent
    -	 * 
    -	 * Returns the parent of the given cell.
    -	 *
    -	 * Parameters:
    -	 * 
    -	 * cell - <mxCell> whose parent should be returned.
    -	 */
    -	function getParent($cell)
    -	{
    -		if ($cell != null)
    -		{
    -			return $cell->getParent();
    -		}
    -		
    -		return null;
    -	}
    -
    -	/**
    -	 * Function: add
    -	 * 
    -	 * Adds the specified child to the parent at the given index using
    -	 * <mxChildChange> and adds the change to the current transaction. If no
    -	 * index is specified then the child is appended to the parent's array of
    -	 * children. Returns the inserted child.
    -	 * 
    -	 * Parameters:
    -	 * 
    -	 * parent - <mxCell> that specifies the parent to contain the child.
    -	 * child - <mxCell> that specifies the child to be inserted.
    -	 * index - Optional integer that specifies the index of the child.
    -	 */
    -	function add($parent, $child, $index = null)
    -	{
    -		if ($child !== $parent && $child != null && $parent != null)
    -		{
    -			$parentChanged = $parent !== $this->getParent($child);
    -			
    -		 	$this->beginUpdate();
    -		 	try
    -		 	{
    -				$parent->insert($child, $index);
    -				$this->cellAdded($child);
    -			}
    -			catch (Exception $e)
    -			{
    -				$this->endUpdate();
    -				throw($e);
    -			}
    -			$this->endUpdate();
    -			
    -			if ($parentChanged && $this->maintainEdgeParent)
    -			{
    -				$this->updateEdgeParents($child);
    -			}
    -		}
    -		
    -		return $child;
    -	}
    -
    -	/**
    -	 * Function: cellAdded
    -	 * 
    -	 * Inner callback to update <cells> when a cell has been added. This
    -	 * implementation resolves collisions by creating new Ids.
    -	 *
    -	 * Parameters:
    -	 * 
    -	 * cell - <mxCell> that specifies the cell that has been added.
    -	 */
    -	function cellAdded($cell)
    -	{
    -	 	if ($cell->getId() == null && $this->createIds)
    -	 	{
    -	 		$cell->setId($this->createId($cell));
    -	 	}
    -	 	
    -	 	if ($cell->getId() != null)
    -	 	{
    -	 		$collision = $this->getCell($cell->getId());
    -	 		
    -	 		if ($collision != $cell)
    -	 		{
    -	 			while ($collision != null)
    -	 			{
    -	 				$cell->setId($this->createId($cell));
    -	 				$collision = $this->getCell($cell->getId());
    -	 			}
    -	 			
    -	 			if ($this->cells == null)
    -	 			{
    -	 				$this->cells = array();
    -	 			}
    -	 			
    -	 			$this->cells[$cell->getId()] = $cell;
    -	 		}
    -	 	}
    -
    -		// Makes sure IDs of deleted cells are not reused
    -		if (is_numeric($cell->getId()))
    -		{
    -			$this->nextId = max($this->nextId, $cell->getId() + 1);
    -		}
    -		
    -		$childCount = $this->getChildCount($cell);
    -		
    -		for ($i = 0; $i < $childCount; $i++)
    -		{
    -			$this->cellAdded($this->getChildAt($cell, $i));
    -		}
    -	}
    -			
    -	/**
    -	 * Function: createId
    -	 * 
    -	 * Hook method to create an Id for the specified cell. This
    -	 * implementation increments <nextId>.
    -	 *
    -	 * Parameters:
    -	 *
    -	 * cell - <mxCell> to create the Id for.
    -	 */
    -	function createId($cell)
    -	{
    -		$id = $this->nextId;
    -		$this->nextId++;
    -		
    -		return $id;
    -	}
    -
    -	/**
    -	 * Function: updateEdgeParents
    -	 * 
    -	 * Updates the parent for all edges that are connected to cell or one of
    -	 * its descendants using <updateEdgeParent>.
    -	 */
    -	function updateEdgeParents($cell, $root = null)
    -	{
    -		// Gets the topmost node of the hierarchy
    -		$root = $root || $this->getRoot();
    -		
    -		// Updates edges on children first
    -		$childCount = $this->getChildCount($cell);
    -		
    -		for ($i = 0; $i < $childCount; $i++)
    -		{
    -			$child = $this->getChildAt($cell, $i);
    -			$this->updateEdgeParents($child, $root);
    -		}
    -		
    -		// Updates the parents of all connected edges
    -		$edgeCount = $this->getEdgeCount($cell);
    -		$edges = array();
    -		
    -		for ($i = 0; $i < $edgeCount; $i++)
    -		{
    -			array_push($edges, $this->getEdgeAt($cell, $i));
    -		}
    -		
    -		foreach ($edges as $edge)
    -		{
    -			// Updates edge parent if edge and child have
    -			// a common root node (does not need to be the
    -			// model root node)
    -			if ($this->isAncestor($root, $edge))
    -			{
    -				$this->updateEdgeParent($edge, $root);
    -			}
    -		}
    -	}
    -	
    -	/**
    -	 * Function: updateEdgeParent
    -	 *
    -	 * Inner callback to update the parent of the specified <mxCell> to the
    -	 * nearest-common-ancestor of its two terminals.
    -	 *
    -	 * Parameters:
    -	 * 
    -	 * edge - <mxCell> that specifies the edge.
    -	 * root - <mxCell> that represents the current root of the model.
    -	 */
    -	function updateEdgeParent($edge, $root)
    -	{
    -		$source = $this->getTerminal($edge, true);
    -		$target = $this->getTerminal($edge, false);
    -		$cell = null;
    -		
    -		// Uses the first non-relative descendants of the source terminal
    -		while ($source != null && !$this->isEdge($source) &&
    -			$source->geometry != null && $source->geometry->relative)
    -		{
    -			$source = $this->getParent($source);
    -		}
    -		
    -		// Uses the first non-relative descendants of the target terminal
    -		while ($target != null && !$this->isEdge($target) &&
    -			$target->geometry != null && $target->geometry->relative)
    -		{
    -			$target = $this->getParent($target);
    -		}
    -		
    -		if ($this->isAncestor($root, $source) &&
    -			$this->isAncestor($root, $target))
    -		{
    -			if ($source === $target)
    -			{
    -				$cell = $this->getParent($source);
    -			}
    -			else
    -			{
    -				$cell = $this->getNearestCommonAncestor($source, $target);
    -			}
    -			
    -			if ($cell != null &&
    -				$this->getParent($cell) !== $this->root &&
    -				$this->getParent($edge) !== $cell)
    -			{
    -				$geo = $this->getGeometry($edge);
    -				
    -				if ($geo != null)
    -				{
    -					$origin1 = $this->getOrigin($this->getParent($edge));
    -					$origin2 = $this->getOrigin($cell);
    -					
    -					$dx = $origin2->x - $origin1->x;
    -					$dy = $origin2->y - $origin1->y;
    -					
    -					$geo = $geo->copy();
    -					$geo->translate(-$dx, -$dy);
    -					$this->setGeometry($edge, $geo);
    -				}
    -				
    -				$this->add($cell, $edge, $this->getChildCount($cell));
    -			}
    -		}
    -	}
    -
    -	/**
    -	 * Function: getOrigin
    -	 * 
    -	 * Returns the absolute, cummulated origin for the children inside the
    -	 * given parent as an <mxPoint>.
    -	 */
    -	function getOrigin($cell)
    -	{
    -		$result = null;
    -		
    -		if ($cell != null)
    -		{
    -			$result = $this->getOrigin($this->getParent($cell));
    -			
    -			if (!$this->isEdge($cell))
    -			{
    -				$geo = $this->getGeometry($cell);
    -				
    -				if ($geo != null)
    -				{
    -					$result->x += $geo->x;
    -					$result->y += $geo->y;
    -				}
    -			}
    -		}
    -		else
    -		{
    -			$result = new mxPoint();
    -		}
    -		
    -		return $result;
    -	}
    -	
    -	/**
    -	 * Function: getNearestCommonAncestor
    -	 * 
    -	 * Returns the nearest common ancestor for the specified cells.
    -	 *
    -	 * Parameters:
    -	 * 
    -	 * cell1 - <mxCell> that specifies the first cell in the tree.
    -	 * cell2 - <mxCell> that specifies the second cell in the tree.
    -	 */
    -	function getNearestCommonAncestor($cell1, $cell2)
    -	{
    -		if ($cell1 != null && $cell2 != null)
    -		{		
    -			// Creates the cell path for the second cell
    -			$path = mxCellPath::create($cell2);
    -			
    -			if (isset($path) && strlen($path) > 0)
    -			{
    -				// Bubbles through the ancestors of the target
    -				// cell to find the nearest common ancestor.
    -				$cell = $cell1;
    -				$current = mxCellPath::create($cell);
    -				
    -				while ($cell != null)
    -				{
    -					$parent = $this->getParent($cell);
    -
    -					// Checks if the cell path is equal to the beginning
    -					// of the given cell path
    -					if (strpos($path, $current.mxCellPath::$PATH_SEPARATOR) === 0 &&
    -						$parent != null)
    -					{
    -						return $cell;
    -					}
    -					
    -					$current = mxCellPath::getParentPath($current);
    -					$cell = $parent;
    -				}
    -			}
    -		}
    -		
    -		return null;
    -	}
    -
    -	/**
    -	 * Function: remove
    -	 * 
    -	 * Removes the specified cell from the model using <mxChildChange> and adds
    -	 * the change to the current transaction. This operation will remove the
    -	 * cell and all of its children from the model. Returns the removed cell.
    -	 *
    -	 * Parameters:
    -	 * 
    -	 * cell - <mxCell> that should be removed.
    -	 */
    -	function remove($cell)
    -	{
    -	 	$this->beginUpdate();
    -	 	try
    -	 	{
    -			if ($cell === $this->root)
    -			{
    -				$this->setRoot(null);
    -			}
    -			else
    -			{
    -				$cell->removeFromParent();
    -            }
    -            
    -            $this->cellRemoved($cell);
    -		}
    -		catch (Exception $e)
    -		{
    -			$this->endUpdate();
    -			throw($e);
    -		}
    -		$this->endUpdate();
    -
    -		return $cell;
    -	}
    -
    -	/**
    -	 * Function: cellRemoved
    -	 * 
    -	 * Inner callback to update <cells> when a cell has been removed.
    -	 *
    -	 * Parameters:
    -	 * 
    -	 * cell - <mxCell> that specifies the cell that has been removed.
    -	 */
    -	function cellRemoved($cell)
    -	{
    -		if ($cell != null)
    -		{
    -			$childCount = $this->getChildCount($cell);
    -			
    -			for ($i = 0; $i < $childCount; $i++)
    -			{
    -				$this->cellRemoved($this->getChildAt($cell, $i));
    -			}
    -			
    -			$cell->removeFromTerminal(true);
    -			$cell->removeFromTerminal(false);
    -
    -			if ($this->cells != null && $cell->getId() != null)
    -			{
    -				$this->cells[$cell->getId()] = null;
    -			}
    -		}
    -	}
    -
    -	/**
    -	 * Function: getChildCount
    -	 *
    -	 * Returns the number of children in the given cell.
    -	 *
    -	 * Parameters:
    -	 * 
    -	 * cell - <mxCell> whose number of children should be returned.
    -	 */
    -	function getChildCount($cell)
    -	{
    -	 	return ($cell != null) ? $cell->getChildCount() : 0;
    -	}
    -	
    -	/**
    -	 * Function: getChildAt
    -	 *
    -	 * Returns the child of the given <mxCell> at the given index.
    -	 * 
    -	 * Parameters:
    -	 * 
    -	 * cell - <mxCell> that represents the parent.
    -	 * index - Integer that specifies the index of the child to be returned.
    -	 */
    -	function getChildAt($cell, $index)
    -	{
    -		if ($cell != null)
    -		{
    -			return $cell->getChildAt($index);
    -		}
    -		
    -		return null;
    -	}
    -
    -	/**
    -	 * Function: getTerminal
    -	 * 
    -	 * Returns the source or target <mxCell> of the given edge depending on the
    -	 * value of the boolean parameter.
    -	 *
    -	 * Parameters:
    -	 * 
    -	 * edge - <mxCell> that specifies the edge.
    -	 * cource - Boolean indicating which end of the edge should be returned.
    -	 */
    -	function getTerminal($edge, $cource)
    -	{
    -		if ($edge != null)
    -		{
    -			return $edge->getTerminal($cource);
    -		}
    -		
    -	 	return null;
    -	}
    -	
    -	/**
    -	 * Function: setTerminal
    -	 * 
    -	 * Sets the source or target terminal of the given <mxCell> using
    -	 * <mxTerminalChange> and adds the change to the current transaction.
    -	 * This implementation updates the parent of the edge using <updateEdgeParent>
    -	 * if required.
    -	 *
    -	 * Parameters:
    -	 * 
    -	 * edge - <mxCell> that specifies the edge.
    -	 * terminal - <mxCell> that specifies the new terminal.
    -	 * isSource - Boolean indicating if the terminal is the new source or
    -	 * target terminal of the edge.
    -	 */
    -	function setTerminal($edge, $terminal, $source)
    -	{
    -		$previous = $edge->getTerminal($source);
    -		
    -		$this->beginUpdate();
    -		try
    -		{
    -			if ($terminal != null)
    -			{
    -				$terminal->insertEdge($edge, $source);
    -			}
    -			else if ($previous != null)
    -			{
    -				$previous->removeEdge($edge, $source);
    -			}
    -		}
    -		catch (Exception $e)
    -		{
    -			$this->endUpdate();
    -			throw($e);
    -		}
    -		$this->endUpdate();
    -
    -        if ($this->maintainEdgeParent)
    -        {
    -			$this->updateEdgeParent($edge, $this->getRoot());
    -        }
    -
    -		return $terminal;
    -	}
    -	
    -	/**
    -	 * Function: setTerminals
    -	 * 
    -	 * Sets the source and target <mxCell> of the given <mxCell> in a single
    -	 * transaction using <setTerminal> for each end of the edge.
    -	 *
    -	 * Parameters:
    -	 * 
    -	 * edge - <mxCell> that specifies the edge.
    -	 * source - <mxCell> that specifies the new source terminal.
    -	 * target - <mxCell> that specifies the new target terminal.
    -	 */
    -	function setTerminals($edge, $source, $target)
    -	{
    -		$this->beginUpdate();
    -		try
    -		{
    -			$this->setTerminal($edge, $source, true);
    -			$this->setTerminal($edge, $target, false);
    -		}
    -		catch (Exception $e)
    -		{
    -			$this->endUpdate();
    -			throw($e);
    -		}
    -		$this->endUpdate();
    -	}
    -	
    -	/**
    -	 * Function: getEdgeCount
    -	 * 
    -	 * Returns the number of distinct edges connected to the given cell.
    -	 *
    -	 * Parameters:
    -	 * 
    -	 * cell - <mxCell> that represents the vertex.
    -	 */
    -	function getEdgeCount($cell)
    -	{
    -	 	return ($cell != null) ? $cell->getEdgeCount() : 0;
    -	}
    -	
    -	/**
    -	 * Function: getEdgeAt
    -	 * 
    -	 * Returns the edge of cell at the given index.
    -	 *
    -	 * Parameters:
    -	 * 
    -	 * cell - <mxCell> that specifies the vertex.
    -	 * index - Integer that specifies the index of the edge
    -	 * to return.
    -	 */
    -	function getEdgeAt($cell, $index)
    -	{
    -	 	return ($cell != null) ? $cell->getEdgeAt($index) : null;
    -	}
    -
    -	/**
    -	 * Function: getEdges
    -	 * 
    -	 * Returns all distinct edges connected to this cell as an array of
    -	 * <mxCells>. The return value should be only be read.
    -	 *
    -	 * Parameters:
    -	 * 
    -	 * cell - <mxCell> that specifies the cell.
    -	 */
    -	function getEdges($cell)
    -	{
    -		return ($cell != null) ? $cell->edges : null;
    -	}
    -	
    -	/**
    -	 * Function: isVertex
    -	 * 
    -	 * Returns true if the given cell is a vertex.
    -	 *
    -	 * Parameters:
    -	 * 
    -	 * cell - <mxCell> that represents the possible vertex.
    -	 */
    -	function isVertex($cell)
    -	{
    -	 	return ($cell != null) ? $cell->isVertex() : null;
    -	}
    -
    -	/**
    -	 * Function: isEdge
    -	 * 
    -	 * Returns true if the given cell is an edge.
    -	 *
    -	 * Parameters:
    -	 * 
    -	 * cell - <mxCell> that represents the possible edge.
    -	 */
    -	function isEdge($cell)
    -	{
    -	 	return ($cell != null) ? $cell->isEdge() : null;
    -	}
    -
    -	/**
    -	 * Function: isConnectable
    -	 * 
    -	 * Returns true if the given <mxCell> is connectable. If <edgesConnectable>
    -	 * is false, then this function returns false for all edges else it returns
    -	 * the return value of <mxCell.isConnectable>.
    -	 *
    -	 * Parameters:
    -	 * 
    -	 * cell - <mxCell> whose connectable state should be returned.
    -	 */
    -	function isConnectable($cell)
    -	{
    -	 	return ($cell != null) ? $cell->isConnectable() : false;
    -	}
    -
    -	/**
    -	 * Function: getValue
    -	 * 
    -	 * Returns the user object of the given <mxCell> using <mxCell.getValue>.
    -	 *
    -	 * Parameters:
    -	 * 
    -	 * cell - <mxCell> whose user object should be returned.
    -	 */
    -	function getValue($cell)
    -	{
    -	 	return ($cell != null) ? $cell->getValue() : null;
    -	}
    -	
    -	/**
    -	 * Function: setValue
    -	 * 
    -	 * Sets the user object of then given <mxCell> using <mxValueChange>
    -	 * and adds the change to the current transaction.
    -	 *
    -	 * Parameters:
    -	 * 
    -	 * cell - <mxCell> whose user object should be changed.
    -	 * value - Object that defines the new user object.
    -	 */
    -	function setValue($cell, $value)
    -	{
    -	 	$this->beginUpdate();
    -	 	try
    -	 	{
    -		 	$cell->setValue($value);
    -		}
    -		catch (Exception $e)
    -		{
    -			$this->endUpdate();
    -			throw($e);
    -		}
    -		$this->endUpdate();
    -	 	
    -	 	return $value;
    -	}
    -
    -	/**
    -	 * Function: getGeometry
    -	 * 
    -	 * Returns the <mxGeometry> of the given <mxCell>.
    -	 *
    -	 * Parameters:
    -	 * 
    -	 * cell - <mxCell> whose geometry should be returned.
    -	 */
    -	function getGeometry($cell)
    -	{
    -		if ($cell != null)
    -		{
    -			return $cell->getGeometry();
    -		}
    -		
    -		return null;
    -	}
    -
    -	/**
    -	 * Function: setGeometry
    -	 * 
    -	 * Sets the <mxGeometry> of the given <mxCell>. The actual update
    -	 * of the cell is carried out in <geometryForCellChanged>. The
    -	 * <mxGeometryChange> action is used to encapsulate the change.
    -	 * 
    -	 * Parameters:
    -	 * 
    -	 * cell - <mxCell> whose geometry should be changed.
    -	 * geometry - <mxGeometry> that defines the new geometry.
    -	 */
    -	function setGeometry($cell, $geometry)
    -	{
    -		$this->beginUpdate();
    -		try
    -		{	
    -		 	$cell->setGeometry($geometry);
    -		}
    -		catch (Exception $e)
    -		{
    -			$this->endUpdate();
    -			throw($e);
    -		}
    -		$this->endUpdate();
    -	 	
    -	 	return $geometry;
    -	}
    -
    -	/**
    -	 * Function: getStyle
    -	 * 
    -	 * Returns the style of the given <mxCell>.
    -	 *
    -	 * Parameters:
    -	 * 
    -	 * cell - <mxCell> whose style should be returned.
    -	 */
    -	function getStyle($cell)
    -	{
    -	 	return ($cell != null) ? $cell->getStyle() : null;
    -	}
    -
    -	/**
    -	 * Function: setStyle
    -	 * 
    -	 * Sets the style of the given <mxCell> using <mxStyleChange> and
    -	 * adds the change to the current transaction.
    -	 *
    -	 * Parameters:
    -	 * 
    -	 * cell - <mxCell> whose style should be changed.
    -	 * style - String of the form stylename[;key=value] to specify
    -	 * the new cell style.
    -	 */
    -	function setStyle($cell, $style)
    -	{
    - 		$this->beginUpdate();
    - 		try
    - 		{
    -		 	$cell->setStyle($style);
    -		}
    -		catch (Exception $e)
    -		{
    -			$this->endUpdate();
    -			throw($e);
    -		}
    -		$this->endUpdate();
    -	 	
    -	 	return $style;
    -	}
    -	
    -	/**
    -	 * Function: isCollapsed
    -	 * 
    -	 * Returns true if the given <mxCell> is collapsed.
    -	 *
    -	 * Parameters:
    -	 * 
    -	 * cell - <mxCell> whose collapsed state should be returned.
    -	 */
    -	function isCollapsed($cell)
    -	{
    -	 	return ($cell != null) ? $cell->isCollapsed() : false;
    -	}
    -	
    -	/**
    -	 * Function: setCollapsed
    -	 * 
    -	 * Sets the collapsed state of the given <mxCell> using <mxCollapseChange>
    -	 * and adds the change to the current transaction.
    -	 *
    -	 * Parameters:
    -	 * 
    -	 * cell - <mxCell> whose collapsed state should be changed.
    -	 * collapsed - Boolean that specifies the new collpased state.
    -	 */
    -	function setCollapsed($cell, $isCollapsed)
    -	{
    -	 	$this->beginUpdate();
    -	 	try
    -	 	{
    -		 	$cell->setCollapsed($isCollapsed);
    -		}
    -		catch (Exception $e)
    -		{
    -			$this->endUpdate();
    -			throw($e);
    -		}
    -		$this->endUpdate();
    -	 	
    -	 	return $isCollapsed;
    -	}
    -
    -	/**
    -	 * Function: isVisible
    -	 * 
    -	 * Returns true if the given <mxCell> is visible.
    -	 * 
    -	 * Parameters:
    -	 * 
    -	 * cell - <mxCell> whose visible state should be returned.
    -	 */
    -	function isVisible($cell)
    -	{
    -	 	return ($cell != null) ? $cell->isVisible() : false;
    -	}
    -
    -	/**
    -	 * Function: setVisible
    -	 * 
    -	 * Sets the visible state of the given <mxCell> using <mxVisibleChange> and
    -	 * adds the change to the current transaction.
    -	 *
    -	 * Parameters:
    -	 * 
    -	 * cell - <mxCell> whose visible state should be changed.
    -	 * visible - Boolean that specifies the new visible state.
    -	 */
    -	function setVisible($cell, $visible)
    -	{
    -	 	$this->beginUpdate();
    -	 	try
    -	 	{
    -		 	$cell->setVisible($visible);
    -		}
    -		catch (Exception $e)
    -		{
    -			$this->endUpdate();
    -			throw($e);
    -		}
    -		$this->endUpdate();
    -	 	
    -	 	return $isVisible;
    -	}
    -
    -	/**
    -	 * Function: mergeChildren
    -	 * 
    -	 * Merges the children of the given cell into the given target cell inside
    -	 * this model. All cells are cloned unless there is a corresponding cell in
    -	 * the model with the same id, in which case the source cell is ignored and
    -	 * all edges are connected to the corresponding cell in this model. Edges
    -	 * are considered to have no identity and are always cloned unless the
    -	 * cloneAllEdges flag is set to false, in which case edges with the same
    -	 * id in the target model are reconnected to reflect the terminals of the
    -	 * source edges.
    -	 */
    -	function mergeChildren($from, $to, $cloneAllEdges = true)
    -	{
    -		$this->beginUpdate();
    -		try
    -		{
    -			$mapping = array();
    -			$this->mergeChildrenImpl($from, $to, $cloneAllEdges, $mapping);
    -			
    -			// Post-processes all edges in the mapping and
    -			// reconnects the terminals to the corresponding
    -			// cells in the target model
    -			foreach ($mapping as $key => $cell)
    -			{
    -				$terminal = $this->getTerminal($cell, $true);
    -				
    -				if (isset($terminal))
    -				{
    -					$terminal = $mapping[mxCellPath::create($terminal)];
    -					$this->setTerminal($cell, $terminal, $true);
    -				}
    -				
    -				$terminal = $this->getTerminal(cell, false);
    -				
    -				if (isset($terminal))
    -				{
    -					$terminal = $mapping[mxCellPath::create($terminal)];
    -					$this->setTerminal($cell, $terminal, false);
    -				}
    -			}
    -		}
    -		catch (Exception $e)
    -		{
    -			$this->endUpdate();
    -			throw($e);
    -		}
    -		$this->endUpdate();
    -	}
    -
    -	/**
    -	 * Function: mergeChildrenImpl
    -	 * 
    -	 * Clones the children of the source cell into the given target cell in
    -	 * this model and adds an entry to the mapping that maps from the source
    -	 * cell to the target cell with the same id or the clone of the source cell
    -	 * that was inserted into this model.
    -	 */
    -	function mergeChildrenImpl($from, $to, $cloneAllEdges, $mapping)
    -	{
    -		$this->beginUpdate();
    -		try
    -		{
    -			$childCount = $from->getChildCount();
    -			
    -			for ($i = 0; $i < $childCount; $i++)
    -			{
    -				$cell = $from->getChildAt($i);
    -				$id = $cell->getId();
    -				$target = (isset($d) && (!$this->isEdge($cell) || !$cloneAllEdges)) ?
    -						$this->getCell($id) : null;
    -				
    -				// Clones and adds the child if no cell exists for the id
    -				if (!isset($target))
    -				{
    -					$clone = $cell->clone();
    -					$clone->setId($id);
    -					
    -					// Sets the terminals from the original cell to the clone
    -					// because the lookup uses strings not cells in PHP
    -					$clone->setTerminal($cell->getTerminal(true), true);
    -					$clone->setTerminal($cell->getTerminal(false), false);
    -											
    -					// Do *NOT* use model.add as this will move the edge away
    -					// from the parent in updateEdgeParent if maintainEdgeParent
    -					// is enabled in the target model
    -					$target = $to->insert($clone);
    -					$this->cellAdded($target);
    -				}
    -				
    -				// Stores the mapping for later reconnecting edges
    -				$mapping[mxCellPath::create($cell)] = $target;
    -				
    -				// Recurses
    -				$this->mergeChildrenImpl($cell, $target, $cloneAllEdges, $mapping);
    -			}
    -		}
    -		catch (Exception $e)
    -		{
    -			$this->endUpdate();
    -			throw($e);
    -		}
    -		$this->endUpdate();
    -	}
    -
    -	/**
    -	 * Function: beginUpdate
    -	 * 
    -	 * Increments the <updateLevel> by one. The event notification
    -	 * is queued until <updateLevel> reaches 0 by use of
    -	 * <endUpdate>.
    -	 */
    -	function beginUpdate()
    -	{
    -		$this->updateLevel++;
    -	}
    -
    -	/**
    -	 * Function: endUpdate
    -	 * 
    -	 * Decrements the <updateLevel> by one and fires a notification event if
    -	 * the <updateLevel> reaches 0. This function indirectly fires a
    -	 * notification.
    -	 */
    -	function endUpdate()
    -	{
    -		$this->updateLevel--;
    -
    -		if ($this->updateLevel == 0)
    -		{
    -			$this->fireEvent(new mxEventObject(mxEvent::$GRAPH_MODEL_CHANGED));
    -		}
    -	}
    -
    -	/**
    -	 * Function: getDirectedEdgeCount
    -	 * 
    -	 * Returns the number of incoming or outgoing edges, ignoring the given
    -	 * edge.
    -	 * 
    -	 * Parameters:
    -	 * 
    -	 * cell - <mxCell> whose edge count should be returned.
    -	 * outgoing - Boolean that specifies if the number of outgoing or
    -	 * incoming edges should be returned.
    -	 * ignoredEdge - <mxCell> that represents an edge to be ignored.
    -	 */
    -	function getDirectedEdgeCount($cell, $outgoing, $ignoredEdge = null)
    -	{
    -		$count = 0;
    -		$edgeCount = $this->getEdgeCount($cell);
    -
    -		for ($i = 0; $i < $edgeCount; $i++)
    -		{
    -			$edge = $this->getEdgeAt($cell, $i);
    -			
    -			if ($edge !== $ignoredEdge &&
    -				$this->getTerminal($edge, $outgoing) === $cell)
    -			{
    -				$count++;
    -			}
    -		}
    -		
    -		return $count;
    -	}
    -
    -}
    -
    -?>
    diff --git a/php/src/mxServer.php b/php/src/mxServer.php
    deleted file mode 100644
    index 6420f12a0..000000000
    --- a/php/src/mxServer.php
    +++ /dev/null
    @@ -1,51 +0,0 @@
    -<?php
    -/**
    - * Copyright (c) 2006, Gaudenz Alder
    - *
    - * Class: mxServer
    - *
    - * Bootstrapping for the PHP backend. This is version 4.0.3
    - * of mxGraph.
    - *
    - * Variable: MXGRAPH-VERSION
    - *
    - * Constant that holds the current mxGraph version. The current version
    - * is 4.0.3.
    - */
    -define("MXGRAPH-VERSION", "4.0.3");
    -
    -// Disables external entities in XML
    -libxml_disable_entity_loader(true);
    -
    -include_once("util/mxLog.php");
    -include_once("util/mxConstants.php");
    -include_once("util/mxUtils.php");
    -include_once("util/mxPoint.php");
    -include_once("util/mxRectangle.php");
    -include_once("util/mxEvent.php");
    -include_once("util/mxEventObject.php");
    -include_once("util/mxEventSource.php");
    -include_once("util/mxImageBundle.php");
    -include_once("model/mxCell.php");
    -include_once("model/mxCellPath.php");
    -include_once("model/mxGeometry.php");
    -include_once("model/mxGraphModel.php");
    -include_once("canvas/mxGdCanvas.php");
    -include_once("canvas/mxHtmlCanvas.php");
    -include_once("reader/mxGraphViewImageReader.php");
    -include_once("reader/mxGraphViewHtmlReader.php");
    -include_once("view/mxCellState.php");
    -include_once("view/mxConnectionConstraint.php");
    -include_once("view/mxStylesheet.php");
    -include_once("view/mxPerimeter.php");
    -include_once("view/mxEdgeStyle.php");
    -include_once("view/mxStyleRegistry.php");
    -include_once("view/mxGraphView.php");
    -include_once("view/mxGraph.php");
    -include_once("io/mxCodecRegistry.php");
    -include_once("io/mxCodec.php");
    -include_once("io/mxObjectCodec.php");
    -include_once("io/mxCellCodec.php");
    -include_once("io/mxModelCodec.php");
    -include_once("io/mxStylesheetCodec.php");
    -?>
    diff --git a/php/src/reader/mxGraphViewHtmlReader.php b/php/src/reader/mxGraphViewHtmlReader.php
    deleted file mode 100644
    index 6964303b4..000000000
    --- a/php/src/reader/mxGraphViewHtmlReader.php
    +++ /dev/null
    @@ -1,68 +0,0 @@
    -<?php
    -/**
    - * Copyright (c) 2006-2013, Gaudenz Alder
    - */
    -
    -class mxGraphViewHtmlReader extends mxGraphViewImageReader
    -{
    -
    -	/**
    -	 * Class: mxGraphViewHtmlReader
    -	 *
    -	 * A display XML to HTML converter. This allows to create an image of a graph
    -	 * without having to parse and create the graph model using the XML file
    -	 * created for the mxGraphView object in the thin client.
    -	 * 
    -	 * Constructor: mxGraphViewHtmlReader
    -	 *
    -	 * Constructs a new HTML graph view reader.
    -	 */
    -	function mxGraphViewHtmlReader()
    -	{
    -		parent::mxGraphViewImageReader();
    -	}
    -
    -	/**
    -	 * Function: createCanvas
    -	 *
    -	 * Returns the canvas to be used for rendering.
    -	 */
    -	function createCanvas($attrs)
    -	{
    -		return new mxHtmlCanvas($this->scale);
    -	}
    -
    -	/**
    -	 * Function: convert
    -	 *
    -	 * Creates the HTML markup for the given display XML string.
    -	 */
    -	static function convert($string, $background = null)
    -	{
    -		$viewReader = new mxGraphViewHtmlReader();
    -		
    -		$viewReader->read($string);
    -		$html = $viewReader->canvas->getHtml();
    -		$viewReader->destroy();
    -		
    -		return $html;	
    -	}
    -
    -	/**
    -	 * Function: convertFile
    -	 *
    -	 * Creates the HTML markup for the given display XML file.
    -	 */
    -	static function convertFile($filename, $background = null)
    -	{
    -		$viewReader = new mxGraphViewHtmlReader();
    -		
    -		$viewReader->readFile($filename);
    -		$html = $viewReader->canvas->getHtml();
    -		$viewReader->destroy();
    -		
    -		return $html;		
    -	}
    -
    -}
    -?>
    diff --git a/php/src/reader/mxGraphViewImageReader.php b/php/src/reader/mxGraphViewImageReader.php
    deleted file mode 100644
    index b32a63e82..000000000
    --- a/php/src/reader/mxGraphViewImageReader.php
    +++ /dev/null
    @@ -1,293 +0,0 @@
    -<?php
    -/**
    - * Copyright (c) 2006-2013, Gaudenz Alder
    - */
    -
    -class mxGraphViewImageReader
    -{
    -
    -	/**
    -	 * Class: mxGraphViewImageReader
    -	 *
    -	 * A display XML to image converter. This allows to create an image of a graph
    -	 * without having to parse and create the graph model using the XML file
    -	 * created for the mxGraphView object in the thin client.
    -	 *
    -	 * To create the XML for the mxGraphView on the client:
    -	 *
    -	 * (code)
    -	 * var enc = new mxCodec(mxUtils.createXMLDocument());
    -	 * var node = enc.encode(editor.graph.view);
    -	 * var xml = mxUtils.getXML(node);
    -	 * (end)
    -	 * 
    -	 * Variable: canvas
    -	 *
    -	 * Holds the canvas.
    -	 */
    -	var $canvas;
    -	
    -	/**
    -	 * Variable: scale
    -	 * 
    -	 * Holds the global scale of the graph. This is set just before
    -	 * createCanvas is called.
    -	 */
    -	var $scale = 1;
    -	
    -	/**
    -	 * Variable: parser
    -	 *
    -	 * Holds the SAX parser.
    -	 */
    -	var $parser;
    -	
    -	/**
    -	 * Variable: background
    -	 *
    -	 * Holds the background color.
    -	 */
    -	var $background;
    -	
    -	/**
    -	 * Variable: border
    -	 *
    -	 * Holds the border size. Default is 0.
    -	 */
    -	var $border;
    -
    -	/**
    -	 * Constructor: mxGraphViewImageReader
    -	 *
    -	 * Constructs a new image graph view reader.
    -	 */
    -	function mxGraphViewImageReader($background = null, $border = 0)
    -	{
    -		$this->parser = xml_parser_create();
    -		
    -		xml_parser_set_option($this->parser, XML_OPTION_CASE_FOLDING, 0);
    -		xml_set_object($this->parser, $this);
    -		xml_set_element_handler($this->parser, "startElement", "endElement");
    -			
    -		$this->background = $background;
    -		$this->border = $border;
    -	}
    -
    -	/**
    -	 * Function: createCanvas
    -	 *
    -	 * Returns the canvas to be used for rendering.
    -	 */
    -	function createCanvas($attrs)
    -	{
    -		$width = $attrs["x"] + $attrs["width"] + $this->border + 1;
    -		$height = $attrs["y"] + $attrs["height"] + $this->border + 1;
    -
    -		return new mxGdCanvas($width, $height, $this->scale, $this->background);
    -	}
    -
    -	/**
    -	 * Function: read
    -	 *
    -	 * Reads the specified view XML string.
    -	 */
    -	function read($string)
    -	{
    -		xml_parse($this->parser, $string, true);
    -	}
    -	
    -	/**
    -	 * Function: readFile
    -	 *
    -	 * Reads the specified view XML file in blocks of 4096 bytes.
    -	 */
    -	function readFile($filename)
    -	{
    -		$fp = fopen($filename, "r");
    -		
    -		while ($data = fread($fp, 4096))
    -		{
    -			xml_parse($this->parser, $data, feof($fp)) or
    -			die (sprintf("XML Error: %s at line %d", 
    -				xml_error_string(xml_get_error_code($this->parser)),
    -				xml_get_current_line_number($this->parser)));
    -		}
    -		
    -		fclose($fp);
    -	}
    -
    -	/**
    -	 * Function: startElement
    -	 *
    -	 * Invoked by the SAX parser when an element starts.
    -	 */
    -	function startElement($parser, $name, $attrs)
    -	{
    -		if ($this->canvas == null && $name == "graph")
    -		{
    -			$this->scale = mxUtils::getValue($attrs, "scale", 1);
    -			$this->canvas = $this->createCanvas($attrs);
    -		}
    -		else if ($this->canvas != null)
    -		{
    -			$edge = $name == "edge";
    -			$group = $name == "group";
    -			$vertex = $name == "vertex";
    -			
    -			if (($edge && isset($attrs["points"])) ||
    -				(($vertex || $group) && isset($attrs["x"]) &&
    -				isset($attrs["y"]) && isset($attrs["width"]) &&
    -				isset($attrs["height"])))
    -			{
    -				$state = new mxCellState(null, null, $attrs);
    -
    -				$label = $this->parseState($state, $edge);
    -				$this->canvas->drawCell($state);
    -				$this->canvas->drawLabel($label, $state, false);
    -			}
    -		}
    -	}
    -	
    -	/**
    -	 * Function: parseState
    -	 *
    -	 * Parses the bounds, absolute points and label information from the style
    -	 * of the state into its respective fields and returns the label of the
    -	 * cell.
    -	 */
    -	function parseState($state, $edge)
    -	{
    -		$style = $state->style;
    -
    -		// Parses the bounds
    -		$state->x = mxUtils::getNumber($style, "x");
    -		$state->y = mxUtils::getNumber($style, "y");
    -		$state->width = mxUtils::getNumber($style, "width");
    -		$state->height = mxUtils::getNumber($style, "height");
    -
    -		// Parses the absolute points list
    -		$tmp = mxUtils::getValue($style, "points");
    -		
    -		if (strlen($tmp) > 0)
    -		{
    -			$pts = $this->parsePoints($tmp);
    -			
    -			if (sizeof($pts) > 0)
    -			{
    -				$state->absolutePoints = $pts;
    -			}
    -		}
    -		
    -        // Parses the label and label bounds
    -		$label = mxUtils::getValue($style, "label");
    -		
    -		if ($label != null && strlen($label) > 0)
    -		{
    -			$offset = new mxPoint(mxUtils::getNumber($style, "dx"),
    -				mxUtils::getNumber($style, "dy"));
    -			$vertexBounds = (!$edge) ? $state : null;
    -			$state->labelBounds = mxUtils::getLabelPaintBounds($label, $style,
    -				mxUtils::getValue($style, "html", false), $offset,
    -				$vertexBounds, $this->scale);
    -		}
    -		
    -		return $label;
    -	}
    -
    -	/**
    -	 * Function: parsePoints
    -	 * 
    -	 * Parses a string that represents a list of points into an array of
    -	 * <mxPoints>.
    -	 */
    -	function parsePoints($str)
    -	{
    -		$pts = array();
    -		
    -		if (isset($str))
    -		{
    -		 	$len = strlen($str);
    -			$tmp = "";
    -			$x = "";
    -	
    -		 	for ($i = 0; $i < $len; $i++)
    -		 	{
    -		 		$c = $str[$i];
    -		 		
    -		 		if ($c == "," || $c == " ")
    -		 		{
    -		 			if (strlen($x) == 0)
    -		 			{
    -		 				$x = $tmp;
    -		 			}
    -		 			else
    -		 			{
    -		 				array_push($pts, new mxPoint($x, $tmp));
    -		 				$x = "";
    -		 			}
    -		 			
    -	 				$tmp = "";
    -		 		}
    -		 		else
    -		 		{
    -					$tmp .= $c;	 		
    -		 		}
    -		 	}
    -		 	
    -		 	array_push($pts, new mxPoint($x, $tmp));
    -		}
    -		
    -	 	return $pts;
    -	}
    -
    -	/**
    -	 * Function: endElement
    -	 *
    -	 * Invoked by the SAX parser when an element ends.
    -	 */
    -	function endElement($parser, $name)
    -	{
    -	 	// ignore
    -	}
    -
    -	/**
    -	 * Destructor: destroy
    -	 *
    -	 * Destroy all allocated resources for this reader.
    -	 */
    -	function destroy()
    -	{
    -	 	$this->canvas->destroy();
    -	 	xml_parser_free($this->parser);
    -	}
    -
    -	/**
    -	 * Function: convert
    -	 *
    -	 * Creates the image for the given display XML string.
    -	 */
    -	static function convert($string, $background = null)
    -	{
    -		$viewReader = new mxGraphViewImageReader($background);
    -		$viewReader->read($string);
    -		$image = $viewReader->canvas->getImage();
    -		
    -		return $image;	
    -	}
    -
    -	/**
    -	 * Function: convertFile
    -	 *
    -	 * Creates the image for the given display XML file.
    -	 */
    -	static function convertFile($filename, $background = null)
    -	{
    -		$viewReader = new mxGraphViewImageReader($background);
    -		$viewReader->readFile($filename);
    -		$image = $viewReader->canvas->getImage();
    -		
    -		return $image;		
    -	}
    -
    -}
    -?>
    diff --git a/php/src/util/mxConstants.php b/php/src/util/mxConstants.php
    deleted file mode 100644
    index 98ff85a16..000000000
    --- a/php/src/util/mxConstants.php
    +++ /dev/null
    @@ -1,1165 +0,0 @@
    -<?php
    -/**
    - * Copyright (c) 2006-2013, Gaudenz Alder
    - */
    -class mxConstants
    -{
    -
    -	/**
    -	 * Class: mxConstants
    -	 *
    -	 * Defines global constants.
    -	 * 
    -	 * Variable: RAD_PER_DEG
    -	 *
    -	 * Defines the number of radiants per degree.
    -	 */
    -	public static $RAD_PER_DEG = 0.0174532;
    -
    -	/**
    -	 * Variable: DEG_PER_RAD
    -	 *
    -	 * Defines the number of degrees per radiant.
    -	 */
    -	public static $DEG_PER_RAD = 57.2957795;
    -
    -	/**
    -	 * Variable: ACTIVE_REGION
    -	 *
    -	 * Defines the portion of the cell which is
    -	 * to be used as a connectable region.
    -	 */
    -	public static $ACTIVE_REGION = 0.3;
    -
    -	/**
    -	 * Variable: MIN_ACTIVE_REGION
    -	 *
    -	 * Defines the minimum size in pixels of the 
    -	 * portion of the cell cell which is to be 
    -	 * used as a connectable region.
    -	 */
    -	public static $MIN_ACTIVE_REGION = 8;
    -
    -	/**
    -	 * Variable: NS_SVG
    -	 *
    -	 * Defines the SVG namespace.
    -	 */
    -	public static $NS_SVG = "http://www.w3.org/2000/svg";
    -
    -	/**
    -	 * Variable: NS_XHTML
    -	 *
    -	 * Defines the XHTML namespace.
    -	 */
    -	public static $NS_XHTML = "http://www.w3.org/1999/xhtml";
    -
    -	/**
    -	 * Variable: NS_XLINK
    -	 *
    -	 * Defined the XLink namespace.
    -	 */
    -	public static $NS_XLINK = "http://www.w3.org/1999/xlink";
    -
    -	/**
    -	 * Variable: W3C_SHADOWCOLOR
    -	 *
    -	 * Defines the color to be used to draw
    -	 * shadows in DOM documents.
    -	 */
    -	public static $W3C_SHADOWCOLOR = "gray";
    -
    -	/**
    -	 * Variable: SHADOW_OFFSETX
    -	 *
    -	 * Defines the x-offset to be used for shadows. Default is 2.
    -	 */
    -	public static $SHADOW_OFFSETX = 2;
    -
    -	/**
    -	 * Variable: SHADOW_OFFSETY
    -	 *
    -	 * Defines the y-offset to be used for shadows. Default is 3.
    -	 */
    -	public static $SHADOW_OFFSETY = 3;
    -
    -	/**
    -	 * Variable: W3C_DEFAULT_FONTFAMILY
    -	 * 
    -	 * Defines the default family for HTML markup. Default is times, serif.
    -	 */
    -	public static $W3C_DEFAULT_FONTFAMILY = "times, serif";
    -
    -	/**
    -	 * Variable: TTF_ENABLED
    -	 * 
    -	 * Whether TrueType fonts should be enabled in the mxGdCanvas
    -	 * by default. Default is true.
    -	 */
    -	public static $TTF_ENABLED = true;
    -
    -	/**
    -	 * Variable: TTF_SIZEFACTOR
    -	 * 
    -	 * Defines the factor which wich the font sizes are to be
    -	 * multiplied when used in truetype fonts. Default is 0.66.
    -	 */
    -	public static $TTF_SIZEFACTOR = 0.66;
    -
    -	/**
    -	 * Variable: DEFAULT_FONTFAMILY
    -	 * 
    -	 * Defines the default family for all truetype fonts. Default is vera.
    -	 */
    -	public static $DEFAULT_FONTFAMILY = "vera";
    -
    -	/**
    -	 * Variable: DEFAULT_FONTSIZE
    -	 * 
    -	 * Defines the default size (in px). Default is 11.
    -	 */
    -	public static $DEFAULT_FONTSIZE = 11;
    -
    -	/**
    -	 * Variable: DEFAULT_STARTSIZE
    -	 * 
    -	 * Defines the default start size for swimlanes. Default is 40.
    -	 */
    -	public static $DEFAULT_STARTSIZE = 40;
    -	
    -	/**
    -	 * Variable: DEFAULT_LINESPACING
    -	 * 
    -	 * Defines the default linespacing. Default is 7.
    -	 */
    -	public static $DEFAULT_LINESPACING = 7;
    -
    -	/**
    -	 * Variable: LABEL_INSET
    -	 * 
    -	 * Defines the inset in absolute pixels between the label bounding box and
    -	 * the label text. Default is 3.
    -	 */
    -	public static $LABEL_INSET = 3;
    -
    -	/**
    -	 * Variable: DEFAULT_MARKERSIZE
    -	 * 
    -	 * Defines the default size for all markers. Default is 6.
    -	 */
    -	public static $DEFAULT_MARKERSIZE = 6;
    -
    -	/**
    -	 * Variable: DEFAULT_IMAGESIZE
    -	 * 
    -	 * Defines the default width and height for images used in the
    -	 * label shape. Default is 24.
    -	 */
    -	public static $DEFAULT_IMAGESIZE = 24;
    -
    -	/**
    -	 * Variable: ENTITY_SEGMENT
    -	 * 
    -	 * Defines the length of the horizontal segment of an Entity Relation.
    -	 * This can be overridden using <mxConstants.STYLE_SEGMENT> style.
    -	 * Default is 30.
    -	 */
    -	public static $ENTITY_SEGMENT = 30;
    -
    -	/**
    -	 * Variable: ARROW_SPACING
    -	 * 
    -	 * Defines the spacing between the arrow shape and its terminals. Default
    -	 * is 10.
    -	 */
    -	public static $ARROW_SPACING = 10;
    -
    -	/**
    -	 * Variable: ARROW_WIDTH
    -	 * 
    -	 * Defines the width of the arrow shape. Default is 30.
    -	 */
    -	public static $ARROW_WIDTH = 30;
    -
    -	/**
    -	 * Variable: ARROW_SIZE
    -	 * 
    -	 * Defines the size of the arrowhead in the arrow shape. Default is 30.
    -	 */
    -	public static $ARROW_SIZE = 30;
    -
    -	/**
    -	 * Variable: NONE
    -	 * 
    -	 * Defines the value for none. Default is "none".
    -	 */
    -	public static $NONE = "none";
    -
    -	/**
    -	 * Variable: STYLE_PERIMETER
    -	 *
    -	 * Defines the key for the perimeter style. This is a function that defines
    -	 * the perimeter around a particular shape. Possible values are the
    -	 * functions defined in <mxPerimeter>. Alternatively, the constants in this
    -	 * class that start with <code>PERIMETER_</code> may be used to access
    -	 * perimeter styles in <mxStyleRegistry>.
    -	 */
    -	public static $STYLE_PERIMETER = "perimeter";
    -	
    -	/**
    -	 * Defines the ID of the cell that should be used for computing the
    -	 * perimeter point of the source for an edge. This allows for graphically
    -	 * connecting to a cell while keeping the actual terminal of the edge.
    -	 */
    -	public static $STYLE_SOURCE_PORT = "sourcePort";
    -	
    -	/**
    -	 * Defines the ID of the cell that should be used for computing the
    -	 * perimeter point of the target for an edge. This allows for graphically
    -	 * connecting to a cell while keeping the actual terminal of the edge.
    -	 */
    -	public static $STYLE_TARGET_PORT = "targetPort";
    -	
    -	/**
    -	 * Variable: STYLE_OPACITY
    -	 *
    -	 * Defines the key for the opacity style. The type of the value is 
    -	 * numeric and the possible range is 0-100.
    -	 */
    -	public static $STYLE_OPACITY = "opacity";
    -
    -	/**
    -	 * Variable: STYLE_TEXT_OPACITY
    -	 *
    -	 * Defines the key for the text opacity style. The type of the value is 
    -	 * numeric and the possible range is 0-100.
    -	 */
    -	public static $STYLE_TEXT_OPACITY = "textOpacity";
    -
    -	/**
    -	 * Variable: STYLE_OVERFLOW
    -	 * 
    -	 * Defines the key for the overflow style. Possible values are "visible",
    -	 * "hidden" and "fill". The default value is "visible". This value
    -	 * specifies how overlapping vertex labels are handles. A value of
    -	 * "visible" will show the complete label. A value of "hidden" will clip
    -	 * the label so that it does not overlap the vertex bounds. A value of
    -	 * "fill" will use the vertex bounds for the label.
    -	 * 
    -	 * This style is ignored in PHP.
    -	 */
    -	public static $STYLE_OVERFLOW = "overflow";
    -
    -    /**
    -	 * Variable: STYLE_ORTHOGONAL
    -	 *
    -	 * Defines if the connection points on either end of the edge should be
    -	 * computed so that the edge is vertical or horizontal if possible and
    -	 * if the point is not at a fixed location. Default is false. This is
    -	 * used in <mxGraph.isOrthogonal>, which also returns true if the edgeStyle
    -	 * of the edge is an elbow or entity.
    -	 */
    -    public static $STYLE_ORTHOGONAL = "orthogonal";
    -
    -    /**
    -	 * Variable: STYLE_EXIT_X
    -	 *
    -	 * Defines the key for the horizontal relative coordinate connection point
    -	 * of an edge with its source terminal.
    -	 */
    -    public static $STYLE_EXIT_X = "exitX";
    -
    -    /**
    -	 * Variable: STYLE_EXIT_Y
    -	 *
    -	 * Defines the key for the vertical relative coordinate connection point
    -	 * of an edge with its source terminal.
    -	 */
    -    public static $STYLE_EXIT_Y = "exitY";
    -
    -    /**
    -	 * Variable: STYLE_EXIT_PERIMETER
    -	 *
    -	 * Defines if the perimeter should be used to find the exact entry point
    -	 * along the perimeter of the source. Possible values are 0 (false) and
    -	 * 1 (true). Default is 1 (true).
    -	 */
    -    public static $STYLE_EXIT_PERIMETER = "exitPerimeter";
    -
    -    /**
    -	 * Variable: STYLE_ENTRY_X
    -	 *
    -	 * Defines the key for the horizontal relative coordinate connection point
    -	 * of an edge with its target terminal.
    -	 */
    -    public static $STYLE_ENTRY_X = "entryX";
    -
    -    /**
    -	 * Variable: STYLE_ENTRY_Y
    -	 *
    -	 * Defines the key for the vertical relative coordinate connection point
    -	 * of an edge with its target terminal.
    -	 */
    -    public static $STYLE_ENTRY_Y = "entryY";
    -
    -    /**
    -	 * Variable: sSTYLE_ENTRY_PERIMETER
    -	 *
    -	 * Defines if the perimeter should be used to find the exact entry point
    -	 * along the perimeter of the target. Possible values are 0 (false) and
    -	 * 1 (true). Default is 1 (true).
    -	 */
    -    public static $STYLE_ENTRY_PERIMETER = "entryPerimeter";
    -	
    -	/**
    -	 * Variable: STYLE_WHITE_SPACE
    -	 * 
    -	 * Defines the key for the white-space style. Possible values are "nowrap"
    -	 * and "wrap". The default value is "nowrap". This value specifies how
    -	 * white-space inside a HTML vertex label should be handled. A value of
    -	 * "nowrap" means the text will never wrap to the next line until a
    -	 * linefeed is encountered. A value of "wrap" means text will wrap when
    -	 * necessary. This style is only used for HTML labels.
    -	 * 
    -	 * This style is ignored in PHP.
    -	 */
    -	public static $STYLE_WHITE_SPACE = "whiteSpace";
    -	
    -	/**
    -	 * Variable: STYLE_ROTATION
    -	 *
    -	 * Defines the key for the rotation style. The type of the value is 
    -	 * numeric and the possible range is 0-360.
    -	 */
    -	public static $STYLE_ROTATION = "rotation";
    -
    -	/**
    -	 * Variable: STYLE_FILLCOLOR
    -	 *
    -	 * Defines the key for the fill color. Possible values are all HTML color
    -	 * names or HEX codes, as well as special keywords such as 'swimlane,
    -	 * 'inherit' or 'indicated' to use the color code of a related cell or the
    -	 * indicator shape.
    -	 */
    -	public static $STYLE_FILLCOLOR = "fillColor";
    -	
    -	/**
    -	 * Variable: STYLE_SWIMLANE_FILLCOLOR
    -	 *
    -	 * Defines the key for the fill color of the swimlane background. Possible
    -	 * values are all HTML color names or HEX codes. Default is no background.
    -	 * Value is "swimlaneFillColor".
    -	 */
    -	public static $STYLE_SWIMLANE_FILLCOLOR = "swimlaneFillColor";
    -
    -	/**
    -	 * Variable: STYLE_GRADIENTCOLOR
    -	 *
    -	 * Defines the key for the gradient color. Possible values are all HTML color
    -	 * names or HEX codes, as well as special keywords such as 'swimlane,
    -	 * 'inherit' or 'indicated' to use the color code of a related cell or the
    -	 * indicator shape. This is ignored if no fill color is defined.
    -	 */
    -	public static $STYLE_GRADIENTCOLOR = "gradientColor";
    -
    -	/**
    -	 * Variable: STYLE_GRADIENT_DIRECTION
    -	 * 
    -	 * Defines the key for the gradient direction. Possible values are
    -	 * <DIRECTION_EAST>, <DIRECTION_WEST>, <DIRECTION_NORTH> and
    -	 * <DIRECTION_SOUTH>. Default is <DIRECTION_SOUTH>. Generally, and by
    -	 * default in mxGraph, gradient painting is done from the value of
    -	 * <STYLE_FILLCOLOR> to the value of <STYLE_GRADIENTCOLOR>. Taking the
    -	 * example of <DIRECTION_NORTH>, this means <STYLE_FILLCOLOR> color at the 
    -	 * bottom of paint pattern and <STYLE_GRADIENTCOLOR> at top, with a
    -	 * gradient in-between.
    -	 */
    -	public static $STYLE_GRADIENT_DIRECTION = "gradientDirection";
    -	
    -	/**
    -	 * Variable: STYLE_STROKECOLOR
    -	 *
    -	 * Defines the key for the strokeColor style. Possible values are all HTML
    -	 * color names or HEX codes, as well as special keywords such as 'swimlane,
    -	 * 'inherit' or 'indicated' to use the color code of a related cell or the
    -	 * indicator shape.
    -	 */
    -	public static $STYLE_STROKECOLOR = "strokeColor";
    -
    -	/**
    -	 * Variable: STYLE_SEPARATORCOLOR
    -	 *
    -	 * Defines the key for the separatorColor style. Possible values are all
    -	 * HTML color names or HEX codes. This style is only used for
    -	 * <SHAPE_SWIMLANE> shapes.
    -	 */
    -	public static $STYLE_SEPARATORCOLOR = "separatorColor";
    -
    -	/**
    -	 * Variable: STYLE_STROKEWIDTH
    -	 *
    -	 * Defines the key for the strokeWidth style. The type of the value is 
    -	 * numeric and the possible range is any non-negative value. The value
    -	 * the stroke width in pixels.
    -	 */
    -	public static $STYLE_STROKEWIDTH = "strokeWidth";
    -
    -	/**
    -	 * Variable: STYLE_ALIGN
    -	 *
    -	 * Defines the key for the align style. Possible values are <ALIGN_LEFT>,
    -	 * <ALIGN_CENTER> and <ALIGN_RIGHT>. This value defines how the lines of
    -	 * the label are horizontally aligned. <ALIGN_LEFT> mean label text lines
    -	 * are aligned to left of the label bounds, <ALIGN_RIGHT> to the right of
    -	 * the label bounds and <ALIGN_CENTER> means the center of the text lines
    -	 * are aligned in the center of the label bounds. Note this value doesn't
    -	 * affect the positioning of the overall label bounds relative to the
    -	 * vertex, to move the label bounds horizontally, use
    -	 * <STYLE_LABEL_POSITION>.
    -	 */
    -	public static $STYLE_ALIGN = "align";
    -
    -	/**
    -	 * Variable: STYLE_VERTICAL_ALIGN
    -	 *
    -	 * Defines the key for the verticalAlign style. Possible values are
    -	 * <ALIGN_TOP>, <ALIGN_MIDDLE> and <ALIGN_BOTTOM>. This value defines how
    -	 * the lines of the label are vertically aligned. <ALIGN_TOP> means the
    -	 * topmost label text line is aligned against the top of the label bounds,
    -	 * <ALIGN_BOTTOM> means the bottom-most label text line is aligned against
    -	 * the bottom of the label bounds and <ALIGN_MIDDLE> means there is equal
    -	 * spacing between the topmost text label line and the top of the label
    -	 * bounds and the bottom-most text label line and the bottom of the label
    -	 * bounds. Note this value doesn't affect the positioning of the overall
    -	 * label bounds relative to the vertex, to move the label bounds
    -	 * vertically, use <STYLE_VERTICAL_LABEL_POSITION>.
    -	 */
    -	public static $STYLE_VERTICAL_ALIGN = "verticalAlign";
    -
    -	/**
    -	 * Variable: STYLE_LABEL_POSITION
    -	 * 
    -	 * Defines the key for the horizontal label position of vertices. Possible
    -	 * values are <ALIGN_LEFT>, <ALIGN_CENTER> and <ALIGN_RIGHT>. Default is
    -	 * <ALIGN_CENTER>. The label align defines the position of the label
    -	 * relative to the cell. <ALIGN_LEFT> means the entire label bounds is
    -	 * placed completely just to the left of the vertex, <ALIGN_RIGHT> means
    -	 * adjust to the right and <ALIGN_CENTER> means the label bounds are
    -	 * vertically aligned with the bounds of the vertex. Note this value
    -	 * doesn't affect the positioning of label within the label bounds, to move
    -	 * the label horizontally within the label bounds, use <STYLE_ALIGN>.
    -	 */
    -	public static $STYLE_LABEL_POSITION = "labelPosition";
    -
    -	/**
    -	 * Variable: STYLE_VERTICAL_LABEL_POSITION
    -	 * 
    -	 * Defines the key for the vertical label position of vertices. Possible
    -	 * values are <ALIGN_TOP>, <ALIGN_BOTTOM> and <ALIGN_MIDDLE>. Default is
    -	 * <ALIGN_MIDDLE>. The label align defines the position of the label
    -	 * relative to the cell. <ALIGN_TOP> means the entire label bounds is
    -	 * placed completely just on the top of the vertex, <ALIGN_BOTTOM> means
    -	 * adjust on the bottom and <ALIGN_MIDDLE> means the label bounds are
    -	 * horizontally aligned with the bounds of the vertex. Note this value
    -	 * doesn't affect the positioning of label within the label bounds, to move
    -	 * the label vertically within the label bounds, use
    -	 * <STYLE_VERTICAL_ALIGN>.
    -	 */
    -	public static $STYLE_VERTICAL_LABEL_POSITION = "verticalLabelPosition";
    -	
    -	/**
    -	 * Variable: STYLE_IMAGE_ALIGN
    -	 *
    -	 * Defines the key for the align style. Possible values are <ALIGN_LEFT>,
    -	 * <ALIGN_CENTER> and <ALIGN_RIGHT>. The value defines how any image in the
    -	 * vertex label is aligned horizontally within the label bounds of a
    -	 * <SHAPE_LABEL> shape.
    -	 */
    -	public static $STYLE_IMAGE_ALIGN = "imageAlign";
    -
    -	/**
    -	 * Variable: STYLE_IMAGE_VERTICALALIGN
    -	 *
    -	 * Defines the key for the verticalAlign style. Possible values are
    -	 * <ALIGN_TOP>, <ALIGN_MIDDLE> and <ALIGN_BOTTOM>. The value defines how
    -	 * any image in the vertex label is aligned vertically within the label
    -	 * bounds of a <SHAPE_LABEL> shape.
    -	 */
    -	public static $STYLE_IMAGE_VERTICAL_ALIGN = "imageVerticalAlign";
    -
    -	/**
    -	 * Variable: STYLE_IMAGE
    -	 *
    -	 * Defines the key for the image style. Possible values are any image URL,
    -	 * registered key in <mxImageResources> or short data URI as defined
    -	 * in <mxImageBundle>.
    -	 * The type of the value is String. This is the path to the image to image
    -	 * that is to be displayed within the label of a vertex. Finally,
    -	 * <mxUtils.loadImage> is used for loading the image for a given value.
    -	 */
    -	public static $STYLE_IMAGE = "image";
    -
    -	/**
    -	 * Variable: STYLE_IMAGE_WIDTH
    -	 *
    -	 * Defines the key for the imageWidth style. The type of this value is
    -	 * int, the value is the image width in pixels and must be greater than 0.
    -	 */
    -	public static $STYLE_IMAGE_WIDTH = "imageWidth";
    -
    -	/**
    -	 * Variable: STYLE_IMAGE_HEIGHT
    -	 *
    -	 * Defines the key for the imageHeight style. The type of this value is
    -	 * int, the value is the image height in pixels and must be greater than 0.
    -	 */
    -	public static $STYLE_IMAGE_HEIGHT = "imageHeight";
    -
    -	/**
    -	 * Variable: STYLE_IMAGE_BACKGROUND
    -	 * 
    -	 * Defines the key for the image background color. This style is only used
    -	 * in <mxImageShape>. Possible values are all HTML color names or HEX
    -	 * codes.
    -	 */
    -	public static $STYLE_IMAGE_BACKGROUND = "imageBackground";
    -
    -	/**
    -	 * Variable: STYLE_IMAGE_BORDER
    -	 * 
    -	 * Defines the key for the image border color. This style is only used in
    -	 * <mxImageShape>. Possible values are all HTML color names or HEX codes.
    -	 */
    -	public static $STYLE_IMAGE_BORDER = "imageBorder";
    -	
    -	/**
    -	 * Variable: STYLE_IMAGE_FLIPH
    -	 * 
    -	 * Defines the key for the horizontal image flip. This style is only used
    -	 * for painting images. Possible values are 0 and 1. Default is 0.
    -	 */
    -	public static $STYLE_IMAGE_FLIPH = "imageFlipH";
    -
    -	/**
    -	 * Variable: STYLE_IMAGE_FLIPV
    -	 * 
    -	 * Defines the key for the vertical image flip. This style is only used
    -	 * for painting images. Possible values are 0 and 1. Default is 0.
    -	 */
    -	public static $STYLE_IMAGE_FLIPV = "imageFlipV";
    -	
    -	/**
    -	 * Variable: STYLE_NOLABEL
    -	 * 
    -	 * Defines the key for the noLabel style. If this is
    -	 * true then no label is visible for a given cell.
    -	 * Possible values are true or false (1 or 0).
    -	 * Default is false.
    -	 */
    -	public static $STYLE_NOLABEL = "noLabel";
    -
    -	/**
    -	 * Variable: STYLE_NOEDGESTYLE
    -	 * 
    -	 * Defines the key for the noEdgeStyle style. If this is
    -	 * true then no edge style is applied for a given edge.
    -	 * Possible values are true or false (1 or 0).
    -	 * Default is false.
    -	 */
    -	public static $STYLE_NOEDGESTYLE = "noEdgeStyle";
    -
    -	/**
    -	 * Variable: STYLE_LABEL_BACKGROUNDCOLOR
    -	 * 
    -	 * Defines the key for the label background color. Possible values are all
    -	 * HTML color names or HEX codes.
    -	 */
    -	public static $STYLE_LABEL_BACKGROUNDCOLOR = "labelBackgroundColor";
    -
    -	/**
    -	 * Variable: STYLE_LABEL_BORDERCOLOR
    -	 * 
    -	 * Defines the key for the label border color. Possible values are all
    -	 * HTML color names or HEX codes.
    -	 */
    -	public static $STYLE_LABEL_BORDERCOLOR = "labelBorderColor";
    -
    -	/**
    -	 * Variable: STYLE_INDICATOR_SHAPE
    -	 *
    -	 * Defines the key for the indicatorShape style.
    -	 * Possible values are any of the SHAPE_*
    -	 * constants.
    -	 */
    -	public static $STYLE_INDICATOR_SHAPE = "indicatorShape";
    -
    -	/**
    -	 * Variable: STYLE_INDICATOR_IMAGE
    -	 *
    -	 * Defines the key for the indicatorImage style.
    -	 * Possible values are any image URL.
    -	 */
    -	public static $STYLE_INDICATOR_IMAGE = "indicatorImage";
    -
    -	/**
    -	 * Variable: STYLE_INDICATOR_COLOR
    -	 *
    -	 * Defines the key for the indicatorColor style. Possible values are all
    -	 * HTML color names or HEX codes, as well as the special 'swimlane' keyword
    -	 * to refer to the color of the parent swimlane if one exists.
    -	 */
    -	public static $STYLE_INDICATOR_COLOR = "indicatorColor";
    -
    -	/**
    -	 * Variable: STYLE_INDICATOR_GRADIENTCOLOR
    -	 *
    -	 * Defines the key for the indicatorGradientColor style. Possible values
    -	 * are all HTML color names or HEX codes. This style is only supported in
    -	 * <SHAPE_LABEL> shapes.
    -	 */
    -	public static $STYLE_INDICATOR_GRADIENTCOLOR = "indicatorGradientColor";
    -
    -	/**
    -	 * Variable: STYLE_INDICATOR_SPACING
    -	 *
    -	 * Defines the key for the indicatorSpacing style (in px).
    -	 */
    -	public static $STYLE_INDICATOR_SPACING = "indicatorSpacing";
    -
    -	/**
    -	 * Variable: STYLE_INDICATOR_WIDTH
    -	 *
    -	 * Defines the key for the indicatorWidth style (in px).
    -	 */
    -	public static $STYLE_INDICATOR_WIDTH = "indicatorWidth";
    -
    -	/**
    -	 * Variable: STYLE_INDICATOR_HEIGHT
    -	 *
    -	 * Defines the key for the indicatorHeight style (in px).
    -	 */
    -	public static $STYLE_INDICATOR_HEIGHT = "indicatorHeight";
    -
    -	/**
    -	 * Variable: STYLE_SHADOW
    -	 *
    -	 * Defines the key for the shadow style. The type of the value is Boolean.
    -	 */
    -	public static $STYLE_SHADOW = "shadow";
    -	
    -	/**
    -	 * Variable: STYLE_SEGMENT
    -	 * 
    -	 * Defines the key for the segment style. The type of this value is
    -	 * float and the value represents the size of the horizontal
    -	 * segment of the entity relation style. Default is ENTITY_SEGMENT.
    -	 */
    -	public static $STYLE_SEGMENT = "segment";
    -	
    -	/**
    -	 * Variable: STYLE_ENDARROW
    -	 *
    -	 * Defines the key for the endArrow style.
    -	 * Possible values are all constants in this
    -	 * class that start with ARROW_.
    -	 * This style is supported in the
    -	 * <mxConnector> shape.
    -	 *
    -	 * Example:
    -	 * (code)
    -	 * style[mxConstants.public static $STYLE_ENDARROW] = mxConstants.ARROW_CLASSIC;
    -	 * (end)
    -	 */
    -	public static $STYLE_ENDARROW = "endArrow";
    -
    -	/**
    -	 * Variable: STYLE_STARTARROW
    -	 *
    -	 * Defines the key for the startArrow style.
    -	 * Possible values are all constants in this
    -	 * class that start with ARROW_.
    -	 * See <public static $STYLE_ENDARROW>.
    -	 * This style is supported in the
    -	 * <mxConnector> shape.
    -	 */
    -	public static $STYLE_STARTARROW = "startArrow";
    -
    -	/**
    -	 * Variable: STYLE_ENDSIZE
    -	 *
    -	 * Defines the key for the endSize style. The type of this value is numeric
    -	 * and the value represents the size of the end marker in pixels.
    -	 */
    -	public static $STYLE_ENDSIZE = "endSize";
    -
    -	/**
    -	 * Variable: STYLE_STARTSIZE
    -	 *
    -	 * Defines the key for the startSize style. The type of this value is
    -	 * numeric and the value represents the size of the start marker or the
    -	 * size of the swimlane title region depending on the shape it is used for.
    -	 */
    -	public static $STYLE_STARTSIZE = "startSize";
    -
    -	/**
    -	 * Variable: STYLE_SWIMLANE_LINE
    -	 *
    -	 * Defines the key for the swimlaneLine style. This style specifies whether
    -	 * the line between the title regio of a swimlane should be visible. Use 0
    -	 * for hidden or 1 (default) for visible. Value is "swimlaneLine".
    -	 */
    -	public static $STYLE_SWIMLANE_LINE = "swimlaneLine";
    -	
    -	/**
    -	 * Variable: STYLE_DASHED
    -	 *
    -	 * Defines the key for the endSize style. The type of this value is numeric
    -	 * and the value represents the size of the end marker in pixels.
    -	 */
    -	public static $STYLE_DASHED = "dashed";
    -
    -	/**
    -	 * Variable: STYLE_ROUNDED
    -	 *
    -	 * Defines the key for the rounded style. The type of this value is
    -	 * Boolean. For edges this determines whether or not joins between edges
    -	 * segments are smoothed to a rounded finish. For vertices that have the
    -	 * rectangle shape, this determines whether or not the rectangle is
    -	 * rounded.
    -	 */
    -	public static $STYLE_ROUNDED = "rounded";
    -
    -	/**
    -	 * Variable: STYLE_SOURCE_PERIMETER_SPACING
    -	 *
    -	 * Defines the key for the source perimeter spacing. The type of this value
    -	 * is numeric. This is the distance between the source connection point of
    -	 * an edge and the perimeter of the source vertex in pixels. This style
    -	 * only applies to edges.
    -	 */
    -	public static $STYLE_SOURCE_PERIMETER_SPACING = "sourcePerimeterSpacing";
    -
    -	/**
    -	 * Variable: STYLE_TARGET_PERIMETER_SPACING
    -	 *
    -	 * Defines the key for the source perimeter spacing. The type of this value
    -	 * is numeric. This is the distance between the target connection point of
    -	 * an edge and the perimeter of the target vertex in pixels.
    -	 */
    -	public static $STYLE_TARGET_PERIMETER_SPACING = "targetPerimeterSpacing";
    -
    -	/**
    -	 * Variable: STYLE_PERIMETER_SPACING
    -	 *
    -	 * Defines the key for the perimeter spacing. This is the distance between
    -	 * the connection point and the perimeter in pixels. When used in a vertex
    -	 * style, this applies to all incoming edges to floating ports (edges that
    -	 * terminate on the perimeter of the vertex). When used in an edge style,
    -	 * this spacing applies to the source and target separately, if they
    -	 * terminate in floating ports (on the perimeter of the vertex).
    -	 */
    -	public static $STYLE_PERIMETER_SPACING = "perimeterSpacing";
    -	
    -	/**
    -	 * Variable: STYLE_SPACING
    -	 *
    -	 * Defines the key for the spacing. The value represents the spacing, in
    -	 * pixels, added to each side of a label in a vertex (style applies to
    -	 * vertices only).
    -	 */
    -	public static $STYLE_SPACING = "spacing";
    -	
    -	/**
    -	 * Variable: STYLE_SPACING_TOP
    -	 *
    -	 * Defines the key for the spacingTop style. The value represents the
    -	 * spacing, in pixels, added to the top side of a label in a vertex (style
    -	 * applies to vertices only).
    -	 */
    -	public static $STYLE_SPACING_TOP = "spacingTop";
    -
    -	/**
    -	 * Variable: STYLE_SPACING_LEFT
    -	 *
    -	 * Defines the key for the spacingLeft style. The value represents the
    -	 * spacing, in pixels, added to the left side of a label in a vertex (style
    -	 * applies to vertices only).
    -	 */
    -	public static $STYLE_SPACING_LEFT = "spacingLeft";
    -
    -	/**
    -	 * Variable: STYLE_SPACING_BOTTOM
    -	 *
    -	 * Defines the key for the spacingBottom style The value represents the
    -	 * spacing, in pixels, added to the bottom side of a label in a vertex
    -	 * (style applies to vertices only).
    -	 */
    -	public static $STYLE_SPACING_BOTTOM = "spacingBottom";
    -
    -	/**
    -	 * Variable: STYLE_SPACING_RIGHT
    -	 *
    -	 * Defines the key for the spacingRight style The value represents the
    -	 * spacing, in pixels, added to the right side of a label in a vertex (style
    -	 * applies to vertices only).
    -	 */
    -	public static $STYLE_SPACING_RIGHT = "spacingRight";
    -
    -	/**
    -	 * Variable: STYLE_HORIZONTAL
    -	 *
    -	 * Defines the key for the horizontal style. Possible values are
    -	 * true or false. This value only applies to vertices. If the <STYLE_SHAPE>
    -	 * is <code>SHAPE_SWIMLANE</code> a value of false indicates that the
    -	 * swimlane should be drawn vertically, true indicates to draw it
    -	 * horizontally. If the shape style does not indicate that this vertex is a
    -	 * swimlane, this value affects only whether the label is drawn
    -	 * horizontally or vertically.
    -	 */
    -	public static $STYLE_HORIZONTAL = "horizontal";
    -
    -	/**
    -	 * Variable: STYLE_DIRECTION
    -	 * 
    -	 * Defines the key for the direction style. The direction style is used
    -	 * to specify the direction of certain shapes (eg. <mxTriangle>).
    -	 * Possible values are <DIRECTION_EAST> (default), <DIRECTION_WEST>,
    -	 * <DIRECTION_NORTH> and <DIRECTION_SOUTH>.
    -	 */
    -	public static $STYLE_DIRECTION = "direction";
    -
    -	/**
    -	 * Variable: STYLE_ELBOW
    -	 *
    -	 * Defines the key for the elbow style. Possible values are
    -	 * <ELBOW_HORIZONTAL> and <ELBOW_VERTICAL>. Default is <ELBOW_HORIZONTAL>.
    -	 * This defines how the three segment orthogonal edge style leaves its
    -	 * terminal vertices. The vertical style leaves the terminal vertices at
    -	 * the top and bottom sides.
    -	 */
    -	public static $STYLE_ELBOW = "elbow";
    -
    -	/**
    -	 * Variable: STYLE_FONTCOLOR
    -	 *
    -	 * Defines the key for the fontColor style. Possible values are all HTML
    -	 * color names or HEX codes.
    -	 */
    -	public static $STYLE_FONTCOLOR = "fontColor";
    -
    -	/**
    -	 * Variable: STYLE_FONTFAMILY
    -	 *
    -	 * Defines the key for the fontFamily style. Possible values are names such
    -	 * as Arial; Dialog; Verdana; Times New Roman. The value is of type String.
    -	 */
    -	public static $STYLE_FONTFAMILY = "fontFamily";
    -
    -	/**
    -	 * Variable: STYLE_FONTSIZE
    -	 *
    -	 * Defines the key for the fontSize style (in px). The type of the value
    -	 * is int.
    -	 */
    -	public static $STYLE_FONTSIZE = "fontSize";
    -
    -	/**
    -	 * Variable: STYLE_FONTSTYLE
    -	 *
    -	 * Defines the key for the fontStyle style. Values may be any logical AND
    -	 * (sum) of <FONT_BOLD>, <FONT_ITALIC> and <FONT_UNDERLINE>.
    -	 * The type of the value is int.
    -	 */
    -	public static $STYLE_FONTSTYLE = "fontStyle";
    -
    -	/**
    -	 * Variable: STYLE_SHAPE
    -	 *
    -	 * Defines the key for the shape. Possible values are all constants
    -	 * with a SHAPE-prefix or any newly defined shape names.
    -	 */
    -	public static $STYLE_SHAPE = "shape";
    -
    -	/**
    -	 * Variable: STYLE_EDGE
    -	 *
    -	 * Defines the key for the edge style. Possible values are the functions
    -	 * defined in <mxEdgeStyle>.
    -	 */
    -	public static $STYLE_EDGE = "edgeStyle";
    -
    -	/**
    -	 * Variable: STYLE_LOOP
    -	 * 
    -	 * Defines the key for the loop style. Possible values are the functions
    -	 * defined in <mxEdgeStyle>.
    -	 */
    -	public static $STYLE_LOOP = "loopStyle";
    -
    -	/**
    -	 * Variable: STYLE_ROUTING_CENTER_X
    -	 * 
    -	 * Defines the key for the horizontal routing center. Possible values are
    -	 * between -0.5 and 0.5. This is the relative offset from the center used
    -	 * for connecting edges. The type of this value is numeric.
    -	 */
    -	public static $STYLE_ROUTING_CENTER_X = "routingCenterX";
    -
    -	/**
    -	 * Variable: STYLE_ROUTING_CENTER_Y
    -	 * 
    -	 * Defines the key for the vertical routing center. Possible values are
    -	 * between -0.5 and 0.5. This is the relative offset from the center used
    -	 * for connecting edges. The type of this value is numeric.
    -	 */
    -	public static $STYLE_ROUTING_CENTER_Y = "routingCenterY";
    -
    -	/**
    -	 * Variable: FONT_BOLD
    -	 */
    -	public static $FONT_BOLD = 1;
    -
    -	/**
    -	 * Variable: FONT_ITALIC
    -	 */
    -	public static $FONT_ITALIC = 2;
    -
    -	/**
    -	 * Variable: FONT_UNDERLINE
    -	 */
    -	public static $FONT_UNDERLINE = 4;
    -
    -	/**
    -	 * Variable: SHAPE_RECTANGLE
    -	 */
    -	public static $SHAPE_RECTANGLE = "rectangle";
    -
    -	/**
    -	 * Variable: SHAPE_ELLIPSE
    -	 */
    -	public static $SHAPE_ELLIPSE = "ellipse";
    -
    -	/**
    -	 * Variable: SHAPE_DOUBLE_ELLIPSE
    -	 */
    -	public static $SHAPE_DOUBLE_ELLIPSE = "doubleEllipse";
    -
    -	/**
    -	 * Variable: SHAPE_RHOMBUS
    -	 */
    -	public static $SHAPE_RHOMBUS = "rhombus";
    -
    -	/**
    -	 * Variable: SHAPE_LINE
    -	 */
    -	public static $SHAPE_LINE = "line";
    -
    -	/**
    -	 * Variable: SHAPE_IMAGE
    -	 */
    -	public static $SHAPE_IMAGE = "image";
    -	
    -	/**
    -	 * Variable: SHAPE_ARROW
    -	 */
    -	public static $SHAPE_ARROW = "arrow";
    -	
    -	/**
    -	 * Variable: SHAPE_LABEL
    -	 */
    -	public static $SHAPE_LABEL = "label";
    -	
    -	/**
    -	 * Variable: SHAPE_CYLINDER
    -	 */
    -	public static $SHAPE_CYLINDER = "cylinder";
    -	
    -	/**
    -	 * Variable: SHAPE_SWIMLANE
    -	 */
    -	public static $SHAPE_SWIMLANE = "swimlane";
    -		
    -	/**
    -	 * Variable: SHAPE_CONNECTOR
    -	 */
    -	public static $SHAPE_CONNECTOR = "connector";
    -		
    -	/**
    -	 * Variable: SHAPE_ACTOR
    -	 */
    -	public static $SHAPE_ACTOR = "actor";
    -		
    -	/**
    -	 * Variable: SHAPE_CLOUD
    -	 */
    -	public static $SHAPE_CLOUD = "cloud";
    -		
    -	/**
    -	 * Variable: SHAPE_TRIANGLE
    -	 */
    -	public static $SHAPE_TRIANGLE = "triangle";
    -		
    -	/**
    -	 * Variable: SHAPE_HEXAGON
    -	 */
    -	public static $SHAPE_HEXAGON = "hexagon";
    -
    -	/**
    -	 * Variable: ARROW_CLASSIC
    -	 */
    -	public static $ARROW_CLASSIC = "classic";
    -
    -	/**
    -	 * Variable: ARROW_BLOCK
    -	 */
    -	public static $ARROW_BLOCK = "block";
    -
    -	/**
    -	 * Variable: ARROW_OPEN
    -	 */
    -	public static $ARROW_OPEN = "open";
    -
    -	/**
    -	 * Variable: ARROW_OVAL
    -	 */
    -	public static $ARROW_OVAL = "oval";
    -
    -	/**
    -	 * Variable: ARROW_DIAMOND
    -	 */
    -	public static $ARROW_DIAMOND = "diamond";
    -
    -	/**
    -	 * Variable: ALIGN_LEFT
    -	 */
    -	public static $ALIGN_LEFT = "left";
    -
    -	/**
    -	 * Variable: ALIGN_CENTER
    -	 */
    -	public static $ALIGN_CENTER = "center";
    -
    -	/**
    -	 * Variable: ALIGN_RIGHT
    -	 */
    -	public static $ALIGN_RIGHT = "right";
    -
    -	/**
    -	 * Variable: ALIGN_TOP
    -	 */
    -	public static $ALIGN_TOP = "top";
    -
    -	/**
    -	 * Variable: ALIGN_MIDDLE
    -	 */
    -	public static $ALIGN_MIDDLE = "middle";
    -
    -	/**
    -	 * Variable: ALIGN_BOTTOM
    -	 */
    -	public static $ALIGN_BOTTOM = "bottom";
    -
    -	/**
    -	 * Variable: DIRECTION_NORTH
    -	 */
    -	public static $DIRECTION_NORTH = "north";
    -
    -	/**
    -	 * Variable: DIRECTION_SOUTH
    -	 */
    -	public static $DIRECTION_SOUTH = "south";
    -
    -	/**
    -	 * Variable: DIRECTION_EAST
    -	 */
    -	public static $DIRECTION_EAST = "east";
    -
    -	/**
    -	 * Variable: DIRECTION_WEST
    -	 */
    -	public static $DIRECTION_WEST = "west";
    -
    -	/**
    -	 * Variable: ELBOW_VERTICAL
    -	 */
    -	public static $ELBOW_VERTICAL = "vertical";
    -
    -	/**
    -	 * Variable: ELBOW_HORIZONTAL
    -	 */
    -	public static $ELBOW_HORIZONTAL = "horizontal";
    -
    -	/**
    -	 * Variable: 
    -	 *
    -	 * Name of the elbow edge style. Can be used as a string value
    -	 * for the STYLE_EDGE style.
    -	 */
    -	public static $EDGESTYLE_ELBOW = "elbowEdgeStyle";
    -
    -	/**
    -	 * Variable: EDGESTYLE_ENTITY_RELATION
    -	 *
    -	 * Name of the entity relation edge style. Can be used as a string value
    -	 * for the STYLE_EDGE style.
    -	 */
    -	public static $EDGESTYLE_ENTITY_RELATION = "entityRelationEdgeStyle";
    -
    -	/**
    -	 * Variable: EDGESTYLE_LOOP
    -	 *
    -	 * Name of the loop edge style. Can be used as a string value
    -	 * for the STYLE_EDGE style.
    -	 */
    -	public static $EDGESTYLE_LOOP = "loopEdgeStyle";
    -
    -	/**
    -	 * Variable: EDGESTYLE_SIDETOSIDE
    -	 *
    -	 * Name of the side to side edge style. Can be used as a string value
    -	 * for the STYLE_EDGE style.
    -	 */
    -	public static $EDGESTYLE_SIDETOSIDE = "sideToSideEdgeStyle";
    -
    -	/**
    -	 * Variable: EDGESTYLE_TOPTOBOTTOM
    -	 *
    -	 * Name of the top to bottom edge style. Can be used as a string value
    -	 * for the STYLE_EDGE style.
    -	 */
    -	public static $EDGESTYLE_TOPTOBOTTOM = "topToBottomEdgeStyle";
    -
    -	/**
    -	 * Variable: PERIMETER_ELLIPSE
    -	 *
    -	 * Name of the ellipse perimeter. Can be used as a string value
    -	 * for the STYLE_PERIMETER style.
    -	 */
    -	public static $PERIMETER_ELLIPSE = "ellipsePerimeter";
    -
    -	/**
    -	 * Variable: PERIMETER_RECTANGLE
    -	 *
    -	 * Name of the rectangle perimeter. Can be used as a string value
    -	 * for the STYLE_PERIMETER style.
    -	 */
    -	public static $PERIMETER_RECTANGLE = "rectanglePerimeter";
    -
    -	/**
    -	 * Variable: PERIMETER_RHOMBUS
    -	 *
    -	 * Name of the rhombus perimeter. Can be used as a string value
    -	 * for the STYLE_PERIMETER style.
    -	 */
    -	public static $PERIMETER_RHOMBUS = "rhombusPerimeter";
    -
    -	/**
    -	 * Variable: PERIMETER_TRIANGLE
    -	 *
    -	 * Name of the triangle perimeter. Can be used as a string value
    -	 * for the STYLE_PERIMETER style.
    -	 */
    -	public static $PERIMETER_TRIANGLE = "trianglePerimeter";
    -
    -}
    -?>
    diff --git a/php/src/util/mxEvent.php b/php/src/util/mxEvent.php
    deleted file mode 100644
    index 23f521a1f..000000000
    --- a/php/src/util/mxEvent.php
    +++ /dev/null
    @@ -1,34 +0,0 @@
    -<?php
    -/**
    - * Copyright (c) 2006-2013, Gaudenz Alder
    - */
    -class mxEvent
    -{
    -
    -	/**
    -	 * Class: mxEvent
    -	 *
    -	 * Defines global constants.
    -	 * 
    -	 * Variable: GRAPH_MODEL_CHANGED
    -	 *
    -	 * Defines the name of the graphModelChanged event.
    -	 */
    -	public static $GRAPH_MODEL_CHANGED = "graphModelChanged";
    -
    -	/**
    -	 * Variable: SCALE
    -	 *
    -	 * Defines the name of the scale event.
    -	 */
    -	public static $SCALE = "scale";
    -
    -	/**
    -	 * Variable: TRANSLATE
    -	 *
    -	 * Defines the name of the translate event.
    -	 */
    -	public static $TRANSLATE = "translate";
    -
    -}
    -?>
    diff --git a/php/src/util/mxEventObject.php b/php/src/util/mxEventObject.php
    deleted file mode 100644
    index 5e7bb99c7..000000000
    --- a/php/src/util/mxEventObject.php
    +++ /dev/null
    @@ -1,107 +0,0 @@
    -<?php
    -/**
    - * Copyright (c) 2006-2013, Gaudenz Alder
    - */
    -class mxEventObject
    -{
    -
    -	/**
    -	 * Class: mxEventObject
    -	 *
    -	 * Base class for all events.
    -	 * 
    -	 * Variable: name
    -	 * 
    -	 * Holds the name of the event.
    -	 */
    -	var $name;
    -	
    -	/**
    -	 * Variable: properties
    -	 *
    -	 * Holds the event properties in an associative array that maps from string
    -	 * (key) to object (value).
    -	 */
    -	var $properties;
    -
    -	/**
    -	 * Variable: consumed
    -	 *
    -	 * Holds the consumed state of the event. Default is false.
    -	 */
    -	var $consumed = false;
    -
    -	/**
    -	 * Constructor: mxEventObject
    -	 *
    -	 * Constructs a new event for the given name and properties. The optional
    -	 * properties are specified using a sequence of keys and values, eg.
    -	 * new mxEventObject($name, $key1, $value1, $key2, $value2, .., $keyN, $valueN)
    -	 */
    -	function mxEventObject($name)
    -	{
    -		$this->name = $name;
    -		$this->properties = array();
    -		$args = func_get_args();
    -
    -		for ($i = 1; $i < sizeof($args); $i += 2)
    -		{
    -			if (isset($args[$i + 1]))
    -			{
    -				$this->properties[$args[$i]] = $args[$i + 1];
    -			}
    -		}			
    -	}
    -	
    -	/**
    -	 * Function: getName
    -	 * 
    -	 * Returns <name>.
    -	 */
    -	function getName()
    -	{
    -		return $this->name;
    -	}
    -
    -	/**
    -	 * Function: getProperties
    -	 * 
    -	 * Returns <properties>.
    -	 */
    -	function getProperties()
    -	{
    -		return $this->properties;
    -	}
    -
    -	/**
    -	 * Function: getProperty
    -	 * 
    -	 * Returns the property value for the given key.
    -	 */
    -	function getProperty($key)
    -	{
    -		return $this->properties[$key];
    -	}
    -
    -	/**
    -	 * Function: isConsumed
    -	 *
    -	 * Returns true if the event has been consumed.
    -	 */
    -	function isConsumed()
    -	{
    -		return $this->consumed;
    -	}
    -
    -	/**
    -	 * Function: consume
    -	 *
    -	 * Consumes the event.
    -	 */
    -	function consume()
    -	{
    -		$this->consumed = true;
    -	}
    -	
    -}
    -?>
    diff --git a/php/src/util/mxEventSource.php b/php/src/util/mxEventSource.php
    deleted file mode 100644
    index 563169bc4..000000000
    --- a/php/src/util/mxEventSource.php
    +++ /dev/null
    @@ -1,61 +0,0 @@
    -<?php
    -/**
    - * Copyright (c) 2006-2013, Gaudenz Alder
    - */
    -class mxEventSource
    -{
    -
    -	/**
    -	 * Class: mxEventSource
    -	 *
    -	 * Base class for all event sources.
    -	 * 
    -	 * Variable: eventListeners
    -	 *
    -	 * Holds the registered listeners.
    -	 */
    -	var $eventListeners;
    -
    -	/**
    -	 * Function: addListener
    -	 *
    -	 * Adds a listener for the given event name. Note that the method of the
    -	 * listener object must have the same name as the event it's being added
    -	 * for. This is different from other language implementations of this
    -	 * class.
    -	 */
    -	function addListener($name, $listener)
    -	{
    -	 	if ($this->eventListeners == null)
    -	 	{
    -	 		$this->eventListeners = array();
    -	 	}
    -	 	
    -	 	array_push($this->eventListeners, $name);
    -	 	array_push($this->eventListeners, $listener);
    -	}
    -
    -	/**
    -	 * Function: fireEvent
    -	 *
    -	 * Fires the event for the specified name.
    -	 */
    -	function fireEvent($event)
    -	{
    -	 	if ($this->eventListeners != null)
    -	 	{
    -	 		$name = $event->getName();
    -	 		
    -	 		for ($i = 0; $i < sizeof($this->eventListeners); $i += 2)
    -	 		{
    -	 			if ($this->eventListeners[$i] == $name)
    -	 			{
    -		 			$this->eventListeners[$i+1]->$name($event);
    -	 			}
    -	 		}
    -	 	}
    -	}
    -
    -}
    -
    -?>
    diff --git a/php/src/util/mxImageBundle.php b/php/src/util/mxImageBundle.php
    deleted file mode 100644
    index a2b68b356..000000000
    --- a/php/src/util/mxImageBundle.php
    +++ /dev/null
    @@ -1,82 +0,0 @@
    -<?php
    -/**
    - * Copyright (c) 2006-2013, Gaudenz Alder
    - */
    -class mxImageBundle
    -{
    -
    -	/**
    -	 * Class: mxImageBundle
    -	 *
    -	 * Maps from keys to base64 encoded images or file locations. All values must
    -	 * be URLs or use the format data:image/format followed by a comma and the base64
    -	 * encoded image data, eg. "data:image/gif,XYZ", where XYZ is the base64 encoded
    -	 * image data.
    -	 * 
    -	 * (code)
    -	 * $bundle = new mxImageBundle();
    -	 * $bundle->putImage("myImage", "data:image/gif,R0lGODlhEAAQAMIGAAAAAICAAICAgP".
    -	 *   "//AOzp2O3r2////////yH+FUNyZWF0ZWQgd2l0aCBUaGUgR0lNUAAh+QQBCgAHACwAAAAAEA".
    -	 *   "AQAAADTXi63AowynnAMDfjPUDlnAAJhmeBFxAEloliKltWmiYCQvfVr6lBPB1ggxN1hilaSS".
    -	 *   "ASFQpIV5HJBDyHpqK2ejVRm2AAgZCdmCGO9CIBADs=");
    -	 * $graph->addImageBundle($bundle);
    -	 * (end);
    -	 * 
    -	 * The image can then be referenced in any cell style using image=myImage.
    -	 *
    -	 * To convert an image at a given URL to a base64 encoded String, the following
    -	 * code can be used:
    -	 * 
    -	 * (code)
    -	 * echo "base64=".base64_encode(file_get_contents($url));
    -	 * (end)
    -	 * 
    -	 * The value is decoded in <mxUtils.loadImage>. The keys for images are
    -	 * resolved and the short format above is converted to a data URI in
    -	 * <mxGraph.postProcessCellStyle>.
    -	 * 
    -	 * Variable: images
    -	 * 
    -	 * Maps from keys to images.
    -	 */
    -	var $images = array();
    -
    -	/**
    -	 * Constructor: mxImageBundle
    -	 *
    -	 * Constructs a new image bundle.
    -	 */
    -	function mxImageBundle() { }
    -	
    -	/**
    -	 * Function: getImages
    -	 * 
    -	 * Returns the <images>.
    -	 */
    -	function getImages()
    -	{
    -		return $this->images;
    -	}
    -
    -	/**
    -	 * Function: putImage
    -	 * 
    -	 * Adds the specified entry to the map.
    -	 */
    -	function putImage($key, $value)
    -	{
    -		$this->images[$key] = $value;
    -	}
    -
    -	/**
    -	 * Function: getImage
    -	 * 
    -	 * Returns the value for the given key.
    -	 */
    -	function getImage($key)
    -	{
    -		return (array_key_exists($key, $this->images)) ? $this->images[$key] : null;
    -	}
    -	
    -}
    -?>
    diff --git a/php/src/util/mxLog.php b/php/src/util/mxLog.php
    deleted file mode 100644
    index 2127cdf9a..000000000
    --- a/php/src/util/mxLog.php
    +++ /dev/null
    @@ -1,223 +0,0 @@
    -<?php
    -/**
    - * Copyright (c) 2006-2013, Gaudenz Alder
    - */
    -class mxLog
    -{
    -
    -	/**
    -	 * Class: mxLog
    -	 * 
    -	 * Logging facility.
    -	 * 
    -	 * Variable: level_fine
    -	 *
    -	 * Specifies the fine logging level.
    -	 */
    -	public static $level_fine = true;
    -	
    -	/**
    -	 * Variable: level_debug
    -	 *
    -	 * Specifies the debug logging level.
    -	 */
    -	public static $level_debug = true;
    -	
    -	/**
    -	 * Variable: level_info
    -	 *
    -	 * Specifies the info logging level.
    -	 */
    -	public static $level_info = true;
    -	
    -	/**
    -	 * Variable: level_warn
    -	 *
    -	 * Specifies the warn logging level.
    -	 */
    -	public static $level_warn = true;
    -	
    -	/**
    -	 * Variable: level_error
    -	 *
    -	 * Specifies the error logging level.
    -	 */
    -	public static $level_error = true;
    -	
    -	/**
    -	 * Variable: current
    -	 *
    -	 * Default is true.
    -	 */
    -	public static $current = array();
    -	
    -	/**
    -	 * Variable: tab
    -	 *
    -	 * Default is true.
    -	 */
    -	public static $tab = "";
    -	
    -	/**
    -	 * Variable: logfiles
    -	 *
    -	 * Holds the array of logfiles.
    -	 */
    -	public static $logfiles = array();
    -	
    -	/**
    -	 * Variable: printLog
    -	 *
    -	 * Specifies if the log should be printed out.
    -	 */
    -	public static $printLog = false;
    -	
    -	/**
    -	 * Function: addLogfile
    -	 *
    -	 * Adds a file for logging.
    -	 */
    -	static function addLogfile($filename)
    -	{
    -		$fh = fopen($filename, "a");
    -		array_push(mxLog::$logfiles, $fh);
    -	}
    -	
    -	/**
    -	 * Function: enter
    -	 *
    -	 * Logs a method entry.
    -	 */
    -	static function enter($method, $text="")
    -	{
    -		mxLog::writeln("$method: { $text");
    -		$t0 = microtime(true);
    -		array_push(mxLog::$current, $t0);
    -		mxLog::$tab .= "    ";
    -	}
    -
    -	/**
    -	 * Function: leave
    -	 *
    -	 * Logs a method exit.
    -	 */
    -	static function leave($text="")
    -	{
    -		$t0 = array_pop(mxLog::$current);
    -		$tab = mxLog::$tab;
    -		mxLog::$tab = substr($tab, 0, strlen($tab)-4);
    -		$dt = "(dt=".(microtime(true)-$t0).")";
    -		mxLog::writeln("} $dt $text");
    -	}
    -	
    -	/**
    -	 * Function: fine
    -	 *
    -	 * Logs a fine trace.
    -	 */
    -	static function fine($text)
    -	{
    -		if (mxLog::$level_fine)
    -		{
    -			mxLog::writeln($text);
    -		}
    -	}
    -
    -	/**
    -	 * Function: debug
    -	 *
    -	 * Logs a debug trace.
    -	 */
    -	static function debug($text)
    -	{
    -		if (mxLog::$level_debug)
    -		{
    -			mxLog::writeln($text);
    -		}
    -	}
    -
    -	/**
    -	 * Function: info
    -	 *
    -	 * Logs an info trace.
    -	 */
    -	static function info($text)
    -	{
    -		if (mxLog::$level_info)
    -		{
    -			mxLog::writeln($text);
    -		}
    -	}
    -
    -	/**
    -	 * Function: warn
    -	 *
    -	 * Logs a warn trace.
    -	 */
    -	static function warn($text)
    -	{
    -		if (mxLog::$level_warn)
    -		{
    -			mxLog::writeln($text);
    -			error_log($text);
    -		}
    -	}
    -
    -	/**
    -	 * Function: error
    -	 *
    -	 * Logs an error trace.
    -	 */
    -	static function error($text)
    -	{
    -		if (mxLog::$level_error)
    -		{
    -			mxLog::writeln($text);
    -			error_log($text);
    -		}
    -	}
    -	
    -	/**
    -	 * Function: writeln
    -	 *
    -	 * Writes a line with a linefeed to the log.
    -	 */
    -	static function writeln($text)
    -	{
    -		mxLog::write("$text\n");
    -	}
    -
    -	/**
    -	 * Function: write
    -	 *
    -	 * Writes a line to the log.
    -	 */
    -	static function write($text)
    -	{
    -		$msg = date("Y-m-d H:i:s").": ".mxLog::$tab.$text;
    -		foreach (mxLog::$logfiles as $fh)
    -		{
    -			fputs($fh, $msg);
    -		}
    -		if (mxLog::$printLog)
    -		{
    -			$msg = str_replace(" ", "&nbsp;", $msg);
    -			print("$msg<br>");
    -		}
    -	}
    -
    -	/**
    -	 * Function: close
    -	 *
    -	 * Closes all open logfiles.
    -	 */
    -	static function close()
    -	{
    -		foreach (mxLog::$logfiles as $fh)
    -		{
    -			fclose($fh);
    -		}
    -	}
    -
    -}
    -?>
    diff --git a/php/src/util/mxPoint.php b/php/src/util/mxPoint.php
    deleted file mode 100644
    index 7e3a625e6..000000000
    --- a/php/src/util/mxPoint.php
    +++ /dev/null
    @@ -1,65 +0,0 @@
    -<?php
    -/**
    - * Copyright (c) 2006-2013, Gaudenz Alder
    - */
    -class mxPoint
    -{
    -
    -	/**
    -	 * Class: mxPoint
    -	 *
    -	 * Implements a 2-dimensional point with double precision coordinates.
    -	 * 
    -	 * Variable: x
    -	 *
    -	 * Holds the x-coordinate of the point. Default is 0.
    -	 */
    -	var $x = 0;
    -
    -	/**
    -	 * Variable: y
    -	 *
    -	 * Holds the y-coordinate of the point. Default is 0.
    -	 */
    -	var $y = 0;
    -
    -	/**
    -	 * Constructor: mxPoint
    -	 *
    -	 * Constructs a new point for the optional x and y coordinates. If no
    -	 * coordinates are given, then the default values for <x> and <y> are used.
    -	 */
    -	function mxPoint($x = 0, $y = 0)
    -	{
    -	 	$this->x = $x;
    -		$this->y = $y;
    -	}
    -
    -	/**
    -	 * Function: equals
    -	 *
    -	 * Returns true if the given object equals this point.
    -	 */
    -	function equals($obj)
    -	{
    -        if ($obj instanceof mxPoint)
    -        {
    -            return $obj->x == $this->x &&
    -            	$obj->y == $this->y;
    -        }
    -
    -        return false;
    -	}
    -
    -	/**
    -	 * Function: copy
    -	 *
    -	 * Returns a copy of this <mxPoint>.
    -	 */
    -	function copy()
    -	{
    -	 	return new mxPoint($this->x, $this->y);
    -	}
    -
    -}
    -?>
    diff --git a/php/src/util/mxRectangle.php b/php/src/util/mxRectangle.php
    deleted file mode 100644
    index b25a7ddde..000000000
    --- a/php/src/util/mxRectangle.php
    +++ /dev/null
    @@ -1,136 +0,0 @@
    -<?php
    -/**
    - * Copyright (c) 2006-2013, Gaudenz Alder
    - */
    -class mxRectangle extends mxPoint
    -{
    -
    -	/**
    -	 * Class: mxRectangle
    -	 *
    -	 * Implements a 2-dimensional rectangle with double precision coordinates.
    -	 * 
    -	 * Variable: width
    -	 *
    -	 * Holds the width of the rectangle. Default is 0.
    -	 */
    -	var $width = 0;
    -
    -	/**
    -	 * Variable: height
    -	 *
    -	 * Holds the height of the rectangle. Default is 0.
    -	 */
    -	var $height = 0;
    -
    -	/**
    -	 * Constructor: mxRectangle
    -	 *
    -	 * Constructs a new rectangle for the optional parameters. If no parameters
    -	 * are given then the respective default values are used.
    -	 */
    -	function mxRectangle($x = 0, $y = 0, $width = 0, $height = 0)
    -	{
    -		parent::mxPoint($x, $y);
    -		
    -	 	$this->width = $width;
    -		$this->height = $height;
    -	}
    -
    -	/**
    -	 * Function: setRect
    -	 *
    -	 * Sets this rectangle to the specified values.
    -	 */
    -	function setRect($x, $y, $width, $height)
    -	{
    -	    $this->x = $x;
    -	    $this->y = $y;
    -	    $this->width = $w;
    -	    $this->height = $h;
    -	}
    -	
    -	/**
    -	 * Function: getCenterX
    -	 * 
    -	 * Returns the x-coordinate of the center point.
    -	 */
    -	function getCenterX()
    -	{
    -		return $this->x + $this->width / 2;
    -	}
    -	
    -	/**
    -	 * Function: getCenterY
    -	 * 
    -	 * Returns the y-coordinate of the center point.
    -	 */
    -	function getCenterY()
    -	{
    -		return $this->y + $this->height / 2;
    -	}
    -	
    -	/**
    -	 * Function: add
    -	 *
    -	 * Adds the given rectangle to this rectangle.
    -	 */
    -	function add($rect)
    -	{
    -		if ($rect != null)
    -		{
    -			$minX = min($this->x, $rect->x);
    -			$minY = min($this->y, $rect->y);
    -			$maxX = max($this->x + $this->width, $rect->x + $rect->width);
    -			$maxY = max($this->y + $this->height, $rect->y + $rect->height);
    -			
    -			$this->x = $minX;
    -			$this->y = $minY;
    -			$this->width = $maxX - $minX;
    -			$this->height = $maxY - $minY;
    -		}
    -	}
    -
    -	/**
    -	 * Function: grow
    -	 *
    -	 * Grows the rectangle by the given amount, that is, this method subtracts
    -	 * the given amount from the x- and y-coordinates and adds twice the amount
    -	 * to the width and height.
    -	 */
    -	function grow($amount)
    -	{
    -		$this->x -= $amount;
    -		$this->y -= $amount;
    -		$this->width += 2 * $amount;
    -		$this->height += 2 * $amount;
    -	}
    -
    -	/**
    -	 * Function: equals
    -	 *
    -	 * Returns true if the given object equals this rectangle.
    -	 */
    -	function equals($obj)
    -	{
    -        if ($obj instanceof mxRectangle)
    -        {
    -            return $obj->x == $this->x && $obj->y == $this->y &&
    -            	$obj->width == $this->width && $obj->height = $this->height;
    -        }
    -
    -        return false;
    -	}
    -
    -	/**
    -	 * Function: copy
    -	 *
    -	 * Returns a copy of this <mxRectangle>.
    -	 */
    -	function copy()
    -	{
    -	 	return new mxRectangle($this->x, $this->y, $this->width, $this->height);
    -	}
    -
    -}
    -?>
    diff --git a/php/src/util/mxUtils.php b/php/src/util/mxUtils.php
    deleted file mode 100644
    index 6bf53b739..000000000
    --- a/php/src/util/mxUtils.php
    +++ /dev/null
    @@ -1,1177 +0,0 @@
    -<?php
    -/**
    - * Copyright (c) 2006-2013, Gaudenz Alder
    - */
    -class mxUtils
    -{
    -	
    -	/**
    -	 * Class: mxUtils
    -	 *
    -	 * Helper methods.
    -	 * 
    -	 * Function: getLabelSize
    -	 * 
    -	 * Returns the size of the given label.
    -	 */
    -    static function getLabelSize($label, $style)
    -    {
    -        $fontSize = mxUtils::getValue($style, mxConstants::$STYLE_FONTSIZE,
    -            mxConstants::$DEFAULT_FONTSIZE);
    -        $fontFamily = mxUtils::getValue($style, mxConstants::$STYLE_FONTFAMILY,
    -        	mxConstants::$DEFAULT_FONTFAMILY);
    -		
    -        return mxUtils::getSizeForString($label, $fontSize, $fontFamily);
    -    }
    -        
    -    /**
    -	 * Function: getLabelPaintBounds
    -	 * 
    -	 * Returns the paint bounds for the given label.
    -     */
    -    static function getLabelPaintBounds($label, $style,
    -    	$isHtml, $offset, $vertexBounds, $scale)
    -    {
    -        $size = mxUtils::getLabelSize($label, $style);
    -
    -        $x = $offset->x;
    -        $y = $offset->y;
    -        $width = 0;
    -        $height = 0;
    -
    -        if (isset($vertexBounds))
    -        {
    -            $x += $vertexBounds->x;
    -            $y += $vertexBounds->y;
    -
    -            if (mxUtils::getValue($style, mxConstants::$STYLE_SHAPE, "") ==
    -            	mxConstants::$SHAPE_SWIMLANE)
    -            {
    -				// Limits the label to the swimlane title
    -	            $start = mxUtils::getNumber($style, mxConstants::$STYLE_STARTSIZE,
    -	            	mxConstants::$DEFAULT_STARTSIZE) * $scale;
    -            	
    -	            if (mxUtils::getValue($style, mxConstants::$STYLE_HORIZONTAL, true))
    -				{
    -					$width += $vertexBounds->width;
    -            		$height += $start;				
    -				}
    -				else
    -				{
    -					$width += $start;
    -            		$height += $vertexBounds->height;
    -				}
    -            }
    -            else
    -            {
    -            	$height += $vertexBounds->height;
    -            	$width += $vertexBounds->width;
    -        	}
    -        }
    -
    -        return mxUtils::getScaledLabelBounds($x, $y, $size, $width,
    -        		$height, $style, $scale);
    -    }
    - 
    -    /**
    -	 * Function: getScaledLabelBounds
    -	 * 
    -	 * Returns the bounds for a label for the given location and size, taking
    -	 * into account the alignment and spacing in the specified style, as well
    -	 * as the width and height of the rectangle that contains the label.
    -	 * (For edge labels this width and height is 0.) The scale is used to scale
    -	 * the given size and the spacings in the specified style.
    -     */
    -    static function getScaledLabelBounds($x, $y, $size, $outerWidth, $outerHeight, $style, $scale)
    -    {
    -		// Adds an inset of 3 pixels
    -		$inset = mxConstants::$LABEL_INSET * $scale;
    -
    -    	// Scales the size of the label
    -    	$width = $size->width * $scale + 2 * $inset;
    -    	$height = $size->height * $scale;
    -
    -		// Gets the global spacing and orientation
    -		$horizontal = mxUtils::getValue($style, mxConstants::$STYLE_HORIZONTAL, true);
    -        $spacing = mxUtils::getNumber($style, mxConstants::$STYLE_SPACING) * $scale;
    -
    -		// Gets the alignment settings
    -        $align = mxUtils::getValue($style, mxConstants::$STYLE_ALIGN,
    -        	mxConstants::$ALIGN_CENTER);
    -        $valign = mxUtils::getValue($style, mxConstants::$STYLE_VERTICAL_ALIGN,
    -        	mxConstants::$ALIGN_MIDDLE);
    -
    -		// Gets the vertical spacing
    -        $top = mxUtils::getNumber($style, mxConstants::$STYLE_SPACING_TOP) * $scale;
    -        $bottom = mxUtils::getNumber($style, mxConstants::$STYLE_SPACING_BOTTOM) * $scale;
    -
    -		// Gets the horizontal spacing
    -        $left = mxUtils::getNumber($style, mxConstants::$STYLE_SPACING_LEFT) * $scale;
    -        $right = mxUtils::getNumber($style, mxConstants::$STYLE_SPACING_RIGHT) * $scale;
    -
    -		// Applies the orientation to the spacings and dimension
    -		if (!$horizontal)
    -		{
    -			$tmp = $top;
    -			$top = $right;
    -			$right = $bottom;
    -			$bottom = $left;
    -			$left = $tmp;
    -			
    -			$tmp = $width;
    -			$width = $height;
    -			$height = $tmp;
    -		}
    -
    -		// Computes the position of the label for the horizontal alignment
    -        if (($horizontal && $align == mxConstants::$ALIGN_CENTER) ||
    -        	(!$horizontal && $valign == mxConstants::$ALIGN_MIDDLE))
    -        {
    -            $x += ($outerWidth - $width) / 2 + $left - $right;
    -        }
    -        else if (($horizontal && $align == mxConstants::$ALIGN_RIGHT) ||
    -        	(!$horizontal && $valign == mxConstants::$ALIGN_BOTTOM))
    -        {
    -            $x += $outerWidth - $width - $spacing - $right;
    -        }
    -        else
    -        {
    -            $x += $spacing + $left;
    -        }
    -
    -		// Computes the position of the label for the vertical alignment
    -        if ((!$horizontal && $align == mxConstants::$ALIGN_CENTER) ||
    -        	($horizontal && $valign == mxConstants::$ALIGN_MIDDLE))
    -        {
    -            $y += ($outerHeight - $height) / 2 + $top - $bottom;
    -        }
    -        else if ((!$horizontal && $align == mxConstants::$ALIGN_LEFT) ||
    -        	($horizontal && $valign == mxConstants::$ALIGN_BOTTOM))
    -        {
    -            $y += $outerHeight - $height - $spacing - $bottom;
    -        }
    -        else
    -        {
    -            $y += $spacing + $top;
    -        }
    -
    -        return new mxRectangle($x, $y, $width, $height);
    -    }
    -    
    -    /**
    -	 * Function: getSizeForString
    -	 * 
    -	 * Returns an <mxRectangle> with the size (width and height in pixels) of
    -	 * the given string. The string may contain HTML markup. Newlines should be
    -	 * converted to <br> before calling this method.
    -	 * 
    -	 * Parameters:
    -	 * 
    -	 * text - String whose size should be returned.
    -	 * fontSize - Integer that specifies the font size in pixels. Default is
    -	 * <mxConstants.DEFAULT_FONTSIZE>.
    -	 * fontFamily - String that specifies the name of the font famil.y Default
    -	 * is <mxConstants.DEFAULT_FONTFAMILY>.
    -     * 
    -     */
    -    static function getSizeForString($text, $fontSize = 0, $fontFamily = null)
    -    {
    -    	if (is_string($text) && strlen($text) > 0)
    -    	{
    -	        if ($fontSize == 0)
    -	        {
    -	            $fontSize = mxConstants::$DEFAULT_FONTSIZE;
    -	        }
    -	
    -	        if ($fontFamily == null)
    -	        {
    -	            $fontFamily = mxConstants::$DEFAULT_FONTFAMILY;
    -	        }
    -	
    -			$lines = explode("\n", $text);
    -			$lineCount = sizeof($lines);
    -	        
    -	    	if (mxConstants::$TTF_ENABLED &&
    -	    		function_exists("imagettfbbox"))
    -			{
    -				$bbox = imagettfbbox($fontSize * mxConstants::$TTF_SIZEFACTOR, 0, $fontFamily, $text);
    -				$textWidth = $bbox[2] - $bbox[0];
    -				$textHeight = ($fontSize + mxConstants::$DEFAULT_LINESPACING) * $lineCount;
    -				
    -				return new mxRectangle(0, 0, $textWidth, $textHeight);
    -			}
    -			else if (function_exists("imageFontHeight") &&
    -				function_exists("imageFontWidth"))
    -			{
    -				$font = mxUtils::getFixedFontSize($fontSize, $fontFamily);
    -				$textHeight = (imageFontHeight($font) + mxConstants::$DEFAULT_LINESPACING) * $lineCount;
    -				$charWidth = imageFontWidth($font);
    -				$textWidth = 0;
    -				
    -				for ($i = 0; $i < sizeof($lines); $i++)
    -				{
    -					$textWidth = max($textWidth, $charWidth * strlen($lines[$i]));
    -				}
    -				
    -				return new mxRectangle(0, 0, $textWidth, $textHeight);
    -			}
    -		}
    -		
    -		return new mxRectangle();
    -    }
    -	
    -	/**
    -	 * Function: flipImage
    -	 * 
    -	 * Flips the given image horizontally and/or vertically and returns a new
    -	 * image instance.
    -	 */
    -	static function flipImage($img, $flipH, $flipV)
    -	{
    -		$w = imagesx($img);
    -		$h = imagesy($img);
    -		
    -		$sx = 0;
    -		$sy = 0;
    -		$sw = $w;
    -		$sh = $h;
    -				
    -		if ($flipH)
    -		{
    -			$sx = $w - 1;
    -			$sw = -$w;
    -		}
    -		
    -		if ($flipV)
    -		{
    -			$sy = $h - 1;
    -			$sh = -$h;
    -		}
    -
    -		$dst = imagecreatetruecolor($w, $h);
    -		
    -		// Fills the background with transparent white
    -		$bg = ImageColorAllocateAlpha($dst, 255, 255, 255, 127);
    -		ImageFill($dst, 0, 0 , $bg);
    -		
    -		if (imagecopyresampled($dst, $img, 0, 0, $sx, $sy, $w, $h, $sw, $sh))
    -	    {
    -	        return $dst;
    -	    }
    -	
    -	    return $img;
    -	}
    -    
    -	/**
    -	 * Function: toRadians
    -	 * 
    -	 * Converts the given degree to radians.
    -	 */
    -	static function toRadians($deg)
    -	{
    -		return pi() * $deg / 180;
    -	}
    -
    -	/**
    -	 * Function: getBoundingBox
    -	 * 
    -	 * Returns the bounding box for the rotated rectangle.
    -	 */
    -	static function getBoundingBox($rect, $rotation)
    -	{
    -        $result = null;
    -
    -        if ($rect != null && $rotation != null && $rotation != 0)
    -        {
    -            $rad = mxUtils::toRadians($rotation);
    -            $cos = cos($rad);
    -            $sin = sin($rad);
    -
    -            $cx = new mxPoint(
    -            	$rect->x + $rect->width / 2,
    -            	$rect->y  + $rect->height / 2);
    -
    -            $p1 = new mxPoint($rect->x, $rect->y);
    -            $p2 = new mxPoint($rect->x + $rect->width, $rect->y);
    -            $p3 = new mxPoint($p2->x, $rect->y + $rect->height);
    -            $p4 = new mxPoint($rect->x, $p3->y);
    -
    -            $p1 = mxUtils::getRotatedPoint($p1, $cos, $sin, $cx);
    -            $p2 = mxUtils::getRotatedPoint($p2, $cos, $sin, $cx);
    -            $p3 = mxUtils::getRotatedPoint($p3, $cos, $sin, $cx);
    -            $p4 = mxUtils::getRotatedPoint($p4, $cos, $sin, $cx);
    -
    -            $result = new mxRectangle($p1->x, $p1->y, 0, 0);
    -            $result.add(new mxRectangle($p2->x, $p2->y, 0, 0));
    -            $result.add(new mxRectangle($p3->x, $p3->y, 0, 0));
    -            $result.add(new mxRectangle($p4->x, $p4->y, 0, 0));
    -        }
    -
    -        return $result;
    -	}
    -
    -	/**
    -	 * Function: getRotatedPoint
    -	 * 
    -	 * Rotates the given point by the given cos and sin.
    -	 */
    -	static function getRotatedPoint($pt, $cos, $sin, $cx = null)
    -	{
    -		$cx = ($cx != null) ? $cx : new mxPoint();
    -		
    -		$x = $pt->x - $c->x;
    -		$y = $pt->y - $c->y;
    -
    -		$x1 = $x * $cos - $y * $sin;
    -		$y1 = $y * $cos + $x * $sin;
    -
    -		return new mxPoint($x1 + $c->x, $y1 + $c->y);
    -	}
    -
    -	/**
    -	 * Function: translatePoints
    -	 *
    -	 * Creates a new list of new points obtained by translating the points in
    -	 * the given list by the given vector. Elements that are not mxPoints are
    -	 * added to the result as-is.
    -	 */
    -	static function translatePoints($pts, $dx, $dy)
    -	{
    -		$result = null;
    -
    -		if ($pts != null)
    -		{
    -			$result = array();
    -			$pointCount = sizeof($pts);
    -			
    -			for ($i = 0; $i < $pointCount; $i++)
    -			{
    -				$obj = $pts[$i];
    -				
    -				if ($obj instanceof mxPoint)
    -				{
    -					$point = $obj->copy();
    -					
    -					$point->x += $dx;
    -					$point->y += $dy;
    -					
    -					array_push($result, $point);
    -				}
    -				else
    -				{
    -					array_push($result, $obj);
    -				}
    -			}
    -		}
    -
    -		return $result;
    -	}
    -
    -	/**
    -	 * Function: contains
    -	 * 
    -	 * Returns true if the specified point (x, y) is contained in the given rectangle.
    -	 * 
    -	 * Parameters:
    -	 * 
    -	 * bounds - <mxRectangle> that represents the area.
    -	 * x - X-coordinate of the point.
    -	 * y - Y-coordinate of the point.
    -	 */
    -	static function contains($state, $x, $y)
    -	{
    -		return ($state->x <= $x && $state->x + $state->width >= $x &&
    -				$state->y <= $y && $state->y + $state->height >= $y);
    -	}
    -
    -	/**
    -	 * Function: intersection
    -	 * 
    -	 * Returns the intersection of two lines as an <mxPoint>.
    -	 * 
    -	 * Parameters:
    -	 * 
    -	 * x0 - X-coordinate of the first line's startpoint.
    -	 * y0 - X-coordinate of the first line's startpoint.
    -	 * x1 - X-coordinate of the first line's endpoint.
    -	 * y1 - Y-coordinate of the first line's endpoint.
    -	 * x2 - X-coordinate of the second line's startpoint.
    -	 * y2 - Y-coordinate of the second line's startpoint.
    -	 * x3 - X-coordinate of the second line's endpoint.
    -	 * y3 - Y-coordinate of the second line's endpoint.
    -	 */
    -	static function intersection($x0, $y0, $x1, $y1, $x2, $y2, $x3, $y3)
    -	{
    -		$denom = (($y3 - $y2)*($x1 - $x0)) - (($x3 - $x2)*($y1 - $y0));
    -		$nume_a = (($x3 - $x2)*($y0 - $y2)) - (($y3 - $y2)*($x0 - $x2));
    -		$nume_b = (($x1 - $x0)*($y0 - $y2)) - (($y1 - $y0)*($x0 - $x2));
    -
    -		$ua = $nume_a / $denom;
    -		$ub = $nume_b / $denom;
    -		
    -		if($ua >= 0.0 && $ua <= 1.0 && $ub >= 0.0 && $ub <= 1.0)
    -		{
    -			// Get the intersection point
    -			$intersectionX = $x0 + $ua*($x1 - $x0);
    -			$intersectionY = $y0 + $ua*($y1 - $y0);
    -			
    -			return new mxPoint($intersectionX, $intersectionY);
    -		}
    -		
    -		// No intersection
    -		return null;
    -	}
    -
    -	/**
    -	 * Function: encodeImage
    -	 *
    -	 * Encodes the given image using the GD image encoding routines.
    -	 * Supported formats are gif, jpg and png (default).
    -	 *
    -	 * Parameters:
    -	 *
    -	 * image - GD image to be encoded.
    -	 * format - String that defines the encoding format. Default is png.
    -	 */
    -	static function encodeImage($image, $format=null)
    -	{
    -		if ($format == "gif")
    -		{
    -			return imageGif($image);
    -		}
    -		else if ($format == "jpg")
    -		{
    -			return imageJpeg($image);
    -		}
    -		else
    -		{
    -			return imagePng($image);
    -		}
    -	}
    -
    -	/**
    -	 * Function: getStylename
    -	 * 
    -	 * Returns the stylename in a style of the form [stylename;|key=value;] or
    -	 * an empty string if the given style does not contain a stylename.
    -	 * 
    -	 * Parameters:
    -	 * 
    -	 * style - String of the form [stylename;|key=value;].
    -	 */
    -	static function getStylename($style)
    -	{
    -		if (isset($style))
    -		{
    -			$pairs = explode(";", $style);
    -			$stylename = $pairs[0];
    -			
    -			if (strpos($stylename, "=") === false)
    -			{
    -				return $stylename;
    -			}
    -		}
    -				
    -		return "";
    -	}
    -
    -	/**
    -	 * Function: getStylenames
    -	 * 
    -	 * Returns the stylenames in a style of the form [stylename;|key=value;] or
    -	 * an empty array if the given style does not contain any stylenames.
    -	 * 
    -	 * Parameters:
    -	 * 
    -	 * style - String of the form [stylename;|key=value;].
    -	 */
    -	static function getStylenames($style)
    -	{
    -		$result = array();
    -		
    -		if (isset($style))
    -		{
    -			$pairs = explode(";", $style);
    -			
    -			for ($i = 0; $i < sizeof($pairs); $i++)
    -			{
    -				if (strpos($pairs[$i], "=") === false)
    -				{
    -					array_push($result, $pairs[$i]);
    -				}
    -			}
    -		}
    -				
    -		return $result;
    -	}
    -
    -	/**
    -	 * Function: indexOfStylename
    -	 *
    -	 * Returns the index of the given stylename in the given style. This
    -	 * returns -1 if the given stylename does not occur (as a stylename) in the
    -	 * given style, otherwise it returns the index of the first character.
    -	 */
    -	static function indexOfStylename($style, $stylename)
    -	{
    -		if (isset($style) && isset($stylename))
    -		{
    -			$tokens = explode(";", $style);
    -			$tokenCount = sizeof($tokens);
    -			$pos = 0;
    -			
    -			for ($i = 0; $i < $tokenCount; $i++)
    -			{
    -				if ($tokens[$i] == $stylename)
    -				{
    -					return $pos;
    -				}
    -				
    -				$pos += strlen($tokens[$i]) + 1;
    -			}
    -		}
    -		
    -		return -1;
    -	}
    -
    -	/**
    -	 * Function: addStylename
    -	 *
    -	 * Adds the specified stylename to the given style if it does not already
    -	 * contain the stylename.
    -	 */
    -	static function addStylename($style, $stylename)
    -	{
    -		if (mxUtils::indexOfStylename($style, $stylename) < 0)
    -		{
    -			if (!isset($style))
    -			{
    -				$style = "";
    -			}
    -			else if (strlen($style) > 0 && $style[strlen($style) - 1] != ";")
    -			{
    -				$style .= ";";
    -			}
    -
    -			$style .= $stylename;
    -		}
    -
    -		return $style;
    -	}
    -
    -	/**
    -	 * Function: removeStylename
    -	 *
    -	 * Removes all occurrences of the specified stylename in the given style
    -	 * and returns the updated style. Trailing semicolons are preserved.
    -	 */
    -	static function removeStylename($style, $stylename)
    -	{
    -		$result = "";
    -
    -		if (isset($style))
    -		{
    -			$tokens = explode(";", $style);
    -			$tokenCount = sizeof($tokens);
    -
    -			for ($i = 0; $i < $tokenCount; $i++)
    -			{
    -				if ($tokens[$i] != $stylename)
    -				{
    -					$result .= $tokens[$i].";";
    -				}
    -			}
    -		}
    -		
    -		$len = strlen($result);
    -
    -		return ($len > 1) ? substr($result, 0, $len - 1) : $result;
    -	}
    -
    -	/**
    -	 * Function: removeAllStylenames
    -	 *
    -	 * Removes all stylenames from the given style and returns the updated
    -	 * style.
    -	 */
    -	static function removeAllStylenames($style)
    -	{
    -		$result = "";
    -
    -		if (isset($style))
    -		{
    -			$tokens = explode(";", $style);
    -			$tokenCount = sizeof($tokens);
    -
    -			for ($i = 0; $i < $tokenCount; $i++)
    -			{
    -				if (strpos($tokens[$i], "=") !== false)
    -				{
    -					$result .= $tokens[$i].";";
    -				}
    -			}
    -		}
    -		
    -		$len = strlen($result);
    -
    -		return ($len > 1) ? substr($result, 0, $len - 1) : $result;
    -	}
    -
    -	/**
    -	 * Function: setCellStyles
    -	 * 
    -	 * Assigns the value for the given key in the styles of the given cells, or
    -	 * removes the key from the styles if the value is null.
    -	 * 
    -	 * Parameters:
    -	 * 
    -	 * model - <mxGraphModel> to execute the transaction in.
    -	 * cells - Array of <mxCells> to be updated.
    -	 * key - Key of the style to be changed.
    -	 * value - New value for the given key.
    -	 */
    -	static function setCellStyles($model, $cells, $key, $value)
    -	{
    -		if ($cells != null && sizeof($cells) > 0)
    -		{
    -			$model->beginUpdate();
    -			try
    -			{
    -				for ($i=0; $i < sizeof($cells); $i++)
    -				{
    -					if (isset($cells[$i]))
    -					{
    -						$style = mxUtils::setStyle(
    -							$model->getStyle($cells[$i]),
    -							$key, $value);
    -						$model->setStyle($cells[$i], $style);
    -					}
    -				}
    -			}
    -			catch (Exception $e)
    -			{
    -				$model->endUpdate();
    -				throw($e);
    -			}
    -			$model->endUpdate();
    -		}
    -	}
    -
    -	/**
    -	 * Function: setStyle
    -	 * 
    -	 * Adds or removes the given key, value pair to the style and returns the
    -	 * new style. If value is null or zero length then the key is removed from
    -	 * the style.
    -	 * 
    -	 * Parameters:
    -	 * 
    -	 * style - String of the form stylename[;key=value]
    -	 * key - Key of the style to be changed.
    -	 * value - New value for the given key.
    -	 */
    -	static function setStyle($style, $key, $value)
    -	{
    -		$isValue = $value != null && (!is_string($value) ||
    -			strlen($value) > 0);
    -		
    -		if (strlen($style) == 0)
    -		{
    -			if ($isValue)
    -			{
    -				$style = "$key=$value";
    -			}
    -		}
    -		else
    -		{
    -			$index = strpos($style, "$key=");
    -
    -			if ($index === false)
    -			{
    -				if ($isValue)
    -				{
    -					$sep = ($style[strlen($style) - 1] == ";") ? "" : ";";
    -					$style = "{$style}$sep{$key}=$value";
    -				}
    -			}
    -			else
    -			{
    -				$tmp = ($isValue) ? "$key=$value" : "";
    -				$cont = strpos($style, ";", $index);
    -				
    -				if (!$isValue)
    -				{
    -					$cont++;
    -				}
    -				
    -				$style = substr($style, 0, $index).$tmp.
    -					(($cont > $index) ? substr($style, $cont) : "");
    -			}
    -		}
    -
    -		return $style;
    -	}
    -
    -	/**
    -	 * Function: setCellStyleFlags
    -	 * 
    -	 * Sets or toggles the flag bit for the given key in the cell's styles.
    -	 * If value is null then the flag is toggled.
    -	 * 
    -	 * Example:
    -	 * 
    -	 * (code)
    -	 * var cells = graph.getSelectionCells();
    -	 * mxUtils.setCellStyleFlags(graph.model,
    -	 * 			cells,
    -	 * 			mxConstants.STYLE_FONTSTYLE,
    -	 * 			mxConstants.FONT_BOLD);
    -	 * (end)
    -	 * 
    -	 * Toggles the bold font style.
    -	 * 
    -	 * Parameters:
    -	 * 
    -	 * model - <mxGraphModel> that contains the cells.
    -	 * cells - Array of <mxCells> to change the style for.
    -	 * key - Key of the style to be changed.
    -	 * flag - Integer for the bit to be changed.
    -	 * value - Optional boolean value for the flag.
    -	 */
    -	static function setCellStyleFlags($model, $cells, $key, $flag, $value)
    -	{
    -		if ($cells != null && sizeof($cells) > 0)
    -		{
    -			$model->beginUpdate();
    -			try
    -			{
    -				for ($i=0; $i < sizeof($cells); $i++)
    -				{
    -					if (isset($cells[$i]))
    -					{
    -						$style = mxUtils::setStyleFlag(
    -							$model->getStyle($cells[$i]),
    -							$key, $flag, $value);
    -						$model->setStyle($cells[$i], $style);
    -					}
    -				}
    -			}
    -			catch (Exception $e)
    -			{
    -				$model->endUpdate();
    -				throw($e);
    -			}
    -			$model->endUpdate();
    -		}
    -	}
    -
    -	/**
    -	 * Function: setStyleFlag
    -	 * 
    -	 * Sets or removes the given key from the specified style and returns the
    -	 * new style. If value is null then the flag is toggled.
    -	 * 
    -	 * Parameters:
    -	 * 
    -	 * style - String of the form stylename[;key=value].
    -	 * key - Key of the style to be changed.
    -	 * flag - Integer for the bit to be changed.
    -	 * value - Optional boolean value for the given flag.
    -	 */
    -	static function setStyleFlag($style, $key, $flag, $value)
    -	{
    -		if (strlen($style) == 0)
    -		{
    -			if ($value == null || $value === true)
    -			{
    -				$style = "$key=$flag";
    -			}
    -			else
    -			{
    -				$style = "$key=0";
    -			}
    -		}
    -		else
    -		{
    -			$index = strpos($style, "$key=");
    -
    -			if ($index === false)
    -			{
    -				$sep = ($style[strlen($style) - 1] == ";") ? "" : ";";
    -
    -				if ($value == null || $value === true)
    -				{
    -					$style = "{$style}$sep{$key}=$flag";
    -				}
    -				else
    -				{
    -					$style = "{$style}$sep{$key}=0";
    -				}
    -			}
    -			else
    -			{
    -				$cont = strpos($style, ";", $index);
    -				$tmp = "";
    -				
    -				if ($cont === false)
    -				{
    -					$tmp  = substr($style, $index+strlen($key)+1);
    -				}
    -				else
    -				{
    -					$tmp  = substr($style, $index+strlen($key)+1, $cont);
    -				}
    -				
    -				if ($value == null)
    -				{
    -					$tmp = $tmp ^ $flag;
    -				}
    -				else if ($value === true)
    -				{
    -					$tmp = $tmp | $flag;
    -				}
    -				else
    -				{
    -					$tmp = $tmp & ~$flag;
    -				}
    -
    -				$style = substr($style, 0, $index)."$key=$tmp".
    -					(($cont >= 0) ? substr($style, $cont) : "");
    -			}
    -		}
    -
    -		return $style;
    -	}
    -
    -	/**
    -	 * Function: getValue
    -	 *
    -	 * Returns the value for key in dictionary or the given default value if no
    -	 * value is defined for the key.
    -	 * 
    -	 * Parameters:
    -	 *
    -	 * dict - Dictionary that contains the key, value pairs.
    -	 * key - Key whose value should be returned.
    -	 * default - Default value to return if the key is undefined. Default is null.
    -	 */
    -	static function getValue($dict, $key, $default=null)
    -	{
    -		$value = null;
    -	
    -		if (isset($dict[$key]))
    -		{
    -			$value = $dict[$key];
    -		}
    -		else
    -		{
    -			$value = $default;
    -		}
    -		
    -		return $value;
    -	}
    -
    -	/**
    -	 * Function: getNumber
    -	 *
    -	 * Returns the value for key in dictionary or 0 if no value is defined for
    -	 * the key.
    -	 *
    -	 * Parameters:
    -	 *
    -	 * dict - Dictionary that contains the key, value pairs.
    -	 * key - Key whose value should be returned.
    -	 * default - Optional default value to return if no value is defined for
    -	 * the given key. Default is 0.
    -	 */
    -	static function getNumber($dict, $key, $default=0)
    -	{
    -		return mxUtils::getValue($dict, $key, $default);
    -	}
    -
    -	/**
    -	 * Function: indexOf
    -	 * 
    -	 * Returns the index of obj in array or -1 if the array does not contains
    -	 * the given object.
    -	 * 
    -	 * Parameters:
    -	 * 
    -	 * array - Array to check for the given obj.
    -	 * obj - Object to find in the given array.
    -	 */
    -	static function indexOf($array, $object)
    -	{
    -		if ($array != null)
    -		{
    -			$len = sizeof($array);
    -			
    -			for ($i = 0; $i < $len; $i++)
    -			{
    -				if ($array[$i] === $object)
    -				{
    -					return $i;
    -				}
    -			}
    -		}
    -
    -		return -1;
    -	}
    -
    -	/**
    -	 * Function: readFile
    -	 * 
    -	 * Reads the given filename into a string. Shortcut for file_get_contents.
    -	 * 
    -	 * Parameters:
    -	 * 
    -	 * filename - The name of the file to read.
    -	 */
    -	static function readFile($filename)
    -	{
    -		return file_get_contents($filename);
    -	}
    -
    -	/**
    -	 * Function: isNode
    -	 * 
    -	 * Returns true if the given value is an XML node with the node name
    -	 * and if the optional attribute has the specified value.
    -	 * 
    -	 * This implementation assumes that the given value is a DOM node if the
    -	 * nodeName property is not null.
    -	 * 
    -	 * Parameters:
    -	 * 
    -	 * value - Object that should be examined as a node.
    -	 * nodeName - String that specifies the node name.
    -	 * attributeName - Optional attribute name to check.
    -	 * attributeValue - Optional attribute value to check.
    -	 */
    -	static function isNode($value, $nodeName = null, $attributeName = null, $attributeValue = null)
    -	{
    -		if ($value != null && ($nodeName == null ||
    -			strcasecmp($value->nodeName, $nodeName) == 0))
    -		{
    -			return $attributeName == null ||
    -				$value->getAttribute($attributeName) == $attributeValue;
    -		}
    -		
    -		return false;
    -	}
    -	
    -	/**
    -	 * Function: loadImage
    -	 * 
    -	 * Loads an image from the local filesystem, a data URI or any other URL.
    -	 */
    -	static function loadImage($url)
    -	{
    -		$img = null;
    -		
    -		if (isset($url))
    -		{
    -			// Parses data URIs of the form data:image/format;base64,xxx
    -			if (strpos($url, "data:image/") === 0)
    -			{
    -				$comma = strpos($url, ",");
    -				$data = base64_decode(substr($url, $comma + 1));
    -				$img = imagecreatefromstring($data);
    -			}
    -			else if (preg_match("/.jpg/i", "$url"))
    -			{
    -				$img = imagecreatefromjpeg($url);
    -			}
    -			else if (preg_match("/.png/i", "$url"))
    -			{
    -				$img = imagecreatefrompng($url);
    -			}
    -			else if (preg_match("/.gif/i", "$url"))
    -			{
    -				$img = imagecreatefromgif($url);
    -			}
    -		}
    -		
    -		return $img;
    -	}
    -
    -	/**
    -	 * Function: createXmlDocument
    -	 * 
    -	 * Returns a new, empty XML document.
    -	 */
    -	static function createXmlDocument()
    -	{
    -		return new DOMDocument("1.0");
    -	}
    -
    -	/**
    -	 * Function: loadXmlDocument
    -	 * 
    -	 * Returns a new DOM document for the given URI.
    -	 */
    -	static function loadXmlDocument($uri)
    -	{
    -		$doc = mxUtils::createXmlDocument();
    -		$doc->load($uri);
    -		
    -		return $doc;
    -	}
    -
    -	/**
    -	 * Function: parseXml
    -	 * 
    -	 * Returns a new DOM document for the given XML string.
    -	 */
    -	static function parseXml($xml)
    -	{
    -		$doc = mxUtils::createXmlDocument();
    -		$doc->loadXML($xml);
    -		
    -		return $doc;
    -	}
    -
    -	/**
    -	 * Function getXml
    -	 *
    -	 * Returns the XML of the given node as a string.
    -	 *
    -	 * Parameters:
    -	 *
    -	 * node - DOM node to return the XML for.
    -	 * linefeed - Optional string that linefeeds are converted into. Default is
    -	 * &#xa;
    -	 */
    -	static function getXml($node, $linefeed = "&#xa;")
    -	{
    -		// SaveXML converts linefeeds to &#10; internally
    -		return str_replace("&#10;", "&#xa;", $node->ownerDocument->saveXML($node));
    -	}
    -	
    -	/**
    -	 * Function: evaluate
    -	 *
    -	 * Evaluates an expression to a class member. The range of supported
    -	 * expressions is limited to static class members with a dot-notation,
    -	 * such as mxEdgeStyle.ElbowConnector.
    -	 */
    -	static function evaluate($expression)
    -	{
    -		$pos = strpos($expression, ".");
    -		
    -		if ($pos !== false)
    -		{
    -			$class = substr($expression, 0, $pos);
    -			$field = substr($expression, $pos+1);
    -			$vars = get_class_vars($class);
    -			
    -			if (isset($vars[$field]))
    -			{
    -				return $vars[$field];
    -			}
    -		}
    -		
    -		return eval("return ".$expression.";");
    -	}
    -	
    -	/**
    -	 * Function: findNode
    -	 * 
    -	 * Returns the first node where attr equals value.
    -	 * This implementation does not use XPath.
    -	 */
    -	static function findNode($node, $attr, $value)
    -	{
    -		$tmp = $node->getAttribute($attr);
    -		
    -		if (isset($tmp) && $tmp == $value)
    -		{
    -			return $node;
    -		}
    -		
    -		$node = $node->firstChild;
    -		
    -		while (isset($node))
    -		{
    -			$result = mxUtils::findNode($node, $attr, $value);
    -			
    -			if (isset($result))
    -			{
    -				return $result;
    -			}
    -			
    -			$node = $node->nextSibling;
    -		}
    -		
    -		return null;
    -	}
    -
    -	/**
    -	 * Function: getTrueTypeFont
    -	 * 
    -	 * Returns the truetype font to be used to draw the text with the given style.
    -	 */
    -	 static function getTrueTypeFont($style)
    -	 {
    -	 	return mxUtils::getValue($style, mxConstants::$STYLE_FONTFAMILY,
    -			mxConstants::$DEFAULT_FONTFAMILY);
    -	 }
    -	
    -	/**
    -	 * Function: getTrueTypeFontSize
    -	 * 
    -	 * Returns the truetype font size to be used to draw the text with the
    -	 * given style. This returns the fontSize in the style of the default
    -	 * fontsize multiplied with <ttfSizeFactor>.
    -	 */
    -	 static function getTrueTypeFontSize($size)
    -	 {
    -	 	return $size * mxConstants::$TTF_SIZEFACTOR;
    -	 }
    -
    -	/**
    -	 * Function: getFixedFontSize
    -	 * 
    -	 * Returns the fixed font size for GD (1 t0 5) for the given font properties
    -	 */
    -	static function getFixedFontSize($fontSize, $fontFamily, $fontStyle=null)
    -	{
    -		$font = 5;
    -		
    -		if ($fontSize <= 12)
    -		{
    -			$font = 1;
    -		}
    -		else if ($fontSize <= 14)
    -		{
    -			$font = 2;
    -		}
    -		else if ($fontSize <= 16)
    -		{
    -			$font = 3;
    -		}
    -		else if ($fontSize <= 18)
    -		{
    -			$font = 4;
    -		}
    -		
    -		return $font;
    -	}
    -	
    -	/**
    -	 * Function: stackTrace
    -	 *
    -	 * Prints a simple stack trace in the error log.
    -	 */
    -	static function stackTrace()
    -	{
    -		$arr = debug_backtrace();
    -		
    -		foreach ($arr as $value)
    -		{
    -			error_log($value["class"].".".$value["function"]);
    -		}
    -	}
    -
    -}
    -?>
    diff --git a/php/src/view/mxCellState.php b/php/src/view/mxCellState.php
    deleted file mode 100644
    index 804d184bc..000000000
    --- a/php/src/view/mxCellState.php
    +++ /dev/null
    @@ -1,197 +0,0 @@
    -<?php
    -/**
    - * Copyright (c) 2006-2013, Gaudenz Alder
    - */
    -class mxCellState extends mxRectangle
    -{
    -	
    -	/**
    -	 * Class: mxCellState
    -	 * 
    -	 * Represents the current state of a cell in a given <mxGraphView>.
    -	 * 
    -	 * Variable: view
    -	 * 
    -	 * Reference to the enclosing <mxGraphView>.
    -	 */
    -	var $view;
    -	
    -	/**
    -	 * Variable: cell
    -	 *
    -	 * Reference to the <mxCell> that is represented by this state.
    -	 */
    -	var $cell;
    -	
    -	/**
    -	 * Variable: style
    -	 * 
    -	 * Contains an array of key, value pairs that represent the style of the
    -	 * cell.
    -	 */
    -	var $style;
    -
    -	/**
    -	 * Variable: invalid
    -	 * 
    -	 * Specifies if the state is invalid. Default is true.
    -	 */
    -	var $invalid = true;
    -
    -	/**
    -	 * Variable: origin
    -	 *
    -	 * <mxPoint> that holds the origin for all child cells. Default is a new
    -	 * empty <mxPoint>.
    -	 */
    -	var $origin;
    -	
    -	/**
    -	 * Variable: absolutePoints
    -	 * 
    -	 * Holds an array of <mxPoints> that represent the absolute points of an
    -	 * edge.
    -	 */
    -	var $absolutePoints;
    -
    -	/**
    -	 * Variable: absoluteOffset
    -	 *
    -	 * <mxPoint> that holds the absolute offset. For edges, this is the
    -	 * absolute coordinates of the label position. For vertices, this is the
    -	 * offset of the label relative to the top, left corner of the vertex. 
    -	 */
    -	var $absoluteOffset;
    -	
    -	/**
    -	 * Variable: terminalDistance
    -	 * 
    -	 * Caches the distance between the end points for an edge.
    -	 */
    -	var $terminalDistance;
    -	
    -	/**
    -	 * Variable: length
    -	 *
    -	 * Caches the length of an edge.
    -	 */
    -	var $length;
    -	
    -	/**
    -	 * Variable: segments
    -	 * 
    -	 * Array of numbers that represent the cached length of each segment of the
    -	 * edge.
    -	 */
    -	var $segments;
    -		
    -	/**
    -	 * Variable: labelBounds
    -	 * 
    -	 * Holds the rectangle which contains the label.
    -	 */
    -	var $labelBounds;
    -	
    -	/**
    -	 * Variable: boundingBox
    -	 * 
    -	 * Holds the largest rectangle which contains all rendering for this cell.
    -	 */
    -	var $boundingBox;
    -
    -	/**
    -	 * Constructor: mxCellState
    -	 * 
    -	 * Constructs a new object that represents the current state of the given
    -	 * cell in the specified view.
    -	 * 
    -	 * Parameters:
    -	 * 
    -	 * view - <mxGraphView> that contains the state.
    -	 * cell - <mxCell> that this state represents.
    -	 * style - Array of key, value pairs that constitute the style.
    -	 */
    -	function mxCellState($view = null, $cell = null, $style = null)
    -	{
    -		$this->view = $view;
    -		$this->cell = $cell;
    -		$this->style = $style;
    -		
    -		$this->origin = new mxPoint();
    -		$this->absoluteOffset = new mxPoint();
    -	}
    -
    -	/**
    -	 * Function: getPerimeterBounds
    -	 * 
    -	 * Returns the <mxRectangle> that should be used as the perimeter of the
    -	 * cell.
    -	 */
    -	function getPerimeterBounds($border = 0)
    -	{
    -		$bounds = new mxRectangle($this->x, $this->y, $this->width, $this->height);
    -		
    -		if ($border != 0)
    -		{
    -			$bounds->grow($border);
    -		}
    -		
    -		return $bounds;
    -	}
    -	
    -	/**
    -	 * Function: copy
    -	 *
    -	 * Returns a copy of this state where all members are deeply cloned
    -	 * except the view and cell references, which are copied with no
    -	 * cloning to the new instance.
    -	 */
    -	function copy()
    -	{
    -	 	$clone = new mxCellState($this->view, $this->cell, $this->style);
    -
    -		// Clones the absolute points
    -		if ($this->absolutePoints != null)
    -		{
    -			$clone->absolutePoints = array();
    -			
    -			for ($i = 0; $i < sizeof($this->absolutePoints); $i++)
    -			{
    -				array_push($clone->absolutePoints, $this->absolutePoints[$i]->copy());
    -			}
    -		}
    -
    -		if ($this->origin != null)
    -		{
    -			$clone->origin = $this->origin->copy();
    -		}
    -
    -		if ($this->absoluteOffset != null)
    -		{
    -			$clone->absoluteOffset = $this->absoluteOffset->copy();
    -		}
    -	
    -		if ($this->labelBounds != null)
    -		{
    -			$clone->labelBounds = $this->labelBounds->copy();
    -		}
    -		
    -		if ($this->boundingBox != null)
    -		{
    -			$clone->boundingBox = $this->boundingBox->copy();
    -		}
    -
    -		$clone->terminalDistance = $this->terminalDistance;
    -		$clone->segments = $this->segments;
    -		$clone->length = $this->length;
    -		$clone->x = $this->x;
    -		$clone->y = $this->y;
    -		$clone->width = $this->width;
    -		$clone->height = $this->height;
    -		
    -		return $clone;
    -	}
    -
    -}
    -
    -?>
    diff --git a/php/src/view/mxConnectionConstraint.php b/php/src/view/mxConnectionConstraint.php
    deleted file mode 100644
    index 5b3511c27..000000000
    --- a/php/src/view/mxConnectionConstraint.php
    +++ /dev/null
    @@ -1,49 +0,0 @@
    -<?php
    -/**
    - * Copyright (c) 2006-2013, Gaudenz Alder
    - */
    -class mxConnectionConstraint
    -{
    -	
    -	/**
    -	 * Class: mxConnectionConstraint
    -	 * 
    -	 * Defines an object that contains the constraints about how to connect one
    - 	 * side of an edge to its terminal.
    -	 * 
    -	 * Variable: point
    -	 * 
    -	 * <mxPoint> that specifies the fixed location of the connection point.
    -	 */
    -	var $point;
    -	
    -	/**
    -	 * Variable: perimeter
    -	 *
    -	 * Boolean that specifies if the point should be projected onto the perimeter
    -	 * of the terminal.
    -	 */
    -	var $perimeter;
    -
    -	/**
    -	 * Constructor: mxConnectionConstraint
    -	 * 
    -	 * Constructs a new connection constraint for the given point and boolean
    -	 * arguments.
    -	 * 
    -	 * Parameters:
    -	 * 
    -	 * point - Optional <mxPoint> that specifies the fixed location of the point
    -	 * in relative coordinates. Default is null.
    -	 * perimeter - Optional boolean that specifies if the fixed point should be
    -	 * projected onto the perimeter of the terminal. Default is true.
    -	 */
    -	function mxConnectionConstraint($point = null, $perimeter = true)
    -	{
    -		$this->point = $point;
    -		$this->perimeter = $perimeter;
    -	}
    -
    -}
    -
    -?>
    diff --git a/php/src/view/mxEdgeStyle.php b/php/src/view/mxEdgeStyle.php
    deleted file mode 100644
    index 52687fd74..000000000
    --- a/php/src/view/mxEdgeStyle.php
    +++ /dev/null
    @@ -1,564 +0,0 @@
    -<?php
    -/**
    - * Copyright (c) 2006-2013, Gaudenz Alder
    - */
    -interface mxEdgeStyleFunction
    -{
    -
    -	/**
    -	 * Interface: mxEdgeStyleFunction
    -	 * 
    -	 * Defines the requirements for an edge style function.
    -	 * 
    -	 * Function: apply
    -	 * 
    -	 * Implements an edge style function. At the time the function is called, the result
    -	 * array contains a placeholder (null) for the first absolute point,
    -	 * that is, the point where the edge and source terminal are connected.
    -	 * The implementation of the style then adds all intermediate waypoints
    -	 * except for the last point, that is, the connection point between the
    -	 * edge and the target terminal. The first ant the last point in the
    -	 * result array are then replaced with mxPoints that take into account
    -	 * the terminal's perimeter and next point on the edge.
    -	 *
    -	 * Parameters:
    -	 * 
    -	 * state - <mxCellState> that represents the edge to be updated.
    -	 * source - <mxCellState> that represents the source terminal.
    -	 * target - <mxCellState> that represents the target terminal.
    -	 * points - List of relative control points.
    -	 * result - Array of <mxPoints> that represent the actual points of the
    -	 * edge.
    -	 */
    -	public function apply($state, $source, $target, $points, &$result);
    -
    -}
    -
    -/**
    - * Class: mxEntityRelation
    - * 
    - * Implements an entity relation style for edges (as used in database
    - * schema diagrams).  At the time the function is called, the result
    - * array contains a placeholder (null) for the first absolute point,
    - * that is, the point where the edge and source terminal are connected.
    - * The implementation of the style then adds all intermediate waypoints
    - * except for the last point, that is, the connection point between the
    - * edge and the target terminal. The first ant the last point in the
    - * result array are then replaced with mxPoints that take into account
    - * the terminal's perimeter and next point on the edge.
    - */
    -class mxEntityRelation implements mxEdgeStyleFunction
    -{
    -
    -	/**
    -	 * 
    -	 */
    -	public function apply($state, $source, $target, $points, &$result)
    -	{
    -		$view = $state->view;
    -		$graph = $view->graph;
    -		$segment = mxUtils::getValue($state->style,
    -			mxConstants::$STYLE_SEGMENT,
    -			mxConstants::$ENTITY_SEGMENT) * $view->scale;
    -
    -		$pts = $state->absolutePoints;
    -		$p0 = $pts[0];
    -		$pe = $pts[sizeof($pts) - 1];
    -
    -	 	$isSourceLeft = false;
    -	 	
    -		if (isset($p0))
    -		{
    -			$source = new mxCellState();
    -			$source->x = $p0->x;
    -			$source->y = $p0->y;
    -		}
    -	 	else if (isset($source))
    -	 	{
    -		 	$sourceGeometry = $graph->getCellGeometry($source->cell);	 		
    -	 	
    -		 	if ($sourceGeometry->relative)
    -		 	{
    -		 		$isSourceLeft = $sourceGeometry->x <= 0.5;
    -		 	}
    -		 	else if ($target != null)
    -		 	{
    -		 		$isSourceLeft = $target->x + $target->width < $source->x;
    -		 	}
    -		}
    -	 	
    -	 	$isTargetLeft = true;
    -	 	
    -		if (isset($pe))
    -		{
    -			$target = new mxCellState();
    -			$target->x = $pe->x;
    -			$target->y = $pe->y;
    -		}
    -	 	else if (isset($target))
    -	 	{
    -		 	$targetGeometry = $graph->getCellGeometry($target->cell);	 		
    -	 	
    -		 	if ($targetGeometry->relative)
    -		 	{
    -		 		$isTargetLeft = $targetGeometry->x <= 0.5;
    -		 	}
    -		 	else if ($source != null)
    -		 	{
    -		 		$isTargetLeft = $source->x + $source->width < $target->x;
    -		 	}
    -		}
    -	 	
    -		if (isset($source) && isset($target))
    -		{
    -			$x0 = ($isSourceLeft) ? $source->x : $source->x + $source->width;
    -			$y0 = $view->getRoutingCenterY($source);
    -			
    -			$xe = ($isTargetLeft) ? $target->x : $target->x + $target->width;
    -			$ye = $view->getRoutingCenterY($target);
    -	
    -			$seg = $segment;
    -			
    -			$dx = ($isSourceLeft) ? -$seg : $seg;
    -			$dep = new mxPoint($x0+$dx, $y0);
    -			array_push($result, $dep);
    -					
    -			$dx = ($isTargetLeft) ? -$seg : $seg;
    -			$arr = new mxPoint($xe+$dx, $ye);
    -	
    -			// Adds intermediate points if both go out on same side
    -			if ($isSourceLeft == $isTargetLeft)
    -			{
    -				$x = ($isSourceLeft) ?
    -					min($x0, $xe)-$segment :
    -					max($x0, $xe)+$segment;
    -				array_push($result, new mxPoint($x, $y0));
    -				array_push($result, new mxPoint($x, $ye));
    -			}
    -			else if (($dep->x < $arr->x) == $isSourceLeft)
    -			{
    -				$midY = $y0 + ($ye - $y0) / 2;
    -				array_push($result, new mxPoint($dep->x, $midY));
    -				array_push($result, new mxPoint($arr->x, $midY));
    -			}
    -			
    -			array_push($result, $arr);
    -		}
    -	}
    -
    -}
    -
    -/**
    - * Class: mxLoop
    - * 
    - * Implements a self-reference, aka. loop.
    - */
    -class mxLoop implements mxEdgeStyleFunction
    -{
    -
    -	/**
    -	 * 
    -	 */
    -	public function apply($state, $source, $target, $points, &$result)
    -	{
    -		if ($source != null)
    -		{
    -			$view = $state->view;
    -			$graph = $view->graph;
    -			$pt = ($points != null && sizeof($points) > 0) ? $points[0] : null;
    -
    -			if ($pt != null)
    -			{
    -				$pt = $view->transformControlPoint($state, $pt);
    -					
    -				if (mxUtils::contains($source, $pt->x, $pt->y))
    -				{
    -					$pt = null;
    -				}
    -			}
    -		
    -			$x = 0;
    -			$dx = 0;
    -			$y = 0;
    -			$dy = 0;
    -			
    -			$seg = mxUtils::getValue($state->style,
    -				mxConstants::$STYLE_SEGMENT, $graph->gridSize)
    -				* $view->scale;
    -			$dir = mxUtils::getValue($state->style,
    -				mxConstants::$STYLE_DIRECTION,
    -				mxConstants::$DIRECTION_WEST);
    -
    -			if ($dir == mxConstants::$DIRECTION_NORTH ||
    -				$dir == mxConstants::$DIRECTION_SOUTH)
    -			{
    -				$x = $view->getRoutingCenterX($source);
    -				$dx = $seg;
    -			}
    -			else
    -			{
    -				$y = $view->getRoutingCenterY($source);
    -				$dy = $seg;
    -			}
    -			
    -			if ($pt == null ||
    -				$pt->x < $source->x ||
    -				$pt->x > $source->x + $source->width)
    -			{
    -				if ($pt != null)
    -				{
    -					$x = $pt->x;
    -					$dy = max(abs($y - $pt->y), $dy);
    -				}
    -				else
    -				{
    -					if ($dir == mxConstants::$DIRECTION_NORTH)
    -					{
    -						$y = $source->y - 2 * $dx;
    -					}
    -					else if ($dir == mxConstants::$DIRECTION_SOUTH)
    -					{
    -						$y = $source->y + $source->height + 2 * $dx;
    -					}
    -					else if ($dir == mxConstants::$DIRECTION_EAST)
    -					{
    -						$x = $source->x - 2 * $dy;
    -					}
    -					else
    -					{
    -						$x = $source->x + $source->width + 2 * $dy;
    -					}
    -				}
    -			}
    -			else if ($pt != null)
    -			{
    -				$x = $view->getRoutingCenterX($source);
    -				$dx = max(abs($x - $pt->x), $dy);
    -				$y = $pt->y;
    -				$dy = 0;
    -			}
    -			
    -			array_push($result, new mxPoint($x-$dx, $y-$dy));
    -			array_push($result, new mxPoint($x+$dx, $y+$dy));
    -		}
    -	}
    -	
    -}
    -
    -/**
    - * Class: mxElbowConnector
    - * 
    - * Uses either <SideToSide> or <TopToBottom> depending on the horizontal
    - * flag in the cell style. <SideToSide> is used if horizontal is true or
    - * unspecified. See <EntityRelation> for a description of the
    - * parameters.
    - */
    -class mxElbowConnector implements mxEdgeStyleFunction
    -{
    -
    -	/**
    -	 * 
    -	 */
    -	public function apply($state, $source, $target, $points, &$result)
    -	{
    -		$pt = ($points != null && sizeof($points) > 0) ? $points[0] : null;
    -
    -		$vertical = false;
    -		$horizontal = false;
    -		
    -		if ($source != null && $target != null)
    -		{
    -			if ($pt != null)
    -			{
    -				$left = min($source->x, $target->x);
    -				$right = max($source->x + $source->width,
    -					$target->x + $target->width);
    -	
    -				$top = min($source->y, $target->y);
    -				$bottom = max($source->y + $source->height,
    -					$target->y + $target->height);
    -
    -				$pt = $state->view->transformControlPoint($state, $pt);
    -				
    -				$vertical = $pt->y < $top || $pt->y > $bottom;
    -				$horizontal = $pt->x < $left || $pt->x > $right;
    -			}
    -			else
    -			{
    -				$left = max($source->x, $target->x);
    -				$right = min($source->x + $source->width,
    -					$target->x + $target->width);
    -					
    -				$vertical = $left == $right;
    -				
    -				if (!$vertical)
    -				{
    -					$top = max($source->y, $target->y);
    -					$bottom = min($source->y + $source->height,
    -						$target->y + $target->height);
    -						
    -					$horizontal = $top == $bottom;
    -				}
    -			}
    -		}
    -
    -		if (!$horizontal && ($vertical ||
    -			mxUtils::getValue($state->style, mxConstants::$STYLE_ELBOW) == mxConstants::$ELBOW_VERTICAL))
    -		{
    -			mxEdgeStyle::$TopToBottom->apply($state, $source, $target, $points, $result);
    -		}
    -		else
    -		{
    -			mxEdgeStyle::$SideToSide->apply($state, $source, $target, $points, $result);
    -		}
    -	}
    -
    -}
    -
    -/**
    - * Class: mxSideToSide
    - * 
    - * Implements a vertical elbow edge. See <EntityRelation> for a description
    - * of the parameters.
    - */
    -class mxSideToSide implements mxEdgeStyleFunction
    -{
    -
    -	/**
    -	 * 
    -	 */
    -	public function apply($state, $source, $target, $points, &$result)
    -	{
    -		$view = $state->view;
    -		$pt = ($points != null && sizeof($points) > 0) ? $points[0] : null;
    -		$pts = $state->absolutePoints;
    -		$p0 = $pts[0];
    -		$pe = $pts[sizeof($pts) - 1];
    -		
    -		if ($pt != null)
    -		{
    -			$pt = $view->transformControlPoint($state, $pt);
    -		}
    -
    -		if (isset($p0))
    -		{
    -			$source = new mxCellState();
    -			$source->x = $p0->x;
    -			$source->y = $p0->y;
    -		}
    -		
    -		if (isset($pe))
    -		{
    -			$target = new mxCellState();
    -			$target->x = $pe->x;
    -			$target->y = $pe->y;
    -		}
    -
    -		if (isset($source) && isset($target))
    -		{
    -			$l = max($source->x, $target->x);
    -			$r = min($source->x+$source->width, $target->x+$target->width);
    -	
    -			$x = ($pt != null) ? $pt->x : $r + ($l-$r)/2;
    -			
    -			$y1 = $view->getRoutingCenterY($source);
    -			$y2 = $view->getRoutingCenterY($target);
    -			
    -			if ($pt != null)
    -			{
    -				if ($pt->y >= $source->y &&
    -					$pt->y <= $source->y + $source->height)
    -				{
    -					$y1 = $pt->y;
    -				}
    -				
    -				if ($pt->y >= $target->y &&
    -					$pt->y <= $target->y + $target->height)
    -				{
    -					$y2 = $pt->y;
    -				}
    -			}
    -			
    -			if (!mxUtils::contains($target, $x, $y1) &&
    -				!mxUtils::contains($source, $x, $y1))
    -			{
    -				array_push($result, new mxPoint($x, $y1));
    -			}
    -			
    -			if (!mxUtils::contains($target, $x, $y2) &&
    -				!mxUtils::contains($source, $x, $y2))
    -			{
    -				array_push($result, new mxPoint($x, $y2));
    -			}
    -	
    -			if (sizeof($result) == 1)
    -			{
    -				if (isset($pt))
    -				{
    -					array_push($result, new mxPoint($x, $pt->y));
    -				}
    -				else
    -				{
    -					$t = max($source->y, $target->y);
    -					$b = min($source->y+$source->height, $target->y+$target->height);
    -					
    -					array_push($result, new mxPoint($x, $t + ($b - $t) / 2));
    -				}
    -			}
    -		}
    -	}
    -	
    -}
    -	
    -/**
    - * Class: mxTopToBottom
    - * 
    - * Implements a horizontal elbow edge. See <EntityRelation> for a
    - * description of the parameters.
    - */
    -class mxTopToBottom implements mxEdgeStyleFunction
    -{
    -
    -	/**
    -	 * 
    -	 */
    -	public function apply($state, $source, $target, $points, &$result)
    -	{
    -		$view = $state->view;
    -		$pt = ($points != null && sizeof($points) > 0) ? $points[0] : null;
    -		$pts = $state->absolutePoints;
    -		$p0 = $pts[0];
    -		$pe = $pts[sizeof($pts) - 1];
    -		
    -		if ($pt != null)
    -		{
    -			$pt = $view->transformControlPoint($state, $pt);
    -		}
    -
    -		if (isset($p0))
    -		{
    -			$source = new mxCellState();
    -			$source->x = $p0->x;
    -			$source->y = $p0->y;
    -		}
    -		
    -		if (isset($pe))
    -		{
    -			$target = new mxCellState();
    -			$target->x = $pe->x;
    -			$target->y = $pe->y;
    -		}
    -
    -		if (isset($source) && isset($target))
    -		{
    -			$t = max($source->y, $target->y);
    -			$b = min($source->y+$source->height, $target->y+$target->height);
    -	
    -			$x = $view->getRoutingCenterX($source);
    -			
    -			if ($pt != null && 
    -				$pt->x >= $source->x &&
    -				$pt->x <= $source->x + $source->width)
    -			{
    -				$x = $pt->x;
    -			}
    -			
    -			$y = ($pt != null) ? $pt->y : $b + ($t - $b) / 2;
    -			
    -			if (!mxUtils::contains($target, $x, $y) &&
    -				!mxUtils::contains($source, $x, $y))
    -			{
    -				array_push($result, new mxPoint($x, $y));
    -			}
    -			
    -			if ($pt != null &&
    -				$pt->x >= $target->x &&
    -				$pt->x <= $target->x + $target->width)
    -			{
    -				$x = $pt->x;
    -			}
    -			else
    -			{
    -				$x = $view->getRoutingCenterX($target);
    -			}
    -			
    -			if (!mxUtils::contains($target, $x, $y) &&
    -				!mxUtils::contains($source, $x, $y))
    -			{
    -				array_push($result, new mxPoint($x, $y));
    -			}
    -	
    -			if (sizeof($result) == 1)
    -			{
    -				if ($pt == null)
    -				{
    -					array_push($result, new mxPoint($x, $y));
    -				}
    -				else
    -				{
    -					$l = max($source->x, $target->x);
    -					$r = min($source->x + $source->width, $target->x + $target->width);
    -					
    -					array_push($result, new mxPoint($r + ($r - $l) / 2, $y));
    -				}
    -			}
    -		}
    -	}
    -	
    -}
    -
    -/**	
    - *
    - * Class: mxEdgeStyle
    - * 
    - * Provides various edge styles to be used as the values for
    - * <mxConstants.STYLE_EDGE> in a cell style.
    - */
    -class mxEdgeStyle
    -{
    -
    -	/**
    -	 * Variable: EntityRelation
    -	 *
    -	 * Provides an entity relation style for edges (as used in database
    -	 * schema diagrams).
    -	 */
    -	public static $EntityRelation;
    -
    -	/**
    -	 * Variable: Loop
    -	 *
    -	 * Provides a self-reference, aka. loop.
    -	 */
    -	public static $Loop;
    -
    -	/**
    -	 * Variable: ElbowConnector
    -	 *
    -	 * Provides an elbow connector.
    -	 */
    -	public static $ElbowConnector;
    -	
    -	/**
    -	 * Variable: SideToSide
    -	 *
    -	 * Provides a side to side connector.
    -	 */
    -	public static $SideToSide;
    -
    -	/**
    -	 * Variable: TopToBottom
    -	 *
    -	 * Provides a top to bottom connector.
    -	 */
    -	public static $TopToBottom;
    -
    -}
    -
    -// Instanciates the declared static members of the above class
    -mxEdgeStyle::$EntityRelation = new mxEntityRelation();
    -mxEdgeStyle::$Loop = new mxLoop();
    -mxEdgeStyle::$ElbowConnector = new mxElbowConnector();
    -mxEdgeStyle::$SideToSide = new mxSideToSide();
    -mxEdgeStyle::$TopToBottom = new mxTopToBottom();
    -?>
    diff --git a/php/src/view/mxGraph.php b/php/src/view/mxGraph.php
    deleted file mode 100644
    index 8f014ca8d..000000000
    --- a/php/src/view/mxGraph.php
    +++ /dev/null
    @@ -1,899 +0,0 @@
    -<?php
    -/**
    - * Copyright (c) 2006-2013, Gaudenz Alder
    - */
    -
    -class mxGraph
    -{
    -	
    -	/**
    -	 * Class: mxGraph
    -	 *
    -	 * Implements a graph component.
    -	 * 
    -	 * Variable: model
    -	 *
    -	 * Holds the <mxGraphModel>.
    -	 */
    -	var $model;
    -		
    -	/**
    -	 * Variable: stylesheet
    -	 *
    -	 * Holds the <mxStylesheet>.
    -	 */
    -	var $stylesheet;
    -	
    -	/**
    -	 * Variable: view
    -	 *
    -	 * Holds the <mxGraphView>.
    -	 */
    -	var $view;
    -	
    -	/**
    -	 * Variable: gridSize
    -	 * 
    -	 * Specifies the grid size. Default is 10.
    -	 */
    -	var $gridSize = 10;
    -	
    -	/**
    -	 * Variable: labelsVisible
    -	 * 
    -	 * Specifies if labels should be visible. This is used in
    -	 * <getLabel>. Default is true.
    -	 */
    -	var $labelsVisible = true;
    -
    -	/**
    -	 * Variable: defaultLoopStyle
    -	 * 
    -	 * <mxEdgeStyle> to be used for loops. This is a fallback for
    -	 * loops if the <mxConstants.STYLE_LOOP> is undefined. Default is
    -	 * <mxEdgeStyle.Loop>.
    -	 */
    -	var $defaultLoopStyle = "mxEdgeStyle.Loop";
    -
    -	/**
    -	 * Variable: imageBundles
    -	 *
    -	 * Holds the list of image bundles.
    -	 */
    -	protected $imageBundles = array();
    -	
    -	/**
    -	 * Constructor: mxGraphModel
    -	 *
    -	 * Constructs a new graph model using the specified
    -	 * root cell.
    -	 */
    -	function mxGraph($model = null, $stylesheet = null)
    -	{
    -		$this->model = ($model != null) ? $model : new mxGraphModel();
    -		$this->stylesheet = ($stylesheet != null) ? $stylesheet : $this->createStylesheet();
    -		$this->view = $this->createGraphView();
    -		$this->view->revalidate();
    -		
    -		$this->model->addListener(mxEvent::$GRAPH_MODEL_CHANGED, $this);
    -	}
    -		
    -	/**
    -	 * Function: createStylesheet
    -	 * 
    -	 * Creates a new <mxStylesheet> to be used in this graph.
    -	 */
    -	function createStylesheet()
    -	{
    -		return new mxStylesheet();
    -	}
    -	
    -	/**
    -	 * Function: createGraphView
    -	 * 
    -	 * Creates a new <mxGraphView> to be used in this graph.
    -	 */
    -	function createGraphView()
    -	{
    -		return new mxGraphView($this);
    -	}
    -
    -	/**
    -	 * Function: getModel
    -	 * 
    -	 * Returns the <mxGraphModel> that contains the cells.
    -	 */
    -	function getModel()
    -	{
    -		return $this->model;
    -	}
    -	
    -	/**
    -	 * Function: getStylesheet
    -	 * 
    -	 * Returns the <mxStylesheet> that defines the style.
    -	 */
    -	function getStylesheet()
    -	{
    -		return $this->stylesheet;
    -	}
    -	
    -	/**
    -	 * Function: getView
    -	 * 
    -	 * Returns the <mxGraphView> that contains the <mxCellStates>.
    -	 */
    -	function getView()
    -	{
    -		return $this->view;
    -	}
    -
    -	/**
    -	 * Function: getDefaultParent
    -	 * 
    -	 * Returns the first child child of <mxGraphModel.root>. The value returned
    -	 * by this function should be used as the parent for new cells (aka default
    -	 * layer).
    -	 */
    -	function getDefaultParent()
    -	{
    -		$model = $this->model;
    -		
    -		return $model->getChildAt($model->getRoot(), 0);
    -	}
    -
    -	/**
    -	 * Function: convertValueToString
    -	 * 
    -	 * Returns the textual representation for the given cell. This
    -	 * implementation returns the nodename or string-representation of the user
    -	 * object.
    -	 */
    -	function convertValueToString($cell)
    -	{
    -		$result = $this->model->getValue($cell);
    -	 	
    - 		return ($result != null) ? $result : "";
    -	}
    -
    -	/**
    -	 * Function: getLabel
    -	 * 
    -	 * Returns a string or DOM node that represents the label for the given
    -	 * cell. This implementation uses <convertValueToString> if <labelsVisible>
    -	 * is true. Otherwise it returns an empty string.
    -	 */
    -	function getLabel($cell)
    -	{
    -		$result = "";
    -		
    -		if ($cell != null)
    -		{
    -			$state = $this->view->getState($cell);
    -			$style = ($state != null) ?
    -				$state->style : $this->getCellStyle($cell);
    -			
    -			if ($this->labelsVisible &&
    -				!mxUtils::getValue($style, mxConstants::$STYLE_NOLABEL, false))
    -			{
    -				$result = $this->convertValueToString($cell);
    -			}
    -		}
    -		
    -		return $result;
    -	}
    -
    -	/**
    -	 * Function: getChildOffsetForCell
    -	 * 
    -	 * Returns the offset to be used for the cells inside the given cell. The
    -	 * root and layer cells may be identified using <mxGraphModel.isRoot> and
    -	 * <mxGraphModel.isLayer>. For all other current roots, the
    -	 * <mxGraphView.currentRoot> field points to the respective cell, so that
    -	 * the following holds: cell == this.view.currentRoot. This implementation
    -	 * returns null.
    -	 * 
    -	 * Parameters:
    -	 * 
    -	 * cell - <mxCell> whose offset should be returned.
    -	 */
    -	function getChildOffsetForCell($cell)
    -	{
    -		return null;
    -	}
    -
    -	/**
    -	 * Function: isOrthogonal
    -	 * 
    -	 * Returns true if perimeter points should be computed such that the
    -	 * resulting edge has only horizontal or vertical segments.
    -	 * 
    -	 * Parameters:
    -	 * 
    -	 * edge - <mxCellState> that represents the edge.
    -	 */
    -	function isOrthogonal($edge)
    -	{
    -		if (isset($edge->style[mxConstants::$STYLE_ORTHOGONAL]))
    -		{
    -			return mxUtils::getValue($edge->style, mxConstants::$STYLE_ORTHOGONAL);
    -		}
    -
    -		$edgeStyle = $this->view->getEdgeStyle($edge, null, null, null);
    -
    -		return $edgeStyle === mxEdgeStyle::$ElbowConnector ||
    -			$edgeStyle === mxEdgeStyle::$SideToSide ||
    -			$edgeStyle === mxEdgeStyle::$TopToBottom ||
    -			$edgeStyle === mxEdgeStyle::$EntityRelation;
    -	}
    -	
    -	/**
    -	 * Function: isCellVisible
    -	 *
    -	 * Returns true if the given cell is visible.
    -	 */
    -	function isCellVisible($cell)
    -	{
    -		return $this->model->isVisible($cell);
    -	}
    -	
    -	/**
    -	 * Function: isCellCollapsed
    -	 *
    -	 * Returns true if the given cell is collapsed.
    -	 */
    -	function isCellCollapsed($cell)
    -	{
    -		return $this->model->isCollapsed($cell);
    -	}
    -	
    -	/**
    -	 * Function: isCellCollapsed
    -	 *
    -	 * Returns true if the given cell is connectable.
    -	 */
    -	function isCellConnectable($cell)
    -	{
    -		return $this->model->isConnectable($cell);
    -	}
    -
    -	/**
    -	 * Function: getCellGeometry
    -	 *
    -	 * Returns the <mxGeometry> for the given <mxCell>.
    -	 */
    -	function getCellGeometry($cell)
    -	{
    -		return $this->model->getGeometry($cell);
    -	}
    -	
    -	/**
    -	 * Function: getCellStyle
    -	 */
    -	function getCellStyle($cell)
    -	{
    -		$style = ($this->model->isVertex($cell)) ?
    -			$this->stylesheet->getDefaultVertexStyle() :
    -			$this->stylesheet->getDefaultEdgeStyle();
    -
    -		$name = $this->model->getStyle($cell);
    -		
    -		if ($name != null)
    -		{
    -			$style = $this->postProcessCellStyle($this->stylesheet->getCellStyle($name, $style));
    -		}
    -		
    -		if ($style == null)
    -		{
    -			$style = array();
    -		}
    -		
    -		return $style;
    -	}
    -	
    -	/**
    -	 * Function: postProcessCellStyle
    -	 * 
    -	 * Tries to resolve the value for the image style in the image bundles and
    -	 * turns short data URIs as defined in mxImageBundle to data URIs as
    -	 * defined in RFC 2397 of the IETF.
    -	 */
    -	function postProcessCellStyle($style)
    -	{
    -		if (isset($style) && array_key_exists(mxConstants::$STYLE_IMAGE, $style))
    -		{
    -			$key = $style[mxConstants::$STYLE_IMAGE];
    -			$image = $this->getImageFromBundles($key);
    -
    -			if (isset($image))
    -			{
    -				$style[mxConstants::$STYLE_IMAGE] = $image;
    -			}
    -			else
    -			{
    -				$image = $key;
    -			}
    -			
    -			// Converts short data uris to normal data uris
    -			if (isset($image) && substr($image, 0, 11) == "data:image/")
    -			{
    -				$comma = strpos($image, ",");
    -				
    -				if ($comma !== false)
    -				{
    -					$image = substr($image, 0, $comma).";base64,".
    -						substr($image, $comma + 1);
    -				}
    -				
    -				$style[mxConstants::$STYLE_IMAGE] = $image;
    -			}
    -		}
    -
    -		return $style;
    -	}
    -
    -	/**
    -	 * Function: setCellStyles
    -	 * 
    -	 * Sets the key to value in the styles of the given cells. This will modify
    -	 * the existing cell styles in-place and override any existing assignment
    -	 * for the given key. If no cells are specified, then the selection cells
    -	 * are changed. If no value is specified, then the respective key is
    -	 * removed from the styles.
    -	 * 
    -	 * Parameters:
    -	 * 
    -	 * key - String representing the key to be assigned.
    -	 * value - String representing the new value for the key.
    -	 * cells - Array of <mxCells> to change the style for.
    -	 */
    -	function setCellStyles($key, $value, $cells)
    -	{
    -		mxUtils::setCellStyles($this->model, $cells, $key, $value);
    -	}
    -	/**
    -	 * Function: addBundle
    -	 * 
    -	 * Adds the specified <mxImageBundle>.
    -	 */
    -	function addImageBundle($bundle)
    -	{
    -		array_push($this->imageBundles, $bundle);
    -	}
    -	
    -	/**
    -	 * Function: removeImageBundle
    -	 * 
    -	 * Removes the specified <mxImageBundle>.
    -	 */
    -	function removeImageBundle($bundle)
    -	{
    -		$tmp = array();
    -		
    -		for ($i = 0; $i < sizeof($this->imageBundles); $i++)
    -		{
    -			if ($this->imageBundles[$i] !== $bundle)
    -			{
    -				array_push($tmp, $this->imageBundles[$i]);
    -			}
    -		}
    -		
    -		$this->imageBundles = $tmp;
    -	}
    -	
    -	/**
    -	 * Function: getImageFromBundles
    -	 * 
    -	 * Searches all <imageBundles> for the specified key and returns the value
    -	 * for the first match or null if the key is not found.
    -	 */
    -	function getImageFromBundles($key)
    -	{
    -		if (isset($key))
    -		{
    -			for ($i = 0; $i < sizeof($this->imageBundles); $i++)
    -			{
    -				$image = $this->imageBundles[$i]->getImage($key);
    -				
    -				if (isset($image))
    -				{
    -					return $image;
    -				}
    -			}
    -		}
    -		
    -		return null;
    -	}
    -		
    -	/**
    -	 * Function: getImageBundles
    -	 * 
    -	 * Returns the <imageBundles>.
    -	 */
    -	function getImageBundles()
    -	{
    -		return $this->imageBundles;
    -	}
    -	
    -	/**
    -	 * Function: setImageBundles
    -	 * 
    -	 * Sets the <imageBundles>.
    -	 */
    -	function setImageBundles($value)
    -	{
    -		$this->imageBundles = $value;
    -	}
    -	
    -	/**
    -	 * Function: insertVertex
    -	 * 
    -	 * Adds a new vertex into the given parent <mxCell> using value as the user
    -	 * object and the given coordinates as the <mxGeometry> of the new vertex.
    -	 * The id and style are used for the respective properties of the new
    -	 * <mxCell>, which is returned.
    -	 *
    -	 * Parameters:
    -	 * 
    -	 * parent - <mxCell> that specifies the parent of the new vertex.
    -	 * id - Optional string that defines the Id of the new vertex.
    -	 * value - Object to be used as the user object.
    -	 * x - Integer that defines the x coordinate of the vertex.
    -	 * y - Integer that defines the y coordinate of the vertex.
    -	 * width - Integer that defines the width of the vertex.
    -	 * height - Integer that defines the height of the vertex.
    -	 * style - Optional string that defines the cell style.
    -	 * relative - Optional boolean that specifies if the geometry is relative.
    -	 * Default is false.
    -	 */
    -	function insertVertex($parent, $id = null, $value = null, $x = 0, $y = 0,
    -		$width = 1, $height = 1, $style = null, $relative = false)
    -	{
    -		if ($parent == null)
    -		{
    -			$parent = $this->getDefaultParent();
    -		}
    -		
    -		$vertex = $this->createVertex($parent, $id, $value, $x, $y, $width, $height, $style, $relative);
    -		$index = $this->model->getChildCount($parent);
    -		
    -		return $this->model->add($parent, $vertex, $index);
    -	}
    -			
    -	/**
    -	 * Function: createVertex
    -	 * 
    -	 * Creates the vertex to be used in insertVertex.
    -	 */
    -	function createVertex($parent, $id = null, $value = null, $x = 0, $y = 0,
    -		$width = 1, $height = 1, $style = null, $relative = false)
    -	{
    -		$geometry = new mxGeometry($x, $y, $width, $height);
    -		$geometry->relative = $relative;
    -		
    -		$vertex = new mxCell($value, $geometry, $style);
    -		$vertex->setId($id);
    -		$vertex->setVertex(true);
    -		
    -		return $vertex;
    -	}
    -
    -	/**
    -	 * Function: insertEdge
    -	 * 
    -	 * Adds a new edge into the given parent <mxCell> using value as the user
    -	 * object and the given source and target as the terminals of the new edge.
    -	 * The id and style are used for the respective properties of the new
    -	 * <mxCell>, which is returned.
    -	 *
    -	 * Parameters:
    -	 * 
    -	 * parent - <mxCell> that specifies the parent of the new edge.
    -	 * id - Optional string that defines the Id of the new edge.
    -	 * value - JavaScript object to be used as the user object.
    -	 * source - <mxCell> that defines the source of the edge.
    -	 * target - <mxCell> that defines the target of the edge.
    -	 * style - Optional string that defines the cell style.
    -	 */
    -	function insertEdge($parent, $id = null, $value = null,
    -		$source = null, $target = null, $style = null)
    -	{
    -		if ($parent == null)
    -		{
    -			$parent = $this->getDefaultParent();
    -		}
    -
    -		$edge = $this->createEdge($parent, $id, $value, $source, $target, $style);
    -		
    -		// Appends the edge to the given parent and sets
    -		// the edge terminals in a single transaction
    -		$index = $this->model->getChildCount($parent);
    -	 	
    -	 	$this->model->beginUpdate();
    -	 	try
    -	 	{
    -		 	$edge = $this->model->add($parent, $edge, $index);
    -		 	
    -			$this->model->setTerminal($edge, $source, true);
    -			$this->model->setTerminal($edge, $target, false);
    -		}
    -		catch (Exception $e)
    -		{
    -			$this->model->endUpdate();
    -			throw($e);
    -		}
    -		$this->model->endUpdate();
    -
    -		return $edge;
    -	}
    -				
    -	/**
    -	 * Function: createEdge
    -	 * 
    -	 * Creates the edge to be used in <insertEdge>. This implementation does
    -	 * not set the source and target of the edge, these are set when the edge
    -	 * is added to the model.
    -	 */
    -	function createEdge($parent, $id = null, $value = null,
    -		$source = null, $target = null, $style = null)
    -	{
    -		$geometry = new mxGeometry();
    -		$edge = new mxCell($value, $geometry, $style);
    -		
    -		$edge->setId($id);
    -		$edge->setEdge(true);
    -		$edge->geometry->relative = true;
    -
    -		return $edge;
    -	}
    -	
    -	/**
    -  	 * Function: getGraphBounds
    -  	 * 
    -  	 * Returns the bounds of the visible graph. Shortcut to
    -  	 * <mxGraphView.getGraphBounds>.
    -  	 */
    -	function getGraphBounds()
    -	{
    -		return $this->getView()->getGraphBounds();
    -	}
    -
    -    /**
    -     * Function: getBoundingBox
    -     * 
    -     * Returns the bounding box of the given cell including all connected edges
    -     * if includeEdge is true.
    -     */
    -    function getBoundingBox($cell, $includeEdges = false, $includeDescendants = false)
    -    {
    -        return $this->getCellBounds($cell, $includeEdges, $includeDescendants, true);
    -    }
    -
    -    /**
    -     * Function: getPaintBounds
    -     * 
    -     * Returns the bounding box of the given cells and their descendants.
    -     */
    -    function getPaintBounds($cells)
    -    {
    -        return $this->getBoundsForCells($cells, false, true, true);
    -    }
    -
    -    /**
    -     * Function: getBoundsForCells
    -     * 
    -     * Returns the bounds for the given cells.
    -     */
    -    function getBoundsForCells($cells, $includeEdges = false, $includeDescendants = false, $boundingBox = false)
    -    {
    -    	$cellCount = sizeof($cells);
    -    	$result = null;
    -    	
    -        if ($cellCount > 0)
    -        {
    -			for ($i = 0; $i < $cellCount; $i++)
    -			{
    -            	$bounds = $this->getCellBounds($cells[$i], $includeEdges,
    -            		$includeDescendants, $boundingBox);
    -            	
    -            	if ($bounds != null)
    -            	{
    -	            	if ($result == null)
    -	            	{
    -	            		$result = new mxRectangle($bounds->x, $bounds->y,
    -	            			$bounds->width, $bounds->height);
    -	            	}
    -					else
    -	                {
    -	                	$result->add($bounds);
    -	                }
    -            	}
    -			}
    -        }
    -
    -        return $result;
    -    }
    -
    -    /**
    -     * Function: getCellBounds
    -     * 
    -     * Returns the bounds of the given cell including all connected edges
    -     * if includeEdge is true.
    -     */
    -    function getCellBounds($cell, $includeEdges = false, $includeDescendants = false, $boundingBox = false)
    -    {
    -		$cells = array($cell);
    -
    -		// Includes the connected edges
    -        if ($includeEdges)
    -        {
    -            $edgeCount = $this->model->getEdgeCount($cell);
    -
    -            for ($i = 0; $i < $edgeCount; $i++)
    -            {
    -            	array_push($cells, $this->model->getEdgeAt($cell, $i));
    -            }
    -        }
    -
    -		$result = $this->view->getBounds($cells, $boundingBox);
    -		
    -		// Recursively includes the bounds of the children
    -		if ($includeDescendants)
    -		{
    -			for ($i = 0; $i < sizeof($cells); $i++)
    -			{
    -				$childCount = $this->model->getChildCount($cells[$i]);
    -				
    -				for ($j = 0; $j < $childCount; $j++)
    -				{
    -					$tmp = $this->getCellBounds($this->model->getChildAt($cells[$i], $j),
    -						$includeEdges, true, $boundingBox);
    -	
    -					if ($result != null)
    -					{
    -						$result->add($tmp);
    -					}
    -					else
    -					{
    -						$result = $tmp;
    -					}
    -				}
    -			}
    -		}
    -		
    -		return $result;
    -    }
    -
    -	/**
    -	 * Function: getConnectionConstraint
    -	 * 
    -	 * Returns an <mxConnectionConstraint> that describes the given connection
    -	 * point. This result can then be passed to <getConnectionPoint>.
    -	 * 
    -	 * Parameters:
    -	 * 
    -	 * edge - <mxCellState> that represents the edge.
    -	 * terminal - <mxCellState> that represents the terminal.
    -	 * source - Boolean indicating if the terminal is the source or target.
    -	 */
    -   	function getConnectionConstraint($edge, $terminal, $source)
    -	{
    -		$point = null;
    -		$x = mxUtils::getValue($edge->style,
    -			($source) ? mxConstants::$STYLE_EXIT_X :
    -			mxConstants::$STYLE_ENTRY_X);
    -
    -		if (isset($x))
    -		{
    -			$y = mxUtils::getValue($edge->style,
    -				(($source) ? mxConstants::$STYLE_EXIT_Y :
    -				mxConstants::$STYLE_ENTRY_Y));
    -			
    -			if (isset($y))
    -			{
    -				$point = new mxPoint($x, $y);
    -			}
    -		}
    -		
    -		$perimeter = false;
    -		
    -		if (isset($point))
    -		{
    -			$perimeter = mxUtils::getValue($edge->style, ($source) ?
    -				mxConstants::$STYLE_EXIT_PERIMETER :
    -				mxConstants::$STYLE_ENTRY_PERIMETER, true);
    -		}
    -		
    -		return new mxConnectionConstraint($point, $perimeter);
    -	}
    -
    -	/**
    -	 * Function: getConnectionPoint
    -	 *
    -	 * Returns the nearest point in the list of absolute points or the center
    -	 * of the opposite terminal.
    -	 * 
    -	 * Parameters:
    -	 * 
    -	 * vertex - <mxCellState> that represents the vertex.
    -	 * constraint - <mxConnectionConstraint> that represents the connection point
    -	 * constraint as returned by <getConnectionConstraint>.
    -	 */
    -	function getConnectionPoint($vertex, $constraint)
    -	{
    -		$point = null;
    -		
    -		if (isset($vertex) && isset($constraint->point))
    -		{
    -			$point = new mxPoint($vertex->x + $constraint->point->x * $vertex->width,
    -					$vertex->y + $constraint->point->y * $vertex->height);
    -		}
    -		
    -		if (isset($point) && $constraint->perimeter)
    -		{
    -			$point = $this->view->getPerimeterPoint($vertex, $point, false);
    -		}
    -		
    -		return $point;
    -	}
    -    
    -	/**
    -	 * Function: findTreeRoots
    -	 * 
    -	 * Returns all children in the given parent which do not have incoming
    -	 * edges. If the result is empty then the with the greatest difference
    -	 * between incoming and outgoing edges is returned.
    -	 * 
    -	 * Parameters:
    -	 * 
    -	 * parent - <mxCell> whose children should be checked.
    -	 * isolate - Optional boolean that specifies if edges should be ignored if
    -	 * the opposite end is not a child of the given parent cell. Default is
    -	 * false.
    -	 * invert - Optional boolean that specifies if outgoing or incoming edges
    -	 * should be counted for a tree root. If false then outgoing edges will be
    -	 * counted. Default is false.
    -	 */
    -	function findTreeRoots($parent, $isolate = false, $invert = false)
    -	{
    -		$roots = array();
    -		
    -		if ($parent != null)
    -		{
    -			$model = $this->getModel();
    -			$childCount = $model->getChildCount($parent);
    -			$maxDiff = 0;
    -			
    -			for ($i=0; $i<$childCount; $i++)
    -			{
    -				$cell = $model->getChildAt($parent, $i);
    -				
    -				if ($this->model->isVertex($cell) &&
    -					$this->isCellVisible($cell))
    -				{
    -					$edgeCount = $model->getEdgeCount($cell);
    -					$fanOut = 0;
    -					$fanIn = 0;
    -					
    -					for ($j = 0; $j < $edgeCount; $j++)
    -					{
    -						$edge = $model->getEdgeAt($cell, $j);
    -						
    -						if ($this->isCellVisible($edge))
    -						{
    -							$source = $this->view->getVisibleTerminal($edge, true);
    -							$target = $this->view->getVisibleTerminal($edge, false);
    -							
    -							if ($source !== $target)
    -							{
    -                                if ($source === $cell && (!$isolate ||
    -                                	$this->model->getParent(target) == $parent))
    -                                {
    -                                    $fanOut++;
    -                                }
    -                                else if (!$isolate ||
    -                                	$this->model->getParent(source) == $parent)
    -                                {
    -                                    $fanIn++;
    -                                }
    -							}
    -						}
    -					}
    -					
    -					if (($invert && $fanOut == 0 && $fanIn > 0) ||
    -						(!$invert && $fanIn == 0 && $fanOut > 0))
    -					{
    -						array_push($roots, $cell);
    -					}
    -					
    -					$diff = ($invert) ? $fanIn - $fanOut : $fanOut - $fanIn;
    -					
    -					if ($diff > $maxDiff)
    -					{
    -						$maxDiff = $diff;
    -						$best = $cell;
    -					}
    -				}
    -			}
    -			
    -			if (sizeof($roots) == 0 && $best != null)
    -			{
    -				array_push($roots, $best);
    -			}
    -		}
    -		
    -		return $roots;
    -	}
    -	
    -	/**
    -	 * Function: createImage
    -	 */
    -	function createImage($clip = null, $background = null)
    -	{
    -		return mxGdCanvas::drawGraph($this, $clip, $background);
    -	}
    -
    -	/**
    -	 * Function: drawGraph
    -	 * 
    -	 * Draws the given cell onto the specified canvas.
    -	 */
    -	function drawGraph($canvas)
    -	{
    -		$this->drawCell($canvas, $this->model->getRoot());
    -	}
    -	
    -	/**
    -	 * Function: paintCell
    -	 * 
    -	 * Draws the given cell onto the specified canvas.
    -	 */
    -	function drawCell($canvas, $cell)
    -	{
    -		$this->drawState($canvas, $this->view->getState($cell),
    -			$this->getLabel($cell));
    -		
    -		// Draws the children on top
    -		$childCount = $cell->getChildCount();
    -		
    -		for ($i = 0; $i < $childCount; $i++)
    -		{
    -			$child = $cell->getChildAt($i);
    -			$this->drawCell($canvas, $child);
    -		}
    -	}
    -	
    -	/**
    -	 * Function: paintState
    -	 * 
    -	 * Draws the given cell and label onto the specified canvas. No
    -	 * children or descendants are painted.
    -	 */
    -	function drawState($canvas, $state, $label)
    -	{
    -		$cell = (isset($state)) ? $state->cell : null;
    -
    -		if ($cell != null && $cell !== $this->model->getRoot() &&
    -			($this->model->isVertex($cell) || $this->model->isEdge($cell)))
    -		{
    -			$canvas->drawCell($state);
    -
    -			if ($label != null && $state->labelBounds != null)
    -			{
    -				$canvas->drawLabel($label, $state, false);
    -			}
    -		}
    -	}
    -	
    -	/**
    -	 * Function: graphModelChanged
    -	 * 
    -	 * Called when the graph model has changed.
    -	 */
    -	function graphModelChanged($event)
    -	{
    -	 	$this->view->revalidate();
    -	}
    -
    -}
    -?>
    diff --git a/php/src/view/mxGraphView.php b/php/src/view/mxGraphView.php
    deleted file mode 100644
    index 039d40f46..000000000
    --- a/php/src/view/mxGraphView.php
    +++ /dev/null
    @@ -1,1422 +0,0 @@
    -<?php
    -/**
    - * Copyright (c) 2006-2013, Gaudenz Alder
    - */
    -class mxGraphView extends mxEventSource
    -{
    -
    -	/**
    -	 * Class: mxGraphView
    -	 *
    -	 * Implements a view for the graph. Fires scale and translate events
    -	 * if one of the values change.
    -	 * 
    -	 * This class fires the following events:
    -	 * 
    -	 * mxEvent.SCALE fires after the scale was changed in setScale. The
    -	 * <code>scale</code> and <code>previousScale</code> arguments contain the
    -	 * new and previous scale.
    -	 * 
    -	 * mxEvent.TRANSLATE fires after the translate was changed in setTranslate. The
    -	 * <code>translate</code> and <code>previousTranslate</code> arguments contain
    -	 * the new and previous value for translate.
    -	 * 
    -	 * Variable: EMPTY_POINT
    -	 * 
    -	 * An empty <mxPoint> instance.
    -	 */
    -	var $EMPTY_POINT;
    -
    -	/**
    -	 * Variable: graph
    -	 * 
    -	 * Holds the <mxGraph>.
    -	 */
    -	var $graph;
    -	
    -	/**
    -	 * Variable: graphBounds
    -	 * 
    -	 * Holds the bounds of the current view.
    -	 */
    -	var $graphBounds;
    -	
    -	/**
    -	 * Variable: scale
    -	 * 
    -	 * Holds the current scale.
    -	 */
    -	var $scale = 1;
    -	
    -	/**
    -	 * Variable: translate
    -	 * 
    -	 * Holds the current translate.
    -	 */
    -	var $translate;
    -	
    -	/**
    -	 * Variable: states
    -	 * 
    -	 * Maps from cells to states.
    -	 */
    -	var $states = array();
    -
    -	/**
    -	 * Constructor: mxGraphView
    -	 * 
    -	 * Constructs a new view for the specified <mxGraph>.
    -	 */
    -	function mxGraphView($graph)
    -	{
    -		$this->EMPTY_POINT = new mxPoint();
    -		$this->graph = $graph;
    -		$this->translate = new mxPoint();
    -		$this->graphBounds = new mxRectangle();
    -	}
    -
    -	/**
    -	 * Function: setScale
    -	 * 
    -	 * Sets the scale, revalidates the view and fires
    -	 * a scale event.
    -	 */
    -	function setScale($scale)
    -	{
    -		$previous = $this->scale;
    -		
    -		if ($this->scale != $scale)
    -		{
    -			$this->scale = $scale;
    -			$this->revalidate();
    -		}
    -			
    -		$this->fireEvent(new mxEventObject(mxEvent::$SCALE, "scale", $scale, "previousScale", $previous));
    -	}
    -
    -	/**
    -	 * Function: setTranslate
    -	 * 
    -	 * Sets the translation, revalidates the view and
    -	 * fires a translate event.
    -	 */
    -	function setTranslate($translate)
    -	{
    -		$previous = $this->translate;
    -		
    -		if ($this->translate->x != $translate->x ||
    -			$this->translate->y != $translate->y)
    -		{
    -			$this->translate = $translate;
    -			$this->revalidate();
    -		}
    -			
    -		$this->fireEvent(new mxEventObject(mxEvent::$TRANSLATE, "translate", $translate, "previousTranslate", $previous));
    -	}
    -
    -	/**
    -	 * Function: getGraphBounds
    -	 * 
    -	 * Returns <graphBounds>.
    -	 */
    -    function getGraphBounds()
    -    {
    -    	return $this->graphBounds;
    -    }
    -
    -	/**
    -	 * Function: setGraphBounds
    -	 * 
    -	 * Sets <graphBounds>.
    -	 */
    -    function setGraphBounds($value)
    -    {
    -    	$this->graphBounds = $value;
    -    }
    -
    -	/**
    -	 * Function: getBounds
    -	 * 
    -	 * Returns the bounding for for an array of cells or null, if no cells are
    -	 * specified.
    -	 */
    -    function getBounds($cells, $boundingBox = false)
    -    {
    -    	$cellCount = sizeof($cells);
    -    	$result = null;
    -    	
    -        if ($cellCount > 0)
    -        {
    -        	$model = $this->graph->getModel();
    -        
    -			for ($i = 0; $i < $cellCount; $i++)
    -			{
    -				if ($model->isVertex($cells[$i]) || $model->isEdge($cells[$i]))
    -				{
    -	            	$state = $this->getState($cells[$i]);
    -	
    -		            if ($state != null)
    -		            {
    -		            	$bounds = ($boundingBox) ? $state->boundingBox : $state;
    -		            	
    -		            	if ($bounds != null)
    -		            	{
    -			            	if ($result == null)
    -			            	{
    -			            		$result = new mxRectangle($bounds->x, $bounds->y,
    -			            			$bounds->width, $bounds->height);
    -			            	}
    -							else
    -			                {
    -			                	$result->add($bounds);
    -			                }
    -		            	}
    -		            }
    -		    	}
    -			}
    -        }
    -
    -        return $result;
    -    }
    -
    -	/**
    -	 * Function: invalidate
    -	 */
    -	function revalidate()
    -	{
    -		$this->invalidate();
    -		$this->validate();
    -	}
    -
    -	/**
    -	 * Function: invalidate
    -	 * 
    -	 * Invalidates the cached cell states.
    -	 */
    -	function invalidate()
    -	{
    -		// LATER: Invalidate cell states recursively
    -		$this->states = array();
    -	}
    -
    -	/**
    -	 * Function: validate
    -	 * 
    -	 * Calls <validateCell> and <validateCellState> and updates the <graphBounds>
    -	 * using <getBoundingBox>. Finally the background is validated using
    -	 * <validateBackground>.
    -	 * 
    -	 * Parameters:
    -	 * 
    -	 * cell - Optional <mxCell> to be used as the root of the validation.
    -	 * Default is the root of the model.
    -	 */
    -	function validate($cell = null)
    -	{
    -	 	// Checks if cache is invalid
    -	 	if (sizeof($this->states) == 0)
    -	 	{
    -	 		$graphBounds = $this->getBoundingBox($this->validateCellState(
    -	 			$this->validateCell(($cell != null) ? $cell : $this->graph->model->root)));
    -	 		$this->setGraphBounds(isset($graphBounds) ? $graphBounds : new mxRectangle());
    -		}
    -	}
    -	
    -	/**
    -	 * Function: getBoundingBox
    -	 *
    -	 * Returns the bounding box of the shape and the label for the given
    -	 * <mxCellState> and its children if recurse is true.
    -	 *
    -	 * Parameters:
    -	 *
    -	 * state - <mxCellState> whose bounding box should be returned.
    -	 * recurse - Optional boolean indicating if the children should be included.
    -	 * Default is true.
    -	 */
    -	function getBoundingBox($state, $recurse = true)
    -	{
    -		$bbox = null;
    -	
    -		if ($state != null)
    -		{
    -			if ($state->boundingBox != null)
    -			{
    -				$bbox = $state->boundingBox->copy();
    -			}
    -
    -			if ($recurse)
    -			{
    -				$model = $this->graph->getModel();
    -				$childCount = $model->getChildCount($state->cell);
    -					
    -				for ($i = 0; $i < $childCount; $i++)
    -				{
    -					$bounds = $this->getBoundingBox($this->getState($model->getChildAt($state->cell, $i)));
    -	
    -					if ($bounds != null)
    -					{
    -						if ($bbox == null)
    -						{
    -							$bbox = $bounds;
    -						}
    -						else
    -						{
    -							$bbox->add($bounds);
    -						}
    -					}
    -				}
    -			}
    -		}
    -	
    -		return $bbox;
    -	}
    -	
    -	/**
    -	 * Function: validateCell
    -	 *
    -	 * Recursively creates the cell state for the given cell if visible is true and
    -	 * the given cell is visible. If the cell is not visible but the state exists
    -	 * then it is removed using <removeState>.
    -	 *
    -	 * Parameters:
    -	 *
    -	 * cell - <mxCell> whose <mxCellState> should be created.
    -	 * visible - Optional boolean indicating if the cell should be visible. Default
    -	 * is true.
    -	 */
    -	function validateCell($cell, $visible = true)
    -	{
    -		if ($cell != null)
    -		{
    -			$visible = $visible && $this->graph->isCellVisible($cell);
    -			$state = $this->getState($cell, $visible);
    -			
    -			if ($state != null && !$visible)
    -			{
    -				$this->removeState($cell);
    -			}
    -			else
    -			{
    -				$model = $this->graph->getModel();
    -				$childCount = $model->getChildCount($cell);
    -				
    -				for ($i = 0; $i < $childCount; $i++)
    -				{
    -					$this->validateCell($model->getChildAt($cell, $i), $visible &&
    -						!$this->graph->isCellCollapsed($cell));
    -				}
    -			}
    -		}
    -		
    -		return $cell;
    -	}
    -
    -	/**
    -	 * Function: validateCellStates
    -	 *
    -	 * Validates and repaints the <mxCellState> for the given <mxCell>.
    -	 *
    -	 * Parameters:
    -	 *
    -	 * cell - <mxCell> whose <mxCellState> should be validated.
    -	 * recurse - Optional boolean indicating if the children of the cell should be
    -	 * validated. Default is true.
    -	 */
    -	function validateCellState($cell, $recurse = true)
    -	{
    -		$state = null;
    -	
    -		if ($cell != null)
    -		{
    -			$state = $this->getState($cell);
    -	
    -			if ($state != null)
    -			{
    -				$model = $this->graph->getModel();
    -					
    -				if ($state->invalid)
    -				{
    -					$state->invalid = false;
    -	
    -					$this->validateCellState($model->getParent($cell), false);
    -					$source = $this->validateCellState($this->getVisibleTerminal($cell, true), false);
    -					$target = $this->validateCellState($this->getVisibleTerminal($cell, false), false);
    -	
    -					$this->updateCellState($state, $source, $target);
    -					
    -					if ($model->isEdge($cell) || $model->isVertex($cell))
    -					{
    -						$this->updateLabelBounds($state);
    -						$this->updateBoundingBox($state);
    -					}
    -				}
    -	
    -				if ($recurse)
    -				{
    -					$childCount = $model->getChildCount($cell);
    -	
    -					for ($i = 0; $i < $childCount; $i++)
    -					{
    -						$this->validateCellState($model->getChildAt($cell, $i));
    -					}
    -				}
    -			}
    -		}
    -	
    -		return $state;
    -	}
    -
    -	/**
    -	 * Function: updateCellState
    -	 *
    -	 * Updates the given <mxCellState>.
    -	 *
    -	 * Parameters:
    -	 *
    -	 * state - <mxCellState> to be updated.
    -	 * source - <mxCellState> that represents the visible source.
    -	 * target - <mxCellState> that represents the visible target.
    -	 */
    -	function updateCellState($state, $source, $target)
    -	{
    -		$state->absoluteOffset->x = 0;
    -		$state->absoluteOffset->y = 0;
    -		$state->origin->x = 0;
    -		$state->origin->y = 0;
    -		$state->length = 0;
    -	
    -		$model = $this->graph->getModel();
    -		$pState = $this->getState($model->getParent($state->cell));
    -	
    -		if ($pState != null)
    -		{
    -			$state->origin->x += $pState->origin->x;
    -			$state->origin->y += $pState->origin->y;
    -		}
    -	
    -		$offset = $this->graph->getChildOffsetForCell($state->cell);
    -	
    -		if ($offset != null)
    -		{
    -			$state->origin->x += $offset->x;
    -			$state->origin->y += $offset->y;
    -		}
    -	
    -		$geo = $this->graph->getCellGeometry($state->cell);
    -	
    -		if ($geo != null)
    -		{
    -			if (!$model->isEdge($state->cell))
    -			{
    -				$offset = $geo->offset;
    -
    -				if ($offset == null)
    -				{
    -					$offset = $this->EMPTY_POINT;
    -				}
    -	
    -				if ($geo->relative && $pState != null)
    -				{
    -					if ($model->isEdge($pState->cell))
    -					{
    -						$origin = $this->getPoint($pState, $geo);
    -							
    -						if ($origin != null)
    -						{
    -							$state->origin->x += ($origin->x / $this->scale) - $pState->origin->x - $this->translate->x;
    -							$state->origin->y += ($origin->y / $this->scale) - $pState->origin->y - $this->translate->y;
    -						}
    -					}
    -					else
    -					{
    -						$state->origin->x += $geo->x * $pState->width / $this->scale + $offset->x;
    -						$state->origin->y += $geo->y * $pState->height / $this->scale + $offset->y;
    -					}
    -				}
    -				else
    -				{
    -					$state->absoluteOffset->x = $this->scale * $offset->x;
    -					$state->absoluteOffset->y = $this->scale * $offset->y;
    -					$state->origin->x += $geo->x;
    -					$state->origin->y += $geo->y;
    -				}
    -			}
    -	
    -			$state->x = $this->scale * ($this->translate->x + $state->origin->x);
    -			$state->y = $this->scale * ($this->translate->y + $state->origin->y);
    -			$state->width = $this->scale * $geo->width;
    -			$state->height = $this->scale * $geo->height;
    -
    -			if ($model->isVertex($state->cell))
    -			{
    -				$this->updateVertexState($state, $geo);
    -			}
    -	
    -			if ($model->isEdge($state->cell))
    -			{
    -				$this->updateEdgeState($state, $geo, $source, $target);
    -			}
    -		}
    -	}
    -
    -	/**
    -	 * Function: updateVertexState
    -	 *
    -	 * Validates the given cell state.
    -	 */
    -	function updateVertexState($state, $geo)
    -	{
    -		// LATER: Add support for rotation
    -		$this->updateVertexLabelOffset($state);
    -	}
    -	
    -	/**
    -	 * Function: updateEdgeState
    -	 *
    -	 * Validates the given cell state.
    -	 */
    -	function updateEdgeState($state, $geo, $source, $target)
    -	{
    -		// This will remove edges with no terminals and no terminal points
    -		// as such edges are invalid and produce NPEs in the edge styles.
    -		// Also removes connected edges that have no visible terminals.
    -		if (($this->graph->model->getTerminal($state->cell, true) != null && $source == null) ||
    -			($source == null && $geo->getTerminalPoint(true) == null) ||
    -			($this->graph->model->getTerminal($state->cell, false) != null && $target == null) ||
    -			($target == null && $geo->getTerminalPoint(false) == null))
    -		{
    -			$this->removeState($state->cell, true);
    -		}
    -		else
    -		{
    -			$this->updateFixedTerminalPoints($state, $source, $target);
    -			$this->updatePoints($state, $geo->points, $source, $target);
    -			$this->updateFloatingTerminalPoints($state, $source, $target);
    -			
    -			$pts = $state->absolutePoints;
    -			
    -			if ($pts == null || sizeof($pts) < 1 || $pts[0] == null || $pts[sizeof($pts) - 1] == null)
    -			{
    -				// This will remove edges with invalid points from the list of states in the view.
    -				// Happens if the one of the terminals and the corresponding terminal point is null.
    -				$this->removeState($state->cell, true);
    -			}
    -			else
    -			{
    -				$this->updateEdgeBounds($state);
    -				$state->absoluteOffset = $this->getPoint($state, $geo);
    -			}
    -		}
    -	}
    -	
    -	/**
    -	 * Function: updateVertexLabelOffset
    -	 * 
    -	 * Updates the absoluteOffset of the given vertex cell state. This takes
    -	 * into account the label position styles.
    -	 * 
    -	 * Parameters:
    -	 * 
    -	 * state - <mxCellState> whose absolute offset should be updated.
    -	 */
    -	function updateVertexLabelOffset($state)
    -	{
    -		$horizontal = mxUtils::getValue($state->style,
    -				mxConstants::$STYLE_LABEL_POSITION,
    -				mxConstants::$ALIGN_CENTER);
    -		
    -		if ($horizontal == mxConstants::$ALIGN_LEFT)
    -		{
    -			$state->absoluteOffset->x -= $state->width;
    -		}
    -		else if ($horizontal == mxConstants::$ALIGN_RIGHT)
    -		{
    -			$state->absoluteOffset->x += $state->width;
    -		}
    -		
    -		$vertical = mxUtils::getValue($state->style,
    -				mxConstants::$STYLE_VERTICAL_LABEL_POSITION,
    -				mxConstants::$ALIGN_MIDDLE);
    -		
    -		if ($vertical == mxConstants::$ALIGN_TOP)
    -		{
    -			$state->absoluteOffset->y -= $state->height;
    -		}
    -		else if ($vertical == mxConstants::$ALIGN_BOTTOM)
    -		{
    -			$state->absoluteOffset->y += $state->height;
    -		}
    -	}
    -
    -	/**
    -	 * Function: updateLabelBounds
    -	 * 
    -	 * Updates the label bounds in the given state.
    -	 */
    -    function updateLabelBounds($state)
    -    {
    -        $cell = $state->cell;
    -        $style = $state->style;
    -        
    -        if (mxUtils::getValue($style, mxConstants::$STYLE_OVERFLOW) == "fill")
    -		{
    -			$state->labelBounds = new mxRectangle($state->x, $state->y, $state->width, $state->height);
    -		}
    -		else
    -		{
    -	        $label = $this->graph->getLabel($cell);
    -    	    $vertexBounds = (!$this->graph->model->isEdge($cell)) ? $state : null;
    -        	$state->labelBounds = mxUtils::getLabelPaintBounds($label, $style,
    -        		false, $state->absoluteOffset, $vertexBounds, $this->scale);
    -		}
    -    }
    -
    -	/**
    -	 * Function: updateBoundingBox
    -	 * 
    -	 * Updates the bounding box in the given cell state.
    -	 */
    -	function updateBoundingBox($state)
    -	{
    -        // Gets the cell bounds and adds shadows and markers
    -        $rect = new mxRectangle($state->x, $state->y, $state->width, $state->height);
    -        $style = $state->style;
    -
    -        // Adds extra pixels for the marker and stroke assuming
    -        // that the border stroke is centered around the bounds
    -        // and the first pixel is drawn inside the bounds
    -        $strokeWidth = max(1, mxUtils::getNumber($style,
    -            mxConstants::$STYLE_STROKEWIDTH, 1) * $this->scale);
    -        $strokeWidth -= max(1, $strokeWidth / 2);
    -
    -        if ($this->graph->model->isEdge($state->cell))
    -        {
    -			$ms = 0;
    -
    -            if (isset($style[mxConstants::$STYLE_ENDARROW])
    -                    || isset($style[mxConstants::$STYLE_STARTARROW]))
    -            {
    -                $ms = round(mxConstants::$DEFAULT_MARKERSIZE * $this->scale);
    -            }
    -
    -            // Adds the strokewidth
    -           	$rect->grow($ms + $strokeWidth);
    -
    -            // Adds worst case border for an arrow shape
    -            if (mxUtils::getValue($style, mxConstants::$STYLE_SHAPE) ==
    -                    mxConstants::$SHAPE_ARROW)
    -            {
    -                $rect->grow(mxConstants::$ARROW_WIDTH / 2);
    -            }
    -        }
    -        else
    -        {
    -        	$rect->grow($strokeWidth);
    -        }
    -
    -        // Adds extra pixels for the shadow
    -        if (mxUtils::getValue($style, mxConstants::$STYLE_SHADOW, false) == true)
    -        {
    -            $rect->width += mxConstants::$SHADOW_OFFSETX;
    -            $rect->height += mxConstants::$SHADOW_OFFSETY;
    -        }
    -
    -        // Adds oversize images in labels
    -        if (mxUtils::getValue($style, mxConstants::$STYLE_SHAPE) ==
    -        	mxConstants::$SHAPE_LABEL)
    -        {
    -            if (mxUtils::getValue($style, mxConstants::$STYLE_IMAGE) != null)
    -            {
    -                $w = mxUtils::$getValue($style,
    -                        mxConstants::$STYLE_IMAGE_WIDTH,
    -                        mxConstants::$DEFAULT_IMAGESIZE) * $this->scale;
    -                $h = mxUtils::$getValue($style,
    -                        mxConstants::$STYLE_IMAGE_HEIGHT,
    -                        mxConstants::$DEFAULT_IMAGESIZE) * $this->scale;
    -
    -                $x = $state->x;
    -                $y = 0;
    -
    -                $imgAlign = mxUtils::getValue($style, mxConstants::$STYLE_IMAGE_ALIGN,
    -                                mxConstants::$ALIGN_CENTER);
    -                $imgValign = mxUtils::getValue(style,
    -                        mxConstants::$STYLE_IMAGE_VERTICAL_ALIGN,
    -                        mxConstants::$ALIGN_MIDDLE);
    -
    -                if ($imgAlign == mxConstants::$ALIGN_RIGHT)
    -                {
    -                    $x += $state->width - $w;
    -                }
    -                else if ($imgAlign == mxConstants::$ALIGN_CENTER)
    -                {
    -                    $x += ($state->width - $w) / 2;
    -                }
    -
    -                if ($imgValign == mxConstants::$ALIGN_TOP)
    -                {
    -                    $y = $state->y;
    -                }
    -                else if ($imgValign == mxConstants::$ALIGN_BOTTOM)
    -                {
    -                    $y = $state->y + $state->height - $h;
    -                }
    -                else
    -                {
    -                    $y = $state->y + ($state->height - $h) / 2;
    -                }
    -
    -                $rect->add(new mxRectangle($x, $y, $w, $h));
    -            }
    -        }
    -        
    -        // No need to add rotated rectangle bounds here because
    -        // GD does not support rotation
    -
    -        // Unifies the cell bounds and the label bounds
    -		$rect->add($state->labelBounds);
    -        $state->boundingBox = $rect;
    -
    -        return $rect;
    -    }
    -
    -	/**
    -	 * Function: updateFixedTerminalPoints
    -	 *
    -	 * Sets the initial absolute terminal points in the given state before the edge
    -	 * style is computed.
    -	 * 
    -	 * Parameters:
    -	 * 
    -	 * edge - <mxCellState> whose initial terminal points should be updated.
    -	 * source - <mxCellState> which represents the source terminal.
    -	 * target - <mxCellState> which represents the target terminal.
    -	 */
    -	function updateFixedTerminalPoints($edge, $source, $target)
    -	{
    -		$this->updateFixedTerminalPoint($edge, $source, true,
    -			$this->graph->getConnectionConstraint($edge, $source, true));
    -		$this->updateFixedTerminalPoint($edge, $target, false,
    -			$this->graph->getConnectionConstraint($edge, $target, false));
    -	}
    -
    -	/**
    -	 * Function: updateFixedTerminalPoint
    -	 *
    -	 * Sets the fixed source or target terminal point on the given edge.
    -	 * 
    -	 * Parameters:
    -	 * 
    -	 * edge - <mxCellState> whose terminal point should be updated.
    -	 * terminal - <mxCellState> which represents the actual terminal.
    -	 * source - Boolean that specifies if the terminal is the source.
    -	 * constraint - <mxConnectionConstraint> that specifies the connection.
    -	 */
    -	function updateFixedTerminalPoint($edge, $terminal, $source, $constraint)
    -	{
    -		$pt = null;
    -		
    -		if (isset($constraint))
    -		{
    -			$pt = $this->graph->getConnectionPoint($terminal, $constraint);
    -		}
    -		
    -		if (!isset($pt) && !isset($terminal))
    -		{
    -			$s = $this->scale;
    -			$tr = $this->translate;
    -			$orig = $edge->origin;
    -			$geo = $this->graph->getCellGeometry($edge->cell);
    -			$pt = $geo->getTerminalPoint($source);
    -			
    -			if (isset($pt))
    -			{
    -				$pt = new mxPoint($s * ($tr->x + $pt->x + $orig->x),
    -					$s * ($tr->y + $pt->y + $orig->y));
    -			}
    -		}
    -
    -		if (!is_array($edge->absolutePoints))
    -		{
    -			$edge->absolutePoints = array();
    -		}
    -
    -		$n = sizeof($edge->absolutePoints);
    -		
    -		if ($source)
    -		{
    -			if ($n > 0)
    -			{
    -				$state->absolutePoints[0] = $pt;
    -			}
    -			else
    -			{
    -				array_push($edge->absolutePoints, $pt);
    -			}
    -		}
    -		else
    -		{
    -			$n = sizeof($edge->absolutePoints);
    -			
    -			if ($n > 1)
    -			{
    -				$edge->absolutePoints[$n - 1] = $pt;
    -			}
    -			else
    -			{
    -				array_push($edge->absolutePoints, $pt);
    -			}
    -		}
    -	}
    -
    -	/**
    -	 * Function: updatePoints
    -	 *
    -	 * Updates the absolute points in the given state using the specified array
    -	 * of <mxPoints> as the relative points.
    -	 * 
    -	 * Parameters:
    -	 * 
    -	 * edge - <mxCellState> whose absolute points should be updated.
    -	 * points - Array of <mxPoints> that constitute the relative points.
    -	 * source - <mxCellState> that represents the source terminal.
    -	 * target - <mxCellState> that represents the target terminal.
    -	 */
    -	function updatePoints($edge, $points, $source, $target)
    -	{
    -		if (isset($edge))
    -		{
    -			$pts = array();
    -			array_push($pts, $edge->absolutePoints[0]);
    -			$edgeStyle = $this->getEdgeStyle($edge, $points, $source, $target);
    -
    -			if (isset($edgeStyle))
    -			{
    -				$src = $this->getTerminalPort($edge, $source, true);
    -				$trg = $this->getTerminalPort($edge, $target, false);
    -
    -				$edgeStyle->apply($edge, $src, $trg, $points, $pts);
    -			}
    -			else if (isset($points))
    -			{
    -				for ($i = 0; $i < sizeof($points); $i++)
    -				{
    -					if (isset($points[$i]))
    -					{
    -						$pt = $points[$i]->copy();
    -						array_push($pts, $this->transformControlPoint($edge, $pt));
    -					}
    -				}
    -			}
    -			
    -			$n = sizeof($edge->absolutePoints);
    -			array_push($pts, $edge->absolutePoints[$n-1]);
    -
    -			$edge->absolutePoints = $pts;
    -		}
    -	}
    -	
    -	/**
    -	 * Function: transformControlPoint
    -	 *
    -	 * Transforms the given control point to an absolute point.
    -	 */
    -    function transformControlPoint($state, $pt)
    -    {
    -    	$orig = $state->origin;
    -    
    -        return new mxPoint($this->scale * ($pt->x + $this->translate->x + $orig->x),
    -        	$this->scale * ($pt->y + $this->translate->y + $orig->y));
    -    }
    -    
    -	/**
    -	 * Function: getEdgeStyle
    -	 *
    -	 * Returns the edge style function to be used to render the given edge
    -	 * state.
    -	 */
    -	function getEdgeStyle($edge, $points, $source, $target)
    -	{
    -		$edgeStyle = null;
    -		
    -		if (isset($source) && $source === $target)
    -		{
    -			$edgeStyle = mxUtils::getValue($edge->style, mxConstants::$STYLE_LOOP);
    -			
    -			if (!isset($edgeStyle))
    -			{
    -				$edgeStyle = $this->graph->defaultLoopStyle;
    -			}
    -		}
    -		else if (!mxUtils::getValue($edge->style, mxConstants::$STYLE_NOEDGESTYLE, false))
    -		{
    -			$edgeStyle = mxUtils::getValue($edge->style, mxConstants::$STYLE_EDGE);
    -		}
    -		
    -		// Converts string values to objects
    -		if (is_string($edgeStyle))
    -		{
    -			$tmp = mxStyleRegistry::getValue($edgeStyle);
    -			
    -			if ($tmp == null && strpos($edgeStyle, ".") !== false)
    -			{
    -				$tmp = mxUtils::evaluate($edgeStyle);
    -			}
    -			
    -			$edgeStyle = $tmp;
    -		}
    -		
    -		if ($edgeStyle instanceof mxEdgeStyleFunction)
    -		{
    -			return $edgeStyle;
    -		}
    -		
    -		return null;
    -	}
    -
    -	/**
    -	 * Function: updateFloatingTerminalPoints
    -	 *
    -	 * Updates the terminal points in the given state after the edge style was
    -	 * computed for the edge.
    -	 * 
    -	 * Parameters:
    -	 * 
    -	 * state - <mxCellState> whose terminal points should be updated.
    -	 * source - <mxCellState> that represents the source terminal.
    -	 * target - <mxCellState> that represents the target terminal.
    -	 */
    -	function updateFloatingTerminalPoints($state, $source, $target)
    -	{
    -		$pts = $state->absolutePoints;
    -		$p0 = $pts[0];
    -		$pe = $pts[sizeof($pts) - 1];
    -		
    -		if (!isset($pe) && isset($target))
    -		{
    -			$this->updateFloatingTerminalPoint($state, $target, $source, false);
    -		}
    -		
    -		if (!isset($p0) && isset($source))
    -		{
    -			$this->updateFloatingTerminalPoint($state, $source, $target, true);
    -		}
    -	}
    -
    -	/**
    -	 * Function: updateFloatingTerminalPoint
    -	 *
    -	 * Updates the absolute terminal point in the given state for the given
    -	 * start and end state, where start is the source if source is true.
    -	 * 
    -	 * Parameters:
    -	 * 
    -	 * edge - <mxCellState> whose terminal point should be updated.
    -	 * start - <mxCellState> for the terminal on "this" side of the edge.
    -	 * end - <mxCellState> for the terminal on the other side of the edge.
    -	 * source - Boolean indicating if start is the source terminal state.
    -	 */
    -	function updateFloatingTerminalPoint($edge, $start, $end, $source)
    -	{
    -		$start = $this->getTerminalPort($edge, $start, $source);
    -		$next = $this->getNextPoint($edge, $end, $source);
    -		$border = mxUtils::getNumber($edge->style, mxConstants::$STYLE_PERIMETER_SPACING);
    -		$border = mxUtils::getNumber($edge->style, ($source) ?
    -			mxConstants::$STYLE_SOURCE_PERIMETER_SPACING :
    -			mxConstants::$STYLE_TARGET_PERIMETER_SPACING);
    -		$pt = $this->getPerimeterPoint($start, $next, $this->graph->isOrthogonal($edge), $border);
    -	 	$index = ($source) ? 0 : sizeof($edge->absolutePoints) - 1;
    -	 	$edge->absolutePoints[$index] = $pt;
    -	}
    -
    -	/**
    -	 * Function: getTerminalPort
    -	 * 
    -	 * Returns an <mxCellState> that represents the source or target terminal or
    -	 * port for the given edge.
    -	 * 
    -	 * Parameters:
    -	 * 
    -	 * state - <mxCellState> that represents the state of the edge.
    -	 * terminal - <mxCellState> that represents the terminal.
    -	 * source - Boolean indicating if the given terminal is the source terminal.
    -	 */
    -	function getTerminalPort($state, $terminal, $source)
    -	{
    -		$key = ($source) ? mxConstants::$STYLE_SOURCE_PORT
    -				: mxConstants::$STYLE_TARGET_PORT;
    -		$id = mxUtils::getValue($state->style, $key);
    -
    -		if ($id != null)
    -		{
    -			$tmp = $this->getState($this->graph->model->getCell($id));
    -
    -			// Only uses ports where a cell state exists
    -			if (isset($tmp))
    -			{
    -				$terminal = $tmp;
    -			}
    -		}
    -		
    -		return $terminal;
    -	}
    -	
    -	/**
    -	 * Function: getPerimeterPoint
    -	 *
    -	 * Returns an <mxPoint> that defines the location of the intersection point between
    -	 * the perimeter and the line between the center of the shape and the given point.
    -	 * 
    -	 * Parameters:
    -	 * 
    -	 * terminal - <mxCellState> for the source or target terminal.
    -	 * next - <mxPoint> that lies outside of the given terminal.
    -	 * orthogonal - Boolean that specifies if the orthogonal projection onto
    -	 * the perimeter should be returned. If this is false then the intersection
    -	 * of the perimeter and the line between the next and the center point is
    -	 * returned.
    -	 * border - Optional border between the perimeter and the shape.
    -	 */
    -	function getPerimeterPoint($terminal, $next, $orthogonal, $border = null)
    -	{
    -		$point = null;
    -		
    -		if ($terminal != null)
    -		{
    -			$perimeter = $this->getPerimeterFunction($terminal);
    -			
    -			if (isset($perimeter) && isset($next))
    -			{
    -				$bounds = $this->getPerimeterBounds($terminal, $border);
    -				
    -				if ($bounds->width > 0 || $bounds->height > 0)
    -				{
    -					$point = $perimeter->apply($bounds,	$terminal, $next, $orthogonal);
    -				}
    -			}
    -			
    -			if (!isset($point))
    -			{
    -				$point = $this->getPoint($terminal);
    -			}
    -		}
    -
    -	 	return $point;
    -	}
    -		
    -	/**
    -	 * Function: getRoutingCenterX
    -	 * 
    -	 * Returns the x-coordinate of the center point for automatic routing.
    -	 */
    -	function getRoutingCenterX($state)
    -	{
    -		$f = ($state->style != null) ? mxUtils::getNumber($state->style,
    -			mxConstants::$STYLE_ROUTING_CENTER_X) : 0;
    -	
    -		return $state->getCenterX() + $f * $state->width;
    -	}
    -	
    -	/**
    -	 * Function: getRoutingCenterY
    -	 * 
    -	 * Returns the y-coordinate of the center point for automatic routing.
    -	 */
    -	function getRoutingCenterY($state)
    -	{
    -		$f = ($state->style != null) ? mxUtils::getNumber($state->style,
    -			mxConstants::$STYLE_ROUTING_CENTER_Y) : 0;
    -	
    -		return $state->getCenterY() + $f * $state->height;
    -	}
    -
    -	/**
    -	 * Function: getPerimeterBounds
    -	 *
    -	 * Returns the perimeter bounds for the given terminal, edge pair as an
    -	 * <mxRectangle>.
    -	 * 
    -	 * Parameters:
    -	 * 
    -	 * terminal - <mxCellState> that represents the terminal.
    -	 * border - Number that adds a border between the shape and the perimeter.
    -	 */
    -	function getPerimeterBounds($terminal, $border = 0)
    -	{
    -		if ($terminal != null)
    -		{
    -			$border += mxUtils::getNumber($terminal->style, mxConstants::$STYLE_PERIMETER_SPACING);
    -		}
    -
    -		return $terminal->getPerimeterBounds($border * $this->scale);
    -	}
    -
    -	/**
    -	 * Function: getPerimeterFunction
    -	 * 
    -	 * Returns the perimeter function for the given state.
    -	 */
    -	function getPerimeterFunction($state)
    -	{
    -		$perimeter = mxUtils::getValue($state->style, mxConstants::$STYLE_PERIMETER);
    -		
    -		// Converts string values to objects
    -		if (is_string($perimeter))
    -		{
    -			$tmp = mxStyleRegistry::getValue($perimeter);
    -			
    -			if ($tmp == null && strpos($perimeter, ".") !== false)
    -			{
    -				$tmp = mxUtils::evaluate($perimeter);
    -			}
    -			
    -			$perimeter = $tmp;
    -		}
    -		
    -		if ($perimeter instanceof mxPerimeterFunction)
    -		{
    -			return $perimeter;
    -		}
    -		
    -		return null;
    -	}
    -
    -	/**
    -	 * Function: getNextPoint
    -	 *
    -	 * Returns the nearest point in the list of absolute points or the center
    -	 * of the opposite terminal.
    -	 * 
    -	 * Parameters:
    -	 * 
    -	 * edge - <mxCellState> that represents the edge.
    -	 * opposite - <mxCellState> that represents the opposite terminal.
    -	 * source - Boolean indicating if the next point for the source or target
    -	 * should be returned.
    -	 */
    -	function getNextPoint($edge, $opposite, $source)
    -	{
    -		$pts = $edge->absolutePoints;
    -		$point = null;
    -		
    -		if ($pts != null && sizeof($pts) >= 2)
    -		{
    -			$count = sizeof($pts);
    -			$index = ($source) ? min(1, $count - 1) : max(0, $count - 2);
    -			$point = $pts[$index];
    -		}
    -		
    -		if (!isset($point) && isset($opposite))
    -		{
    -			$point = new mxPoint($opposite->getCenterX(), $opposite->getCenterY());
    -		}
    -
    -	 	return $point;
    -	}
    -
    -	/**
    -	 * Function: getVisibleTerminal
    -	 *
    -	 * Returns the nearest ancestor terminal that is visible. The edge appears
    -	 * to be connected to this terminal on the display.
    -	 * 
    -	 * Parameters:
    -	 * 
    -	 * edge - <mxCell> whose visible terminal should be returned.
    -	 * source - Boolean that specifies if the source or target terminal
    -	 * should be returned.
    -	 */
    -	function getVisibleTerminal($edge, $source)
    -	{
    -	 	$model = $this->graph->model;
    -	 	$result = $model->getTerminal($edge, $source);
    -	 	$best = $result;
    -	 	
    -	 	while ($result != null)
    -	 	{
    -	 		if (!$this->graph->isCellVisible($best)||
    -	 			$this->graph->isCellCollapsed($result))
    -	 		{
    -	 			$best = $result;
    -	 		}
    -	 		
    -	 		$result = $model->getParent($result);
    -	 	}
    -
    -		// Checks if the result is not a layer
    -		if ($model->getParent($best) === $model->getRoot())
    -		{
    -			$best = null;
    -		}
    -		
    -	 	return $best;
    -	}
    -
    -	/**
    -	 * Function: updateEdgeBounds
    -	 * 
    -	 * Updates the bounds of the specified state based on the
    -	 * absolute points in the state.
    -	 */
    -	function updateEdgeBounds($state)
    -	{
    -	 	$points = $state->absolutePoints;
    - 		$p0 = $points[0];
    - 		$n = sizeof($points);
    - 		$pe = $points[$n-1];
    - 		
    - 		if ($p0->x != $pe->x || $p0->y != $pe->y)
    - 		{
    - 			$dx = $pe->x - $p0->x;
    - 			$dy = $pe->y - $p0->y;
    - 			$state->terminalDistance = sqrt($dx*$dx+$dy*$dy);
    - 		}
    - 		else
    - 		{
    - 			$state->terminalDistance = 0;
    - 		}
    - 		
    - 		$length = 0;
    -		$segments = array();
    - 		$pt = $p0;
    - 		
    - 		if ($pt != null)
    - 		{
    - 			$minX = $pt->x;
    - 			$minY = $pt->y;
    - 			$maxX = $minX;
    - 			$maxY = $minY;
    - 			
    - 			for ($i = 1; $i < $n; $i++)
    - 			{
    - 				$tmp = $points[$i];
    - 				if ($tmp != null)
    - 				{
    - 					$dx = $pt->x - $tmp->x;
    - 					$dy = $pt->y - $tmp->y;
    -
    -					$segment = sqrt($dx*$dx+$dy*$dy);
    -					array_push($segments, $segment);
    - 					$length += $segment;
    - 					$pt = $tmp;
    -
    - 					$minX = min($pt->x, $minX);
    - 					$minY = min($pt->y, $minY);
    - 					$maxX = max($pt->x, $maxX);
    - 					$maxY = max($pt->y, $maxY);
    - 				}
    - 			}
    - 			
    - 			$state->length = $length;
    - 			$state->segments = $segments;
    - 			
    - 			$state->x = $minX;
    - 			$state->y = $minY;
    - 			$state->width = $maxX - $minX;
    - 			$state->height = $maxY - $minY;
    - 		}
    -	}
    -
    -	/**
    -	 * Function: getPoint
    -	 *
    -	 * Returns the absolute point on the edge for the given relative
    -	 * <mxGeometry> as an <mxPoint>. The edge is represented by the given
    -	 * <mxCellState>.
    -	 * 
    -	 * Parameters:
    -	 * 
    -	 * state - <mxCellState> that represents the state of the parent edge.
    -	 * geometry - <mxGeometry> that represents the relative location.
    -	 */
    -	function getPoint($state, $geometry = null)
    -	{
    -        $x = $state->getCenterX();
    -        $y = $state->getCenterY();
    -
    -        if (isset($state->segments) && (!isset($geometry) || $geometry->relative))
    -        {
    -            $gx = (isset($geometry)) ? $geometry->x / 2 : 0;
    -            $pointCount = sizeof($state->absolutePoints);
    -            $dist = ($gx + 0.5) * $state->length;
    -            $segments = $state->segments;
    -            $segment = $segments[0];
    -            $length = 0;
    -            $index = 1;
    -
    -            while ($dist > $length + $segment && $index < $pointCount - 1)
    -            {
    -                $length += $segment;
    -                $segment = $segments[$index++];
    -            }
    -
    -			$factor = ($segment == 0) ? 0 : ($dist - $length) / $segment;
    -			$p0 = $state->absolutePoints[$index - 1];
    -			$pe = $state->absolutePoints[$index];
    -
    -			if ($p0 != null && $pe != null)
    -			{
    -				$gy = 0;
    -				$offsetX = 0;
    -				$offsetY = 0;
    -
    -				if (isset($geometry))
    -				{
    -					$gy = $geometry->y;
    -					$offset = $geometry->offset;
    -
    -					if (isset($offset))
    -					{
    -						$offsetX = $offset->x;
    -						$offsetY = $offset->y;
    -					}
    -				}
    -
    -				$dx = $pe->x - $p0->x;
    -				$dy = $pe->y - $p0->y;
    -				$nx = ($segment == 0) ? 0 : $dy / $segment;
    -				$ny = ($segment == 0) ? 0 : $dx / $segment;
    -
    -				$x = $p0->x + $dx * $factor + ($nx * $gy + $offsetX) * $this->scale;
    -				$y = $p0->y + $dy * $factor - ($ny * $gy - $offsetY) * $this->scale;
    -            }
    -        }
    -        else if (isset($geometry))
    -        {
    -            $offset = $geometry->offset;
    -
    -            if (isset($offset))
    -            {
    -                $x += $offset->x;
    -                $y += $offset->y;
    -            }
    -        }
    -
    -        return new mxPoint($x, $y);
    -	}
    -
    -	/**
    -	 * Function: getState
    -	 * 
    -	 * Returns the cell state for the specified cell. If
    -	 * create is true then the state is created and added
    -	 * to the cache if it does not yet exist.
    -	 */
    -	function getState($cell, $create = false)
    -	{
    -	 	$state = null;
    -	 	
    -	 	if ($cell != null)
    -	 	{
    -	 		$id = $this->getHashCode($cell);
    -		 	$state = (isset($this->states[$id])) ? $this->states[$id] : null;
    -		 	
    -		 	if ($state == null && $create && $this->graph->isCellVisible($cell))
    -		 	{
    -				$state = $this->createState($cell);
    -				$this->states[$id] = $state;
    -		 	}
    -		}
    -
    -	 	return $state;
    -	}
    -	
    -	/**
    -	 * Function: getHashCode
    -	 *
    -	 * Returns a unique string that represents the given instance.
    -	 */
    -	function getHashCode($cell)
    -	{
    -	 	// PHP >= 5.2
    -		if (function_exists("spl_object_hash"))
    -		{
    -			return spl_object_hash($cell);
    -		}
    -		else
    -		{
    -			return (string) $cell;
    -		}
    -	}
    -				
    -	/**
    -	 * Function: getStates
    -	 *
    -	 * Returns the <mxCellStates> for the given array of <mxCells>. The array
    -	 * contains all states that are not null, that is, the returned array may
    -	 * have less elements than the given array.
    -	 */
    -	function getStates()
    -	{
    -		return $this->states;
    -	}
    -
    -	/**
    -	 * Function: getStates
    -	 *
    -	 * Returns the <mxCellStates> for the given array of <mxCells>. The array
    -	 * contains all states that are not null, that is, the returned array may
    -	 * have less elements than the given array.
    -	 */
    -	function getCellStates($cells)
    -	{
    -		$result = array();
    -		$count = sizeof($cells);
    -		
    -		for ($i = 0; $i < $count; $i++)
    -		{
    -			$state = $this->getState($cells[$i]);
    -			
    -			if ($state != null)
    -			{
    -				array_push($result, $state);
    -			}
    -		}
    -		
    -		return $result;
    -	}
    -
    -	/**
    -	 * Function: removeState
    -	 * 
    -	 * Removes and returns the mxCellState for the given cell.
    -	 */
    -	function removeState($cell, $recurse = false)
    -	{
    -		if ($recurse)
    -		{
    -			$model = $this->graph->getModel();
    -			$childCount = $model->getChildCount($cell);
    -			
    -			for ($i = 0; $i < $childCount; $i++)
    -			{
    -				$this->removeState($model->getChildAt($cell, $i), true);
    -			}
    -		}
    -		
    -	 	$state = null;
    -	 	
    -	 	if ($cell != null)
    -	 	{
    -	 		$id = $this->getHashCode($cell);
    -		 	$state = $this->states[$id];
    -		 	unset($this->states[$id]);
    -		}
    -
    -	 	return $state;
    -	}
    -
    -	/**
    -	 * Function: createState
    -	 * 
    -	 * Creates the state for the specified cell.
    -	 */
    -	function createState($cell)
    -	{
    -	 	$style = $this->graph->getCellStyle($cell);
    -	 	
    -	 	return new mxCellState($this, $cell, $style);
    -	}
    -
    -}
    -?>
    diff --git a/php/src/view/mxPerimeter.php b/php/src/view/mxPerimeter.php
    deleted file mode 100644
    index 7d2b0e2a9..000000000
    --- a/php/src/view/mxPerimeter.php
    +++ /dev/null
    @@ -1,534 +0,0 @@
    -<?php
    -/**
    - * Copyright (c) 2006-2013, Gaudenz Alder
    - */
    -interface mxPerimeterFunction
    -{
    -
    -	/**
    -	 * Interface: mxPerimeterFunction
    -	 * 
    -	 * Defines the requirements for a perimeter function.
    -	 * 
    -	 * Function: apply
    -	 * 
    -	 * Implements a perimeter function.
    -	 *
    -	 * Parameters:
    -	 *
    -	 * bounds - <mxRectangle> that represents the absolute bounds of the
    -	 * vertex.
    -	 * vertex - <mxCellState> that represents the vertex.
    -	 * next - <mxPoint> that represents the nearest neighbour point on the
    -	 * given edge.
    -	 * orthogonal - Boolean that specifies if the orthogonal projection onto
    -	 * the perimeter should be returned. If this is false then the intersection
    -	 * of the perimeter and the line between the next and the center point is
    -	 * returned.
    -	 */
    -	public function apply($bounds, $vertex, $next, $orthogonal);
    -
    -}
    -
    -/**
    - * Class: mxRectanglePerimeter
    - *
    - * Implements a rectangular perimeter for the given bounds.
    - */
    -class mxRectanglePerimeter implements mxPerimeterFunction
    -{
    -
    -	/**
    -	 *
    -	 */
    -	public function apply($bounds, $vertex, $next, $orthogonal)
    -	{
    -		$cx = $bounds->x + $bounds->width / 2;
    -		$cy = $bounds->y + $bounds->height / 2;
    -		$dx = $next->x - $cx;
    -		$dy = $next->y - $cy;
    -		$alpha = atan2($dy, $dx);
    -		$p = new mxPoint(0, 0);
    -		$pi = pi();
    -		$pi2 = $pi / 2;
    -		$beta = $pi2 - $alpha;
    -		$t = atan2($bounds->height, $bounds->width);
    -		
    -		if ($alpha < - $pi + $t || $alpha > $pi - $t)
    -		{
    -			// Left side
    -			$p->x = $bounds->x;
    -			$p->y = $cy - $bounds->width * tan($alpha) / 2;
    -		}
    -		else if ($alpha < -$t)
    -		{
    -			// Top side
    -			$p->y = $bounds->y;
    -			$p->x = $cx - $bounds->height * tan($beta) / 2;
    -		}
    -		else if ($alpha < $t)
    -		{
    -			// Right side
    -			$p->x = $bounds->x + $bounds->width;
    -			$p->y = $cy + $bounds->width * tan($alpha) / 2;
    -		}
    -		else
    -		{
    -			// Bottom side
    -			$p->y = $bounds->y + $bounds->height;
    -			$p->x = $cx + $bounds->height * tan($beta) / 2;			
    -		}
    -
    -		if ($orthogonal)
    -		{
    -			if ($next->x >= $bounds->x &&
    -				$next->x <= $bounds->x + $bounds->width)
    -			{
    -				$p->x = $next->x;
    -			}
    -			else if ($next->y >= $bounds->y &&
    -			  	$next->y <= $bounds->y + $bounds->height)
    -			{
    -				$p->y = $next->y;
    -			}
    -			
    -			if ($next->x < $bounds->x)
    -			{
    -				$p->x = $bounds->x;
    -			}
    -			else if ($next->x > $bounds->x + $bounds->width)
    -			{
    -				$p->x = $bounds->x + $bounds->width + 1;
    -			}
    -			
    -			if ($next->y < $bounds->y)
    -			{
    -				$p->y = $bounds->y;
    -			}
    -			else if ($next->y > $bounds->y + $bounds->height)
    -			{
    -				$p->y = $bounds->y + $bounds->height + 1;
    -			}
    -		}
    -		
    -		return $p;
    -	}
    -
    -}
    -
    -/**
    - * Class: mxEllipsePerimeter
    - * 
    - * Implements an elliptic perimeter. See <RectanglePerimeter>
    - * for a description of the parameters.
    - */
    -class mxEllipsePerimeter implements mxPerimeterFunction
    -{
    -
    -	/**
    -	 *
    -	 */
    -	public function apply($bounds, $vertex, $next, $orthogonal)
    -	{
    -		$x = $bounds->x;
    -		$y = $bounds->y;
    -		$a = $bounds->width / 2;
    -		$b = $bounds->height / 2;
    -		$cx = $x + $a;
    -		$cy = $y + $b;
    -		$px = $next->x;
    -		$py = $next->y;
    -		
    -		// Calculates straight line equation through
    -		// point and ellipse center y = d * x + h
    -		$dx = (int) ($px - $cx);
    -		$dy = (int) ($py - $cy);
    -		
    -		if ($dx == 0 && $dy != 0)
    -		{
    -			return new mxPoint($cx, $cy + $b * $dy / abs($dy));
    -		}
    -		else if ($dx == 0 && $dy == 0)
    -		{
    -			return new mxPoint($px, $py);
    -		}
    -
    -		if ($orthogonal)
    -		{
    -			if ($py >= $y && $py <= $y + $bounds->height)
    -			{
    -				$ty = $py - $cy;
    -				$tx = sqrt($a*$a*(1-($ty*$ty)/($b*$b)));
    -				
    -				if (is_nan($tx))
    -				{
    -					$tx = 0;
    -				}
    -				
    -				if ($px <= $x)
    -				{
    -					$tx = -$tx;
    -				}
    -				
    -				return new mxPoint($cx+$tx, $py);
    -			}
    -			
    -			if ($px >= $x && $px <= $x + $bounds->width)
    -			{
    -				$tx = $px - $cx;
    -				$ty = sqrt($b*$b*(1-($tx*$tx)/($a*$a)));
    -				
    -				if (is_nan($ty))
    -				{
    -					$ty = 0;
    -				}
    -				
    -				if ($py <= $y)
    -				{
    -					$ty = -$ty;	
    -				}
    -				
    -				return new mxPoint($px, $cy + $ty);
    -			}
    -		}
    -		
    -		// Calculates intersection
    -		$d = $dy / $dx;
    -		$h = $cy - $d * $cx;
    -		$e = $a * $a * $d * $d + $b * $b;
    -		$f = -2 * $cx * $e;
    -		$g = $a * $a * $d * $d * $cx * $cx +
    -				$b * $b * $cx * $cx -
    -				$a * $a * $b * $b;
    -		$det = sqrt($f * $f - 4 * $e * $g);
    -		
    -		// Two solutions (perimeter points)
    -		$xout1 = (-$f + $det) / (2 * $e);
    -		$xout2 = (-$f - $det) / (2 * $e);
    -		$yout1 = $d * $xout1 + $h;
    -		$yout2 = $d * $xout2 + $h;
    -		$dist1 = sqrt(pow($xout1 - $px, 2)
    -					+ pow($yout1 - $py, 2));
    -		$dist2 = sqrt(pow($xout2 - $px, 2)
    -					+ pow($yout2 - $py, 2));
    -
    -		// Correct solution
    -		$xout = 0;
    -		$yout = 0;
    -		if ($dist1 < $dist2)
    -		{
    -			$xout = $xout1;
    -			$yout = $yout1;
    -		}
    -		else
    -		{
    -			$xout = $xout2;
    -			$yout = $yout2;
    -		}
    -		
    -		return new mxPoint($xout, $yout);
    -	}
    -
    -}
    -
    -/**
    - * Class: mxRhombusPerimeter
    - * 
    - * Implements a rhombus (aka diamond) perimeter. See <RectanglePerimeter>
    - * for a description of the parameters.
    - */
    -class mxRhombusPerimeter implements mxPerimeterFunction
    -{
    -
    -	/**
    -	 *
    -	 */
    -	public function apply($bounds, $vertex, $next, $orthogonal)
    -	{
    -		$x = $bounds->x;
    -		$y = $bounds->y;
    -		$w = $bounds->width;
    -		$h = $bounds->height;
    -		
    -		$cx = $x + $w / 2;
    -		$cy = $y + $h / 2;
    -		
    -		$px = $next->x;
    -		$py = $next->y;
    -		
    -		// Special case for intersecting the diamond's corners
    -		if ($cx == $px)
    -		{
    -			if ($cy > $py)
    -			{
    -				return new mxPoint($cx, $y); // top
    -			}
    -			else
    -			{
    -				return new mxPoint($cx, $y + $h); // bottom
    -			}
    -		}
    -		else if ($cy == $py)
    -		{
    -			if ($cx > $px)
    -			{
    -				return new mxPoint($x, $cy); // left
    -			}
    -			else
    -			{
    -				return new mxPoint($x + $w, $cy); // right
    -			}
    -		}
    -		
    -		$tx = $cx;
    -		$ty = $cy;
    -		
    -		if ($orthogonal)
    -		{
    -			if ($px >= $x && $px <= $x + $w)
    -			{
    -				$tx = $px;
    -			}
    -			else if ($py >= $y && $py <= $y + $h)
    -			{
    -				$ty = $py;
    -			}
    -		}
    -		
    -		// In which quadrant will the intersection be?
    -		// set the slope and offset of the border line accordingly
    -		if ($px < $cx)
    -		{
    -			if ($py < $cy)
    -			{
    -				return mxUtils::intersection($px, $py,
    -					$tx, $ty, $cx, $y, $x, $cy);
    -			}
    -			else
    -			{
    -				return mxUtils::intersection($px, $py,
    -					$tx, $ty, $cx, $y + $h, $x, $cy);
    -			}
    -		}
    -		else if ($py < $cy)
    -		{
    -			return mxUtils::intersection($px, $py,
    -				$tx, $ty, $cx, $y, $x + $w, $cy);
    -		}
    -		else
    -		{
    -			return mxUtils::intersection($px, $py,
    -				$tx, $ty, $cx, $y + $h, $x + $w, $cy);
    -		}
    -	}
    -
    -}
    -
    -/**
    - * Class: mxTrianglePerimeter
    - * 
    - * Implements a triangle perimeter. See <RectanglePerimeter> for a
    - * description of the parameters.
    - */
    -class mxTrianglePerimeter implements mxPerimeterFunction
    -{
    -
    -	/**
    -	 *
    -	 */
    -	public function apply($bounds, $vertex, $next, $orthogonal)
    -	{
    -		$direction = ($vertex != null) ?
    -			mxUtils::getValue($vertex->style, mxConstants::$STYLE_DIRECTION) : null;
    -		$vertical = $direction == mxConstants::$DIRECTION_NORTH ||
    -			$direction == mxConstants::$DIRECTION_SOUTH;
    -
    -		$x = $bounds->x;
    -		$y = $bounds->y;
    -		$w = $bounds->width;
    -		$h = $bounds->height;
    -		
    -		$cx = $x + $w / 2;
    -		$cy = $y + $h / 2;
    -		
    -		$start = new mxPoint($x, $y);
    -		$corner = new mxPoint($x + $w, $cy);
    -		$end = new mxPoint($x, $y + $h);
    -		
    -		if ($direction == mxConstants::$DIRECTION_NORTH)
    -		{
    -			$start = end;
    -			$corner = new mxPoint($cx, $y);
    -			$end = new mxPoint($x + $w, $y + $h);
    -		}
    -		else if ($direction == mxConstants::$DIRECTION_SOUTH)
    -		{
    -			$corner = new mxPoint($cx, $y + $h);
    -			$end = new mxPoint($x + $w, $y);
    -		}
    -		else if ($direction == mxConstants::$DIRECTION_WEST)
    -		{
    -			$start = new mxPoint($x + $w, $y);
    -			$corner = new mxPoint($x, $cy);
    -			$end = new mxPoint($x + $w, $y + $h);
    -		}
    -
    -		$dx = $next->x - $cx;
    -		$dy = $next->y - $cy;
    -
    -		$alpha = ($vertical) ? atan2($dx, $dy) : atan2($dy, $dx);
    -		$t = ($vertical) ? Matan2($w, $h) : atan2($h, $w);
    -		
    -		$base = false;
    -		
    -		if ($direction == mxConstants::$DIRECTION_NORTH ||
    -			$direction == mxConstants::$DIRECTION_WEST)
    -		{
    -			$base = $alpha > -$t && $alpha < $t;
    -		}
    -		else
    -		{
    -			$base = $alpha < -pi() + $t || $alpha > pi() - $t;	
    -		}
    -
    -		$result = null;			
    -
    -		if ($base)
    -		{
    -			if ($orthogonal && (($vertical && $next->x >= $start->x &&
    -				$next->x <= $end->x) || (!$vertical && $next->y >= $start->y &&
    -				$next->y <= $end->y)))
    -			{
    -				if ($vertical)
    -				{
    -					$result = new mxPoint($next->x, $start->y);
    -				}
    -				else
    -				{
    -					$result = new mxPoint($start->x, $next->y);
    -				}
    -			}
    -			else
    -			{
    -				if ($direction == mxConstants::$DIRECTION_NORTH)
    -				{
    -					$result = new mxPoint($x + $w / 2 + $h * tan($alpha) / 2,
    -						$y + $h);
    -				}
    -				else if ($direction == mxConstants::$DIRECTION_SOUTH)
    -				{
    -					$result = new mxPoint($x + $w / 2 - $h * tan($alpha) / 2,
    -						$y);
    -				}
    -				else if ($direction == mxConstants::$DIRECTION_WEST)
    -				{
    -					$result = new mxPoint($x + $w, $y + $h / 2 +
    -						$w * tan($alpha) / 2);
    -				}
    -				else
    -				{
    -					$result = new mxPoint($x, $y + $h / 2 -
    -						$w * tan($alpha) / 2);
    -				}
    -			}
    -		}
    -		else
    -		{
    -			if ($orthogonal)
    -			{
    -				$pt = new mxPoint($cx, $cy);
    -		
    -				if ($next->y >= $y && $next->y <= $y + $h)
    -				{
    -					$pt->x = ($vertical) ? $cx : (
    -						($direction == mxConstants::$DIRECTION_WEST) ?
    -							$x + $w : $x);
    -					$pt->y = $next->y;
    -				}
    -				else if ($next->x >= $x && $next->x <= $x + $w)
    -				{
    -					$pt->x = $next->x;
    -					$pt->y = (!$vertical) ? $cy : (
    -						($direction == mxConstants::$DIRECTION_NORTH) ?
    -							$y + $h : $y);
    -				}
    -				
    -				// Compute angle
    -				$dx = $next->x - $pt->x;
    -				$dy = $next->y - $pt->y;
    -				
    -				$cx = $pt->x;
    -				$cy = $pt->y;
    -			}
    -
    -			if (($vertical && $next->x <= $x + $w / 2) ||
    -				(!$vertical && $next->y <= $y + $h / 2))
    -			{
    -				$result = mxUtils::intersection($next->x, $next->y, $cx, $cy,
    -					$start->x, $start->y, $corner->x, $corner->y);
    -			}
    -			else
    -			{
    -				$result = mxUtils::intersection($next->x, $next->y, $cx, $cy,
    -					$corner->x, $corner->y, $end->x, $end->y);
    -			}
    -		}
    -		
    -		if ($result == null)
    -		{
    -			$result = new mxPoint($cx, $cy);
    -		}
    -		
    -		return $result;
    -	}
    -
    -}
    -
    -/**
    - * Class: mxPerimeter
    - * 
    - * Provides various perimeter functions to be used in a style
    - * as the value of <mxConstants.STYLE_PERIMETER>.
    - * 
    - * The parameters are explained in <RectanglePerimeter>.
    - */
    -class mxPerimeter
    -{
    -
    -	/**
    -	 * Variable: RectanglePerimeter
    -	 *
    -	 * Provides a rectangular perimeter.
    -	 */
    -	public static $RectanglePerimeter;
    -
    -	/**
    -	 * Variable: EllipsePerimeter
    -	 *
    -	 * Provides an elliptic perimeter.
    -	 */
    -	public static $EllipsePerimeter;
    -
    -	/**
    -	 * Variable: RhombusPerimeter
    -	 *
    -	 * Provides a rhombus (aka diamond) perimeter.
    -	 */
    -	public static $RhombusPerimeter;
    -
    -	/**
    -	 * Variable: TrianglePerimeter
    -	 *
    -	 * Provides a triangle perimeter. See <RectanglePerimeter> for a
    -	 * description of the parameters.
    -	 */
    -	public static $TrianglePerimeter;
    -
    -}
    -
    -// Instanciates the declared static members of the above class
    -mxPerimeter::$RectanglePerimeter = new mxRectanglePerimeter();
    -mxPerimeter::$EllipsePerimeter = new mxEllipsePerimeter();
    -mxPerimeter::$RhombusPerimeter = new mxRhombusPerimeter();
    -mxPerimeter::$TrianglePerimeter = new mxTrianglePerimeter();
    -?>
    diff --git a/php/src/view/mxStyleRegistry.php b/php/src/view/mxStyleRegistry.php
    deleted file mode 100644
    index 955922a75..000000000
    --- a/php/src/view/mxStyleRegistry.php
    +++ /dev/null
    @@ -1,70 +0,0 @@
    -<?php
    -/**
    - * Copyright (c) 2006-2013, Gaudenz Alder
    - */
    -class mxStyleRegistry
    -{
    -
    -	/**
    -	 * Class: mxStyleRegistry
    -	 *
    -	 * Singleton class that acts as a global converter from string to object values
    -	 * in a style. This is currently only used to perimeters and edge styles.
    -	 * 
    -	 * Variable: values
    -	 *
    -	 * Maps from strings to objects.
    -	 */
    -	public static $values = array();
    -
    -	/**
    -	 * Function: putValue
    -	 *
    -	 * Puts the given object into the registry under the given name.
    -	 */
    -	static function putValue($name, $value)
    -	{
    -		mxStyleRegistry::$values[$name] = $value;
    -	}
    -
    -	/**
    -	 * Function: getValue
    -	 *
    -	 * Returns the value associated with the given name.
    -	 */
    -	static function getValue($name)
    -	{
    -		return (isset(mxStyleRegistry::$values[$name])) ? mxStyleRegistry::$values[$name] : null;
    -	}
    -
    -	/**
    -	 * Function: getName
    -	 * 
    -	 * Returns the name for the given value.
    -	 */
    -	static function getName($value)
    -	{
    -		foreach (mxStyleRegistry::$values as $key => $val)
    -		{
    -			if ($value === $val)
    -			{
    -				return $key;
    -			}
    -		}
    -		
    -		return null;
    -	}
    -
    -}
    -
    -mxStyleRegistry::putValue(mxConstants::$EDGESTYLE_ELBOW, mxEdgeStyle::$ElbowConnector);
    -mxStyleRegistry::putValue(mxConstants::$EDGESTYLE_ENTITY_RELATION, mxEdgeStyle::$EntityRelation);
    -mxStyleRegistry::putValue(mxConstants::$EDGESTYLE_LOOP, mxEdgeStyle::$Loop);
    -mxStyleRegistry::putValue(mxConstants::$EDGESTYLE_SIDETOSIDE, mxEdgeStyle::$SideToSide);
    -mxStyleRegistry::putValue(mxConstants::$EDGESTYLE_TOPTOBOTTOM, mxEdgeStyle::$TopToBottom);
    -
    -mxStyleRegistry::putValue(mxConstants::$PERIMETER_ELLIPSE, mxPerimeter::$EllipsePerimeter);
    -mxStyleRegistry::putValue(mxConstants::$PERIMETER_RECTANGLE, mxPerimeter::$RectanglePerimeter);
    -mxStyleRegistry::putValue(mxConstants::$PERIMETER_RHOMBUS, mxPerimeter::$RhombusPerimeter);
    -mxStyleRegistry::putValue(mxConstants::$PERIMETER_TRIANGLE, mxPerimeter::$TrianglePerimeter);
    -?>
    diff --git a/php/src/view/mxStylesheet.php b/php/src/view/mxStylesheet.php
    deleted file mode 100644
    index f0c86824c..000000000
    --- a/php/src/view/mxStylesheet.php
    +++ /dev/null
    @@ -1,226 +0,0 @@
    -<?php
    -/**
    - * Copyright (c) 2006-2013, Gaudenz Alder
    - */
    -class mxStylesheet
    -{
    -	
    -	/**
    -	 * Class: mxStylesheet
    -	 * 
    -	 * Defines the appearance of the cells in a graph. See
    -	 * <putCellStyle> for an example of creating a style.
    -	 *
    -	 * Default Styles:
    -	 * 
    -	 * The stylesheet contains two built-om styles, which are
    -	 * used if no style is defined for a cell:
    -	 *
    -	 *   defaultVertex - Default style for vertices
    -	 *   defaultEdge - Default style for edges
    -	 *   
    -	 * Function: styles
    -	 * 
    -	 * Maps from names to styles.
    -	 */
    -	var $styles = array();
    -
    -	/**
    -	 * Constructor: mxStylesheet
    -	 * 
    -	 * Constructs a new stylesheet and assigns default styles.
    -	 */
    -	function mxStylesheet()
    -	{
    -	 	$this->putDefaultVertexStyle($this->createDefaultVertexStyle());
    -	 	$this->putDefaultEdgeStyle($this->createDefaultEdgeStyle());
    -	}
    -
    -	/**
    -	 * Function: createDefaultVertexStyle
    -	 * 
    -	 * Creates and returns the default vertex style.
    -	 */
    -	function createDefaultVertexStyle()
    -	{
    -	 	$style = array();
    -	 	
    -	 	$style[mxConstants::$STYLE_SHAPE] = mxConstants::$SHAPE_RECTANGLE;
    -	 	$style[mxConstants::$STYLE_PERIMETER] = mxPerimeter::$RectanglePerimeter;
    -	 	$style[mxConstants::$STYLE_VERTICAL_ALIGN] = mxConstants::$ALIGN_MIDDLE;
    -	 	$style[mxConstants::$STYLE_ALIGN] = mxConstants::$ALIGN_CENTER;
    -	 	$style[mxConstants::$STYLE_FILLCOLOR] = "#C3D9FF";
    -	 	$style[mxConstants::$STYLE_STROKECOLOR] = "#6482B9";
    -	 	$style[mxConstants::$STYLE_FONTCOLOR] = "#774400";
    -	 	
    -	 	return $style;
    -	}
    -
    -	/**
    -	 * Function: createDefaultEdgeStyle
    -	 * 
    -	 * Creates and returns the default edge style.
    -	 */
    -	function createDefaultEdgeStyle()
    -	{
    -	 	$style = array();
    -	 	
    -		$style[mxConstants::$STYLE_SHAPE] = mxConstants::$SHAPE_CONNECTOR;
    -		$style[mxConstants::$STYLE_ENDARROW] = mxConstants::$ARROW_CLASSIC;
    -		$style[mxConstants::$STYLE_VERTICAL_ALIGN] = mxConstants::$ALIGN_MIDDLE;
    -		$style[mxConstants::$STYLE_ALIGN] = mxConstants::$ALIGN_CENTER;
    -		$style[mxConstants::$STYLE_STROKECOLOR] = "#6482B9";
    -		$style[mxConstants::$STYLE_FONTCOLOR] = "#446299";
    -	 	
    -	 	return $style;
    -	}
    -	
    -	/**
    -	 * Function: putDefaultVertexStyle
    -	 * 
    -	 * Sets the default style for vertices.
    -	 */
    -	function putDefaultVertexStyle($style)
    -	{
    -		$this->putCellStyle("defaultVertex", $style);
    -	}
    -
    -	/**
    -	 * Function: putDefaultEdgeStyle
    -	 * 
    -	 * Sets the default style for edges.
    -	 */
    -	function putDefaultEdgeStyle($style)
    -	{
    -		$this->putCellStyle("defaultEdge", $style);
    -	}
    -
    -	/**
    -	 * Function: getDefaultVertexStyle
    -	 * 
    -	 * Returns the default style for vertices.
    -	 */
    -	function getDefaultVertexStyle()
    -	{
    -		return $this->styles["defaultVertex"];
    -	}
    -
    -	/**
    -	 * Function: getDefaultEdgeStyle
    -	 * 
    -	 * Sets the default style for edges.
    -	 */
    -	function getDefaultEdgeStyle()
    -	{
    -		return $this->styles["defaultEdge"];
    -	}
    -	
    -	/**
    -	 * Function: putCellStyle
    -	 * 
    -	 * Stores the specified style under the given name.
    -	 *
    -	 * Example:
    -	 * 
    -	 * The following example adds a new style (called 'rounded') into an
    -	 * existing stylesheet:
    -	 * 
    -	 * (code)
    -	 * var style = new Array();
    -	 * style[mxConstants.STYLE_SHAPE] = mxConstants.SHAPE_RECTANGLE;
    -	 * style[mxConstants.STYLE_PERIMETER] = mxPerimeter.RightAngleRectanglePerimeter;
    -	 * style[mxConstants.STYLE_ROUNDED] = 'true';
    -	 * graph.stylesheet.putCellStyle('rounded', style);
    -	 * (end)
    -	 * 
    -	 * In the above example, the new style is an array. The possible  keys of
    -	 * the array are all the constants in <mxConstants> that start with STYLE
    -	 * and the values are either JavaScript objects, such as
    -	 * <mxPerimeter.RightAngleRectanglePerimeter> (which is in fact a function)
    -	 * or expressions, such as 'true'. Note that not all keys will be
    -	 * interpreted by all shapes (eg. the line shape ignores the fill color).
    -	 * The final call to this method associates the style with a name in the
    -	 * stylesheet. The style is used in a cell with the following code:
    -	 * 
    -	 * (code)
    -	 * model.setStyle(cell, 'rounded');
    -	 * (end)
    -	 * 
    -	 * Parameters:
    -	 * 
    -	 * name - Name for the style to be stored.
    -	 * style - Key, value pairs that define the style.
    -	 */
    -	function putCellStyle($name, $style)
    -	{
    -		$this->styles[$name] = $style;
    -	}
    -	
    -	/**
    -	 * Function: getCellStyle
    -	 * 
    -	 * Returns the cell style for the specified cell or the given defaultStyle
    -	 * if no style can be found for the given stylename.
    -	 * 
    -	 * Parameters:
    -	 * 
    -	 * name - String of the form [(stylename|key=value);] that represents the
    -	 * style.
    -	 * defaultStyle - Default style to be returned if no style can be found.
    -	 */
    -	function getCellStyle($name, $defaultStyle = null)
    -	{
    -		$style = $defaultStyle;
    -		
    -		if ($name != null && strlen($name) > 0)
    -		{
    -			$pairs = explode(";", $name);
    -
    -			if (isset($pairs))
    -			{
    -				if (isset($style) && $name{0} != ';')
    -				{
    -					$style = array_slice($style, 0);
    -				}
    -				else
    -				{
    -					$style = array();
    -				}
    -				
    -				for ($i = 0; $i < sizeof($pairs); $i++)
    -				{
    -					$tmp = $pairs[$i];
    -					$pos = strpos($pairs[$i], "=");
    -					
    -					if ($pos !== false)
    -					{
    -						$key = substr($tmp, 0, $pos);
    -						$value = substr($tmp, $pos+1);
    -						
    -						if ($value == mxConstants::$NONE)
    -						{
    -							unset($style[$key]);
    -						}
    -						else
    -						{
    -							$style[$key] = $value;
    -						}
    -					}
    -					else if (isset($this->styles[$tmp]))
    -					{
    -						$tmpStyle = $this->styles[$tmp];
    -
    -						foreach ($tmpStyle as $key => $value)
    -						{
    -							$style[$key] = $value;
    -						}
    -					}
    -				}
    -			}
    -		}
    -
    -		return $style;
    -	}
    -
    -}
    -?>
    diff --git a/php/test/mxCodecTest.php b/php/test/mxCodecTest.php
    deleted file mode 100644
    index 1275a98f0..000000000
    --- a/php/test/mxCodecTest.php
    +++ /dev/null
    @@ -1,75 +0,0 @@
    -<?php
    -/**
    - * Copyright (c) 2006, Gaudenz Alder
    - */
    -include_once("../src/mxServer.php");
    -
    -/**
    - * Function: main
    - * 
    - * Creates a graph using the API and converts it into a PNG image.
    - */
    -function main()
    -{
    -	// Creates graph with model
    -	$model = new mxGraphModel();
    -	$graph = new mxGraph($model);
    -	$parent = $graph->getDefaultParent();
    -
    -	// Adds cells into the model
    -	$model->beginUpdate();
    -	try
    -	{
    -		$v1 = $graph->insertVertex($parent, null, "Hello", 20, 20, 80, 30);
    -		$v2 = $graph->insertVertex($parent, null, "World!", 200, 150, 80, 30);
    -		$e1 = $graph->insertEdge($parent, null, "e1", $v1, $v2);
    -		$e1->getGeometry()->points = array(new mxPoint(10, 10));
    -
    -		$v3 = $graph->insertVertex($e1, null, "v3", 0, 0, 40, 40, "shape=ellipse");
    -		$v3->getGeometry()->relative = true;
    -		$v3->getGeometry()->offset = new mxPoint(-20, -20);
    -		
    -		$model->add($parent, $e1, 0);
    -	}
    -	catch (Exception $e)
    -	{
    -		$model->endUpdate();
    -		throw($e);
    -	}
    -	$model->endUpdate();
    -
    -	$doc = mxUtils::createXmlDocument();
    -	$enc = new mxCodec($doc);
    -	$node = $enc->encode($model);
    -	$xml1 = $doc->saveXML($node);
    -
    -	$doc = mxUtils::parseXml($xml1);
    -	$dec = new mxCodec($doc);
    -	$dec->decode($doc->documentElement, $model);
    -
    -	$doc = mxUtils::createXmlDocument();
    -	$enc = new mxCodec($doc);
    -	$node = $enc->encode($model);
    -	$xml2 = $doc->saveXML($node);
    -
    -	if ($xml1 == $xml2)
    -	{
    -		echo "Test Passed: ".htmlentities($xml1);
    -	}
    -	else
    -	{
    -		echo "Test Failed: <br>xml1=".htmlentities($xml1)."<br>xml2=".htmlentities($xml2);
    -	}
    -}
    -
    -// Uses a local font so that all examples work on all platforms. This can be
    -// changed to vera on Mac or arial on Windows systems.
    -mxConstants::$DEFAULT_FONTFAMILY = "verah";
    -putenv("GDFONTPATH=".realpath("../examples/ttf"));
    -
    -// If you can't get the fonts to render try using one of the following:
    -//mxConstants::$DEFAULT_FONTFAMILY = "C:\WINDOWS\Fonts\arial.ttf";
    -//mxConstants::$TTF_ENABLED = false;
    -
    -main();
    -?>