Lines Matching refs:h

1162 				var h = parseInt(heightInput.value) + parseInt(topInput.value);
1163 gurl += '&height=' + h;
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;
3061 var h = 140;
3091 elt.style.width = h + 'px';
3205 img.style.maxHeight = h + 'px';
4630 var insertImage = function(newValue, w, h, resize) argument
4645 (w != null && h != null) ? Math.max(w / img.width, h / img.height) :
4673 h = (h == null) ? 100 : h;
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
8982 var ih = h;
8984 if (w > editorUi.maxImageSize || h > editorUi.maxImageSize)
8987 editorUi.maxImageSize / Math.max(1, h));
8989 h *= 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 …leInput.files, 0, 0, editorUi.maxImageSize, function(data, mimeType, x, y, w, h, img, doneFn, file) 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
9675 h = (h != null) ? h : 120;
9699 nameInput.style.height = h + 'px';
9719 container.style.height = (h + 4) + 'px';
9742 var ns = Math.min((200 - 40) / b.width, (h - 40) / b.height);