diff options
author | adhitya | 2016-04-12 07:02:39 +0000 |
---|---|---|
committer | adhitya | 2016-04-12 07:02:39 +0000 |
commit | dd83478e3fcaac98de690aa59e6288ad41a1c351 (patch) | |
tree | 38653bdf0ae95053f66777c4ac3fe5be5d8fbd33 /src/js/io/mxStylesheetCodec.js | |
parent | 92f3207b50a1caca07df5c5b238212af3358905b (diff) | |
download | xcos-on-web-dd83478e3fcaac98de690aa59e6288ad41a1c351.tar.gz xcos-on-web-dd83478e3fcaac98de690aa59e6288ad41a1c351.tar.bz2 xcos-on-web-dd83478e3fcaac98de690aa59e6288ad41a1c351.zip |
Keyboard shortcuts work properly
Diffstat (limited to 'src/js/io/mxStylesheetCodec.js')
-rw-r--r-- | src/js/io/mxStylesheetCodec.js | 210 |
1 files changed, 0 insertions, 210 deletions
diff --git a/src/js/io/mxStylesheetCodec.js b/src/js/io/mxStylesheetCodec.js deleted file mode 100644 index 7636eb1..0000000 --- a/src/js/io/mxStylesheetCodec.js +++ /dev/null @@ -1,210 +0,0 @@ -/** - * $Id: mxStylesheetCodec.js,v 1.19 2011-06-13 08:18:42 gaudenz Exp $ - * Copyright (c) 2006-2010, JGraph Ltd - */ -mxCodecRegistry.register(function() -{ - /** - * Class: mxStylesheetCodec - * - * Codec for <mxStylesheet>s. This class is created and registered - * dynamically at load time and used implicitely via <mxCodec> - * and the <mxCodecRegistry>. - */ - var codec = new mxObjectCodec(new mxStylesheet()); - - /** - * Function: encode - * - * Encodes a stylesheet. See <decode> for a description of the - * format. - */ - codec.encode = function(enc, obj) - { - var node = enc.document.createElement(this.getName()); - - for (var i in obj.styles) - { - var style = obj.styles[i]; - var styleNode = enc.document.createElement('add'); - - if (i != null) - { - styleNode.setAttribute('as', i); - - for (var j in style) - { - var value = this.getStringValue(j, style[j]); - - if (value != null) - { - var entry = enc.document.createElement('add'); - entry.setAttribute('value', value); - entry.setAttribute('as', j); - styleNode.appendChild(entry); - } - } - - if (styleNode.childNodes.length > 0) - { - node.appendChild(styleNode); - } - } - } - - return node; - }; - - /** - * Function: getStringValue - * - * Returns the string for encoding the given value. - */ - codec.getStringValue = function(key, value) - { - var type = typeof(value); - - if (type == 'function') - { - value = mxStyleRegistry.getName(style[j]); - } - else if (type == 'object') - { - value = null; - } - - return value; - }; - - /** - * Function: decode - * - * Reads a sequence of the following child nodes - * and attributes: - * - * Child Nodes: - * - * add - Adds a new style. - * - * Attributes: - * - * as - Name of the style. - * extend - Name of the style to inherit from. - * - * Each node contains another sequence of add and remove nodes with the following - * attributes: - * - * as - Name of the style (see <mxConstants>). - * value - Value for the style. - * - * Instead of the value-attribute, one can put Javascript expressions into - * the node as follows: - * <add as="perimeter">mxPerimeter.RectanglePerimeter</add> - * - * A remove node will remove the entry with the name given in the as-attribute - * from the style. - * - * Example: - * - * (code) - * <mxStylesheet as="stylesheet"> - * <add as="text"> - * <add as="fontSize" value="12"/> - * </add> - * <add as="defaultVertex" extend="text"> - * <add as="shape" value="rectangle"/> - * </add> - * </mxStylesheet> - * (end) - */ - codec.decode = function(dec, node, into) - { - var obj = into || new this.template.constructor(); - var id = node.getAttribute('id'); - - if (id != null) - { - dec.objects[id] = obj; - } - - node = node.firstChild; - - while (node != null) - { - if (!this.processInclude(dec, node, obj) && - node.nodeName == 'add') - { - var as = node.getAttribute('as'); - - if (as != null) - { - var extend = node.getAttribute('extend'); - var style = (extend != null) ? mxUtils.clone(obj.styles[extend]) : null; - - if (style == null) - { - if (extend != null) - { - mxLog.warn('mxStylesheetCodec.decode: stylesheet ' + - extend + ' not found to extend'); - } - - style = new Object(); - } - - var entry = node.firstChild; - - while (entry != null) - { - if (entry.nodeType == mxConstants.NODETYPE_ELEMENT) - { - var key = entry.getAttribute('as'); - - if (entry.nodeName == 'add') - { - var text = mxUtils.getTextContent(entry); - var value = null; - - if (text != null && - text.length > 0) - { - value = mxUtils.eval(text); - } - else - { - value = entry.getAttribute('value'); - - if (mxUtils.isNumeric(value)) - { - value = parseFloat(value); - } - } - - if (value != null) - { - style[key] = value; - } - } - else if (entry.nodeName == 'remove') - { - delete style[key]; - } - } - - entry = entry.nextSibling; - } - - obj.putCellStyle(as, style); - } - } - - node = node.nextSibling; - } - - return obj; - }; - - // Returns the codec into the registry - return codec; - -}()); |