Merge pull request #834 from ONLYOFFICE/feature/de-text-to-table

Feature/de text to table
This commit is contained in:
Julia Radzhabova 2021-04-23 15:35:01 +03:00 committed by GitHub
commit f1a5a910fb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
28 changed files with 714 additions and 23 deletions

View file

@ -205,7 +205,7 @@ define([
plugin.set_Name(item.get('name'));
plugin.set_Guid(item.get('guid'));
plugin.set_BaseUrl(item.get('baseUrl'));
plugin.set_MinVersion(item.get('minVersion'));
plugin.set_MinVersion && plugin.set_MinVersion(item.get('minVersion'));
var variations = item.get('variations'),
variationsArr = [];
@ -513,7 +513,7 @@ define([
var pluginStore = this.getApplication().getCollection('Common.Collections.Plugins'),
isEdit = me.appOptions.isEdit,
editor = me.editor,
apiVersion = me.api.GetVersion();
apiVersion = me.api.GetVersion ? me.api.GetVersion() : null;
if ( pluginsdata instanceof Array ) {
var arr = [], arrUI = [],
lang = me.appOptions.lang.split(/[\-_]/)[0];

View file

@ -60,7 +60,8 @@ define([
'documenteditor/main/app/view/WatermarkSettingsDialog',
'documenteditor/main/app/view/ListSettingsDialog',
'documenteditor/main/app/view/DateTimeDialog',
'documenteditor/main/app/view/LineNumbersDialog'
'documenteditor/main/app/view/LineNumbersDialog',
'documenteditor/main/app/view/TextToTableDialog'
], function () {
'use strict';
@ -1511,9 +1512,8 @@ define([
},
onInsertTableClick: function(menu, item, e) {
var me = this;
if (item.value === 'custom') {
var me = this;
(new Common.Views.InsertTableDialog({
handler: function(result, value) {
if (result == 'ok') {
@ -1534,6 +1534,16 @@ define([
} else if (item.value == 'erase') {
item.isChecked() && menu.items[2].setChecked(false, true);
this.api.SetTableEraseMode(item.isChecked());
} else if (item.value == 'convert') {
(new DE.Views.TextToTableDialog({
props: this.api.asc_PreConvertTextToTable(),
handler: function(result, value) {
if (result == 'ok' && me.api) {
me.api.asc_ConvertTextToTable(value);
}
Common.NotificationCenter.trigger('edit:complete', me.toolbar);
}
})).show();
}
},

View file

@ -113,25 +113,17 @@
<tr>
<td class="padding-small" colspan=2>
<label style="margin-top: 3px;"><%= scope.textHeight %></label>
<div id="table-btn-distrub-rows" style="display: inline-block; float:right; margin-left: 4px;"></div>
<div id="table-spin-cell-height" style="display: inline-block; float:right;"></div>
</td>
</tr>
<tr>
<td class="padding-small" colspan=2>
<label style="margin-top: 3px;"><%= scope.textWidth %></label>
<div id="table-btn-distrub-cols" style="display: inline-block; float:right; margin-left: 4px;"></div>
<div id="table-spin-cell-width" style="display: inline-block; float:right;"></div>
</td>
</tr>
<tr>
<td class="padding-small" colspan=2>
<button type="button" class="btn btn-text-default" id="table-btn-distrub-rows" style="width:100%;"><%= scope.textDistributeRows %></button>
</td>
</tr>
<tr>
<td class="padding-small" colspan=2>
<button type="button" class="btn btn-text-default" id="table-btn-distrub-cols" style="width:100%;"><%= scope.textDistributeCols %></button>
</td>
</tr>
<tr>
<td class="padding-small" colspan=2>
<div class="separator horizontal"></div>
@ -157,6 +149,16 @@
<div class="separator horizontal"></div>
</td>
</tr>
<tr>
<td class="padding-small" colspan=2>
<div id="table-btn-convert-to-text" style="width:100%;"></div>
</td>
</tr>
<tr>
<td class="padding-small" colspan=2>
<div class="separator horizontal"></div>
</td>
</tr>
<tr>
<td align="center" colspan=2>
<label class="link" id="table-advanced-link"><%= scope.textAdvanced %></label>

View file

@ -51,7 +51,8 @@ define([
'common/main/lib/component/ComboDataView',
'common/main/lib/view/InsertTableDialog',
'documenteditor/main/app/view/TableSettingsAdvanced',
'documenteditor/main/app/view/TableFormulaDialog'
'documenteditor/main/app/view/TableFormulaDialog',
'documenteditor/main/app/view/TableToTextDialog'
], function (menuTemplate, $, _, Backbone) {
'use strict';
@ -366,7 +367,7 @@ define([
this.numHeight = new Common.UI.MetricSpinner({
el: $('#table-spin-cell-height'),
step: .1,
width: 115,
width: 90,
defaultUnit : "cm",
value: '1 cm',
maxValue: 55.88,
@ -384,7 +385,7 @@ define([
this.numWidth = new Common.UI.MetricSpinner({
el: $('#table-spin-cell-width'),
step: .1,
width: 115,
width: 90,
defaultUnit : "cm",
value: '1 cm',
maxValue: 55.88,
@ -400,7 +401,10 @@ define([
this.spinners.push(this.numWidth);
this.btnDistributeRows = new Common.UI.Button({
el: $('#table-btn-distrub-rows')
parentEl: $('#table-btn-distrub-rows', me.$el),
cls: 'btn-toolbar',
iconCls: 'toolbar__icon distribute-rows',
hint: this.textDistributeRows
});
this.lockedControls.push(this.btnDistributeRows);
this.btnDistributeRows.on('click', _.bind(function(btn){
@ -408,7 +412,10 @@ define([
}, this));
this.btnDistributeCols = new Common.UI.Button({
el: $('#table-btn-distrub-cols')
parentEl: $('#table-btn-distrub-cols', me.$el),
cls: 'btn-toolbar',
iconCls: 'toolbar__icon distribute-columns',
hint: this.textDistributeCols
});
this.lockedControls.push(this.btnDistributeCols);
this.btnDistributeCols.on('click', _.bind(function(btn){
@ -421,6 +428,16 @@ define([
this.lockedControls.push(this.btnAddFormula);
this.btnAddFormula.on('click', _.bind(this.onAddFormula, this));
this.btnConvert = new Common.UI.Button({
parentEl: $('#table-btn-convert-to-text'),
cls : 'btn-toolbar',
iconCls : 'toolbar__icon table-to-text',
caption : this.textConvert,
style : 'width: 100%;text-align: left;'
});
this.btnConvert.on('click', _.bind(this.onConvertTable, this));
this.lockedControls.push(this.btnConvert);
this.linkAdvanced = $('#table-advanced-link');
$(this.el).on('click', '#table-advanced-link', _.bind(this.openAdvancedSettings, this));
},
@ -788,6 +805,21 @@ define([
}
},
onConvertTable: function(e) {
var me = this;
if (me.api && !this._locked){
(new DE.Views.TableToTextDialog({
handler: function(dlg, result) {
if (result == 'ok') {
var settings = dlg.getSettings();
me.api.asc_ConvertTableToText(settings.type, settings.separator, settings.nested);
}
me.fireEvent('editcomplete', me);
}
})).show();
}
},
setLocked: function (locked) {
this._locked = locked;
},
@ -858,7 +890,8 @@ define([
txtTable_Light: 'Light',
txtTable_Dark: 'Dark',
txtTable_Colorful: 'Colorful',
txtTable_Accent: 'Accent'
txtTable_Accent: 'Accent',
textConvert: 'Convert Table to Text'
}, DE.Views.TableSettings || {}));
});

View file

@ -0,0 +1,208 @@
/*
*
* (c) Copyright Ascensio System SIA 2010-2021
*
* 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
*
*/
/**
* TableToTextDialog.js
*
* Created by Julia Radzhabova on 15/04/21
* Copyright (c) 2021 Ascensio System SIA. All rights reserved.
*
*/
define([
'common/main/lib/component/Window',
'common/main/lib/component/CheckBox',
'common/main/lib/component/RadioBox'
], function () { 'use strict';
DE.Views.TableToTextDialog = Common.UI.Window.extend(_.extend({
options: {
width: 240,
height: 254,
header: true,
style: 'min-width: 240px;',
cls: 'modal-dlg',
buttons: ['ok', 'cancel']
},
initialize : function(options) {
_.extend(this.options, {
title: this.textTitle
}, options || {});
this.template = [
'<div class="box">',
'<div style="margin-bottom: 8px;"><label style="font-weight: bold;">' + this.textSeparator + '</label></div>',
'<div id="id-table-text-radio-para" style="margin-bottom: 8px;"></div>',
'<div id="id-table-text-radio-tabs" style="margin-bottom: 8px;"></div>',
'<div id="id-table-text-radio-semi" style="margin-bottom: 5px;"></div>',
'<div style="margin-bottom: 24px;">',
'<div id="id-table-text-radio-other" style="display: inline-block;vertical-align: middle;margin-right: 10px;"></div>',
'<div id="id-table-text-txt-other" style="display: inline-block;vertical-align: middle;"></div>',
'</div>',
'<div id="id-table-text-check-nested"></div>',
'</div>'
].join('');
this.options.tpl = _.template(this.template)(this.options);
Common.UI.Window.prototype.initialize.call(this, this.options);
},
render: function() {
Common.UI.Window.prototype.render.call(this);
var $window = this.getChild();
this.rbPara = new Common.UI.RadioBox({
el: $window.find('#id-table-text-radio-para'),
labelText: this.textPara,
name: 'asc-radio-table-text-separator',
value: 1
}).on('change', _.bind(this.onRadioSeparatorChange, this));
this.rbTabs = new Common.UI.RadioBox({
el: $window.find('#id-table-text-radio-tabs'),
labelText: this.textTab,
name: 'asc-radio-table-text-separator',
value: 2,
checked: true
}).on('change', _.bind(this.onRadioSeparatorChange, this));
this.rbSemi = new Common.UI.RadioBox({
el: $window.find('#id-table-text-radio-semi'),
labelText: this.textSemicolon,
name: 'asc-radio-table-text-separator',
value: ';'
}).on('change', _.bind(this.onRadioSeparatorChange, this));
this.rbOther = new Common.UI.RadioBox({
el: $window.find('#id-table-text-radio-other'),
labelText: this.textOther,
name: 'asc-radio-table-text-separator',
value: 3
}).on('change', _.bind(this.onRadioSeparatorChange, this));
this.inputOther = new Common.UI.InputField({
el : $window.find('#id-table-text-txt-other'),
style : 'width: 30px;',
maxLength: 1,
validateOnChange: true,
validateOnBlur: false,
value: '-',
disabled: true
});
this.chNested = new Common.UI.CheckBox({
el: $window.find('#id-table-text-check-nested'),
labelText: this.textNested,
value: true,
disabled: true
});
this.getChild().find('.dlg-btn').on('click', _.bind(this.onBtnClick, this));
},
getFocusedComponents: function() {
return [this.rbPara, this.rbTabs, this.rbSemi, this.rbOther, this.inputOther, this.chNested];
},
getDefaultFocusableComponent: function () {
return this.rbTabs;
},
setSettings: function (props) {
if (props) {
}
},
_handleInput: function(state) {
if (this.options.handler) {
if (state == 'ok') {
if (!this.isRangeValid()) return;
}
this.options.handler.call(this, this, state);
}
this.close();
},
onBtnClick: function(event) {
this._handleInput(event.currentTarget.attributes['result'].value);
},
onPrimary: function() {
this._handleInput('ok');
return false;
},
getSettings: function() {
var type = this.rbPara.getValue() ? 1 : (this.rbTabs.getValue() ? 2 : 3),
separator = this.rbSemi.getValue() ? ';'.charCodeAt(0) : (this.rbOther.getValue() ? this.inputOther.getValue().charCodeAt(0) : undefined);
return {type: type, separator: separator, nested: this.chNested.getValue()==='checked'};
},
onRadioSeparatorChange: function(field, newValue, eOpts) {
var value = field.options.value,
me = this;
if (newValue) {
this.inputOther.setDisabled(value!==3);
(value==3) && setTimeout(function(){ me.inputOther.focus(); }, 1);
(value!==1) && this.chNested.setValue(true);
this.chNested.setDisabled(value!==1);
}
},
isRangeValid: function() {
if (this.rbOther.getValue() && this.inputOther.getValue()=='') {
var me = this;
Common.UI.warning({
msg: this.textEmpty,
maxwidth: 600,
callback: function(btn){
me.inputOther.focus();
}});
return false;
}
return true;
},
textTitle: 'Convert Table to Text',
textSeparator: 'Separate text with',
textPara: 'Paragraph marks',
textTab: 'Tabs',
textSemicolon: 'Semicolons',
textOther: 'Other',
textNested: 'Convert nested tables',
textEmpty: 'You must type a character for the custom separator.'
}, DE.Views.TableToTextDialog || {}))
});

View file

@ -0,0 +1,411 @@
/*
*
* (c) Copyright Ascensio System SIA 2010-2021
*
* 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
*
*/
/**
* TextToTableDialog.js
*
* Created by Julia Radzhabova on 15/04/21
* Copyright (c) 2021 Ascensio System SIA. All rights reserved.
*
*/
define([
'common/main/lib/view/AdvancedSettingsWindow',
'common/main/lib/component/CheckBox',
'common/main/lib/component/MetricSpinner'
], function () { 'use strict';
DE.Views.TextToTableDialog = Common.Views.AdvancedSettingsWindow.extend(_.extend({
options: {
contentWidth: 300,
height: 405,
buttons: ['ok', 'cancel']
},
initialize : function(options) {
var me = this;
_.extend(this.options, {
title: this.textTitle,
template: [
'<div class="box" style="height:' + (me.options.height - 85) + 'px;">',
'<div class="content-panel" style="padding: 0 5px;"><div class="inner-content">',
'<div class="settings-panel active">',
'<table cols="2" style="width: auto;">',
'<tr>',
'<td colspan="2" class="padding-small">',
'<label class="header">', me.textTableSize,'</label>',
'</td>',
'</tr>',
'<tr>',
'<td class="padding-small">',
'<label style="margin-right: 10px;">', me.textColumns,'</label>',
'</td>',
'<td class="padding-small">',
'<div id="id-text-table-spn-columns"></div>',
'</td>',
'</tr>',
'<tr>',
'<td class="padding-large">',
'<label style="margin-right: 10px;">', me.textRows,'</label>',
'</td>',
'<td class="padding-large">',
'<div id="id-text-table-spn-rows"></div>',
'</td>',
'</tr>',
'</table>',
'<table cols="1">',
'<tr>',
'<td style="padding-bottom: 5px;">',
'<label class="header">', me.textAutofit,'</label>',
'</td>',
'</tr>',
'<tr>',
'<td style="padding-bottom: 5px;">',
'<div id="id-text-table-radio-fixed" style="display: inline-block;margin-right: 10px;"></div>',
'<div id="id-text-table-spn-fixed" style="display: inline-block;"></div>',
'</td>',
'</tr>',
'<tr>',
'<td class="padding-small">',
'<div id="id-text-table-radio-contents"></div>',
'</td>',
'</tr>',
'<tr>',
'<td class="padding-large">',
'<div id="id-text-table-radio-window"></div>',
'</td>',
'</tr>',
'<tr>',
'<td class="padding-small">',
'<label class="header">', me.textSeparator,'</label>',
'</td>',
'</tr>',
'<tr>',
'<td class="padding-small">',
'<div id="id-text-table-radio-para"></div>',
'</td>',
'</tr>',
'<tr>',
'<td class="padding-small">',
'<div id="id-text-table-radio-tabs"></div>',
'</td>',
'</tr>',
'<tr>',
'<td style="padding-bottom: 5px;">',
'<div id="id-text-table-radio-semi"></div>',
'</td>',
'</tr>',
'<tr>',
'<td class="padding-small">',
'<div id="id-text-table-radio-other" style="display: inline-block;margin-right: 10px;vertical-align: middle;"></div>',
'<div id="id-text-table-txt-other" style="display: inline-block;vertical-align: middle;"></div>',
'</td>',
'</tr>',
'</table>',
'</div></div>',
'</div>',
'</div>'
].join('')
}, options);
this.handler = options.handler;
this.props = options.props;
this.spinners = [];
Common.Views.AdvancedSettingsWindow.prototype.initialize.call(this, this.options);
},
render: function() {
Common.Views.AdvancedSettingsWindow.prototype.render.call(this);
var $window = this.getChild(),
me = this;
this.spnColumns = new Common.UI.MetricSpinner({
el : $window.find('#id-text-table-spn-columns'),
step : 1,
width : 80,
value : 2,
defaultUnit : '',
maxValue : 63,
minValue : 1,
allowDecimal: false
}).on('change', function(field, newValue, oldValue, eOpts){
if (me.props) {
var size = me.props.put_ColsCount(field.getNumberValue(), true);
size && me.spnRows.setValue(size[0], true);
}
});
this.spnRows = new Common.UI.MetricSpinner({
el : $window.find('#id-text-table-spn-rows'),
step : 1,
width : 80,
value : 2,
defaultUnit : '',
maxValue : 100,
minValue : 1,
allowDecimal: false,
disabled: true
});
this.spnWidth = new Common.UI.MetricSpinner({
el: $window.find('#id-text-table-spn-fixed'),
step: 0.1,
width: 80,
defaultUnit : 'cm',
value: 'Auto',
autoText : this.txtAutoText,
maxValue: 55.87,
minValue: 0.42,
allowAuto: true
});
this.spinners.push(this.spnWidth);
this.rbFixed = new Common.UI.RadioBox({
el: $window.find('#id-text-table-radio-fixed'),
labelText: this.textFixed,
name: 'asc-radio-text-table-autofit',
value: 1,
checked: true
}).on('change', _.bind(this.onRadioAutofitChange, this));
this.rbContents = new Common.UI.RadioBox({
el: $window.find('#id-text-table-radio-contents'),
labelText: this.textContents,
name: 'asc-radio-text-table-autofit',
value: 2
}).on('change', _.bind(this.onRadioAutofitChange, this));
this.rbWindow = new Common.UI.RadioBox({
el: $window.find('#id-text-table-radio-window'),
labelText: this.textWindow,
name: 'asc-radio-text-table-autofit',
value: 3
}).on('change', _.bind(this.onRadioAutofitChange, this));
this.rbPara = new Common.UI.RadioBox({
el: $window.find('#id-text-table-radio-para'),
labelText: this.textPara,
name: 'asc-radio-text-table-separator',
value: 1,
checked: true
}).on('change', _.bind(this.onRadioSeparatorChange, this));
this.rbTabs = new Common.UI.RadioBox({
el: $window.find('#id-text-table-radio-tabs'),
labelText: this.textTab,
name: 'asc-radio-text-table-separator',
value: 2
}).on('change', _.bind(this.onRadioSeparatorChange, this));
this.rbSemi = new Common.UI.RadioBox({
el: $window.find('#id-text-table-radio-semi'),
labelText: this.textSemicolon,
name: 'asc-radio-text-table-separator',
value: ';'
}).on('change', _.bind(this.onRadioSeparatorChange, this));
this.rbOther = new Common.UI.RadioBox({
el: $window.find('#id-text-table-radio-other'),
labelText: this.textOther,
name: 'asc-radio-text-table-separator',
value: 3
}).on('change', _.bind(this.onRadioSeparatorChange, this));
this.inputOther = new Common.UI.InputField({
el : $window.find('#id-text-table-txt-other'),
style : 'width: 30px;',
maxLength: 1,
validateOnChange: true,
validateOnBlur: false,
value: '-'
}).on ('changing', function(input, newValue) {
if (me.props && newValue) {
me.props.put_SeparatorType(3, true);
var size = me.props.put_Separator(newValue.charCodeAt(0), true);
if (size) {
me.spnColumns.setValue(size[1], true);
me.spnRows.setValue(size[0], true);
}
}
});
this.afterRender();
},
getFocusedComponents: function() {
return [this.spnColumns, this.spnStartAt, this.spnWidth, this.rbFixed, this.rbContents, this.rbWindow, this.rbPara, this.rbTabs, this.rbSemi, this.rbOther, this.inputOther];
},
getDefaultFocusableComponent: function () {
return this.spnColumns;
},
afterRender: function() {
this.updateMetricUnit();
this._setDefaults(this.props);
},
_setDefaults: function (props) {
if (props) {
var val = props.get_Size();
this.spnColumns.setValue(val[1], true);
this.spnRows.setValue(val[0], true);
val = props.get_AutoFitType();
(val===1) ? this.rbFixed.setValue(true, true) : (val===2 ? this.rbContents.setValue(true, true) : this.rbWindow.setValue(true, true));
(val===1) && this.spnWidth.setValue(props.get_Fit()>-1 ? Common.Utils.Metric.fnRecalcFromMM(props.get_Fit()) : -1, true);
this.spnWidth.setDisabled(val!==1);
val = props.get_SeparatorType();
switch (val) {
case 1:
this.rbPara.setValue(true, true);
this.inputOther.setDisabled(true);
break;
case 2:
this.rbTabs.setValue(true, true);
this.inputOther.setDisabled(true);
break;
case 3:
val = String.fromCharCode(props.get_Separator());
if (val == ';') {
this.rbSemi.setValue(true, true);
this.inputOther.setDisabled(true);
} else {
this.rbOther.setValue(true, true);
this.inputOther.setValue(val);
this.inputOther.setDisabled(false);
}
break;
}
}
},
getSettings: function () {
if (this.props) {
this.props.put_AutoFitType(this.rbFixed.getValue() ? 1 : (this.rbContents.getValue() ? 2 : 3));
this.rbFixed.getValue() && this.props.put_Fit(Common.Utils.Metric.fnRecalcToMM(this.spnWidth.getNumberValue()));
}
return this.props;
},
onDlgBtnClick: function(event) {
var state = (typeof(event) == 'object') ? event.currentTarget.attributes['result'].value : event;
if (state == 'ok') {
if (!this.isRangeValid()) return;
this.handler && this.handler.call(this, state, (state == 'ok') ? this.getSettings() : undefined);
}
this.close();
},
onPrimary: function() {
this.onDlgBtnClick('ok');
return false;
},
isRangeValid: function() {
if (this.rbOther.getValue() && this.inputOther.getValue()=='') {
var me = this;
Common.UI.warning({
msg: this.textEmpty,
maxwidth: 600,
callback: function(btn){
me.inputOther.focus();
}});
return false;
}
return true;
},
onRadioAutofitChange: function(field, newValue, eOpts) {
var value = field.options.value,
me = this;
if (newValue && this.props) {
me.spnWidth.setDisabled(value!==1);
(value==1) && setTimeout(function(){me.spnWidth.focus(); }, 1);
}
},
onRadioSeparatorChange: function(field, newValue, eOpts) {
var value = field.options.value,
me = this,
size;
if (newValue && this.props) {
this.inputOther.setDisabled(value!==3);
if (typeof value === 'string') {
size = this.props.put_Separator(value.charCodeAt(0), true);
} else {
if (value==3) {
if (this.inputOther.getValue())
size = this.props.put_Separator(this.inputOther.getValue().charCodeAt(0), true);
setTimeout(function(){ me.inputOther.focus(); }, 1);
} else {
size = this.props.put_SeparatorType(value, true);
}
}
if (size) {
this.spnColumns.setValue(size[1], true);
this.spnRows.setValue(size[0], true);
}
}
},
updateMetricUnit: function() {
if (this.spinners) {
for (var i=0; i<this.spinners.length; i++) {
var spinner = this.spinners[i];
spinner.setDefaultUnit(Common.Utils.Metric.getCurrentMetricName());
spinner.setStep(Common.Utils.Metric.getCurrentMetric()==Common.Utils.Metric.c_MetricUnits.pt ? 1 : 0.1);
}
}
},
textTitle: 'Convert Text to Table',
textTableSize: 'Table Size',
textColumns: 'Columns',
textRows: 'Rows',
textAutofit: 'Autofit Behavior',
textFixed: 'Fixed column width',
textContents: 'Autofit to contents',
textWindow: 'Autofit to window',
textSeparator: 'Separate Text at',
textPara: 'Paragraphs',
textTab: 'Tabs',
textSemicolon: 'Semicolons',
textOther: 'Other',
txtAutoText: 'Auto',
textEmpty: 'You must type a character for the custom separator.'
}, DE.Views.TextToTableDialog || {}))
});

View file

@ -457,7 +457,8 @@ define([
{template: _.template('<div id="id-toolbar-menu-tablepicker" class="dimension-picker" style="margin: 5px 10px;"></div>')},
{caption: this.mniCustomTable, value: 'custom'},
{caption: this.mniDrawTable, value: 'draw', checkable: true},
{caption: this.mniEraseTable, value: 'erase', checkable: true}
{caption: this.mniEraseTable, value: 'erase', checkable: true},
{caption: this.mniTextToTable, value: 'convert'}
]
})
});
@ -2451,7 +2452,8 @@ define([
mniUpperCase: 'UPPERCASE',
mniCapitalizeWords: 'Capitalize Each Word',
mniToggleCase: 'tOGGLE cASE',
textChangeLevel: 'Change List Level'
textChangeLevel: 'Change List Level',
mniTextToTable: 'Convert Text to Table'
}
})(), DE.Views.Toolbar || {}));
});

View file

@ -2394,6 +2394,7 @@
"DE.Views.TableSettings.txtTable_ListTable": "List Table",
"DE.Views.TableSettings.txtTable_PlainTable": "Plain Table",
"DE.Views.TableSettings.txtTable_TableGrid": "Table Grid",
"DE.Views.TableSettings.textConvert": "Convert Table to Text",
"DE.Views.TableSettingsAdvanced.textAlign": "Alignment",
"DE.Views.TableSettingsAdvanced.textAlignment": "Alignment",
"DE.Views.TableSettingsAdvanced.textAllowSpacing": "Spacing between cells",
@ -2466,6 +2467,14 @@
"DE.Views.TableSettingsAdvanced.txtNoBorders": "No borders",
"DE.Views.TableSettingsAdvanced.txtPercent": "Percent",
"DE.Views.TableSettingsAdvanced.txtPt": "Point",
"DE.Views.TableToTextDialog.textTitle": "Convert Table to Text",
"DE.Views.TableToTextDialog.textSeparator": "Separate text with",
"DE.Views.TableToTextDialog.textPara": "Paragraph marks",
"DE.Views.TableToTextDialog.textTab": "Tabs",
"DE.Views.TableToTextDialog.textSemicolon": "Semicolons",
"DE.Views.TableToTextDialog.textOther": "Other",
"DE.Views.TableToTextDialog.textNested": "Convert nested tables",
"DE.Views.TableToTextDialog.textEmpty": "You must type a character for the custom separator.",
"DE.Views.TextArtSettings.strColor": "Color",
"DE.Views.TextArtSettings.strFill": "Fill",
"DE.Views.TextArtSettings.strSize": "Size",
@ -2489,6 +2498,21 @@
"DE.Views.TextArtSettings.tipAddGradientPoint": "Add gradient point",
"DE.Views.TextArtSettings.tipRemoveGradientPoint": "Remove gradient point",
"DE.Views.TextArtSettings.txtNoBorders": "No Line",
"DE.Views.TextToTableDialog.textTitle": "Convert Text to Table",
"DE.Views.TextToTableDialog.textTableSize": "Table Size",
"DE.Views.TextToTableDialog.textColumns": "Columns",
"DE.Views.TextToTableDialog.textRows": "Rows",
"DE.Views.TextToTableDialog.textAutofit": "Autofit Behavior",
"DE.Views.TextToTableDialog.textFixed": "Fixed column width",
"DE.Views.TextToTableDialog.textContents": "Autofit to contents",
"DE.Views.TextToTableDialog.textWindow": "Autofit to window",
"DE.Views.TextToTableDialog.textSeparator": "Separate Text at",
"DE.Views.TextToTableDialog.textPara": "Paragraphs",
"DE.Views.TextToTableDialog.textTab": "Tabs",
"DE.Views.TextToTableDialog.textSemicolon": "Semicolons",
"DE.Views.TextToTableDialog.textOther": "Other",
"DE.Views.TextToTableDialog.txtAutoText": "Auto",
"DE.Views.TextToTableDialog.textEmpty": "You must type a character for the custom separator.",
"DE.Views.Toolbar.capBtnAddComment": "Add Comment",
"DE.Views.Toolbar.capBtnBlankPage": "Blank Page",
"DE.Views.Toolbar.capBtnColumns": "Columns",
@ -2695,6 +2719,7 @@
"DE.Views.Toolbar.txtScheme7": "Equity",
"DE.Views.Toolbar.txtScheme8": "Flow",
"DE.Views.Toolbar.txtScheme9": "Foundry",
"DE.Views.Toolbar.mniTextToTable": "Convert Text to Table",
"DE.Views.WatermarkSettingsDialog.textAuto": "Auto",
"DE.Views.WatermarkSettingsDialog.textBold": "Bold",
"DE.Views.WatermarkSettingsDialog.textColor": "Text color",

Binary file not shown.

After

Width:  |  Height:  |  Size: 351 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 213 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 228 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 379 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 372 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 228 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 239 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 427 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 391 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 246 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 262 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 456 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 306 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 207 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 217 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 329 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 511 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 272 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 301 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 552 B