/* * * (c) Copyright Ascensio System SIA 2010-2019 * * This program is a free software product. You can redistribute it and/or * modify it under the terms of the GNU Affero General Public License (AGPL) * version 3 as published by the Free Software Foundation. In accordance with * Section 7(a) of the GNU AGPL its Section 15 shall be amended to the effect * that Ascensio System SIA expressly excludes the warranty of non-infringement * of any third-party rights. * * This program is distributed WITHOUT ANY WARRANTY; without even the implied * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For * details, see the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html * * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under * Section 5 of the GNU AGPL version 3. * * Pursuant to Section 7(b) of the License you must retain the original Product * logo when distributing the program. Pursuant to Section 7(e) we decline to * grant you any rights under trademark law for use of our trademarks. * * All the Product's GUI elements, including illustrations and icon sets, as * well as technical writing content are licensed under the terms of the * Creative Commons Attribution-ShareAlike 4.0 International. See the License * terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode * */ /** * ShapeSettingsAdvanced.js * * Created by Julia Radzhabova on 3/31/14 * Copyright (c) 2018 Ascensio System SIA. All rights reserved. * */ define([ 'text!spreadsheeteditor/main/app/template/ShapeSettingsAdvanced.template', 'common/main/lib/view/AdvancedSettingsWindow', 'common/main/lib/component/ComboBox', 'common/main/lib/component/MetricSpinner', 'common/main/lib/component/CheckBox' ], function (contentTemplate) { 'use strict'; SSE.Views.ShapeSettingsAdvanced = Common.Views.AdvancedSettingsWindow.extend(_.extend({ options: { contentWidth: 300, height: 342, toggleGroup: 'shape-adv-settings-group', sizeOriginal: {width: 0, height: 0}, sizeMax: {width: 55.88, height: 55.88}, properties: null, storageName: 'sse-shape-settings-adv-category' }, initialize : function(options) { _.extend(this.options, { title: this.textTitle, items: [ {panelId: 'id-adv-shape-width', panelCaption: this.textSize}, {panelId: 'id-adv-shape-rotate', panelCaption: this.textRotation}, {panelId: 'id-adv-shape-shape', panelCaption: this.textWeightArrows}, {panelId: 'id-adv-shape-margins', panelCaption: this.textTextBox}, {panelId: 'id-adv-shape-columns', panelCaption: this.strColumns}, {panelId: 'id-adv-shape-snap', panelCaption: this.textSnap}, {panelId: 'id-adv-shape-alttext', panelCaption: this.textAlt} ], contentTemplate: _.template(contentTemplate)({ scope: this }) }, options); Common.Views.AdvancedSettingsWindow.prototype.initialize.call(this, this.options); this.spinners = []; this.Margins = undefined; this._nRatio = 1; this._originalProps = this.options.shapeProps; this._changedProps = null; }, render: function() { Common.Views.AdvancedSettingsWindow.prototype.render.call(this); var me = this; this.spnWidth = new Common.UI.MetricSpinner({ el: $('#shape-advanced-spin-width'), step: .1, width: 100, defaultUnit : "cm", value: '3 cm', maxValue: 55.88, minValue: 0 }); this.spnWidth.on('change', _.bind(function(field, newValue, oldValue, eOpts){ if (this.btnRatio.pressed) { var w = field.getNumberValue(); var h = w/this._nRatio; if (h>this.spnHeight.options.maxValue) { h = this.spnHeight.options.maxValue; w = h * this._nRatio; this.spnWidth.setValue(w, true); } this.spnHeight.setValue(h, true); } if (this._changedProps) { this._changedProps.asc_putWidth(Common.Utils.Metric.fnRecalcToMM(field.getNumberValue())); this._changedProps.asc_putHeight(Common.Utils.Metric.fnRecalcToMM(this.spnHeight.getNumberValue())); } }, this)); this.spinners.push(this.spnWidth); this.spnHeight = new Common.UI.MetricSpinner({ el: $('#shape-advanced-spin-height'), step: .1, width: 100, defaultUnit : "cm", value: '3 cm', maxValue: 55.88, minValue: 0 }); this.spnHeight.on('change', _.bind(function(field, newValue, oldValue, eOpts){ var h = field.getNumberValue(), w = null; if (this.btnRatio.pressed) { w = h * this._nRatio; if (w>this.spnWidth.options.maxValue) { w = this.spnWidth.options.maxValue; h = w/this._nRatio; this.spnHeight.setValue(h, true); } this.spnWidth.setValue(w, true); } if (this._changedProps) { this._changedProps.asc_putHeight(Common.Utils.Metric.fnRecalcToMM(field.getNumberValue())); this._changedProps.asc_putWidth(Common.Utils.Metric.fnRecalcToMM(this.spnWidth.getNumberValue())); } }, this)); this.spinners.push(this.spnHeight); this.btnRatio = new Common.UI.Button({ parentEl: $('#shape-advanced-button-ratio'), cls: 'btn-toolbar', iconCls: 'toolbar__icon advanced-btn-ratio', style: 'margin-bottom: 1px;', enableToggle: true, hint: this.textKeepRatio }); this.btnRatio.on('click', _.bind(function(btn, e) { if (btn.pressed && this.spnHeight.getNumberValue()>0) { this._nRatio = this.spnWidth.getNumberValue()/this.spnHeight.getNumberValue(); } if (this._changedProps) { this._changedProps.asc_putLockAspect(btn.pressed); } }, this)); // Margins this.spnMarginTop = new Common.UI.MetricSpinner({ el: $('#shape-margin-top'), step: .1, width: 100, defaultUnit : "cm", value: '0 cm', maxValue: 55.87, minValue: 0 }); this.spnMarginTop.on('change', _.bind(function(field, newValue, oldValue, eOpts){ if (this._changedProps) { if (this._changedProps.asc_getShapeProperties()===null || this._changedProps.asc_getShapeProperties()===undefined) this._changedProps.asc_putShapeProperties(new Asc.asc_CShapeProperty()); if (this._changedProps.asc_getShapeProperties().asc_getPaddings()===null) this._changedProps.asc_getShapeProperties().asc_putPaddings(new Asc.asc_CPaddings()); this._changedProps.asc_getShapeProperties().asc_getPaddings().asc_putTop(Common.Utils.Metric.fnRecalcToMM(field.getNumberValue())); } }, this)); this.spinners.push(this.spnMarginTop); this.spnMarginBottom = new Common.UI.MetricSpinner({ el: $('#shape-margin-bottom'), step: .1, width: 100, defaultUnit : "cm", value: '0 cm', maxValue: 55.87, minValue: 0 }); this.spnMarginBottom.on('change', _.bind(function(field, newValue, oldValue, eOpts){ if (this._changedProps) { if (this._changedProps.asc_getShapeProperties()===null || this._changedProps.asc_getShapeProperties()===undefined) this._changedProps.asc_putShapeProperties(new Asc.asc_CShapeProperty()); if (this._changedProps.asc_getShapeProperties().asc_getPaddings()===null) this._changedProps.asc_getShapeProperties().asc_putPaddings(new Asc.asc_CPaddings()); this._changedProps.asc_getShapeProperties().asc_getPaddings().asc_putBottom(Common.Utils.Metric.fnRecalcToMM(field.getNumberValue())); } }, this)); this.spinners.push(this.spnMarginBottom); this.spnMarginLeft = new Common.UI.MetricSpinner({ el: $('#shape-margin-left'), step: .1, width: 100, defaultUnit : "cm", value: '0.19 cm', maxValue: 9.34, minValue: 0 }); this.spnMarginLeft.on('change', _.bind(function(field, newValue, oldValue, eOpts){ if (this._changedProps) { if (this._changedProps.asc_getShapeProperties()===null || this._changedProps.asc_getShapeProperties()===undefined) this._changedProps.asc_putShapeProperties(new Asc.asc_CShapeProperty()); if (this._changedProps.asc_getShapeProperties().asc_getPaddings()===null) this._changedProps.asc_getShapeProperties().asc_putPaddings(new Asc.asc_CPaddings()); this._changedProps.asc_getShapeProperties().asc_getPaddings().asc_putLeft(Common.Utils.Metric.fnRecalcToMM(field.getNumberValue())); } }, this)); this.spinners.push(this.spnMarginLeft); this.spnMarginRight = new Common.UI.MetricSpinner({ el: $('#shape-margin-right'), step: .1, width: 100, defaultUnit : "cm", value: '0.19 cm', maxValue: 9.34, minValue: 0 }); this.spnMarginRight.on('change', _.bind(function(field, newValue, oldValue, eOpts){ if (this._changedProps) { if (this._changedProps.asc_getShapeProperties()===null || this._changedProps.asc_getShapeProperties()===undefined) this._changedProps.asc_putShapeProperties(new Asc.asc_CShapeProperty()); if (this._changedProps.asc_getShapeProperties().asc_getPaddings()===null) this._changedProps.asc_getShapeProperties().asc_putPaddings(new Asc.asc_CPaddings()); this._changedProps.asc_getShapeProperties().asc_getPaddings().asc_putRight(Common.Utils.Metric.fnRecalcToMM(field.getNumberValue())); } }, this)); this.spinners.push(this.spnMarginRight); this.chAutofit = new Common.UI.CheckBox({ el: $('#shape-checkbox-autofit'), labelText: this.textResizeFit }); this.chAutofit.on('change', _.bind(function(field, newValue, oldValue, eOpts){ if (this._changedProps) { if (this._changedProps.asc_getShapeProperties()===null || this._changedProps.asc_getShapeProperties()===undefined) this._changedProps.asc_putShapeProperties(new Asc.asc_CShapeProperty()); this._changedProps.asc_getShapeProperties().asc_putTextFitType(field.getValue()=='checked' ? AscFormat.text_fit_Auto : AscFormat.text_fit_No); } }, this)); this.chOverflow = new Common.UI.CheckBox({ el: $('#shape-checkbox-overflow'), labelText: this.textOverflow }); this.chOverflow.on('change', _.bind(function(field, newValue, oldValue, eOpts){ if (this._changedProps) { if (this._changedProps.asc_getShapeProperties()===null || this._changedProps.asc_getShapeProperties()===undefined) this._changedProps.asc_putShapeProperties(new Asc.asc_CShapeProperty()); this._changedProps.asc_getShapeProperties().asc_putVertOverflowType(field.getValue()=='checked' ? AscFormat.nOTOwerflow : AscFormat.nOTClip); } }, this)); // Rotation this.spnAngle = new Common.UI.MetricSpinner({ el: $('#shape-advanced-spin-angle'), step: 1, width: 80, defaultUnit : "°", value: '0 °', maxValue: 3600, minValue: -3600 }); this.chFlipHor = new Common.UI.CheckBox({ el: $('#shape-advanced-checkbox-hor'), labelText: this.textHorizontally }); this.chFlipVert = new Common.UI.CheckBox({ el: $('#shape-advanced-checkbox-vert'), labelText: this.textVertically }); // Shape this._arrCapType = [ {displayValue: this.textFlat, value: Asc.c_oAscLineCapType.Flat}, {displayValue: this.textRound, value: Asc.c_oAscLineCapType.Round}, {displayValue: this.textSquare, value: Asc.c_oAscLineCapType.Square} ]; this.cmbCapType = new Common.UI.ComboBox({ el: $('#shape-advanced-cap-type'), cls: 'input-group-nr', menuStyle: 'min-width: 100px;', editable: false, data: this._arrCapType, takeFocusOnClose: true }); this.cmbCapType.setValue(Asc.c_oAscLineCapType.Flat); this.cmbCapType.on('selected', _.bind(function(combo, record){ if (this._changedProps) { if (this._changedProps.asc_getShapeProperties()===null || this._changedProps.asc_getShapeProperties()===undefined) this._changedProps.asc_putShapeProperties(new Asc.asc_CShapeProperty()); if (this._changedProps.asc_getShapeProperties().asc_getStroke()===null) this._changedProps.asc_getShapeProperties().asc_putStroke(new Asc.asc_CStroke()); this._changedProps.asc_getShapeProperties().asc_getStroke().asc_putLinecap(record.value); } }, this)); this._arrJoinType = [ {displayValue: this.textRound, value: Asc.c_oAscLineJoinType.Round}, {displayValue: this.textBevel, value: Asc.c_oAscLineJoinType.Bevel}, {displayValue: this.textMiter, value: Asc.c_oAscLineJoinType.Miter} ]; this.cmbJoinType = new Common.UI.ComboBox({ el: $('#shape-advanced-join-type'), cls: 'input-group-nr', menuStyle: 'min-width: 100px;', editable: false, data: this._arrJoinType, takeFocusOnClose: true }); this.cmbJoinType.setValue(Asc.c_oAscLineJoinType.Round); this.cmbJoinType.on('selected', _.bind(function(combo, record){ if (this._changedProps) { if (this._changedProps.asc_getShapeProperties()===null || this._changedProps.asc_getShapeProperties()===undefined) this._changedProps.asc_putShapeProperties(new Asc.asc_CShapeProperty()); if (this._changedProps.asc_getShapeProperties().asc_getStroke()===null) this._changedProps.asc_getShapeProperties().asc_putStroke(new Asc.asc_CStroke()); this._changedProps.asc_getShapeProperties().asc_getStroke().asc_putLinejoin(record.value); } }, this)); var _arrStyles = [], _arrSize = []; for ( var i=0; i<6; i++ ) _arrStyles.push({value: i, offsetx: 80*i+10, offsety: 0}); _arrStyles[0].type = Asc.c_oAscLineBeginType.None; _arrStyles[1].type = Asc.c_oAscLineBeginType.Triangle; _arrStyles[2].type = Asc.c_oAscLineBeginType.Arrow; _arrStyles[3].type = Asc.c_oAscLineBeginType.Stealth; _arrStyles[4].type = Asc.c_oAscLineBeginType.Diamond; _arrStyles[5].type = Asc.c_oAscLineBeginType.Oval; for ( i=0; i<9; i++ ) _arrSize.push({value: i, offsetx: 80+10, offsety: 20*(i+1)}); _arrSize[0].type = Asc.c_oAscLineBeginSize.small_small; _arrSize[1].type = Asc.c_oAscLineBeginSize.small_mid; _arrSize[2].type = Asc.c_oAscLineBeginSize.small_large; _arrSize[3].type = Asc.c_oAscLineBeginSize.mid_small; _arrSize[4].type = Asc.c_oAscLineBeginSize.mid_mid; _arrSize[5].type = Asc.c_oAscLineBeginSize.mid_large; _arrSize[6].type = Asc.c_oAscLineBeginSize.large_small; _arrSize[7].type = Asc.c_oAscLineBeginSize.large_mid; _arrSize[8].type = Asc.c_oAscLineBeginSize.large_large; this.btnBeginStyle = new Common.UI.ComboBox({ el: $('#shape-advanced-begin-style'), template: _.template([ '
' ].join('')) }); this.btnBeginStyleMenu = (new Common.UI.Menu({ style: 'min-width: 105px;', additionalAlign: this.menuAddAlign, items: [ { template: _.template('') } ] })).render($('#shape-advanced-begin-style')); this.mnuBeginStylePicker = new Common.UI.DataView({ el: $('#shape-advanced-menu-begin-style'), parentMenu: this.btnBeginStyleMenu, store: new Common.UI.DataViewStore(_arrStyles), itemTemplate: _.template('') }); this.mnuBeginStylePicker.on('item:click', _.bind(this.onSelectBeginStyle, this)); this._selectStyleItem(this.btnBeginStyle, null); this.btnBeginSize = new Common.UI.ComboBox({ el: $('#shape-advanced-begin-size'), template: _.template([ ' ' ].join('')) }); this.btnBeginSizeMenu = (new Common.UI.Menu({ style: 'min-width: 160px;', additionalAlign: this.menuAddAlign, items: [ { template: _.template('') } ] })).render($('#shape-advanced-begin-size')); this.mnuBeginSizePicker = new Common.UI.DataView({ el: $('#shape-advanced-menu-begin-size'), parentMenu: this.btnBeginSizeMenu, store: new Common.UI.DataViewStore(_arrSize), itemTemplate: _.template('') }); this.mnuBeginSizePicker.on('item:click', _.bind(this.onSelectBeginSize, this)); this._selectStyleItem(this.btnBeginSize, null); for ( i=0; i<_arrStyles.length; i++ ) _arrStyles[i].offsety += 200; for ( i=0; i<_arrSize.length; i++ ) _arrSize[i].offsety += 200; this.btnEndStyle = new Common.UI.ComboBox({ el: $('#shape-advanced-end-style'), template: _.template([ ' ' ].join('')) }); this.btnEndStyleMenu = (new Common.UI.Menu({ style: 'min-width: 105px;', additionalAlign: this.menuAddAlign, items: [ { template: _.template('') } ] })).render($('#shape-advanced-end-style')); this.mnuEndStylePicker = new Common.UI.DataView({ el: $('#shape-advanced-menu-end-style'), parentMenu: this.btnEndStyleMenu, store: new Common.UI.DataViewStore(_arrStyles), itemTemplate: _.template('') }); this.mnuEndStylePicker.on('item:click', _.bind(this.onSelectEndStyle, this)); this._selectStyleItem(this.btnEndStyle, null); this.btnEndSize = new Common.UI.ComboBox({ el: $('#shape-advanced-end-size'), template: _.template([ ' ' ].join('')) }); this.btnEndSizeMenu = (new Common.UI.Menu({ style: 'min-width: 160px;', additionalAlign: this.menuAddAlign, items: [ { template: _.template('') } ] })).render($('#shape-advanced-end-size')); this.mnuEndSizePicker = new Common.UI.DataView({ el: $('#shape-advanced-menu-end-size'), parentMenu: this.btnEndSizeMenu, store: new Common.UI.DataViewStore(_arrSize), itemTemplate: _.template('') }); this.mnuEndSizePicker.on('item:click', _.bind(this.onSelectEndSize, this)); this._selectStyleItem(this.btnEndSize, null); // Columns this.spnColumns = new Common.UI.MetricSpinner({ el: $('#shape-columns-number'), step: 1, allowDecimal: false, width: 100, defaultUnit : "", value: '1', maxValue: 16, minValue: 1 }); this.spnColumns.on('change', _.bind(function(field, newValue, oldValue, eOpts){ if (this._changedProps) { if (this._changedProps.asc_getShapeProperties()===null || this._changedProps.asc_getShapeProperties()===undefined) this._changedProps.asc_putShapeProperties(new Asc.asc_CShapeProperty()); this._changedProps.asc_getShapeProperties().asc_putColumnNumber(field.getNumberValue()); } }, this)); this.spnSpacing = new Common.UI.MetricSpinner({ el: $('#shape-columns-spacing'), step: .1, width: 100, defaultUnit : "cm", value: '0 cm', maxValue: 40.64, minValue: 0 }); this.spnSpacing.on('change', _.bind(function(field, newValue, oldValue, eOpts){ if (this._changedProps) { if (this._changedProps.asc_getShapeProperties()===null || this._changedProps.asc_getShapeProperties()===undefined) this._changedProps.asc_putShapeProperties(new Asc.asc_CShapeProperty()); this._changedProps.asc_getShapeProperties().asc_putColumnSpace(Common.Utils.Metric.fnRecalcToMM(field.getNumberValue())); } }, this)); this.spinners.push(this.spnSpacing); // Snapping this.radioTwoCell = new Common.UI.RadioBox({ el: $('#shape-radio-twocell'), name: 'asc-radio-snap', labelText: this.textTwoCell, value: AscCommon.c_oAscCellAnchorType.cellanchorTwoCell }); this.radioTwoCell.on('change', _.bind(this.onRadioSnapChange, this)); this.radioOneCell = new Common.UI.RadioBox({ el: $('#shape-radio-onecell'), name: 'asc-radio-snap', labelText: this.textOneCell, value: AscCommon.c_oAscCellAnchorType.cellanchorOneCell }); this.radioOneCell.on('change', _.bind(this.onRadioSnapChange, this)); this.radioAbsolute = new Common.UI.RadioBox({ el: $('#shape-radio-absolute'), name: 'asc-radio-snap', labelText: this.textAbsolute, value: AscCommon.c_oAscCellAnchorType.cellanchorAbsolute }); this.radioAbsolute.on('change', _.bind(this.onRadioSnapChange, this)); // Alt Text this.inputAltTitle = new Common.UI.InputField({ el : $('#shape-advanced-alt-title'), allowBlank : true, validateOnBlur: false, style : 'width: 100%;' }).on('changed:after', function() { me.isAltTitleChanged = true; }); this.textareaAltDescription = this.$window.find('textarea'); this.textareaAltDescription.keydown(function (event) { if (event.keyCode == Common.UI.Keys.RETURN) { event.stopPropagation(); } me.isAltDescChanged = true; }); this.afterRender(); }, getFocusedComponents: function() { return [ this.spnWidth, this.spnHeight, // 0 tab this.spnAngle, this.chFlipHor, this.chFlipVert, // 1 tab this.cmbCapType, this.cmbJoinType, // 2 tab this.chAutofit, this.chOverflow, this.spnMarginTop, this.spnMarginLeft, this.spnMarginBottom, this.spnMarginRight, // 3 tab this.spnColumns, this.spnSpacing, // 4 tab this.radioTwoCell, this.radioOneCell, this.radioAbsolute, // 5 tab this.inputAltTitle, this.textareaAltDescription // 6 tab ]; }, onCategoryClick: function(btn, index) { Common.Views.AdvancedSettingsWindow.prototype.onCategoryClick.call(this, btn, index); var me = this; setTimeout(function(){ switch (index) { case 0: me.spnWidth.focus(); break; case 1: me.spnAngle.focus(); break; case 2: me.cmbCapType.focus(); break; case 3: me.spnMarginTop.focus(); break; case 4: me.spnColumns.focus(); break; case 5: me.radioTwoCell.focus(); break; case 6: me.inputAltTitle.focus(); break; } }, 10); }, afterRender: function() { this.updateMetricUnit(); this._setDefaults(this._originalProps); if (this.storageName) { var value = Common.localStorage.getItem(this.storageName); this.setActiveCategory((value!==null) ? parseInt(value) : 0); } }, _setDefaults: function(props) { if (props && props.asc_getShapeProperties()){ var shapeprops = props.asc_getShapeProperties(); if (shapeprops.asc_getFromSmartArt()) { this.btnsCategory[1].setDisabled(true); } if (shapeprops.asc_getFromSmartArtInternal()) { this.chAutofit.setDisabled(true); this.chOverflow.setDisabled(true); } this.spnWidth.setValue(Common.Utils.Metric.fnRecalcFromMM(props.asc_getWidth()).toFixed(2), true); this.spnHeight.setValue(Common.Utils.Metric.fnRecalcFromMM(props.asc_getHeight()).toFixed(2), true); if (props.asc_getHeight()>0) this._nRatio = props.asc_getWidth()/props.asc_getHeight(); var value = props.asc_getLockAspect(); this.btnRatio.toggle(value); this._setShapeDefaults(shapeprops); var margins = shapeprops.asc_getPaddings(); if (margins) { var val = margins.asc_getLeft(); this.spnMarginLeft.setValue((null !== val && undefined !== val) ? Common.Utils.Metric.fnRecalcFromMM(val) : '', true); val = margins.asc_getTop(); this.spnMarginTop.setValue((null !== val && undefined !== val) ? Common.Utils.Metric.fnRecalcFromMM(val) : '', true); val = margins.asc_getRight(); this.spnMarginRight.setValue((null !== val && undefined !== val) ? Common.Utils.Metric.fnRecalcFromMM(val) : '', true); val = margins.asc_getBottom(); this.spnMarginBottom.setValue((null !== val && undefined !== val) ? Common.Utils.Metric.fnRecalcFromMM(val) : '', true); } this.btnsCategory[3].setDisabled(null === margins); // Margins this.chAutofit.setValue(shapeprops.asc_getTextFitType()==AscFormat.text_fit_Auto); this.chOverflow.setValue(shapeprops.asc_getVertOverflowType()==AscFormat.nOTOwerflow); var shapetype = shapeprops.asc_getType(); this.btnsCategory[4].setDisabled(shapeprops.asc_getFromSmartArtInternal() || shapetype=='line' || shapetype=='bentConnector2' || shapetype=='bentConnector3' || shapetype=='bentConnector4' || shapetype=='bentConnector5' || shapetype=='curvedConnector2' || shapetype=='curvedConnector3' || shapetype=='curvedConnector4' || shapetype=='curvedConnector5' || shapetype=='straightConnector1'); value = shapeprops.asc_getColumnNumber(); this.spnColumns.setValue((null !== value && undefined !== value) ? value : '', true); value = shapeprops.asc_getColumnSpace(); this.spnSpacing.setValue((null !== value && undefined !== value) ? Common.Utils.Metric.fnRecalcFromMM(value) : '', true); value = props.asc_getTitle(); this.inputAltTitle.setValue(value ? value : ''); value = props.asc_getDescription(); this.textareaAltDescription.val(value ? value : ''); value = props.asc_getRot(); this.spnAngle.setValue((value==undefined || value===null) ? '' : Math.floor(value*180/3.14159265358979+0.5), true); this.chFlipHor.setValue(props.asc_getFlipH()); this.chFlipVert.setValue(props.asc_getFlipV()); value = props.asc_getAnchor(); switch (value) { case AscCommon.c_oAscCellAnchorType.cellanchorTwoCell: this.radioTwoCell.setValue(true, true); break; case AscCommon.c_oAscCellAnchorType.cellanchorOneCell: this.radioOneCell.setValue(true, true); break; case AscCommon.c_oAscCellAnchorType.cellanchorAbsolute: this.radioAbsolute.setValue(true, true); break; } this._changedProps = new Asc.asc_CImgProperty(); } }, getSettings: function() { if (this.isAltTitleChanged) this._changedProps.asc_putTitle(this.inputAltTitle.getValue()); if (this.isAltDescChanged) this._changedProps.asc_putDescription(this.textareaAltDescription.val()); this._changedProps.asc_putRot(this.spnAngle.getNumberValue() * 3.14159265358979 / 180); this._changedProps.asc_putFlipH(this.chFlipHor.getValue()=='checked'); this._changedProps.asc_putFlipV(this.chFlipVert.getValue()=='checked'); return { shapeProps: this._changedProps} ; }, _setShapeDefaults: function(props) { if (props ){ var stroke = props.asc_getStroke(); if (stroke) { this.btnsCategory[2].setDisabled(stroke.asc_getType() == Asc.c_oAscStrokeType.STROKE_NONE); // Weights & Arrows var value = stroke.asc_getLinejoin(); for (var i=0; i