maxGraph/javascript/examples/grapheditor/www/js/Toolbar.js

659 lines
23 KiB
JavaScript
Raw Normal View History

2012-05-21 20:32:26 +00:00
/**
2014-01-08 16:23:20 +00:00
* $Id: Toolbar.js,v 1.8 2014/01/08 15:53:30 gaudenz Exp $
2012-05-21 20:32:26 +00:00
* Copyright (c) 2006-2012, JGraph Ltd
*/
/**
* Construcs a new toolbar for the given editor.
*/
function Toolbar(editorUi, container)
{
this.editorUi = editorUi;
this.container = container;
this.init();
// Global handler to hide the current menu
2013-05-23 16:14:48 +00:00
mxEvent.addGestureListeners(document, mxUtils.bind(this, function(evt)
2012-05-21 20:32:26 +00:00
{
this.hideMenu();
}));
};
/**
* Adds the toolbar elements.
*/
Toolbar.prototype.init = function()
{
2013-05-23 16:14:48 +00:00
this.addItems(['undo', 'redo', 'delete', '-', 'actualSize', 'zoomIn', 'zoomOut', '-']);
2012-05-21 20:32:26 +00:00
var fontElt = this.addMenu('Helvetica', mxResources.get('fontFamily'), true, 'fontFamily');
fontElt.style.whiteSpace = 'nowrap';
fontElt.style.overflow = 'hidden';
2013-05-23 16:14:48 +00:00
fontElt.style.width = '56px';
2012-05-21 20:32:26 +00:00
this.addSeparator();
var sizeElt = this.addMenu('12', mxResources.get('fontSize'), true, 'fontSize');
2012-06-14 12:43:20 +00:00
sizeElt.style.whiteSpace = 'nowrap';
2012-05-21 20:32:26 +00:00
sizeElt.style.overflow = 'hidden';
2013-05-23 16:14:48 +00:00
sizeElt.style.width = '22px';
2012-05-21 20:32:26 +00:00
this.addItems(['-', 'bold', 'italic', 'underline']);
2012-06-14 12:43:20 +00:00
var align = this.addMenuFunction('geSprite-left', mxResources.get('align'), false, mxUtils.bind(this, function(menu)
{
2014-01-08 16:23:20 +00:00
this.editorUi.menus.styleChange(menu, '', [mxConstants.STYLE_ALIGN], [mxConstants.ALIGN_LEFT], 'geIcon geSprite geSprite-left', null,
function() { document.execCommand('justifyleft'); }).setAttribute('title', mxResources.get('left'));
this.editorUi.menus.styleChange(menu, '', [mxConstants.STYLE_ALIGN], [mxConstants.ALIGN_CENTER], 'geIcon geSprite geSprite-center', null,
function() { document.execCommand('justifycenter'); }).setAttribute('title', mxResources.get('center'));
this.editorUi.menus.styleChange(menu, '', [mxConstants.STYLE_ALIGN], [mxConstants.ALIGN_RIGHT], 'geIcon geSprite geSprite-right', null,
function() { document.execCommand('justifyright'); }).setAttribute('title', mxResources.get('right'));
2012-06-14 12:43:20 +00:00
this.editorUi.menus.styleChange(menu, '', [mxConstants.STYLE_VERTICAL_ALIGN], [mxConstants.ALIGN_TOP], 'geIcon geSprite geSprite-top', null).setAttribute('title', mxResources.get('top'));
this.editorUi.menus.styleChange(menu, '', [mxConstants.STYLE_VERTICAL_ALIGN], [mxConstants.ALIGN_MIDDLE], 'geIcon geSprite geSprite-middle', null).setAttribute('title', mxResources.get('middle'));
this.editorUi.menus.styleChange(menu, '', [mxConstants.STYLE_VERTICAL_ALIGN], [mxConstants.ALIGN_BOTTOM], 'geIcon geSprite geSprite-bottom', null).setAttribute('title', mxResources.get('bottom'));
}));
this.addItems(['fontColor', '-']);
var line = this.addMenuFunction('geSprite-straight', mxResources.get('line'), false, mxUtils.bind(this, function(menu)
{
this.editorUi.menus.styleChange(menu, '', [mxConstants.STYLE_EDGE], [null], 'geIcon geSprite geSprite-straight', null).setAttribute('title', mxResources.get('straight'));
this.editorUi.menus.styleChange(menu, '', [mxConstants.STYLE_EDGE], ['entityRelationEdgeStyle'], 'geIcon geSprite geSprite-entity', null).setAttribute('title', mxResources.get('entityRelation'));
this.editorUi.menus.styleChange(menu, '', [mxConstants.STYLE_EDGE, mxConstants.STYLE_ELBOW], ['elbowEdgeStyle', 'horizontal'], 'geIcon geSprite geSprite-helbow', null).setAttribute('title', mxResources.get('horizontal'));
this.editorUi.menus.styleChange(menu, '', [mxConstants.STYLE_EDGE, mxConstants.STYLE_ELBOW], ['elbowEdgeStyle', 'vertical'], 'geIcon geSprite geSprite-velbow', null).setAttribute('title', mxResources.get('vertical'));
2013-05-23 16:14:48 +00:00
this.editorUi.menus.styleChange(menu, '', [mxConstants.STYLE_EDGE], ['segmentEdgeStyle'], 'geIcon geSprite geSprite-segment', null).setAttribute('title', mxResources.get('manual'));
this.editorUi.menus.styleChange(menu, '', [mxConstants.STYLE_EDGE], ['orthogonalEdgeStyle'], 'geIcon geSprite geSprite-orthogonal', null).setAttribute('title', mxResources.get('automatic'));
2012-06-14 12:43:20 +00:00
}));
var linestart = this.addMenuFunction('geSprite-startclassic', mxResources.get('lineend'), false, mxUtils.bind(this, function(menu)
{
this.editorUi.menus.styleChange(menu, '', [mxConstants.STYLE_STARTARROW, 'startFill'], [mxConstants.NONE, 0], 'geIcon geSprite geSprite-noarrow', null).setAttribute('title', mxResources.get('none'));
this.editorUi.menus.styleChange(menu, '', [mxConstants.STYLE_STARTARROW, 'startFill'], [mxConstants.ARROW_CLASSIC, 1], 'geIcon geSprite geSprite-startclassic', null).setAttribute('title', mxResources.get('classic'));
this.editorUi.menus.styleChange(menu, '', [mxConstants.STYLE_STARTARROW, 'startFill'], [mxConstants.ARROW_OPEN, 1], 'geIcon geSprite geSprite-startopen', null).setAttribute('title', mxResources.get('openArrow'));
this.editorUi.menus.styleChange(menu, '', [mxConstants.STYLE_STARTARROW, 'startFill'], [mxConstants.ARROW_BLOCK, 1], 'geIcon geSprite geSprite-startblock', null).setAttribute('title', mxResources.get('block'));
this.editorUi.menus.styleChange(menu, '', [mxConstants.STYLE_STARTARROW, 'startFill'], [mxConstants.ARROW_OVAL, 1], 'geIcon geSprite geSprite-startoval', null).setAttribute('title', mxResources.get('oval'));
this.editorUi.menus.styleChange(menu, '', [mxConstants.STYLE_STARTARROW, 'startFill'], [mxConstants.ARROW_DIAMOND, 1], 'geIcon geSprite geSprite-startdiamond', null).setAttribute('title', mxResources.get('diamond'));
this.editorUi.menus.styleChange(menu, '', [mxConstants.STYLE_STARTARROW, 'startFill'], [mxConstants.ARROW_DIAMOND_THIN, 1], 'geIcon geSprite geSprite-startthindiamond', null).setAttribute('title', mxResources.get('diamondThin'));
this.editorUi.menus.styleChange(menu, '', [mxConstants.STYLE_STARTARROW, 'startFill'], [mxConstants.ARROW_CLASSIC, 0], 'geIcon geSprite geSprite-startclassictrans', null).setAttribute('title', mxResources.get('classic'));
this.editorUi.menus.styleChange(menu, '', [mxConstants.STYLE_STARTARROW, 'startFill'], [mxConstants.ARROW_BLOCK, 0], 'geIcon geSprite geSprite-startblocktrans', null).setAttribute('title', mxResources.get('block'));
this.editorUi.menus.styleChange(menu, '', [mxConstants.STYLE_STARTARROW, 'startFill'], [mxConstants.ARROW_OVAL, 0], 'geIcon geSprite geSprite-startovaltrans', null).setAttribute('title', mxResources.get('oval'));
this.editorUi.menus.styleChange(menu, '', [mxConstants.STYLE_STARTARROW, 'startFill'], [mxConstants.ARROW_DIAMOND, 0], 'geIcon geSprite geSprite-startdiamondtrans', null).setAttribute('title', mxResources.get('diamond'));
this.editorUi.menus.styleChange(menu, '', [mxConstants.STYLE_STARTARROW, 'startFill'], [mxConstants.ARROW_DIAMOND_THIN, 0], 'geIcon geSprite geSprite-startthindiamondtrans', null).setAttribute('title', mxResources.get('diamondThin'));
}));
var lineend = this.addMenuFunction('geSprite-endclassic', mxResources.get('lineend'), false, mxUtils.bind(this, function(menu)
2012-05-21 20:32:26 +00:00
{
2012-06-14 12:43:20 +00:00
this.editorUi.menus.styleChange(menu, '', [mxConstants.STYLE_ENDARROW, 'endFill'], [mxConstants.NONE, 0], 'geIcon geSprite geSprite-noarrow', null).setAttribute('title', mxResources.get('none'));
this.editorUi.menus.styleChange(menu, '', [mxConstants.STYLE_ENDARROW, 'endFill'], [mxConstants.ARROW_CLASSIC, 1], 'geIcon geSprite geSprite-endclassic', null).setAttribute('title', mxResources.get('classic'));
this.editorUi.menus.styleChange(menu, '', [mxConstants.STYLE_ENDARROW, 'endFill'], [mxConstants.ARROW_OPEN, 1], 'geIcon geSprite geSprite-endopen', null).setAttribute('title', mxResources.get('openArrow'));
this.editorUi.menus.styleChange(menu, '', [mxConstants.STYLE_ENDARROW, 'endFill'], [mxConstants.ARROW_BLOCK, 1], 'geIcon geSprite geSprite-endblock', null).setAttribute('title', mxResources.get('block'));
this.editorUi.menus.styleChange(menu, '', [mxConstants.STYLE_ENDARROW, 'endFill'], [mxConstants.ARROW_OVAL, 1], 'geIcon geSprite geSprite-endoval', null).setAttribute('title', mxResources.get('oval'));
this.editorUi.menus.styleChange(menu, '', [mxConstants.STYLE_ENDARROW, 'endFill'], [mxConstants.ARROW_DIAMOND, 1], 'geIcon geSprite geSprite-enddiamond', null).setAttribute('title', mxResources.get('diamond'));
this.editorUi.menus.styleChange(menu, '', [mxConstants.STYLE_ENDARROW, 'endFill'], [mxConstants.ARROW_DIAMOND_THIN, 1], 'geIcon geSprite geSprite-endthindiamond', null).setAttribute('title', mxResources.get('diamondThin'));
this.editorUi.menus.styleChange(menu, '', [mxConstants.STYLE_ENDARROW, 'endFill'], [mxConstants.ARROW_CLASSIC, 0], 'geIcon geSprite geSprite-endclassictrans', null).setAttribute('title', mxResources.get('classic'));
this.editorUi.menus.styleChange(menu, '', [mxConstants.STYLE_ENDARROW, 'endFill'], [mxConstants.ARROW_BLOCK, 0], 'geIcon geSprite geSprite-endblocktrans', null).setAttribute('title', mxResources.get('block'));
this.editorUi.menus.styleChange(menu, '', [mxConstants.STYLE_ENDARROW, 'endFill'], [mxConstants.ARROW_OVAL, 0], 'geIcon geSprite geSprite-endovaltrans', null).setAttribute('title', mxResources.get('oval'));
this.editorUi.menus.styleChange(menu, '', [mxConstants.STYLE_ENDARROW, 'endFill'], [mxConstants.ARROW_DIAMOND, 0], 'geIcon geSprite geSprite-enddiamondtrans', null).setAttribute('title', mxResources.get('diamond'));
this.editorUi.menus.styleChange(menu, '', [mxConstants.STYLE_ENDARROW, 'endFill'], [mxConstants.ARROW_DIAMOND_THIN, 0], 'geIcon geSprite geSprite-endthindiamondtrans', null).setAttribute('title', mxResources.get('diamondThin'));
2012-05-21 20:32:26 +00:00
}));
2012-06-14 12:43:20 +00:00
this.addItems(['-', 'strokeColor', 'image', 'fillColor']);
this.addItem('geSprite-gradientcolor', 'gradientColor').setAttribute('title', mxResources.get('gradient'));
2012-05-21 20:32:26 +00:00
this.addItems(['shadow']);
var graph = this.editorUi.editor.graph;
// Update font size and font family labels
var update = mxUtils.bind(this, function()
{
var ff = 'Helvetica';
var fs = '12';
var state = graph.getView().getState(graph.getSelectionCell());
if (state != null)
{
ff = state.style[mxConstants.STYLE_FONTFAMILY] || ff;
fs = state.style[mxConstants.STYLE_FONTSIZE] || fs;
if (ff.length > 10)
{
ff = ff.substring(0, 8) + '...';
}
fontElt.innerHTML = ff;
sizeElt.innerHTML = fs;
}
});
graph.getSelectionModel().addListener(mxEvent.CHANGE, update);
graph.getModel().addListener(mxEvent.CHANGE, update);
// Updates button states
2012-06-14 12:43:20 +00:00
this.addEdgeSelectionHandler([line, linestart, lineend]);
2012-05-21 20:32:26 +00:00
this.addSelectionHandler([align]);
};
2014-01-08 16:23:20 +00:00
/**
* Hides the current menu.
*/
Toolbar.prototype.createTextToolbar = function()
{
var graph = this.editorUi.editor.graph;
this.addItems(['undo', 'redo', '-']);
var fontElt = this.addMenu(mxResources.get('style'), mxResources.get('style'), true, 'formatBlock');
fontElt.style.whiteSpace = 'nowrap';
fontElt.style.overflow = 'hidden';
//fontElt.style.width = '56px';
var fontElt = this.addMenu('Helvetica', mxResources.get('fontFamily'), true, 'fontFamily');
fontElt.style.whiteSpace = 'nowrap';
fontElt.style.overflow = 'hidden';
fontElt.style.width = '56px';
this.addSeparator();
var sizeElt = this.addMenu('12', mxResources.get('fontSize'), true, 'fontSize');
sizeElt.style.whiteSpace = 'nowrap';
sizeElt.style.overflow = 'hidden';
sizeElt.style.width = '22px';
this.addItems(['-', 'bold', 'italic', 'underline']);
// KNOWN: Lost focus after click on submenu with text (not icon) in quirks and IE8. This is because the TD seems
// to catch the focus on click in these browsers. NOTE: Workaround in mxPopupMenu for icon items (without text).
this.addMenuFunction('geSprite-left', mxResources.get('align'), false, mxUtils.bind(this, function(menu)
{
this.editorUi.menus.styleChange(menu, '', [mxConstants.STYLE_ALIGN], [mxConstants.ALIGN_LEFT], 'geIcon geSprite geSprite-left', null,
function() { document.execCommand('justifyleft'); }).setAttribute('title', mxResources.get('left'));
this.editorUi.menus.styleChange(menu, '', [mxConstants.STYLE_ALIGN], [mxConstants.ALIGN_CENTER], 'geIcon geSprite geSprite-center', null,
function() { document.execCommand('justifycenter'); }).setAttribute('title', mxResources.get('center'));
this.editorUi.menus.styleChange(menu, '', [mxConstants.STYLE_ALIGN], [mxConstants.ALIGN_RIGHT], 'geIcon geSprite geSprite-right', null,
function() { document.execCommand('justifyright'); }).setAttribute('title', mxResources.get('right'));
}));
this.addMenuFunction('geSprite-fontcolor', mxResources.get('more') + '...', false, mxUtils.bind(this, function(menu)
{
// KNOWN: IE+FF don't return keyboard focus after color dialog (calling focus doesn't help)
elt = menu.addItem('', null, this.editorUi.actions.get('fontColor').funct, null, 'geIcon geSprite geSprite-fontcolor');
elt.setAttribute('title', mxResources.get('fontColor'));
elt = menu.addItem('', null, this.editorUi.actions.get('backgroundColor').funct, null, 'geIcon geSprite geSprite-fontbackground');
elt.setAttribute('title', mxResources.get('backgroundColor'));
elt = menu.addItem('', null, mxUtils.bind(this, function()
{
document.execCommand('superscript');
}), null, 'geIcon geSprite geSprite-superscript');
elt.setAttribute('title', mxResources.get('superscript'));
elt = menu.addItem('', null, mxUtils.bind(this, function()
{
document.execCommand('subscript');
}), null, 'geIcon geSprite geSprite-subscript');
elt.setAttribute('title', mxResources.get('subscript'));
}));
this.addSeparator();
this.addButton('geIcon geSprite geSprite-orderedlist', mxResources.get('numberedList'), function()
{
document.execCommand('insertorderedlist');
});
this.addButton('geIcon geSprite geSprite-unorderedlist', mxResources.get('bulletedList'), function()
{
document.execCommand('insertunorderedlist');
});
this.addButton('geIcon geSprite geSprite-outdent', mxResources.get('decreaseIndent'), function()
{
document.execCommand('outdent');
});
this.addButton('geIcon geSprite geSprite-indent', mxResources.get('increaseIndent'), function()
{
document.execCommand('indent');
});
this.addSeparator();
// TODO: Disable toolbar button for HTML code view
this.addButton('geIcon geSprite geSprite-link', mxResources.get('insertLink'), mxUtils.bind(this, function()
{
if (graph.cellEditor.isContentEditing())
{
var selState = graph.cellEditor.saveSelection();
var dlg = new TextareaDialog(this.editorUi, mxResources.get('enterValue') + ' (' + mxResources.get('url') + '):', '', mxUtils.bind(this, function(value)
{
graph.cellEditor.restoreSelection(selState);
// To find the new link, we create a list of all existing links first
// LATER: Refactor for reuse with code for finding inserted image below
var tmp = graph.cellEditor.text2.getElementsByTagName('a');
var oldLinks = [];
for (var i = 0; i < tmp.length; i++)
{
oldLinks.push(tmp[i]);
}
if (value != null && value.length > 0)
{
document.execCommand('createlink', false, mxUtils.trim(value));
// Adds target="_blank" for the new link
var newLinks = graph.cellEditor.text2.getElementsByTagName('a');
if (newLinks.length == oldLinks.length + 1)
{
// Inverse order in favor of appended links
for (var i = newLinks.length - 1; i >= 0; i--)
{
if (i == 0 || newLinks[i] != oldLinks[i - 1])
{
newLinks[i].setAttribute('target', '_blank');
break;
}
}
}
}
}), mxUtils.bind(this, function()
{
graph.cellEditor.restoreSelection(selState);
}));
this.editorUi.showDialog(dlg.container, 320, 200, true, false);
dlg.init();
}
}));
// TODO: Disable toolbar button for HTML code view
this.addButton('geIcon geSprite geSprite-image', mxResources.get('insertImage'), mxUtils.bind(this, function()
{
if (graph.cellEditor.isContentEditing())
{
var selState = graph.cellEditor.saveSelection();
this.showInsertImage(mxUtils.bind(this, function(value, w, h)
{
graph.cellEditor.restoreSelection(selState);
// To find the new image, we create a list of all existing links first
var tmp = graph.cellEditor.text2.getElementsByTagName('img');
var oldImages = [];
for (var i = 0; i < tmp.length; i++)
{
oldImages.push(tmp[i]);
}
if (value != null && value.length > 0)
{
document.execCommand('insertimage', false, value);
// Adds target="_blank" for the new link
var newImages = graph.cellEditor.text2.getElementsByTagName('img');
if (newImages.length == oldImages.length + 1)
{
// Inverse order in favor of appended images
for (var i = newImages.length - 1; i >= 0; i--)
{
if (i == 0 || newImages[i] != oldImages[i - 1])
{
// LATER: Add dialog for image size
newImages[i].style.width = w + 'px';
newImages[i].style.height = h + 'px';
break;
}
}
}
}
}));
}
}), mxUtils.bind(this, function()
{
graph.cellEditor.restoreSelection(selState);
}));
this.addButton('geIcon geSprite geSprite-horizontalrule', mxResources.get('insertHorizontalRule'), function()
{
document.execCommand('inserthorizontalrule');
});
this.addSeparator();
this.addButton('geIcon geSprite geSprite-removeformat', mxResources.get('removeFormat'), function()
{
document.execCommand('removeformat');
});
this.addButton('geIcon geSprite geSprite-code', mxResources.get('html'), function()
{
graph.cellEditor.toggleViewMode();
});
};
/**
* Hides the current menu.
*/
Toolbar.prototype.showInsertImage = function(applyFn)
{
var value = mxUtils.prompt(mxResources.get('enterValue') + ' (' + mxResources.get('url') + ')');
if (value != null && value.length > 0)
{
var img = new Image();
img.onload = function()
{
applyFn(value, img.width, img.height);
};
img.onerror = function()
{
mxUtils.alert(mxResources.get('fileNotFound'));
};
img.src = value;
}
};
2012-05-21 20:32:26 +00:00
/**
* Hides the current menu.
*/
Toolbar.prototype.hideMenu = function()
{
if (this.currentMenu != null)
{
this.currentMenu.hideMenu();
this.currentMenu.destroy();
this.currentMenu = null;
}
};
/**
* Adds a label to the toolbar.
*/
Toolbar.prototype.addMenu = function(label, tooltip, showLabels, name)
{
var menu = this.editorUi.menus.get(name);
var elt = this.addMenuFunction(label, tooltip, showLabels, menu.funct);
menu.addListener('stateChanged', function()
{
elt.setEnabled(menu.enabled);
});
return elt;
};
/**
* Adds a label to the toolbar.
*/
Toolbar.prototype.addMenuFunction = function(label, tooltip, showLabels, funct)
{
var elt = (showLabels) ? this.createLabel(label) : this.createButton(label);
this.initElement(elt, tooltip);
this.addMenuHandler(elt, showLabels, funct);
this.container.appendChild(elt);
return elt;
};
/**
* Adds a separator to the separator.
*/
Toolbar.prototype.addSeparator = function()
{
var elt = document.createElement('div');
2012-06-14 12:43:20 +00:00
elt.className = 'geSeparator';
2012-05-21 20:32:26 +00:00
this.container.appendChild(elt);
return elt;
};
/**
* Adds given action item
*/
Toolbar.prototype.addItems = function(keys)
{
for (var i = 0; i < keys.length; i++)
{
var key = keys[i];
if (key == '-')
{
this.addSeparator();
}
else
{
2012-06-14 12:43:20 +00:00
this.addItem('geSprite-' + key.toLowerCase(), key);
2012-05-21 20:32:26 +00:00
}
}
};
/**
* Adds given action item
*/
Toolbar.prototype.addItem = function(sprite, key)
{
var action = this.editorUi.actions.get(key);
var elt = null;
if (action != null)
{
elt = this.addButton(sprite, action.label, action.funct);
elt.setEnabled(action.enabled);
action.addListener('stateChanged', function()
{
elt.setEnabled(action.enabled);
});
}
return elt;
};
/**
* Adds a button to the toolbar.
*/
Toolbar.prototype.addButton = function(classname, tooltip, funct)
{
var elt = this.createButton(classname);
this.initElement(elt, tooltip);
this.addClickHandler(elt, funct);
this.container.appendChild(elt);
return elt;
};
/**
* Updates the states of the given toolbar items based on the selection.
*/
Toolbar.prototype.addSelectionHandler = function(items)
{
var graph = this.editorUi.editor.graph;
var selectionListener = function()
{
var selected = !graph.isSelectionEmpty();
for (var i = 0; i < items.length; i++)
{
items[i].setEnabled(selected);
}
};
graph.getSelectionModel().addListener(mxEvent.CHANGE, selectionListener);
selectionListener();
};
2012-06-14 12:43:20 +00:00
/**
* Updates the states of the given toolbar items based on the selection.
*/
Toolbar.prototype.addEdgeSelectionHandler = function(items)
{
var graph = this.editorUi.editor.graph;
var selectionListener = function()
{
var edgeSelected = false;
if (!graph.isSelectionEmpty())
{
var cells = graph.getSelectionCells();
for (var i = 0; i < cells.length; i++)
{
if (graph.getModel().isEdge(cells[i]))
{
edgeSelected = true;
break;
}
}
}
for (var i = 0; i < items.length; i++)
{
items[i].setEnabled(edgeSelected);
}
};
graph.getSelectionModel().addListener(mxEvent.CHANGE, selectionListener);
selectionListener();
};
2012-05-21 20:32:26 +00:00
/**
* Initializes the given toolbar element.
*/
Toolbar.prototype.initElement = function(elt, tooltip)
{
// Adds tooltip
if (tooltip != null)
{
elt.setAttribute('title', tooltip);
}
this.addEnabledState(elt);
};
/**
* Adds enabled state with setter to DOM node (avoids JS wrapper).
*/
Toolbar.prototype.addEnabledState = function(elt)
{
var classname = elt.className;
elt.setEnabled = function(value)
{
elt.enabled = value;
if (value)
{
elt.className = classname;
}
else
{
2014-01-08 16:23:20 +00:00
elt.className = classname + ' mxDisabled';
2012-05-21 20:32:26 +00:00
}
};
elt.setEnabled(true);
};
/**
* Adds enabled state with setter to DOM node (avoids JS wrapper).
*/
Toolbar.prototype.addClickHandler = function(elt, funct)
{
if (funct != null)
{
mxEvent.addListener(elt, 'click', function(evt)
{
if (elt.enabled)
{
funct(evt);
}
mxEvent.consume(evt);
});
2014-01-08 16:23:20 +00:00
if (document.documentMode != null && document.documentMode >= 9)
{
// Prevents focus
mxEvent.addListener(elt, 'mousedown', function(evt)
{
evt.preventDefault();
});
}
2012-05-21 20:32:26 +00:00
}
};
/**
* Creates and returns a new button.
*/
Toolbar.prototype.createButton = function(classname)
{
var elt = document.createElement('a');
elt.setAttribute('href', 'javascript:void(0);');
2012-06-14 12:43:20 +00:00
elt.className = 'geButton';
2012-05-21 20:32:26 +00:00
var inner = document.createElement('div');
2014-01-08 16:23:20 +00:00
if (classname != null)
{
inner.className = 'geSprite ' + classname;
}
2012-05-21 20:32:26 +00:00
elt.appendChild(inner);
return elt;
};
/**
* Creates and returns a new button.
*/
Toolbar.prototype.createLabel = function(label, tooltip)
{
var elt = document.createElement('a');
elt.setAttribute('href', 'javascript:void(0);');
2012-06-14 12:43:20 +00:00
elt.className = 'geLabel';
2012-05-21 20:32:26 +00:00
mxUtils.write(elt, label);
return elt;
};
/**
* Adds a handler for showing a menu in the given element.
*/
Toolbar.prototype.addMenuHandler = function(elt, showLabels, funct, showAll)
{
if (funct != null)
{
var graph = this.editorUi.editor.graph;
var menu = null;
mxEvent.addListener(elt, 'click', mxUtils.bind(this, function(evt)
{
if (elt.enabled == null || elt.enabled)
{
2013-06-28 19:07:06 +00:00
graph.popupMenuHandler.hideMenu();
2012-05-21 20:32:26 +00:00
menu = new mxPopupMenu(funct);
2012-06-14 12:43:20 +00:00
menu.div.className += ' geToolbarMenu';
2012-05-21 20:32:26 +00:00
menu.showDisabled = showAll;
menu.labels = showLabels;
menu.autoExpand = true;
2013-11-11 12:31:46 +00:00
var offset = mxUtils.getOffset(elt);
menu.popup(offset.x, offset.y + elt.offsetHeight, null, evt);
2012-05-21 20:32:26 +00:00
this.currentMenu = menu;
}
mxEvent.consume(evt);
}));
2014-01-08 16:23:20 +00:00
if (document.documentMode != null && document.documentMode >= 9)
{
// Prevents focus
mxEvent.addListener(elt, 'mousedown', function(evt)
{
evt.preventDefault();
});
}
2012-05-21 20:32:26 +00:00
}
};