web-apps/apps/documenteditor/main/app/view/ListSettingsDialog.js

585 lines
29 KiB
JavaScript
Raw Normal View History

2019-12-04 10:35:56 +00:00
/*
*
* (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
*
*/
/**
* ListSettingsDialog.js
2019-12-04 10:35:56 +00:00
*
* Created by Julia Radzhabova on 03.12.2019
* Copyright (c) 2019 Ascensio System SIA. All rights reserved.
*
*/
if (Common === undefined)
var Common = {};
define([
'common/main/lib/component/Window',
'common/main/lib/component/MetricSpinner',
'common/main/lib/component/ThemeColorPalette',
'common/main/lib/component/ColorButton',
2019-12-18 13:48:36 +00:00
'common/main/lib/component/ComboBox',
2019-12-04 10:35:56 +00:00
'common/main/lib/view/SymbolTableDialog'
], function () { 'use strict';
DE.Views.ListSettingsDialog = Common.UI.Window.extend(_.extend({
2019-12-04 10:35:56 +00:00
options: {
2019-12-17 14:25:12 +00:00
type: 0, // 0 - markers, 1 - numbers, 2 - multilevel
width: 300,
2022-07-14 19:39:32 +00:00
height: 424,
2019-12-04 10:35:56 +00:00
style: 'min-width: 240px;',
cls: 'modal-dlg',
split: false,
buttons: ['ok', 'cancel']
},
initialize : function(options) {
2019-12-17 14:25:12 +00:00
this.type = options.type || 0;
2019-12-17 11:52:30 +00:00
2019-12-04 10:35:56 +00:00
_.extend(this.options, {
title: this.txtTitle,
2022-07-14 19:39:32 +00:00
height: (this.type==2) ? 376 : 424,
width: (this.type==2) ? 430 : 300
}, options || {});
2019-12-04 10:35:56 +00:00
this.template = [
'<div class="box">',
'<% if (type == 2) { %>',
'<table cols="4" style="width: 100%;">',
'<tr>',
'<td style="padding-right: 5px;">',
'<label class="input-label">' + this.txtType + '</label>',
'<div id="id-dlg-numbering-format" class="input-group-nr" style="width: 100%;margin-bottom: 10px;"></div>',
'</td>',
'<td style="padding-left: 5px;padding-right: 5px;">',
'<label class="input-label">' + this.txtAlign + '</label>',
'<div id="id-dlg-bullet-align" class="input-group-nr" style="width: 100%;margin-bottom: 10px;"></div>',
'</td>',
'<td style="padding-left: 5px;padding-right: 5px;">',
'<label class="input-label">' + this.txtSize + '</label>',
'<div id="id-dlg-bullet-size" class="input-group-nr" style="width: 100%;margin-bottom: 10px;"></div>',
'</td>',
'<td style="padding-left: 5px;">',
'<label class="input-label">' + this.txtColor + '</label>',
'<div id="id-dlg-bullet-color" style="margin-bottom: 10px;"></div>',
'</td>',
'</tr>',
'</table>',
'<% } else {%>',
2019-12-04 10:35:56 +00:00
'<table cols="2" style="width: 100%;">',
'<tr>',
'<td style="padding-right: 5px;">',
2019-12-17 14:25:12 +00:00
'<% if (type == 0) { %>',
2019-12-04 10:35:56 +00:00
'<label class="input-label">' + this.txtBullet + '</label>',
'<button type="button" class="btn btn-text-default" id="id-dlg-bullet-font" style="width: 100%;margin-bottom: 10px;">' + this.txtFont + '</button>',
2019-12-17 11:52:30 +00:00
'<% } else { %>',
'<label class="input-label">' + this.txtType + '</label>',
'<div id="id-dlg-numbering-format" class="input-group-nr" style="width: 100%;margin-bottom: 10px;"></div>',
'<% } %>',
2019-12-04 10:35:56 +00:00
'</td>',
'<td style="padding-left: 5px;">',
'<label class="input-label">' + this.txtAlign + '</label>',
'<div id="id-dlg-bullet-align" class="input-group-nr" style="width: 100%;margin-bottom: 10px;"></div>',
'</td>',
'</tr>',
'<tr>',
'<td style="padding-right: 5px;">',
'<label class="input-label">' + this.txtSize + '</label>',
'<div id="id-dlg-bullet-size" class="input-group-nr" style="width: 100%;margin-bottom: 10px;"></div>',
'</td>',
'<td style="padding-left: 5px;">',
'<label class="input-label">' + this.txtColor + '</label>',
'<div id="id-dlg-bullet-color" style="margin-bottom: 10px;"></div>',
'</td>',
'</tr>',
2019-12-17 14:25:12 +00:00
'</table>',
'<% } %>',
2019-12-17 14:25:12 +00:00
'<table cols="2" style="width: 100%;">',
2019-12-04 10:35:56 +00:00
'<tr>',
2019-12-17 14:25:12 +00:00
'<td class="<% if (type != 2) { %> hidden <% } %>" style="width: 50px; padding-right: 10px;">',
'<label>' + this.textLevel + '</label>',
2019-12-25 09:10:42 +00:00
'<div id="levels-list" class="no-borders" style="width:100%; height:208px;margin-top: 2px; "></div>',
2019-12-17 14:25:12 +00:00
'</td>',
'<td>',
2019-12-04 10:35:56 +00:00
'<label>' + this.textPreview + '</label>',
2021-04-20 13:37:46 +00:00
'<div id="bulleted-list-preview"></div>',
2019-12-04 10:35:56 +00:00
'</td>',
'</tr>',
'</table>',
'</div>'
].join('');
this.props = options.props;
2019-12-18 13:48:36 +00:00
this.level = options.level || 0;
2019-12-17 14:25:12 +00:00
this.api = options.api;
2019-12-04 10:35:56 +00:00
this.options.tpl = _.template(this.template)(this.options);
2019-12-18 13:48:36 +00:00
this.levels = [];
2019-12-04 10:35:56 +00:00
Common.UI.Window.prototype.initialize.call(this, this.options);
},
render: function() {
Common.UI.Window.prototype.render.call(this);
var me = this,
$window = this.getChild();
$window.find('.dlg-btn').on('click', _.bind(this.onBtnClick, this));
this.btnColor = new Common.UI.ColorButton({
parentEl: $window.find('#id-dlg-bullet-color'),
additionalItems: [{
id: 'id-dlg-bullet-text-color',
caption: this.txtLikeText,
checkable: true,
2020-09-27 13:48:28 +00:00
toggleGroup: 'list-settings-color',
style: 'padding-left: 20px;'
},
{
id: 'id-dlg-bullet-auto-color',
caption: this.textAuto,
checkable: true,
2020-09-27 13:48:28 +00:00
toggleGroup: 'list-settings-color',
style: 'padding-left: 20px;'
},
{caption: '--'}],
additionalAlign: this.menuAddAlign,
cls: 'move-focus',
takeFocusOnClose: true
2019-12-04 10:35:56 +00:00
});
this.btnColor.on('color:select', _.bind(this.onColorsSelect, this));
2019-12-19 12:01:49 +00:00
this.btnColor.menu.items[0].on('toggle', _.bind(this.onLikeTextColor, this));
this.btnColor.menu.items[1].on('toggle', _.bind(this.onAutoColor, this));
this.colors = this.btnColor.getPicker();
2019-12-04 10:35:56 +00:00
this.btnEdit = new Common.UI.Button({
el: $window.find('#id-dlg-bullet-font')
});
this.btnEdit.on('click', _.bind(this.onEditBullet, this));
2019-12-18 13:48:36 +00:00
var itemsTemplate =
[
'<% _.each(items, function(item) { %>',
'<li id="<%= item.id %>" data-value="<%= item.value %>"><a tabindex="-1" type="menuitem">',
'<%= item.displayValue %><% if (item.value === Asc.c_oAscNumberingFormat.Bullet) { %><span style="font-family:<%=item.font%>;"><%=item.symbol%></span><% } %>',
'</a></li>',
'<% }); %>'
];
var template = [
'<div class="input-group combobox input-group-nr <%= cls %>" id="<%= id %>" style="<%= style %>">',
2019-12-19 14:14:05 +00:00
'<div class="form-control" style="padding-top:3px; line-height: 14px; cursor: pointer; <%= style %>"></div>',
2019-12-18 13:48:36 +00:00
'<div style="display: table-cell;"></div>',
2021-04-19 12:34:00 +00:00
'<button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown"><span class="caret"></span></button>',
2019-12-18 13:48:36 +00:00
'<ul class="dropdown-menu <%= menuCls %>" style="<%= menuStyle %>" role="menu">'].concat(itemsTemplate).concat([
'</ul>',
'</div>'
]);
this.cmbFormat = new Common.UI.ComboBoxCustom({
2019-12-17 11:52:30 +00:00
el : $window.find('#id-dlg-numbering-format'),
2019-12-17 14:25:12 +00:00
menuStyle : 'min-width: 100%;max-height: 183px;',
style : this.type==2 ? "width: 107px;" : "width: 129px;",
2019-12-17 11:52:30 +00:00
editable : false,
2019-12-18 13:48:36 +00:00
template : _.template(template.join('')),
itemsTemplate: _.template(itemsTemplate.join('')),
2020-10-15 17:21:56 +00:00
takeFocusOnClose: true,
2019-12-17 11:52:30 +00:00
data : [
2019-12-18 14:51:18 +00:00
{ displayValue: this.txtNone, value: Asc.c_oAscNumberingFormat.None },
2019-12-17 11:52:30 +00:00
{ displayValue: '1, 2, 3,...', value: Asc.c_oAscNumberingFormat.Decimal },
{ displayValue: 'a, b, c,...', value: Asc.c_oAscNumberingFormat.LowerLetter },
{ displayValue: 'A, B, C,...', value: Asc.c_oAscNumberingFormat.UpperLetter },
{ displayValue: 'i, ii, iii,...', value: Asc.c_oAscNumberingFormat.LowerRoman },
{ displayValue: 'I, II, III,...', value: Asc.c_oAscNumberingFormat.UpperRoman }
2019-12-18 13:48:36 +00:00
],
updateFormControl: function(record) {
var formcontrol = $(this.el).find('.form-control');
if (record) {
if (record.get('value')==Asc.c_oAscNumberingFormat.Bullet)
2019-12-19 14:14:05 +00:00
formcontrol[0].innerHTML = record.get('displayValue') + '<span style="font-family:' + (record.get('font') || 'Arial') + '">' + record.get('symbol') + '</span>';
2019-12-18 13:48:36 +00:00
else
formcontrol[0].innerHTML = record.get('displayValue');
} else
formcontrol[0].innerHTML = '';
}
2019-12-17 11:52:30 +00:00
});
this.cmbFormat.on('selected', _.bind(function (combo, record) {
2019-12-18 13:48:36 +00:00
if (this._changedProps) {
if (record.value == -1) {
var callback = function(result) {
var format = me._changedProps.get_Format();
if (format == Asc.c_oAscNumberingFormat.Bullet) {
var store = combo.store;
if (!store.findWhere({value: Asc.c_oAscNumberingFormat.Bullet, symbol: me.bulletProps.symbol, font: me.bulletProps.font}))
store.add({ displayValue: me.txtSymbol + ': ', value: Asc.c_oAscNumberingFormat.Bullet, symbol: me.bulletProps.symbol, font: me.bulletProps.font }, {at: store.length-1});
combo.setData(store.models);
combo.selectRecord(combo.store.findWhere({value: Asc.c_oAscNumberingFormat.Bullet, symbol: me.bulletProps.symbol, font: me.bulletProps.font}));
} else
combo.setValue(format || '');
};
this.addNewBullet(callback);
} else {
2019-12-27 14:16:06 +00:00
var oldformat = this._changedProps.get_Format();
2019-12-18 13:48:36 +00:00
this._changedProps.put_Format(record.value);
if (record.value == Asc.c_oAscNumberingFormat.Bullet) {
this.bulletProps.font = record.font;
this.bulletProps.symbol = record.symbol;
if (!this._changedProps.get_TextPr()) this._changedProps.put_TextPr(new AscCommonWord.CTextPr());
this._changedProps.get_TextPr().put_FontFamily(this.bulletProps.font);
this._changedProps.put_Text([new Asc.CAscNumberingLvlText()]);
this._changedProps.get_Text()[0].put_Value(this.bulletProps.symbol);
2019-12-27 14:16:06 +00:00
} else if (record.value == Asc.c_oAscNumberingFormat.None || oldformat == Asc.c_oAscNumberingFormat.Bullet) {
if (!this._changedProps.get_TextPr()) this._changedProps.put_TextPr(new AscCommonWord.CTextPr());
this._changedProps.get_TextPr().put_FontFamily(undefined);
this._changedProps.put_Text([new Asc.CAscNumberingLvlText()]);
this._changedProps.get_Text()[0].put_Type(Asc.c_oAscNumberingLvlTextType.Num);
this._changedProps.get_Text()[0].put_Value(this.level);
2019-12-18 13:48:36 +00:00
}
}
}
2019-12-17 11:52:30 +00:00
if (this.api) {
2019-12-25 09:33:20 +00:00
this.api.SetDrawImagePreviewBullet('bulleted-list-preview', this.props, this.level, this.type==2);
2019-12-17 11:52:30 +00:00
}
}, this));
2019-12-04 10:35:56 +00:00
this.cmbAlign = new Common.UI.ComboBox({
el : $window.find('#id-dlg-bullet-align'),
menuStyle : 'min-width: 100%;',
editable : false,
cls : 'input-group-nr',
data : [
{ value: AscCommon.align_Left, displayValue: this.textLeft },
{ value: AscCommon.align_Center, displayValue: this.textCenter },
{ value: AscCommon.align_Right, displayValue: this.textRight }
2020-10-15 17:21:56 +00:00
],
takeFocusOnClose: true
2019-12-04 10:35:56 +00:00
});
this.cmbAlign.on('selected', _.bind(function (combo, record) {
if (this._changedProps)
this._changedProps.put_Align(record.value);
if (this.api) {
2019-12-25 09:33:20 +00:00
this.api.SetDrawImagePreviewBullet('bulleted-list-preview', this.props, this.level, this.type==2);
2019-12-04 10:35:56 +00:00
}
}, this));
this.cmbSize = new Common.UI.ComboBox({
el : $window.find('#id-dlg-bullet-size'),
2019-12-17 09:32:15 +00:00
menuStyle : 'min-width: 100%;max-height: 183px;',
2019-12-04 10:35:56 +00:00
editable : false,
cls : 'input-group-nr',
data : [
2019-12-17 11:52:30 +00:00
{ value: -1, displayValue: this.txtLikeText },
2019-12-04 10:35:56 +00:00
{ value: 8, displayValue: "8" },
{ value: 9, displayValue: "9" },
{ value: 10, displayValue: "10" },
{ value: 11, displayValue: "11" },
{ value: 12, displayValue: "12" },
{ value: 14, displayValue: "14" },
{ value: 16, displayValue: "16" },
{ value: 18, displayValue: "18" },
{ value: 20, displayValue: "20" },
{ value: 22, displayValue: "22" },
{ value: 24, displayValue: "24" },
{ value: 26, displayValue: "26" },
{ value: 28, displayValue: "28" },
{ value: 36, displayValue: "36" },
{ value: 48, displayValue: "48" },
{ value: 72, displayValue: "72" },
{ value: 96, displayValue: "96" }
2020-10-15 17:21:56 +00:00
],
takeFocusOnClose: true
2019-12-04 10:35:56 +00:00
});
this.cmbSize.on('selected', _.bind(function (combo, record) {
if (this._changedProps) {
if (!this._changedProps.get_TextPr()) this._changedProps.put_TextPr(new AscCommonWord.CTextPr());
2019-12-18 13:48:36 +00:00
this._changedProps.get_TextPr().put_FontSize((record.value>0) ? record.value : undefined);
2019-12-04 10:35:56 +00:00
}
if (this.api) {
2019-12-25 09:33:20 +00:00
this.api.SetDrawImagePreviewBullet('bulleted-list-preview', this.props, this.level, this.type==2);
2019-12-04 10:35:56 +00:00
}
}, this));
2019-12-17 14:25:12 +00:00
var levels = [];
for (var i=0; i<9; i++)
2019-12-18 13:48:36 +00:00
levels.push({value: i});
2019-12-17 14:25:12 +00:00
this.levelsList = new Common.UI.ListView({
el: $('#levels-list', this.$window),
store: new Common.UI.DataViewStore(levels),
2020-10-15 17:21:56 +00:00
tabindex: 1,
2019-12-19 14:14:05 +00:00
itemTemplate: _.template('<div id="<%= id %>" class="list-item" style="pointer-events:none;overflow: hidden; text-overflow: ellipsis;line-height: 15px;"><%= (value+1) %></div>')
2019-12-17 14:25:12 +00:00
});
2019-12-18 13:48:36 +00:00
this.levelsList.on('item:select', _.bind(this.onSelectLevel, this));
2019-12-17 14:25:12 +00:00
2021-05-05 16:03:08 +00:00
this.on('animate:after', _.bind(this.onAnimateAfter, this));
2019-12-04 10:35:56 +00:00
this.afterRender();
},
2020-10-15 17:21:56 +00:00
getFocusedComponents: function() {
return [this.btnEdit, this.cmbFormat, this.cmbAlign, this.cmbSize, this.btnColor, this.levelsList];
2020-10-15 17:21:56 +00:00
},
2020-10-21 08:10:11 +00:00
getDefaultFocusableComponent: function () {
return this.type > 0 ? this.cmbFormat : this.cmbAlign;
},
2021-05-05 16:03:08 +00:00
onAnimateAfter: function() {
if (this.api) {
this.api.SetDrawImagePreviewBullet('bulleted-list-preview', this.props, this.level, this.type==2);
}
},
2019-12-04 10:35:56 +00:00
afterRender: function() {
this.updateThemeColors();
this._setDefaults(this.props);
2019-12-25 09:10:42 +00:00
var me = this;
var onApiLevelChange = function(level) {
me.levelsList.selectByIndex(level);
};
this.api.asc_registerCallback('asc_onPreviewLevelChange', onApiLevelChange);
this.on('close', function(obj){
me.api.asc_unregisterCallback('asc_onPreviewLevelChange', onApiLevelChange);
});
2019-12-04 10:35:56 +00:00
},
updateThemeColors: function() {
this.colors.updateColors(Common.Utils.ThemeColor.getEffectColors(), Common.Utils.ThemeColor.getStandartColors());
},
2019-12-19 12:01:49 +00:00
onAutoColor: function(item, state) {
if (!!state) {
var color = Common.Utils.ThemeColor.getHexColor(0, 0, 0);
this.btnColor.setColor(color);
this.colors.clearSelection();
if (this._changedProps) {
if (!this._changedProps.get_TextPr()) this._changedProps.put_TextPr(new AscCommonWord.CTextPr());
var color = new Asc.asc_CColor();
color.put_auto(true);
this._changedProps.get_TextPr().put_Color(color);
}
if (this.api) {
2019-12-25 09:33:20 +00:00
this.api.SetDrawImagePreviewBullet('bulleted-list-preview', this.props, this.level, this.type==2);
2019-12-19 12:01:49 +00:00
}
2019-12-17 09:32:15 +00:00
}
2019-12-04 10:35:56 +00:00
},
2019-12-19 12:01:49 +00:00
onLikeTextColor: function(item, state) {
if (!!state) {
2021-05-04 11:24:28 +00:00
var color = Common.Utils.ThemeColor.getHexColor(0, 0, 0);
2019-12-19 12:01:49 +00:00
this.btnColor.setColor(color);
this.colors.clearSelection();
if (this._changedProps) {
if (!this._changedProps.get_TextPr()) this._changedProps.put_TextPr(new AscCommonWord.CTextPr());
this._changedProps.get_TextPr().put_Color(undefined);
}
if (this.api) {
2019-12-25 09:33:20 +00:00
this.api.SetDrawImagePreviewBullet('bulleted-list-preview', this.props, this.level, this.type==2);
2019-12-19 12:01:49 +00:00
}
}
},
onColorsSelect: function(btn, color) {
2019-12-04 10:35:56 +00:00
if (this._changedProps) {
2019-12-17 09:32:15 +00:00
if (!this._changedProps.get_TextPr()) this._changedProps.put_TextPr(new AscCommonWord.CTextPr());
this._changedProps.get_TextPr().put_Color(Common.Utils.ThemeColor.getRgbColor(color));
2019-12-04 10:35:56 +00:00
}
this.btnColor.menu.items[0].setChecked(false, true);
2019-12-19 12:01:49 +00:00
this.btnColor.menu.items[1].setChecked(false, true);
2019-12-17 09:32:15 +00:00
if (this.api) {
2019-12-25 09:33:20 +00:00
this.api.SetDrawImagePreviewBullet('bulleted-list-preview', this.props, this.level, this.type==2);
2019-12-17 09:32:15 +00:00
}
2019-12-04 10:35:56 +00:00
},
2019-12-18 13:48:36 +00:00
onEditBullet: function(callback) {
this.addNewBullet();
},
addNewBullet: function(callback) {
2019-12-04 10:35:56 +00:00
var me = this,
props = me.bulletProps,
handler = function(dlg, result, settings) {
if (result == 'ok') {
props.changed = true;
props.code = settings.code;
props.font = settings.font;
props.symbol = settings.symbol;
if (me._changedProps) {
2019-12-18 13:48:36 +00:00
me._changedProps.put_Format(Asc.c_oAscNumberingFormat.Bullet);
2019-12-04 10:35:56 +00:00
if (!me._changedProps.get_TextPr()) me._changedProps.put_TextPr(new AscCommonWord.CTextPr());
me._changedProps.get_TextPr().put_FontFamily(props.font);
2019-12-18 13:48:36 +00:00
me._changedProps.put_Text([new Asc.CAscNumberingLvlText()]);
2019-12-04 10:35:56 +00:00
me._changedProps.get_Text()[0].put_Value(props.symbol);
2019-12-26 10:57:55 +00:00
if (me.api) {
me.api.SetDrawImagePreviewBullet('bulleted-list-preview', me.props, me.level, me.type==2);
}
2019-12-04 10:35:56 +00:00
}
}
2019-12-18 13:48:36 +00:00
callback && callback.call(me, result);
2019-12-04 10:35:56 +00:00
},
win = new Common.Views.SymbolTableDialog({
api: me.options.api,
lang: me.options.interfaceLang,
modal: true,
type: 0,
font: props.font,
symbol: props.symbol,
handler: handler
});
win.show();
win.on('symbol:dblclick', handler);
},
_handleInput: function(state) {
if (this.options.handler) {
2019-12-18 13:48:36 +00:00
var props = [], lvlnum = [];
for (var i=0; i<9; i++) {
if (!this.levels[i]) continue;
props.push(this.levels[i]);
lvlnum.push(i);
}
this.options.handler.call(this, state, {props: (props.length==1) ? props[0] : props, num: (lvlnum.length==1) ? lvlnum[0] : lvlnum});
2019-12-04 10:35:56 +00:00
}
this.close();
},
onBtnClick: function(event) {
this._handleInput(event.currentTarget.attributes['result'].value);
},
onPrimary: function(event) {
this._handleInput('ok');
return false;
},
_setDefaults: function (props) {
this.bulletProps = {};
if (props) {
2019-12-18 13:48:36 +00:00
var levelProps = props.get_Lvl(this.level);
(this.level<0) && (this.level = 0);
this.levels[this.level] = levelProps || new Asc.CAscNumberingLvl(this.level);
if (this.type==2) {
var store = this.cmbFormat.store;
2019-12-19 14:14:05 +00:00
store.push([
{ displayValue: this.txtSymbol + ': ', value: Asc.c_oAscNumberingFormat.Bullet, symbol: "·", font: 'Symbol' },
{ displayValue: this.txtSymbol + ': ', value: Asc.c_oAscNumberingFormat.Bullet, symbol: "o", font: 'Courier New' },
{ displayValue: this.txtSymbol + ': ', value: Asc.c_oAscNumberingFormat.Bullet, symbol: "§", font: 'Wingdings' },
{ displayValue: this.txtSymbol + ': ', value: Asc.c_oAscNumberingFormat.Bullet, symbol: "v", font: 'Wingdings' },
{ displayValue: this.txtSymbol + ': ', value: Asc.c_oAscNumberingFormat.Bullet, symbol: "Ø", font: 'Wingdings' },
{ displayValue: this.txtSymbol + ': ', value: Asc.c_oAscNumberingFormat.Bullet, symbol: "ü", font: 'Wingdings' },
{ displayValue: this.txtSymbol + ': ', value: Asc.c_oAscNumberingFormat.Bullet, symbol: "¨", font: 'Symbol' },
{ displayValue: this.txtSymbol + ': ', value: Asc.c_oAscNumberingFormat.Bullet, symbol: "", font: 'Arial' },
{ displayValue: this.txtNewBullet, value: -1 }
]);
2019-12-18 13:48:36 +00:00
this.cmbFormat.setData(store.models);
this.levelsList.selectByIndex(this.level);
} else
this.fillLevelProps(this.levels[this.level]);
}
this._changedProps = this.levels[this.level];
},
onSelectLevel: function(listView, itemView, record) {
this.level = record.get('value');
if (this.levels[this.level] === undefined)
this.levels[this.level] = this.props.get_Lvl(this.level);
this.fillLevelProps(this.levels[this.level]);
this._changedProps = this.levels[this.level];
},
fillLevelProps: function(levelProps) {
if (!levelProps) return;
2019-12-18 14:51:18 +00:00
this.cmbAlign.setValue((levelProps.get_Align()!==undefined) ? levelProps.get_Align() : '');
2019-12-18 13:48:36 +00:00
var format = levelProps.get_Format(),
textPr = levelProps.get_TextPr(),
text = levelProps.get_Text();
if (text && format == Asc.c_oAscNumberingFormat.Bullet) {
this.bulletProps.symbol = text[0].get_Value();
}
if (textPr) {
this.cmbSize.setValue(textPr.get_FontSize() || -1);
this.bulletProps.font = textPr.get_FontFamily();
var color = textPr.get_Color();
this.btnColor.menu.items[0].setChecked(color===undefined, true);
2019-12-19 12:01:49 +00:00
this.btnColor.menu.items[1].setChecked(!!color && color.get_auto(), true);
2019-12-18 13:48:36 +00:00
if (color && !color.get_auto()) {
if ( typeof(color) == 'object' ) {
var isselected = false;
for (var i=0; i<10; i++) {
if ( Common.Utils.ThemeColor.ThemeValues[i] == color.effectValue ) {
this.colors.select(color,true);
isselected = true;
break;
2019-12-04 10:35:56 +00:00
}
2019-12-18 13:48:36 +00:00
}
if (!isselected) this.colors.clearSelection();
color = Common.Utils.ThemeColor.getHexColor(color.get_r(), color.get_g(), color.get_b());
} else
this.colors.select(color,true);
} else {
this.colors.clearSelection();
2021-05-04 11:24:28 +00:00
color = '000000';
2019-12-04 10:35:56 +00:00
}
2019-12-18 13:48:36 +00:00
this.btnColor.setColor(color);
}
if (this.type>0) {
if (format == Asc.c_oAscNumberingFormat.Bullet) {
if (!this.cmbFormat.store.findWhere({value: Asc.c_oAscNumberingFormat.Bullet, symbol: this.bulletProps.symbol, font: this.bulletProps.font}))
this.cmbFormat.store.add({ displayValue: this.txtSymbol + ': ', value: Asc.c_oAscNumberingFormat.Bullet, symbol: this.bulletProps.symbol, font: this.bulletProps.font }, {at: this.cmbFormat.store.length-1});
this.cmbFormat.setData(this.cmbFormat.store.models);
this.cmbFormat.selectRecord(this.cmbFormat.store.findWhere({value: Asc.c_oAscNumberingFormat.Bullet, symbol: this.bulletProps.symbol, font: this.bulletProps.font}));
} else
2019-12-18 14:51:18 +00:00
this.cmbFormat.setValue((format!==undefined) ? format : '');
2019-12-04 10:35:56 +00:00
}
},
2019-12-17 11:52:30 +00:00
txtTitle: 'List Settings',
2019-12-04 10:35:56 +00:00
txtSize: 'Size',
txtColor: 'Color',
txtBullet: 'Bullet',
txtFont: 'Font and Symbol',
txtAlign: 'Alignment',
textLeft: 'Left',
textCenter: 'Center',
textRight: 'Right',
2019-12-19 12:01:49 +00:00
textAuto: 'Automatic',
2019-12-17 11:52:30 +00:00
textPreview: 'Preview',
txtType: 'Type',
2019-12-17 14:25:12 +00:00
txtLikeText: 'Like a text',
2019-12-18 13:48:36 +00:00
textLevel: 'Level',
txtNone: 'None',
2019-12-19 11:01:19 +00:00
txtNewBullet: 'New bullet',
2019-12-18 13:48:36 +00:00
txtSymbol: 'Symbol'
}, DE.Views.ListSettingsDialog || {}))
2019-12-04 10:35:56 +00:00
});