2016-04-01 13:17:09 +00:00
|
|
|
/*
|
|
|
|
*
|
2017-01-17 14:58:08 +00:00
|
|
|
* (c) Copyright Ascensio System Limited 2010-2017
|
2016-04-01 13:17:09 +00:00
|
|
|
*
|
|
|
|
* 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 Lubanas st. 125a-25, Riga, Latvia,
|
|
|
|
* EU, LV-1021.
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*
|
|
|
|
*/
|
2016-03-11 00:48:53 +00:00
|
|
|
/**
|
|
|
|
* ChartSettings.js
|
|
|
|
*
|
|
|
|
* Created by Julia Radzhabova on 2/07/14
|
|
|
|
* Copyright (c) 2014 Ascensio System SIA. All rights reserved.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
define([
|
|
|
|
'text!documenteditor/main/app/template/ChartSettings.template',
|
|
|
|
'jquery',
|
|
|
|
'underscore',
|
|
|
|
'backbone',
|
|
|
|
'common/main/lib/component/Button',
|
2016-11-10 09:37:28 +00:00
|
|
|
'common/main/lib/component/ComboDataView',
|
2016-03-11 00:48:53 +00:00
|
|
|
'documenteditor/main/app/view/ImageSettingsAdvanced'
|
|
|
|
], function (menuTemplate, $, _, Backbone) {
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
DE.Views.ChartSettings = Backbone.View.extend(_.extend({
|
|
|
|
el: '#id-chart-settings',
|
|
|
|
|
|
|
|
// Compile our stats template
|
|
|
|
template: _.template(menuTemplate),
|
|
|
|
|
|
|
|
// Delegated events for creating new items, and clearing completed ones.
|
|
|
|
events: {
|
|
|
|
},
|
|
|
|
|
|
|
|
options: {
|
|
|
|
alias: 'ChartSettings'
|
|
|
|
},
|
|
|
|
|
|
|
|
initialize: function () {
|
|
|
|
this._initSettings = true;
|
|
|
|
|
|
|
|
this._state = {
|
2016-04-05 11:52:34 +00:00
|
|
|
WrappingStyle: Asc.c_oAscWrapStyle2.Inline,
|
2016-03-11 00:48:53 +00:00
|
|
|
CanBeFlow: true,
|
|
|
|
Width: 0,
|
|
|
|
Height: 0,
|
|
|
|
FromGroup: false,
|
|
|
|
ChartStyle: 1,
|
|
|
|
ChartType: -1,
|
|
|
|
SeveralCharts: false,
|
|
|
|
DisabledControls: false
|
|
|
|
};
|
|
|
|
this.lockedControls = [];
|
|
|
|
this._locked = false;
|
|
|
|
|
|
|
|
this._noApply = false;
|
|
|
|
this._originalProps = null;
|
|
|
|
|
|
|
|
this.render();
|
2016-08-17 09:55:21 +00:00
|
|
|
|
|
|
|
this.labelWidth = $(this.el).find('#chart-label-width');
|
|
|
|
this.labelHeight = $(this.el).find('#chart-label-height');
|
2016-03-11 00:48:53 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
render: function () {
|
|
|
|
var el = $(this.el);
|
|
|
|
el.html(this.template({
|
|
|
|
scope: this
|
|
|
|
}));
|
|
|
|
},
|
|
|
|
|
|
|
|
setApi: function(api) {
|
|
|
|
this.api = api;
|
|
|
|
if (this.api) {
|
|
|
|
this.api.asc_registerCallback('asc_onImgWrapStyleChanged', _.bind(this._ChartWrapStyleChanged, this));
|
|
|
|
this.api.asc_registerCallback('asc_onUpdateChartStyles', _.bind(this._onUpdateChartStyles, this));
|
|
|
|
}
|
|
|
|
return this;
|
|
|
|
},
|
|
|
|
|
|
|
|
ChangeSettings: function(props) {
|
2016-10-12 15:38:10 +00:00
|
|
|
if (this._initSettings)
|
2016-03-11 00:48:53 +00:00
|
|
|
this.createDelayedElements();
|
|
|
|
|
|
|
|
this.disableControls(this._locked);
|
|
|
|
|
|
|
|
if (props && props.get_ChartProperties()){
|
2016-04-18 12:21:15 +00:00
|
|
|
this._originalProps = new Asc.asc_CImgProperty(props);
|
2016-03-11 00:48:53 +00:00
|
|
|
|
|
|
|
this._noApply = true;
|
|
|
|
var value = props.get_WrappingStyle();
|
|
|
|
if (this._state.WrappingStyle!==value) {
|
2017-04-27 13:26:12 +00:00
|
|
|
this.cmbWrapType.suspendEvents();
|
|
|
|
var rec = this.cmbWrapType.menuPicker.store.findWhere({
|
|
|
|
data: value
|
|
|
|
});
|
|
|
|
this.cmbWrapType.menuPicker.selectRecord(rec);
|
|
|
|
this.cmbWrapType.resumeEvents();
|
2016-03-11 00:48:53 +00:00
|
|
|
this._state.WrappingStyle=value;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.chartProps = props.get_ChartProperties();
|
|
|
|
|
|
|
|
value = props.get_SeveralCharts() || this._locked;
|
|
|
|
if (this._state.SeveralCharts!==value) {
|
|
|
|
this.btnEditData.setDisabled(value);
|
|
|
|
this._state.SeveralCharts=value;
|
|
|
|
}
|
|
|
|
|
|
|
|
value = props.get_SeveralChartTypes();
|
|
|
|
if (this._state.SeveralCharts && value) {
|
|
|
|
this.btnChartType.setIconCls('');
|
|
|
|
this._state.ChartType = null;
|
|
|
|
} else {
|
|
|
|
var type = this.chartProps.getType();
|
|
|
|
if (this._state.ChartType !== type) {
|
|
|
|
var record = this.mnuChartTypePicker.store.findWhere({type: type});
|
|
|
|
this.mnuChartTypePicker.selectRecord(record, true);
|
|
|
|
if (record) {
|
|
|
|
this.btnChartType.setIconCls('item-chartlist ' + record.get('iconCls'));
|
2017-06-28 13:12:57 +00:00
|
|
|
} else
|
|
|
|
this.btnChartType.setIconCls('');
|
2016-03-11 00:48:53 +00:00
|
|
|
this.updateChartStyles(this.api.asc_getChartPreviews(type));
|
|
|
|
this._state.ChartType = type;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
value = props.get_SeveralChartStyles();
|
|
|
|
if (this._state.SeveralCharts && value) {
|
2016-11-10 09:37:28 +00:00
|
|
|
this.cmbChartStyle.fieldPicker.deselectAll();
|
|
|
|
this.cmbChartStyle.menuPicker.deselectAll();
|
2016-03-11 00:48:53 +00:00
|
|
|
this._state.ChartStyle = null;
|
|
|
|
} else {
|
|
|
|
value = this.chartProps.getStyle();
|
2016-11-10 09:37:28 +00:00
|
|
|
if (this._state.ChartStyle!==value || this._isChartStylesChanged) {
|
|
|
|
this.cmbChartStyle.suspendEvents();
|
|
|
|
var rec = this.cmbChartStyle.menuPicker.store.findWhere({data: value});
|
|
|
|
this.cmbChartStyle.menuPicker.selectRecord(rec);
|
|
|
|
this.cmbChartStyle.resumeEvents();
|
|
|
|
|
|
|
|
if (this._isChartStylesChanged) {
|
|
|
|
if (rec)
|
2017-03-27 16:42:54 +00:00
|
|
|
this.cmbChartStyle.fillComboView(this.cmbChartStyle.menuPicker.getSelectedRec()[0],true);
|
2016-11-10 09:37:28 +00:00
|
|
|
else
|
|
|
|
this.cmbChartStyle.fillComboView(this.cmbChartStyle.menuPicker.store.at(0), true);
|
2016-03-11 00:48:53 +00:00
|
|
|
}
|
|
|
|
this._state.ChartStyle=value;
|
|
|
|
}
|
|
|
|
}
|
2016-11-10 09:37:28 +00:00
|
|
|
this._isChartStylesChanged = false;
|
2016-03-11 00:48:53 +00:00
|
|
|
|
|
|
|
this._noApply = false;
|
|
|
|
|
|
|
|
value = props.get_CanBeFlow() && !this._locked;
|
|
|
|
var fromgroup = props.get_FromGroup() || this._locked;
|
|
|
|
if (this._state.CanBeFlow!==value || this._state.FromGroup!==fromgroup) {
|
2017-04-27 13:26:12 +00:00
|
|
|
this.cmbWrapType.setDisabled(!value || fromgroup);
|
2016-03-11 00:48:53 +00:00
|
|
|
this._state.CanBeFlow=value;
|
|
|
|
this._state.FromGroup=fromgroup;
|
|
|
|
}
|
|
|
|
|
|
|
|
value = props.get_Width();
|
|
|
|
if ( Math.abs(this._state.Width-value)>0.001 ) {
|
2016-04-06 13:38:54 +00:00
|
|
|
this.labelWidth[0].innerHTML = this.textWidth + ': ' + Common.Utils.Metric.fnRecalcFromMM(value).toFixed(1) + ' ' + Common.Utils.Metric.getCurrentMetricName();
|
2016-03-11 00:48:53 +00:00
|
|
|
this._state.Width = value;
|
|
|
|
}
|
|
|
|
|
|
|
|
value = props.get_Height();
|
|
|
|
if ( Math.abs(this._state.Height-value)>0.001 ) {
|
2016-04-06 13:38:54 +00:00
|
|
|
this.labelHeight[0].innerHTML = this.textHeight + ': ' + Common.Utils.Metric.fnRecalcFromMM(value).toFixed(1) + ' ' + Common.Utils.Metric.getCurrentMetricName();
|
2016-03-11 00:48:53 +00:00
|
|
|
this._state.Height = value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
updateMetricUnit: function() {
|
|
|
|
var value = Common.Utils.Metric.fnRecalcFromMM(this._state.Width);
|
2016-04-06 13:38:54 +00:00
|
|
|
this.labelWidth[0].innerHTML = this.textWidth + ': ' + value.toFixed(1) + ' ' + Common.Utils.Metric.getCurrentMetricName();
|
2016-03-11 00:48:53 +00:00
|
|
|
|
|
|
|
value = Common.Utils.Metric.fnRecalcFromMM(this._state.Height);
|
2016-04-06 13:38:54 +00:00
|
|
|
this.labelHeight[0].innerHTML = this.textHeight + ': ' + value.toFixed(1) + ' ' + Common.Utils.Metric.getCurrentMetricName();
|
2016-03-11 00:48:53 +00:00
|
|
|
},
|
|
|
|
|
2016-08-16 13:55:14 +00:00
|
|
|
createDelayedControls: function() {
|
|
|
|
var me = this,
|
|
|
|
viewData = [
|
2017-04-27 13:26:12 +00:00
|
|
|
{ offsetx: 0, data: Asc.c_oAscWrapStyle2.Inline, tip: this.txtInline, selected: true },
|
|
|
|
{ offsetx: 50, data: Asc.c_oAscWrapStyle2.Square, tip: this.txtSquare },
|
|
|
|
{ offsetx: 100, data: Asc.c_oAscWrapStyle2.Tight, tip: this.txtTight },
|
|
|
|
{ offsetx: 150, data: Asc.c_oAscWrapStyle2.Through, tip: this.txtThrough },
|
|
|
|
{ offsetx: 200, data: Asc.c_oAscWrapStyle2.TopAndBottom, tip: this.txtTopAndBottom },
|
|
|
|
{ offsetx: 250, data: Asc.c_oAscWrapStyle2.InFront, tip: this.txtInFront },
|
|
|
|
{ offsetx: 300, data: Asc.c_oAscWrapStyle2.Behind, tip: this.txtBehind }
|
2016-08-16 13:55:14 +00:00
|
|
|
];
|
|
|
|
|
2017-04-27 13:26:12 +00:00
|
|
|
this.cmbWrapType = new Common.UI.ComboDataView({
|
|
|
|
itemWidth: 50,
|
|
|
|
itemHeight: 50,
|
|
|
|
menuMaxHeight: 300,
|
|
|
|
enableKeyEvents: true,
|
|
|
|
store: new Common.UI.DataViewStore(viewData),
|
|
|
|
cls: 'combo-chart-style'
|
2016-08-16 13:55:14 +00:00
|
|
|
});
|
2017-04-27 13:26:12 +00:00
|
|
|
this.cmbWrapType.menuPicker.itemTemplate = this.cmbWrapType.fieldPicker.itemTemplate = _.template([
|
|
|
|
'<div class="style" id="<%= id %>">',
|
|
|
|
'<img src="data:image/gif;base64,R0lGODlhAQABAID/AMDAwAAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==" class="combo-wrap-item" ',
|
|
|
|
'width="' + this.cmbWrapType.itemWidth + '" height="' + this.cmbWrapType.itemHeight + '" ',
|
|
|
|
'style="background-position: -<%= offsetx %>px 0;"/>',
|
|
|
|
'</div>'
|
|
|
|
].join(''));
|
|
|
|
this.cmbWrapType.render($('#chart-combo-wrap'));
|
|
|
|
this.cmbWrapType.openButton.menu.cmpEl.css({
|
|
|
|
'min-width': 178,
|
|
|
|
'max-width': 178
|
|
|
|
});
|
|
|
|
this.cmbWrapType.on('click', _.bind(this.onSelectWrap, this));
|
|
|
|
this.cmbWrapType.openButton.menu.on('show:after', function () {
|
|
|
|
me.cmbWrapType.menuPicker.scroller.update({alwaysVisibleY: true});
|
2016-08-16 13:55:14 +00:00
|
|
|
});
|
2017-04-27 13:26:12 +00:00
|
|
|
this.lockedControls.push(this.cmbWrapType);
|
2016-08-16 13:55:14 +00:00
|
|
|
|
|
|
|
this.btnChartType = new Common.UI.Button({
|
|
|
|
cls : 'btn-large-dataview',
|
|
|
|
iconCls : 'item-chartlist bar-normal',
|
|
|
|
menu : new Common.UI.Menu({
|
2016-12-16 08:37:57 +00:00
|
|
|
style: 'width: 435px; padding-top: 12px;',
|
2016-08-16 13:55:14 +00:00
|
|
|
items: [
|
|
|
|
{ template: _.template('<div id="id-chart-menu-type" class="menu-insertchart" style="margin: 5px 5px 5px 10px;"></div>') }
|
|
|
|
]
|
|
|
|
})
|
|
|
|
});
|
|
|
|
this.btnChartType.on('render:after', function(btn) {
|
|
|
|
me.mnuChartTypePicker = new Common.UI.DataView({
|
|
|
|
el: $('#id-chart-menu-type'),
|
|
|
|
parentMenu: btn.menu,
|
2016-12-16 08:37:57 +00:00
|
|
|
restoreHeight: 421,
|
2016-08-16 13:55:14 +00:00
|
|
|
groups: new Common.UI.DataViewGroupStore([
|
|
|
|
{ id: 'menu-chart-group-bar', caption: me.textColumn },
|
|
|
|
{ id: 'menu-chart-group-line', caption: me.textLine },
|
|
|
|
{ id: 'menu-chart-group-pie', caption: me.textPie },
|
|
|
|
{ id: 'menu-chart-group-hbar', caption: me.textBar },
|
2016-12-16 08:37:57 +00:00
|
|
|
{ id: 'menu-chart-group-area', caption: me.textArea, inline: true },
|
|
|
|
{ id: 'menu-chart-group-scatter', caption: me.textPoint, inline: true },
|
2017-07-05 12:22:02 +00:00
|
|
|
{ id: 'menu-chart-group-stock', caption: me.textStock, inline: true },
|
|
|
|
{ id: 'menu-chart-group-surface', caption: me.textSurface}
|
2016-08-16 13:55:14 +00:00
|
|
|
]),
|
|
|
|
store: new Common.UI.DataViewStore([
|
|
|
|
{ group: 'menu-chart-group-bar', type: Asc.c_oAscChartTypeSettings.barNormal, iconCls: 'column-normal', selected: true},
|
|
|
|
{ group: 'menu-chart-group-bar', type: Asc.c_oAscChartTypeSettings.barStacked, iconCls: 'column-stack'},
|
|
|
|
{ group: 'menu-chart-group-bar', type: Asc.c_oAscChartTypeSettings.barStackedPer, iconCls: 'column-pstack'},
|
|
|
|
{ group: 'menu-chart-group-bar', type: Asc.c_oAscChartTypeSettings.barNormal3d, iconCls: 'column-3d-normal'},
|
|
|
|
{ group: 'menu-chart-group-bar', type: Asc.c_oAscChartTypeSettings.barStacked3d, iconCls: 'column-3d-stack'},
|
|
|
|
{ group: 'menu-chart-group-bar', type: Asc.c_oAscChartTypeSettings.barStackedPer3d, iconCls: 'column-3d-pstack'},
|
|
|
|
{ group: 'menu-chart-group-bar', type: Asc.c_oAscChartTypeSettings.barNormal3dPerspective, iconCls: 'column-3d-normal-per'},
|
|
|
|
{ group: 'menu-chart-group-line', type: Asc.c_oAscChartTypeSettings.lineNormal, iconCls: 'line-normal'},
|
|
|
|
{ group: 'menu-chart-group-line', type: Asc.c_oAscChartTypeSettings.lineStacked, iconCls: 'line-stack'},
|
|
|
|
{ group: 'menu-chart-group-line', type: Asc.c_oAscChartTypeSettings.lineStackedPer, iconCls: 'line-pstack'},
|
|
|
|
{ group: 'menu-chart-group-line', type: Asc.c_oAscChartTypeSettings.line3d, iconCls: 'line-3d'},
|
|
|
|
{ group: 'menu-chart-group-pie', type: Asc.c_oAscChartTypeSettings.pie, iconCls: 'pie-normal'},
|
|
|
|
{ group: 'menu-chart-group-pie', type: Asc.c_oAscChartTypeSettings.doughnut, iconCls: 'pie-doughnut'},
|
|
|
|
{ group: 'menu-chart-group-pie', type: Asc.c_oAscChartTypeSettings.pie3d, iconCls: 'pie-3d-normal'},
|
|
|
|
{ group: 'menu-chart-group-hbar', type: Asc.c_oAscChartTypeSettings.hBarNormal, iconCls: 'bar-normal'},
|
|
|
|
{ group: 'menu-chart-group-hbar', type: Asc.c_oAscChartTypeSettings.hBarStacked, iconCls: 'bar-stack'},
|
|
|
|
{ group: 'menu-chart-group-hbar', type: Asc.c_oAscChartTypeSettings.hBarStackedPer, iconCls: 'bar-pstack'},
|
|
|
|
{ group: 'menu-chart-group-hbar', type: Asc.c_oAscChartTypeSettings.hBarNormal3d, iconCls: 'bar-3d-normal'},
|
|
|
|
{ group: 'menu-chart-group-hbar', type: Asc.c_oAscChartTypeSettings.hBarStacked3d, iconCls: 'bar-3d-stack'},
|
|
|
|
{ group: 'menu-chart-group-hbar', type: Asc.c_oAscChartTypeSettings.hBarStackedPer3d, iconCls: 'bar-3d-pstack'},
|
|
|
|
{ group: 'menu-chart-group-area', type: Asc.c_oAscChartTypeSettings.areaNormal, iconCls: 'area-normal'},
|
|
|
|
{ group: 'menu-chart-group-area', type: Asc.c_oAscChartTypeSettings.areaStacked, iconCls: 'area-stack'},
|
|
|
|
{ group: 'menu-chart-group-area', type: Asc.c_oAscChartTypeSettings.areaStackedPer, iconCls: 'area-pstack'},
|
|
|
|
{ group: 'menu-chart-group-scatter', type: Asc.c_oAscChartTypeSettings.scatter, iconCls: 'point-normal'},
|
2017-07-05 12:22:02 +00:00
|
|
|
{ group: 'menu-chart-group-stock', type: Asc.c_oAscChartTypeSettings.stock, iconCls: 'stock-normal'},
|
|
|
|
{ group: 'menu-chart-group-surface', type: Asc.c_oAscChartTypeSettings.surfaceNormal, iconCls: 'surface-normal'},
|
|
|
|
{ group: 'menu-chart-group-surface', type: Asc.c_oAscChartTypeSettings.surfaceWireframe, iconCls: 'surface-wireframe'},
|
|
|
|
{ group: 'menu-chart-group-surface', type: Asc.c_oAscChartTypeSettings.contourNormal, iconCls: 'contour-normal'},
|
|
|
|
{ group: 'menu-chart-group-surface', type: Asc.c_oAscChartTypeSettings.contourWireframe, iconCls: 'contour-wireframe'}
|
|
|
|
|
2016-08-16 13:55:14 +00:00
|
|
|
]),
|
|
|
|
itemTemplate: _.template('<div id="<%= id %>" class="item-chartlist <%= iconCls %>"></div>')
|
|
|
|
});
|
|
|
|
});
|
|
|
|
this.btnChartType.render($('#chart-button-type'));
|
|
|
|
this.mnuChartTypePicker.on('item:click', _.bind(this.onSelectType, this, this.btnChartType));
|
|
|
|
this.lockedControls.push(this.btnChartType);
|
|
|
|
|
|
|
|
this.btnEditData = new Common.UI.Button({
|
|
|
|
el: $('#chart-button-edit-data')
|
|
|
|
});
|
|
|
|
this.lockedControls.push(this.btnEditData);
|
|
|
|
this.btnEditData.on('click', _.bind(this.setEditData, this));
|
|
|
|
|
|
|
|
this.linkAdvanced = $('#chart-advanced-link');
|
|
|
|
$(this.el).on('click', '#chart-advanced-link', _.bind(this.openAdvancedSettings, this));
|
|
|
|
},
|
|
|
|
|
2016-03-11 00:48:53 +00:00
|
|
|
createDelayedElements: function() {
|
2016-08-16 13:55:14 +00:00
|
|
|
this.createDelayedControls();
|
2016-03-11 00:48:53 +00:00
|
|
|
this.updateMetricUnit();
|
2016-10-12 15:38:10 +00:00
|
|
|
this._initSettings = false;
|
2016-03-11 00:48:53 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
_ChartWrapStyleChanged: function(style) {
|
2017-04-27 13:26:12 +00:00
|
|
|
if (!this.cmbWrapType) return;
|
2016-03-11 00:48:53 +00:00
|
|
|
if (this._state.WrappingStyle!==style) {
|
2017-04-27 13:26:12 +00:00
|
|
|
this.cmbWrapType.suspendEvents();
|
|
|
|
var rec = this.cmbWrapType.menuPicker.store.findWhere({
|
|
|
|
data: style
|
|
|
|
});
|
|
|
|
this.cmbWrapType.menuPicker.selectRecord(rec);
|
|
|
|
this.cmbWrapType.resumeEvents();
|
2016-03-11 00:48:53 +00:00
|
|
|
this._state.WrappingStyle=style;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2017-04-27 13:26:12 +00:00
|
|
|
onSelectWrap: function(combo, record) {
|
2016-03-11 00:48:53 +00:00
|
|
|
if (this.api) {
|
2017-04-27 13:26:12 +00:00
|
|
|
var props = new Asc.asc_CImgProperty(),
|
|
|
|
data = record.get('data');
|
|
|
|
props.put_WrappingStyle(data);
|
|
|
|
if (this._state.WrappingStyle===Asc.c_oAscWrapStyle2.Inline && data!==Asc.c_oAscWrapStyle2.Inline ) {
|
2016-04-05 12:57:51 +00:00
|
|
|
props.put_PositionH(new Asc.CImagePositionH());
|
2016-03-11 00:48:53 +00:00
|
|
|
props.get_PositionH().put_UseAlign(false);
|
2016-04-05 11:52:34 +00:00
|
|
|
props.get_PositionH().put_RelativeFrom(Asc.c_oAscRelativeFromH.Column);
|
|
|
|
var val = this._originalProps.get_Value_X(Asc.c_oAscRelativeFromH.Column);
|
2016-03-11 00:48:53 +00:00
|
|
|
props.get_PositionH().put_Value(val);
|
|
|
|
|
2016-04-05 12:57:51 +00:00
|
|
|
props.put_PositionV(new Asc.CImagePositionV());
|
2016-03-11 00:48:53 +00:00
|
|
|
props.get_PositionV().put_UseAlign(false);
|
2016-04-05 11:52:34 +00:00
|
|
|
props.get_PositionV().put_RelativeFrom(Asc.c_oAscRelativeFromV.Paragraph);
|
|
|
|
val = this._originalProps.get_Value_Y(Asc.c_oAscRelativeFromV.Paragraph);
|
2016-03-11 00:48:53 +00:00
|
|
|
props.get_PositionV().put_Value(val);
|
|
|
|
}
|
|
|
|
|
|
|
|
this.api.ImgApply(props);
|
|
|
|
}
|
|
|
|
this.fireEvent('editcomplete', this);
|
|
|
|
},
|
|
|
|
|
|
|
|
setEditData: function() {
|
|
|
|
var diagramEditor = DE.getController('Common.Controllers.ExternalDiagramEditor').getView('Common.Views.ExternalDiagramEditor');
|
|
|
|
if (diagramEditor) {
|
|
|
|
diagramEditor.setEditMode(true);
|
|
|
|
diagramEditor.show();
|
|
|
|
|
|
|
|
var chart = this.api.asc_getChartObject();
|
|
|
|
if (chart) {
|
|
|
|
diagramEditor.setChartData(new Asc.asc_CChartBinary(chart));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
openAdvancedSettings: function(e) {
|
|
|
|
if (this.linkAdvanced.hasClass('disabled')) return;
|
|
|
|
|
|
|
|
var me = this;
|
|
|
|
var win;
|
|
|
|
if (me.api && !this._locked){
|
|
|
|
var selectedElements = me.api.getSelectedElements();
|
|
|
|
if (selectedElements && selectedElements.length>0){
|
|
|
|
var elType, elValue;
|
|
|
|
for (var i = selectedElements.length - 1; i >= 0; i--) {
|
|
|
|
elType = selectedElements[i].get_ObjectType();
|
|
|
|
elValue = selectedElements[i].get_ObjectValue();
|
2016-04-05 11:52:34 +00:00
|
|
|
if (Asc.c_oAscTypeSelectElement.Image == elType) {
|
2016-03-11 00:48:53 +00:00
|
|
|
(new DE.Views.ImageSettingsAdvanced(
|
|
|
|
{
|
|
|
|
imageProps: elValue,
|
2016-03-17 13:31:57 +00:00
|
|
|
sectionProps: me.api.asc_GetSectionProps(),
|
2016-03-11 00:48:53 +00:00
|
|
|
handler: function(result, value) {
|
|
|
|
if (result == 'ok') {
|
|
|
|
if (me.api) {
|
|
|
|
me.api.ImgApply(value.imageProps);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
me.fireEvent('editcomplete', me);
|
|
|
|
}
|
|
|
|
})).show();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
onSelectType: function(btn, picker, itemView, record) {
|
|
|
|
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.btnChartType.setIconCls('item-chartlist ' + rawData.iconCls);
|
|
|
|
this._state.ChartType = -1;
|
|
|
|
|
|
|
|
if (this.api && !this._noApply && this.chartProps) {
|
2016-04-18 12:21:15 +00:00
|
|
|
var props = new Asc.asc_CImgProperty();
|
2016-03-11 00:48:53 +00:00
|
|
|
this.chartProps.changeType(rawData.type);
|
|
|
|
props.put_ChartProperties(this.chartProps);
|
|
|
|
this.api.ImgApply(props);
|
|
|
|
}
|
|
|
|
this.fireEvent('editcomplete', this);
|
|
|
|
},
|
|
|
|
|
2016-11-10 09:37:28 +00:00
|
|
|
onSelectStyle: function(combo, record) {
|
2016-03-11 00:48:53 +00:00
|
|
|
if (this._noApply) return;
|
|
|
|
|
|
|
|
if (this.api && !this._noApply && this.chartProps) {
|
2016-04-18 12:21:15 +00:00
|
|
|
var props = new Asc.asc_CImgProperty();
|
2016-11-10 09:37:28 +00:00
|
|
|
this.chartProps.putStyle(record.get('data'));
|
2016-03-11 00:48:53 +00:00
|
|
|
props.put_ChartProperties(this.chartProps);
|
|
|
|
this.api.ImgApply(props);
|
|
|
|
}
|
|
|
|
this.fireEvent('editcomplete', this);
|
|
|
|
},
|
|
|
|
|
|
|
|
_onUpdateChartStyles: function() {
|
|
|
|
if (this.api && this._state.ChartType!==null && this._state.ChartType>-1)
|
|
|
|
this.updateChartStyles(this.api.asc_getChartPreviews(this._state.ChartType));
|
|
|
|
},
|
|
|
|
|
|
|
|
updateChartStyles: function(styles) {
|
|
|
|
var me = this;
|
2016-11-10 09:37:28 +00:00
|
|
|
this._isChartStylesChanged = true;
|
|
|
|
|
|
|
|
if (!this.cmbChartStyle) {
|
|
|
|
this.cmbChartStyle = new Common.UI.ComboDataView({
|
|
|
|
itemWidth: 50,
|
|
|
|
itemHeight: 50,
|
|
|
|
menuMaxHeight: 270,
|
|
|
|
enableKeyEvents: true,
|
|
|
|
cls: 'combo-chart-style'
|
2016-08-16 13:55:14 +00:00
|
|
|
});
|
2016-11-10 09:37:28 +00:00
|
|
|
this.cmbChartStyle.render($('#chart-combo-style'));
|
|
|
|
this.cmbChartStyle.openButton.menu.cmpEl.css({
|
|
|
|
'min-width': 178,
|
|
|
|
'max-width': 178
|
2016-08-16 13:55:14 +00:00
|
|
|
});
|
2016-11-10 09:37:28 +00:00
|
|
|
this.cmbChartStyle.on('click', _.bind(this.onSelectStyle, this));
|
|
|
|
this.cmbChartStyle.openButton.menu.on('show:after', function () {
|
|
|
|
me.cmbChartStyle.menuPicker.scroller.update({alwaysVisibleY: true});
|
|
|
|
});
|
|
|
|
this.lockedControls.push(this.cmbChartStyle);
|
2016-08-16 13:55:14 +00:00
|
|
|
}
|
|
|
|
|
2016-03-11 00:48:53 +00:00
|
|
|
if (styles && styles.length>0){
|
2016-11-10 09:37:28 +00:00
|
|
|
var stylesStore = this.cmbChartStyle.menuPicker.store;
|
2016-03-11 00:48:53 +00:00
|
|
|
if (stylesStore) {
|
2016-11-10 09:37:28 +00:00
|
|
|
var count = stylesStore.length;
|
|
|
|
if (count>0 && count==styles.length) {
|
|
|
|
var data = stylesStore.models;
|
|
|
|
_.each(styles, function(style, index){
|
|
|
|
data[index].set('imageUrl', style.asc_getImageUrl());
|
2016-03-11 00:48:53 +00:00
|
|
|
});
|
2016-11-10 09:37:28 +00:00
|
|
|
} else {
|
|
|
|
var stylearray = [],
|
|
|
|
selectedIdx = -1;
|
|
|
|
_.each(styles, function(item, index){
|
|
|
|
stylearray.push({
|
|
|
|
imageUrl: item.asc_getImageUrl(),
|
|
|
|
data : item.asc_getStyle(),
|
|
|
|
tip : me.textStyle + ' ' + item.asc_getStyle()
|
|
|
|
});
|
|
|
|
});
|
|
|
|
stylesStore.reset(stylearray, {silent: false});
|
|
|
|
}
|
2016-03-11 00:48:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
setLocked: function (locked) {
|
|
|
|
this._locked = locked;
|
|
|
|
},
|
|
|
|
|
|
|
|
disableControls: function(disable) {
|
2016-08-16 13:55:14 +00:00
|
|
|
if (this._initSettings) return;
|
|
|
|
|
2016-03-11 00:48:53 +00:00
|
|
|
if (this._state.DisabledControls!==disable) {
|
|
|
|
this._state.DisabledControls = disable;
|
|
|
|
_.each(this.lockedControls, function(item) {
|
|
|
|
item.setDisabled(disable);
|
|
|
|
});
|
|
|
|
this.linkAdvanced.toggleClass('disabled', disable);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
textSize: 'Size',
|
|
|
|
textWrap: 'Wrapping Style',
|
|
|
|
textWidth: 'Width',
|
|
|
|
textHeight: 'Height',
|
|
|
|
textAdvanced: 'Show advanced settings',
|
|
|
|
txtInline: 'Inline',
|
|
|
|
txtSquare: 'Square',
|
|
|
|
txtTight: 'Tight',
|
|
|
|
txtThrough: 'Through',
|
|
|
|
txtTopAndBottom: 'Top and bottom',
|
|
|
|
txtBehind: 'Behind',
|
|
|
|
txtInFront: 'In front',
|
|
|
|
textEditData: 'Edit Data',
|
|
|
|
textChartType: 'Change Chart Type',
|
2016-12-16 08:37:57 +00:00
|
|
|
textLine: 'Line',
|
|
|
|
textColumn: 'Column',
|
|
|
|
textBar: 'Bar',
|
|
|
|
textArea: 'Area',
|
|
|
|
textPie: 'Pie',
|
|
|
|
textPoint: 'XY (Scatter)',
|
|
|
|
textStock: 'Stock',
|
2017-07-05 12:22:02 +00:00
|
|
|
textStyle: 'Style',
|
|
|
|
textSurface: 'Surface'
|
2016-03-11 00:48:53 +00:00
|
|
|
|
|
|
|
}, DE.Views.ChartSettings || {}));
|
|
|
|
});
|