12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- /**
- * Copyright (c) 2006-2017, JGraph Ltd
- * Copyright (c) 2006-2017, Gaudenz Alder
- */
- /**
- * 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.
- * @constructor
- * @class Implements a basic 2D point. Known subclassers = {@link mxRectangle}.
- * @param {number} x X-coordinate of the point.
- * @param {number} y Y-coordinate of the point.
- */
- UrlLibrary = function(ui, data, title)
- {
- StorageFile.call(this, ui, data, title);
-
- var fname = title;
- var last = fname.lastIndexOf('/');
-
- if (last >= 0)
- {
- fname = fname.substring(last + 1);
- }
-
- this.fname = fname;
- };
- //Extends mxEventSource
- mxUtils.extend(UrlLibrary, StorageFile);
- /**
- * Translates this point by the given vector.
- *
- * @param {number} dx X-coordinate of the translation.
- * @param {number} dy Y-coordinate of the translation.
- */
- UrlLibrary.prototype.getHash = function()
- {
- return 'U' + encodeURIComponent(this.title);
- };
- /**
- * Translates this point by the given vector.
- *
- * @param {number} dx X-coordinate of the translation.
- * @param {number} dy Y-coordinate of the translation.
- */
- UrlLibrary.prototype.getTitle = function()
- {
- return this.fname;
- };
- /**
- * Translates this point by the given vector.
- *
- * @param {number} dx X-coordinate of the translation.
- * @param {number} dy Y-coordinate of the translation.
- */
- UrlLibrary.prototype.isAutosave = function()
- {
- return false;
- };
- /**
- * Overridden to avoid updating data with current file.
- */
- UrlLibrary.prototype.isEditable = function(title, success, error)
- {
- return false;
- };
- /**
- * Overridden to avoid updating data with current file.
- */
- UrlLibrary.prototype.saveAs = function(title, success, error)
- {
- // Cannot be saved
- };
- /**
- * Returns the location as a new object.
- * @type mx.Point
- */
- UrlLibrary.prototype.open = function()
- {
- // Do nothing - this should never be called
- };
|