Lines Matching refs:w

3340 				var entry = {xml: xml, w: bounds.width, h: bounds.height};  property in EditorUi.libraryLoaded.AnonymousFunction393e60862c00.entry
3464 … 0, 0, this.maxImageSize, mxUtils.bind(this, function(data, mimeType, x, y, w, h, img, doneFn, fil… argument
3470 var cells = [new mxCell('', new mxGeometry(0, 0, w, h), style)];
3473 …addCells(cells, new mxRectangle(0, 0, w, h), evt, (mxEvent.isAltDown(evt)) ? null : img.substring(…
3667 data, img.w, img.h, '', img.title || '', false, false, true));
3676 cells, img.w, img.h, img.title || '', true, false, true));
6485 var w = parseInt(svgRoot.getAttribute('width'));
6487 svgRoot.setAttribute('viewBox', '-0.5 -0.5 ' + w + ' ' + h);
7561 var w = parseFloat(svgs[0].getAttribute('width'));
7564 if (isNaN(w) || isNaN(h))
7569 w = parseFloat(viewBox[2]);
7575 w = w || 100;
7580 success(ui.convertDataUri(Editor.createSvgDataUri(svg)), w, h);
7736 var w = img.width;
7740 if (w == 0 && h == 0)
7750 w = parseFloat(svgs[0].getAttribute('width'));
7755 success(reader.result, w, h);
7908 var w = Math.round(img.width * s);
7912 w, h, 'shape=image;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;' +
9601 …s.importFiles(evt.dataTransfer.files, 0, 0, this.maxImageSize, function(data, mimeType, x, y, w, h) argument
9604 graph.insertImage(data, w, h);
9629 var w = Math.max(1, img.width);
9633 var s = Math.min(1, Math.min(maxSize / Math.max(1, w)), maxSize / Math.max(1, h));
9634 graph.insertImage(decodeURIComponent(uri), w * s, h * s);
9905 var w = Math.max(1, img.width);
9909 var s = Math.min(1, Math.min(maxSize / Math.max(1, w)), maxSize / Math.max(1, h));
9911 graph.setSelectionCell(graph.insertVertex(null, null, '', x, y, w * s, h * s,
9985 … this.importFiles([item.getAsFile()], 0, 0, this.maxImageSize, function(data, mimeType, x, y, w, h) argument
9988 graph.insertImage(data, w, h);
10559 var w = parseInt(svgRoot.getAttribute('width'));
10561 this.writeImageToClipboard(dataUrl, w, h, mxUtils.bind(this, function(e)
10590 EditorUi.prototype.writeImageToClipboard = function(dataUrl, w, h, error) argument
10593 var html = '<img src="' + dataUrl + '" width="' + w + '" height="' + h + '">';
11067 var w = 0;
11075 w = (b.clientWidth || d.clientWidth) - 3;
11082 w = elt.clientWidth;
11093 hl.style.width = Math.max(0, w - 3) + 'px';
13909 var w = Math.floor(bounds.width * s / graph.view.scale);
13912 if (data.length <= MAX_REQUEST_SIZE && w * h < MAX_AREA)
13949 '&bg=' + ((bg != null) ? bg : 'none') + '&w=' + w + '&h=' + h +
15010 var CommentsWindow = function(editorUi, x, y, w, h, saveCallback) argument
15749 this.window = new mxWindow(mxResources.get('comments'), div, x, y, w, h, true, true);