web-apps/apps/spreadsheeteditor/main/app/view/CellSettings.js

1298 lines
65 KiB
JavaScript
Raw Normal View History

/*
*
* (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
*
*/
/**
* CellSettings.js
*
* Created by Julia Radzhabova on 6/08/18
* Copyright (c) 2018 Ascensio System SIA. All rights reserved.
*
*/
define([
'text!spreadsheeteditor/main/app/template/CellSettings.template',
'jquery',
'underscore',
'backbone',
'common/main/lib/component/Button',
'common/main/lib/component/ThemeColorPalette',
'common/main/lib/component/ColorButton',
'common/main/lib/component/ComboBorderSize',
'common/main/lib/view/OpenDialog'
], function (menuTemplate, $, _, Backbone) {
'use strict';
SSE.Views.CellSettings = Backbone.View.extend(_.extend({
el: '#id-cell-settings',
// Compile our stats template
template: _.template(menuTemplate),
// Delegated events for creating new items, and clearing completed ones.
events: {
},
options: {
alias: 'CellSettings'
},
initialize: function () {
this._initSettings = true;
2019-08-19 13:22:02 +00:00
this._noApply = true;
this._state = {
2019-02-13 11:08:18 +00:00
DisabledControls: true,
2019-08-13 12:31:33 +00:00
DisabledFillPanels: false,
CellAngle: undefined,
2019-08-19 13:22:02 +00:00
GradFillType: Asc.c_oAscFillGradType.GRAD_LINEAR,
2019-09-18 08:33:24 +00:00
CellColor: 'transparent',
FillType: Asc.c_oAscFill.FILL_TYPE_NOFILL,
2019-08-19 13:22:02 +00:00
FGColor: '000000',
BGColor: 'ffffff',
GradColor: '000000'
};
this.lockedControls = [];
this._locked = true;
this.isEditCell = false;
this.BorderType = 1;
2019-09-18 08:33:24 +00:00
this.GradFillType = Asc.c_oAscFillGradType.GRAD_LINEAR;
2019-08-19 13:22:02 +00:00
this.GradLinearDirectionType = 0;
this.GradRadialDirectionIdx = 0;
this.GradColor = { values: [0, 100], colors: ['000000', 'ffffff'], currentIdx: 0};
2019-08-13 12:31:33 +00:00
this.fillControls = [];
this.render();
this.createDelayedControls();
2019-08-13 12:31:33 +00:00
this.FillColorContainer = $('#cell-panel-color-fill');
this.FillPatternContainer = $('#cell-panel-pattern-fill');
this.FillGradientContainer = $('#cell-panel-gradient-fill');
},
onColorsBackSelect: function(btn, color) {
if (this.api) {
this.api.asc_setCellBackgroundColor(color == 'transparent' ? null : Common.Utils.ThemeColor.getRgbColor(color));
}
Common.NotificationCenter.trigger('edit:complete', this);
},
onBtnBordersClick: function(btn, eOpts){
if (this.api) {
var new_borders = [],
bordersWidth = this.BorderType,
bordersColor = Common.Utils.ThemeColor.getRgbColor(this.btnBorderColor.color);
if (btn.options.borderId == 'inner') {
new_borders[Asc.c_oAscBorderOptions.InnerV] = new Asc.asc_CBorder(bordersWidth, bordersColor);
new_borders[Asc.c_oAscBorderOptions.InnerH] = new Asc.asc_CBorder(bordersWidth, bordersColor);
} else if (btn.options.borderId == 'all') {
new_borders[Asc.c_oAscBorderOptions.InnerV] = new Asc.asc_CBorder(bordersWidth, bordersColor);
new_borders[Asc.c_oAscBorderOptions.InnerH] = new Asc.asc_CBorder(bordersWidth, bordersColor);
new_borders[Asc.c_oAscBorderOptions.Left] = new Asc.asc_CBorder(bordersWidth, bordersColor);
new_borders[Asc.c_oAscBorderOptions.Top] = new Asc.asc_CBorder(bordersWidth, bordersColor);
new_borders[Asc.c_oAscBorderOptions.Right] = new Asc.asc_CBorder(bordersWidth, bordersColor);
new_borders[Asc.c_oAscBorderOptions.Bottom] = new Asc.asc_CBorder(bordersWidth, bordersColor);
} else if (btn.options.borderId == 'outer') {
new_borders[Asc.c_oAscBorderOptions.Left] = new Asc.asc_CBorder(bordersWidth, bordersColor);
new_borders[Asc.c_oAscBorderOptions.Top] = new Asc.asc_CBorder(bordersWidth, bordersColor);
new_borders[Asc.c_oAscBorderOptions.Right] = new Asc.asc_CBorder(bordersWidth, bordersColor);
new_borders[Asc.c_oAscBorderOptions.Bottom] = new Asc.asc_CBorder(bordersWidth, bordersColor);
} else if (btn.options.borderId != 'none') {
new_borders[btn.options.borderId] = new Asc.asc_CBorder(bordersWidth, bordersColor);
}
this.api.asc_setCellBorders(new_borders);
}
Common.NotificationCenter.trigger('edit:complete', this);
},
onBorderTypeSelect: function(combo, record) {
this.BorderType = record.value;
},
2019-02-13 11:08:18 +00:00
onAngleChange: function(field, newValue, oldValue, eOpts) {
this.api && this.api.asc_setCellAngle(field.getNumberValue());
},
render: function () {
var el = $(this.el);
el.html(this.template({
scope: this
}));
},
setApi: function(o) {
this.api = o;
if (o) {
this.api.asc_registerCallback('asc_onEditCell', this.onApiEditCell.bind(this));
}
return this;
},
createDelayedControls: function() {
2019-08-13 12:31:33 +00:00
var me = this;
this._arrFillSrc = [
{displayValue: this.textColor, value: Asc.c_oAscFill.FILL_TYPE_SOLID},
{displayValue: this.textGradientFill, value: Asc.c_oAscFill.FILL_TYPE_GRAD},
{displayValue: this.textPatternFill, value: Asc.c_oAscFill.FILL_TYPE_PATT},
{displayValue: this.textNoFill, value: Asc.c_oAscFill.FILL_TYPE_NOFILL}
];
this.cmbFillSrc = new Common.UI.ComboBox({
el: $('#cell-combo-fill-src'),
cls: 'input-group-nr',
style: 'width: 100%;',
menuStyle: 'min-width: 100%;',
editable: false,
data: this._arrFillSrc
});
this.cmbFillSrc.setValue(Asc.c_oAscFill.FILL_TYPE_NOFILL);
2019-08-13 12:31:33 +00:00
this.fillControls.push(this.cmbFillSrc);
this.cmbFillSrc.on('selected', _.bind(this.onFillSrcSelect, this));
this.numGradientAngle = new Common.UI.MetricSpinner({
el: $('#cell-spin-gradient-angle'),
step: 10,
width: 90,
defaultUnit : "°",
value: '0 °',
allowDecimal: true,
maxValue: 359.9,
minValue: 0,
disabled: this._locked
});
this.lockedControls.push(this.numGradientAngle);
this.numGradientAngle.on('change', _.bind(this.onGradientAngleChange, this));
this.numGradientAngle.on('inputleave', function(){ Common.NotificationCenter.trigger('edit:complete', me);});
/*this._arrGradType = [
2019-08-13 12:31:33 +00:00
{displayValue: this.textLinear, value: Asc.c_oAscFillGradType.GRAD_LINEAR},
{displayValue: this.textRadial, value: Asc.c_oAscFillGradType.GRAD_PATH}
];
this.cmbGradType = new Common.UI.ComboBox({
el: $('#cell-combo-grad-type'),
cls: 'input-group-nr',
menuStyle: 'min-width: 90px;',
editable: false,
data: this._arrGradType
});
this.cmbGradType.setValue(this._arrGradType[0].value);
this.fillControls.push(this.cmbGradType);
this.cmbGradType.on('selected', _.bind(this.onGradTypeSelect, this));*/
2019-08-13 12:31:33 +00:00
this._viewDataLinear = [
{ offsetx: 0, offsety: 0, type:45, subtype:-1, iconcls:'gradient-left-top' },
{ offsetx: 50, offsety: 0, type:90, subtype:4, iconcls:'gradient-top'},
{ offsetx: 100, offsety: 0, type:135, subtype:5, iconcls:'gradient-right-top'},
{ offsetx: 0, offsety: 50, type:0, subtype:6, iconcls:'gradient-left', cls: 'item-gradient-separator', selected: true},
{ offsetx: 100, offsety: 50, type:180, subtype:1, iconcls:'gradient-right'},
{ offsetx: 0, offsety: 100, type:315, subtype:2, iconcls:'gradient-left-bottom'},
{ offsetx: 50, offsety: 100, type:270, subtype:3, iconcls:'gradient-bottom'},
{ offsetx: 100, offsety: 100, type:225, subtype:7, iconcls:'gradient-right-bottom'}
];
this.btnDirection = new Common.UI.Button({
cls : 'btn-large-dataview',
iconCls : 'item-gradient gradient-left',
menu : new Common.UI.Menu({
style: 'min-width: 60px;',
menuAlign: 'tr-br',
items: [
{ template: _.template('<div id="id-cell-menu-direction" style="width: 175px; margin: 0 5px;"></div>') }
]
})
});
this.btnDirection.on('render:after', function(btn) {
me.mnuDirectionPicker = new Common.UI.DataView({
el: $('#id-cell-menu-direction'),
parentMenu: btn.menu,
restoreHeight: 174,
store: new Common.UI.DataViewStore(me._viewDataLinear),
itemTemplate: _.template('<div id="<%= id %>" class="item-gradient" style="background-position: -<%= offsetx %>px -<%= offsety %>px;"></div>')
});
});
this.btnDirection.render($('#cell-button-direction'));
this.fillControls.push(this.btnDirection);
this.mnuDirectionPicker.on('item:click', _.bind(this.onSelectGradient, this, this.btnDirection));
this.sldrGradient = new Common.UI.MultiSliderGradient({
el: $('#cell-slider-gradient'),
width: 192,
minValue: 0,
maxValue: 100,
values: [0, 100]
});
this.sldrGradient.on('change', _.bind(this.onGradientChange, this));
this.sldrGradient.on('changecomplete', _.bind(this.onGradientChangeComplete, this));
this.sldrGradient.on('thumbclick', function(cmp, index){
me.GradColor.currentIdx = index;
var color = me.GradColor.colors[me.GradColor.currentIdx];
me.btnGradColor.setColor(color);
me.colorsGrad.select(color,false);
me.spnGradPosition.setValue(me.GradColor.values[me.GradColor.currentIdx]);
});
this.sldrGradient.on('thumbdblclick', function(cmp){
me.btnGradColor.cmpEl.find('button').dropdown('toggle');
});
this.sldrGradient.on('sortthumbs', function(cmp, recalc_indexes){
var colors = [],
currentIdx;
_.each (recalc_indexes, function(recalc_index, index) {
colors.push(me.GradColor.colors[recalc_index]);
if (me.GradColor.currentIdx == recalc_index)
currentIdx = index;
});
me.OriginalFillType = null;
me.GradColor.colors = colors;
me.GradColor.currentIdx = currentIdx;
});
this.sldrGradient.on('addthumb', function(cmp, index, nearIndex, color){
me.GradColor.colors[index] = me.GradColor.colors[nearIndex];
me.GradColor.currentIdx = index;
me.sldrGradient.addNewThumb(index, color);
});
this.sldrGradient.on('removethumb', function(cmp, index){
me.sldrGradient.removeThumb(index);
me.GradColor.values.splice(index, 1);
me.sldrGradient.changeGradientStyle();
});
this.fillControls.push(this.sldrGradient);
2019-08-13 12:31:33 +00:00
this.cmbPattern = new Common.UI.ComboDataView({
itemWidth: 28,
itemHeight: 28,
menuMaxHeight: 300,
enableKeyEvents: true,
cls: 'combo-pattern'
});
this.cmbPattern.menuPicker.itemTemplate = this.cmbPattern.fieldPicker.itemTemplate = _.template([
'<div class="style" id="<%= id %>">',
'<img src="data:image/gif;base64,R0lGODlhAQABAID/AMDAwAAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==" class="combo-pattern-item" ',
'width="' + this.cmbPattern.itemWidth + '" height="' + this.cmbPattern.itemHeight + '" ',
'style="background-position: -<%= offsetx %>px -<%= offsety %>px;"/>',
'</div>'
].join(''));
this.cmbPattern.render($('#cell-combo-pattern'));
this.cmbPattern.openButton.menu.cmpEl.css({
'min-width': 178,
'max-width': 178
});
this.cmbPattern.on('click', _.bind(this.onPatternSelect, this));
this.cmbPattern.openButton.menu.on('show:after', function () {
me.cmbPattern.menuPicker.scroller.update({alwaysVisibleY: true});
});
this.fillControls.push(this.cmbPattern);
var global_hatch_menu_map = [
2019-08-21 09:07:05 +00:00
-1,-1,-1,-1,-1,
2019-08-13 13:31:24 +00:00
-1,-1,-1,-1,8,
9,10,11,-1,-1,
2019-08-21 09:07:05 +00:00
-1,21,-1,-1,-1,
2019-08-13 13:31:24 +00:00
-1,20,22,23,-1,
-1,27,28,29,30,
-1,-1,33,-1,35,
-1,-1,-1,-1,-1,
41,-1,43,-1,-1,
46,-1,-1,-1,-1
2019-08-13 12:31:33 +00:00
];
this.patternViewData = [];
2019-08-13 13:31:24 +00:00
var idx = 0;
2019-08-13 12:31:33 +00:00
for (var i=0; i<13; i++) {
for (var j=0; j<4; j++) {
var num = i*4+j;
2019-08-13 13:31:24 +00:00
if (global_hatch_menu_map[num]>-1)
this.patternViewData[idx++] = {offsetx: j*28, offsety: i*28, type: global_hatch_menu_map[num]};
2019-08-13 12:31:33 +00:00
}
}
for ( var i=0; i<this.patternViewData.length; i++ ) {
this.patternViewData[i].id = Common.UI.getId();
}
this.cmbPattern.menuPicker.store.add(this.patternViewData);
if (this.cmbPattern.menuPicker.store.length > 0) {
this.cmbPattern.fillComboView(this.cmbPattern.menuPicker.store.at(0),true);
this.PatternFillType = this.patternViewData[0].type;
}
var _arrBorderPosition = [
[Asc.c_oAscBorderOptions.Left, 'toolbar__icon btn-border-left', 'cell-button-border-left', this.tipLeft],
[Asc.c_oAscBorderOptions.InnerV,'toolbar__icon btn-border-insidevert', 'cell-button-border-inner-vert',this.tipInnerVert],
[Asc.c_oAscBorderOptions.Right, 'toolbar__icon btn-border-right', 'cell-button-border-right', this.tipRight],
[Asc.c_oAscBorderOptions.Top, 'toolbar__icon btn-border-top', 'cell-button-border-top', this.tipTop],
[Asc.c_oAscBorderOptions.InnerH,'toolbar__icon btn-border-insidehor', 'cell-button-border-inner-hor', this.tipInnerHor],
[Asc.c_oAscBorderOptions.Bottom,'toolbar__icon btn-border-bottom', 'cell-button-border-bottom', this.tipBottom],
[Asc.c_oAscBorderOptions.DiagU, 'toolbar__icon btn-border-diagup', 'cell-button-border-diagu', this.tipDiagU],
[Asc.c_oAscBorderOptions.DiagD, 'toolbar__icon btn-border-diagdown', 'cell-button-border-diagd', this.tipDiagD],
['inner', 'toolbar__icon btn-border-inside', 'cell-button-border-inner', this.tipInner],
['outer', 'toolbar__icon btn-border-out', 'cell-button-border-outer', this.tipOuter],
['all', 'toolbar__icon btn-border-all', 'cell-button-border-all', this.tipAll],
['none', 'toolbar__icon btn-border-no', 'cell-button-border-none', this.tipNone]
];
_.each(_arrBorderPosition, function(item, index, list){
var _btn = new Common.UI.Button({
2020-04-29 07:36:53 +00:00
parentEl: $('#'+item[2]),
cls: 'btn-toolbar borders--small',
iconCls: item[1],
borderId:item[0],
hint: item[3],
disabled: this._locked
});
_btn.on('click', _.bind(this.onBtnBordersClick, this));
this.lockedControls.push(_btn);
}, this);
this.cmbBorderType = new Common.UI.ComboBorderType({
el: $('#cell-combo-border-type'),
2018-06-14 13:36:27 +00:00
cls: 'cell-border-type',
style: "width: 93px;",
menuStyle: 'min-width: 93px;',
disabled: this._locked,
data: [
{ value: Asc.c_oAscBorderStyles.Thin, offsety: 0},
{ value: Asc.c_oAscBorderStyles.Hair, offsety: 20},
{ value: Asc.c_oAscBorderStyles.Dotted, offsety: 40},
{ value: Asc.c_oAscBorderStyles.Dashed, offsety: 60},
{ value: Asc.c_oAscBorderStyles.DashDot, offsety: 80},
{ value: Asc.c_oAscBorderStyles.DashDotDot, offsety: 100},
{ value: Asc.c_oAscBorderStyles.Medium, offsety: 120},
{ value: Asc.c_oAscBorderStyles.MediumDashed, offsety: 140},
{ value: Asc.c_oAscBorderStyles.MediumDashDot, offsety: 160},
{ value: Asc.c_oAscBorderStyles.MediumDashDotDot, offsety: 180},
{ value: Asc.c_oAscBorderStyles.Thick, offsety: 200}
]
}).on('selected', _.bind(this.onBorderTypeSelect, this));
this.BorderType = Asc.c_oAscBorderStyles.Thin;
this.cmbBorderType.setValue(this.BorderType);
this.lockedControls.push(this.cmbBorderType);
this.btnBorderColor = new Common.UI.ColorButton({
parentEl: $('#cell-border-color-btn'),
disabled: this._locked,
2020-04-30 12:11:03 +00:00
menu : true,
color: '000000'
});
this.lockedControls.push(this.btnBorderColor);
this.btnBackColor = new Common.UI.ColorButton({
parentEl: $('#cell-back-color-btn'),
disabled: this._locked,
menu : true,
2020-04-30 12:11:03 +00:00
transparent : true,
color: 'transparent'
});
this.lockedControls.push(this.btnBackColor);
2019-02-13 11:08:18 +00:00
this.spnAngle = new Common.UI.MetricSpinner({
el: $('#cell-spin-angle'),
step: 1,
width: 60,
defaultUnit : "°",
value: '0 °',
allowDecimal: false,
2019-02-13 11:08:18 +00:00
maxValue: 90,
2019-04-19 14:25:35 +00:00
minValue: -90,
disabled: this._locked
2019-02-13 11:08:18 +00:00
});
this.lockedControls.push(this.spnAngle);
this.spnAngle.on('change', _.bind(this.onAngleChange, this));
this.spnAngle.on('inputleave', function(){ Common.NotificationCenter.trigger('edit:complete', me);});
this.spnGradPosition = new Common.UI.MetricSpinner({
el: $('#cell-gradient-position'),
step: 1,
width: 60,
defaultUnit : "%",
value: '50 %',
allowDecimal: false,
maxValue: 100,
minValue: 0,
disabled: this._locked
});
this.lockedControls.push(this.spnGradPosition);
this.spnGradPosition.on('change', _.bind(this.onPositionChange, this));
this.spnGradPosition.on('inputleave', function(){ Common.NotificationCenter.trigger('edit:complete', me);});
this.btnAddGradientStep = new Common.UI.Button({
parentEl: $('#cell-gradient-add-step'),
cls: 'btn-toolbar',
iconCls: 'toolbar__icon btn-add-breakpoint',
disabled: this._locked,
hint: this.tipAddGradientPoint,
});
this.btnAddGradientStep.on('click', _.bind(this.onAddGradientStep, this));
this.lockedControls.push(this.btnAddGradientStep);
this.btnRemoveGradientStep = new Common.UI.Button({
parentEl: $('#cell-gradient-remove-step'),
cls: 'btn-toolbar',
iconCls: 'toolbar__icon btn-remove-breakpoint',
disabled: this._locked,
hint: this.tipRemoveGradientPoint
});
this.btnRemoveGradientStep.on('click', _.bind(this.onRemoveGradientStep, this));
this.lockedControls.push(this.btnRemoveGradientStep);
this.chWrap = new Common.UI.CheckBox({
el: $('#cell-checkbox-wrap'),
labelText: this.strWrap,
disabled: this._locked
});
this.lockedControls.push(this.chWrap);
this.chWrap.on('change', this.onWrapChange.bind(this));
this.chShrink = new Common.UI.CheckBox({
el: $('#cell-checkbox-shrink'),
labelText: this.strShrink,
disabled: this._locked
});
this.lockedControls.push(this.chShrink);
this.chShrink.on('change', this.onShrinkChange.bind(this));
},
createDelayedElements: function() {
this.UpdateThemeColors();
this._initSettings = false;
},
ChangeSettings: function(props) {
2019-08-21 11:51:31 +00:00
var me = this;
if (this._initSettings)
this.createDelayedElements();
this.disableControls(this._locked);
2019-11-13 08:29:49 +00:00
if (props ) {
2019-08-19 13:22:02 +00:00
this._noApply = true;
2020-05-15 10:52:52 +00:00
var xfs = props.asc_getXfs(),
value = xfs.asc_getAngle();
2019-11-13 08:29:49 +00:00
if (Math.abs(this._state.CellAngle - value) > 0.1 || (this._state.CellAngle === undefined) && (this._state.CellAngle !== value)) {
2020-05-28 11:55:56 +00:00
this.spnAngle.setValue((value !== null) ? (value==255 ? 0 : value) : '', true);
2019-11-13 08:29:49 +00:00
this._state.CellAngle = value;
2019-08-19 13:22:02 +00:00
}
value = xfs.asc_getWrapText();
if ( this._state.Wrap!==value ) {
this.chWrap.setValue((value !== null && value !== undefined) ? value : 'indeterminate', true);
this._state.Wrap=value;
}
this.chWrap.setDisabled(xfs.asc_getHorAlign() == AscCommon.align_Justify || this._locked);
value = xfs.asc_getShrinkToFit();
if ( this._state.Shrink!==value ) {
this.chShrink.setValue((value !== null && value !== undefined) ? value : 'indeterminate', true);
this._state.Shrink=value;
}
this.chShrink.setDisabled((this.chWrap.getValue()=='checked') || this._locked);
2020-05-15 10:52:52 +00:00
this.fill = xfs.asc_getFill();
2019-11-13 08:29:49 +00:00
if (this.fill) {
this.pattern = this.fill.asc_getPatternFill();
this.gradient = this.fill.asc_getGradientFill();
if (this.pattern === null && this.gradient === null) {
this.CellColor = {Value: 0, Color: 'transparent'};
this.FGColor = {Value: 1, Color: {color: '4f81bd', effectId: 24}};
2019-08-20 09:55:55 +00:00
this.BGColor = {Value: 1, Color: 'ffffff'};
this.sldrGradient.setThumbs(2);
this.GradColor.colors.length = 0;
this.GradColor.values.length = 0;
this.GradColor.colors[0] = {color: '4f81bd', effectId: 24};
this.GradColor.colors[1] = 'ffffff';
this.GradColor.values = [0, 100];
this.GradColor.currentIdx = 0;
2019-12-03 08:08:17 +00:00
this.OriginalFillType = Asc.c_oAscFill.FILL_TYPE_NOFILL;
2019-11-13 08:29:49 +00:00
} else if (this.pattern !== null) {
if (this.pattern.asc_getType() === -1) {
var color = this.pattern.asc_getFgColor();
2020-03-04 12:00:00 +00:00
if (color) {
if (color.asc_getType() == Asc.c_oAscColor.COLOR_TYPE_SCHEME) {
this.CellColor = {
Value: 1,
Color: {
color: Common.Utils.ThemeColor.getHexColor(color.asc_getR(), color.asc_getG(), color.asc_getB()),
effectValue: color.asc_getValue()
}
};
} else {
this.CellColor = {
Value: 1,
Color: Common.Utils.ThemeColor.getHexColor(color.asc_getR(), color.asc_getG(), color.asc_getB())
};
}
this.FGColor = {
2019-11-13 08:29:49 +00:00
Value: 1,
2020-03-04 12:00:00 +00:00
Color: Common.Utils.ThemeColor.colorValue2EffectId(this.CellColor.Color)
2019-11-13 08:29:49 +00:00
};
2019-08-19 13:22:02 +00:00
} else {
2020-03-04 12:00:00 +00:00
this.FGColor = this.CellColor = {Value: 1, Color: 'ffffff'};
2019-08-19 13:22:02 +00:00
}
2020-03-04 12:00:00 +00:00
2019-08-19 13:22:02 +00:00
this.BGColor = {Value: 1, Color: 'ffffff'};
this.sldrGradient.setThumbs(2);
this.GradColor.colors.length = 0;
this.GradColor.values.length = 0;
this.GradColor.values = [0, 100];
this.GradColor.colors[0] = Common.Utils.ThemeColor.colorValue2EffectId(this.CellColor.Color);
this.GradColor.colors[1] = 'ffffff';
this.GradColor.currentIdx = 0;
this.OriginalFillType = Asc.c_oAscFill.FILL_TYPE_SOLID;
2019-08-19 13:22:02 +00:00
} else {
2019-11-13 08:29:49 +00:00
this.PatternFillType = this.pattern.asc_getType();
if (this._state.PatternFillType !== this.PatternFillType) {
this.cmbPattern.suspendEvents();
var rec = this.cmbPattern.menuPicker.store.findWhere({
type: this.PatternFillType
});
this.cmbPattern.menuPicker.selectRecord(rec);
this.cmbPattern.resumeEvents();
this._state.PatternFillType = this.PatternFillType;
}
var color = this.pattern.asc_getFgColor();
if (color) {
if (color.asc_getType() == Asc.c_oAscColor.COLOR_TYPE_SCHEME) {
this.FGColor = {
Value: 1,
Color: {
color: Common.Utils.ThemeColor.getHexColor(color.asc_getR(), color.asc_getG(), color.asc_getB()),
effectValue: color.asc_getValue()
}
};
} else {
this.FGColor = {
Value: 1,
Color: Common.Utils.ThemeColor.getHexColor(color.asc_getR(), color.asc_getG(), color.asc_getB())
};
}
} else
2020-03-04 12:15:45 +00:00
this.FGColor = {Value: 1, Color: {color: '000000', effectId: 24}};
2019-11-13 08:29:49 +00:00
color = this.pattern.asc_getBgColor();
if (color) {
if (color.asc_getType() == Asc.c_oAscColor.COLOR_TYPE_SCHEME) {
this.BGColor = {
Value: 1,
Color: {
color: Common.Utils.ThemeColor.getHexColor(color.asc_getR(), color.asc_getG(), color.asc_getB()),
effectValue: color.asc_getValue()
}
};
} else {
this.BGColor = {
Value: 1,
Color: Common.Utils.ThemeColor.getHexColor(color.asc_getR(), color.asc_getG(), color.asc_getB())
};
}
} else
this.BGColor = {Value: 1, Color: 'ffffff'};
this.CellColor = {
Value: 1,
Color: Common.Utils.ThemeColor.colorValue2EffectId(this.FGColor.Color)
};
this.sldrGradient.setThumbs(2);
this.GradColor.colors.length = 0;
this.GradColor.values.length = 0;
this.GradColor.values = [0, 100];
this.GradColor.colors[0] = Common.Utils.ThemeColor.colorValue2EffectId(this.FGColor.Color);
this.GradColor.colors[1] = 'ffffff';
this.GradColor.currentIdx = 0;
2019-11-13 08:29:49 +00:00
this.OriginalFillType = Asc.c_oAscFill.FILL_TYPE_PATT;
2019-08-19 13:22:02 +00:00
}
2019-11-13 08:29:49 +00:00
} else if (this.gradient !== null) {
var gradFillType = this.gradient.asc_getType();
if (this._state.GradFillType !== gradFillType || this.GradFillType !== gradFillType) {
this.GradFillType = gradFillType;
/*rec = undefined;
2019-11-13 08:29:49 +00:00
if (this.GradFillType == Asc.c_oAscFillGradType.GRAD_LINEAR || this.GradFillType == Asc.c_oAscFillGradType.GRAD_PATH) {
this.cmbGradType.setValue(this.GradFillType);
rec = this.cmbGradType.store.findWhere({value: this.GradFillType});
this.onGradTypeSelect(this.cmbGradType, rec.attributes);
} else {
this.cmbGradType.setValue('');
2019-08-19 13:22:02 +00:00
this.btnDirection.setIconCls('');
}*/
2019-11-13 08:29:49 +00:00
this._state.GradFillType = this.GradFillType;
2019-08-19 13:22:02 +00:00
}
2019-11-13 08:29:49 +00:00
if (this.GradFillType == Asc.c_oAscFillGradType.GRAD_LINEAR) {
var value = this.gradient.asc_getDegree();
if (Math.abs(this.GradLinearDirectionType - value) > 0.001) {
this.GradLinearDirectionType = value;
var record = this.mnuDirectionPicker.store.findWhere({type: value});
this.mnuDirectionPicker.selectRecord(record, true);
if (record)
this.btnDirection.setIconCls('item-gradient ' + record.get('iconcls'));
else
this.btnDirection.setIconCls('');
this.numGradientAngle.setValue(value);
2019-11-13 08:29:49 +00:00
}
2019-08-19 13:22:02 +00:00
}
var me = this;
2019-11-13 08:29:49 +00:00
var gradientStops;
gradientStops = this.gradient.asc_getGradientStops();
var length = gradientStops.length;
this.sldrGradient.setThumbs(length);
this.GradColor.colors.length = 0;
this.GradColor.values.length = 0;
2019-11-13 08:29:49 +00:00
gradientStops.forEach(function (color) {
var clr = color.asc_getColor(),
position = color.asc_getPosition();
me.GradColor.colors.push( clr.asc_getType() == Asc.c_oAscColor.COLOR_TYPE_SCHEME ?
{color: Common.Utils.ThemeColor.getHexColor(clr.asc_getR(), clr.asc_getG(), clr.asc_getB()), effectValue: clr.asc_getValue()} :
Common.Utils.ThemeColor.getHexColor(clr.asc_getR(), clr.asc_getG(), clr.asc_getB()));
me.GradColor.values.push(position*100);
2019-11-13 08:29:49 +00:00
});
for (var index=0; index<length; index++) {
me.sldrGradient.setColorValue(Common.Utils.String.format('#{0}', (typeof(me.GradColor.colors[index]) == 'object') ? me.GradColor.colors[index].color : me.GradColor.colors[index]), index);
me.sldrGradient.setValue(index, me.GradColor.values[index]);
2019-08-19 13:22:02 +00:00
}
if (_.isUndefined(me.GradColor.currentIdx) || me.GradColor.currentIdx >= me.GradColor.colors.length) {
me.GradColor.currentIdx = 0;
}
me.sldrGradient.setActiveThumb(me.GradColor.currentIdx);
// Step position
this.spnGradPosition.setValue(this.GradColor.values[this.GradColor.currentIdx]);
2019-11-13 08:29:49 +00:00
this.OriginalFillType = Asc.c_oAscFill.FILL_TYPE_GRAD;
this.FGColor = {
Value: 1,
Color: Common.Utils.ThemeColor.colorValue2EffectId(this.GradColor.colors[0])
2019-11-13 08:29:49 +00:00
};
this.BGColor = {Value: 1, Color: 'ffffff'};
this.CellColor = {
Value: 1,
Color: Common.Utils.ThemeColor.colorValue2EffectId(this.GradColor.colors[0])
2019-11-13 08:29:49 +00:00
};
}
2019-08-19 13:22:02 +00:00
2019-11-13 08:29:49 +00:00
if (this._state.FillType !== this.OriginalFillType) {
this.cmbFillSrc.setValue((this.OriginalFillType === null) ? '' : this.OriginalFillType);
this._state.FillType = this.OriginalFillType;
this.ShowHideElem(this.OriginalFillType);
}
2019-02-13 11:08:18 +00:00
2019-11-13 08:29:49 +00:00
// Color Back
var type1 = typeof (this.CellColor.Color),
type2 = typeof (this._state.CellColor);
if ((type1 !== type2) || (type1 == 'object' &&
(this.CellColor.Color.effectValue !== this._state.CellColor.effectValue || this._state.CellColor.color.indexOf(this.CellColor.Color) < 0)) ||
(type1 != 'object' && this._state.CellColor !== undefined && this._state.CellColor.indexOf(this.CellColor.Color) < 0)) {
this.btnBackColor.setColor(this.CellColor.Color);
if (_.isObject(this.CellColor.Color)) {
var isselected = false;
for (var i = 0; i < 10; i++) {
if (Common.Utils.ThemeColor.ThemeValues[i] == this.CellColor.Color.effectValue) {
this.colorsBack.select(this.CellColor.Color, true);
isselected = true;
break;
}
2019-08-19 13:22:02 +00:00
}
2019-11-13 08:29:49 +00:00
if (!isselected) this.colorsBack.clearSelection();
} else {
this.colorsBack.select(this.CellColor.Color, true);
2019-08-19 13:22:02 +00:00
}
2019-11-13 08:29:49 +00:00
this._state.CellColor = this.CellColor.Color;
}
2019-08-19 13:22:02 +00:00
2019-11-13 08:29:49 +00:00
// Pattern colors
type1 = typeof (this.FGColor.Color);
type2 = typeof (this._state.FGColor);
if ((type1 !== type2) || (type1 == 'object' &&
(this.FGColor.Color.effectValue !== this._state.FGColor.effectValue || this._state.FGColor.color.indexOf(this.FGColor.Color.color) < 0)) ||
(type1 != 'object' && this._state.FGColor.indexOf(this.FGColor.Color) < 0)) {
this.btnFGColor.setColor(this.FGColor.Color);
if (typeof (this.FGColor.Color) == 'object') {
var isselected = false;
for (var i = 0; i < 10; i++) {
if (Common.Utils.ThemeColor.ThemeValues[i] == this.FGColor.Color.effectValue) {
this.colorsFG.select(this.FGColor.Color, true);
isselected = true;
break;
}
2019-08-19 13:22:02 +00:00
}
2019-11-13 08:29:49 +00:00
if (!isselected) this.colorsFG.clearSelection();
} else
this.colorsFG.select(this.FGColor.Color, true);
2019-08-19 13:22:02 +00:00
2019-11-13 08:29:49 +00:00
this._state.FGColor = this.FGColor.Color;
}
2019-08-19 13:22:02 +00:00
2019-11-13 08:29:49 +00:00
type1 = typeof (this.BGColor.Color);
type2 = typeof (this._state.BGColor);
if ((type1 !== type2) || (type1 == 'object' &&
(this.BGColor.Color.effectValue !== this._state.BGColor.effectValue || this._state.BGColor.color.indexOf(this.BGColor.Color.color) < 0)) ||
(type1 != 'object' && this._state.BGColor.indexOf(this.BGColor.Color) < 0)) {
this.btnBGColor.setColor(this.BGColor.Color);
if (typeof (this.BGColor.Color) == 'object') {
var isselected = false;
for (var i = 0; i < 10; i++) {
if (Common.Utils.ThemeColor.ThemeValues[i] == this.BGColor.Color.effectValue) {
this.colorsBG.select(this.BGColor.Color, true);
isselected = true;
break;
}
2019-08-19 13:22:02 +00:00
}
2019-11-13 08:29:49 +00:00
if (!isselected) this.colorsBG.clearSelection();
} else
this.colorsBG.select(this.BGColor.Color, true);
2019-08-19 13:22:02 +00:00
2019-11-13 08:29:49 +00:00
this._state.BGColor = this.BGColor.Color;
}
2019-08-19 13:22:02 +00:00
2019-11-13 08:29:49 +00:00
// Gradient colors
var gradColor = this.GradColor.colors[this.GradColor.currentIdx];
type1 = typeof (gradColor);
type2 = typeof (this._state.GradColor);
2019-11-13 08:29:49 +00:00
if ((type1 !== type2) || (type1 == 'object' &&
(gradColor.effectValue !== this._state.GradColor.effectValue || this._state.GradColor.color.indexOf(gradColor.color) < 0)) ||
(type1 != 'object' && this._state.GradColor.indexOf(gradColor) < 0)) {
2019-11-13 08:29:49 +00:00
this.btnGradColor.setColor(gradColor);
if (typeof (gradColor) == 'object') {
2019-11-13 08:29:49 +00:00
var isselected = false;
for (var i = 0; i < 10; i++) {
if (Common.Utils.ThemeColor.ThemeValues[i] == gradColor.effectValue) {
this.colorsGrad.select(gradColor, true);
2019-11-13 08:29:49 +00:00
isselected = true;
break;
}
2019-08-19 13:22:02 +00:00
}
if (!isselected) this.colorsGrad.clearSelection();
2019-11-13 08:29:49 +00:00
} else
this.colorsGrad.select(gradColor, true);
2019-08-19 13:22:02 +00:00
this._state.GradColor = gradColor;
2019-11-13 08:29:49 +00:00
}
2019-08-19 13:22:02 +00:00
2019-11-13 08:29:49 +00:00
this._noApply = false;
}
}
},
UpdateThemeColors: function() {
if (!this.borderColor) {
// create color buttons
this.btnBorderColor.setMenu();
this.borderColor = this.btnBorderColor.getPicker();
this.btnBackColor.setMenu();
this.btnBackColor.on('color:select', _.bind(this.onColorsBackSelect, this));
this.colorsBack = this.btnBackColor.getPicker();
2019-08-13 12:31:33 +00:00
this.fillControls.push(this.btnBackColor);
this.btnGradColor = new Common.UI.ColorButton({
2020-04-30 12:11:03 +00:00
parentEl: $('#cell-gradient-color-btn'),
color: '000000'
2019-08-13 12:31:33 +00:00
});
this.fillControls.push(this.btnGradColor);
this.colorsGrad = this.btnGradColor.getPicker();
this.btnGradColor.on('color:select', _.bind(this.onColorsGradientSelect, this));
2019-08-13 12:31:33 +00:00
this.btnFGColor = new Common.UI.ColorButton({
2020-04-30 12:11:03 +00:00
parentEl: $('#cell-foreground-color-btn'),
color: '000000'
2019-08-13 12:31:33 +00:00
});
this.fillControls.push(this.btnFGColor);
this.colorsFG = this.btnFGColor.getPicker();
this.btnFGColor.on('color:select', _.bind(this.onColorsFGSelect, this));
2019-08-13 12:31:33 +00:00
this.btnBGColor = new Common.UI.ColorButton({
2020-04-30 12:11:03 +00:00
parentEl: $('#cell-background-color-btn'),
color: 'ffffff'
2019-08-13 12:31:33 +00:00
});
this.fillControls.push(this.btnBGColor);
this.colorsBG = this.btnBGColor.getPicker();
this.btnBGColor.on('color:select', _.bind(this.onColorsBGSelect, this));
}
this.colorsBack.updateColors(Common.Utils.ThemeColor.getEffectColors(), Common.Utils.ThemeColor.getStandartColors());
this.borderColor.updateColors(Common.Utils.ThemeColor.getEffectColors(), Common.Utils.ThemeColor.getStandartColors());
this.btnBorderColor.setColor(this.borderColor.getColor());
this.colorsGrad.updateColors(Common.Utils.ThemeColor.getEffectColors(), Common.Utils.ThemeColor.getStandartColors());
2019-08-13 12:31:33 +00:00
this.colorsFG.updateColors(Common.Utils.ThemeColor.getEffectColors(), Common.Utils.ThemeColor.getStandartColors());
this.colorsBG.updateColors(Common.Utils.ThemeColor.getEffectColors(), Common.Utils.ThemeColor.getStandartColors());
},
onApiEditCell: function(state) {
this.isEditCell = (state != Asc.c_oAscCellEditorState.editEnd);
if ( state == Asc.c_oAscCellEditorState.editStart || state == Asc.c_oAscCellEditorState.editEnd)
this.disableControls(this._locked);
},
setLocked: function (locked) {
this._locked = locked;
},
2019-08-13 12:31:33 +00:00
disableFillPanels: function(disable) {
if (this._state.DisabledFillPanels!==disable) {
this._state.DisabledFillPanels = disable;
_.each(this.fillControls, function(item) {
item.setDisabled(disable);
});
}
},
disableControls: function(disable) {
if (this._initSettings) return;
disable = disable || this.isEditCell;
2019-08-13 12:31:33 +00:00
this.disableFillPanels(disable);
if (this._state.DisabledControls!==disable) {
this._state.DisabledControls = disable;
_.each(this.lockedControls, function(item) {
item.setDisabled(disable);
});
}
},
2019-08-13 12:31:33 +00:00
onFillSrcSelect: function(combo, record) {
2019-09-11 08:40:24 +00:00
var me = this;
2019-08-13 12:31:33 +00:00
this.ShowHideElem(record.value);
2019-08-19 13:22:02 +00:00
switch (record.value){
case Asc.c_oAscFill.FILL_TYPE_SOLID:
this._state.FillType = Asc.c_oAscFill.FILL_TYPE_SOLID;
if (!this._noApply) {
2019-09-11 08:40:24 +00:00
if (this.pattern == null)
this.pattern = new Asc.asc_CPatternFill();
this.pattern.asc_setType(-1);
this.pattern.asc_setFgColor(Common.Utils.ThemeColor.getRgbColor((this.CellColor.Color=='transparent') ? {color: '4f81bd', effectId: 24} : this.CellColor.Color));
this.fill.asc_setPatternFill(this.pattern);
this.api.asc_setCellFill(this.fill);
2019-08-19 13:22:02 +00:00
}
break;
case Asc.c_oAscFill.FILL_TYPE_GRAD:
this._state.FillType = Asc.c_oAscFill.FILL_TYPE_GRAD;
if (!this._noApply) {
2019-09-11 08:40:24 +00:00
if (this.gradient == null)
this.gradient = new Asc.asc_CGradientFill();
this.gradient.asc_setType(this.GradFillType);
2019-09-06 06:44:07 +00:00
if (this.GradFillType == Asc.c_oAscFillGradType.GRAD_LINEAR) {
2019-09-11 08:40:24 +00:00
this.gradient.asc_setDegree(this.GradLinearDirectionType);
2019-09-06 06:44:07 +00:00
}
if (this.OriginalFillType !== Asc.c_oAscFill.FILL_TYPE_GRAD) {
this.GradColor.currentIdx = 0;
if (this.GradColor.colors.length === 2) {
var HexColor0 = Common.Utils.ThemeColor.getRgbColor(this.GradColor.colors[0]).get_color().get_hex(),
HexColor1 = Common.Utils.ThemeColor.getRgbColor(this.GradColor.colors[1]).get_color().get_hex();
if (HexColor0 === 'ffffff' && HexColor1 === 'ffffff') {
2020-05-18 13:19:36 +00:00
this.GradColor.colors[0] = {color: '4f81bd', effectId: 24}; // color accent1
}
2019-09-06 06:44:07 +00:00
}
2019-09-12 07:56:48 +00:00
var arrGradStop = [];
this.GradColor.colors.forEach(function (item, index) {
2019-09-10 08:19:42 +00:00
var gradientStop = new Asc.asc_CGradientStop();
gradientStop.asc_setColor(Common.Utils.ThemeColor.getRgbColor(me.GradColor.colors[index]));
gradientStop.asc_setPosition(me.GradColor.values[index]/100);
2019-09-12 07:56:48 +00:00
arrGradStop.push(gradientStop);
2019-09-10 08:19:42 +00:00
});
2019-09-12 07:56:48 +00:00
this.gradient.asc_putGradientStops(arrGradStop);
2019-09-06 06:44:07 +00:00
}
2019-09-11 08:40:24 +00:00
this.fill.asc_setGradientFill(this.gradient);
this.api.asc_setCellFill(this.fill);
2019-08-19 13:22:02 +00:00
}
break;
case Asc.c_oAscFill.FILL_TYPE_PATT:
this._state.FillType = Asc.c_oAscFill.FILL_TYPE_PATT;
if (!this._noApply) {
var fHexColor = Common.Utils.ThemeColor.getRgbColor(this.FGColor.Color).get_color().get_hex();
var bHexColor = Common.Utils.ThemeColor.getRgbColor(this.BGColor.Color).get_color().get_hex();
if (bHexColor === 'ffffff' && fHexColor === 'ffffff') {
fHexColor = {color: '4f81bd', effectId: 24}; // color accent1
} else {
fHexColor = this.FGColor.Color;
}
2019-09-11 08:40:24 +00:00
if (this.pattern == null)
this.pattern = new Asc.asc_CPatternFill();
this.pattern.asc_setType(this.PatternFillType);
this.pattern.asc_setFgColor(Common.Utils.ThemeColor.getRgbColor(fHexColor));
this.pattern.asc_setBgColor(Common.Utils.ThemeColor.getRgbColor(this.BGColor.Color));
this.fill.asc_setPatternFill(this.pattern);
this.api.asc_setCellFill(this.fill);
2019-08-19 13:22:02 +00:00
}
break;
case Asc.c_oAscFill.FILL_TYPE_NOFILL:
this._state.FillType = Asc.c_oAscFill.FILL_TYPE_NOFILL;
if (!this._noApply) {
2019-09-11 08:40:24 +00:00
this.fill.asc_setPatternFill(null);
this.fill.asc_setGradientFill(null);
this.api.asc_setCellFill(this.fill);
2019-08-19 13:22:02 +00:00
}
break;
}
Common.NotificationCenter.trigger('edit:complete', this);
2019-08-13 12:31:33 +00:00
},
ShowHideElem: function(value) {
this.FillColorContainer.toggleClass('settings-hidden', value !== Asc.c_oAscFill.FILL_TYPE_SOLID);
this.FillPatternContainer.toggleClass('settings-hidden', value !== Asc.c_oAscFill.FILL_TYPE_PATT);
this.FillGradientContainer.toggleClass('settings-hidden', value !== Asc.c_oAscFill.FILL_TYPE_GRAD);
},
/*onGradTypeSelect: function(combo, record) {
2019-08-13 12:31:33 +00:00
this.GradFillType = record.value;
if (this.GradFillType == Asc.c_oAscFillGradType.GRAD_LINEAR) {
this.mnuDirectionPicker.store.reset(this._viewDataLinear);
this.mnuDirectionPicker.cmpEl.width(175);
this.mnuDirectionPicker.restoreHeight = 174;
var record = this.mnuDirectionPicker.store.findWhere({type: this.GradLinearDirectionType});
this.mnuDirectionPicker.selectRecord(record, true);
if (record)
this.btnDirection.setIconCls('item-gradient ' + record.get('iconcls'));
else
this.btnDirection.setIconCls('');
} else if (this.GradFillType == Asc.c_oAscFillGradType.GRAD_PATH) {
this.mnuDirectionPicker.store.reset(this._viewDataRadial);
this.mnuDirectionPicker.cmpEl.width(60);
this.mnuDirectionPicker.restoreHeight = 58;
this.mnuDirectionPicker.selectByIndex(this.GradRadialDirectionIdx, true);
if (this.GradRadialDirectionIdx>=0)
this.btnDirection.setIconCls('item-gradient ' + this._viewDataRadial[this.GradRadialDirectionIdx].iconcls);
else
this.btnDirection.setIconCls('');
}
2019-08-19 13:22:02 +00:00
if (this.api && !this._noApply) {
2019-09-11 08:40:24 +00:00
if (this.gradient == null) {
this.gradient = new Asc.asc_CGradientFill();
if (this.GradFillType == Asc.c_oAscFillGradType.GRAD_LINEAR) {
this.gradient.asc_setDegree(this.GradLinearDirectionType);
}
2019-09-12 07:56:48 +00:00
var arrGradStop = [];
2019-09-11 08:40:24 +00:00
this.GradColors.forEach(function (item) {
var gradientStop = new Asc.asc_CGradientStop();
gradientStop.asc_setColor(Common.Utils.ThemeColor.getRgbColor(item.Color));
gradientStop.asc_setPosition(item.Position);
2019-09-12 07:56:48 +00:00
arrGradStop.push(gradientStop);
2019-09-11 08:40:24 +00:00
});
2019-09-12 07:56:48 +00:00
this.gradient.asc_putGradientStops(arrGradStop);
2019-09-11 08:40:24 +00:00
}
2019-08-19 13:22:02 +00:00
if (this.GradFillType == Asc.c_oAscFillGradType.GRAD_LINEAR) {
2019-09-11 08:40:24 +00:00
this.gradient.asc_setDegree(this.GradLinearDirectionType);
2019-08-19 13:22:02 +00:00
}
2019-09-11 08:40:24 +00:00
this.gradient.asc_setType(this.GradFillType);
this.fill.asc_setGradientFill(this.gradient);
this.api.asc_setCellFill(this.fill);
2019-08-19 13:22:02 +00:00
}
2019-08-13 12:31:33 +00:00
Common.NotificationCenter.trigger('edit:complete', this);
},*/
2019-08-13 12:31:33 +00:00
onSelectGradient: function(btn, picker, itemView, record) {
2019-09-11 08:40:24 +00:00
var me = this;
2019-08-13 12:31:33 +00:00
if (this._noApply) return;
var rawData = {},
isPickerSelect = _.isFunction(record.toJSON);
if (isPickerSelect){
if (record.get('selected')) {
rawData = record.toJSON();
} else {
// record deselected
return;
}
} else {
rawData = record;
}
this.btnDirection.setIconCls('item-gradient ' + rawData.iconcls);
this.GradLinearDirectionType = rawData.type;
this.numGradientAngle.setValue(rawData.type);
2019-08-13 12:31:33 +00:00
2019-08-19 13:22:02 +00:00
if (this.api) {
if (this.GradFillType == Asc.c_oAscFillGradType.GRAD_LINEAR) {
2019-09-11 08:40:24 +00:00
if (this.gradient == null) {
this.gradient = new Asc.asc_CGradientFill();
this.gradient.asc_setType(this.GradFillType);
2019-09-12 07:56:48 +00:00
var arrGradStop = [];
this.GradColor.values.forEach(function (item, index) {
2019-09-11 08:40:24 +00:00
var gradientStop = new Asc.asc_CGradientStop();
gradientStop.asc_setColor(Common.Utils.ThemeColor.getRgbColor(me.GradColor.colors[index]));
gradientStop.asc_setPosition(me.GradColor.values[index]/100);
2019-09-12 07:56:48 +00:00
arrGradStop.push(gradientStop);
2019-09-11 08:40:24 +00:00
});
2019-09-12 07:56:48 +00:00
this.gradient.asc_putGradientStops(arrGradStop);
2019-09-11 08:40:24 +00:00
}
this.gradient.asc_setDegree(rawData.type);
this.fill.asc_setGradientFill(this.gradient);
this.api.asc_setCellFill(this.fill);
2019-08-19 13:22:02 +00:00
}
}
2019-08-13 12:31:33 +00:00
Common.NotificationCenter.trigger('edit:complete', this);
},
onColorsGradientSelect: function(btn, color) {
var me = this;
this.GradColor.colors[this.GradColor.currentIdx] = color;
this.sldrGradient.setColorValue(Common.Utils.String.format('#{0}', (typeof(color) == 'object') ? color.color : color));
2019-08-13 12:31:33 +00:00
2019-08-19 13:22:02 +00:00
if (this.api && !this._noApply) {
2019-09-11 08:40:24 +00:00
if (this.gradient == null) {
this.gradient = new Asc.asc_CGradientFill();
this.gradient.asc_setType(this.GradFillType);
2019-09-10 08:19:42 +00:00
if (this.GradFillType == Asc.c_oAscFillGradType.GRAD_LINEAR) {
2019-09-11 08:40:24 +00:00
this.gradient.asc_setDegree(this.GradLinearDirectionType);
2019-09-10 08:19:42 +00:00
}
}
2019-09-12 07:56:48 +00:00
var arrGradStop = [];
this.GradColor.values.forEach(function (item, index) {
2019-09-10 08:19:42 +00:00
var gradientStop = new Asc.asc_CGradientStop();
2019-12-05 10:49:45 +00:00
gradientStop.asc_setColor(Common.Utils.ThemeColor.getRgbColor(Common.Utils.ThemeColor.colorValue2EffectId(me.GradColor.colors[index])));
gradientStop.asc_setPosition(me.GradColor.values[index]/100);
2019-09-12 07:56:48 +00:00
arrGradStop.push(gradientStop);
2019-08-19 13:22:02 +00:00
});
2019-09-12 07:56:48 +00:00
this.gradient.asc_putGradientStops(arrGradStop);
2019-09-10 08:19:42 +00:00
2019-09-11 08:40:24 +00:00
this.fill.asc_setGradientFill(this.gradient);
this.api.asc_setCellFill(this.fill);
2019-08-19 13:22:02 +00:00
}
Common.NotificationCenter.trigger('edit:complete', this);
},
2019-08-13 12:31:33 +00:00
onGradientAngleChange: function(field, newValue, oldValue, eOpts) {
if (this.api) {
if (this.gradient == null) {
this.gradient = new Asc.asc_CGradientFill();
this.gradient.asc_setType(this.GradFillType);
}
if (this.GradFillType == Asc.c_oAscFillGradType.GRAD_LINEAR) {
this.gradient.asc_setDegree(field.getNumberValue());
}
this.fill.asc_setGradientFill(this.gradient);
this.api.asc_setCellFill(this.fill);
}
},
onGradientChange: function(slider, newValue, oldValue) {
this.GradColor.values = slider.getValues();
this._sliderChanged = true;
if (this.api && !this._noApply) {
if (this._sendUndoPoint) {
this.api.setStartPointHistory();
this._sendUndoPoint = false;
this.updateslider = setInterval(_.bind(this._gradientApplyFunc, this), 100);
}
}
},
onGradientChangeComplete: function(slider, newValue, oldValue) {
clearInterval(this.updateslider);
this._sliderChanged = true;
if (!this._sendUndoPoint) { // start point was added
this.api.setEndPointHistory();
this._gradientApplyFunc();
}
this._sendUndoPoint = true;
},
_gradientApplyFunc: function() {
if (this._sliderChanged) {
var me = this;
if (this.gradient == null)
this.gradient = new Asc.asc_CGradientFill();
var arrGradStop = [];
this.GradColor.colors.forEach(function (item, index) {
var gradientStop = new Asc.asc_CGradientStop();
2019-12-05 10:49:45 +00:00
gradientStop.asc_setColor(Common.Utils.ThemeColor.getRgbColor(Common.Utils.ThemeColor.colorValue2EffectId(me.GradColor.colors[index])));
gradientStop.asc_setPosition(me.GradColor.values[index]/100);
arrGradStop.push(gradientStop);
});
this.gradient.asc_putGradientStops(arrGradStop);
this.fill.asc_setGradientFill(this.gradient);
this.api.asc_setCellFill(this.fill);
this._sliderChanged = false;
}
},
2019-08-19 13:22:02 +00:00
onPatternSelect: function(combo, record) {
if (this.api && !this._noApply) {
this.PatternFillType = record.get('type');
2019-09-11 08:40:24 +00:00
if (this.pattern == null) {
this.pattern = new Asc.asc_CPatternFill();
this.pattern.asc_setFgColor(Common.Utils.ThemeColor.getRgbColor(this.FGColor.Color));
this.pattern.asc_setBgColor(Common.Utils.ThemeColor.getRgbColor(this.BGColor.Color));
2019-08-19 13:22:02 +00:00
}
2019-09-11 08:40:24 +00:00
this.pattern.asc_setType(this.PatternFillType);
this.fill.asc_setPatternFill(this.pattern);
this.api.asc_setCellFill(this.fill);
2019-08-19 13:22:02 +00:00
}
Common.NotificationCenter.trigger('edit:complete', this);
2019-08-13 12:31:33 +00:00
},
onColorsFGSelect: function(btn, color) {
2019-08-19 13:22:02 +00:00
this.FGColor = {Value: 1, Color: color};
if (this.api && !this._noApply) {
2019-09-11 08:40:24 +00:00
if (this.pattern == null) {
this.pattern = new Asc.asc_CPatternFill();
this.pattern.asc_setType(this.PatternFillType);
this.pattern.asc_setBgColor(Common.Utils.ThemeColor.getRgbColor(this.BGColor.Color));
2019-08-19 13:22:02 +00:00
}
2019-09-11 08:40:24 +00:00
this.pattern.asc_setFgColor(Common.Utils.ThemeColor.getRgbColor(this.FGColor.Color));
this.fill.asc_setPatternFill(this.pattern);
this.api.asc_setCellFill(this.fill);
2019-08-19 13:22:02 +00:00
}
Common.NotificationCenter.trigger('edit:complete', this);
2019-08-13 12:31:33 +00:00
},
onColorsBGSelect: function(btn, color) {
2019-08-19 13:22:02 +00:00
this.BGColor = {Value: 1, Color: color};
if (this.api && !this._noApply) {
2019-09-11 08:40:24 +00:00
if (this.pattern == null) {
this.pattern = new Asc.asc_CPatternFill();
this.pattern.asc_setFgColor(Common.Utils.ThemeColor.getRgbColor(this.FGColor.Color));
this.pattern.asc_setType(this.PatternFillType);
2019-08-19 13:22:02 +00:00
}
2019-09-11 08:40:24 +00:00
this.pattern.asc_setBgColor(Common.Utils.ThemeColor.getRgbColor(this.BGColor.Color));
this.fill.asc_setPatternFill(this.pattern);
this.api.asc_setCellFill(this.fill);
2019-08-19 13:22:02 +00:00
}
Common.NotificationCenter.trigger('edit:complete', this);
2019-08-13 12:31:33 +00:00
},
onWrapChange: function(field, newValue, oldValue, eOpts){
if (this.api && !this._noApply)
this.api.asc_setCellTextWrap((field.getValue()=='checked'));
this.chShrink.setDisabled((field.getValue()=='checked') || this._locked);
Common.NotificationCenter.trigger('edit:complete', this);
},
onShrinkChange: function(field, newValue, oldValue, eOpts){
if (this.api && !this._noApply)
this.api.asc_setCellTextShrink((field.getValue()=='checked'));
Common.NotificationCenter.trigger('edit:complete', this);
},
onPositionChange: function(btn) {
var me = this,
pos = btn.getNumberValue();
if (this.api) {
this.GradColor.values[this.GradColor.currentIdx] = pos;
if (this.gradient == null) {
this.gradient = new Asc.asc_CGradientFill();
this.gradient.asc_setType(this.GradFillType);
}
var arrGradStop = [];
this.GradColor.values.forEach(function (item, index) {
var gradientStop = new Asc.asc_CGradientStop();
gradientStop.asc_setColor(Common.Utils.ThemeColor.getRgbColor(Common.Utils.ThemeColor.colorValue2EffectId(me.GradColor.colors[index])));
gradientStop.asc_setPosition(me.GradColor.values[index]/100);
arrGradStop.push(gradientStop);
});
this.gradient.asc_putGradientStops(arrGradStop);
this.fill.asc_setGradientFill(this.gradient);
this.api.asc_setCellFill(this.fill);
}
},
onAddGradientStep: function() {
2020-07-09 18:49:35 +00:00
if (this.GradColor.colors.length > 9) return;
var curIndex = this.GradColor.currentIdx;
var pos = (this.GradColor.values[curIndex] + this.GradColor.values[curIndex < this.GradColor.colors.length - 1 ? curIndex + 1 : curIndex - 1]) / 2;
this.GradColor.colors[this.GradColor.colors.length] = this.GradColor.colors[curIndex];
this.GradColor.currentIdx = this.GradColor.colors.length - 1;
this.sldrGradient.addNewThumb(undefined, undefined, pos, curIndex);
this.sldrGradient.trigger('change', this.sldrGradient);
this.sldrGradient.trigger('changecomplete', this.sldrGradient);
},
onRemoveGradientStep: function() {
if (this.GradColor.values.length < 3) return;
this.GradColor.values.splice(this.GradColor.currentIdx, 1);
this.sldrGradient.removeThumb(this.GradColor.currentIdx);
if (_.isUndefined(this.GradColor.currentIdx) || this.GradColor.currentIdx >= this.GradColor.colors.length) {
this.GradColor.currentIdx = 0;
}
this.sldrGradient.setActiveThumb(this.GradColor.currentIdx);
},
textBorders: 'Border\'s Style',
textBorderColor: 'Color',
textBackColor: 'Background color',
textSelectBorders : 'Select borders that you want to change',
tipTop: 'Set Outer Top Border Only',
tipLeft: 'Set Outer Left Border Only',
tipBottom: 'Set Outer Bottom Border Only',
tipRight: 'Set Outer Right Border Only',
tipAll: 'Set Outer Border and All Inner Lines',
tipNone: 'Set No Borders',
tipInner: 'Set Inner Lines Only',
tipInnerVert: 'Set Vertical Inner Lines Only',
tipInnerHor: 'Set Horizontal Inner Lines Only',
tipOuter: 'Set Outer Border Only',
tipDiagU: 'Set Diagonal Up Border',
2019-02-13 11:08:18 +00:00
tipDiagD: 'Set Diagonal Down Border',
textOrientation: 'Text Orientation',
2019-08-13 12:31:33 +00:00
textAngle: 'Angle',
textFill: 'Fill',
textNoFill: 'No Fill',
textGradientFill: 'Gradient Fill',
textPatternFill: 'Pattern',
textColor: 'Color Fill',
textDirection: 'Direction',
textLinear: 'Linear',
textRadial: 'Radial',
textPattern: 'Pattern',
textForeground: 'Foreground color',
textBackground: 'Background color',
textGradient: 'Gradient',
textControl: 'Text Control',
strWrap: 'Wrap text',
strShrink: 'Shrink to fit',
textGradientColor: 'Color',
textPosition: 'Position',
tipAddGradientPoint: 'Add gradient point',
tipRemoveGradientPoint: 'Remove gradient point'
}, SSE.Views.CellSettings || {}));
});