Lines Matching refs:label

456 	var label = document.createElement('div');
457 label.className = 'geFormatSection';
458 label.style.textAlign = 'center';
459 label.style.fontWeight = 'bold';
460 label.style.paddingTop = '8px';
461 label.style.fontSize = '13px';
462 label.style.borderWidth = '0px 0px 1px 1px';
463 label.style.borderStyle = 'solid';
464 label.style.display = 'inline-block';
465 label.style.height = '25px';
466 label.style.overflow = 'hidden';
467 label.style.width = '100%';
471 mxEvent.addListener(label, (mxClient.IS_POINTER) ? 'pointerdown' : 'mousedown',
546 mxUtils.write(label, mxResources.get('diagram'));
547 label.style.borderLeftWidth = '0px';
549 div.appendChild(label);
557 label.style.width = (this.showCloseButton) ? '106px' : '50%';
558 label.style.cursor = 'pointer';
559 label.style.backgroundColor = Format.inactiveTabBackgroundColor;
561 var label2 = label.cloneNode(false);
566 addClickHandler(label, diagramPanel, idx++);
583 var label2 = label.cloneNode(false);
619 mxUtils.write(label, mxResources.get('text'));
620 div.appendChild(label);
625 label.style.backgroundColor = Format.inactiveTabBackgroundColor;
626 label.style.borderLeftWidth = '1px';
627 label.style.cursor = 'pointer';
628 label.style.width = (containsLabel || ss.cells.length == 0) ? '50%' : '33.3%';
629 var label2 = label.cloneNode(false);
643 label.style.borderLeftWidth = '0px';
644 mxUtils.write(label, mxResources.get('style'));
645 div.appendChild(label);
652 addClickHandler(label, stylePanel, idx++);
979 BaseFormatPanel.prototype.createOption = function(label, isCheckedFn, setCheckedFn, listener, fn) argument
997 mxUtils.write(span, label);
1072 BaseFormatPanel.prototype.createCellOption = function(label, key, defaultValue, enabledValue, disab… argument
1084 return this.createOption(label, function()
1141 BaseFormatPanel.prototype.createColorOption = function(label, getColorFn, setColorFn, argument
1163 mxUtils.write(span, label);
1321 BaseFormatPanel.prototype.createCellColorOption = function(label, colorKey, defaultColor, callbackF… argument
1328 return this.createColorOption(label, function()
1480 BaseFormatPanel.prototype.createRelativeOption = function(label, key, width, handler, init) argument
1488 mxUtils.write(div, label);
1575 var label = document.createElement('div');
1576 mxUtils.write(label, title);
1577 label.style.position = 'absolute';
1578 label.style.left = (240 - right - width) + 'px';
1579 label.style.width = width + 'px';
1580 label.style.marginTop = '6px';
1581 label.style.textAlign = 'center';
1582 div.appendChild(label);
2326 var label = mxResources.get('reverse');
2330 label = mxResources.get('turn') + ' / ' + label;
2334 label = mxResources.get('turn');
2337 btn = mxUtils.button(label, function(evt)
2342 btn.setAttribute('title', label + ' (' + this.editorUi.actions.get('turn').shortcut + ')');
4681 var addStyleRule = mxUtils.bind(this, function(rule, key, label) argument
4687 var option = this.createColorOption(label + ' ' + rule.selectorText, function()
4833 var label = (ss.style.shape == 'image') ? mxResources.get('background') : mxResources.get('fill');
4835 …var fillPanel = this.createCellColorOption(label, fillKey, 'default', null, mxUtils.bind(this, fun…
5033 var label = (ss.style.shape == 'image') ? mxResources.get('border') : mxResources.get('line');
5035 …var lineColor = this.createCellColorOption(label, strokeKey, 'default', null, mxUtils.bind(this, f…
5831 var addOption = mxUtils.bind(this, function(label, key, defaultValue) argument
5833 var opt = this.createCellOption(label, key, defaultValue);
6659 var label = bg.getElementsByTagName('span')[0];
6660 label.style.display = 'inline-block';
6661 label.style.textOverflow = 'ellipsis';
6662 label.style.overflow = 'hidden';
6663 label.style.maxWidth = '68px';
6667 label.style.marginTop = '1px';