Lines Matching refs:toolbar

137 	this.toolbarItems = (this.graphConfig.toolbar != null) ?
138 this.graphConfig.toolbar.split(' ') : [];
444 if (this.graphConfig.toolbar != null)
777 if (this.toolbar != null && this.graphConfig['toolbar-nohide'] != true)
788 this.toolbar.style.left = r.left + 'px';
792 this.toolbar.style.top = r.bottom - 1 + 'px';
798 this.toolbar.style.width = Math.max(this.minToolbarWidth, container.offsetWidth) + 'px';
799 this.toolbar.style.top = r.top + 1 + 'px';
803 this.toolbar.style.top = r.top + 'px';
807 else if (this.toolbar != null)
809 this.toolbar.style.width = Math.max(this.minToolbarWidth, container.offsetWidth) + 'px';
1138 var toolbar = container.ownerDocument.createElement('div');
1139 toolbar.style.position = 'absolute';
1140 toolbar.style.overflow = 'hidden';
1141 toolbar.style.boxSizing = 'border-box';
1142 toolbar.style.whiteSpace = 'nowrap';
1143 toolbar.style.textAlign = 'left';
1144 toolbar.style.zIndex = this.toolbarZIndex;
1145 toolbar.style.backgroundColor = '#eee';
1146 toolbar.style.height = this.toolbarHeight + 'px';
1147 this.toolbar = toolbar;
1151 mxUtils.setPrefixedStyle(toolbar.style, 'transition', 'opacity 100ms ease-in-out');
1152 mxUtils.setOpacity(toolbar, 30);
1174 mxUtils.setOpacity(toolbar, 0);
1179 toolbar.style.display = 'none';
1199 toolbar.style.display = '';
1200 mxUtils.setOpacity(toolbar, opacity || 30);
1212 mxEvent.addListener(toolbar, (mxClient.IS_POINTER) ? 'pointermove' : 'mousemove', function(evt)
1217 mxEvent.addListener(toolbar, 'mouseenter', mxUtils.bind(this, function(evt)
1222 mxEvent.addListener(toolbar, 'mousemove', mxUtils.bind(this, function(evt)
1228 mxEvent.addListener(toolbar, 'mouseleave', mxUtils.bind(this, function(evt)
1263 if (parseFloat(toolbar.style.opacity || 0) > 0)
1319 toolbar.appendChild(a);
1350 toolbar.appendChild(pageInfo);
1578 toolbar.appendChild(filename);
1587 toolbar.style.width = (this.graphConfig['toolbar-position'] == 'inline') ? 'auto' :
1589 toolbar.style.border = '1px solid #d0d0d0';
1601 toolbar.style.left = r.left + 'px';
1605 toolbar.style.top = r.bottom - 1 + 'px';
1611 toolbar.style.marginTop = -this.toolbarHeight + 'px';
1612 toolbar.style.top = r.top + 1 + 'px';
1616 toolbar.style.top = r.top + 'px';
1625 document.body.appendChild(toolbar);
1629 if (toolbar.parentNode != null)
1631 toolbar.parentNode.removeChild(toolbar);
1649 if (source == container || source == toolbar || source == layersDialog)
1667 toolbar.style.top = -this.toolbarHeight + 'px';
1668 container.appendChild(toolbar);
1685 if (toolbar.parentNode != null)