650 lines
31 KiB
JavaScript
650 lines
31 KiB
JavaScript
/**
|
|
* ShapeSettingsAdvanced.js
|
|
*
|
|
* Created by Julia Radzhabova on 3/31/14
|
|
* Copyright (c) 2014 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'
|
|
], function (contentTemplate) {
|
|
'use strict';
|
|
|
|
SSE.Views.ShapeSettingsAdvanced = Common.Views.AdvancedSettingsWindow.extend(_.extend({
|
|
options: {
|
|
contentWidth: 300,
|
|
height: 332,
|
|
toggleGroup: 'shape-adv-settings-group',
|
|
sizeOriginal: {width: 0, height: 0},
|
|
sizeMax: {width: 55.88, height: 55.88},
|
|
properties: null
|
|
},
|
|
|
|
initialize : function(options) {
|
|
_.extend(this.options, {
|
|
title: this.textTitle,
|
|
items: [
|
|
{panelId: 'id-adv-shape-width', panelCaption: this.textSize},
|
|
{panelId: 'id-adv-shape-shape', panelCaption: this.textWeightArrows},
|
|
{panelId: 'id-adv-shape-margins', panelCaption: this.strMargins}
|
|
],
|
|
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({
|
|
cls: 'btn-toolbar',
|
|
iconCls: 'advanced-btn-ratio',
|
|
style: 'margin-bottom: 1px;',
|
|
enableToggle: true,
|
|
hint: this.textKeepRatio
|
|
});
|
|
this.btnRatio.render($('#shape-advanced-button-ratio')) ;
|
|
this.btnRatio.on('click', _.bind(function(btn, e) {
|
|
if (btn.pressed && this.spnHeight.getNumberValue()>0) {
|
|
this._nRatio = this.spnWidth.getNumberValue()/this.spnHeight.getNumberValue();
|
|
}
|
|
}, 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);
|
|
|
|
// Shape
|
|
this._arrCapType = [
|
|
{displayValue: this.textFlat, value: c_oAscLineCapType.Flat},
|
|
{displayValue: this.textRound, value: c_oAscLineCapType.Round},
|
|
{displayValue: this.textSquare, value: 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
|
|
});
|
|
this.cmbCapType.setValue(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: c_oAscLineJoinType.Round},
|
|
{displayValue: this.textBevel, value: c_oAscLineJoinType.Bevel},
|
|
{displayValue: this.textMiter, value: 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
|
|
});
|
|
this.cmbJoinType.setValue(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 = c_oAscLineBeginType.None;
|
|
_arrStyles[1].type = c_oAscLineBeginType.Triangle;
|
|
_arrStyles[2].type = c_oAscLineBeginType.Arrow;
|
|
_arrStyles[3].type = c_oAscLineBeginType.Stealth;
|
|
_arrStyles[4].type = c_oAscLineBeginType.Diamond;
|
|
_arrStyles[5].type = c_oAscLineBeginType.Oval;
|
|
|
|
for ( i=0; i<9; i++ )
|
|
_arrSize.push({value: i, offsetx: 80+10, offsety: 20*(i+1)});
|
|
|
|
_arrSize[0].type = c_oAscLineBeginSize.small_small;
|
|
_arrSize[1].type = c_oAscLineBeginSize.small_mid;
|
|
_arrSize[2].type = c_oAscLineBeginSize.small_large;
|
|
_arrSize[3].type = c_oAscLineBeginSize.mid_small;
|
|
_arrSize[4].type = c_oAscLineBeginSize.mid_mid;
|
|
_arrSize[5].type = c_oAscLineBeginSize.mid_large;
|
|
_arrSize[6].type = c_oAscLineBeginSize.large_small;
|
|
_arrSize[7].type = c_oAscLineBeginSize.large_mid;
|
|
_arrSize[8].type = c_oAscLineBeginSize.large_large;
|
|
|
|
|
|
this.btnBeginStyle = new Common.UI.ComboBox({
|
|
el: $('#shape-advanced-begin-style'),
|
|
template: _.template([
|
|
'<div class="input-group combobox combo-dataview-menu input-group-nr dropdown-toggle combo-arrow-style" data-toggle="dropdown">',
|
|
'<div class="form-control image" style="width: 100px;"></div>',
|
|
'<div style="display: table-cell;"></div>',
|
|
'<button type="button" class="btn btn-default"><span class="caret img-commonctrl"></span></button>',
|
|
'</div>'
|
|
].join(''))
|
|
});
|
|
this.btnBeginStyleMenu = (new Common.UI.Menu({
|
|
style: 'min-width: 105px;',
|
|
items: [
|
|
{ template: _.template('<div id="shape-advanced-menu-begin-style" style="width: 105px; margin: 0 5px;"></div>') }
|
|
]
|
|
})).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('<div id="<%= id %>" class="item-arrow" style="background-position: -<%= offsetx %>px -<%= offsety %>px;"></div>')
|
|
});
|
|
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([
|
|
'<div class="input-group combobox combo-dataview-menu input-group-nr dropdown-toggle combo-arrow-style" data-toggle="dropdown">',
|
|
'<div class="form-control image" style="width: 100px;"></div>',
|
|
'<div style="display: table-cell;"></div>',
|
|
'<button type="button" class="btn btn-default"><span class="caret img-commonctrl"></span></button>',
|
|
'</div>'
|
|
].join(''))
|
|
});
|
|
this.btnBeginSizeMenu = (new Common.UI.Menu({
|
|
style: 'min-width: 160px;',
|
|
items: [
|
|
{ template: _.template('<div id="shape-advanced-menu-begin-size" style="width: 160px; margin: 0 5px;"></div>') }
|
|
]
|
|
})).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('<div id="<%= id %>" class="item-arrow" style="background-position: -<%= offsetx %>px -<%= offsety %>px;"></div>')
|
|
});
|
|
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([
|
|
'<div class="input-group combobox combo-dataview-menu input-group-nr dropdown-toggle combo-arrow-style" data-toggle="dropdown">',
|
|
'<div class="form-control image" style="width: 100px;"></div>',
|
|
'<div style="display: table-cell;"></div>',
|
|
'<button type="button" class="btn btn-default"><span class="caret img-commonctrl"></span></button>',
|
|
'</div>'
|
|
].join(''))
|
|
});
|
|
this.btnEndStyleMenu = (new Common.UI.Menu({
|
|
style: 'min-width: 105px;',
|
|
items: [
|
|
{ template: _.template('<div id="shape-advanced-menu-end-style" style="width: 105px; margin: 0 5px;"></div>') }
|
|
]
|
|
})).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('<div id="<%= id %>" class="item-arrow" style="background-position: -<%= offsetx %>px -<%= offsety %>px;"></div>')
|
|
});
|
|
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([
|
|
'<div class="input-group combobox combo-dataview-menu input-group-nr dropdown-toggle combo-arrow-style" data-toggle="dropdown">',
|
|
'<div class="form-control image" style="width: 100px;"></div>',
|
|
'<div style="display: table-cell;"></div>',
|
|
'<button type="button" class="btn btn-default"><span class="caret img-commonctrl"></span></button>',
|
|
'</div>'
|
|
].join(''))
|
|
});
|
|
this.btnEndSizeMenu = (new Common.UI.Menu({
|
|
style: 'min-width: 160px;',
|
|
items: [
|
|
{ template: _.template('<div id="shape-advanced-menu-end-size" style="width: 160px; margin: 0 5px;"></div>') }
|
|
]
|
|
})).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('<div id="<%= id %>" class="item-arrow" style="background-position: -<%= offsetx %>px -<%= offsety %>px;"></div>')
|
|
});
|
|
this.mnuEndSizePicker.on('item:click', _.bind(this.onSelectEndSize, this));
|
|
this._selectStyleItem(this.btnEndSize, null);
|
|
|
|
this.on('show', function(obj) {
|
|
obj.getChild('.footer .primary').focus();
|
|
});
|
|
|
|
this.afterRender();
|
|
},
|
|
|
|
afterRender: function() {
|
|
this.updateMetricUnit();
|
|
this._setDefaults(this._originalProps);
|
|
},
|
|
|
|
_setDefaults: function(props) {
|
|
if (props && props.asc_getShapeProperties()){
|
|
var shapeprops = props.asc_getShapeProperties();
|
|
|
|
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 = Common.localStorage.getItem("sse-settings-shaperatio");
|
|
if (value!==null && parseInt(value) == 1) {
|
|
this.btnRatio.toggle(true);
|
|
}
|
|
|
|
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[2].setDisabled(null === margins); // Margins
|
|
|
|
this._changedProps = new Asc.asc_CImgProperty();
|
|
}
|
|
},
|
|
|
|
getSettings: function() {
|
|
Common.localStorage.setItem("sse-settings-shaperatio", (this.btnRatio.pressed) ? 1 : 0);
|
|
return { shapeProps: this._changedProps} ;
|
|
},
|
|
|
|
_setShapeDefaults: function(props) {
|
|
if (props ){
|
|
var stroke = props.asc_getStroke();
|
|
if (stroke) {
|
|
var value = stroke.asc_getLinejoin();
|
|
for (var i=0; i<this._arrJoinType.length; i++) {
|
|
if (value == this._arrJoinType[i].value) {
|
|
this.cmbJoinType.setValue(value);
|
|
break;
|
|
}
|
|
}
|
|
|
|
value = stroke.asc_getLinecap();
|
|
for (i=0; i<this._arrCapType.length; i++) {
|
|
if (value == this._arrCapType[i].value) {
|
|
this.cmbCapType.setValue(value);
|
|
break;
|
|
}
|
|
}
|
|
|
|
var canchange = stroke.asc_getCanChangeArrows();
|
|
this.btnBeginStyle.setDisabled(!canchange);
|
|
this.btnEndStyle.setDisabled(!canchange);
|
|
this.btnBeginSize.setDisabled(!canchange);
|
|
this.btnEndSize.setDisabled(!canchange);
|
|
|
|
if (canchange) {
|
|
value = stroke.asc_getLinebeginsize();
|
|
var rec = this.mnuBeginSizePicker.store.findWhere({type: value});
|
|
|
|
if (rec) {
|
|
this._beginSizeIdx = rec.get('value');
|
|
} else {
|
|
this._beginSizeIdx = null;
|
|
this._selectStyleItem(this.btnBeginSize, null);
|
|
}
|
|
|
|
value = stroke.asc_getLinebeginstyle();
|
|
rec = this.mnuBeginStylePicker.store.findWhere({type: value});
|
|
if (rec) {
|
|
this.mnuBeginStylePicker.selectRecord(rec, true);
|
|
this._updateSizeArr(this.btnBeginSize, this.mnuBeginSizePicker, rec, this._beginSizeIdx);
|
|
this._selectStyleItem(this.btnBeginStyle, rec);
|
|
} else
|
|
this._selectStyleItem(this.btnBeginStyle, null);
|
|
|
|
value = stroke.asc_getLineendsize();
|
|
rec = this.mnuEndSizePicker.store.findWhere({type: value});
|
|
if (rec) {
|
|
this._endSizeIdx = rec.get('value');
|
|
} else {
|
|
this._endSizeIdx = null;
|
|
this._selectStyleItem(this.btnEndSize, null);
|
|
}
|
|
|
|
value = stroke.asc_getLineendstyle();
|
|
rec = this.mnuEndStylePicker.store.findWhere({type: value});
|
|
if (rec) {
|
|
this.mnuEndStylePicker.selectRecord(rec, true);
|
|
this._updateSizeArr(this.btnEndSize, this.mnuEndSizePicker, rec, this._endSizeIdx);
|
|
this._selectStyleItem(this.btnEndStyle, rec);
|
|
} else
|
|
this._selectStyleItem(this.btnEndStyle, null);
|
|
} else {
|
|
this._selectStyleItem(this.btnBeginStyle);
|
|
this._selectStyleItem(this.btnEndStyle);
|
|
this._selectStyleItem(this.btnBeginSize);
|
|
this._selectStyleItem(this.btnEndSize);
|
|
}
|
|
}
|
|
}
|
|
},
|
|
|
|
updateMetricUnit: function() {
|
|
if (this.spinners) {
|
|
for (var i=0; i<this.spinners.length; i++) {
|
|
var spinner = this.spinners[i];
|
|
spinner.setDefaultUnit(Common.Utils.Metric.metricName[Common.Utils.Metric.getCurrentMetric()]);
|
|
spinner.setStep(Common.Utils.Metric.getCurrentMetric()==Common.Utils.Metric.c_MetricUnits.cm ? 0.01 : 1);
|
|
}
|
|
}
|
|
this.sizeMax = {
|
|
width: Common.Utils.Metric.fnRecalcFromMM(this.options.sizeMax.width*10),
|
|
height: Common.Utils.Metric.fnRecalcFromMM(this.options.sizeMax.height*10)
|
|
};
|
|
if (this.options.sizeOriginal)
|
|
this.sizeOriginal = {
|
|
width: Common.Utils.Metric.fnRecalcFromMM(this.options.sizeOriginal.width),
|
|
height: Common.Utils.Metric.fnRecalcFromMM(this.options.sizeOriginal.height)
|
|
};
|
|
},
|
|
|
|
_updateSizeArr: function(combo, picker, record, sizeidx) {
|
|
if (record.get('value')>0) {
|
|
picker.store.each( function(rec){
|
|
rec.set({offsetx: record.get('value')*80 + 10});
|
|
}, this);
|
|
combo.setDisabled(false);
|
|
if (sizeidx !== null) {
|
|
picker.selectByIndex(sizeidx, true);
|
|
this._selectStyleItem(combo, picker.store.at(sizeidx));
|
|
} else
|
|
this._selectStyleItem(combo, null);
|
|
} else {
|
|
this._selectStyleItem(combo, null);
|
|
combo.setDisabled(true);
|
|
}
|
|
},
|
|
|
|
_selectStyleItem: function(combo, record) {
|
|
var formcontrol = $(combo.el).find('.form-control');
|
|
formcontrol.css('background-position', ((record) ? (-record.get('offsetx')+20) + 'px' : '0') + ' ' + ((record) ? '-' + record.get('offsety') + 'px' : '-30px'));
|
|
},
|
|
|
|
onSelectBeginStyle: function(picker, view, 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_putLinebeginstyle(record.get('type'));
|
|
}
|
|
if (this._beginSizeIdx===null || this._beginSizeIdx===undefined)
|
|
this._beginSizeIdx = 4;
|
|
this._updateSizeArr(this.btnBeginSize, this.mnuBeginSizePicker, record, this._beginSizeIdx);
|
|
this._selectStyleItem(this.btnBeginStyle, record);
|
|
},
|
|
|
|
onSelectBeginSize: function(picker, view, 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_putLinebeginsize(record.get('type'));
|
|
}
|
|
this._beginSizeIdx = record.get('value');
|
|
this._selectStyleItem(this.btnBeginSize, record);
|
|
},
|
|
|
|
onSelectEndStyle: function(picker, view, 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_putLineendstyle(record.get('type'));
|
|
}
|
|
if (this._endSizeIdx===null || this._endSizeIdx===undefined)
|
|
this._endSizeIdx = 4;
|
|
this._updateSizeArr(this.btnEndSize, this.mnuEndSizePicker, record, this._endSizeIdx);
|
|
this._selectStyleItem(this.btnEndStyle, record);
|
|
},
|
|
|
|
onSelectEndSize: function(picker, view, 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_putLineendsize(record.get('type'));
|
|
}
|
|
this._endSizeIdx = record.get('value');
|
|
this._selectStyleItem(this.btnEndSize, record);
|
|
},
|
|
|
|
textTop: 'Top',
|
|
textLeft: 'Left',
|
|
textBottom: 'Bottom',
|
|
textRight: 'Right',
|
|
textSize: 'Size',
|
|
textWidth: 'Width',
|
|
textHeight: 'Height',
|
|
textKeepRatio: 'Constant Proportions',
|
|
cancelButtonText: 'Cancel',
|
|
okButtonText: 'Ok',
|
|
textTitle: 'Shape - Advanced Settings',
|
|
strMargins: 'Text Padding',
|
|
textRound: 'Round',
|
|
textMiter: 'Miter',
|
|
textSquare: 'Square',
|
|
textFlat: 'Flat',
|
|
textBevel: 'Bevel',
|
|
textArrows: 'Arrows',
|
|
textLineStyle: 'Line Style',
|
|
textCapType: 'Cap Type',
|
|
textJoinType: 'Join Type',
|
|
textBeginStyle: 'Begin Style',
|
|
textBeginSize: 'Begin Size',
|
|
textEndStyle: 'End Style',
|
|
textEndSize: 'End Size',
|
|
textWeightArrows: 'Weights & Arrows'
|
|
|
|
}, SSE.Views.ShapeSettingsAdvanced || {}));
|
|
}); |