Lines Matching refs:w

1705 …iles(evt.dataTransfer.files, 0, 0, editorUi.maxBackgroundSize, function(data, mimeType, x, y, w, h)  argument
1911 function insertPlantUmlImage(text, format, data, w, h) argument
1913 …= (mxEvent.isAltDown(evt)) ? insertPoint : graph.getCenterInsertPoint(new mxRectangle(0, 0, w, h));
1922 w, h, 'shape=image;noLabel=1;verticalAlign=top;aspect=fixed;imageAspect=0;' +
1953 editorUi.generatePlantUmlImage(text, format, function(data, w, h) argument
1956 insertPlantUmlImage(text, format, data, w, h);
1971 editorUi.generateMermaidImage(text, format, function(data, w, h) argument
1973 …= (mxEvent.isAltDown(evt)) ? insertPoint : graph.getCenterInsertPoint(new mxRectangle(0, 0, w, h));
1981 w, h, 'shape=image;noLabel=1;verticalAlign=top;imageAspect=1;' +
2707 w = h = smallSize? 135 : 140;
3060 var w = 140;
3090 elt.style.height = w + 'px';
3204 img.style.maxWidth = w + 'px';
3246 …nd:rgba(255,255,255,0.85);overflow:hidden;text-overflow:ellipsis;max-width:' + (w - 34) + 'px;">' +
3288 …'border-radius:3px;background:#ffffff;overflow:hidden;text-overflow:ellipsis;max-width:' + (w - 34…
4630 var insertImage = function(newValue, w, h, resize) argument
4645 (w != null && h != null) ? Math.max(w / img.width, h / img.height) :
4672 w = (w == null) ? 120 : w;
4676 fn(newValue, w, h);
4751 …Transfer.files, 0, 0, editorUi.maxImageSize, function(data, mimeType, x, y, w, h, fileName, resize) argument
4834 …orUi.importFiles(fileInput.files, 0, 0, editorUi.maxImageSize, function(data, mimeType, x, y, w, h) argument
6753 var FindWindow = function(ui, x, y, w, h, withReplace) argument
7410 div, x, y, w, h, true, true);
7483 var FreehandWindow = function(editorUi, x, y, w, h) argument
7516 this.window = new mxWindow(mxResources.get('freehand'), div, x, y, w, h, true, true);
7577 var TagsWindow = function(editorUi, x, y, w, h) argument
7628 this.window = new mxWindow(mxResources.get('tags'), div, x, y, w, h, true, true);
8967 function addButton(data, mimeType, x, y, w, h, img, aspect, title) argument
8981 var iw = w;
8984 if (w > editorUi.maxImageSize || h > editorUi.maxImageSize)
8986 var s = Math.min(1, Math.min(editorUi.maxImageSize / Math.max(1, w)),
8988 w *= s;
9106 entry = {data: data, w: w, h: h, title: title}; property in LibraryDialog.addButton.entry
9298 addButton(temp[i].data, null, 0, 0, temp[i].w, temp[i].h, null, 'fixed', temp[i].title);
9314 addButton(null, null, 0, 0, 0, 0, {xml: temp, w: size.width, h: size.height});
9345 addButton(img.data, null, 0, 0, img.w, img.h, img, img.aspect, img.title);
9377 return function(data, mimeType, x, y, w, h, img, doneFn, file) argument
9383 addButton(xml, mimeType, x, y, w, h, img, 'fixed', (mxEvent.isAltDown(evt)) ?
9398 addButton(xml, mimeType, x, y, w, h, img, 'fixed', (mxEvent.isAltDown(evt)) ?
9407 addButton(data, mimeType, x, y, w, h, img, 'fixed', (mxEvent.isAltDown(evt)) ?
9565 …ileInput.files, 0, 0, editorUi.maxImageSize, function(data, mimeType, x, y, w, h, img, doneFn, fil… argument
9569 createImportHandler(evt)(data, mimeType, x, y, w, h, img, doneFn, file);
9610 editorUi.showImageDialog(mxResources.get('addImageUrl'), '', function(url, w, h) argument
9628 addButton(url, null, 0, 0, w, h);
9672 var EditShapeDialog = function(editorUi, cell, title, w, h) argument
9674 w = (w != null) ? w : 300;
9698 nameInput.style.width = (w - 200) + 'px';