/** * Copyright (c) 2006-2012, JGraph Ltd */ Format = function(editorUi, container) { this.editorUi = editorUi; this.container = container; }; /** * Returns information about the current selection. */ Format.prototype.labelIndex = 0; /** * Returns information about the current selection. */ Format.prototype.diagramIndex = 0; /** * Returns information about the current selection. */ Format.prototype.currentIndex = 0; /** * Returns information about the current selection. */ Format.prototype.showCloseButton = true; /** * Background color for inactive tabs. */ Format.prototype.inactiveTabBackgroundColor = '#f1f3f4'; /** * Background color for inactive tabs. */ Format.prototype.roundableShapes = ['label', 'rectangle', 'internalStorage', 'corner', 'parallelogram', 'swimlane', 'triangle', 'trapezoid', 'ext', 'step', 'tee', 'process', 'link', 'rhombus', 'offPageConnector', 'loopLimit', 'hexagon', 'manualInput', 'card', 'curlyBracket', 'singleArrow', 'callout', 'doubleArrow', 'flexArrow', 'umlLifeline']; /** * Adds the label menu items to the given menu and parent. */ Format.prototype.init = function() { var ui = this.editorUi; var editor = ui.editor; var graph = editor.graph; this.update = mxUtils.bind(this, function(sender, evt) { this.clearSelectionState(); this.refresh(); }); graph.getSelectionModel().addListener(mxEvent.CHANGE, this.update); graph.addListener(mxEvent.EDITING_STARTED, this.update); graph.addListener(mxEvent.EDITING_STOPPED, this.update); graph.getModel().addListener(mxEvent.CHANGE, this.update); graph.addListener(mxEvent.ROOT, mxUtils.bind(this, function() { this.refresh(); })); ui.addListener('styleChanged', mxUtils.bind(this, function(sender, evt) { this.refresh(); })); editor.addListener('autosaveChanged', mxUtils.bind(this, function() { this.refresh(); })); this.refresh(); }; /** * Returns information about the current selection. */ Format.prototype.clearSelectionState = function() { this.selectionState = null; }; /** * Returns information about the current selection. */ Format.prototype.getSelectionState = function() { if (this.selectionState == null) { this.selectionState = this.createSelectionState(); } return this.selectionState; }; /** * Returns information about the current selection. */ Format.prototype.createSelectionState = function() { var cells = this.editorUi.editor.graph.getSelectionCells(); var result = this.initSelectionState(); for (var i = 0; i < cells.length; i++) { this.updateSelectionStateForCell(result, cells[i], cells); } return result; }; /** * Returns information about the current selection. */ Format.prototype.initSelectionState = function() { return {vertices: [], edges: [], x: null, y: null, width: null, height: null, style: {}, containsImage: false, containsLabel: false, fill: true, glass: true, rounded: true, autoSize: false, image: true, shadow: true, lineJumps: true, resizable: true, table: false, cell: false, row: false, movable: true, rotatable: true, stroke: true}; }; /** * Returns information about the current selection. */ Format.prototype.updateSelectionStateForCell = function(result, cell, cells) { var graph = this.editorUi.editor.graph; if (graph.getModel().isVertex(cell)) { result.resizable = result.resizable && graph.isCellResizable(cell); result.rotatable = result.rotatable && graph.isCellRotatable(cell); result.movable = result.movable && graph.isCellMovable(cell) && !graph.isTableRow(cell) && !graph.isTableCell(cell); result.table = result.table || graph.isTable(cell); result.cell = result.cell || graph.isTableCell(cell); result.row = result.row || graph.isTableRow(cell); result.vertices.push(cell); var geo = graph.getCellGeometry(cell); if (geo != null) { if (geo.width > 0) { if (result.width == null) { result.width = geo.width; } else if (result.width != geo.width) { result.width = ''; } } else { result.containsLabel = true; } if (geo.height > 0) { if (result.height == null) { result.height = geo.height; } else if (result.height != geo.height) { result.height = ''; } } else { result.containsLabel = true; } if (!geo.relative || geo.offset != null) { var x = (geo.relative) ? geo.offset.x : geo.x; var y = (geo.relative) ? geo.offset.y : geo.y; if (result.x == null) { result.x = x; } else if (result.x != x) { result.x = ''; } if (result.y == null) { result.y = y; } else if (result.y != y) { result.y = ''; } } } } else if (graph.getModel().isEdge(cell)) { result.edges.push(cell); result.resizable = false; result.rotatable = false; result.movable = false; } var state = graph.view.getState(cell); if (state != null) { result.autoSize = result.autoSize || this.isAutoSizeState(state); result.glass = result.glass && this.isGlassState(state); result.rounded = result.rounded && this.isRoundedState(state); result.lineJumps = result.lineJumps && this.isLineJumpState(state); result.image = result.image && this.isImageState(state); result.shadow = result.shadow && this.isShadowState(state); result.fill = result.fill && this.isFillState(state); result.stroke = result.stroke && this.isStrokeState(state); var shape = mxUtils.getValue(state.style, mxConstants.STYLE_SHAPE, null); result.containsImage = result.containsImage || shape == 'image'; for (var key in state.style) { var value = state.style[key]; if (value != null) { if (result.style[key] == null) { result.style[key] = value; } else if (result.style[key] != value) { result.style[key] = ''; } } } } }; /** * Returns information about the current selection. */ Format.prototype.isFillState = function(state) { return !this.isSpecialColor(state.style[mxConstants.STYLE_FILLCOLOR]) && (state.view.graph.model.isVertex(state.cell) || mxUtils.getValue(state.style, mxConstants.STYLE_SHAPE, null) == 'arrow' || mxUtils.getValue(state.style, mxConstants.STYLE_SHAPE, null) == 'filledEdge' || mxUtils.getValue(state.style, mxConstants.STYLE_SHAPE, null) == 'flexArrow'); }; /** * Returns information about the current selection. */ Format.prototype.isStrokeState = function(state) { return !this.isSpecialColor(state.style[mxConstants.STYLE_STROKECOLOR]); }; /** * Returns information about the current selection. */ Format.prototype.isSpecialColor = function(color) { return mxUtils.indexOf([mxConstants.STYLE_STROKECOLOR, mxConstants.STYLE_FILLCOLOR, 'inherit', 'swimlane', 'indicated'], color) >= 0; }; /** * Returns information about the current selection. */ Format.prototype.isGlassState = function(state) { var shape = mxUtils.getValue(state.style, mxConstants.STYLE_SHAPE, null); return (shape == 'label' || shape == 'rectangle' || shape == 'internalStorage' || shape == 'ext' || shape == 'umlLifeline' || shape == 'swimlane' || shape == 'process'); }; /** * Returns information about the current selection. */ Format.prototype.isRoundedState = function(state) { return (state.shape != null) ? state.shape.isRoundable() : mxUtils.indexOf(this.roundableShapes, mxUtils.getValue(state.style, mxConstants.STYLE_SHAPE, null)) >= 0; }; /** * Returns information about the current selection. */ Format.prototype.isLineJumpState = function(state) { var shape = mxUtils.getValue(state.style, mxConstants.STYLE_SHAPE, null); var curved = mxUtils.getValue(state.style, mxConstants.STYLE_CURVED, false); return !curved && (shape == 'connector' || shape == 'filledEdge'); }; /** * Returns information about the current selection. */ Format.prototype.isAutoSizeState = function(state) { return mxUtils.getValue(state.style, mxConstants.STYLE_AUTOSIZE, null) == '1'; }; /** * Returns information about the current selection. */ Format.prototype.isImageState = function(state) { var shape = mxUtils.getValue(state.style, mxConstants.STYLE_SHAPE, null); return (shape == 'label' || shape == 'image'); }; /** * Returns information about the current selection. */ Format.prototype.isShadowState = function(state) { var shape = mxUtils.getValue(state.style, mxConstants.STYLE_SHAPE, null); return (shape != 'image'); }; /** * Adds the label menu items to the given menu and parent. */ Format.prototype.clear = function() { this.container.innerHTML = ''; // Destroy existing panels if (this.panels != null) { for (var i = 0; i < this.panels.length; i++) { this.panels[i].destroy(); } } this.panels = []; }; /** * Adds the label menu items to the given menu and parent. */ Format.prototype.refresh = function() { // Performance tweak: No refresh needed if not visible if (this.container.style.width == '0px') { return; } this.clear(); var ui = this.editorUi; var graph = ui.editor.graph; var div = document.createElement('div'); div.style.whiteSpace = 'nowrap'; div.style.color = 'rgb(112, 112, 112)'; div.style.textAlign = 'left'; div.style.cursor = 'default'; var label = document.createElement('div'); label.className = 'geFormatSection'; label.style.textAlign = 'center'; label.style.fontWeight = 'bold'; label.style.paddingTop = '8px'; label.style.fontSize = '13px'; label.style.borderWidth = '0px 0px 1px 1px'; label.style.borderStyle = 'solid'; label.style.display = (mxClient.IS_QUIRKS) ? 'inline' : 'inline-block'; label.style.height = (mxClient.IS_QUIRKS) ? '34px' : '25px'; label.style.overflow = 'hidden'; label.style.width = '100%'; this.container.appendChild(div); // Prevents text selection mxEvent.addListener(label, (mxClient.IS_POINTER) ? 'pointerdown' : 'mousedown', mxUtils.bind(this, function(evt) { evt.preventDefault(); })); var containsLabel = this.getSelectionState().containsLabel; var currentLabel = null; var currentPanel = null; var addClickHandler = mxUtils.bind(this, function(elt, panel, index) { var clickHandler = mxUtils.bind(this, function(evt) { if (currentLabel != elt) { if (containsLabel) { this.labelIndex = index; } else if (graph.isSelectionEmpty()) { this.diagramIndex = index; } else { this.currentIndex = index; } if (currentLabel != null) { currentLabel.style.backgroundColor = this.inactiveTabBackgroundColor; currentLabel.style.borderBottomWidth = '1px'; } currentLabel = elt; currentLabel.style.backgroundColor = ''; currentLabel.style.borderBottomWidth = '0px'; if (currentPanel != panel) { if (currentPanel != null) { currentPanel.style.display = 'none'; } currentPanel = panel; currentPanel.style.display = ''; } } }); mxEvent.addListener(elt, 'click', clickHandler); // Prevents text selection mxEvent.addListener(elt, (mxClient.IS_POINTER) ? 'pointerdown' : 'mousedown', mxUtils.bind(this, function(evt) { evt.preventDefault(); })); if (index == ((containsLabel) ? this.labelIndex : ((graph.isSelectionEmpty()) ? this.diagramIndex : this.currentIndex))) { // Invokes handler directly as a workaround for no click on DIV in KHTML. clickHandler(); } }); var idx = 0; if (graph.isSelectionEmpty()) { mxUtils.write(label, mxResources.get('diagram')); label.style.borderLeftWidth = '0px'; div.appendChild(label); var diagramPanel = div.cloneNode(false); this.panels.push(new DiagramFormatPanel(this, ui, diagramPanel)); this.container.appendChild(diagramPanel); if (Editor.styles != null) { diagramPanel.style.display = 'none'; label.style.width = (this.showCloseButton) ? '106px' : '50%'; label.style.cursor = 'pointer'; label.style.backgroundColor = this.inactiveTabBackgroundColor; var label2 = label.cloneNode(false); label2.style.borderLeftWidth = '1px'; label2.style.borderRightWidth = '1px'; label2.style.backgroundColor = this.inactiveTabBackgroundColor; addClickHandler(label, diagramPanel, idx++); var stylePanel = div.cloneNode(false); stylePanel.style.display = 'none'; mxUtils.write(label2, mxResources.get('style')); div.appendChild(label2); this.panels.push(new DiagramStylePanel(this, ui, stylePanel)); this.container.appendChild(stylePanel); addClickHandler(label2, stylePanel, idx++); } // Adds button to hide the format panel since // people don't seem to find the toolbar button // and the menu item in the format menu if (this.showCloseButton) { var label2 = label.cloneNode(false); label2.style.borderLeftWidth = '1px'; label2.style.borderRightWidth = '1px'; label2.style.borderBottomWidth = '1px'; label2.style.backgroundColor = this.inactiveTabBackgroundColor; label2.style.position = 'absolute'; label2.style.right = '0px'; label2.style.top = '0px'; label2.style.width = '25px'; var img = document.createElement('img'); img.setAttribute('border', '0'); img.setAttribute('src', Dialog.prototype.closeImage); img.setAttribute('title', mxResources.get('hide')); img.style.position = 'absolute'; img.style.display = 'block'; img.style.right = '0px'; img.style.top = '8px'; img.style.cursor = 'pointer'; img.style.marginTop = '1px'; img.style.marginRight = '6px'; img.style.border = '1px solid transparent'; img.style.padding = '1px'; img.style.opacity = 0.5; label2.appendChild(img) mxEvent.addListener(img, 'click', function() { ui.actions.get('formatPanel').funct(); }); div.appendChild(label2); } } else if (graph.isEditing()) { mxUtils.write(label, mxResources.get('text')); div.appendChild(label); this.panels.push(new TextFormatPanel(this, ui, div)); } else { label.style.backgroundColor = this.inactiveTabBackgroundColor; label.style.borderLeftWidth = '1px'; label.style.cursor = 'pointer'; label.style.width = (containsLabel) ? '50%' : '33.3%'; var label2 = label.cloneNode(false); var label3 = label2.cloneNode(false); // Workaround for ignored background in IE label2.style.backgroundColor = this.inactiveTabBackgroundColor; label3.style.backgroundColor = this.inactiveTabBackgroundColor; // Style if (containsLabel) { label2.style.borderLeftWidth = '0px'; } else { label.style.borderLeftWidth = '0px'; mxUtils.write(label, mxResources.get('style')); div.appendChild(label); var stylePanel = div.cloneNode(false); stylePanel.style.display = 'none'; this.panels.push(new StyleFormatPanel(this, ui, stylePanel)); this.container.appendChild(stylePanel); addClickHandler(label, stylePanel, idx++); } // Text mxUtils.write(label2, mxResources.get('text')); div.appendChild(label2); var textPanel = div.cloneNode(false); textPanel.style.display = 'none'; this.panels.push(new TextFormatPanel(this, ui, textPanel)); this.container.appendChild(textPanel); // Arrange mxUtils.write(label3, mxResources.get('arrange')); div.appendChild(label3); var arrangePanel = div.cloneNode(false); arrangePanel.style.display = 'none'; this.panels.push(new ArrangePanel(this, ui, arrangePanel)); this.container.appendChild(arrangePanel); addClickHandler(label2, textPanel, idx++); addClickHandler(label3, arrangePanel, idx++); } }; /** * Base class for format panels. */ BaseFormatPanel = function(format, editorUi, container) { this.format = format; this.editorUi = editorUi; this.container = container; this.listeners = []; }; /** * */ BaseFormatPanel.prototype.buttonBackgroundColor = 'white'; /** * Adds the given color option. */ BaseFormatPanel.prototype.getSelectionState = function() { var graph = this.editorUi.editor.graph; var cells = graph.getSelectionCells(); var shape = null; for (var i = 0; i < cells.length; i++) { var state = graph.view.getState(cells[i]); if (state != null) { var tmp = mxUtils.getValue(state.style, mxConstants.STYLE_SHAPE, null); if (tmp != null) { if (shape == null) { shape = tmp; } else if (shape != tmp) { return null; } } } } return shape; }; /** * Install input handler. */ BaseFormatPanel.prototype.installInputHandler = function(input, key, defaultValue, min, max, unit, textEditFallback, isFloat) { unit = (unit != null) ? unit : ''; isFloat = (isFloat != null) ? isFloat : false; var ui = this.editorUi; var graph = ui.editor.graph; min = (min != null) ? min : 1; max = (max != null) ? max : 999; var selState = null; var updating = false; var update = mxUtils.bind(this, function(evt) { var value = (isFloat) ? parseFloat(input.value) : parseInt(input.value); // Special case: angle mod 360 if (!isNaN(value) && key == mxConstants.STYLE_ROTATION) { // Workaround for decimal rounding errors in floats is to // use integer and round all numbers to two decimal point value = mxUtils.mod(Math.round(value * 100), 36000) / 100; } value = Math.min(max, Math.max(min, (isNaN(value)) ? defaultValue : value)); if (graph.cellEditor.isContentEditing() && textEditFallback) { if (!updating) { updating = true; if (selState != null) { graph.cellEditor.restoreSelection(selState); selState = null; } textEditFallback(value); input.value = value + unit; // Restore focus and selection in input updating = false; } } else if (value != mxUtils.getValue(this.format.getSelectionState().style, key, defaultValue)) { if (graph.isEditing()) { graph.stopEditing(true); } graph.getModel().beginUpdate(); try { var cells = graph.getSelectionCells(); graph.setCellStyles(key, value, cells); // Handles special case for fontSize where HTML labels are parsed and updated if (key == mxConstants.STYLE_FONTSIZE) { graph.updateLabelElements(graph.getSelectionCells(), function(elt) { elt.style.fontSize = value + 'px'; elt.removeAttribute('size'); }); } for (var i = 0; i < cells.length; i++) { if (graph.model.getChildCount(cells[i]) == 0) { graph.autoSizeCell(cells[i], false); } } ui.fireEvent(new mxEventObject('styleChanged', 'keys', [key], 'values', [value], 'cells', cells)); } finally { graph.getModel().endUpdate(); } } input.value = value + unit; mxEvent.consume(evt); }); if (textEditFallback && graph.cellEditor.isContentEditing()) { // KNOWN: Arrow up/down clear selection text in quirks/IE 8 // Text size via arrow button limits to 16 in IE11. Why? mxEvent.addListener(input, 'mousedown', function() { if (document.activeElement == graph.cellEditor.textarea) { selState = graph.cellEditor.saveSelection(); } }); mxEvent.addListener(input, 'touchstart', function() { if (document.activeElement == graph.cellEditor.textarea) { selState = graph.cellEditor.saveSelection(); } }); } mxEvent.addListener(input, 'change', update); mxEvent.addListener(input, 'blur', update); return update; }; /** * Adds the given option. */ BaseFormatPanel.prototype.createPanel = function() { var div = document.createElement('div'); div.className = 'geFormatSection'; div.style.padding = '12px 0px 12px 18px'; return div; }; /** * Adds the given option. */ BaseFormatPanel.prototype.createTitle = function(title) { var div = document.createElement('div'); div.style.padding = '0px 0px 6px 0px'; div.style.whiteSpace = 'nowrap'; div.style.overflow = 'hidden'; div.style.width = '200px'; div.style.fontWeight = 'bold'; mxUtils.write(div, title); return div; }; /** * */ BaseFormatPanel.prototype.createStepper = function(input, update, step, height, disableFocus, defaultValue, isFloat) { step = (step != null) ? step : 1; height = (height != null) ? height : 8; if (mxClient.IS_QUIRKS) { height = height - 2; } else if (mxClient.IS_MT || document.documentMode >= 8) { height = height + 1; } var stepper = document.createElement('div'); mxUtils.setPrefixedStyle(stepper.style, 'borderRadius', '3px'); stepper.style.border = '1px solid rgb(192, 192, 192)'; stepper.style.position = 'absolute'; var up = document.createElement('div'); up.style.borderBottom = '1px solid rgb(192, 192, 192)'; up.style.position = 'relative'; up.style.height = height + 'px'; up.style.width = '10px'; up.className = 'geBtnUp'; stepper.appendChild(up); var down = up.cloneNode(false); down.style.border = 'none'; down.style.height = height + 'px'; down.className = 'geBtnDown'; stepper.appendChild(down); mxEvent.addListener(down, 'click', function(evt) { if (input.value == '') { input.value = defaultValue || '2'; } var val = isFloat? parseFloat(input.value) : parseInt(input.value); if (!isNaN(val)) { input.value = val - step; if (update != null) { update(evt); } } mxEvent.consume(evt); }); mxEvent.addListener(up, 'click', function(evt) { if (input.value == '') { input.value = defaultValue || '0'; } var val = isFloat? parseFloat(input.value) : parseInt(input.value); if (!isNaN(val)) { input.value = val + step; if (update != null) { update(evt); } } mxEvent.consume(evt); }); // Disables transfer of focus to DIV but also :active CSS // so it's only used for fontSize where the focus should // stay on the selected text, but not for any other input. if (disableFocus) { var currentSelection = null; mxEvent.addGestureListeners(stepper, function(evt) { // Workaround for lost current selection in page because of focus in IE if (mxClient.IS_QUIRKS || document.documentMode == 8) { currentSelection = document.selection.createRange(); } mxEvent.consume(evt); }, null, function(evt) { // Workaround for lost current selection in page because of focus in IE if (currentSelection != null) { try { currentSelection.select(); } catch (e) { // ignore } currentSelection = null; mxEvent.consume(evt); } } ); } return stepper; }; /** * Adds the given option. */ BaseFormatPanel.prototype.createOption = function(label, isCheckedFn, setCheckedFn, listener, fn) { var div = document.createElement('div'); div.style.padding = '6px 0px 1px 0px'; div.style.whiteSpace = 'nowrap'; div.style.overflow = 'hidden'; div.style.width = '200px'; div.style.height = (mxClient.IS_QUIRKS) ? '27px' : '18px'; var cb = document.createElement('input'); cb.setAttribute('type', 'checkbox'); cb.style.margin = '0px 6px 0px 0px'; div.appendChild(cb); var span = document.createElement('span'); mxUtils.write(span, label); div.appendChild(span); var applying = false; var value = isCheckedFn(); var apply = function(newValue) { if (!applying) { applying = true; if (newValue) { cb.setAttribute('checked', 'checked'); cb.defaultChecked = true; cb.checked = true; } else { cb.removeAttribute('checked'); cb.defaultChecked = false; cb.checked = false; } if (value != newValue) { value = newValue; // Checks if the color value needs to be updated in the model if (isCheckedFn() != value) { setCheckedFn(value); } } applying = false; } }; mxEvent.addListener(div, 'click', function(evt) { if (cb.getAttribute('disabled') != 'disabled') { // Toggles checkbox state for click on label var source = mxEvent.getSource(evt); if (source == div || source == span) { cb.checked = !cb.checked; } apply(cb.checked); } }); apply(value); if (listener != null) { listener.install(apply); this.listeners.push(listener); } if (fn != null) { fn(div); } return div; }; /** * The string 'null' means use null in values. */ BaseFormatPanel.prototype.createCellOption = function(label, key, defaultValue, enabledValue, disabledValue, fn, action, stopEditing) { enabledValue = (enabledValue != null) ? ((enabledValue == 'null') ? null : enabledValue) : '1'; disabledValue = (disabledValue != null) ? ((disabledValue == 'null') ? null : disabledValue) : '0'; var ui = this.editorUi; var editor = ui.editor; var graph = editor.graph; return this.createOption(label, function() { // Seems to be null sometimes, not sure why... var state = graph.view.getState(graph.getSelectionCell()); if (state != null) { return mxUtils.getValue(state.style, key, defaultValue) != disabledValue; } return null; }, function(checked) { if (stopEditing) { graph.stopEditing(); } if (action != null) { action.funct(); } else { graph.getModel().beginUpdate(); try { var value = (checked) ? enabledValue : disabledValue; graph.setCellStyles(key, value, graph.getSelectionCells()); if (fn != null) { fn(graph.getSelectionCells(), value); } ui.fireEvent(new mxEventObject('styleChanged', 'keys', [key], 'values', [value], 'cells', graph.getSelectionCells())); } finally { graph.getModel().endUpdate(); } } }, { install: function(apply) { this.listener = function() { // Seems to be null sometimes, not sure why... var state = graph.view.getState(graph.getSelectionCell()); if (state != null) { apply(mxUtils.getValue(state.style, key, defaultValue) != disabledValue); } }; graph.getModel().addListener(mxEvent.CHANGE, this.listener); }, destroy: function() { graph.getModel().removeListener(this.listener); } }); }; /** * Adds the given color option. */ BaseFormatPanel.prototype.createColorOption = function(label, getColorFn, setColorFn, defaultColor, listener, callbackFn, hideCheckbox) { var div = document.createElement('div'); div.style.padding = '6px 0px 1px 0px'; div.style.whiteSpace = 'nowrap'; div.style.overflow = 'hidden'; div.style.width = '200px'; div.style.height = (mxClient.IS_QUIRKS) ? '27px' : '18px'; var cb = document.createElement('input'); cb.setAttribute('type', 'checkbox'); cb.style.margin = '0px 6px 0px 0px'; if (!hideCheckbox) { div.appendChild(cb); } var span = document.createElement('span'); mxUtils.write(span, label); div.appendChild(span); var value = getColorFn(); var applying = false; var btn = null; var apply = function(color, disableUpdate, forceUpdate) { if (!applying) { applying = true; color = (/(^#?[a-zA-Z0-9]*$)/.test(color)) ? color : defaultColor; btn.innerHTML = '
'; // Fine-tuning in Firefox, quirks mode and IE8 standards if (mxClient.IS_QUIRKS || document.documentMode == 8) { btn.firstChild.style.margin = '0px'; } if (color != null && color != mxConstants.NONE) { cb.setAttribute('checked', 'checked'); cb.defaultChecked = true; cb.checked = true; } else { cb.removeAttribute('checked'); cb.defaultChecked = false; cb.checked = false; } btn.style.display = (cb.checked || hideCheckbox) ? '' : 'none'; if (callbackFn != null) { callbackFn(color); } if (!disableUpdate) { value = color; // Checks if the color value needs to be updated in the model if (forceUpdate || hideCheckbox || getColorFn() != value) { setColorFn(value); } } applying = false; } }; btn = mxUtils.button('', mxUtils.bind(this, function(evt) { this.editorUi.pickColor(value, function(color) { apply(color, null, true); }); mxEvent.consume(evt); })); btn.style.position = 'absolute'; btn.style.marginTop = '-4px'; btn.style.right = (mxClient.IS_QUIRKS) ? '0px' : '20px'; btn.style.height = '22px'; btn.className = 'geColorBtn'; btn.style.display = (cb.checked || hideCheckbox) ? '' : 'none'; div.appendChild(btn); mxEvent.addListener(div, 'click', function(evt) { var source = mxEvent.getSource(evt); if (source == cb || source.nodeName != 'INPUT') { // Toggles checkbox state for click on label if (source != cb) { cb.checked = !cb.checked; } // Overrides default value with current value to make it easier // to restore previous value if the checkbox is clicked twice if (!cb.checked && value != null && value != mxConstants.NONE && defaultColor != mxConstants.NONE) { defaultColor = value; } apply((cb.checked) ? defaultColor : mxConstants.NONE); } }); apply(value, true); if (listener != null) { listener.install(apply); this.listeners.push(listener); } return div; }; /** * */ BaseFormatPanel.prototype.createCellColorOption = function(label, colorKey, defaultColor, callbackFn, setStyleFn) { var ui = this.editorUi; var editor = ui.editor; var graph = editor.graph; return this.createColorOption(label, function() { // Seems to be null sometimes, not sure why... var state = graph.view.getState(graph.getSelectionCell()); if (state != null) { return mxUtils.getValue(state.style, colorKey, null); } return null; }, function(color) { graph.getModel().beginUpdate(); try { graph.setCellStyles(colorKey, color, graph.getSelectionCells()); if (setStyleFn != null) { setStyleFn(color); } ui.fireEvent(new mxEventObject('styleChanged', 'keys', [colorKey], 'values', [color], 'cells', graph.getSelectionCells())); } finally { graph.getModel().endUpdate(); } }, defaultColor || mxConstants.NONE, { install: function(apply) { this.listener = function() { // Seems to be null sometimes, not sure why... var state = graph.view.getState(graph.getSelectionCell()); if (state != null) { apply(mxUtils.getValue(state.style, colorKey, null)); } }; graph.getModel().addListener(mxEvent.CHANGE, this.listener); }, destroy: function() { graph.getModel().removeListener(this.listener); } }, callbackFn); }; /** * */ BaseFormatPanel.prototype.addArrow = function(elt, height) { height = (height != null) ? height : 10; var arrow = document.createElement('div'); arrow.style.display = (mxClient.IS_QUIRKS) ? 'inline' : 'inline-block'; arrow.style.padding = '6px'; arrow.style.paddingRight = '4px'; var m = (10 - height); if (m == 2) { arrow.style.paddingTop = 6 + 'px'; } else if (m > 0) { arrow.style.paddingTop = (6 - m) + 'px'; } else { arrow.style.marginTop = '-2px'; } arrow.style.height = height + 'px'; arrow.style.borderLeft = '1px solid #a0a0a0'; arrow.innerHTML = '' + graph.cellEditor.textarea.innerHTML + '
'; } node = graph.cellEditor.textarea.firstChild; } if (node != null && graph.cellEditor.textarea != null && node != graph.cellEditor.textarea && graph.cellEditor.textarea.contains(node)) { node.style.lineHeight = value + '%'; } input.value = value + ' %'; }, function(input) { // Used in CSS handler to update current value lineHeightInput = input; // KNOWN: Arrow up/down clear selection text in quirks/IE 8 // Text size via arrow button limits to 16 in IE11. Why? mxEvent.addListener(input, 'mousedown', function() { if (document.activeElement == graph.cellEditor.textarea) { selState = graph.cellEditor.saveSelection(); } }); mxEvent.addListener(input, 'touchstart', function() { if (document.activeElement == graph.cellEditor.textarea) { selState = graph.cellEditor.saveSelection(); } }); input.value = '120 %'; })); var insertPanel = stylePanel.cloneNode(false); insertPanel.style.paddingLeft = '0px'; var insertBtns = this.editorUi.toolbar.addItems(['link', 'image'], insertPanel, true); var btns = [ this.editorUi.toolbar.addButton('geSprite-horizontalrule', mxResources.get('insertHorizontalRule'), function() { document.execCommand('inserthorizontalrule', false); }, insertPanel), this.editorUi.toolbar.addMenuFunctionInContainer(insertPanel, 'geSprite-table', mxResources.get('table'), false, mxUtils.bind(this, function(menu) { this.editorUi.menus.addInsertTableItem(menu); }))]; this.styleButtons(insertBtns); this.styleButtons(btns); var wrapper2 = this.createPanel(); wrapper2.style.paddingTop = '10px'; wrapper2.style.paddingBottom = '10px'; wrapper2.appendChild(this.createTitle(mxResources.get('insert'))); wrapper2.appendChild(insertPanel); container.appendChild(wrapper2); if (mxClient.IS_QUIRKS) { wrapper2.style.height = '70'; } var tablePanel = stylePanel.cloneNode(false); tablePanel.style.paddingLeft = '0px'; var btns = [ this.editorUi.toolbar.addButton('geSprite-insertcolumnbefore', mxResources.get('insertColumnBefore'), mxUtils.bind(this, function() { try { if (currentTable != null) { graph.insertColumn(currentTable, (tableCell != null) ? tableCell.cellIndex : 0); } } catch (e) { this.editorUi.handleError(e); } }), tablePanel), this.editorUi.toolbar.addButton('geSprite-insertcolumnafter', mxResources.get('insertColumnAfter'), mxUtils.bind(this, function() { try { if (currentTable != null) { graph.insertColumn(currentTable, (tableCell != null) ? tableCell.cellIndex + 1 : -1); } } catch (e) { this.editorUi.handleError(e); } }), tablePanel), this.editorUi.toolbar.addButton('geSprite-deletecolumn', mxResources.get('deleteColumn'), mxUtils.bind(this, function() { try { if (currentTable != null && tableCell != null) { graph.deleteColumn(currentTable, tableCell.cellIndex); } } catch (e) { this.editorUi.handleError(e); } }), tablePanel), this.editorUi.toolbar.addButton('geSprite-insertrowbefore', mxResources.get('insertRowBefore'), mxUtils.bind(this, function() { try { if (currentTable != null && tableRow != null) { graph.insertRow(currentTable, tableRow.sectionRowIndex); } } catch (e) { this.editorUi.handleError(e); } }), tablePanel), this.editorUi.toolbar.addButton('geSprite-insertrowafter', mxResources.get('insertRowAfter'), mxUtils.bind(this, function() { try { if (currentTable != null && tableRow != null) { graph.insertRow(currentTable, tableRow.sectionRowIndex + 1); } } catch (e) { this.editorUi.handleError(e); } }), tablePanel), this.editorUi.toolbar.addButton('geSprite-deleterow', mxResources.get('deleteRow'), mxUtils.bind(this, function() { try { if (currentTable != null && tableRow != null) { graph.deleteRow(currentTable, tableRow.sectionRowIndex); } } catch (e) { this.editorUi.handleError(e); } }), tablePanel)]; this.styleButtons(btns); btns[2].style.marginRight = '9px'; var wrapper3 = this.createPanel(); wrapper3.style.paddingTop = '10px'; wrapper3.style.paddingBottom = '10px'; wrapper3.appendChild(this.createTitle(mxResources.get('table'))); wrapper3.appendChild(tablePanel); if (mxClient.IS_QUIRKS) { mxUtils.br(container); wrapper3.style.height = '70'; } var tablePanel2 = stylePanel.cloneNode(false); tablePanel2.style.paddingLeft = '0px'; var btns = [ this.editorUi.toolbar.addButton('geSprite-strokecolor', mxResources.get('borderColor'), mxUtils.bind(this, function(evt) { if (currentTable != null) { // Converts rgb(r,g,b) values var color = currentTable.style.borderColor.replace( /\brgb\s*\(\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d+)\s*\)/g, function($0, $1, $2, $3) { return "#" + ("0"+Number($1).toString(16)).substr(-2) + ("0"+Number($2).toString(16)).substr(-2) + ("0"+Number($3).toString(16)).substr(-2); }); this.editorUi.pickColor(color, function(newColor) { var targetElt = (tableCell != null && (evt == null || !mxEvent.isShiftDown(evt))) ? tableCell : currentTable; graph.processElements(targetElt, function(elt) { elt.style.border = null; }); if (newColor == null || newColor == mxConstants.NONE) { targetElt.removeAttribute('border'); targetElt.style.border = ''; targetElt.style.borderCollapse = ''; } else { targetElt.setAttribute('border', '1'); targetElt.style.border = '1px solid ' + newColor; targetElt.style.borderCollapse = 'collapse'; } }); } }), tablePanel2), this.editorUi.toolbar.addButton('geSprite-fillcolor', mxResources.get('backgroundColor'), mxUtils.bind(this, function(evt) { // Converts rgb(r,g,b) values if (currentTable != null) { var color = currentTable.style.backgroundColor.replace( /\brgb\s*\(\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d+)\s*\)/g, function($0, $1, $2, $3) { return "#" + ("0"+Number($1).toString(16)).substr(-2) + ("0"+Number($2).toString(16)).substr(-2) + ("0"+Number($3).toString(16)).substr(-2); }); this.editorUi.pickColor(color, function(newColor) { var targetElt = (tableCell != null && (evt == null || !mxEvent.isShiftDown(evt))) ? tableCell : currentTable; graph.processElements(targetElt, function(elt) { elt.style.backgroundColor = null; }); if (newColor == null || newColor == mxConstants.NONE) { targetElt.style.backgroundColor = ''; } else { targetElt.style.backgroundColor = newColor; } }); } }), tablePanel2), this.editorUi.toolbar.addButton('geSprite-fit', mxResources.get('spacing'), function() { if (currentTable != null) { var value = currentTable.getAttribute('cellPadding') || 0; var dlg = new FilenameDialog(ui, value, mxResources.get('apply'), mxUtils.bind(this, function(newValue) { if (newValue != null && newValue.length > 0) { currentTable.setAttribute('cellPadding', newValue); } else { currentTable.removeAttribute('cellPadding'); } }), mxResources.get('spacing')); ui.showDialog(dlg.container, 300, 80, true, true); dlg.init(); } }, tablePanel2), this.editorUi.toolbar.addButton('geSprite-left', mxResources.get('left'), function() { if (currentTable != null) { currentTable.setAttribute('align', 'left'); } }, tablePanel2), this.editorUi.toolbar.addButton('geSprite-center', mxResources.get('center'), function() { if (currentTable != null) { currentTable.setAttribute('align', 'center'); } }, tablePanel2), this.editorUi.toolbar.addButton('geSprite-right', mxResources.get('right'), function() { if (currentTable != null) { currentTable.setAttribute('align', 'right'); } }, tablePanel2)]; this.styleButtons(btns); btns[2].style.marginRight = '9px'; if (mxClient.IS_QUIRKS) { mxUtils.br(wrapper3); mxUtils.br(wrapper3); } wrapper3.appendChild(tablePanel2); container.appendChild(wrapper3); tableWrapper = wrapper3; } function setSelected(elt, selected) { if (mxClient.IS_IE && (mxClient.IS_QUIRKS || document.documentMode < 10)) { elt.style.filter = (selected) ? 'progid:DXImageTransform.Microsoft.Gradient('+ 'StartColorStr=\'#c5ecff\', EndColorStr=\'#87d4fb\', GradientType=0)' : ''; } else { elt.style.backgroundImage = (selected) ? 'linear-gradient(#c5ecff 0px,#87d4fb 100%)' : ''; } }; var listener = mxUtils.bind(this, function(sender, evt, force) { ss = this.format.getSelectionState(); var fontStyle = mxUtils.getValue(ss.style, mxConstants.STYLE_FONTSTYLE, 0); setSelected(fontStyleItems[0], (fontStyle & mxConstants.FONT_BOLD) == mxConstants.FONT_BOLD); setSelected(fontStyleItems[1], (fontStyle & mxConstants.FONT_ITALIC) == mxConstants.FONT_ITALIC); setSelected(fontStyleItems[2], (fontStyle & mxConstants.FONT_UNDERLINE) == mxConstants.FONT_UNDERLINE); fontMenu.firstChild.nodeValue = mxUtils.getValue(ss.style, mxConstants.STYLE_FONTFAMILY, Menus.prototype.defaultFont); setSelected(verticalItem, mxUtils.getValue(ss.style, mxConstants.STYLE_HORIZONTAL, '1') == '0'); if (force || document.activeElement != input) { var tmp = parseFloat(mxUtils.getValue(ss.style, mxConstants.STYLE_FONTSIZE, Menus.prototype.defaultFontSize)); input.value = (isNaN(tmp)) ? '' : tmp + ' pt'; } var 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); var valign = mxUtils.getValue(ss.style, mxConstants.STYLE_VERTICAL_ALIGN, mxConstants.ALIGN_MIDDLE); setSelected(top, valign == mxConstants.ALIGN_TOP); setSelected(middle, valign == mxConstants.ALIGN_MIDDLE); setSelected(bottom, valign == mxConstants.ALIGN_BOTTOM); var pos = mxUtils.getValue(ss.style, mxConstants.STYLE_LABEL_POSITION, mxConstants.ALIGN_CENTER); var vpos = mxUtils.getValue(ss.style, mxConstants.STYLE_VERTICAL_LABEL_POSITION, mxConstants.ALIGN_MIDDLE); if (pos == mxConstants.ALIGN_LEFT && vpos == mxConstants.ALIGN_TOP) { positionSelect.value = 'topLeft'; } else if (pos == mxConstants.ALIGN_CENTER && vpos == mxConstants.ALIGN_TOP) { positionSelect.value = 'top'; } else if (pos == mxConstants.ALIGN_RIGHT && vpos == mxConstants.ALIGN_TOP) { positionSelect.value = 'topRight'; } else if (pos == mxConstants.ALIGN_LEFT && vpos == mxConstants.ALIGN_BOTTOM) { positionSelect.value = 'bottomLeft'; } else if (pos == mxConstants.ALIGN_CENTER && vpos == mxConstants.ALIGN_BOTTOM) { positionSelect.value = 'bottom'; } else if (pos == mxConstants.ALIGN_RIGHT && vpos == mxConstants.ALIGN_BOTTOM) { positionSelect.value = 'bottomRight'; } else if (pos == mxConstants.ALIGN_LEFT) { positionSelect.value = 'left'; } else if (pos == mxConstants.ALIGN_RIGHT) { positionSelect.value = 'right'; } else { positionSelect.value = 'center'; } var dir = mxUtils.getValue(ss.style, mxConstants.STYLE_TEXT_DIRECTION, mxConstants.DEFAULT_TEXT_DIRECTION); if (dir == mxConstants.TEXT_DIRECTION_RTL) { dirSelect.value = 'rightToLeft'; } else if (dir == mxConstants.TEXT_DIRECTION_LTR) { dirSelect.value = 'leftToRight'; } else if (dir == mxConstants.TEXT_DIRECTION_AUTO) { dirSelect.value = 'automatic'; } if (force || document.activeElement != globalSpacing) { var tmp = parseFloat(mxUtils.getValue(ss.style, mxConstants.STYLE_SPACING, 2)); globalSpacing.value = (isNaN(tmp)) ? '' : tmp + ' pt'; } if (force || document.activeElement != topSpacing) { var tmp = parseFloat(mxUtils.getValue(ss.style, mxConstants.STYLE_SPACING_TOP, 0)); topSpacing.value = (isNaN(tmp)) ? '' : tmp + ' pt'; } if (force || document.activeElement != rightSpacing) { var tmp = parseFloat(mxUtils.getValue(ss.style, mxConstants.STYLE_SPACING_RIGHT, 0)); rightSpacing.value = (isNaN(tmp)) ? '' : tmp + ' pt'; } if (force || document.activeElement != bottomSpacing) { var tmp = parseFloat(mxUtils.getValue(ss.style, mxConstants.STYLE_SPACING_BOTTOM, 0)); bottomSpacing.value = (isNaN(tmp)) ? '' : tmp + ' pt'; } if (force || document.activeElement != leftSpacing) { var tmp = parseFloat(mxUtils.getValue(ss.style, mxConstants.STYLE_SPACING_LEFT, 0)); leftSpacing.value = (isNaN(tmp)) ? '' : tmp + ' pt'; } }); globalUpdate = this.installInputHandler(globalSpacing, mxConstants.STYLE_SPACING, 2, -999, 999, ' pt'); topUpdate = this.installInputHandler(topSpacing, mxConstants.STYLE_SPACING_TOP, 0, -999, 999, ' pt'); rightUpdate = this.installInputHandler(rightSpacing, mxConstants.STYLE_SPACING_RIGHT, 0, -999, 999, ' pt'); bottomUpdate = this.installInputHandler(bottomSpacing, mxConstants.STYLE_SPACING_BOTTOM, 0, -999, 999, ' pt'); leftUpdate = this.installInputHandler(leftSpacing, mxConstants.STYLE_SPACING_LEFT, 0, -999, 999, ' pt'); this.addKeyHandler(input, listener); this.addKeyHandler(globalSpacing, listener); this.addKeyHandler(topSpacing, listener); this.addKeyHandler(rightSpacing, listener); this.addKeyHandler(bottomSpacing, listener); this.addKeyHandler(leftSpacing, listener); graph.getModel().addListener(mxEvent.CHANGE, listener); this.listeners.push({destroy: function() { graph.getModel().removeListener(listener); }}); listener(); if (graph.cellEditor.isContentEditing()) { var updating = false; var updateCssHandler = function() { if (!updating) { updating = true; window.setTimeout(function() { var node = graph.getSelectedEditingElement(); if (node != null) { function getRelativeLineHeight(fontSize, css, elt) { if (elt.style != null && css != null) { var lineHeight = css.lineHeight if (elt.style.lineHeight != null && elt.style.lineHeight.substring(elt.style.lineHeight.length - 1) == '%') { return parseInt(elt.style.lineHeight) / 100; } else { return (lineHeight.substring(lineHeight.length - 2) == 'px') ? parseFloat(lineHeight) / fontSize : parseInt(lineHeight); } } else { return ''; } }; function getAbsoluteFontSize(css) { var fontSize = (css != null) ? css.fontSize : null; if (fontSize != null && fontSize.substring(fontSize.length - 2) == 'px') { return parseFloat(fontSize); } else { return mxConstants.DEFAULT_FONTSIZE; } }; var css = mxUtils.getCurrentStyle(node); var fontSize = getAbsoluteFontSize(css); var lineHeight = getRelativeLineHeight(fontSize, css, node); // Finds common font size var elts = node.getElementsByTagName('*'); // IE does not support containsNode if (elts.length > 0 && window.getSelection && !mxClient.IS_IE && !mxClient.IS_IE11) { var selection = window.getSelection(); for (var i = 0; i < elts.length; i++) { if (selection.containsNode(elts[i], true)) { temp = mxUtils.getCurrentStyle(elts[i]); fontSize = Math.max(getAbsoluteFontSize(temp), fontSize); var lh = getRelativeLineHeight(fontSize, temp, elts[i]); if (lh != lineHeight || isNaN(lh)) { lineHeight = ''; } } } } function hasParentOrOnlyChild(name) { if (graph.getParentByName(node, name, graph.cellEditor.textarea) != null) { return true; } else { var child = node; while (child != null && child.childNodes.length == 1) { child = child.childNodes[0]; if (child.nodeName == name) { return true; } } } return false; }; function isEqualOrPrefixed(str, value) { if (str != null && value != null) { if (str == value) { return true; } else if (str.length > value.length + 1) { return str.substring(str.length - value.length - 1, str.length) == '-' + value; } } return false; }; if (css != null) { setSelected(fontStyleItems[0], css.fontWeight == 'bold' || css.fontWeight > 400 || hasParentOrOnlyChild('B') || hasParentOrOnlyChild('STRONG')); setSelected(fontStyleItems[1], css.fontStyle == 'italic' || hasParentOrOnlyChild('I') || hasParentOrOnlyChild('EM')); setSelected(fontStyleItems[2], hasParentOrOnlyChild('U')); 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); 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')); } currentTable = graph.getParentByName(node, 'TABLE', graph.cellEditor.textarea); tableRow = (currentTable == null) ? null : graph.getParentByName(node, 'TR', currentTable); tableCell = (currentTable == null) ? null : graph.getParentByNames(node, ['TD', 'TH'], currentTable); tableWrapper.style.display = (currentTable != null) ? '' : 'none'; if (document.activeElement != input) { if (node.nodeName == 'FONT' && node.getAttribute('size') == '4' && pendingFontSize != null) { node.removeAttribute('size'); node.style.fontSize = pendingFontSize + ' pt'; pendingFontSize = null; } else { input.value = (isNaN(fontSize)) ? '' : fontSize + ' pt'; } var lh = parseFloat(lineHeight); if (!isNaN(lh)) { lineHeightInput.value = Math.round(lh * 100) + ' %'; } else { lineHeightInput.value = '100 %'; } } // Converts rgb(r,g,b) values var color = css.color.replace( /\brgb\s*\(\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d+)\s*\)/g, function($0, $1, $2, $3) { return "#" + ("0"+Number($1).toString(16)).substr(-2) + ("0"+Number($2).toString(16)).substr(-2) + ("0"+Number($3).toString(16)).substr(-2); }); var color2 = css.backgroundColor.replace( /\brgb\s*\(\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d+)\s*\)/g, function($0, $1, $2, $3) { return "#" + ("0"+Number($1).toString(16)).substr(-2) + ("0"+Number($2).toString(16)).substr(-2) + ("0"+Number($3).toString(16)).substr(-2); }); // Updates the color picker for the current font if (fontColorApply != null) { if (color.charAt(0) == '#') { currentFontColor = color; } else { currentFontColor = '#000000'; } fontColorApply(currentFontColor, true); } if (bgColorApply != null) { if (color2.charAt(0) == '#') { currentBgColor = color2; } else { currentBgColor = null; } bgColorApply(currentBgColor, true); } // Workaround for firstChild is null or not an object // in the log which seems to be IE8- only / 29.01.15 if (fontMenu.firstChild != null) { fontMenu.firstChild.nodeValue = Graph.stripQuotes(css.fontFamily); } } } updating = false; }, 0); } }; if (mxClient.IS_FF || mxClient.IS_EDGE || mxClient.IS_IE || mxClient.IS_IE11) { mxEvent.addListener(graph.cellEditor.textarea, 'DOMSubtreeModified', updateCssHandler); } mxEvent.addListener(graph.cellEditor.textarea, 'input', updateCssHandler); mxEvent.addListener(graph.cellEditor.textarea, 'touchend', updateCssHandler); mxEvent.addListener(graph.cellEditor.textarea, 'mouseup', updateCssHandler); mxEvent.addListener(graph.cellEditor.textarea, 'keyup', updateCssHandler); this.listeners.push({destroy: function() { // No need to remove listener since textarea is destroyed after edit }}); updateCssHandler(); } return container; }; /** * Adds the label menu items to the given menu and parent. */ StyleFormatPanel = function(format, editorUi, container) { BaseFormatPanel.call(this, format, editorUi, container); this.init(); }; mxUtils.extend(StyleFormatPanel, BaseFormatPanel); /** * */ StyleFormatPanel.prototype.defaultStrokeColor = 'black'; /** * Adds the label menu items to the given menu and parent. */ StyleFormatPanel.prototype.init = function() { var ui = this.editorUi; var editor = ui.editor; var graph = editor.graph; var ss = this.format.getSelectionState(); if (!ss.containsLabel) { if (ss.containsImage && ss.vertices.length == 1 && ss.style.shape == 'image' && ss.style.image != null && ss.style.image.substring(0, 19) == 'data:image/svg+xml;') { this.container.appendChild(this.addSvgStyles(this.createPanel())); } if (!ss.containsImage || ss.style.shape == 'image') { this.container.appendChild(this.addFill(this.createPanel())); } this.container.appendChild(this.addStroke(this.createPanel())); this.container.appendChild(this.addLineJumps(this.createPanel())); var opacityPanel = this.createRelativeOption(mxResources.get('opacity'), mxConstants.STYLE_OPACITY, 41); opacityPanel.style.paddingTop = '8px'; opacityPanel.style.paddingBottom = '8px'; this.container.appendChild(opacityPanel); this.container.appendChild(this.addEffects(this.createPanel())); } var opsPanel = this.addEditOps(this.createPanel()); if (opsPanel.firstChild != null) { mxUtils.br(opsPanel); } this.container.appendChild(this.addStyleOps(opsPanel)); }; /** * Use browser for parsing CSS. */ StyleFormatPanel.prototype.getCssRules = function(css) { var doc = document.implementation.createHTMLDocument(''); var styleElement = document.createElement('style'); mxUtils.setTextContent(styleElement, css); doc.body.appendChild(styleElement); return styleElement.sheet.cssRules; }; /** * Adds the label menu items to the given menu and parent. */ StyleFormatPanel.prototype.addSvgStyles = function(container) { var ui = this.editorUi; var graph = ui.editor.graph; var ss = this.format.getSelectionState(); container.style.paddingTop = '6px'; container.style.paddingBottom = '6px'; container.style.fontWeight = 'bold'; container.style.display = 'none'; try { var exp = ss.style.editableCssRules; if (exp != null) { var regex = new RegExp(exp); var data = ss.style.image.substring(ss.style.image.indexOf(',') + 1); var xml = (window.atob) ? atob(data) : Base64.decode(data, true); var svg = mxUtils.parseXml(xml); if (svg != null) { var styles = svg.getElementsByTagName('style'); for (var i = 0; i < styles.length; i++) { var rules = this.getCssRules(mxUtils.getTextContent(styles[i])); for (var j = 0; j < rules.length; j++) { this.addSvgRule(container, rules[j], svg, styles[i], rules, j, regex); } } } } } catch (e) { // ignore } return container; }; /** * Adds the label menu items to the given menu and parent. */ StyleFormatPanel.prototype.addSvgRule = function(container, rule, svg, styleElem, rules, ruleIndex, regex) { var ui = this.editorUi; var graph = ui.editor.graph; if (regex.test(rule.selectorText)) { function rgb2hex(rgb) { rgb = rgb.match(/^rgba?[\s+]?\([\s+]?(\d+)[\s+]?,[\s+]?(\d+)[\s+]?,[\s+]?(\d+)[\s+]?/i); return (rgb && rgb.length === 4) ? "#" + ("0" + parseInt(rgb[1],10).toString(16)).slice(-2) + ("0" + parseInt(rgb[2],10).toString(16)).slice(-2) + ("0" + parseInt(rgb[3],10).toString(16)).slice(-2) : ''; }; var addStyleRule = mxUtils.bind(this, function(rule, key, label) { var value = mxUtils.trim(rule.style[key]); if (value != '' && value.substring(0, 4) != 'url(') { var option = this.createColorOption(label + ' ' + rule.selectorText, function() { return rgb2hex(value); }, function(color) { rules[ruleIndex].style[key] = color; var cssTxt = ''; for (var i = 0; i < rules.length; i++) { cssTxt += rules[i].cssText + ' '; } styleElem.textContent = cssTxt; var xml = mxUtils.getXml(svg.documentElement); graph.setCellStyles(mxConstants.STYLE_IMAGE, 'data:image/svg+xml,' + ((window.btoa) ? btoa(xml) : Base64.encode(xml, true)), graph.getSelectionCells()); }, '#ffffff', { install: function(apply) { // ignore }, destroy: function() { // ignore } }); container.appendChild(option); // Shows container if rules are added container.style.display = ''; } }); addStyleRule(rule, 'fill', mxResources.get('fill')); addStyleRule(rule, 'stroke', mxResources.get('line')); addStyleRule(rule, 'stop-color', mxResources.get('gradient')); } }; /** * Adds the label menu items to the given menu and parent. */ StyleFormatPanel.prototype.addEditOps = function(div) { var ss = this.format.getSelectionState(); var btn = null; if (this.editorUi.editor.graph.getSelectionCount() == 1) { btn = mxUtils.button(mxResources.get('editStyle'), mxUtils.bind(this, function(evt) { this.editorUi.actions.get('editStyle').funct(); })); btn.setAttribute('title', mxResources.get('editStyle') + ' (' + this.editorUi.actions.get('editStyle').shortcut + ')'); btn.style.width = '202px'; btn.style.marginBottom = '2px'; div.appendChild(btn); } if (ss.image) { var btn2 = mxUtils.button(mxResources.get('editImage'), mxUtils.bind(this, function(evt) { this.editorUi.actions.get('image').funct(); })); btn2.setAttribute('title', mxResources.get('editImage')); btn2.style.marginBottom = '2px'; if (btn == null) { btn2.style.width = '202px'; } else { btn.style.width = '100px'; btn2.style.width = '100px'; btn2.style.marginLeft = '2px'; } div.appendChild(btn2); } return div; }; /** * Adds the label menu items to the given menu and parent. */ StyleFormatPanel.prototype.addFill = function(container) { var ui = this.editorUi; var graph = ui.editor.graph; var ss = this.format.getSelectionState(); container.style.paddingTop = '6px'; container.style.paddingBottom = '6px'; // Adds gradient direction option var gradientSelect = document.createElement('select'); gradientSelect.style.position = 'absolute'; gradientSelect.style.marginTop = '-2px'; gradientSelect.style.right = (mxClient.IS_QUIRKS) ? '52px' : '72px'; gradientSelect.style.width = '70px'; var fillStyleSelect = gradientSelect.cloneNode(false); // Stops events from bubbling to color option event handler mxEvent.addListener(gradientSelect, 'click', function(evt) { mxEvent.consume(evt); }); mxEvent.addListener(fillStyleSelect, 'click', function(evt) { mxEvent.consume(evt); }); var defs = (ss.vertices.length >= 1) ? graph.stylesheet.getDefaultVertexStyle() : graph.stylesheet.getDefaultEdgeStyle(); var gradientPanel = this.createCellColorOption(mxResources.get('gradient'), mxConstants.STYLE_GRADIENTCOLOR, (defs[mxConstants.STYLE_GRADIENTCOLOR] != null) ? defs[mxConstants.STYLE_GRADIENTCOLOR] : '#ffffff', function(color) { if (color == null || color == mxConstants.NONE) { gradientSelect.style.display = 'none'; } else { gradientSelect.style.display = ''; } }, function(color) { graph.updateCellStyles(mxConstants.STYLE_GRADIENTCOLOR, color, graph.getSelectionCells()); }); var fillKey = (ss.style.shape == 'image') ? mxConstants.STYLE_IMAGE_BACKGROUND : mxConstants.STYLE_FILLCOLOR; var label = (ss.style.shape == 'image') ? mxResources.get('background') : mxResources.get('fill'); var defs = (ss.vertices.length >= 1) ? graph.stylesheet.getDefaultVertexStyle() : graph.stylesheet.getDefaultEdgeStyle(); var fillPanel = this.createCellColorOption(label, fillKey, (defs[fillKey] != null) ? defs[fillKey] : '#ffffff', null, mxUtils.bind(this, function(color) { graph.updateCellStyles(fillKey, color, graph.getSelectionCells()); })); fillPanel.style.fontWeight = 'bold'; var tmpColor = mxUtils.getValue(ss.style, fillKey, null); gradientPanel.style.display = (tmpColor != null && tmpColor != mxConstants.NONE && ss.fill && ss.style.shape != 'image') ? '' : 'none'; var directions = [mxConstants.DIRECTION_NORTH, mxConstants.DIRECTION_EAST, mxConstants.DIRECTION_SOUTH, mxConstants.DIRECTION_WEST]; for (var i = 0; i < directions.length; i++) { var gradientOption = document.createElement('option'); gradientOption.setAttribute('value', directions[i]); mxUtils.write(gradientOption, mxResources.get(directions[i])); gradientSelect.appendChild(gradientOption); } gradientPanel.appendChild(gradientSelect); for (var i = 0; i < Editor.roughFillStyles.length; i++) { var fillStyleOption = document.createElement('option'); fillStyleOption.setAttribute('value', Editor.roughFillStyles[i].val); mxUtils.write(fillStyleOption, Editor.roughFillStyles[i].dispName); fillStyleSelect.appendChild(fillStyleOption); } fillPanel.appendChild(fillStyleSelect); var listener = mxUtils.bind(this, function() { ss = this.format.getSelectionState(); var value = mxUtils.getValue(ss.style, mxConstants.STYLE_GRADIENT_DIRECTION, mxConstants.DIRECTION_SOUTH); var fillStyle = mxUtils.getValue(ss.style, 'fillStyle', 'auto'); // Handles empty string which is not allowed as a value if (value == '') { value = mxConstants.DIRECTION_SOUTH; } gradientSelect.value = value; fillStyleSelect.value = fillStyle; container.style.display = (ss.fill) ? '' : 'none'; var fillColor = mxUtils.getValue(ss.style, mxConstants.STYLE_FILLCOLOR, null); if (!ss.fill || ss.containsImage || fillColor == null || fillColor == mxConstants.NONE || ss.style.shape == 'filledEdge') { fillStyleSelect.style.display = 'none'; gradientPanel.style.display = 'none'; } else { fillStyleSelect.style.display = (ss.style.sketch == '1') ? '' : 'none'; gradientPanel.style.display = (ss.style.sketch != '1' || fillStyle == 'solid' || fillStyle == 'auto') ? '' : 'none'; } }); graph.getModel().addListener(mxEvent.CHANGE, listener); this.listeners.push({destroy: function() { graph.getModel().removeListener(listener); }}); listener(); mxEvent.addListener(gradientSelect, 'change', function(evt) { graph.setCellStyles(mxConstants.STYLE_GRADIENT_DIRECTION, gradientSelect.value, graph.getSelectionCells()); mxEvent.consume(evt); }); mxEvent.addListener(fillStyleSelect, 'change', function(evt) { graph.setCellStyles('fillStyle', fillStyleSelect.value, graph.getSelectionCells()); mxEvent.consume(evt); }); container.appendChild(fillPanel); container.appendChild(gradientPanel); // Adds custom colors var custom = this.getCustomColors(); for (var i = 0; i < custom.length; i++) { container.appendChild(this.createCellColorOption(custom[i].title, custom[i].key, custom[i].defaultValue)); } return container; }; /** * Adds the label menu items to the given menu and parent. */ StyleFormatPanel.prototype.getCustomColors = function() { var ss = this.format.getSelectionState(); var result = []; if (ss.style.shape == 'swimlane' || ss.style.shape == 'table') { result.push({title: mxResources.get('laneColor'), key: 'swimlaneFillColor', defaultValue: '#ffffff'}); } return result; }; /** * Adds the label menu items to the given menu and parent. */ StyleFormatPanel.prototype.addStroke = function(container) { var ui = this.editorUi; var graph = ui.editor.graph; var ss = this.format.getSelectionState(); container.style.paddingTop = '4px'; container.style.paddingBottom = '4px'; container.style.whiteSpace = 'normal'; var colorPanel = document.createElement('div'); colorPanel.style.fontWeight = 'bold'; if (!ss.stroke) { colorPanel.style.display = 'none'; } // Adds gradient direction option var styleSelect = document.createElement('select'); styleSelect.style.position = 'absolute'; styleSelect.style.marginTop = '-2px'; styleSelect.style.right = '72px'; styleSelect.style.width = '80px'; var styles = ['sharp', 'rounded', 'curved']; for (var i = 0; i < styles.length; i++) { var styleOption = document.createElement('option'); styleOption.setAttribute('value', styles[i]); mxUtils.write(styleOption, mxResources.get(styles[i])); styleSelect.appendChild(styleOption); } mxEvent.addListener(styleSelect, 'change', function(evt) { graph.getModel().beginUpdate(); try { var keys = [mxConstants.STYLE_ROUNDED, mxConstants.STYLE_CURVED]; // Default for rounded is 1 var values = ['0', null]; if (styleSelect.value == 'rounded') { values = ['1', null]; } else if (styleSelect.value == 'curved') { values = [null, '1']; } for (var i = 0; i < keys.length; i++) { graph.setCellStyles(keys[i], values[i], graph.getSelectionCells()); } ui.fireEvent(new mxEventObject('styleChanged', 'keys', keys, 'values', values, 'cells', graph.getSelectionCells())); } finally { graph.getModel().endUpdate(); } mxEvent.consume(evt); }); // Stops events from bubbling to color option event handler mxEvent.addListener(styleSelect, 'click', function(evt) { mxEvent.consume(evt); }); var strokeKey = (ss.style.shape == 'image') ? mxConstants.STYLE_IMAGE_BORDER : mxConstants.STYLE_STROKECOLOR; var label = (ss.style.shape == 'image') ? mxResources.get('border') : mxResources.get('line'); var defs = (ss.vertices.length >= 1) ? graph.stylesheet.getDefaultVertexStyle() : graph.stylesheet.getDefaultEdgeStyle(); var lineColor = this.createCellColorOption(label, strokeKey, (defs[strokeKey] != null) ? defs[strokeKey] : '#000000', null, mxUtils.bind(this, function(color) { graph.updateCellStyles(strokeKey, color, graph.getSelectionCells()); })); lineColor.appendChild(styleSelect); colorPanel.appendChild(lineColor); // Used if only edges selected var stylePanel = colorPanel.cloneNode(false); stylePanel.style.fontWeight = 'normal'; stylePanel.style.whiteSpace = 'nowrap'; stylePanel.style.position = 'relative'; stylePanel.style.paddingLeft = '16px' stylePanel.style.marginBottom = '2px'; stylePanel.style.marginTop = '2px'; stylePanel.className = 'geToolbarContainer'; var addItem = mxUtils.bind(this, function(menu, width, cssName, keys, values) { var item = this.editorUi.menus.styleChange(menu, '', keys, values, 'geIcon', null); var pat = document.createElement('div'); pat.style.width = width + 'px'; pat.style.height = '1px'; pat.style.borderBottom = '1px ' + cssName + ' ' + this.defaultStrokeColor; pat.style.paddingTop = '6px'; item.firstChild.firstChild.style.padding = '0px 4px 0px 4px'; item.firstChild.firstChild.style.width = width + 'px'; item.firstChild.firstChild.appendChild(pat); return item; }); var pattern = this.editorUi.toolbar.addMenuFunctionInContainer(stylePanel, 'geSprite-orthogonal', mxResources.get('pattern'), false, mxUtils.bind(this, function(menu) { addItem(menu, 75, 'solid', [mxConstants.STYLE_DASHED, mxConstants.STYLE_DASH_PATTERN], [null, null]).setAttribute('title', mxResources.get('solid')); addItem(menu, 75, 'dashed', [mxConstants.STYLE_DASHED, mxConstants.STYLE_DASH_PATTERN], ['1', null]).setAttribute('title', mxResources.get('dashed')); addItem(menu, 75, 'dotted', [mxConstants.STYLE_DASHED, mxConstants.STYLE_DASH_PATTERN], ['1', '1 1']).setAttribute('title', mxResources.get('dotted') + ' (1)'); addItem(menu, 75, 'dotted', [mxConstants.STYLE_DASHED, mxConstants.STYLE_DASH_PATTERN], ['1', '1 2']).setAttribute('title', mxResources.get('dotted') + ' (2)'); addItem(menu, 75, 'dotted', [mxConstants.STYLE_DASHED, mxConstants.STYLE_DASH_PATTERN], ['1', '1 4']).setAttribute('title', mxResources.get('dotted') + ' (3)'); })); // Used for mixed selection (vertices and edges) var altStylePanel = stylePanel.cloneNode(false); var edgeShape = this.editorUi.toolbar.addMenuFunctionInContainer(altStylePanel, 'geSprite-connection', mxResources.get('connection'), false, mxUtils.bind(this, function(menu) { this.editorUi.menus.styleChange(menu, '', [mxConstants.STYLE_SHAPE, mxConstants.STYLE_STARTSIZE, mxConstants.STYLE_ENDSIZE, 'width'], [null, null, null, null], 'geIcon geSprite geSprite-connection', null, true).setAttribute('title', mxResources.get('line')); this.editorUi.menus.styleChange(menu, '', [mxConstants.STYLE_SHAPE, mxConstants.STYLE_STARTSIZE, mxConstants.STYLE_ENDSIZE, 'width'], ['link', null, null, null], 'geIcon geSprite geSprite-linkedge', null, true).setAttribute('title', mxResources.get('link')); this.editorUi.menus.styleChange(menu, '', [mxConstants.STYLE_SHAPE, mxConstants.STYLE_STARTSIZE, mxConstants.STYLE_ENDSIZE, 'width'], ['flexArrow', null, null, null], 'geIcon geSprite geSprite-arrow', null, true).setAttribute('title', mxResources.get('arrow')); this.editorUi.menus.styleChange(menu, '', [mxConstants.STYLE_SHAPE, mxConstants.STYLE_STARTSIZE, mxConstants.STYLE_ENDSIZE, 'width'], ['arrow', null, null, null], 'geIcon geSprite geSprite-simplearrow', null, true).setAttribute('title', mxResources.get('simpleArrow')); })); var altPattern = this.editorUi.toolbar.addMenuFunctionInContainer(altStylePanel, 'geSprite-orthogonal', mxResources.get('pattern'), false, mxUtils.bind(this, function(menu) { addItem(menu, 33, 'solid', [mxConstants.STYLE_DASHED, mxConstants.STYLE_DASH_PATTERN], [null, null]).setAttribute('title', mxResources.get('solid')); addItem(menu, 33, 'dashed', [mxConstants.STYLE_DASHED, mxConstants.STYLE_DASH_PATTERN], ['1', null]).setAttribute('title', mxResources.get('dashed')); addItem(menu, 33, 'dotted', [mxConstants.STYLE_DASHED, mxConstants.STYLE_DASH_PATTERN], ['1', '1 1']).setAttribute('title', mxResources.get('dotted') + ' (1)'); addItem(menu, 33, 'dotted', [mxConstants.STYLE_DASHED, mxConstants.STYLE_DASH_PATTERN], ['1', '1 2']).setAttribute('title', mxResources.get('dotted') + ' (2)'); addItem(menu, 33, 'dotted', [mxConstants.STYLE_DASHED, mxConstants.STYLE_DASH_PATTERN], ['1', '1 4']).setAttribute('title', mxResources.get('dotted') + ' (3)'); })); var stylePanel2 = stylePanel.cloneNode(false); // Stroke width var input = document.createElement('input'); input.style.textAlign = 'right'; input.style.marginTop = '2px'; input.style.width = '41px'; input.setAttribute('title', mxResources.get('linewidth')); stylePanel.appendChild(input); var altInput = input.cloneNode(true); altStylePanel.appendChild(altInput); function update(evt) { // Maximum stroke width is 999 var value = parseInt(input.value); value = Math.min(999, Math.max(1, (isNaN(value)) ? 1 : value)); if (value != mxUtils.getValue(ss.style, mxConstants.STYLE_STROKEWIDTH, 1)) { graph.setCellStyles(mxConstants.STYLE_STROKEWIDTH, value, graph.getSelectionCells()); ui.fireEvent(new mxEventObject('styleChanged', 'keys', [mxConstants.STYLE_STROKEWIDTH], 'values', [value], 'cells', graph.getSelectionCells())); } input.value = value + ' pt'; mxEvent.consume(evt); }; function altUpdate(evt) { // Maximum stroke width is 999 var value = parseInt(altInput.value); value = Math.min(999, Math.max(1, (isNaN(value)) ? 1 : value)); if (value != mxUtils.getValue(ss.style, mxConstants.STYLE_STROKEWIDTH, 1)) { graph.setCellStyles(mxConstants.STYLE_STROKEWIDTH, value, graph.getSelectionCells()); ui.fireEvent(new mxEventObject('styleChanged', 'keys', [mxConstants.STYLE_STROKEWIDTH], 'values', [value], 'cells', graph.getSelectionCells())); } altInput.value = value + ' pt'; mxEvent.consume(evt); }; var stepper = this.createStepper(input, update, 1, 9); stepper.style.display = input.style.display; stepper.style.marginTop = '2px'; stylePanel.appendChild(stepper); var altStepper = this.createStepper(altInput, altUpdate, 1, 9); altStepper.style.display = altInput.style.display; altStepper.style.marginTop = '2px'; altStylePanel.appendChild(altStepper); if (!mxClient.IS_QUIRKS) { input.style.position = 'absolute'; input.style.height = '15px'; input.style.left = '141px'; stepper.style.left = '190px'; altInput.style.position = 'absolute'; altInput.style.left = '141px'; altInput.style.height = '15px'; altStepper.style.left = '190px'; } else { input.style.height = '17px'; altInput.style.height = '17px'; } mxEvent.addListener(input, 'blur', update); mxEvent.addListener(input, 'change', update); mxEvent.addListener(altInput, 'blur', altUpdate); mxEvent.addListener(altInput, 'change', altUpdate); if (mxClient.IS_QUIRKS) { mxUtils.br(stylePanel2); mxUtils.br(stylePanel2); } var edgeStyle = this.editorUi.toolbar.addMenuFunctionInContainer(stylePanel2, 'geSprite-orthogonal', mxResources.get('waypoints'), false, mxUtils.bind(this, function(menu) { if (ss.style.shape != 'arrow') { this.editorUi.menus.edgeStyleChange(menu, '', [mxConstants.STYLE_EDGE, mxConstants.STYLE_CURVED, mxConstants.STYLE_NOEDGESTYLE], [null, null, null], 'geIcon geSprite geSprite-straight', null, true).setAttribute('title', mxResources.get('straight')); this.editorUi.menus.edgeStyleChange(menu, '', [mxConstants.STYLE_EDGE, mxConstants.STYLE_CURVED, mxConstants.STYLE_NOEDGESTYLE], ['orthogonalEdgeStyle', null, null], 'geIcon geSprite geSprite-orthogonal', null, true).setAttribute('title', mxResources.get('orthogonal')); this.editorUi.menus.edgeStyleChange(menu, '', [mxConstants.STYLE_EDGE, mxConstants.STYLE_ELBOW, mxConstants.STYLE_CURVED, mxConstants.STYLE_NOEDGESTYLE], ['elbowEdgeStyle', null, null, null], 'geIcon geSprite geSprite-horizontalelbow', null, true).setAttribute('title', mxResources.get('simple')); this.editorUi.menus.edgeStyleChange(menu, '', [mxConstants.STYLE_EDGE, mxConstants.STYLE_ELBOW, mxConstants.STYLE_CURVED, mxConstants.STYLE_NOEDGESTYLE], ['elbowEdgeStyle', 'vertical', null, null], 'geIcon geSprite geSprite-verticalelbow', null, true).setAttribute('title', mxResources.get('simple')); this.editorUi.menus.edgeStyleChange(menu, '', [mxConstants.STYLE_EDGE, mxConstants.STYLE_ELBOW, mxConstants.STYLE_CURVED, mxConstants.STYLE_NOEDGESTYLE], ['isometricEdgeStyle', null, null, null], 'geIcon geSprite geSprite-horizontalisometric', null, true).setAttribute('title', mxResources.get('isometric')); this.editorUi.menus.edgeStyleChange(menu, '', [mxConstants.STYLE_EDGE, mxConstants.STYLE_ELBOW, mxConstants.STYLE_CURVED, mxConstants.STYLE_NOEDGESTYLE], ['isometricEdgeStyle', 'vertical', null, null], 'geIcon geSprite geSprite-verticalisometric', null, true).setAttribute('title', mxResources.get('isometric')); if (ss.style.shape == 'connector') { this.editorUi.menus.edgeStyleChange(menu, '', [mxConstants.STYLE_EDGE, mxConstants.STYLE_CURVED, mxConstants.STYLE_NOEDGESTYLE], ['orthogonalEdgeStyle', '1', null], 'geIcon geSprite geSprite-curved', null, true).setAttribute('title', mxResources.get('curved')); } this.editorUi.menus.edgeStyleChange(menu, '', [mxConstants.STYLE_EDGE, mxConstants.STYLE_CURVED, mxConstants.STYLE_NOEDGESTYLE], ['entityRelationEdgeStyle', null, null], 'geIcon geSprite geSprite-entity', null, true).setAttribute('title', mxResources.get('entityRelation')); } })); var lineStart = this.editorUi.toolbar.addMenuFunctionInContainer(stylePanel2, 'geSprite-startclassic', mxResources.get('linestart'), false, mxUtils.bind(this, function(menu) { if (ss.style.shape == 'connector' || ss.style.shape == 'flexArrow' || ss.style.shape == 'filledEdge') { var item = this.editorUi.menus.edgeStyleChange(menu, '', [mxConstants.STYLE_STARTARROW, 'startFill'], [mxConstants.NONE, 0], 'geIcon', null, false); item.setAttribute('title', mxResources.get('none')); item.firstChild.firstChild.innerHTML = '' + mxUtils.htmlEntities(mxResources.get('none')) + ''; if (ss.style.shape == 'connector' || ss.style.shape == 'filledEdge') { this.editorUi.menus.edgeStyleChange(menu, '', [mxConstants.STYLE_STARTARROW, 'startFill'], [mxConstants.ARROW_CLASSIC, 1], 'geIcon geSprite geSprite-startclassic', null, false).setAttribute('title', mxResources.get('classic')); this.editorUi.menus.edgeStyleChange(menu, '', [mxConstants.STYLE_STARTARROW, 'startFill'], [mxConstants.ARROW_CLASSIC_THIN, 1], 'geIcon geSprite geSprite-startclassicthin', null, false); this.editorUi.menus.edgeStyleChange(menu, '', [mxConstants.STYLE_STARTARROW, 'startFill'], [mxConstants.ARROW_OPEN, 0], 'geIcon geSprite geSprite-startopen', null, false).setAttribute('title', mxResources.get('openArrow')); this.editorUi.menus.edgeStyleChange(menu, '', [mxConstants.STYLE_STARTARROW, 'startFill'], [mxConstants.ARROW_OPEN_THIN, 0], 'geIcon geSprite geSprite-startopenthin', null, false); this.editorUi.menus.edgeStyleChange(menu, '', [mxConstants.STYLE_STARTARROW, 'startFill'], ['openAsync', 0], 'geIcon geSprite geSprite-startopenasync', null, false); this.editorUi.menus.edgeStyleChange(menu, '', [mxConstants.STYLE_STARTARROW, 'startFill'], [mxConstants.ARROW_BLOCK, 1], 'geIcon geSprite geSprite-startblock', null, false).setAttribute('title', mxResources.get('block')); this.editorUi.menus.edgeStyleChange(menu, '', [mxConstants.STYLE_STARTARROW, 'startFill'], [mxConstants.ARROW_BLOCK_THIN, 1], 'geIcon geSprite geSprite-startblockthin', null, false); this.editorUi.menus.edgeStyleChange(menu, '', [mxConstants.STYLE_STARTARROW, 'startFill'], ['async', 1], 'geIcon geSprite geSprite-startasync', null, false); this.editorUi.menus.edgeStyleChange(menu, '', [mxConstants.STYLE_STARTARROW, 'startFill'], [mxConstants.ARROW_OVAL, 1], 'geIcon geSprite geSprite-startoval', null, false).setAttribute('title', mxResources.get('oval')); this.editorUi.menus.edgeStyleChange(menu, '', [mxConstants.STYLE_STARTARROW, 'startFill'], [mxConstants.ARROW_DIAMOND, 1], 'geIcon geSprite geSprite-startdiamond', null, false).setAttribute('title', mxResources.get('diamond')); this.editorUi.menus.edgeStyleChange(menu, '', [mxConstants.STYLE_STARTARROW, 'startFill'], [mxConstants.ARROW_DIAMOND_THIN, 1], 'geIcon geSprite geSprite-startthindiamond', null, false).setAttribute('title', mxResources.get('diamondThin')); this.editorUi.menus.edgeStyleChange(menu, '', [mxConstants.STYLE_STARTARROW, 'startFill'], [mxConstants.ARROW_CLASSIC, 0], 'geIcon geSprite geSprite-startclassictrans', null, false).setAttribute('title', mxResources.get('classic')); this.editorUi.menus.edgeStyleChange(menu, '', [mxConstants.STYLE_STARTARROW, 'startFill'], [mxConstants.ARROW_CLASSIC_THIN, 0], 'geIcon geSprite geSprite-startclassicthintrans', null, false); this.editorUi.menus.edgeStyleChange(menu, '', [mxConstants.STYLE_STARTARROW, 'startFill'], [mxConstants.ARROW_BLOCK, 0], 'geIcon geSprite geSprite-startblocktrans', null, false).setAttribute('title', mxResources.get('block')); this.editorUi.menus.edgeStyleChange(menu, '', [mxConstants.STYLE_STARTARROW, 'startFill'], [mxConstants.ARROW_BLOCK_THIN, 0], 'geIcon geSprite geSprite-startblockthintrans', null, false); this.editorUi.menus.edgeStyleChange(menu, '', [mxConstants.STYLE_STARTARROW, 'startFill'], ['async', 0], 'geIcon geSprite geSprite-startasynctrans', null, false); this.editorUi.menus.edgeStyleChange(menu, '', [mxConstants.STYLE_STARTARROW, 'startFill'], [mxConstants.ARROW_OVAL, 0], 'geIcon geSprite geSprite-startovaltrans', null, false).setAttribute('title', mxResources.get('oval')); this.editorUi.menus.edgeStyleChange(menu, '', [mxConstants.STYLE_STARTARROW, 'startFill'], [mxConstants.ARROW_DIAMOND, 0], 'geIcon geSprite geSprite-startdiamondtrans', null, false).setAttribute('title', mxResources.get('diamond')); this.editorUi.menus.edgeStyleChange(menu, '', [mxConstants.STYLE_STARTARROW, 'startFill'], [mxConstants.ARROW_DIAMOND_THIN, 0], 'geIcon geSprite geSprite-startthindiamondtrans', null, false).setAttribute('title', mxResources.get('diamondThin')); this.editorUi.menus.edgeStyleChange(menu, '', [mxConstants.STYLE_STARTARROW, 'startFill'], ['box', 0], 'geIcon geSprite geSvgSprite geSprite-box', null, false); this.editorUi.menus.edgeStyleChange(menu, '', [mxConstants.STYLE_STARTARROW, 'startFill'], ['halfCircle', 0], 'geIcon geSprite geSvgSprite geSprite-halfCircle', null, false); this.editorUi.menus.edgeStyleChange(menu, '', [mxConstants.STYLE_STARTARROW, 'startFill'], ['dash', 0], 'geIcon geSprite geSprite-startdash', null, false); this.editorUi.menus.edgeStyleChange(menu, '', [mxConstants.STYLE_STARTARROW, 'startFill'], ['cross', 0], 'geIcon geSprite geSprite-startcross', null, false); this.editorUi.menus.edgeStyleChange(menu, '', [mxConstants.STYLE_STARTARROW, 'startFill'], ['circlePlus', 0], 'geIcon geSprite geSprite-startcircleplus', null, false); this.editorUi.menus.edgeStyleChange(menu, '', [mxConstants.STYLE_STARTARROW, 'startFill'], ['circle', 1], 'geIcon geSprite geSprite-startcircle', null, false); this.editorUi.menus.edgeStyleChange(menu, '', [mxConstants.STYLE_STARTARROW, 'startFill'], ['ERone', 0], 'geIcon geSprite geSprite-starterone', null, false); this.editorUi.menus.edgeStyleChange(menu, '', [mxConstants.STYLE_STARTARROW, 'startFill'], ['ERmandOne', 0], 'geIcon geSprite geSprite-starteronetoone', null, false); this.editorUi.menus.edgeStyleChange(menu, '', [mxConstants.STYLE_STARTARROW, 'startFill'], ['ERmany', 0], 'geIcon geSprite geSprite-startermany', null, false); this.editorUi.menus.edgeStyleChange(menu, '', [mxConstants.STYLE_STARTARROW, 'startFill'], ['ERoneToMany', 0], 'geIcon geSprite geSprite-starteronetomany', null, false); this.editorUi.menus.edgeStyleChange(menu, '', [mxConstants.STYLE_STARTARROW, 'startFill'], ['ERzeroToOne', 1], 'geIcon geSprite geSprite-starteroneopt', null, false); this.editorUi.menus.edgeStyleChange(menu, '', [mxConstants.STYLE_STARTARROW, 'startFill'], ['ERzeroToMany', 1], 'geIcon geSprite geSprite-startermanyopt', null, false); } else { this.editorUi.menus.edgeStyleChange(menu, '', [mxConstants.STYLE_STARTARROW], [mxConstants.ARROW_BLOCK], 'geIcon geSprite geSprite-startblocktrans', null, false).setAttribute('title', mxResources.get('block')); } } })); var lineEnd = this.editorUi.toolbar.addMenuFunctionInContainer(stylePanel2, 'geSprite-endclassic', mxResources.get('lineend'), false, mxUtils.bind(this, function(menu) { if (ss.style.shape == 'connector' || ss.style.shape == 'flexArrow' || ss.style.shape == 'filledEdge') { var item = this.editorUi.menus.edgeStyleChange(menu, '', [mxConstants.STYLE_ENDARROW, 'endFill'], [mxConstants.NONE, 0], 'geIcon', null, false); item.setAttribute('title', mxResources.get('none')); item.firstChild.firstChild.innerHTML = '' + mxUtils.htmlEntities(mxResources.get('none')) + ''; if (ss.style.shape == 'connector' || ss.style.shape == 'filledEdge') { this.editorUi.menus.edgeStyleChange(menu, '', [mxConstants.STYLE_ENDARROW, 'endFill'], [mxConstants.ARROW_CLASSIC, 1], 'geIcon geSprite geSprite-endclassic', null, false).setAttribute('title', mxResources.get('classic')); this.editorUi.menus.edgeStyleChange(menu, '', [mxConstants.STYLE_ENDARROW, 'endFill'], [mxConstants.ARROW_CLASSIC_THIN, 1], 'geIcon geSprite geSprite-endclassicthin', null, false); this.editorUi.menus.edgeStyleChange(menu, '', [mxConstants.STYLE_ENDARROW, 'endFill'], [mxConstants.ARROW_OPEN, 0], 'geIcon geSprite geSprite-endopen', null, false).setAttribute('title', mxResources.get('openArrow')); this.editorUi.menus.edgeStyleChange(menu, '', [mxConstants.STYLE_ENDARROW, 'endFill'], [mxConstants.ARROW_OPEN_THIN, 0], 'geIcon geSprite geSprite-endopenthin', null, false); this.editorUi.menus.edgeStyleChange(menu, '', [mxConstants.STYLE_ENDARROW, 'endFill'], ['openAsync', 0], 'geIcon geSprite geSprite-endopenasync', null, false); this.editorUi.menus.edgeStyleChange(menu, '', [mxConstants.STYLE_ENDARROW, 'endFill'], [mxConstants.ARROW_BLOCK, 1], 'geIcon geSprite geSprite-endblock', null, false).setAttribute('title', mxResources.get('block')); this.editorUi.menus.edgeStyleChange(menu, '', [mxConstants.STYLE_ENDARROW, 'endFill'], [mxConstants.ARROW_BLOCK_THIN, 1], 'geIcon geSprite geSprite-endblockthin', null, false); this.editorUi.menus.edgeStyleChange(menu, '', [mxConstants.STYLE_ENDARROW, 'endFill'], ['async', 1], 'geIcon geSprite geSprite-endasync', null, false); this.editorUi.menus.edgeStyleChange(menu, '', [mxConstants.STYLE_ENDARROW, 'endFill'], [mxConstants.ARROW_OVAL, 1], 'geIcon geSprite geSprite-endoval', null, false).setAttribute('title', mxResources.get('oval')); this.editorUi.menus.edgeStyleChange(menu, '', [mxConstants.STYLE_ENDARROW, 'endFill'], [mxConstants.ARROW_DIAMOND, 1], 'geIcon geSprite geSprite-enddiamond', null, false).setAttribute('title', mxResources.get('diamond')); this.editorUi.menus.edgeStyleChange(menu, '', [mxConstants.STYLE_ENDARROW, 'endFill'], [mxConstants.ARROW_DIAMOND_THIN, 1], 'geIcon geSprite geSprite-endthindiamond', null, false).setAttribute('title', mxResources.get('diamondThin')); this.editorUi.menus.edgeStyleChange(menu, '', [mxConstants.STYLE_ENDARROW, 'endFill'], [mxConstants.ARROW_CLASSIC, 0], 'geIcon geSprite geSprite-endclassictrans', null, false).setAttribute('title', mxResources.get('classic')); this.editorUi.menus.edgeStyleChange(menu, '', [mxConstants.STYLE_ENDARROW, 'endFill'], [mxConstants.ARROW_CLASSIC_THIN, 0], 'geIcon geSprite geSprite-endclassicthintrans', null, false); this.editorUi.menus.edgeStyleChange(menu, '', [mxConstants.STYLE_ENDARROW, 'endFill'], [mxConstants.ARROW_BLOCK, 0], 'geIcon geSprite geSprite-endblocktrans', null, false).setAttribute('title', mxResources.get('block')); this.editorUi.menus.edgeStyleChange(menu, '', [mxConstants.STYLE_ENDARROW, 'endFill'], [mxConstants.ARROW_BLOCK_THIN, 0], 'geIcon geSprite geSprite-endblockthintrans', null, false); this.editorUi.menus.edgeStyleChange(menu, '', [mxConstants.STYLE_ENDARROW, 'endFill'], ['async', 0], 'geIcon geSprite geSprite-endasynctrans', null, false); this.editorUi.menus.edgeStyleChange(menu, '', [mxConstants.STYLE_ENDARROW, 'endFill'], [mxConstants.ARROW_OVAL, 0], 'geIcon geSprite geSprite-endovaltrans', null, false).setAttribute('title', mxResources.get('oval')); this.editorUi.menus.edgeStyleChange(menu, '', [mxConstants.STYLE_ENDARROW, 'endFill'], [mxConstants.ARROW_DIAMOND, 0], 'geIcon geSprite geSprite-enddiamondtrans', null, false).setAttribute('title', mxResources.get('diamond')); this.editorUi.menus.edgeStyleChange(menu, '', [mxConstants.STYLE_ENDARROW, 'endFill'], [mxConstants.ARROW_DIAMOND_THIN, 0], 'geIcon geSprite geSprite-endthindiamondtrans', null, false).setAttribute('title', mxResources.get('diamondThin')); this.editorUi.menus.edgeStyleChange(menu, '', [mxConstants.STYLE_ENDARROW, 'endFill'], ['box', 0], 'geIcon geSprite geSvgSprite geFlipSprite geSprite-box', null, false); this.editorUi.menus.edgeStyleChange(menu, '', [mxConstants.STYLE_ENDARROW, 'endFill'], ['halfCircle', 0], 'geIcon geSprite geSvgSprite geFlipSprite geSprite-halfCircle', null, false); this.editorUi.menus.edgeStyleChange(menu, '', [mxConstants.STYLE_ENDARROW, 'endFill'], ['dash', 0], 'geIcon geSprite geSprite-enddash', null, false); this.editorUi.menus.edgeStyleChange(menu, '', [mxConstants.STYLE_ENDARROW, 'endFill'], ['cross', 0], 'geIcon geSprite geSprite-endcross', null, false); this.editorUi.menus.edgeStyleChange(menu, '', [mxConstants.STYLE_ENDARROW, 'endFill'], ['circlePlus', 0], 'geIcon geSprite geSprite-endcircleplus', null, false); this.editorUi.menus.edgeStyleChange(menu, '', [mxConstants.STYLE_ENDARROW, 'endFill'], ['circle', 1], 'geIcon geSprite geSprite-endcircle', null, false); this.editorUi.menus.edgeStyleChange(menu, '', [mxConstants.STYLE_ENDARROW, 'endFill'], ['ERone', 0], 'geIcon geSprite geSprite-enderone', null, false); this.editorUi.menus.edgeStyleChange(menu, '', [mxConstants.STYLE_ENDARROW, 'endFill'], ['ERmandOne', 0], 'geIcon geSprite geSprite-enderonetoone', null, false); this.editorUi.menus.edgeStyleChange(menu, '', [mxConstants.STYLE_ENDARROW, 'endFill'], ['ERmany', 0], 'geIcon geSprite geSprite-endermany', null, false); this.editorUi.menus.edgeStyleChange(menu, '', [mxConstants.STYLE_ENDARROW, 'endFill'], ['ERoneToMany', 0], 'geIcon geSprite geSprite-enderonetomany', null, false); this.editorUi.menus.edgeStyleChange(menu, '', [mxConstants.STYLE_ENDARROW, 'endFill'], ['ERzeroToOne', 1], 'geIcon geSprite geSprite-enderoneopt', null, false); this.editorUi.menus.edgeStyleChange(menu, '', [mxConstants.STYLE_ENDARROW, 'endFill'], ['ERzeroToMany', 1], 'geIcon geSprite geSprite-endermanyopt', null, false); } else { this.editorUi.menus.edgeStyleChange(menu, '', [mxConstants.STYLE_ENDARROW], [mxConstants.ARROW_BLOCK], 'geIcon geSprite geSprite-endblocktrans', null, false).setAttribute('title', mxResources.get('block')); } } })); this.addArrow(edgeShape, 8); this.addArrow(edgeStyle); this.addArrow(lineStart); this.addArrow(lineEnd); var symbol = this.addArrow(pattern, 9); symbol.className = 'geIcon'; symbol.style.width = 'auto'; var altSymbol = this.addArrow(altPattern, 9); altSymbol.className = 'geIcon'; altSymbol.style.width = '22px'; var solid = document.createElement('div'); solid.style.width = '85px'; solid.style.height = '1px'; solid.style.borderBottom = '1px solid ' + this.defaultStrokeColor; solid.style.marginBottom = '9px'; symbol.appendChild(solid); var altSolid = document.createElement('div'); altSolid.style.width = '23px'; altSolid.style.height = '1px'; altSolid.style.borderBottom = '1px solid ' + this.defaultStrokeColor; altSolid.style.marginBottom = '9px'; altSymbol.appendChild(altSolid); pattern.style.height = '15px'; altPattern.style.height = '15px'; edgeShape.style.height = '15px'; edgeStyle.style.height = '17px'; lineStart.style.marginLeft = '3px'; lineStart.style.height = '17px'; lineEnd.style.marginLeft = '3px'; lineEnd.style.height = '17px'; container.appendChild(colorPanel); container.appendChild(altStylePanel); container.appendChild(stylePanel); var arrowPanel = stylePanel.cloneNode(false); arrowPanel.style.paddingBottom = '6px'; arrowPanel.style.paddingTop = '4px'; arrowPanel.style.fontWeight = 'normal'; var span = document.createElement('div'); span.style.position = 'absolute'; span.style.marginLeft = '3px'; span.style.marginBottom = '12px'; span.style.marginTop = '2px'; span.style.fontWeight = 'normal'; span.style.width = '76px'; mxUtils.write(span, mxResources.get('lineend')); arrowPanel.appendChild(span); var endSpacingUpdate, endSizeUpdate; var endSpacing = this.addUnitInput(arrowPanel, 'pt', 74, 33, function() { endSpacingUpdate.apply(this, arguments); }); var endSize = this.addUnitInput(arrowPanel, 'pt', 20, 33, function() { endSizeUpdate.apply(this, arguments); }); mxUtils.br(arrowPanel); var spacer = document.createElement('div'); spacer.style.height = '8px'; arrowPanel.appendChild(spacer); span = span.cloneNode(false); mxUtils.write(span, mxResources.get('linestart')); arrowPanel.appendChild(span); var startSpacingUpdate, startSizeUpdate; var startSpacing = this.addUnitInput(arrowPanel, 'pt', 74, 33, function() { startSpacingUpdate.apply(this, arguments); }); var startSize = this.addUnitInput(arrowPanel, 'pt', 20, 33, function() { startSizeUpdate.apply(this, arguments); }); mxUtils.br(arrowPanel); this.addLabel(arrowPanel, mxResources.get('spacing'), 74, 50); this.addLabel(arrowPanel, mxResources.get('size'), 20, 50); mxUtils.br(arrowPanel); var perimeterPanel = colorPanel.cloneNode(false); perimeterPanel.style.fontWeight = 'normal'; perimeterPanel.style.position = 'relative'; perimeterPanel.style.paddingLeft = '16px' perimeterPanel.style.marginBottom = '2px'; perimeterPanel.style.marginTop = '6px'; perimeterPanel.style.borderWidth = '0px'; perimeterPanel.style.paddingBottom = '18px'; var span = document.createElement('div'); span.style.position = 'absolute'; span.style.marginLeft = '3px'; span.style.marginBottom = '12px'; span.style.marginTop = '1px'; span.style.fontWeight = 'normal'; span.style.width = '120px'; mxUtils.write(span, mxResources.get('perimeter')); perimeterPanel.appendChild(span); var perimeterUpdate; var perimeterSpacing = this.addUnitInput(perimeterPanel, 'pt', 20, 41, function() { perimeterUpdate.apply(this, arguments); }); if (ss.edges.length == graph.getSelectionCount()) { container.appendChild(stylePanel2); if (mxClient.IS_QUIRKS) { mxUtils.br(container); mxUtils.br(container); } container.appendChild(arrowPanel); } else if (ss.vertices.length == graph.getSelectionCount()) { if (mxClient.IS_QUIRKS) { mxUtils.br(container); } container.appendChild(perimeterPanel); } var listener = mxUtils.bind(this, function(sender, evt, force) { ss = this.format.getSelectionState(); var color = mxUtils.getValue(ss.style, strokeKey, null); if (force || document.activeElement != input) { var tmp = parseInt(mxUtils.getValue(ss.style, mxConstants.STYLE_STROKEWIDTH, 1)); input.value = (isNaN(tmp)) ? '' : tmp + ' pt'; } if (force || document.activeElement != altInput) { var tmp = parseInt(mxUtils.getValue(ss.style, mxConstants.STYLE_STROKEWIDTH, 1)); altInput.value = (isNaN(tmp)) ? '' : tmp + ' pt'; } styleSelect.style.visibility = (ss.style.shape == 'connector' || ss.style.shape == 'filledEdge') ? '' : 'hidden'; if (mxUtils.getValue(ss.style, mxConstants.STYLE_CURVED, null) == '1') { styleSelect.value = 'curved'; } else if (mxUtils.getValue(ss.style, mxConstants.STYLE_ROUNDED, null) == '1') { styleSelect.value = 'rounded'; } if (mxUtils.getValue(ss.style, mxConstants.STYLE_DASHED, null) == '1') { if (mxUtils.getValue(ss.style, mxConstants.STYLE_DASH_PATTERN, null) == null) { solid.style.borderBottom = '1px dashed ' + this.defaultStrokeColor; } else { solid.style.borderBottom = '1px dotted ' + this.defaultStrokeColor; } } else { solid.style.borderBottom = '1px solid ' + this.defaultStrokeColor; } altSolid.style.borderBottom = solid.style.borderBottom; // Updates toolbar icon for edge style var edgeStyleDiv = edgeStyle.getElementsByTagName('div')[0]; if (edgeStyleDiv != null) { var es = mxUtils.getValue(ss.style, mxConstants.STYLE_EDGE, null); if (mxUtils.getValue(ss.style, mxConstants.STYLE_NOEDGESTYLE, null) == '1') { es = null; } if (es == 'orthogonalEdgeStyle' && mxUtils.getValue(ss.style, mxConstants.STYLE_CURVED, null) == '1') { edgeStyleDiv.className = 'geSprite geSprite-curved'; } else if (es == 'straight' || es == 'none' || es == null) { edgeStyleDiv.className = 'geSprite geSprite-straight'; } else if (es == 'entityRelationEdgeStyle') { edgeStyleDiv.className = 'geSprite geSprite-entity'; } else if (es == 'elbowEdgeStyle') { edgeStyleDiv.className = 'geSprite ' + ((mxUtils.getValue(ss.style, mxConstants.STYLE_ELBOW, null) == 'vertical') ? 'geSprite-verticalelbow' : 'geSprite-horizontalelbow'); } else if (es == 'isometricEdgeStyle') { edgeStyleDiv.className = 'geSprite ' + ((mxUtils.getValue(ss.style, mxConstants.STYLE_ELBOW, null) == 'vertical') ? 'geSprite-verticalisometric' : 'geSprite-horizontalisometric'); } else { edgeStyleDiv.className = 'geSprite geSprite-orthogonal'; } } // Updates icon for edge shape var edgeShapeDiv = edgeShape.getElementsByTagName('div')[0]; if (edgeShapeDiv != null) { if (ss.style.shape == 'link') { edgeShapeDiv.className = 'geSprite geSprite-linkedge'; } else if (ss.style.shape == 'flexArrow') { edgeShapeDiv.className = 'geSprite geSprite-arrow'; } else if (ss.style.shape == 'arrow') { edgeShapeDiv.className = 'geSprite geSprite-simplearrow'; } else { edgeShapeDiv.className = 'geSprite geSprite-connection'; } } if (ss.edges.length == graph.getSelectionCount()) { altStylePanel.style.display = ''; stylePanel.style.display = 'none'; } else { altStylePanel.style.display = 'none'; stylePanel.style.display = ''; } function updateArrow(marker, fill, elt, prefix) { var markerDiv = elt.getElementsByTagName('div')[0]; if (markerDiv != null) { markerDiv.className = ui.getCssClassForMarker(prefix, ss.style.shape, marker, fill); if (markerDiv.className == 'geSprite geSprite-noarrow') { markerDiv.innerHTML = mxUtils.htmlEntities(mxResources.get('none')); markerDiv.style.backgroundImage = 'none'; markerDiv.style.verticalAlign = 'top'; markerDiv.style.marginTop = '5px'; markerDiv.style.fontSize = '10px'; markerDiv.style.filter = 'none'; markerDiv.style.color = this.defaultStrokeColor; markerDiv.nextSibling.style.marginTop = '0px'; } } return markerDiv; }; var sourceDiv = updateArrow(mxUtils.getValue(ss.style, mxConstants.STYLE_STARTARROW, null), mxUtils.getValue(ss.style, 'startFill', '1'), lineStart, 'start'); var targetDiv = updateArrow(mxUtils.getValue(ss.style, mxConstants.STYLE_ENDARROW, null), mxUtils.getValue(ss.style, 'endFill', '1'), lineEnd, 'end'); // Special cases for markers if (sourceDiv != null && targetDiv != null) { if (ss.style.shape == 'arrow') { sourceDiv.className = 'geSprite geSprite-noarrow'; targetDiv.className = 'geSprite geSprite-endblocktrans'; } else if (ss.style.shape == 'link') { sourceDiv.className = 'geSprite geSprite-noarrow'; targetDiv.className = 'geSprite geSprite-noarrow'; } } mxUtils.setOpacity(edgeStyle, (ss.style.shape == 'arrow') ? 30 : 100); if (ss.style.shape != 'connector' && ss.style.shape != 'flexArrow' && ss.style.shape != 'filledEdge') { mxUtils.setOpacity(lineStart, 30); mxUtils.setOpacity(lineEnd, 30); } else { mxUtils.setOpacity(lineStart, 100); mxUtils.setOpacity(lineEnd, 100); } if (force || document.activeElement != startSize) { var tmp = parseInt(mxUtils.getValue(ss.style, mxConstants.STYLE_STARTSIZE, mxConstants.DEFAULT_MARKERSIZE)); startSize.value = (isNaN(tmp)) ? '' : tmp + ' pt'; } if (force || document.activeElement != startSpacing) { var tmp = parseInt(mxUtils.getValue(ss.style, mxConstants.STYLE_SOURCE_PERIMETER_SPACING, 0)); startSpacing.value = (isNaN(tmp)) ? '' : tmp + ' pt'; } if (force || document.activeElement != endSize) { var tmp = parseInt(mxUtils.getValue(ss.style, mxConstants.STYLE_ENDSIZE, mxConstants.DEFAULT_MARKERSIZE)); endSize.value = (isNaN(tmp)) ? '' : tmp + ' pt'; } if (force || document.activeElement != startSpacing) { var tmp = parseInt(mxUtils.getValue(ss.style, mxConstants.STYLE_TARGET_PERIMETER_SPACING, 0)); endSpacing.value = (isNaN(tmp)) ? '' : tmp + ' pt'; } if (force || document.activeElement != perimeterSpacing) { var tmp = parseInt(mxUtils.getValue(ss.style, mxConstants.STYLE_PERIMETER_SPACING, 0)); perimeterSpacing.value = (isNaN(tmp)) ? '' : tmp + ' pt'; } }); startSizeUpdate = this.installInputHandler(startSize, mxConstants.STYLE_STARTSIZE, mxConstants.DEFAULT_MARKERSIZE, 0, 999, ' pt'); startSpacingUpdate = this.installInputHandler(startSpacing, mxConstants.STYLE_SOURCE_PERIMETER_SPACING, 0, -999, 999, ' pt'); endSizeUpdate = this.installInputHandler(endSize, mxConstants.STYLE_ENDSIZE, mxConstants.DEFAULT_MARKERSIZE, 0, 999, ' pt'); endSpacingUpdate = this.installInputHandler(endSpacing, mxConstants.STYLE_TARGET_PERIMETER_SPACING, 0, -999, 999, ' pt'); perimeterUpdate = this.installInputHandler(perimeterSpacing, mxConstants.STYLE_PERIMETER_SPACING, 0, 0, 999, ' pt'); this.addKeyHandler(input, listener); this.addKeyHandler(startSize, listener); this.addKeyHandler(startSpacing, listener); this.addKeyHandler(endSize, listener); this.addKeyHandler(endSpacing, listener); this.addKeyHandler(perimeterSpacing, listener); graph.getModel().addListener(mxEvent.CHANGE, listener); this.listeners.push({destroy: function() { graph.getModel().removeListener(listener); }}); listener(); return container; }; /** * Adds UI for configuring line jumps. */ StyleFormatPanel.prototype.addLineJumps = function(container) { var ss = this.format.getSelectionState(); if (Graph.lineJumpsEnabled && ss.edges.length > 0 && ss.vertices.length == 0 && ss.lineJumps) { container.style.padding = '8px 0px 24px 18px'; var ui = this.editorUi; var editor = ui.editor; var graph = editor.graph; var span = document.createElement('div'); span.style.position = 'absolute'; span.style.fontWeight = 'bold'; span.style.width = '80px'; mxUtils.write(span, mxResources.get('lineJumps')); container.appendChild(span); var styleSelect = document.createElement('select'); styleSelect.style.position = 'absolute'; styleSelect.style.marginTop = '-2px'; styleSelect.style.right = '76px'; styleSelect.style.width = '62px'; var styles = ['none', 'arc', 'gap', 'sharp']; for (var i = 0; i < styles.length; i++) { var styleOption = document.createElement('option'); styleOption.setAttribute('value', styles[i]); mxUtils.write(styleOption, mxResources.get(styles[i])); styleSelect.appendChild(styleOption); } mxEvent.addListener(styleSelect, 'change', function(evt) { graph.getModel().beginUpdate(); try { graph.setCellStyles('jumpStyle', styleSelect.value, graph.getSelectionCells()); ui.fireEvent(new mxEventObject('styleChanged', 'keys', ['jumpStyle'], 'values', [styleSelect.value], 'cells', graph.getSelectionCells())); } finally { graph.getModel().endUpdate(); } mxEvent.consume(evt); }); // Stops events from bubbling to color option event handler mxEvent.addListener(styleSelect, 'click', function(evt) { mxEvent.consume(evt); }); container.appendChild(styleSelect); var jumpSizeUpdate; var jumpSize = this.addUnitInput(container, 'pt', 22, 33, function() { jumpSizeUpdate.apply(this, arguments); }); jumpSizeUpdate = this.installInputHandler(jumpSize, 'jumpSize', Graph.defaultJumpSize, 0, 999, ' pt'); var listener = mxUtils.bind(this, function(sender, evt, force) { ss = this.format.getSelectionState(); styleSelect.value = mxUtils.getValue(ss.style, 'jumpStyle', 'none'); if (force || document.activeElement != jumpSize) { var tmp = parseInt(mxUtils.getValue(ss.style, 'jumpSize', Graph.defaultJumpSize)); jumpSize.value = (isNaN(tmp)) ? '' : tmp + ' pt'; } }); this.addKeyHandler(jumpSize, listener); graph.getModel().addListener(mxEvent.CHANGE, listener); this.listeners.push({destroy: function() { graph.getModel().removeListener(listener); }}); listener(); } else { container.style.display = 'none'; } return container; }; /** * Adds the label menu items to the given menu and parent. */ StyleFormatPanel.prototype.addEffects = function(div) { var ui = this.editorUi; var editor = ui.editor; var graph = editor.graph; var ss = this.format.getSelectionState(); div.style.paddingTop = '0px'; div.style.paddingBottom = '2px'; var table = document.createElement('table'); if (mxClient.IS_QUIRKS) { table.style.fontSize = '1em'; } table.style.width = '100%'; table.style.fontWeight = 'bold'; table.style.paddingRight = '20px'; var tbody = document.createElement('tbody'); var row = document.createElement('tr'); row.style.padding = '0px'; var left = document.createElement('td'); left.style.padding = '0px'; left.style.width = '50%'; left.setAttribute('valign', 'top'); var right = left.cloneNode(true); right.style.paddingLeft = '8px'; row.appendChild(left); row.appendChild(right); tbody.appendChild(row); table.appendChild(tbody); div.appendChild(table); var current = left; var count = 0; var addOption = mxUtils.bind(this, function(label, key, defaultValue) { var opt = this.createCellOption(label, key, defaultValue); opt.style.width = '100%'; current.appendChild(opt); current = (current == left) ? right : left; count++; }); var listener = mxUtils.bind(this, function(sender, evt, force) { ss = this.format.getSelectionState(); left.innerHTML = ''; right.innerHTML = ''; current = left; if (ss.rounded) { addOption(mxResources.get('rounded'), mxConstants.STYLE_ROUNDED, 0); } if (ss.style.shape == 'swimlane') { addOption(mxResources.get('divider'), 'swimlaneLine', 1); } if (!ss.containsImage) { addOption(mxResources.get('shadow'), mxConstants.STYLE_SHADOW, 0); } if (ss.glass) { addOption(mxResources.get('glass'), mxConstants.STYLE_GLASS, 0); } addOption(mxResources.get('sketch'), 'sketch', 0); }); graph.getModel().addListener(mxEvent.CHANGE, listener); this.listeners.push({destroy: function() { graph.getModel().removeListener(listener); }}); listener(); return div; } /** * Adds the label menu items to the given menu and parent. */ StyleFormatPanel.prototype.addStyleOps = function(div) { div.style.paddingTop = '10px'; div.style.paddingBottom = '10px'; var btn = mxUtils.button(mxResources.get('setAsDefaultStyle'), mxUtils.bind(this, function(evt) { this.editorUi.actions.get('setAsDefaultStyle').funct(); })); btn.setAttribute('title', mxResources.get('setAsDefaultStyle') + ' (' + this.editorUi.actions.get('setAsDefaultStyle').shortcut + ')'); btn.style.width = '202px'; div.appendChild(btn); return div; }; /** * Adds the label menu items to the given menu and parent. */ DiagramStylePanel = function(format, editorUi, container) { BaseFormatPanel.call(this, format, editorUi, container); this.init(); }; mxUtils.extend(DiagramStylePanel, BaseFormatPanel); /** * Adds the label menu items to the given menu and parent. */ DiagramStylePanel.prototype.init = function() { var ui = this.editorUi; var editor = ui.editor; var graph = editor.graph; this.container.appendChild(this.addView(this.createPanel())); }; /** * Adds the label menu items to the given menu and parent. */ DiagramStylePanel.prototype.addView = function(div) { var ui = this.editorUi; var editor = ui.editor; var graph = editor.graph; var model = graph.getModel(); div.style.whiteSpace = 'normal'; var sketch = graph.currentVertexStyle['sketch'] == '1' && graph.currentEdgeStyle['sketch'] == '1'; var rounded = graph.currentVertexStyle['rounded'] == '1'; var curved = graph.currentEdgeStyle['curved'] == '1'; var opts = document.createElement('div'); opts.style.paddingBottom = '12px'; opts.style.marginRight = '16px'; div.style.paddingTop = '8px'; var table = document.createElement('table'); if (mxClient.IS_QUIRKS) { table.style.fontSize = '1em'; } table.style.width = '100%'; table.style.fontWeight = 'bold'; var tbody = document.createElement('tbody'); var row = document.createElement('tr'); row.style.padding = '0px'; var left = document.createElement('td'); left.style.padding = '0px'; left.style.width = '50%'; left.setAttribute('valign', 'middle'); var right = left.cloneNode(true); right.style.paddingLeft = '8px'; row.appendChild(left); row.appendChild(right); tbody.appendChild(row); table.appendChild(tbody); // Sketch left.appendChild(this.createOption(mxResources.get('sketch'), function() { return sketch; }, function(checked) { sketch = checked; if (checked) { graph.currentEdgeStyle['sketch'] = '1'; graph.currentVertexStyle['sketch'] = '1'; } else { delete graph.currentEdgeStyle['sketch']; delete graph.currentVertexStyle['sketch']; } graph.updateCellStyles('sketch', (checked) ? '1' : null, graph.getVerticesAndEdges()); }, null, function(div) { div.style.width = 'auto'; })); // Rounded right.appendChild(this.createOption(mxResources.get('rounded'), function() { return rounded; }, function(checked) { rounded = checked; if (checked) { graph.currentVertexStyle['rounded'] = '1'; } else { delete graph.currentVertexStyle['rounded']; } graph.updateCellStyles('rounded', (checked) ? '1' : null, graph.getVerticesAndEdges(true, true)); }, null, function(div) { div.style.width = 'auto'; })); // Curved left = left.cloneNode(false); right = right.cloneNode(false); row = row.cloneNode(false); row.appendChild(left); row.appendChild(right); tbody.appendChild(row); left.appendChild(this.createOption(mxResources.get('curved'), function() { return curved; }, function(checked) { curved = checked; if (checked) { graph.currentEdgeStyle['curved'] = '1'; } else { delete graph.currentEdgeStyle['curved']; } graph.updateCellStyles('curved', (checked) ? '1' : null, graph.getVerticesAndEdges(false, true)); }, null, function(div) { div.style.width = 'auto'; })); opts.appendChild(table); div.appendChild(opts); var defaultStyles = ['fillColor', 'strokeColor', 'fontColor', 'gradientColor']; var updateCells = mxUtils.bind(this, function(styles, graphStyle) { var cells = graph.getVerticesAndEdges(); model.beginUpdate(); try { for (var i = 0; i < cells.length; i++) { var style = graph.getCellStyle(cells[i]); // Handles special label background color if (style['labelBackgroundColor'] != null) { graph.updateCellStyles('labelBackgroundColor', (graphStyle != null) ? graphStyle.background : null, [cells[i]]); } var edge = model.isEdge(cells[i]); var newStyle = model.getStyle(cells[i]); var current = (edge) ? graph.currentEdgeStyle : graph.currentVertexStyle; for (var j = 0; j < styles.length; j++) { if ((style[styles[j]] != null && style[styles[j]] != mxConstants.NONE) || (styles[j] != mxConstants.STYLE_FILLCOLOR && styles[j] != mxConstants.STYLE_STROKECOLOR)) { newStyle = mxUtils.setStyle(newStyle, styles[j], current[styles[j]]); } } model.setStyle(cells[i], newStyle); } } finally { model.endUpdate(); } }); var removeStyles = mxUtils.bind(this, function(style, styles, defaultStyle) { if (style != null) { for (var j = 0; j < styles.length; j++) { if (((style[styles[j]] != null && style[styles[j]] != mxConstants.NONE) || (styles[j] != mxConstants.STYLE_FILLCOLOR && styles[j] != mxConstants.STYLE_STROKECOLOR))) { style[styles[j]] = defaultStyle[styles[j]]; } } } }); var applyStyle = mxUtils.bind(this, function(style, result, cell, graphStyle, theGraph) { if (style != null) { if (cell != null) { // Handles special label background color if (result['labelBackgroundColor'] != null) { var bg = (graphStyle != null) ? graphStyle.background : null; theGraph = (theGraph != null) ? theGraph : graph; if (bg == null) { bg = theGraph.background; } if (bg == null) { bg = theGraph.defaultPageBackgroundColor; } result['labelBackgroundColor'] = bg; } } for (var key in style) { if (cell == null || ((result[key] != null && result[key] != mxConstants.NONE) || (key != mxConstants.STYLE_FILLCOLOR && key != mxConstants.STYLE_STROKECOLOR))) { result[key] = style[key]; } } } }); var btn = mxUtils.button(mxResources.get('reset'), mxUtils.bind(this, function(evt) { var all = graph.getVerticesAndEdges(true, true); if (all.length > 0) { model.beginUpdate(); try { graph.updateCellStyles('sketch', null, all); graph.updateCellStyles('rounded', null, all); graph.updateCellStyles('curved', null, graph.getVerticesAndEdges(false, true)); } finally { model.endUpdate(); } } graph.defaultVertexStyle = mxUtils.clone(ui.initialDefaultVertexStyle); graph.defaultEdgeStyle = mxUtils.clone(ui.initialDefaultEdgeStyle); ui.clearDefaultStyle(); })); btn.setAttribute('title', mxResources.get('reset')); btn.style.textOverflow = 'ellipsis'; btn.style.maxWidth = '90px'; right.appendChild(btn); var createPreview = mxUtils.bind(this, function(commonStyle, vertexStyle, edgeStyle, graphStyle, container) { // Wrapper needed to catch events var div = document.createElement('div'); div.style.cssText = 'position:absolute;display:inline-block;width:100%;height:100%;overflow:hidden;pointer-events:none;'; container.appendChild(div); var graph2 = new Graph(div, null, null, graph.getStylesheet()); graph2.resetViewOnRootChange = false; graph2.foldingEnabled = false; graph2.gridEnabled = false; graph2.autoScroll = false; graph2.setTooltips(false); graph2.setConnectable(false); graph2.setPanning(false); graph2.setEnabled(false); graph2.getCellStyle = function(cell) { var result = mxUtils.clone(Graph.prototype.getCellStyle.apply(this, arguments)); var defaultStyle = graph.stylesheet.getDefaultVertexStyle(); var appliedStyle = vertexStyle; if (model.isEdge(cell)) { defaultStyle = graph.stylesheet.getDefaultEdgeStyle(); appliedStyle = edgeStyle; } removeStyles(result, defaultStyles, defaultStyle); applyStyle(commonStyle, result, cell, graphStyle, graph2); applyStyle(appliedStyle, result, cell, graphStyle, graph2); return result; }; // Avoid HTML labels to capture events in bubble phase graph2.model.beginUpdate(); try { var v1 = graph2.insertVertex(graph2.getDefaultParent(), null, 'Shape', 14, 8, 70, 40, 'strokeWidth=2;'); var e1 = graph2.insertEdge(graph2.getDefaultParent(), null, 'Connector', v1, v1, 'edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;endSize=5;strokeWidth=2;') e1.geometry.points = [new mxPoint(32, 70)]; e1.geometry.offset = new mxPoint(0, 8); } finally { graph2.model.endUpdate(); } }); // Entries var entries = document.createElement('div'); entries.style.position = 'relative'; div.appendChild(entries); // Cached entries if (this.format.cachedStyleEntries == null) { this.format.cachedStyleEntries = []; } var addEntry = mxUtils.bind(this, function(commonStyle, vertexStyle, edgeStyle, graphStyle, index) { var panel = this.format.cachedStyleEntries[index]; if (panel == null) { panel = document.createElement('div'); panel.style.cssText = 'display:inline-block;position:relative;width:96px;height:90px;' + 'cursor:pointer;border:1px solid gray;margin:2px;overflow:hidden;'; if (graphStyle != null && graphStyle.background != null) { panel.style.backgroundColor = graphStyle.background; } createPreview(commonStyle, vertexStyle, edgeStyle, graphStyle, panel); mxEvent.addGestureListeners(panel, mxUtils.bind(this, function(evt) { panel.style.opacity = 0.5; }), null, mxUtils.bind(this, function(evt) { panel.style.opacity = 1; graph.defaultVertexStyle = mxUtils.clone(ui.initialDefaultVertexStyle); graph.defaultEdgeStyle = mxUtils.clone(ui.initialDefaultEdgeStyle); applyStyle(commonStyle, graph.defaultVertexStyle); applyStyle(commonStyle, graph.defaultEdgeStyle); applyStyle(vertexStyle, graph.defaultVertexStyle); applyStyle(edgeStyle, graph.defaultEdgeStyle); ui.clearDefaultStyle(); if (sketch) { graph.currentEdgeStyle['sketch'] = '1'; graph.currentVertexStyle['sketch'] = '1'; } else { graph.currentEdgeStyle['sketch'] = '0'; graph.currentVertexStyle['sketch'] = '0'; } if (rounded) { graph.currentVertexStyle['rounded'] = '1'; graph.currentEdgeStyle['rounded'] = '1'; } else { graph.currentVertexStyle['rounded'] = '0'; graph.currentEdgeStyle['rounded'] = '1'; } if (curved) { graph.currentEdgeStyle['curved'] = '1'; } else { graph.currentEdgeStyle['curved'] = '0'; } model.beginUpdate(); try { updateCells(defaultStyles, graphStyle); var change = new ChangePageSetup(ui, (graphStyle != null) ? graphStyle.background : null); change.ignoreImage = true; model.execute(change); model.execute(new ChangeGridColor(ui, (graphStyle != null && graphStyle.gridColor != null) ? graphStyle.gridColor : graph.view.defaultGridColor)); } finally { model.endUpdate(); } })); mxEvent.addListener(panel, 'mouseenter', mxUtils.bind(this, function(evt) { var prev = graph.getCellStyle; var prevBg = graph.background; var prevGrid = graph.view.gridColor; graph.background = (graphStyle != null) ? graphStyle.background : null; graph.view.gridColor = (graphStyle != null && graphStyle.gridColor != null) ? graphStyle.gridColor : graph.view.defaultGridColor; graph.getCellStyle = function(cell) { var result = mxUtils.clone(prev.apply(this, arguments)); var defaultStyle = graph.stylesheet.getDefaultVertexStyle(); var appliedStyle = vertexStyle; if (model.isEdge(cell)) { defaultStyle = graph.stylesheet.getDefaultEdgeStyle(); appliedStyle = edgeStyle; } removeStyles(result, defaultStyles, defaultStyle); applyStyle(commonStyle, result, cell, graphStyle); applyStyle(appliedStyle, result, cell, graphStyle); return result; }; graph.refresh(); graph.getCellStyle = prev; graph.background = prevBg; graph.view.gridColor = prevGrid; })); mxEvent.addListener(panel, 'mouseleave', mxUtils.bind(this, function(evt) { graph.refresh(); })); this.format.cachedStyleEntries[index] = panel; } entries.appendChild(panel); }); // Maximum palettes to switch the switcher var maxEntries = 10; var pageCount = Math.ceil(Editor.styles.length / maxEntries); this.format.currentStylePage = (this.format.currentStylePage != null) ? this.format.currentStylePage : 0; var dots = []; var addEntries = mxUtils.bind(this, function() { if (dots.length > 0) { dots[this.format.currentStylePage].style.background = '#84d7ff'; } for (var i = this.format.currentStylePage * maxEntries; i < Math.min((this.format.currentStylePage + 1) * maxEntries, Editor.styles.length); i++) { var s = Editor.styles[i]; addEntry(s.commonStyle, s.vertexStyle, s.edgeStyle, s.graph, i); } }); var selectPage = mxUtils.bind(this, function(index) { if (index >= 0 && index < pageCount) { dots[this.format.currentStylePage].style.background = 'transparent'; entries.innerHTML = ''; this.format.currentStylePage = index; addEntries(); } }); if (pageCount > 1) { // Selector var switcher = document.createElement('div'); switcher.style.whiteSpace = 'nowrap'; switcher.style.position = 'relative'; switcher.style.textAlign = 'center'; switcher.style.paddingTop = '4px'; switcher.style.width = '210px'; div.style.paddingBottom = '8px'; for (var i = 0; i < pageCount; i++) { var dot = document.createElement('div'); dot.style.display = 'inline-block'; dot.style.width = '6px'; dot.style.height = '6px'; dot.style.marginLeft = '4px'; dot.style.marginRight = '3px'; dot.style.borderRadius = '3px'; dot.style.cursor = 'pointer'; dot.style.background = 'transparent'; dot.style.border = '1px solid #b5b6b7'; (mxUtils.bind(this, function(index, elt) { mxEvent.addListener(dot, 'click', mxUtils.bind(this, function() { selectPage(index); })); }))(i, dot); switcher.appendChild(dot); dots.push(dot); } div.appendChild(switcher); addEntries(); if (pageCount < 15) { var left = document.createElement('div'); left.style.cssText = 'position:absolute;left:0px;top:4px;bottom:0px;width:20px;margin:0px;opacity:0.5;' + 'background-repeat:no-repeat;background-position:center center;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAQBAMAAADQT4M0AAAAIVBMVEUAAAB2dnZ4eHh3d3d1dXVxcXF2dnZ2dnZ2dnZxcXF2dnYmb3w1AAAACnRSTlMAfCTkhhvb7cQSPH2JPgAAADRJREFUCNdjwACMAmBKaiGYs2oJmLPKAZ3DabU8AMRTXpUKopislqFyVzCAuUZgikkBZjoAcMYLnp53P/UAAAAASUVORK5CYII=);'; mxEvent.addListener(left, 'click', mxUtils.bind(this, function() { selectPage(mxUtils.mod(this.format.currentStylePage - 1, pageCount)); })); var right = document.createElement('div'); right.style.cssText = 'position:absolute;right:2px;top:4px;bottom:0px;width:20px;margin:0px;opacity:0.5;' + 'background-repeat:no-repeat;background-position:center center;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAQBAMAAADQT4M0AAAAIVBMVEUAAAB2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnYBuwCcAAAACnRSTlMAfCTkhhvb7cQSPH2JPgAAADZJREFUCNdjQAOMAmBKaiGY8loF5rKswsZlrVo8AUiFrTICcbIWK8A5DF1gDoMymMPApIAwHwCS0Qx/U7qCBQAAAABJRU5ErkJggg==);'; switcher.appendChild(left); switcher.appendChild(right); mxEvent.addListener(right, 'click', mxUtils.bind(this, function() { selectPage(mxUtils.mod(this.format.currentStylePage + 1, pageCount)); })); // Hover state function addHoverState(elt) { mxEvent.addListener(elt, 'mouseenter', function() { elt.style.opacity = '1'; }); mxEvent.addListener(elt, 'mouseleave', function() { elt.style.opacity = '0.5'; }); }; addHoverState(left); addHoverState(right); } } else { addEntries(); } return div; }; /** * Adds the label menu items to the given menu and parent. */ DiagramFormatPanel = function(format, editorUi, container) { BaseFormatPanel.call(this, format, editorUi, container); this.init(); }; mxUtils.extend(DiagramFormatPanel, BaseFormatPanel); /** * Switch to disable page view. */ DiagramFormatPanel.showPageView = true; /** * Specifies if the background image option should be shown. Default is true. */ DiagramFormatPanel.prototype.showBackgroundImageOption = true; /** * Adds the label menu items to the given menu and parent. */ DiagramFormatPanel.prototype.init = function() { var ui = this.editorUi; var editor = ui.editor; var graph = editor.graph; this.container.appendChild(this.addView(this.createPanel())); if (graph.isEnabled()) { this.container.appendChild(this.addOptions(this.createPanel())); this.container.appendChild(this.addPaperSize(this.createPanel())); this.container.appendChild(this.addStyleOps(this.createPanel())); } }; /** * Adds the label menu items to the given menu and parent. */ DiagramFormatPanel.prototype.addView = function(div) { var ui = this.editorUi; var editor = ui.editor; var graph = editor.graph; div.appendChild(this.createTitle(mxResources.get('view'))); // Grid this.addGridOption(div); // Page View if (DiagramFormatPanel.showPageView) { div.appendChild(this.createOption(mxResources.get('pageView'), function() { return graph.pageVisible; }, function(checked) { ui.actions.get('pageView').funct(); }, { install: function(apply) { this.listener = function() { apply(graph.pageVisible); }; ui.addListener('pageViewChanged', this.listener); }, destroy: function() { ui.removeListener(this.listener); } })); } if (graph.isEnabled()) { // Background var bg = this.createColorOption(mxResources.get('background'), function() { return graph.background; }, function(color) { var change = new ChangePageSetup(ui, color); change.ignoreImage = true; graph.model.execute(change); }, '#ffffff', { install: function(apply) { this.listener = function() { apply(graph.background); }; ui.addListener('backgroundColorChanged', this.listener); }, destroy: function() { ui.removeListener(this.listener); } }); if (this.showBackgroundImageOption) { var btn = mxUtils.button(mxResources.get('image'), function(evt) { ui.showBackgroundImageDialog(null, ui.editor.graph.backgroundImage); mxEvent.consume(evt); }) btn.style.position = 'absolute'; btn.className = 'geColorBtn'; btn.style.marginTop = '-4px'; btn.style.paddingBottom = (document.documentMode == 11 || mxClient.IS_MT) ? '0px' : '2px'; btn.style.height = '22px'; btn.style.right = (mxClient.IS_QUIRKS) ? '52px' : '72px'; btn.style.width = '56px'; bg.appendChild(btn); } div.appendChild(bg); } return div; }; /** * Adds the label menu items to the given menu and parent. */ DiagramFormatPanel.prototype.addOptions = function(div) { var ui = this.editorUi; var editor = ui.editor; var graph = editor.graph; div.appendChild(this.createTitle(mxResources.get('options'))); if (graph.isEnabled()) { // Connection arrows div.appendChild(this.createOption(mxResources.get('connectionArrows'), function() { return graph.connectionArrowsEnabled; }, function(checked) { ui.actions.get('connectionArrows').funct(); }, { install: function(apply) { this.listener = function() { apply(graph.connectionArrowsEnabled); }; ui.addListener('connectionArrowsChanged', this.listener); }, destroy: function() { ui.removeListener(this.listener); } })); // Connection points div.appendChild(this.createOption(mxResources.get('connectionPoints'), function() { return graph.connectionHandler.isEnabled(); }, function(checked) { ui.actions.get('connectionPoints').funct(); }, { install: function(apply) { this.listener = function() { apply(graph.connectionHandler.isEnabled()); }; ui.addListener('connectionPointsChanged', this.listener); }, destroy: function() { ui.removeListener(this.listener); } })); // Guides div.appendChild(this.createOption(mxResources.get('guides'), function() { return graph.graphHandler.guidesEnabled; }, function(checked) { ui.actions.get('guides').funct(); }, { install: function(apply) { this.listener = function() { apply(graph.graphHandler.guidesEnabled); }; ui.addListener('guidesEnabledChanged', this.listener); }, destroy: function() { ui.removeListener(this.listener); } })); } return div; }; /** * */ DiagramFormatPanel.prototype.addGridOption = function(container) { var fPanel = this; var ui = this.editorUi; var graph = ui.editor.graph; var input = document.createElement('input'); input.style.position = 'absolute'; input.style.textAlign = 'right'; input.style.width = '38px'; input.value = this.inUnit(graph.getGridSize()) + ' ' + this.getUnit(); 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; mxEvent.addListener(input, 'keydown', function(e) { if (e.keyCode == 13) { graph.container.focus(); mxEvent.consume(e); } else if (e.keyCode == 27) { input.value = graph.getGridSize(); graph.container.focus(); mxEvent.consume(e); } }); function update(evt) { 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 = 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'; input.style.right = '84px'; stepper.style.marginTop = '-16px'; stepper.style.right = '72px'; var panel = this.createColorOption(mxResources.get('grid'), function() { var color = graph.view.gridColor; return (graph.isGridEnabled()) ? color : null; }, function(color) { var enabled = graph.isGridEnabled(); if (color == mxConstants.NONE) { graph.setGridEnabled(false); } else { graph.setGridEnabled(true); ui.setGridColor(color); } input.style.display = (graph.isGridEnabled()) ? '' : 'none'; stepper.style.display = input.style.display; if (enabled != graph.isGridEnabled()) { ui.fireEvent(new mxEventObject('gridEnabledChanged')); } }, '#e0e0e0', { install: function(apply) { this.listener = function() { apply((graph.isGridEnabled()) ? graph.view.gridColor : null); }; ui.addListener('gridColorChanged', this.listener); ui.addListener('gridEnabledChanged', this.listener); }, destroy: function() { ui.removeListener(this.listener); } }); panel.appendChild(input); panel.appendChild(stepper); container.appendChild(panel); } else { input.style.marginTop = '2px'; input.style.right = '32px'; stepper.style.marginTop = '2px'; stepper.style.right = '20px'; container.appendChild(input); container.appendChild(stepper); container.appendChild(this.createOption(mxResources.get('grid'), function() { return graph.isGridEnabled(); }, function(checked) { graph.setGridEnabled(checked); if (graph.isGridEnabled()) { graph.view.gridColor = '#e0e0e0'; } ui.fireEvent(new mxEventObject('gridEnabledChanged')); }, { install: function(apply) { this.listener = function() { input.style.display = (graph.isGridEnabled()) ? '' : 'none'; stepper.style.display = input.style.display; apply(graph.isGridEnabled()); }; ui.addListener('gridEnabledChanged', this.listener); }, destroy: function() { ui.removeListener(this.listener); } })); } }; /** * Adds the label menu items to the given menu and parent. */ DiagramFormatPanel.prototype.addDocumentProperties = function(div) { // Hook for subclassers var ui = this.editorUi; var editor = ui.editor; var graph = editor.graph; div.appendChild(this.createTitle(mxResources.get('options'))); return div; }; /** * Adds the label menu items to the given menu and parent. */ DiagramFormatPanel.prototype.addPaperSize = function(div) { var ui = this.editorUi; var editor = ui.editor; var graph = editor.graph; div.appendChild(this.createTitle(mxResources.get('paperSize'))); var accessor = PageSetupDialog.addPageFormatPanel(div, 'formatpanel', graph.pageFormat, function(pageFormat) { if (graph.pageFormat == null || graph.pageFormat.width != pageFormat.width || graph.pageFormat.height != pageFormat.height) { var change = new ChangePageSetup(ui, null, null, pageFormat); change.ignoreColor = true; change.ignoreImage = true; graph.model.execute(change); } }); this.addKeyHandler(accessor.widthInput, function() { accessor.set(graph.pageFormat); }); this.addKeyHandler(accessor.heightInput, function() { accessor.set(graph.pageFormat); }); var listener = function() { accessor.set(graph.pageFormat); }; ui.addListener('pageFormatChanged', listener); this.listeners.push({destroy: function() { ui.removeListener(listener); }}); graph.getModel().addListener(mxEvent.CHANGE, listener); this.listeners.push({destroy: function() { graph.getModel().removeListener(listener); }}); return div; }; /** * Adds the label menu items to the given menu and parent. */ DiagramFormatPanel.prototype.addStyleOps = function(div) { var btn = mxUtils.button(mxResources.get('editData'), mxUtils.bind(this, function(evt) { this.editorUi.actions.get('editData').funct(); })); btn.setAttribute('title', mxResources.get('editData') + ' (' + this.editorUi.actions.get('editData').shortcut + ')'); btn.style.width = '202px'; btn.style.marginBottom = '2px'; div.appendChild(btn); mxUtils.br(div); btn = mxUtils.button(mxResources.get('clearDefaultStyle'), mxUtils.bind(this, function(evt) { this.editorUi.actions.get('clearDefaultStyle').funct(); })); btn.setAttribute('title', mxResources.get('clearDefaultStyle') + ' (' + this.editorUi.actions.get('clearDefaultStyle').shortcut + ')'); btn.style.width = '202px'; div.appendChild(btn); return div; }; /** * Adds the label menu items to the given menu and parent. */ DiagramFormatPanel.prototype.destroy = function() { BaseFormatPanel.prototype.destroy.apply(this, arguments); if (this.gridEnabledListener) { this.editorUi.removeListener(this.gridEnabledListener); this.gridEnabledListener = null; } };