3181 lines
152 KiB
JavaScript
3181 lines
152 KiB
JavaScript
/*
|
|
*
|
|
* (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
|
|
*
|
|
*/
|
|
/**
|
|
* DocumentHolder.js
|
|
*
|
|
* DocumentHolder view
|
|
*
|
|
* Created by Alexander Yuzhin on 1/11/14
|
|
* Copyright (c) 2018 Ascensio System SIA. All rights reserved.
|
|
*
|
|
*/
|
|
|
|
define([
|
|
'jquery',
|
|
'underscore',
|
|
'backbone',
|
|
'gateway',
|
|
'common/main/lib/util/utils',
|
|
'common/main/lib/component/Menu',
|
|
'common/main/lib/component/Calendar',
|
|
'common/main/lib/view/InsertTableDialog',
|
|
'common/main/lib/view/CopyWarningDialog',
|
|
'common/main/lib/view/OptionsDialog',
|
|
'documenteditor/main/app/view/DropcapSettingsAdvanced',
|
|
'documenteditor/main/app/view/HyperlinkSettingsDialog',
|
|
'documenteditor/main/app/view/ParagraphSettingsAdvanced',
|
|
'documenteditor/main/app/view/TableSettingsAdvanced',
|
|
'documenteditor/main/app/view/ControlSettingsDialog',
|
|
'documenteditor/main/app/view/NumberingValueDialog',
|
|
'documenteditor/main/app/view/CellsAddDialog'
|
|
], function ($, _, Backbone, gateway) { 'use strict';
|
|
|
|
DE.Views.DocumentHolder = Backbone.View.extend(_.extend({
|
|
el: '#editor_sdk',
|
|
|
|
// Compile our stats template
|
|
template: null,
|
|
|
|
// Delegated events for creating new items, and clearing completed ones.
|
|
events: {
|
|
},
|
|
|
|
initialize: function () {
|
|
this._currentMathObj = undefined;
|
|
this._currentSpellObj = undefined;
|
|
this._currentParaObjDisabled = false;
|
|
this._currLang = {};
|
|
this._isDisabled = false;
|
|
this._docProtection = {
|
|
isReadOnly: false,
|
|
isReviewOnly: false,
|
|
isFormsOnly: false,
|
|
isCommentsOnly: false
|
|
};
|
|
},
|
|
|
|
render: function () {
|
|
this.fireEvent('render:before', this);
|
|
|
|
this.cmpEl = $(this.el);
|
|
|
|
this.fireEvent('render:after', this);
|
|
return this;
|
|
},
|
|
|
|
setApi: function(o) {
|
|
this.api = o;
|
|
return this;
|
|
},
|
|
|
|
setMode: function(m) {
|
|
this.mode = m;
|
|
this._fillFormMode = !this.mode.isEdit && this.mode.canFillForms;
|
|
return this;
|
|
},
|
|
|
|
createDelayedElementsViewer: function() {
|
|
var me = this;
|
|
|
|
me.menuViewCopy = new Common.UI.MenuItem({
|
|
iconCls: 'menu__icon btn-copy',
|
|
caption: me.textCopy,
|
|
value: 'copy'
|
|
});
|
|
|
|
me.menuViewPaste = new Common.UI.MenuItem({
|
|
iconCls: 'menu__icon btn-paste',
|
|
caption : me.textPaste,
|
|
value : 'paste'
|
|
});
|
|
|
|
me.menuViewCut = new Common.UI.MenuItem({
|
|
iconCls: 'menu__icon btn-cut',
|
|
caption : me.textCut,
|
|
value : 'cut'
|
|
});
|
|
|
|
me.menuViewUndo = new Common.UI.MenuItem({
|
|
iconCls: 'menu__icon btn-undo',
|
|
caption: me.textUndo
|
|
});
|
|
|
|
me.menuViewCopySeparator = new Common.UI.MenuItem({
|
|
caption: '--'
|
|
});
|
|
|
|
me.menuViewAddComment = new Common.UI.MenuItem({
|
|
iconCls: 'menu__icon btn-menu-comments',
|
|
caption: me.addCommentText
|
|
});
|
|
|
|
me.menuSignatureViewSign = new Common.UI.MenuItem({caption: this.strSign, value: 0 });
|
|
me.menuSignatureDetails = new Common.UI.MenuItem({caption: this.strDetails, value: 1 });
|
|
me.menuSignatureViewSetup = new Common.UI.MenuItem({caption: this.strSetup, value: 2 });
|
|
me.menuSignatureRemove = new Common.UI.MenuItem({caption: this.strDelete, value: 3 });
|
|
me.menuViewSignSeparator = new Common.UI.MenuItem({caption: '--' });
|
|
|
|
me.menuViewPrint = new Common.UI.MenuItem({
|
|
iconCls: 'menu__icon btn-print',
|
|
caption : me.txtPrintSelection
|
|
});
|
|
|
|
this.viewModeMenu = new Common.UI.Menu({
|
|
cls: 'shifted-right',
|
|
initMenu: function (value) {
|
|
var isInChart = (value.imgProps && value.imgProps.value && !_.isNull(value.imgProps.value.get_ChartProperties())),
|
|
isInShape = (value.imgProps && value.imgProps.value && !_.isNull(value.imgProps.value.get_ShapeProperties())),
|
|
signGuid = (value.imgProps && value.imgProps.value && me.mode.isSignatureSupport) ? value.imgProps.value.asc_getSignatureId() : undefined,
|
|
signProps = (signGuid) ? me.api.asc_getSignatureSetup(signGuid) : null,
|
|
isInSign = !!signProps && me._canProtect,
|
|
control_lock = (value.paraProps) ? (!value.paraProps.value.can_DeleteBlockContentControl() || !value.paraProps.value.can_EditBlockContentControl() ||
|
|
!value.paraProps.value.can_DeleteInlineContentControl() || !value.paraProps.value.can_EditInlineContentControl()) : false,
|
|
canComment = !isInChart && me.api.can_AddQuotedComment() !== false && me.mode.canCoAuthoring && me.mode.canComments && !me._isDisabled && !control_lock,
|
|
canEditControl = false;
|
|
|
|
if (me.mode.compatibleFeatures)
|
|
canComment = canComment && !isInShape;
|
|
if (me.api.asc_IsContentControl()) {
|
|
var control_props = me.api.asc_GetContentControlProperties(),
|
|
spectype = control_props ? control_props.get_SpecificType() : Asc.c_oAscContentControlSpecificType.None;
|
|
canComment = canComment && !(spectype==Asc.c_oAscContentControlSpecificType.CheckBox || spectype==Asc.c_oAscContentControlSpecificType.Picture ||
|
|
spectype==Asc.c_oAscContentControlSpecificType.ComboBox || spectype==Asc.c_oAscContentControlSpecificType.DropDownList || spectype==Asc.c_oAscContentControlSpecificType.DateTime);
|
|
|
|
canEditControl = spectype !== undefined && (spectype === Asc.c_oAscContentControlSpecificType.None || spectype === Asc.c_oAscContentControlSpecificType.ComboBox || spectype === Asc.c_oAscContentControlSpecificType.Complex) && !control_lock;
|
|
}
|
|
|
|
me.menuViewUndo.setVisible(me.mode.canCoAuthoring && me.mode.canComments && !me._isDisabled);
|
|
me.menuViewUndo.setDisabled(!me.api.asc_getCanUndo() || me._docProtection.isReadOnly);
|
|
me.menuViewCopySeparator.setVisible(isInSign);
|
|
|
|
var isRequested = (signProps) ? signProps.asc_getRequested() : false;
|
|
me.menuSignatureViewSign.setVisible(isInSign && isRequested);
|
|
me.menuSignatureDetails.setVisible(isInSign && !isRequested);
|
|
me.menuSignatureViewSetup.setVisible(isInSign);
|
|
me.menuSignatureRemove.setVisible(isInSign && !isRequested);
|
|
me.menuViewSignSeparator.setVisible(canComment);
|
|
|
|
if (isInSign) {
|
|
me.menuSignatureViewSign.cmpEl.attr('data-value', signGuid); // sign
|
|
me.menuSignatureDetails.cmpEl.attr('data-value', signProps.asc_getId()); // view certificate
|
|
me.menuSignatureViewSetup.cmpEl.attr('data-value', signGuid); // view signature settings
|
|
me.menuSignatureRemove.cmpEl.attr('data-value', signGuid);
|
|
}
|
|
|
|
me.menuViewAddComment.setVisible(canComment);
|
|
me.menuViewAddComment.setDisabled(value.paraProps && value.paraProps.locked === true || me._docProtection.isReadOnly || me._docProtection.isFormsOnly);
|
|
|
|
var disabled = value.paraProps && value.paraProps.locked === true;
|
|
var cancopy = me.api && me.api.can_CopyCut();
|
|
me.menuViewCopy.setDisabled(!cancopy);
|
|
me.menuViewCut.setVisible(me._fillFormMode && canEditControl);
|
|
me.menuViewCut.setDisabled(disabled || !cancopy || me._docProtection.isReadOnly || me._docProtection.isCommentsOnly);
|
|
me.menuViewPaste.setVisible(me._fillFormMode && canEditControl);
|
|
me.menuViewPaste.setDisabled(disabled || me._docProtection.isReadOnly || me._docProtection.isCommentsOnly);
|
|
me.menuViewPrint.setVisible(me.mode.canPrint && !me._fillFormMode);
|
|
me.menuViewPrint.setDisabled(!cancopy);
|
|
|
|
},
|
|
items: [
|
|
me.menuViewCut,
|
|
me.menuViewCopy,
|
|
me.menuViewPaste,
|
|
me.menuViewUndo,
|
|
me.menuViewPrint,
|
|
me.menuViewCopySeparator,
|
|
me.menuSignatureViewSign,
|
|
me.menuSignatureDetails,
|
|
me.menuSignatureViewSetup,
|
|
me.menuSignatureRemove,
|
|
me.menuViewSignSeparator,
|
|
me.menuViewAddComment
|
|
]
|
|
}).on('hide:after', function (menu, e, isFromInputControl) {
|
|
if (me.suppressEditComplete) {
|
|
me.suppressEditComplete = false;
|
|
return;
|
|
}
|
|
|
|
if (!isFromInputControl) me.fireEvent('editcomplete', me);
|
|
me.currentMenu = null;
|
|
});
|
|
|
|
this.fireEvent('createdelayedelements', [this, 'view']);
|
|
},
|
|
|
|
createDelayedElementsPDFViewer: function() {
|
|
var me = this;
|
|
|
|
me.menuPDFViewCopy = new Common.UI.MenuItem({
|
|
iconCls: 'menu__icon btn-copy',
|
|
caption: me.textCopy,
|
|
value: 'copy'
|
|
});
|
|
|
|
this.viewPDFModeMenu = new Common.UI.Menu({
|
|
cls: 'shifted-right',
|
|
initMenu: function (value) {
|
|
me.menuPDFViewCopy.setDisabled(!(me.api && me.api.can_CopyCut()));
|
|
},
|
|
items: [
|
|
me.menuPDFViewCopy
|
|
]
|
|
}).on('hide:after', function (menu, e, isFromInputControl) {
|
|
if (me.suppressEditComplete) {
|
|
me.suppressEditComplete = false;
|
|
return;
|
|
}
|
|
|
|
if (!isFromInputControl) me.fireEvent('editcomplete', me);
|
|
me.currentMenu = null;
|
|
});
|
|
|
|
this.fireEvent('createdelayedelements', [this, 'pdf']);
|
|
},
|
|
|
|
createDelayedElements: function() {
|
|
var me = this;
|
|
|
|
me.menuInsertCaption = new Common.UI.MenuItem({
|
|
caption : me.txtInsertCaption
|
|
});
|
|
var menuInsertCaptionSeparator = new Common.UI.MenuItem({ caption: '--' });
|
|
|
|
me.menuEquationInsertCaption = new Common.UI.MenuItem({
|
|
caption : me.txtInsertCaption
|
|
});
|
|
var menuEquationInsertCaptionSeparator = new Common.UI.MenuItem({ caption: '--' });
|
|
|
|
me.menuImageAlign = new Common.UI.MenuItem({
|
|
caption : me.textAlign,
|
|
menu : new Common.UI.Menu({
|
|
cls: 'ppm-toolbar shifted-right',
|
|
menuAlign: 'tl-tr',
|
|
items: [
|
|
new Common.UI.MenuItem({
|
|
caption : me.textShapeAlignLeft,
|
|
iconCls : 'menu__icon shape-align-left',
|
|
value: Asc.c_oAscAlignShapeType.ALIGN_LEFT
|
|
}),
|
|
new Common.UI.MenuItem({
|
|
caption : me.textShapeAlignCenter,
|
|
iconCls : 'menu__icon shape-align-center',
|
|
value: Asc.c_oAscAlignShapeType.ALIGN_CENTER
|
|
}),
|
|
new Common.UI.MenuItem({
|
|
caption : me.textShapeAlignRight,
|
|
iconCls : 'menu__icon shape-align-right',
|
|
value: Asc.c_oAscAlignShapeType.ALIGN_RIGHT
|
|
}),
|
|
new Common.UI.MenuItem({
|
|
caption : me.textShapeAlignTop,
|
|
iconCls : 'menu__icon shape-align-top',
|
|
value: Asc.c_oAscAlignShapeType.ALIGN_TOP
|
|
}),
|
|
new Common.UI.MenuItem({
|
|
caption : me.textShapeAlignMiddle,
|
|
iconCls : 'menu__icon shape-align-middle',
|
|
value: Asc.c_oAscAlignShapeType.ALIGN_MIDDLE
|
|
}),
|
|
new Common.UI.MenuItem({
|
|
caption : me.textShapeAlignBottom,
|
|
iconCls : 'menu__icon shape-align-bottom',
|
|
value: Asc.c_oAscAlignShapeType.ALIGN_BOTTOM
|
|
}),
|
|
{caption : '--'},
|
|
new Common.UI.MenuItem({
|
|
caption : me.txtDistribHor,
|
|
iconCls : 'menu__icon shape-distribute-hor',
|
|
value : 6
|
|
}),
|
|
new Common.UI.MenuItem({
|
|
caption : me.txtDistribVert,
|
|
iconCls : 'menu__icon shape-distribute-vert',
|
|
value : 7
|
|
})
|
|
]
|
|
})
|
|
});
|
|
|
|
me.mnuGroup = new Common.UI.MenuItem({
|
|
caption : this.txtGroup,
|
|
iconCls : 'menu__icon shape-group'
|
|
});
|
|
|
|
me.mnuUnGroup = new Common.UI.MenuItem({
|
|
iconCls : 'menu__icon shape-ungroup',
|
|
caption : this.txtUngroup
|
|
});
|
|
|
|
me.menuImageArrange = new Common.UI.MenuItem({
|
|
caption : me.textArrange,
|
|
menu : new Common.UI.Menu({
|
|
cls: 'ppm-toolbar shifted-right',
|
|
menuAlign: 'tl-tr',
|
|
items: [
|
|
new Common.UI.MenuItem({
|
|
caption : me.textArrangeFront,
|
|
iconCls : 'menu__icon arrange-front',
|
|
valign : Asc.c_oAscChangeLevel.BringToFront
|
|
}),
|
|
new Common.UI.MenuItem({
|
|
caption : me.textArrangeBack,
|
|
iconCls : 'menu__icon arrange-back',
|
|
valign : Asc.c_oAscChangeLevel.SendToBack
|
|
}),
|
|
new Common.UI.MenuItem({
|
|
caption : me.textArrangeForward,
|
|
iconCls : 'menu__icon arrange-forward',
|
|
valign : Asc.c_oAscChangeLevel.BringForward
|
|
}),
|
|
new Common.UI.MenuItem({
|
|
caption : me.textArrangeBackward,
|
|
iconCls : 'menu__icon arrange-backward',
|
|
valign : Asc.c_oAscChangeLevel.BringBackward
|
|
}),
|
|
{ caption: '--' },
|
|
me.mnuGroup,
|
|
me.mnuUnGroup
|
|
]
|
|
})
|
|
});
|
|
|
|
me.menuWrapPolygon = new Common.UI.MenuItem({
|
|
caption : me.textEditWrapBoundary,
|
|
cls : 'no-icon-wrap-item'
|
|
});
|
|
|
|
me.menuImageWrap = new Common.UI.MenuItem({
|
|
iconCls: 'menu__icon wrap-inline',
|
|
caption : me.textWrap,
|
|
menu : new Common.UI.Menu({
|
|
cls: 'ppm-toolbar shifted-right',
|
|
menuAlign: 'tl-tr',
|
|
items: [
|
|
new Common.UI.MenuItem({
|
|
caption : me.txtInline,
|
|
iconCls : 'menu__icon wrap-inline',
|
|
toggleGroup : 'popuppicturewrapping',
|
|
wrapType : Asc.c_oAscWrapStyle2.Inline,
|
|
checkmark : false,
|
|
checkable : true
|
|
}),
|
|
{ caption: '--' },
|
|
new Common.UI.MenuItem({
|
|
caption : me.txtSquare,
|
|
iconCls : 'menu__icon wrap-square',
|
|
toggleGroup : 'popuppicturewrapping',
|
|
wrapType : Asc.c_oAscWrapStyle2.Square,
|
|
checkmark : false,
|
|
checkable : true
|
|
}),
|
|
new Common.UI.MenuItem({
|
|
caption : me.txtTight,
|
|
iconCls : 'menu__icon wrap-tight',
|
|
toggleGroup : 'popuppicturewrapping',
|
|
wrapType : Asc.c_oAscWrapStyle2.Tight,
|
|
checkmark : false,
|
|
checkable : true
|
|
}),
|
|
new Common.UI.MenuItem({
|
|
caption : me.txtThrough,
|
|
iconCls : 'menu__icon wrap-through',
|
|
toggleGroup : 'popuppicturewrapping',
|
|
wrapType : Asc.c_oAscWrapStyle2.Through,
|
|
checkmark : false,
|
|
checkable : true
|
|
}),
|
|
new Common.UI.MenuItem({
|
|
caption : me.txtTopAndBottom,
|
|
iconCls : 'menu__icon wrap-topandbottom',
|
|
toggleGroup : 'popuppicturewrapping',
|
|
wrapType : Asc.c_oAscWrapStyle2.TopAndBottom,
|
|
checkmark : false,
|
|
checkable : true
|
|
}),
|
|
{ caption: '--' },
|
|
new Common.UI.MenuItem({
|
|
caption : me.txtInFront,
|
|
iconCls : 'menu__icon wrap-infront',
|
|
toggleGroup : 'popuppicturewrapping',
|
|
wrapType : Asc.c_oAscWrapStyle2.InFront,
|
|
checkmark : false,
|
|
checkable : true
|
|
}),
|
|
new Common.UI.MenuItem({
|
|
caption : me.txtBehind,
|
|
iconCls : 'menu__icon wrap-behind',
|
|
toggleGroup : 'popuppicturewrapping',
|
|
wrapType : Asc.c_oAscWrapStyle2.Behind,
|
|
checkmark : false,
|
|
checkable : true
|
|
}),
|
|
{ caption: '--' },
|
|
me.menuWrapPolygon
|
|
]
|
|
})
|
|
});
|
|
|
|
me.menuImageAdvanced = new Common.UI.MenuItem({
|
|
iconCls: 'menu__icon btn-menu-image',
|
|
caption : me.advancedText
|
|
});
|
|
|
|
me.menuChartEdit = new Common.UI.MenuItem({
|
|
caption : me.editChartText
|
|
});
|
|
|
|
var menuChartEditSeparator = new Common.UI.MenuItem({
|
|
caption : '--'
|
|
});
|
|
|
|
me.menuOriginalSize = new Common.UI.MenuItem({
|
|
caption : me.originalSizeText
|
|
});
|
|
|
|
me.menuImgReplace = new Common.UI.MenuItem({
|
|
caption : me.textReplace,
|
|
menu : new Common.UI.Menu({
|
|
cls: 'shifted-right',
|
|
menuAlign: 'tl-tr',
|
|
items: [
|
|
new Common.UI.MenuItem({caption: this.textFromFile, value: 0}),
|
|
new Common.UI.MenuItem({caption: this.textFromUrl, value: 1}),
|
|
new Common.UI.MenuItem({caption: this.textFromStorage, value: 2})
|
|
]
|
|
})
|
|
});
|
|
|
|
me.menuImgCopy = new Common.UI.MenuItem({
|
|
iconCls: 'menu__icon btn-copy',
|
|
caption : me.textCopy,
|
|
value : 'copy'
|
|
});
|
|
|
|
me.menuImgPaste = new Common.UI.MenuItem({
|
|
iconCls: 'menu__icon btn-paste',
|
|
caption : me.textPaste,
|
|
value : 'paste'
|
|
});
|
|
|
|
me.menuImgCut = new Common.UI.MenuItem({
|
|
iconCls: 'menu__icon btn-cut',
|
|
caption : me.textCut,
|
|
value : 'cut'
|
|
});
|
|
|
|
me.menuImgAccept = new Common.UI.MenuItem({
|
|
caption : me.textAccept,
|
|
value : 'accept'
|
|
});
|
|
|
|
me.menuImgReject = new Common.UI.MenuItem({
|
|
caption : me.textReject,
|
|
value : 'reject'
|
|
});
|
|
|
|
var menuImgReviewSeparator = new Common.UI.MenuItem({
|
|
caption : '--'
|
|
});
|
|
|
|
me.menuImgPrint = new Common.UI.MenuItem({
|
|
iconCls: 'menu__icon btn-print',
|
|
caption : me.txtPrintSelection
|
|
});
|
|
|
|
me.menuSignatureEditSign = new Common.UI.MenuItem({caption: this.strSign, value: 0 });
|
|
me.menuSignatureEditSetup = new Common.UI.MenuItem({caption: this.strSetup, value: 2 });
|
|
var menuEditSignSeparator = new Common.UI.MenuItem({ caption: '--' });
|
|
|
|
me.menuImgRotate = new Common.UI.MenuItem({
|
|
caption : me.textRotate,
|
|
menu : new Common.UI.Menu({
|
|
cls: 'shifted-right',
|
|
menuAlign: 'tl-tr',
|
|
items: [
|
|
new Common.UI.MenuItem({
|
|
iconCls: 'menu__icon btn-rotate-90',
|
|
caption: this.textRotate90,
|
|
value : 1
|
|
}),
|
|
new Common.UI.MenuItem({
|
|
iconCls: 'menu__icon btn-rotate-270',
|
|
caption: this.textRotate270,
|
|
value : 0
|
|
}),
|
|
{ caption: '--' },
|
|
new Common.UI.MenuItem({
|
|
iconCls: 'menu__icon btn-flip-hor',
|
|
caption: this.textFlipH,
|
|
value : 1
|
|
}),
|
|
new Common.UI.MenuItem({
|
|
iconCls: 'menu__icon btn-flip-vert',
|
|
caption: this.textFlipV,
|
|
value : 0
|
|
})
|
|
]
|
|
})
|
|
});
|
|
|
|
me.menuImgCrop = new Common.UI.MenuItem({
|
|
caption : me.textCrop,
|
|
menu : new Common.UI.Menu({
|
|
cls: 'shifted-right',
|
|
menuAlign: 'tl-tr',
|
|
items: [
|
|
new Common.UI.MenuItem({
|
|
caption: me.textCrop,
|
|
checkable: true,
|
|
allowDepress: true,
|
|
value : 0
|
|
}),
|
|
new Common.UI.MenuItem({
|
|
caption: me.textCropFill,
|
|
value : 1
|
|
}),
|
|
new Common.UI.MenuItem({
|
|
caption: me.textCropFit,
|
|
value : 2
|
|
})
|
|
]
|
|
})
|
|
});
|
|
|
|
me.menuImgRemoveControl = new Common.UI.MenuItem({
|
|
iconCls: 'menu__icon cc-remove',
|
|
caption: me.textRemoveControl,
|
|
value: 'remove'
|
|
});
|
|
|
|
me.menuImgControlSettings = new Common.UI.MenuItem({
|
|
caption: me.textEditControls,
|
|
value: 'settings'
|
|
});
|
|
|
|
var menuImgControlSeparator = new Common.UI.MenuItem({
|
|
caption : '--'
|
|
});
|
|
|
|
me.menuImgEditPoints = new Common.UI.MenuItem({
|
|
caption: me.textEditPoints
|
|
});
|
|
|
|
var menuImgEditPointsSeparator = new Common.UI.MenuItem({
|
|
caption : '--'
|
|
});
|
|
|
|
this.pictureMenu = new Common.UI.Menu({
|
|
cls: 'shifted-right',
|
|
restoreHeightAndTop: true,
|
|
initMenu: function(value){
|
|
if (_.isUndefined(value.imgProps))
|
|
return;
|
|
|
|
var notflow = !value.imgProps.value.get_CanBeFlow(),
|
|
wrapping = value.imgProps.value.get_WrappingStyle();
|
|
|
|
me.menuImageWrap._originalProps = value.imgProps.value;
|
|
|
|
var cls = 'menu__icon ';
|
|
if (notflow) {
|
|
for (var i = 0; i < 8; i++) {
|
|
me.menuImageWrap.menu.items[i].setChecked(false);
|
|
}
|
|
cls += 'wrap-inline';
|
|
} else {
|
|
switch (wrapping) {
|
|
case Asc.c_oAscWrapStyle2.Inline:
|
|
me.menuImageWrap.menu.items[0].setChecked(true);
|
|
cls += 'wrap-inline';
|
|
break;
|
|
case Asc.c_oAscWrapStyle2.Square:
|
|
me.menuImageWrap.menu.items[2].setChecked(true);
|
|
cls += 'wrap-square';
|
|
break;
|
|
case Asc.c_oAscWrapStyle2.Tight:
|
|
me.menuImageWrap.menu.items[3].setChecked(true);
|
|
cls += 'wrap-tight';
|
|
break;
|
|
case Asc.c_oAscWrapStyle2.Through:
|
|
me.menuImageWrap.menu.items[4].setChecked(true);
|
|
cls += 'wrap-through';
|
|
break;
|
|
case Asc.c_oAscWrapStyle2.TopAndBottom:
|
|
me.menuImageWrap.menu.items[5].setChecked(true);
|
|
cls += 'wrap-topandbottom';
|
|
break;
|
|
case Asc.c_oAscWrapStyle2.Behind:
|
|
me.menuImageWrap.menu.items[8].setChecked(true);
|
|
cls += 'wrap-behind';
|
|
break;
|
|
case Asc.c_oAscWrapStyle2.InFront:
|
|
me.menuImageWrap.menu.items[7].setChecked(true);
|
|
cls += 'wrap-infront';
|
|
break;
|
|
default:
|
|
for (var i = 0; i < 8; i++) {
|
|
me.menuImageWrap.menu.items[i].setChecked(false);
|
|
}
|
|
cls += 'wrap-infront';
|
|
break;
|
|
}
|
|
}
|
|
me.menuImageWrap.setIconCls(cls);
|
|
_.each(me.menuImageWrap.menu.items, function(item) {
|
|
item.setDisabled(notflow);
|
|
});
|
|
|
|
var onlyCommonProps = ( value.imgProps.isImg && value.imgProps.isChart || value.imgProps.isImg && value.imgProps.isShape ||
|
|
value.imgProps.isShape && value.imgProps.isChart);
|
|
if (onlyCommonProps) {
|
|
me.menuImageAdvanced.setCaption(me.advancedText, true);
|
|
me.menuImageAdvanced.setIconCls('menu__icon btn-menu-image');
|
|
} else {
|
|
me.menuImageAdvanced.setCaption((value.imgProps.isImg) ? me.imageText : ((value.imgProps.isChart) ? me.chartText : me.shapeText), true);
|
|
me.menuImageAdvanced.setIconCls('menu__icon ' + (value.imgProps.isImg ? 'btn-menu-image' : (value.imgProps.isChart ? 'btn-menu-chart' : 'btn-menu-shape')));
|
|
}
|
|
|
|
me.menuChartEdit.setVisible(!_.isNull(value.imgProps.value.get_ChartProperties()) && !onlyCommonProps);
|
|
me.menuOriginalSize.setVisible(value.imgProps.isOnlyImg || !value.imgProps.isChart && !value.imgProps.isShape);
|
|
|
|
var in_control = me.api.asc_IsContentControl(),
|
|
control_props = in_control ? me.api.asc_GetContentControlProperties() : null,
|
|
lock_type = (control_props) ? control_props.get_Lock() : Asc.c_oAscSdtLockType.Unlocked,
|
|
content_locked = lock_type==Asc.c_oAscSdtLockType.SdtContentLocked || lock_type==Asc.c_oAscSdtLockType.ContentLocked,
|
|
is_form = control_props && control_props.get_FormPr();
|
|
|
|
me.menuImgRemoveControl.setVisible(in_control);
|
|
me.menuImgControlSettings.setVisible(in_control && me.mode.canEditContentControl && !is_form);
|
|
menuImgControlSeparator.setVisible(in_control);
|
|
if (in_control) {
|
|
me.menuImgRemoveControl.setDisabled(lock_type==Asc.c_oAscSdtLockType.SdtContentLocked || lock_type==Asc.c_oAscSdtLockType.SdtLocked);
|
|
me.menuImgRemoveControl.setCaption(is_form ? me.getControlLabel(control_props) : me.textRemoveControl);
|
|
}
|
|
|
|
var islocked = value.imgProps.locked || (value.headerProps!==undefined && value.headerProps.locked) || content_locked;
|
|
var pluginGuid = value.imgProps.value.asc_getPluginGuid();
|
|
me.menuImgReplace.setVisible(value.imgProps.isOnlyImg && (pluginGuid===null || pluginGuid===undefined));
|
|
if (me.menuImgReplace.isVisible())
|
|
me.menuImgReplace.setDisabled(islocked || pluginGuid===null);
|
|
me.menuImgReplace.menu.items[2].setVisible(me.mode.canRequestInsertImage || me.mode.fileChoiceUrl && me.mode.fileChoiceUrl.indexOf("{documentType}")>-1);
|
|
|
|
me.menuImgRotate.setVisible(!value.imgProps.isChart && (pluginGuid===null || pluginGuid===undefined));
|
|
if (me.menuImgRotate.isVisible()) {
|
|
me.menuImgRotate.setDisabled(islocked || value.imgProps.isSmartArt);
|
|
me.menuImgRotate.menu.items[3].setDisabled(value.imgProps.isSmartArtInternal);
|
|
me.menuImgRotate.menu.items[4].setDisabled(value.imgProps.isSmartArtInternal);
|
|
}
|
|
me.menuImgCrop.setVisible(me.api.asc_canEditCrop());
|
|
if (me.menuImgCrop.isVisible())
|
|
me.menuImgCrop.setDisabled(islocked);
|
|
|
|
if (me.menuChartEdit.isVisible())
|
|
me.menuChartEdit.setDisabled(islocked || value.imgProps.value.get_SeveralCharts());
|
|
|
|
menuChartEditSeparator.setVisible(me.menuChartEdit.isVisible());
|
|
|
|
me.menuOriginalSize.setDisabled(islocked || value.imgProps.value.get_ImageUrl()===null || value.imgProps.value.get_ImageUrl()===undefined);
|
|
me.menuImageAdvanced.setDisabled(islocked);
|
|
me.menuImageAlign.setDisabled( islocked || (wrapping == Asc.c_oAscWrapStyle2.Inline) );
|
|
if (!(islocked || (wrapping == Asc.c_oAscWrapStyle2.Inline))) {
|
|
var objcount = me.api.asc_getSelectedDrawingObjectsCount(),
|
|
alignto = Common.Utils.InternalSettings.get("de-img-align-to"); // 1 - page, 2 - margin, 3 - selected
|
|
me.menuImageAlign.menu.items[7].setDisabled(objcount==2 && (!alignto || alignto==3));
|
|
me.menuImageAlign.menu.items[8].setDisabled(objcount==2 && (!alignto || alignto==3));
|
|
}
|
|
me.menuImageArrange.setDisabled( (wrapping == Asc.c_oAscWrapStyle2.Inline) && !value.imgProps.value.get_FromGroup() || content_locked ||
|
|
(me.api && !me.api.CanUnGroup() && !me.api.CanGroup() && value.imgProps.isSmartArtInternal));
|
|
me.menuImageArrange.menu.items[0].setDisabled(value.imgProps.isSmartArtInternal);
|
|
me.menuImageArrange.menu.items[1].setDisabled(value.imgProps.isSmartArtInternal);
|
|
me.menuImageArrange.menu.items[2].setDisabled(value.imgProps.isSmartArtInternal);
|
|
me.menuImageArrange.menu.items[3].setDisabled(value.imgProps.isSmartArtInternal);
|
|
|
|
if (me.api) {
|
|
me.mnuUnGroup.setDisabled(islocked || !me.api.CanUnGroup());
|
|
me.mnuGroup.setDisabled(islocked || !me.api.CanGroup());
|
|
me.menuWrapPolygon.setDisabled(islocked || !me.api.CanChangeWrapPolygon());
|
|
}
|
|
|
|
me.menuImageWrap.setDisabled(islocked || value.imgProps.value.get_FromGroup() || (notflow && me.menuWrapPolygon.isDisabled()) ||
|
|
(!!control_props && control_props.get_SpecificType()==Asc.c_oAscContentControlSpecificType.Picture && !control_props.get_FormPr()));
|
|
|
|
var cancopy = me.api && me.api.can_CopyCut();
|
|
me.menuImgCopy.setDisabled(!cancopy);
|
|
me.menuImgCut.setDisabled(islocked || !cancopy);
|
|
me.menuImgPaste.setDisabled(islocked);
|
|
me.menuImgPrint.setVisible(me.mode.canPrint);
|
|
me.menuImgPrint.setDisabled(!cancopy);
|
|
|
|
var lockreview = Common.Utils.InternalSettings.get("de-accept-reject-lock");
|
|
me.menuImgAccept.setVisible(!lockreview);
|
|
me.menuImgReject.setVisible(!lockreview);
|
|
menuImgReviewSeparator.setVisible(!lockreview);
|
|
|
|
var signGuid = (value.imgProps && value.imgProps.value && me.mode.isSignatureSupport) ? value.imgProps.value.asc_getSignatureId() : undefined,
|
|
isInSign = !!signGuid;
|
|
me.menuSignatureEditSign.setVisible(isInSign);
|
|
me.menuSignatureEditSetup.setVisible(isInSign);
|
|
menuEditSignSeparator.setVisible(isInSign);
|
|
|
|
if (isInSign) {
|
|
me.menuSignatureEditSign.cmpEl.attr('data-value', signGuid); // sign
|
|
me.menuSignatureEditSetup.cmpEl.attr('data-value', signGuid); // edit signature settings
|
|
}
|
|
|
|
var canEditPoints = me.api && me.api.asc_canEditGeometry();
|
|
me.menuImgEditPoints.setVisible(canEditPoints);
|
|
menuImgEditPointsSeparator.setVisible(canEditPoints);
|
|
canEditPoints && me.menuImgEditPoints.setDisabled(islocked);
|
|
},
|
|
items: [
|
|
me.menuImgCut,
|
|
me.menuImgCopy,
|
|
me.menuImgPaste,
|
|
me.menuImgPrint,
|
|
{ caption: '--' },
|
|
me.menuImgAccept,
|
|
me.menuImgReject,
|
|
menuImgReviewSeparator,
|
|
me.menuSignatureEditSign,
|
|
me.menuSignatureEditSetup,
|
|
menuEditSignSeparator,
|
|
me.menuImgRemoveControl,
|
|
me.menuImgControlSettings,
|
|
menuImgControlSeparator,
|
|
me.menuImgEditPoints,
|
|
menuImgEditPointsSeparator,
|
|
me.menuImageArrange,
|
|
me.menuImageAlign,
|
|
me.menuImageWrap,
|
|
me.menuImgRotate,
|
|
{ caption: '--' },
|
|
me.menuInsertCaption,
|
|
menuInsertCaptionSeparator,
|
|
me.menuImgCrop,
|
|
me.menuOriginalSize,
|
|
me.menuImgReplace,
|
|
me.menuChartEdit,
|
|
menuChartEditSeparator,
|
|
me.menuImageAdvanced
|
|
]
|
|
}).on('hide:after', function(menu, e, isFromInputControl) {
|
|
if (!isFromInputControl) me.fireEvent('editcomplete', me);
|
|
me.currentMenu = null;
|
|
});
|
|
|
|
/* table menu*/
|
|
|
|
me.menuTableInsertCaption = new Common.UI.MenuItem({
|
|
caption : me.txtInsertCaption
|
|
});
|
|
|
|
me.mnuTableMerge = new Common.UI.MenuItem({
|
|
iconCls: 'menu__icon btn-merge-cells',
|
|
caption : me.mergeCellsText
|
|
});
|
|
|
|
me.mnuTableSplit = new Common.UI.MenuItem({
|
|
caption : me.splitCellsText
|
|
});
|
|
|
|
me.menuTableCellAlign = new Common.UI.MenuItem({
|
|
iconCls: 'menu__icon btn-align-top',
|
|
caption : me.cellAlignText,
|
|
menu : new Common.UI.Menu({
|
|
cls: 'shifted-right',
|
|
menuAlign: 'tl-tr',
|
|
items : [
|
|
me.menuTableCellTop = new Common.UI.MenuItem({
|
|
iconCls: 'menu__icon btn-align-top',
|
|
caption : me.textShapeAlignTop,
|
|
toggleGroup : 'popuptablecellalign',
|
|
checkmark : false,
|
|
checkable : true,
|
|
checked : false,
|
|
valign : Asc.c_oAscVertAlignJc.Top
|
|
}),
|
|
me.menuTableCellCenter = new Common.UI.MenuItem({
|
|
iconCls: 'menu__icon btn-align-middle',
|
|
caption : me.textShapeAlignMiddle,
|
|
toggleGroup : 'popuptablecellalign',
|
|
checkmark : false,
|
|
checkable : true,
|
|
checked : false,
|
|
valign : Asc.c_oAscVertAlignJc.Center
|
|
}),
|
|
me.menuTableCellBottom = new Common.UI.MenuItem({
|
|
iconCls: 'menu__icon btn-align-bottom',
|
|
caption : me.textShapeAlignBottom,
|
|
toggleGroup : 'popuptablecellalign',
|
|
checkmark : false,
|
|
checkable : true,
|
|
checked : false,
|
|
valign : Asc.c_oAscVertAlignJc.Bottom
|
|
})
|
|
]
|
|
})
|
|
});
|
|
|
|
me.menuTableAdvanced = new Common.UI.MenuItem({
|
|
iconCls: 'menu__icon btn-menu-table',
|
|
caption : me.advancedTableText
|
|
});
|
|
|
|
me.menuParagraphAdvancedInTable = new Common.UI.MenuItem({
|
|
iconCls: 'menu__icon btn-paragraph',
|
|
caption : me.advancedParagraphText
|
|
});
|
|
|
|
var menuHyperlinkSeparator = new Common.UI.MenuItem({
|
|
caption : '--'
|
|
});
|
|
|
|
me.menuEditHyperlinkTable = new Common.UI.MenuItem({
|
|
caption : me.editHyperlinkText
|
|
});
|
|
|
|
me.menuRemoveHyperlinkTable = new Common.UI.MenuItem({
|
|
caption : me.removeHyperlinkText
|
|
});
|
|
|
|
var menuHyperlinkTable = new Common.UI.MenuItem({
|
|
iconCls: 'menu__icon btn-inserthyperlink',
|
|
caption : me.hyperlinkText,
|
|
menu : new Common.UI.Menu({
|
|
cls: 'shifted-right',
|
|
menuAlign: 'tl-tr',
|
|
items : [
|
|
me.menuEditHyperlinkTable,
|
|
me.menuRemoveHyperlinkTable
|
|
]
|
|
})
|
|
});
|
|
|
|
me.menuTableRemoveForm = new Common.UI.MenuItem({
|
|
iconCls: 'menu__icon cc-remove',
|
|
caption: me.textRemove,
|
|
value: 'remove'
|
|
});
|
|
|
|
me.menuTableRemoveControl = new Common.UI.MenuItem({
|
|
iconCls: 'menu__icon cc-remove',
|
|
caption: me.textRemoveControl,
|
|
value: 'remove'
|
|
});
|
|
|
|
me.menuTableControlSettings = new Common.UI.MenuItem({
|
|
caption: me.textSettings,
|
|
value: 'settings'
|
|
});
|
|
|
|
var menuTableControl = new Common.UI.MenuItem({
|
|
caption: me.textContentControls,
|
|
menu : new Common.UI.Menu({
|
|
cls: 'shifted-right',
|
|
menuAlign: 'tl-tr',
|
|
items : [
|
|
me.menuTableRemoveControl,
|
|
me.menuTableControlSettings
|
|
]
|
|
})
|
|
});
|
|
|
|
me.menuTableTOC = new Common.UI.MenuItem({
|
|
caption : me.textTOC,
|
|
menu : new Common.UI.Menu({
|
|
cls: 'shifted-right',
|
|
menuAlign: 'tl-tr',
|
|
items : [
|
|
{
|
|
caption: me.textSettings,
|
|
value: 'settings'
|
|
},
|
|
{
|
|
caption: me.textUpdateAll,
|
|
value: 'all'
|
|
},
|
|
{
|
|
caption: me.textUpdatePages,
|
|
value: 'pages'
|
|
}
|
|
]
|
|
})
|
|
});
|
|
|
|
/** coauthoring begin **/
|
|
me.menuAddCommentTable = new Common.UI.MenuItem({
|
|
iconCls: 'menu__icon btn-menu-comments',
|
|
caption : me.addCommentText
|
|
});
|
|
/** coauthoring end **/
|
|
|
|
me.menuAddHyperlinkTable = new Common.UI.MenuItem({
|
|
iconCls: 'menu__icon btn-inserthyperlink',
|
|
caption : me.hyperlinkText
|
|
});
|
|
|
|
me.menuTableFollow = new Common.UI.MenuItem({
|
|
caption: me.textFollow
|
|
});
|
|
|
|
me.menuSpellTable = new Common.UI.MenuItem({
|
|
caption : me.loadSpellText,
|
|
disabled : true
|
|
});
|
|
|
|
me.menuSpellMoreTable = new Common.UI.MenuItem({
|
|
caption : me.moreText,
|
|
menu : new Common.UI.Menu({
|
|
cls: 'shifted-right',
|
|
menuAlign: 'tl-tr',
|
|
restoreHeight: true,
|
|
items : [
|
|
]
|
|
})
|
|
});
|
|
|
|
var langTemplate = _.template([
|
|
'<a id="<%= id %>" tabindex="-1" type="menuitem" style="padding-left: 28px !important;" langval="<%= value %>" class="<% if (checked) { %> checked <% } %>">',
|
|
'<i class="icon <% if (spellcheck) { %> toolbar__icon btn-ic-docspell spellcheck-lang <% } %>"></i>',
|
|
'<%= caption %>',
|
|
'</a>'
|
|
].join(''));
|
|
|
|
me.langTableMenu = new Common.UI.MenuItem({
|
|
iconCls: 'menu__icon btn-ic-doclang',
|
|
caption : me.langText,
|
|
menu : new Common.UI.MenuSimple({
|
|
cls: 'lang-menu',
|
|
menuAlign: 'tl-tr',
|
|
restoreHeight: 285,
|
|
items : [],
|
|
itemTemplate: langTemplate,
|
|
search: true
|
|
})
|
|
});
|
|
|
|
me.menuIgnoreSpellTable = new Common.UI.MenuItem({
|
|
caption : me.ignoreSpellText,
|
|
value: false
|
|
});
|
|
|
|
me.menuIgnoreAllSpellTable = new Common.UI.MenuItem({
|
|
caption : me.ignoreAllSpellText,
|
|
value: true
|
|
});
|
|
|
|
me.menuToDictionaryTable = new Common.UI.MenuItem({
|
|
caption : me.toDictionaryText
|
|
});
|
|
|
|
var menuIgnoreSpellTableSeparator = new Common.UI.MenuItem({
|
|
caption : '--'
|
|
});
|
|
|
|
var menuSpellcheckTableSeparator = new Common.UI.MenuItem({
|
|
caption : '--'
|
|
});
|
|
|
|
me.menuSpellCheckTable = new Common.UI.MenuItem({
|
|
iconCls: 'menu__icon btn-ic-docspell',
|
|
caption : me.spellcheckText,
|
|
menu : new Common.UI.Menu({
|
|
cls: 'shifted-right',
|
|
menuAlign: 'tl-tr',
|
|
items : [
|
|
me.menuSpellTable,
|
|
me.menuSpellMoreTable,
|
|
menuIgnoreSpellTableSeparator,
|
|
me.menuIgnoreSpellTable,
|
|
me.menuIgnoreAllSpellTable,
|
|
me.menuToDictionaryTable,
|
|
{ caption: '--' },
|
|
me.langTableMenu
|
|
]
|
|
})
|
|
});
|
|
|
|
me.menuTableCopy = new Common.UI.MenuItem({
|
|
iconCls: 'menu__icon btn-copy',
|
|
caption : me.textCopy,
|
|
value : 'copy'
|
|
});
|
|
|
|
me.menuTablePaste = new Common.UI.MenuItem({
|
|
iconCls: 'menu__icon btn-paste',
|
|
caption : me.textPaste,
|
|
value : 'paste'
|
|
});
|
|
|
|
me.menuTableCut = new Common.UI.MenuItem({
|
|
iconCls: 'menu__icon btn-cut',
|
|
caption : me.textCut,
|
|
value : 'cut'
|
|
});
|
|
|
|
me.menuTableAccept = new Common.UI.MenuItem({
|
|
caption : me.textAccept,
|
|
value : 'accept'
|
|
});
|
|
|
|
me.menuTableReject = new Common.UI.MenuItem({
|
|
caption : me.textReject,
|
|
value : 'reject'
|
|
});
|
|
|
|
var menuTableReviewSeparator = new Common.UI.MenuItem({
|
|
caption : '--'
|
|
});
|
|
|
|
me.menuTablePrint = new Common.UI.MenuItem({
|
|
iconCls: 'menu__icon btn-print',
|
|
caption : me.txtPrintSelection
|
|
});
|
|
|
|
|
|
var menuEquationSeparatorInTable = new Common.UI.MenuItem({
|
|
caption : '--'
|
|
});
|
|
|
|
me.menuTableDistRows = new Common.UI.MenuItem({
|
|
caption : me.textDistributeRows,
|
|
value: false
|
|
});
|
|
|
|
me.menuTableDistCols = new Common.UI.MenuItem({
|
|
caption : me.textDistributeCols,
|
|
value: true
|
|
});
|
|
|
|
me.menuTableDirection = new Common.UI.MenuItem({
|
|
iconCls: 'menu__icon text-orient-hor',
|
|
caption : me.directionText,
|
|
menu : new Common.UI.Menu({
|
|
cls: 'ppm-toolbar shifted-right',
|
|
menuAlign: 'tl-tr',
|
|
items : [
|
|
me.menuTableDirectH = new Common.UI.MenuItem({
|
|
caption : me.directHText,
|
|
iconCls : 'menu__icon text-orient-hor',
|
|
checkable : true,
|
|
checkmark : false,
|
|
checked : false,
|
|
toggleGroup : 'popuptabledirect',
|
|
direction : Asc.c_oAscCellTextDirection.LRTB
|
|
}),
|
|
me.menuTableDirect90 = new Common.UI.MenuItem({
|
|
caption : me.direct90Text,
|
|
iconCls : 'menu__icon text-orient-rdown',
|
|
checkable : true,
|
|
checkmark : false,
|
|
checked : false,
|
|
toggleGroup : 'popuptabledirect',
|
|
direction : Asc.c_oAscCellTextDirection.TBRL
|
|
}),
|
|
me.menuTableDirect270 = new Common.UI.MenuItem({
|
|
caption : me.direct270Text,
|
|
iconCls : 'menu__icon text-orient-rup',
|
|
checkable : true,
|
|
checkmark : false,
|
|
checked : false,
|
|
toggleGroup : 'popuptabledirect',
|
|
direction : Asc.c_oAscCellTextDirection.BTLR
|
|
})
|
|
]
|
|
})
|
|
});
|
|
|
|
me.menuTableStartNewList = new Common.UI.MenuItem({
|
|
caption: me.textStartNewList
|
|
});
|
|
|
|
me.menuTableStartNumberingFrom = new Common.UI.MenuItem({
|
|
caption: me.textStartNumberingFrom
|
|
});
|
|
|
|
me.menuTableContinueNumbering = new Common.UI.MenuItem({
|
|
caption: me.textContinueNumbering
|
|
});
|
|
|
|
var menuNumberingTable = new Common.UI.MenuItem({
|
|
caption : me.bulletsText,
|
|
menu : new Common.UI.Menu({
|
|
cls: 'shifted-right',
|
|
menuAlign: 'tl-tr',
|
|
items : [
|
|
me.menuTableStartNewList,
|
|
me.menuTableStartNumberingFrom,
|
|
me.menuTableContinueNumbering
|
|
]
|
|
})
|
|
});
|
|
|
|
me.menuTableRefreshField = new Common.UI.MenuItem({
|
|
caption: me.textRefreshField
|
|
});
|
|
|
|
var menuTableFieldSeparator = new Common.UI.MenuItem({
|
|
caption : '--'
|
|
});
|
|
|
|
me.menuTableEquation = new Common.UI.MenuItem({
|
|
caption : me.advancedEquationText,
|
|
menu : me.createEquationMenu('popuptableeqinput', 'tl-tr')
|
|
});
|
|
|
|
me.menuTableSelectText = new Common.UI.MenuItem({
|
|
caption : me.selectText,
|
|
menu : new Common.UI.Menu({
|
|
cls: 'shifted-right',
|
|
menuAlign: 'tl-tr',
|
|
style : 'width: 100px',
|
|
items : [
|
|
new Common.UI.MenuItem({
|
|
caption: me.rowText,
|
|
value: 0
|
|
}),
|
|
new Common.UI.MenuItem({
|
|
caption: me.columnText,
|
|
value: 1
|
|
}),
|
|
new Common.UI.MenuItem({
|
|
caption: me.cellText,
|
|
value: 2
|
|
}),
|
|
new Common.UI.MenuItem({
|
|
caption: me.tableText,
|
|
value: 3
|
|
})
|
|
]
|
|
})
|
|
});
|
|
|
|
me.menuTableInsertText = new Common.UI.MenuItem({
|
|
iconCls: 'menu__icon btn-addcell',
|
|
caption : me.insertText,
|
|
menu : new Common.UI.Menu({
|
|
cls: 'shifted-right',
|
|
menuAlign: 'tl-tr',
|
|
items : [
|
|
new Common.UI.MenuItem({
|
|
caption: me.insertColumnLeftText,
|
|
value: 0
|
|
}),
|
|
new Common.UI.MenuItem({
|
|
caption: me.insertColumnRightText,
|
|
value: 1
|
|
}),
|
|
new Common.UI.MenuItem({
|
|
caption: me.insertRowAboveText,
|
|
value: 2
|
|
}),
|
|
new Common.UI.MenuItem({
|
|
caption: me.insertRowBelowText,
|
|
value: 3
|
|
}),
|
|
new Common.UI.MenuItem({
|
|
caption: me.textSeveral,
|
|
value: 4
|
|
})
|
|
]
|
|
})
|
|
});
|
|
|
|
me.menuTableDeleteText = new Common.UI.MenuItem({
|
|
iconCls: 'menu__icon btn-delcell',
|
|
caption : me.deleteText,
|
|
menu : new Common.UI.Menu({
|
|
cls: 'shifted-right',
|
|
menuAlign: 'tl-tr',
|
|
style : 'width: 100px',
|
|
items : [
|
|
new Common.UI.MenuItem({
|
|
caption: me.rowText,
|
|
value: 0
|
|
}),
|
|
new Common.UI.MenuItem({
|
|
caption: me.columnText,
|
|
value: 1
|
|
}),
|
|
new Common.UI.MenuItem({
|
|
caption: me.tableText,
|
|
value: 2
|
|
}),
|
|
new Common.UI.MenuItem({
|
|
caption: me.textCells,
|
|
value: 3
|
|
})
|
|
]
|
|
})
|
|
});
|
|
|
|
this.tableMenu = new Common.UI.Menu({
|
|
cls: 'shifted-right',
|
|
restoreHeightAndTop: true,
|
|
initMenu: function(value){
|
|
// table properties
|
|
if (_.isUndefined(value.tableProps))
|
|
return;
|
|
|
|
var isEquation= (value.mathProps && value.mathProps.value);
|
|
|
|
for (var i = 11; i < 30; i++) {
|
|
me.tableMenu.items[i].setVisible(!isEquation);
|
|
}
|
|
|
|
var align = value.tableProps.value.get_CellsVAlign();
|
|
var cls = '';
|
|
switch (align) {
|
|
case Asc.c_oAscVertAlignJc.Top:
|
|
cls = 'menu__icon btn-align-top';
|
|
break;
|
|
case Asc.c_oAscVertAlignJc.Center:
|
|
cls = 'menu__icon btn-align-middle';
|
|
break;
|
|
case Asc.c_oAscVertAlignJc.Bottom:
|
|
cls = 'menu__icon btn-align-bottom';
|
|
break;
|
|
}
|
|
me.menuTableCellAlign.setIconCls(cls);
|
|
me.menuTableCellTop.setChecked(align == Asc.c_oAscVertAlignJc.Top);
|
|
me.menuTableCellCenter.setChecked(align == Asc.c_oAscVertAlignJc.Center);
|
|
me.menuTableCellBottom.setChecked(align == Asc.c_oAscVertAlignJc.Bottom);
|
|
|
|
var dir = value.tableProps.value.get_CellsTextDirection();
|
|
cls = '';
|
|
switch (dir) {
|
|
case Asc.c_oAscCellTextDirection.LRTB:
|
|
cls = 'menu__icon text-orient-hor';
|
|
break;
|
|
case Asc.c_oAscCellTextDirection.TBRL:
|
|
cls = 'menu__icon text-orient-rdown';
|
|
break;
|
|
case Asc.c_oAscCellTextDirection.BTLR:
|
|
cls = 'menu__icon text-orient-rup';
|
|
break;
|
|
}
|
|
me.menuTableDirection.setIconCls(cls);
|
|
me.menuTableDirectH.setChecked(dir == Asc.c_oAscCellTextDirection.LRTB);
|
|
me.menuTableDirect90.setChecked(dir == Asc.c_oAscCellTextDirection.TBRL);
|
|
me.menuTableDirect270.setChecked(dir == Asc.c_oAscCellTextDirection.BTLR);
|
|
|
|
var disabled = value.tableProps.locked || (value.headerProps!==undefined && value.headerProps.locked);
|
|
me.tableMenu.items[14].setDisabled(disabled);
|
|
me.tableMenu.items[15].setDisabled(disabled);
|
|
|
|
if (me.api) {
|
|
me.mnuTableMerge.setDisabled(disabled || !me.api.CheckBeforeMergeCells());
|
|
me.mnuTableSplit.setDisabled(disabled || !me.api.CheckBeforeSplitCells());
|
|
}
|
|
|
|
me.menuTableDistRows.setDisabled(disabled);
|
|
me.menuTableDistCols.setDisabled(disabled);
|
|
me.menuTableCellAlign.setDisabled(disabled);
|
|
me.menuTableDirection.setDisabled(disabled);
|
|
me.menuTableAdvanced.setDisabled(disabled);
|
|
|
|
var cancopy = me.api && me.api.can_CopyCut();
|
|
me.menuTableCopy.setDisabled(!cancopy);
|
|
me.menuTableCut.setDisabled(disabled || !cancopy);
|
|
me.menuTablePaste.setDisabled(disabled);
|
|
me.menuTablePrint.setVisible(me.mode.canPrint);
|
|
me.menuTablePrint.setDisabled(!cancopy);
|
|
|
|
var lockreview = Common.Utils.InternalSettings.get("de-accept-reject-lock");
|
|
me.menuTableAccept.setVisible(!lockreview);
|
|
me.menuTableReject.setVisible(!lockreview);
|
|
menuTableReviewSeparator.setVisible(!lockreview);
|
|
|
|
// bullets & numbering
|
|
var listId = me.api.asc_GetCurrentNumberingId(),
|
|
in_list = (listId !== null);
|
|
menuNumberingTable.setVisible(in_list);
|
|
if (in_list) {
|
|
var numLvl = me.api.asc_GetNumberingPr(listId).get_Lvl(me.api.asc_GetCurrentNumberingLvl()),
|
|
format = numLvl.get_Format(),
|
|
start = me.api.asc_GetCalculatedNumberingValue();
|
|
me.menuTableStartNewList.setVisible(numLvl.get_Start()!=start);
|
|
me.menuTableStartNewList.value = {start: numLvl.get_Start()};
|
|
me.menuTableStartNumberingFrom.setVisible(format != Asc.c_oAscNumberingFormat.Bullet);
|
|
me.menuTableStartNumberingFrom.value = {format: format, start: start};
|
|
me.menuTableStartNewList.setCaption((format == Asc.c_oAscNumberingFormat.Bullet) ? me.textSeparateList : me.textStartNewList);
|
|
me.menuTableContinueNumbering.setCaption((format == Asc.c_oAscNumberingFormat.Bullet) ? me.textJoinList : me.textContinueNumbering);
|
|
}
|
|
|
|
// hyperlink properties
|
|
var text = null;
|
|
if (me.api) {
|
|
text = me.api.can_AddHyperlink();
|
|
}
|
|
me.menuAddHyperlinkTable.setVisible(value.hyperProps===undefined && text!==false);
|
|
menuHyperlinkTable.setVisible(value.hyperProps!==undefined);
|
|
|
|
me.menuEditHyperlinkTable.hyperProps = value.hyperProps;
|
|
me.menuRemoveHyperlinkTable.hyperProps = value.hyperProps;
|
|
|
|
if (text!==false) {
|
|
me.menuAddHyperlinkTable.hyperProps = {};
|
|
me.menuAddHyperlinkTable.hyperProps.value = new Asc.CHyperlinkProperty();
|
|
me.menuAddHyperlinkTable.hyperProps.value.put_Text(text);
|
|
}
|
|
|
|
// review move
|
|
var data = me.api.asc_GetRevisionsChangesStack(),
|
|
move = false;
|
|
me.menuTableFollow.value = null;
|
|
_.each(data, function(item) {
|
|
if ((item.get_Type()==Asc.c_oAscRevisionsChangeType.TextAdd || item.get_Type() == Asc.c_oAscRevisionsChangeType.TextRem) &&
|
|
item.get_MoveType()!=Asc.c_oAscRevisionsMove.NoMove) {
|
|
me.menuTableFollow.value = item;
|
|
move = true;
|
|
}
|
|
});
|
|
me.menuTableFollow.setVisible(move);
|
|
|
|
menuHyperlinkSeparator.setVisible(me.menuAddHyperlinkTable.isVisible() || menuHyperlinkTable.isVisible() || menuNumberingTable.isVisible() || me.menuTableFollow.isVisible());
|
|
|
|
// paragraph properties
|
|
me.menuParagraphAdvancedInTable.setVisible(value.paraProps!==undefined);
|
|
|
|
me._currentParaObjDisabled = disabled = value.paraProps.locked || (value.headerProps!==undefined && value.headerProps.locked);
|
|
me.menuAddHyperlinkTable.setDisabled(disabled);
|
|
menuHyperlinkTable.setDisabled(disabled || value.hyperProps!==undefined && value.hyperProps.isSeveralLinks===true);
|
|
me.menuParagraphAdvancedInTable.setDisabled(disabled);
|
|
|
|
me.menuSpellCheckTable.setVisible(value.spellProps!==undefined && value.spellProps.value.get_Checked()===false);
|
|
me.menuToDictionaryTable.setVisible(me.mode.isDesktopApp);
|
|
menuSpellcheckTableSeparator.setVisible(value.spellProps!==undefined && value.spellProps.value.get_Checked()===false);
|
|
|
|
me.langTableMenu.setDisabled(disabled);
|
|
if (value.spellProps!==undefined && value.spellProps.value.get_Checked()===false && value.spellProps.value.get_Variants() !== null && value.spellProps.value.get_Variants() !== undefined) {
|
|
me.addWordVariants(false);
|
|
} else {
|
|
me.menuSpellTable.setCaption(me.loadSpellText, true);
|
|
me.clearWordVariants(false);
|
|
me.menuSpellMoreTable.setVisible(false);
|
|
}
|
|
|
|
if (me.menuSpellCheckTable.isVisible() && me._currLang.id !== me._currLang.tableid) {
|
|
me.changeLanguageMenu(me.langTableMenu.menu);
|
|
me._currLang.tableid = me._currLang.id;
|
|
}
|
|
|
|
//equation menu
|
|
var eqlen = 0;
|
|
if (isEquation) {
|
|
eqlen = me.addEquationMenu(false, 10);
|
|
} else
|
|
me.clearEquationMenu(false, 10);
|
|
menuEquationSeparatorInTable.setVisible(isEquation && eqlen>0);
|
|
|
|
me.menuTableEquation.setVisible(isEquation);
|
|
me.menuTableEquation.setDisabled(disabled);
|
|
if (isEquation) {
|
|
var eq = me.api.asc_GetMathInputType();
|
|
me.menuTableEquation.menu.items[0].setChecked(eq===Asc.c_oAscMathInputType.Unicode);
|
|
me.menuTableEquation.menu.items[1].setChecked(eq===Asc.c_oAscMathInputType.LaTeX);
|
|
me.menuTableEquation.menu.items[8].setChecked(me.api.asc_IsInlineMath());
|
|
}
|
|
|
|
var control_lock = (value.paraProps) ? (!value.paraProps.value.can_DeleteBlockContentControl() || !value.paraProps.value.can_EditBlockContentControl() ||
|
|
!value.paraProps.value.can_DeleteInlineContentControl() || !value.paraProps.value.can_EditInlineContentControl()) : false;
|
|
var in_toc = me.api.asc_GetTableOfContentsPr(true),
|
|
in_control = !in_toc && me.api.asc_IsContentControl();
|
|
if (in_control) {
|
|
var control_props = me.api.asc_GetContentControlProperties(),
|
|
lock_type = (control_props) ? control_props.get_Lock() : Asc.c_oAscSdtLockType.Unlocked,
|
|
is_form = control_props && control_props.get_FormPr();
|
|
me.menuTableRemoveForm.setVisible(is_form);
|
|
menuTableControl.setVisible(!is_form);
|
|
if (is_form) {
|
|
me.menuTableRemoveForm.setDisabled(lock_type==Asc.c_oAscSdtLockType.SdtContentLocked || lock_type==Asc.c_oAscSdtLockType.SdtLocked);
|
|
me.menuTableRemoveForm.setCaption(me.getControlLabel(control_props));
|
|
} else {
|
|
me.menuTableRemoveControl.setDisabled(lock_type==Asc.c_oAscSdtLockType.SdtContentLocked || lock_type==Asc.c_oAscSdtLockType.SdtLocked);
|
|
me.menuTableControlSettings.setVisible(me.mode.canEditContentControl);
|
|
}
|
|
var spectype = control_props ? control_props.get_SpecificType() : Asc.c_oAscContentControlSpecificType.None;
|
|
control_lock = control_lock || spectype==Asc.c_oAscContentControlSpecificType.CheckBox || spectype==Asc.c_oAscContentControlSpecificType.Picture ||
|
|
spectype==Asc.c_oAscContentControlSpecificType.ComboBox || spectype==Asc.c_oAscContentControlSpecificType.DropDownList || spectype==Asc.c_oAscContentControlSpecificType.DateTime;
|
|
} else {
|
|
menuTableControl.setVisible(in_control);
|
|
me.menuTableRemoveForm.setVisible(in_control);
|
|
}
|
|
me.menuTableTOC.setVisible(in_toc);
|
|
|
|
/** coauthoring begin **/
|
|
// comments
|
|
me.menuAddCommentTable.setVisible(me.api.can_AddQuotedComment()!==false && me.mode.canCoAuthoring && me.mode.canComments && !control_lock);
|
|
me.menuAddCommentTable.setDisabled(value.paraProps!==undefined && value.paraProps.locked===true);
|
|
/** coauthoring end **/
|
|
|
|
var in_field = me.api.asc_HaveFields(true);
|
|
me.menuTableRefreshField.setVisible(!!in_field);
|
|
me.menuTableRefreshField.setDisabled(disabled);
|
|
menuTableFieldSeparator.setVisible(!!in_field);
|
|
},
|
|
items: [
|
|
me.menuSpellCheckTable,
|
|
menuSpellcheckTableSeparator,
|
|
me.menuTableCut,
|
|
me.menuTableCopy,
|
|
me.menuTablePaste,
|
|
me.menuTablePrint,
|
|
{ caption: '--' },
|
|
me.menuTableAccept,
|
|
me.menuTableReject,
|
|
menuTableReviewSeparator,
|
|
menuEquationSeparatorInTable,
|
|
me.menuTableRefreshField,
|
|
menuTableFieldSeparator,
|
|
me.menuTableSelectText,
|
|
me.menuTableInsertText,
|
|
me.menuTableDeleteText,
|
|
{ caption: '--' },
|
|
me.mnuTableMerge,
|
|
me.mnuTableSplit,
|
|
{ caption: '--' },
|
|
me.menuTableDistRows,
|
|
me.menuTableDistCols,
|
|
{ caption: '--' },
|
|
me.menuTableCellAlign,
|
|
me.menuTableDirection,
|
|
{ caption: '--' },
|
|
me.menuTableInsertCaption,
|
|
{ caption: '--' },
|
|
me.menuTableAdvanced,
|
|
{ caption: '--' },
|
|
/** coauthoring begin **/
|
|
me.menuAddCommentTable,
|
|
/** coauthoring end **/
|
|
menuNumberingTable,
|
|
me.menuAddHyperlinkTable,
|
|
menuHyperlinkTable,
|
|
me.menuTableFollow,
|
|
menuHyperlinkSeparator,
|
|
me.menuTableRemoveForm,
|
|
menuTableControl,
|
|
me.menuTableTOC,
|
|
me.menuParagraphAdvancedInTable,
|
|
me.menuTableEquation
|
|
]
|
|
}).on('hide:after', function(menu, e, isFromInputControl) {
|
|
if (me.suppressEditComplete) {
|
|
me.suppressEditComplete = false;
|
|
return;
|
|
}
|
|
|
|
if (!isFromInputControl) me.fireEvent('editcomplete', me);
|
|
me.currentMenu = null;
|
|
});
|
|
|
|
/* text menu */
|
|
|
|
me.menuParagraphBreakBefore = new Common.UI.MenuItem({
|
|
caption : me.breakBeforeText,
|
|
checkable : true
|
|
});
|
|
|
|
me.menuParagraphKeepLines = new Common.UI.MenuItem({
|
|
caption : me.keepLinesText,
|
|
checkable : true
|
|
});
|
|
|
|
me.menuParagraphVAlign = new Common.UI.MenuItem({
|
|
iconCls: 'menu__icon btn-align-top',
|
|
caption : me.vertAlignText,
|
|
menu : new Common.UI.Menu({
|
|
cls: 'shifted-right',
|
|
menuAlign: 'tl-tr',
|
|
items : [
|
|
me.menuParagraphTop = new Common.UI.MenuItem({
|
|
iconCls: 'menu__icon btn-align-top',
|
|
caption : me.textShapeAlignTop,
|
|
checkmark : false,
|
|
checkable : true,
|
|
checked : false,
|
|
toggleGroup : 'popupparagraphvalign',
|
|
valign : Asc.c_oAscVAlign.Top
|
|
}),
|
|
me.menuParagraphCenter = new Common.UI.MenuItem({
|
|
iconCls: 'menu__icon btn-align-middle',
|
|
caption : me.textShapeAlignMiddle,
|
|
checkmark : false,
|
|
checkable : true,
|
|
checked : false,
|
|
toggleGroup : 'popupparagraphvalign',
|
|
valign : Asc.c_oAscVAlign.Center
|
|
}),
|
|
me.menuParagraphBottom = new Common.UI.MenuItem({
|
|
iconCls: 'menu__icon btn-align-bottom',
|
|
caption : me.textShapeAlignBottom,
|
|
checkmark : false,
|
|
checkable : true,
|
|
checked : false,
|
|
toggleGroup : 'popupparagraphvalign',
|
|
valign : Asc.c_oAscVAlign.Bottom
|
|
})
|
|
]
|
|
})
|
|
});
|
|
|
|
me.menuParagraphDirection = new Common.UI.MenuItem({
|
|
iconCls: 'menu__icon text-orient-hor',
|
|
caption : me.directionText,
|
|
menu : new Common.UI.Menu({
|
|
cls: 'ppm-toolbar shifted-right',
|
|
menuAlign: 'tl-tr',
|
|
items : [
|
|
me.menuParagraphDirectH = new Common.UI.MenuItem({
|
|
caption : me.directHText,
|
|
iconCls : 'menu__icon text-orient-hor',
|
|
checkable : true,
|
|
checkmark : false,
|
|
checked : false,
|
|
toggleGroup : 'popupparagraphdirect',
|
|
direction : Asc.c_oAscVertDrawingText.normal
|
|
}),
|
|
me.menuParagraphDirect90 = new Common.UI.MenuItem({
|
|
caption : me.direct90Text,
|
|
iconCls : 'menu__icon text-orient-rdown',
|
|
checkable : true,
|
|
checkmark : false,
|
|
checked : false,
|
|
toggleGroup : 'popupparagraphdirect',
|
|
direction : Asc.c_oAscVertDrawingText.vert
|
|
}),
|
|
me.menuParagraphDirect270 = new Common.UI.MenuItem({
|
|
caption : me.direct270Text,
|
|
iconCls : 'menu__icon text-orient-rup',
|
|
checkable : true,
|
|
checkmark : false,
|
|
checked : false,
|
|
toggleGroup : 'popupparagraphdirect',
|
|
direction : Asc.c_oAscVertDrawingText.vert270
|
|
})
|
|
]
|
|
})
|
|
});
|
|
|
|
me.menuParagraphAdvanced = new Common.UI.MenuItem({
|
|
iconCls: 'menu__icon btn-paragraph',
|
|
caption : me.advancedParagraphText
|
|
});
|
|
|
|
me.menuFrameAdvanced = new Common.UI.MenuItem({
|
|
caption : me.advancedFrameText
|
|
});
|
|
|
|
me.menuDropCapAdvanced = new Common.UI.MenuItem({
|
|
iconCls: 'menu__icon dropcap-intext',
|
|
caption : me.advancedDropCapText
|
|
});
|
|
|
|
me.menuParagraphEquation = new Common.UI.MenuItem({
|
|
caption : me.advancedEquationText,
|
|
menu : me.createEquationMenu('popupparaeqinput', 'tl-tr')
|
|
});
|
|
/** coauthoring begin **/
|
|
var menuCommentSeparatorPara = new Common.UI.MenuItem({
|
|
caption : '--'
|
|
});
|
|
|
|
me.menuAddCommentPara = new Common.UI.MenuItem({
|
|
iconCls: 'menu__icon btn-menu-comments',
|
|
caption : me.addCommentText
|
|
});
|
|
/** coauthoring end **/
|
|
|
|
var menuHyperlinkParaSeparator = new Common.UI.MenuItem({
|
|
caption : '--'
|
|
});
|
|
|
|
me.menuAddHyperlinkPara = new Common.UI.MenuItem({
|
|
iconCls: 'menu__icon btn-inserthyperlink',
|
|
caption : me.hyperlinkText
|
|
});
|
|
|
|
me.menuEditHyperlinkPara = new Common.UI.MenuItem({
|
|
caption : me.editHyperlinkText
|
|
});
|
|
|
|
me.menuRemoveHyperlinkPara = new Common.UI.MenuItem({
|
|
caption : me.removeHyperlinkText
|
|
});
|
|
|
|
var menuHyperlinkPara = new Common.UI.MenuItem({
|
|
iconCls: 'menu__icon btn-inserthyperlink',
|
|
caption : me.hyperlinkText,
|
|
menu : new Common.UI.Menu({
|
|
cls: 'shifted-right',
|
|
menuAlign: 'tl-tr',
|
|
items : [
|
|
me.menuEditHyperlinkPara,
|
|
me.menuRemoveHyperlinkPara
|
|
]
|
|
})
|
|
});
|
|
|
|
var menuStyleSeparator = new Common.UI.MenuItemSeparator();
|
|
var menuStyle = new Common.UI.MenuItem({
|
|
caption: me.styleText,
|
|
menu: new Common.UI.Menu({
|
|
cls: 'shifted-right',
|
|
menuAlign: 'tl-tr',
|
|
items: [
|
|
me.menuStyleSave = new Common.UI.MenuItem({
|
|
caption: me.saveStyleText
|
|
}),
|
|
me.menuStyleUpdate = new Common.UI.MenuItem({
|
|
caption: me.updateStyleText.replace('%1', window.currentStyleName)
|
|
})
|
|
]
|
|
})
|
|
});
|
|
|
|
me.menuSpellPara = new Common.UI.MenuItem({
|
|
caption : me.loadSpellText,
|
|
disabled : true
|
|
});
|
|
|
|
me.menuSpellMorePara = new Common.UI.MenuItem({
|
|
caption : me.moreText,
|
|
menu : new Common.UI.Menu({
|
|
cls: 'shifted-right',
|
|
menuAlign: 'tl-tr',
|
|
restoreHeight: true,
|
|
items: []
|
|
})
|
|
});
|
|
|
|
me.langParaMenu = new Common.UI.MenuItem({
|
|
iconCls: 'menu__icon btn-ic-doclang',
|
|
caption : me.langText,
|
|
menu : new Common.UI.MenuSimple({
|
|
cls: 'lang-menu',
|
|
menuAlign: 'tl-tr',
|
|
restoreHeight: 285,
|
|
items : [],
|
|
itemTemplate: langTemplate,
|
|
search: true
|
|
})
|
|
});
|
|
|
|
me.menuIgnoreSpellPara = new Common.UI.MenuItem({
|
|
caption : me.ignoreSpellText,
|
|
value: false
|
|
});
|
|
|
|
me.menuIgnoreAllSpellPara = new Common.UI.MenuItem({
|
|
caption : me.ignoreAllSpellText,
|
|
value: true
|
|
});
|
|
|
|
me.menuToDictionaryPara = new Common.UI.MenuItem({
|
|
caption : me.toDictionaryText
|
|
});
|
|
|
|
var menuIgnoreSpellParaSeparator = new Common.UI.MenuItem({
|
|
caption : '--'
|
|
});
|
|
|
|
var menuSpellcheckParaSeparator = new Common.UI.MenuItem({
|
|
caption : '--'
|
|
});
|
|
|
|
me.menuParaCopy = new Common.UI.MenuItem({
|
|
iconCls: 'menu__icon btn-copy',
|
|
caption : me.textCopy,
|
|
value : 'copy'
|
|
});
|
|
|
|
me.menuParaPaste = new Common.UI.MenuItem({
|
|
iconCls: 'menu__icon btn-paste',
|
|
caption : me.textPaste,
|
|
value : 'paste'
|
|
});
|
|
|
|
me.menuParaCut = new Common.UI.MenuItem({
|
|
iconCls: 'menu__icon btn-cut',
|
|
caption : me.textCut,
|
|
value : 'cut'
|
|
});
|
|
|
|
me.menuParaAccept = new Common.UI.MenuItem({
|
|
caption : me.textAccept,
|
|
value : 'accept'
|
|
});
|
|
|
|
me.menuParaReject = new Common.UI.MenuItem({
|
|
caption : me.textReject,
|
|
value : 'reject'
|
|
});
|
|
|
|
var menuParaReviewSeparator = new Common.UI.MenuItem({
|
|
caption : '--'
|
|
});
|
|
|
|
me.menuParaPrint = new Common.UI.MenuItem({
|
|
iconCls: 'menu__icon btn-print',
|
|
caption : me.txtPrintSelection
|
|
});
|
|
|
|
var menuEquationSeparator = new Common.UI.MenuItem({
|
|
caption : '--'
|
|
});
|
|
|
|
me.menuParaRemoveControl = new Common.UI.MenuItem({
|
|
iconCls: 'menu__icon cc-remove',
|
|
caption: me.textRemoveControl,
|
|
value: 'remove'
|
|
});
|
|
|
|
me.menuParaControlSettings = new Common.UI.MenuItem(
|
|
{
|
|
caption: me.textEditControls,
|
|
value: 'settings'
|
|
});
|
|
|
|
var menuParaControlSeparator = new Common.UI.MenuItem({
|
|
caption : '--'
|
|
});
|
|
|
|
me.menuParaTOCSettings = new Common.UI.MenuItem({
|
|
caption: me.textTOCSettings,
|
|
value: 'settings'
|
|
});
|
|
|
|
me.menuParaTOCRefresh = new Common.UI.MenuItem({
|
|
caption : me.textUpdateTOC,
|
|
menu : new Common.UI.Menu({
|
|
cls: 'shifted-right',
|
|
menuAlign: 'tl-tr',
|
|
items : [
|
|
{
|
|
caption: me.textUpdateAll,
|
|
value: 'all'
|
|
},
|
|
{
|
|
caption: me.textUpdatePages,
|
|
value: 'pages'
|
|
}
|
|
]
|
|
})
|
|
});
|
|
|
|
var menuParaTOCSeparator = new Common.UI.MenuItem({
|
|
caption : '--'
|
|
});
|
|
|
|
me.menuParaRefreshField = new Common.UI.MenuItem({
|
|
caption: me.textRefreshField
|
|
});
|
|
|
|
var menuParaFieldSeparator = new Common.UI.MenuItem({
|
|
caption : '--'
|
|
});
|
|
|
|
me.menuParaStartNewList = new Common.UI.MenuItem({
|
|
caption: me.textStartNewList
|
|
});
|
|
|
|
me.menuParaStartNumberingFrom = new Common.UI.MenuItem({
|
|
caption: me.textStartNumberingFrom
|
|
});
|
|
|
|
me.menuParaContinueNumbering = new Common.UI.MenuItem({
|
|
caption: me.textContinueNumbering
|
|
});
|
|
|
|
var menuParaNumberingSeparator = new Common.UI.MenuItem({
|
|
caption : '--'
|
|
});
|
|
|
|
me.menuParaFollow = new Common.UI.MenuItem({
|
|
caption: me.textFollow
|
|
});
|
|
|
|
var menuParaFollowSeparator = new Common.UI.MenuItem({
|
|
caption : '--'
|
|
});
|
|
|
|
this.textMenu = new Common.UI.Menu({
|
|
cls: 'shifted-right',
|
|
restoreHeightAndTop: true,
|
|
initMenu: function(value){
|
|
var isInShape = (value.imgProps && value.imgProps.value && !_.isNull(value.imgProps.value.get_ShapeProperties()));
|
|
var isInChart = (value.imgProps && value.imgProps.value && !_.isNull(value.imgProps.value.get_ChartProperties()));
|
|
var isEquation= (value.mathProps && value.mathProps.value);
|
|
var in_toc = me.api.asc_GetTableOfContentsPr(true),
|
|
in_control = !in_toc && me.api.asc_IsContentControl(),
|
|
control_props = in_control ? me.api.asc_GetContentControlProperties() : null,
|
|
is_form = control_props && control_props.get_FormPr();
|
|
|
|
me.menuParagraphVAlign.setVisible(isInShape && !isInChart && !isEquation && !(is_form && control_props.get_FormPr().get_Fixed())); // после того, как заголовок можно будет растягивать по вертикали, вернуть "|| isInChart" !!
|
|
me.menuParagraphDirection.setVisible(isInShape && !isInChart && !isEquation && !(is_form && control_props.get_FormPr().get_Fixed())); // после того, как заголовок можно будет растягивать по вертикали, вернуть "|| isInChart" !!
|
|
if ( isInShape || isInChart ) {
|
|
var align = value.imgProps.value.get_VerticalTextAlign();
|
|
var cls = '';
|
|
switch (align) {
|
|
case Asc.c_oAscVAlign.Top:
|
|
cls = 'menu__icon btn-align-top';
|
|
break;
|
|
case Asc.c_oAscVAlign.Center:
|
|
cls = 'menu__icon btn-align-middle';
|
|
break;
|
|
case Asc.c_oAscVAlign.Bottom:
|
|
cls = 'menu__icon btn-align-bottom';
|
|
break;
|
|
}
|
|
me.menuParagraphVAlign.setIconCls(cls);
|
|
me.menuParagraphTop.setChecked(align == Asc.c_oAscVAlign.Top);
|
|
me.menuParagraphCenter.setChecked(align == Asc.c_oAscVAlign.Center);
|
|
me.menuParagraphBottom.setChecked(align == Asc.c_oAscVAlign.Bottom);
|
|
|
|
var dir = value.imgProps.value.get_Vert();
|
|
cls = '';
|
|
switch (dir) {
|
|
case Asc.c_oAscVertDrawingText.normal:
|
|
cls = 'menu__icon text-orient-hor';
|
|
break;
|
|
case Asc.c_oAscVertDrawingText.vert:
|
|
cls = 'menu__icon text-orient-rdown';
|
|
break;
|
|
case Asc.c_oAscVertDrawingText.vert270:
|
|
cls = 'menu__icon text-orient-rup';
|
|
break;
|
|
}
|
|
me.menuParagraphDirection.setIconCls(cls);
|
|
me.menuParagraphDirectH.setChecked(dir == Asc.c_oAscVertDrawingText.normal);
|
|
me.menuParagraphDirect90.setChecked(dir == Asc.c_oAscVertDrawingText.vert);
|
|
me.menuParagraphDirect270.setChecked(dir == Asc.c_oAscVertDrawingText.vert270);
|
|
}
|
|
me.menuParagraphAdvanced.isChart = (value.imgProps && value.imgProps.isChart);
|
|
me.menuParagraphAdvanced.isSmartArtInternal = (value.imgProps && value.imgProps.isSmartArtInternal);
|
|
me.menuParagraphBreakBefore.setVisible(!isInShape && !isInChart && !isEquation);
|
|
me.menuParagraphKeepLines.setVisible(!isInShape && !isInChart && !isEquation);
|
|
if (value.paraProps) {
|
|
me.menuParagraphBreakBefore.setChecked(value.paraProps.value.get_PageBreakBefore());
|
|
me.menuParagraphKeepLines.setChecked(value.paraProps.value.get_KeepLines());
|
|
}
|
|
|
|
var text = null;
|
|
if (me.api) {
|
|
text = me.api.can_AddHyperlink();
|
|
}
|
|
me.menuAddHyperlinkPara.setVisible(value.hyperProps===undefined && text!==false);
|
|
menuHyperlinkPara.setVisible(value.hyperProps!==undefined);
|
|
menuHyperlinkParaSeparator.setVisible(me.menuAddHyperlinkPara.isVisible() || menuHyperlinkPara.isVisible());
|
|
me.menuEditHyperlinkPara.hyperProps = value.hyperProps;
|
|
me.menuRemoveHyperlinkPara.hyperProps = value.hyperProps;
|
|
if (text!==false) {
|
|
me.menuAddHyperlinkPara.hyperProps = {};
|
|
me.menuAddHyperlinkPara.hyperProps.value = new Asc.CHyperlinkProperty();
|
|
me.menuAddHyperlinkPara.hyperProps.value.put_Text(text);
|
|
}
|
|
var disabled = value.paraProps.locked || (value.headerProps!==undefined && value.headerProps.locked);
|
|
me._currentParaObjDisabled = disabled;
|
|
me.menuAddHyperlinkPara.setDisabled(disabled);
|
|
menuHyperlinkPara.setDisabled(disabled || value.hyperProps!==undefined && value.hyperProps.isSeveralLinks===true);
|
|
|
|
// review move
|
|
var data = me.api.asc_GetRevisionsChangesStack(),
|
|
move = false;
|
|
me.menuParaFollow.value = null;
|
|
_.each(data, function(item) {
|
|
if ((item.get_Type()==Asc.c_oAscRevisionsChangeType.TextAdd || item.get_Type() == Asc.c_oAscRevisionsChangeType.TextRem) &&
|
|
item.get_MoveType()!=Asc.c_oAscRevisionsMove.NoMove) {
|
|
me.menuParaFollow.value = item;
|
|
move = true;
|
|
}
|
|
});
|
|
me.menuParaFollow.setVisible(move);
|
|
menuParaFollowSeparator.setVisible(move);
|
|
|
|
me.menuParagraphBreakBefore.setDisabled(disabled || !_.isUndefined(value.headerProps) || !_.isUndefined(value.imgProps));
|
|
me.menuParagraphKeepLines.setDisabled(disabled);
|
|
me.menuParagraphAdvanced.setDisabled(disabled);
|
|
me.menuFrameAdvanced.setDisabled(disabled);
|
|
me.menuDropCapAdvanced.setDisabled(disabled);
|
|
me.menuParagraphVAlign.setDisabled(disabled);
|
|
me.menuParagraphDirection.setDisabled(disabled);
|
|
|
|
var cancopy = me.api && me.api.can_CopyCut();
|
|
me.menuParaCopy.setDisabled(!cancopy);
|
|
me.menuParaCut.setDisabled(disabled || !cancopy);
|
|
me.menuParaPaste.setDisabled(disabled);
|
|
me.menuParaPrint.setVisible(me.mode.canPrint);
|
|
me.menuParaPrint.setDisabled(!cancopy);
|
|
|
|
var lockreview = Common.Utils.InternalSettings.get("de-accept-reject-lock");
|
|
me.menuParaAccept.setVisible(!lockreview);
|
|
me.menuParaReject.setVisible(!lockreview);
|
|
menuParaReviewSeparator.setVisible(!lockreview);
|
|
|
|
// spellCheck
|
|
var spell = (value.spellProps!==undefined && value.spellProps.value.get_Checked()===false);
|
|
me.menuSpellPara.setVisible(spell);
|
|
menuSpellcheckParaSeparator.setVisible(spell);
|
|
me.menuIgnoreSpellPara.setVisible(spell);
|
|
me.menuIgnoreAllSpellPara.setVisible(spell);
|
|
me.menuToDictionaryPara.setVisible(spell && me.mode.isDesktopApp);
|
|
me.langParaMenu.setVisible(spell);
|
|
me.langParaMenu.setDisabled(disabled);
|
|
menuIgnoreSpellParaSeparator.setVisible(spell);
|
|
|
|
if (spell && value.spellProps.value.get_Variants() !== null && value.spellProps.value.get_Variants() !== undefined) {
|
|
me.addWordVariants(true);
|
|
} else {
|
|
me.menuSpellPara.setCaption(me.loadSpellText, true);
|
|
me.clearWordVariants(true);
|
|
me.menuSpellMorePara.setVisible(false);
|
|
}
|
|
if (me.langParaMenu.isVisible() && me._currLang.id !== me._currLang.paraid) {
|
|
me.changeLanguageMenu(me.langParaMenu.menu);
|
|
me._currLang.paraid = me._currLang.id;
|
|
}
|
|
|
|
//equation menu
|
|
var eqlen = 0;
|
|
if (isEquation) {
|
|
eqlen = me.addEquationMenu(true, 18);
|
|
} else
|
|
me.clearEquationMenu(true, 18);
|
|
menuEquationSeparator.setVisible(isEquation && eqlen>0);
|
|
me.menuEquationInsertCaption.setVisible(isEquation);
|
|
menuEquationInsertCaptionSeparator.setVisible(isEquation);
|
|
|
|
me.menuParagraphEquation.setVisible(isEquation);
|
|
me.menuParagraphEquation.setDisabled(disabled);
|
|
if (isEquation) {
|
|
var eq = me.api.asc_GetMathInputType();
|
|
me.menuParagraphEquation.menu.items[0].setChecked(eq===Asc.c_oAscMathInputType.Unicode);
|
|
me.menuParagraphEquation.menu.items[1].setChecked(eq===Asc.c_oAscMathInputType.LaTeX);
|
|
me.menuParagraphEquation.menu.items[8].setChecked(me.api.asc_IsInlineMath());
|
|
}
|
|
|
|
var frame_pr = value.paraProps.value.get_FramePr();
|
|
me.menuFrameAdvanced.setVisible(frame_pr !== undefined);
|
|
me.menuDropCapAdvanced.setVisible(frame_pr !== undefined);
|
|
if (frame_pr)
|
|
me.menuDropCapAdvanced.setIconCls(frame_pr.get_DropCap()===Asc.c_oAscDropCap.Drop ? 'menu__icon dropcap-intext' : 'menu__icon dropcap-inmargin');
|
|
|
|
var edit_style = me.mode.canEditStyles && !isInChart && !(value.imgProps && value.imgProps.isSmartArtInternal);
|
|
menuStyleSeparator.setVisible(edit_style);
|
|
menuStyle.setVisible(edit_style);
|
|
if (edit_style) {
|
|
me.menuStyleUpdate.setCaption(me.updateStyleText.replace('%1', DE.getController('Main').translationTable[window.currentStyleName] || window.currentStyleName));
|
|
}
|
|
|
|
var control_lock = (value.paraProps) ? (!value.paraProps.value.can_DeleteBlockContentControl() || !value.paraProps.value.can_EditBlockContentControl() ||
|
|
!value.paraProps.value.can_DeleteInlineContentControl() || !value.paraProps.value.can_EditInlineContentControl()) : false;
|
|
|
|
me.menuParaRemoveControl.setVisible(in_control);
|
|
me.menuParaControlSettings.setVisible(in_control && me.mode.canEditContentControl && !is_form);
|
|
menuParaControlSeparator.setVisible(in_control);
|
|
if (in_control) {
|
|
var lock_type = (control_props) ? control_props.get_Lock() : Asc.c_oAscSdtLockType.Unlocked;
|
|
me.menuParaRemoveControl.setDisabled(lock_type==Asc.c_oAscSdtLockType.SdtContentLocked || lock_type==Asc.c_oAscSdtLockType.SdtLocked);
|
|
me.menuParaRemoveControl.setCaption(is_form ? me.getControlLabel(control_props) : me.textRemoveControl);
|
|
|
|
var spectype = control_props ? control_props.get_SpecificType() : Asc.c_oAscContentControlSpecificType.None;
|
|
control_lock = control_lock || spectype==Asc.c_oAscContentControlSpecificType.CheckBox || spectype==Asc.c_oAscContentControlSpecificType.Picture ||
|
|
spectype==Asc.c_oAscContentControlSpecificType.ComboBox || spectype==Asc.c_oAscContentControlSpecificType.DropDownList || spectype==Asc.c_oAscContentControlSpecificType.DateTime;
|
|
|
|
}
|
|
me.menuParaTOCSettings.setVisible(in_toc);
|
|
me.menuParaTOCRefresh.setVisible(in_toc);
|
|
menuParaTOCSeparator.setVisible(in_toc);
|
|
|
|
/** coauthoring begin **/
|
|
var isVisible = !isInChart && me.api.can_AddQuotedComment()!==false && me.mode.canCoAuthoring && me.mode.canComments && !control_lock;
|
|
if (me.mode.compatibleFeatures)
|
|
isVisible = isVisible && !isInShape;
|
|
menuCommentSeparatorPara.setVisible(isVisible);
|
|
me.menuAddCommentPara.setVisible(isVisible);
|
|
me.menuAddCommentPara.setDisabled(value.paraProps && value.paraProps.locked === true);
|
|
/** coauthoring end **/
|
|
|
|
var in_field = me.api.asc_HaveFields(true);
|
|
me.menuParaRefreshField.setVisible(!!in_field);
|
|
me.menuParaRefreshField.setDisabled(disabled);
|
|
menuParaFieldSeparator.setVisible(!!in_field);
|
|
|
|
var listId = me.api.asc_GetCurrentNumberingId(),
|
|
in_list = (listId !== null);
|
|
menuParaNumberingSeparator.setVisible(in_list); // hide when first item is selected
|
|
me.menuParaStartNewList.setVisible(in_list);
|
|
me.menuParaStartNumberingFrom.setVisible(in_list);
|
|
me.menuParaContinueNumbering.setVisible(in_list);
|
|
if (in_list) {
|
|
var numLvl = me.api.asc_GetNumberingPr(listId).get_Lvl(me.api.asc_GetCurrentNumberingLvl()),
|
|
format = numLvl.get_Format(),
|
|
start = me.api.asc_GetCalculatedNumberingValue();
|
|
me.menuParaStartNewList.setVisible(numLvl.get_Start()!=start);
|
|
me.menuParaStartNewList.value = {start: numLvl.get_Start()};
|
|
me.menuParaStartNumberingFrom.setVisible(format != Asc.c_oAscNumberingFormat.Bullet);
|
|
me.menuParaStartNumberingFrom.value = {format: format, start: start};
|
|
me.menuParaStartNewList.setCaption((format == Asc.c_oAscNumberingFormat.Bullet) ? me.textSeparateList : me.textStartNewList);
|
|
me.menuParaContinueNumbering.setCaption((format == Asc.c_oAscNumberingFormat.Bullet) ? me.textJoinList : me.textContinueNumbering);
|
|
}
|
|
},
|
|
items: [
|
|
me.menuSpellPara,
|
|
me.menuSpellMorePara,
|
|
menuSpellcheckParaSeparator,
|
|
me.menuIgnoreSpellPara,
|
|
me.menuIgnoreAllSpellPara,
|
|
me.menuToDictionaryPara,
|
|
me.langParaMenu,
|
|
menuIgnoreSpellParaSeparator,
|
|
me.menuParaCut,
|
|
me.menuParaCopy,
|
|
me.menuParaPaste,
|
|
me.menuParaPrint,
|
|
menuParaReviewSeparator,
|
|
me.menuParaAccept,
|
|
me.menuParaReject,
|
|
menuEquationInsertCaptionSeparator,
|
|
me.menuEquationInsertCaption,
|
|
{ caption: '--' },
|
|
menuEquationSeparator,
|
|
me.menuParaRemoveControl,
|
|
me.menuParaControlSettings,
|
|
menuParaControlSeparator,
|
|
me.menuParaRefreshField,
|
|
menuParaFieldSeparator,
|
|
me.menuParaTOCSettings,
|
|
me.menuParaTOCRefresh,
|
|
menuParaTOCSeparator,
|
|
me.menuParagraphBreakBefore,
|
|
me.menuParagraphKeepLines,
|
|
me.menuParagraphVAlign,
|
|
me.menuParagraphDirection,
|
|
me.menuParagraphAdvanced,
|
|
me.menuFrameAdvanced,
|
|
me.menuDropCapAdvanced,
|
|
me.menuParagraphEquation,
|
|
/** coauthoring begin **/
|
|
menuCommentSeparatorPara,
|
|
me.menuAddCommentPara,
|
|
/** coauthoring end **/
|
|
menuHyperlinkParaSeparator,
|
|
me.menuAddHyperlinkPara,
|
|
menuHyperlinkPara,
|
|
menuParaFollowSeparator,
|
|
me.menuParaFollow,
|
|
menuParaNumberingSeparator,
|
|
me.menuParaStartNewList,
|
|
me.menuParaStartNumberingFrom,
|
|
me.menuParaContinueNumbering,
|
|
menuStyleSeparator,
|
|
menuStyle
|
|
]
|
|
}).on('hide:after', function(menu, e, isFromInputControl) {
|
|
if (me.suppressEditComplete) {
|
|
me.suppressEditComplete = false;
|
|
return;
|
|
}
|
|
|
|
if (!isFromInputControl) me.fireEvent('editcomplete', me);
|
|
me.currentMenu = null;
|
|
});
|
|
|
|
/* header/footer menu */
|
|
var menuEditHeaderFooter = new Common.UI.MenuItem({
|
|
caption: me.editHeaderText
|
|
});
|
|
|
|
this.hdrMenu = new Common.UI.Menu({
|
|
cls: 'shifted-right',
|
|
initMenu: function(value){
|
|
menuEditHeaderFooter.setCaption(value.Header ? me.editHeaderText : me.editFooterText, true);
|
|
menuEditHeaderFooter.off('click').on('click', function(item) {
|
|
if (me.api){
|
|
if (value.Header) {
|
|
me.api.GoToHeader(value.PageNum);
|
|
}
|
|
else
|
|
me.api.GoToFooter(value.PageNum);
|
|
me.fireEvent('editcomplete', me);
|
|
}
|
|
});
|
|
},
|
|
items: [
|
|
menuEditHeaderFooter
|
|
]
|
|
}).on('hide:after', function(menu, e, isFromInputControl) {
|
|
if (!isFromInputControl) me.fireEvent('editcomplete', me);
|
|
me.currentMenu = null;
|
|
});
|
|
|
|
var nextpage = $('#id_buttonNextPage');
|
|
nextpage.attr('data-toggle', 'tooltip');
|
|
nextpage.tooltip({
|
|
title : me.textNextPage + Common.Utils.String.platformKey('Alt+PgDn'),
|
|
placement : 'top-right'
|
|
});
|
|
|
|
var prevpage = $('#id_buttonPrevPage');
|
|
prevpage.attr('data-toggle', 'tooltip');
|
|
prevpage.tooltip({
|
|
title : me.textPrevPage + Common.Utils.String.platformKey('Alt+PgUp'),
|
|
placement : 'top-right'
|
|
});
|
|
|
|
this.fireEvent('createdelayedelements', [this, 'edit']);
|
|
},
|
|
|
|
initEquationMenu: function() {
|
|
var me = this;
|
|
if (!me._currentMathObj) return;
|
|
var type = me._currentMathObj.get_Type(),
|
|
value = me._currentMathObj,
|
|
mnu, arr = [];
|
|
|
|
switch (type) {
|
|
case Asc.c_oAscMathInterfaceType.Accent:
|
|
mnu = new Common.UI.MenuItem({
|
|
caption : me.txtRemoveAccentChar,
|
|
equation : true,
|
|
disabled : me._currentParaObjDisabled,
|
|
equationProps: {type: type, callback: 'remove_AccentCharacter'}
|
|
});
|
|
arr.push(mnu);
|
|
break;
|
|
case Asc.c_oAscMathInterfaceType.BorderBox:
|
|
mnu = new Common.UI.MenuItem({
|
|
caption : me.txtBorderProps,
|
|
equation : true,
|
|
disabled : me._currentParaObjDisabled,
|
|
menu : new Common.UI.Menu({
|
|
cls: 'shifted-right',
|
|
menuAlign: 'tl-tr',
|
|
items : [
|
|
{
|
|
caption: value.get_HideTop() ? me.txtAddTop : me.txtHideTop,
|
|
equationProps: {type: type, callback: 'put_HideTop', value: !value.get_HideTop()}
|
|
},
|
|
{
|
|
caption: value.get_HideBottom() ? me.txtAddBottom : me.txtHideBottom,
|
|
equationProps: {type: type, callback: 'put_HideBottom', value: !value.get_HideBottom()}
|
|
},
|
|
{
|
|
caption: value.get_HideLeft() ? me.txtAddLeft : me.txtHideLeft,
|
|
equationProps: {type: type, callback: 'put_HideLeft', value: !value.get_HideLeft()}
|
|
},
|
|
{
|
|
caption: value.get_HideRight() ? me.txtAddRight : me.txtHideRight,
|
|
equationProps: {type: type, callback: 'put_HideRight', value: !value.get_HideRight()}
|
|
},
|
|
{
|
|
caption: value.get_HideHor() ? me.txtAddHor : me.txtHideHor,
|
|
equationProps: {type: type, callback: 'put_HideHor', value: !value.get_HideHor()}
|
|
},
|
|
{
|
|
caption: value.get_HideVer() ? me.txtAddVer : me.txtHideVer,
|
|
equationProps: {type: type, callback: 'put_HideVer', value: !value.get_HideVer()}
|
|
},
|
|
{
|
|
caption: value.get_HideTopLTR() ? me.txtAddLT : me.txtHideLT,
|
|
equationProps: {type: type, callback: 'put_HideTopLTR', value: !value.get_HideTopLTR()}
|
|
},
|
|
{
|
|
caption: value.get_HideTopRTL() ? me.txtAddLB : me.txtHideLB,
|
|
equationProps: {type: type, callback: 'put_HideTopRTL', value: !value.get_HideTopRTL()}
|
|
}
|
|
]
|
|
})
|
|
});
|
|
arr.push(mnu);
|
|
break;
|
|
case Asc.c_oAscMathInterfaceType.Bar:
|
|
mnu = new Common.UI.MenuItem({
|
|
caption : me.txtRemoveBar,
|
|
equation : true,
|
|
disabled : me._currentParaObjDisabled,
|
|
equationProps: {type: type, callback: 'remove_Bar'}
|
|
});
|
|
arr.push(mnu);
|
|
mnu = new Common.UI.MenuItem({
|
|
caption : (value.get_Pos()==Asc.c_oAscMathInterfaceBarPos.Top) ? me.txtUnderbar : me.txtOverbar,
|
|
equation : true,
|
|
disabled : me._currentParaObjDisabled,
|
|
equationProps: {type: type, callback: 'put_Pos', value: (value.get_Pos()==Asc.c_oAscMathInterfaceBarPos.Top) ? Asc.c_oAscMathInterfaceBarPos.Bottom : Asc.c_oAscMathInterfaceBarPos.Top}
|
|
});
|
|
arr.push(mnu);
|
|
break;
|
|
case Asc.c_oAscMathInterfaceType.Script:
|
|
var scripttype = value.get_ScriptType();
|
|
if (scripttype == Asc.c_oAscMathInterfaceScript.PreSubSup) {
|
|
mnu = new Common.UI.MenuItem({
|
|
caption : me.txtScriptsAfter,
|
|
equation : true,
|
|
disabled : me._currentParaObjDisabled,
|
|
equationProps: {type: type, callback: 'put_ScriptType', value: Asc.c_oAscMathInterfaceScript.SubSup}
|
|
});
|
|
arr.push(mnu);
|
|
mnu = new Common.UI.MenuItem({
|
|
caption : me.txtRemScripts,
|
|
equation : true,
|
|
disabled : me._currentParaObjDisabled,
|
|
equationProps: {type: type, callback: 'put_ScriptType', value: Asc.c_oAscMathInterfaceScript.None}
|
|
});
|
|
arr.push(mnu);
|
|
} else {
|
|
if (scripttype == Asc.c_oAscMathInterfaceScript.SubSup) {
|
|
mnu = new Common.UI.MenuItem({
|
|
caption : me.txtScriptsBefore,
|
|
equation : true,
|
|
disabled : me._currentParaObjDisabled,
|
|
equationProps: {type: type, callback: 'put_ScriptType', value: Asc.c_oAscMathInterfaceScript.PreSubSup}
|
|
});
|
|
arr.push(mnu);
|
|
}
|
|
if (scripttype == Asc.c_oAscMathInterfaceScript.SubSup || scripttype == Asc.c_oAscMathInterfaceScript.Sub ) {
|
|
mnu = new Common.UI.MenuItem({
|
|
caption : me.txtRemSubscript,
|
|
equation : true,
|
|
disabled : me._currentParaObjDisabled,
|
|
equationProps: {type: type, callback: 'put_ScriptType', value: (scripttype == Asc.c_oAscMathInterfaceScript.SubSup) ? Asc.c_oAscMathInterfaceScript.Sup : Asc.c_oAscMathInterfaceScript.None }
|
|
});
|
|
arr.push(mnu);
|
|
}
|
|
if (scripttype == Asc.c_oAscMathInterfaceScript.SubSup || scripttype == Asc.c_oAscMathInterfaceScript.Sup ) {
|
|
mnu = new Common.UI.MenuItem({
|
|
caption : me.txtRemSuperscript,
|
|
equation : true,
|
|
disabled : me._currentParaObjDisabled,
|
|
equationProps: {type: type, callback: 'put_ScriptType', value: (scripttype == Asc.c_oAscMathInterfaceScript.SubSup) ? Asc.c_oAscMathInterfaceScript.Sub : Asc.c_oAscMathInterfaceScript.None }
|
|
});
|
|
arr.push(mnu);
|
|
}
|
|
}
|
|
break;
|
|
case Asc.c_oAscMathInterfaceType.Fraction:
|
|
var fraction = value.get_FractionType();
|
|
if (fraction==Asc.c_oAscMathInterfaceFraction.Skewed || fraction==Asc.c_oAscMathInterfaceFraction.Linear) {
|
|
mnu = new Common.UI.MenuItem({
|
|
caption : me.txtFractionStacked,
|
|
equation : true,
|
|
disabled : me._currentParaObjDisabled,
|
|
equationProps: {type: type, callback: 'put_FractionType', value: Asc.c_oAscMathInterfaceFraction.Bar}
|
|
});
|
|
arr.push(mnu);
|
|
}
|
|
if (fraction==Asc.c_oAscMathInterfaceFraction.Bar || fraction==Asc.c_oAscMathInterfaceFraction.Linear) {
|
|
mnu = new Common.UI.MenuItem({
|
|
caption : me.txtFractionSkewed,
|
|
equation : true,
|
|
disabled : me._currentParaObjDisabled,
|
|
equationProps: {type: type, callback: 'put_FractionType', value: Asc.c_oAscMathInterfaceFraction.Skewed}
|
|
});
|
|
arr.push(mnu);
|
|
}
|
|
if (fraction==Asc.c_oAscMathInterfaceFraction.Bar || fraction==Asc.c_oAscMathInterfaceFraction.Skewed) {
|
|
mnu = new Common.UI.MenuItem({
|
|
caption : me.txtFractionLinear,
|
|
equation : true,
|
|
disabled : me._currentParaObjDisabled,
|
|
equationProps: {type: type, callback: 'put_FractionType', value: Asc.c_oAscMathInterfaceFraction.Linear}
|
|
});
|
|
arr.push(mnu);
|
|
}
|
|
if (fraction==Asc.c_oAscMathInterfaceFraction.Bar || fraction==Asc.c_oAscMathInterfaceFraction.NoBar) {
|
|
mnu = new Common.UI.MenuItem({
|
|
caption : (fraction==Asc.c_oAscMathInterfaceFraction.Bar) ? me.txtRemFractionBar : me.txtAddFractionBar,
|
|
equation : true,
|
|
disabled : me._currentParaObjDisabled,
|
|
equationProps: {type: type, callback: 'put_FractionType', value: (fraction==Asc.c_oAscMathInterfaceFraction.Bar) ? Asc.c_oAscMathInterfaceFraction.NoBar : Asc.c_oAscMathInterfaceFraction.Bar}
|
|
});
|
|
arr.push(mnu);
|
|
}
|
|
break;
|
|
case Asc.c_oAscMathInterfaceType.Limit:
|
|
mnu = new Common.UI.MenuItem({
|
|
caption : (value.get_Pos()==Asc.c_oAscMathInterfaceLimitPos.Top) ? me.txtLimitUnder : me.txtLimitOver,
|
|
equation : true,
|
|
disabled : me._currentParaObjDisabled,
|
|
equationProps: {type: type, callback: 'put_Pos', value: (value.get_Pos()==Asc.c_oAscMathInterfaceLimitPos.Top) ? Asc.c_oAscMathInterfaceLimitPos.Bottom : Asc.c_oAscMathInterfaceLimitPos.Top}
|
|
});
|
|
arr.push(mnu);
|
|
mnu = new Common.UI.MenuItem({
|
|
caption : me.txtRemLimit,
|
|
equation : true,
|
|
disabled : me._currentParaObjDisabled,
|
|
equationProps: {type: type, callback: 'put_Pos', value: Asc.c_oAscMathInterfaceLimitPos.None}
|
|
});
|
|
arr.push(mnu);
|
|
break;
|
|
case Asc.c_oAscMathInterfaceType.Matrix:
|
|
mnu = new Common.UI.MenuItem({
|
|
caption : value.get_HidePlaceholder() ? me.txtShowPlaceholder : me.txtHidePlaceholder,
|
|
equation : true,
|
|
disabled : me._currentParaObjDisabled,
|
|
equationProps: {type: type, callback: 'put_HidePlaceholder', value: !value.get_HidePlaceholder()}
|
|
});
|
|
arr.push(mnu);
|
|
mnu = new Common.UI.MenuItem({
|
|
caption : me.insertText,
|
|
equation : true,
|
|
disabled : me._currentParaObjDisabled,
|
|
menu : new Common.UI.Menu({
|
|
cls: 'shifted-right',
|
|
menuAlign: 'tl-tr',
|
|
items : [
|
|
{
|
|
caption: me.insertRowAboveText,
|
|
equationProps: {type: type, callback: 'insert_MatrixRow', value: true}
|
|
},
|
|
{
|
|
caption: me.insertRowBelowText,
|
|
equationProps: {type: type, callback: 'insert_MatrixRow', value: false}
|
|
},
|
|
{
|
|
caption: me.insertColumnLeftText,
|
|
equationProps: {type: type, callback: 'insert_MatrixColumn', value: true}
|
|
},
|
|
{
|
|
caption: me.insertColumnRightText,
|
|
equationProps: {type: type, callback: 'insert_MatrixColumn', value: false}
|
|
}
|
|
]
|
|
})
|
|
});
|
|
arr.push(mnu);
|
|
mnu = new Common.UI.MenuItem({
|
|
caption : me.deleteText,
|
|
equation : true,
|
|
disabled : me._currentParaObjDisabled,
|
|
menu : new Common.UI.Menu({
|
|
cls: 'shifted-right',
|
|
menuAlign: 'tl-tr',
|
|
items : [
|
|
{
|
|
caption: me.deleteRowText,
|
|
equationProps: {type: type, callback: 'delete_MatrixRow'}
|
|
},
|
|
{
|
|
caption: me.deleteColumnText,
|
|
equationProps: {type: type, callback: 'delete_MatrixColumn'}
|
|
}
|
|
]
|
|
})
|
|
});
|
|
arr.push(mnu);
|
|
mnu = new Common.UI.MenuItem({
|
|
caption : me.txtMatrixAlign,
|
|
equation : true,
|
|
disabled : me._currentParaObjDisabled,
|
|
menu : new Common.UI.Menu({
|
|
cls: 'shifted-right',
|
|
menuAlign: 'tl-tr',
|
|
items : [
|
|
{
|
|
caption: me.txtTop,
|
|
checkable : true,
|
|
checked : (value.get_MatrixAlign()==Asc.c_oAscMathInterfaceMatrixMatrixAlign.Top),
|
|
equationProps: {type: type, callback: 'put_MatrixAlign', value: Asc.c_oAscMathInterfaceMatrixMatrixAlign.Top}
|
|
},
|
|
{
|
|
caption: me.centerText,
|
|
checkable : true,
|
|
checked : (value.get_MatrixAlign()==Asc.c_oAscMathInterfaceMatrixMatrixAlign.Center),
|
|
equationProps: {type: type, callback: 'put_MatrixAlign', value: Asc.c_oAscMathInterfaceMatrixMatrixAlign.Center}
|
|
},
|
|
{
|
|
caption: me.txtBottom,
|
|
checkable : true,
|
|
checked : (value.get_MatrixAlign()==Asc.c_oAscMathInterfaceMatrixMatrixAlign.Bottom),
|
|
equationProps: {type: type, callback: 'put_MatrixAlign', value: Asc.c_oAscMathInterfaceMatrixMatrixAlign.Bottom}
|
|
}
|
|
]
|
|
})
|
|
});
|
|
arr.push(mnu);
|
|
mnu = new Common.UI.MenuItem({
|
|
caption : me.txtColumnAlign,
|
|
equation : true,
|
|
disabled : me._currentParaObjDisabled,
|
|
menu : new Common.UI.Menu({
|
|
cls: 'shifted-right',
|
|
menuAlign: 'tl-tr',
|
|
items : [
|
|
{
|
|
caption: me.leftText,
|
|
checkable : true,
|
|
checked : (value.get_ColumnAlign()==Asc.c_oAscMathInterfaceMatrixColumnAlign.Left),
|
|
equationProps: {type: type, callback: 'put_ColumnAlign', value: Asc.c_oAscMathInterfaceMatrixColumnAlign.Left}
|
|
},
|
|
{
|
|
caption: me.centerText,
|
|
checkable : true,
|
|
checked : (value.get_ColumnAlign()==Asc.c_oAscMathInterfaceMatrixColumnAlign.Center),
|
|
equationProps: {type: type, callback: 'put_ColumnAlign', value: Asc.c_oAscMathInterfaceMatrixColumnAlign.Center}
|
|
},
|
|
{
|
|
caption: me.rightText,
|
|
checkable : true,
|
|
checked : (value.get_ColumnAlign()==Asc.c_oAscMathInterfaceMatrixColumnAlign.Right),
|
|
equationProps: {type: type, callback: 'put_ColumnAlign', value: Asc.c_oAscMathInterfaceMatrixColumnAlign.Right}
|
|
}
|
|
]
|
|
})
|
|
});
|
|
arr.push(mnu);
|
|
break;
|
|
case Asc.c_oAscMathInterfaceType.EqArray:
|
|
mnu = new Common.UI.MenuItem({
|
|
caption : me.txtInsertEqBefore,
|
|
equation : true,
|
|
disabled : me._currentParaObjDisabled,
|
|
equationProps: {type: type, callback: 'insert_Equation', value: true}
|
|
});
|
|
arr.push(mnu);
|
|
mnu = new Common.UI.MenuItem({
|
|
caption : me.txtInsertEqAfter,
|
|
equation : true,
|
|
disabled : me._currentParaObjDisabled,
|
|
equationProps: {type: type, callback: 'insert_Equation', value: false}
|
|
});
|
|
arr.push(mnu);
|
|
mnu = new Common.UI.MenuItem({
|
|
caption : me.txtDeleteEq,
|
|
equation : true,
|
|
disabled : me._currentParaObjDisabled,
|
|
equationProps: {type: type, callback: 'delete_Equation'}
|
|
});
|
|
arr.push(mnu);
|
|
mnu = new Common.UI.MenuItem({
|
|
caption : me.alignmentText,
|
|
equation : true,
|
|
disabled : me._currentParaObjDisabled,
|
|
menu : new Common.UI.Menu({
|
|
cls: 'shifted-right',
|
|
menuAlign: 'tl-tr',
|
|
items : [
|
|
{
|
|
caption: me.txtTop,
|
|
checkable : true,
|
|
checked : (value.get_Align()==Asc.c_oAscMathInterfaceEqArrayAlign.Top),
|
|
equationProps: {type: type, callback: 'put_Align', value: Asc.c_oAscMathInterfaceEqArrayAlign.Top}
|
|
},
|
|
{
|
|
caption: me.centerText,
|
|
checkable : true,
|
|
checked : (value.get_Align()==Asc.c_oAscMathInterfaceEqArrayAlign.Center),
|
|
equationProps: {type: type, callback: 'put_Align', value: Asc.c_oAscMathInterfaceEqArrayAlign.Center}
|
|
},
|
|
{
|
|
caption: me.txtBottom,
|
|
checkable : true,
|
|
checked : (value.get_Align()==Asc.c_oAscMathInterfaceEqArrayAlign.Bottom),
|
|
equationProps: {type: type, callback: 'put_Align', value: Asc.c_oAscMathInterfaceEqArrayAlign.Bottom}
|
|
}
|
|
]
|
|
})
|
|
});
|
|
arr.push(mnu);
|
|
break;
|
|
case Asc.c_oAscMathInterfaceType.LargeOperator:
|
|
mnu = new Common.UI.MenuItem({
|
|
caption : me.txtLimitChange,
|
|
equation : true,
|
|
disabled : me._currentParaObjDisabled,
|
|
equationProps: {type: type, callback: 'put_LimitLocation', value: (value.get_LimitLocation() == Asc.c_oAscMathInterfaceNaryLimitLocation.UndOvr) ? Asc.c_oAscMathInterfaceNaryLimitLocation.SubSup : Asc.c_oAscMathInterfaceNaryLimitLocation.UndOvr}
|
|
});
|
|
arr.push(mnu);
|
|
if (value.get_HideUpper() !== undefined) {
|
|
mnu = new Common.UI.MenuItem({
|
|
caption : value.get_HideUpper() ? me.txtShowTopLimit : me.txtHideTopLimit,
|
|
equation : true,
|
|
disabled : me._currentParaObjDisabled,
|
|
equationProps: {type: type, callback: 'put_HideUpper', value: !value.get_HideUpper()}
|
|
});
|
|
arr.push(mnu);
|
|
}
|
|
if (value.get_HideLower() !== undefined) {
|
|
mnu = new Common.UI.MenuItem({
|
|
caption : value.get_HideLower() ? me.txtShowBottomLimit : me.txtHideBottomLimit,
|
|
equation : true,
|
|
disabled : me._currentParaObjDisabled,
|
|
equationProps: {type: type, callback: 'put_HideLower', value: !value.get_HideLower()}
|
|
});
|
|
arr.push(mnu);
|
|
}
|
|
break;
|
|
case Asc.c_oAscMathInterfaceType.Delimiter:
|
|
mnu = new Common.UI.MenuItem({
|
|
caption : me.txtInsertArgBefore,
|
|
equation : true,
|
|
disabled : me._currentParaObjDisabled,
|
|
equationProps: {type: type, callback: 'insert_DelimiterArgument', value: true}
|
|
});
|
|
arr.push(mnu);
|
|
mnu = new Common.UI.MenuItem({
|
|
caption : me.txtInsertArgAfter,
|
|
equation : true,
|
|
disabled : me._currentParaObjDisabled,
|
|
equationProps: {type: type, callback: 'insert_DelimiterArgument', value: false}
|
|
});
|
|
arr.push(mnu);
|
|
if (value.can_DeleteArgument()) {
|
|
mnu = new Common.UI.MenuItem({
|
|
caption : me.txtDeleteArg,
|
|
equation : true,
|
|
disabled : me._currentParaObjDisabled,
|
|
equationProps: {type: type, callback: 'delete_DelimiterArgument'}
|
|
});
|
|
arr.push(mnu);
|
|
}
|
|
mnu = new Common.UI.MenuItem({
|
|
caption : value.has_Separators() ? me.txtDeleteCharsAndSeparators : me.txtDeleteChars,
|
|
equation : true,
|
|
disabled : me._currentParaObjDisabled,
|
|
equationProps: {type: type, callback: 'remove_DelimiterCharacters'}
|
|
});
|
|
arr.push(mnu);
|
|
mnu = new Common.UI.MenuItem({
|
|
caption : value.get_HideOpeningBracket() ? me.txtShowOpenBracket : me.txtHideOpenBracket,
|
|
equation : true,
|
|
disabled : me._currentParaObjDisabled,
|
|
equationProps: {type: type, callback: 'put_HideOpeningBracket', value: !value.get_HideOpeningBracket()}
|
|
});
|
|
arr.push(mnu);
|
|
mnu = new Common.UI.MenuItem({
|
|
caption : value.get_HideClosingBracket() ? me.txtShowCloseBracket : me.txtHideCloseBracket,
|
|
equation : true,
|
|
disabled : me._currentParaObjDisabled,
|
|
equationProps: {type: type, callback: 'put_HideClosingBracket', value: !value.get_HideClosingBracket()}
|
|
});
|
|
arr.push(mnu);
|
|
mnu = new Common.UI.MenuItem({
|
|
caption : me.txtStretchBrackets,
|
|
equation : true,
|
|
disabled : me._currentParaObjDisabled,
|
|
checkable : true,
|
|
checked : value.get_StretchBrackets(),
|
|
equationProps: {type: type, callback: 'put_StretchBrackets', value: !value.get_StretchBrackets()}
|
|
});
|
|
arr.push(mnu);
|
|
mnu = new Common.UI.MenuItem({
|
|
caption : me.txtMatchBrackets,
|
|
equation : true,
|
|
disabled : (!value.get_StretchBrackets() || me._currentParaObjDisabled),
|
|
checkable : true,
|
|
checked : value.get_StretchBrackets() && value.get_MatchBrackets(),
|
|
equationProps: {type: type, callback: 'put_MatchBrackets', value: !value.get_MatchBrackets()}
|
|
});
|
|
arr.push(mnu);
|
|
break;
|
|
case Asc.c_oAscMathInterfaceType.GroupChar:
|
|
if (value.can_ChangePos()) {
|
|
mnu = new Common.UI.MenuItem({
|
|
caption : (value.get_Pos()==Asc.c_oAscMathInterfaceGroupCharPos.Top) ? me.txtGroupCharUnder : me.txtGroupCharOver,
|
|
equation : true,
|
|
disabled : me._currentParaObjDisabled,
|
|
equationProps: {type: type, callback: 'put_Pos', value: (value.get_Pos()==Asc.c_oAscMathInterfaceGroupCharPos.Top) ? Asc.c_oAscMathInterfaceGroupCharPos.Bottom : Asc.c_oAscMathInterfaceGroupCharPos.Top}
|
|
});
|
|
arr.push(mnu);
|
|
mnu = new Common.UI.MenuItem({
|
|
caption : me.txtDeleteGroupChar,
|
|
equation : true,
|
|
disabled : me._currentParaObjDisabled,
|
|
equationProps: {type: type, callback: 'put_Pos', value: Asc.c_oAscMathInterfaceGroupCharPos.None}
|
|
});
|
|
arr.push(mnu);
|
|
}
|
|
break;
|
|
case Asc.c_oAscMathInterfaceType.Radical:
|
|
if (value.get_HideDegree() !== undefined) {
|
|
mnu = new Common.UI.MenuItem({
|
|
caption : value.get_HideDegree() ? me.txtShowDegree : me.txtHideDegree,
|
|
equation : true,
|
|
disabled : me._currentParaObjDisabled,
|
|
equationProps: {type: type, callback: 'put_HideDegree', value: !value.get_HideDegree()}
|
|
});
|
|
arr.push(mnu);
|
|
}
|
|
mnu = new Common.UI.MenuItem({
|
|
caption : me.txtDeleteRadical,
|
|
equation : true,
|
|
disabled : me._currentParaObjDisabled,
|
|
equationProps: {type: type, callback: 'remove_Radical'}
|
|
});
|
|
arr.push(mnu);
|
|
break;
|
|
}
|
|
if (value.can_IncreaseArgumentSize()) {
|
|
mnu = new Common.UI.MenuItem({
|
|
caption : me.txtIncreaseArg,
|
|
equation : true,
|
|
disabled : me._currentParaObjDisabled,
|
|
equationProps: {type: type, callback: 'increase_ArgumentSize'}
|
|
});
|
|
arr.push(mnu);
|
|
}
|
|
if (value.can_DecreaseArgumentSize()) {
|
|
mnu = new Common.UI.MenuItem({
|
|
caption : me.txtDecreaseArg,
|
|
equation : true,
|
|
disabled : me._currentParaObjDisabled,
|
|
equationProps: {type: type, callback: 'decrease_ArgumentSize'}
|
|
});
|
|
arr.push(mnu);
|
|
}
|
|
if (value.can_InsertManualBreak()) {
|
|
mnu = new Common.UI.MenuItem({
|
|
caption : me.txtInsertBreak,
|
|
equation : true,
|
|
disabled : me._currentParaObjDisabled,
|
|
equationProps: {type: type, callback: 'insert_ManualBreak'}
|
|
});
|
|
arr.push(mnu);
|
|
}
|
|
if (value.can_DeleteManualBreak()) {
|
|
mnu = new Common.UI.MenuItem({
|
|
caption : me.txtDeleteBreak,
|
|
equation : true,
|
|
disabled : me._currentParaObjDisabled,
|
|
equationProps: {type: type, callback: 'delete_ManualBreak'}
|
|
});
|
|
arr.push(mnu);
|
|
}
|
|
if (value.can_AlignToCharacter()) {
|
|
mnu = new Common.UI.MenuItem({
|
|
caption : me.txtAlignToChar,
|
|
equation : true,
|
|
disabled : me._currentParaObjDisabled,
|
|
equationProps: {type: type, callback: 'align_ToCharacter'}
|
|
});
|
|
arr.push(mnu);
|
|
}
|
|
return arr;
|
|
},
|
|
|
|
addEquationMenu: function(isParagraph, insertIdx) {
|
|
var me = this;
|
|
if (_.isUndefined(isParagraph)) {
|
|
isParagraph = me.textMenu.isVisible();
|
|
}
|
|
|
|
me.clearEquationMenu(isParagraph, insertIdx);
|
|
|
|
var equationMenu = (isParagraph) ? me.textMenu : me.tableMenu,
|
|
menuItems = me.initEquationMenu();
|
|
|
|
if (menuItems.length > 0) {
|
|
_.each(menuItems, function(menuItem, index) {
|
|
if (menuItem.menu) {
|
|
_.each(menuItem.menu.items, function(item) {
|
|
item.on('click', _.bind(me.equationCallback, me, item.options.equationProps));
|
|
});
|
|
} else
|
|
menuItem.on('click', _.bind(me.equationCallback, me, menuItem.options.equationProps));
|
|
equationMenu.insertItem(insertIdx, menuItem);
|
|
insertIdx++;
|
|
});
|
|
}
|
|
return menuItems.length;
|
|
},
|
|
|
|
clearEquationMenu: function(isParagraph, insertIdx) {
|
|
var me = this;
|
|
var equationMenu = (isParagraph) ? me.textMenu : me.tableMenu;
|
|
for (var i = insertIdx; i < equationMenu.items.length; i++) {
|
|
if (equationMenu.items[i].options.equation) {
|
|
if (equationMenu.items[i].menu) {
|
|
_.each(equationMenu.items[i].menu.items, function(item) {
|
|
item.off('click');
|
|
});
|
|
} else
|
|
equationMenu.items[i].off('click');
|
|
equationMenu.removeItem(equationMenu.items[i]);
|
|
i--;
|
|
} else
|
|
break;
|
|
}
|
|
},
|
|
|
|
equationCallback: function(eqProps) {
|
|
this.fireEvent('equation:callback', [eqProps]);
|
|
},
|
|
|
|
addWordVariants: function(isParagraph) {
|
|
var me = this;
|
|
if (!me.textMenu || !me.textMenu.isVisible() && !me.tableMenu.isVisible()) return;
|
|
|
|
if (_.isUndefined(isParagraph)) {
|
|
isParagraph = me.textMenu.isVisible();
|
|
}
|
|
|
|
me.clearWordVariants(isParagraph);
|
|
|
|
var moreMenu = (isParagraph) ? me.menuSpellMorePara : me.menuSpellMoreTable;
|
|
var spellMenu = (isParagraph) ? me.menuSpellPara : me.menuSpellTable;
|
|
var arr = [],
|
|
arrMore = [];
|
|
var variants = me._currentSpellObj.get_Variants();
|
|
|
|
if (variants.length > 0) {
|
|
moreMenu.setVisible(variants.length > 3);
|
|
moreMenu.setDisabled(me._currentParaObjDisabled);
|
|
|
|
_.each(variants, function(variant, index) {
|
|
var mnu = new Common.UI.MenuItem({
|
|
caption : variant,
|
|
spellword : true,
|
|
disabled : me._currentParaObjDisabled
|
|
}).on('click', function(item, e) {
|
|
if (me.api) {
|
|
me.api.asc_replaceMisspelledWord(item.caption, me._currentSpellObj);
|
|
me.fireEvent('editcomplete', me);
|
|
}
|
|
});
|
|
|
|
(index < 3) ? arr.push(mnu) : arrMore.push(mnu);
|
|
});
|
|
|
|
if (arr.length > 0) {
|
|
if (isParagraph) {
|
|
_.each(arr, function(variant, index){
|
|
me.textMenu.insertItem(index, variant);
|
|
})
|
|
} else {
|
|
_.each(arr, function(variant, index){
|
|
me.menuSpellCheckTable.menu.insertItem(index, variant);
|
|
})
|
|
}
|
|
}
|
|
|
|
if (arrMore.length > 0) {
|
|
_.each(arrMore, function(variant, index){
|
|
moreMenu.menu.addItem(variant);
|
|
});
|
|
}
|
|
|
|
spellMenu.setVisible(false);
|
|
} else {
|
|
moreMenu.setVisible(false);
|
|
spellMenu.setVisible(true);
|
|
spellMenu.setCaption(me.noSpellVariantsText, true);
|
|
}
|
|
},
|
|
|
|
clearWordVariants: function(isParagraph) {
|
|
var me = this;
|
|
var spellMenu = (isParagraph) ? me.textMenu : me.menuSpellCheckTable.menu;
|
|
|
|
for (var i = 0; i < spellMenu.items.length; i++) {
|
|
if (spellMenu.items[i].options.spellword) {
|
|
if (spellMenu.checkeditem == spellMenu.items[i]) {
|
|
spellMenu.checkeditem = undefined;
|
|
spellMenu.activeItem = undefined;
|
|
}
|
|
|
|
spellMenu.removeItem(spellMenu.items[i]);
|
|
i--;
|
|
}
|
|
}
|
|
(isParagraph) ? me.menuSpellMorePara.menu.removeAll() : me.menuSpellMoreTable.menu.removeAll();
|
|
|
|
me.menuSpellMorePara.menu.checkeditem = undefined;
|
|
me.menuSpellMorePara.menu.activeItem = undefined;
|
|
me.menuSpellMoreTable.menu.checkeditem = undefined;
|
|
me.menuSpellMoreTable.menu.activeItem = undefined;
|
|
},
|
|
|
|
setLanguages: function(langs){
|
|
var me = this;
|
|
|
|
if (langs && langs.length > 0 && me.langParaMenu && me.langTableMenu) {
|
|
var arrPara = [], arrTable = [];
|
|
_.each(langs, function(lang) {
|
|
var item = {
|
|
caption : lang.displayValue,
|
|
value : lang.value,
|
|
checkable : true,
|
|
langid : lang.code,
|
|
spellcheck : lang.spellcheck
|
|
};
|
|
arrPara.push(item);
|
|
arrTable.push(_.clone(item));
|
|
});
|
|
me.langParaMenu.menu.resetItems(arrPara);
|
|
me.langTableMenu.menu.resetItems(arrTable);
|
|
}
|
|
},
|
|
|
|
changeLanguageMenu: function(menu) {
|
|
if (this._currLang.id===null || this._currLang.id===undefined) {
|
|
menu.clearAll();
|
|
} else {
|
|
var index = _.findIndex(menu.items, {langid: this._currLang.id});
|
|
(index>-1) && !menu.items[index].checked && menu.setChecked(index, true);
|
|
}
|
|
},
|
|
|
|
getControlLabel: function(props) {
|
|
var type = props ? props.get_SpecificType() : Asc.c_oAscContentControlSpecificType.None;
|
|
switch (type) {
|
|
case Asc.c_oAscContentControlSpecificType.CheckBox:
|
|
var specProps = props.get_CheckBoxPr();
|
|
return (typeof specProps.get_GroupKey() !== 'string') ? this.textRemCheckBox : this.textRemRadioBox;
|
|
case Asc.c_oAscContentControlSpecificType.ComboBox:
|
|
return this.textRemComboBox;
|
|
case Asc.c_oAscContentControlSpecificType.DropDownList:
|
|
return this.textRemDropdown;
|
|
case Asc.c_oAscContentControlSpecificType.Picture:
|
|
return this.textRemPicture;
|
|
default:
|
|
return this.textRemField;
|
|
}
|
|
},
|
|
|
|
createEquationMenu: function(toggleGroup, menuAlign) {
|
|
return new Common.UI.Menu({
|
|
cls: 'ppm-toolbar shifted-right',
|
|
menuAlign: menuAlign,
|
|
items : [
|
|
new Common.UI.MenuItem({
|
|
caption : this.unicodeText,
|
|
iconCls : 'menu__icon unicode',
|
|
checkable : true,
|
|
checkmark : false,
|
|
checked : false,
|
|
toggleGroup : toggleGroup,
|
|
type : 'input',
|
|
value : Asc.c_oAscMathInputType.Unicode
|
|
}),
|
|
new Common.UI.MenuItem({
|
|
caption : this.latexText,
|
|
iconCls : 'menu__icon latex',
|
|
checkable : true,
|
|
checkmark : false,
|
|
checked : false,
|
|
toggleGroup : toggleGroup,
|
|
type : 'input',
|
|
value : Asc.c_oAscMathInputType.LaTeX
|
|
}),
|
|
{ caption : '--' },
|
|
new Common.UI.MenuItem({
|
|
caption : this.currProfText,
|
|
iconCls : 'menu__icon professional-equation',
|
|
type : 'view',
|
|
value : {all: false, linear: false}
|
|
}),
|
|
new Common.UI.MenuItem({
|
|
caption : this.currLinearText,
|
|
iconCls : 'menu__icon linear-equation',
|
|
type : 'view',
|
|
value : {all: false, linear: true}
|
|
}),
|
|
new Common.UI.MenuItem({
|
|
caption : this.allProfText,
|
|
iconCls : 'menu__icon professional-equation',
|
|
type : 'view',
|
|
value : {all: true, linear: false}
|
|
}),
|
|
new Common.UI.MenuItem({
|
|
caption : this.allLinearText,
|
|
iconCls : 'menu__icon linear-equation',
|
|
type : 'view',
|
|
value : {all: true, linear: true}
|
|
}),
|
|
{ caption : '--' },
|
|
new Common.UI.MenuItem({
|
|
caption : this.eqToInlineText,
|
|
checkable : true,
|
|
checked : false,
|
|
type : 'mode'
|
|
})
|
|
]
|
|
});
|
|
},
|
|
|
|
focus: function() {
|
|
var me = this;
|
|
_.defer(function(){ me.cmpEl.focus(); }, 50);
|
|
},
|
|
|
|
SetDisabled: function(state, canProtect, fillFormMode) {
|
|
this._isDisabled = state;
|
|
this._canProtect = canProtect;
|
|
this._fillFormMode = state ? fillFormMode : false;
|
|
},
|
|
|
|
alignmentText : 'Alignment',
|
|
leftText : 'Left',
|
|
rightText : 'Right',
|
|
centerText : 'Center',
|
|
selectRowText : 'Select Row',
|
|
selectColumnText : 'Select Column',
|
|
selectCellText : 'Select Cell',
|
|
selectTableText : 'Select Table',
|
|
insertRowAboveText : 'Row Above',
|
|
insertRowBelowText : 'Row Below',
|
|
insertColumnLeftText : 'Column Left',
|
|
insertColumnRightText : 'Column Right',
|
|
deleteText : 'Delete',
|
|
deleteRowText : 'Delete Row',
|
|
deleteColumnText : 'Delete Column',
|
|
deleteTableText : 'Delete Table',
|
|
mergeCellsText : 'Merge Cells',
|
|
splitCellsText : 'Split Cell...',
|
|
splitCellTitleText : 'Split Cell',
|
|
originalSizeText : 'Actual Size',
|
|
advancedText : 'Advanced Settings',
|
|
breakBeforeText : 'Page break before',
|
|
keepLinesText : 'Keep lines together',
|
|
editHeaderText : 'Edit header',
|
|
editFooterText : 'Edit footer',
|
|
hyperlinkText : 'Hyperlink',
|
|
editHyperlinkText : 'Edit Hyperlink',
|
|
removeHyperlinkText : 'Remove Hyperlink',
|
|
styleText : 'Formatting as Style',
|
|
saveStyleText : 'Create new style',
|
|
updateStyleText : 'Update %1 style',
|
|
txtPressLink : 'Press {0} and click link',
|
|
selectText : 'Select',
|
|
insertRowText : 'Insert Row',
|
|
insertColumnText : 'Insert Column',
|
|
rowText : 'Row',
|
|
columnText : 'Column',
|
|
cellText : 'Cell',
|
|
tableText : 'Table',
|
|
aboveText : 'Above',
|
|
belowText : 'Below',
|
|
advancedTableText : 'Table Advanced Settings',
|
|
advancedParagraphText : 'Paragraph Advanced Settings',
|
|
paragraphText : 'Paragraph',
|
|
guestText : 'Guest',
|
|
editChartText : 'Edit Data',
|
|
/** coauthoring begin **/
|
|
addCommentText : 'Add Comment',
|
|
/** coauthoring end **/
|
|
cellAlignText: 'Cell Vertical Alignment',
|
|
txtInline: 'Inline',
|
|
txtSquare: 'Square',
|
|
txtTight: 'Tight',
|
|
txtThrough: 'Through',
|
|
txtTopAndBottom: 'Top and bottom',
|
|
txtBehind: 'Behind',
|
|
txtInFront: 'In front',
|
|
textWrap: 'Wrapping Style',
|
|
textAlign: 'Align',
|
|
textArrange : 'Arrange',
|
|
textShapeAlignLeft : 'Align Left',
|
|
textShapeAlignRight : 'Align Right',
|
|
textShapeAlignCenter : 'Align Center',
|
|
textShapeAlignTop : 'Align Top',
|
|
textShapeAlignBottom : 'Align Bottom',
|
|
textShapeAlignMiddle : 'Align Middle',
|
|
textArrangeFront : 'Bring To Front',
|
|
textArrangeBack : 'Send To Back',
|
|
textArrangeForward : 'Bring Forward',
|
|
textArrangeBackward : 'Send Backward',
|
|
txtGroup : 'Group',
|
|
txtUngroup : 'Ungroup',
|
|
textEditWrapBoundary: 'Edit Wrap Boundary',
|
|
vertAlignText: 'Vertical Alignment',
|
|
loadSpellText: 'Loading variants...',
|
|
ignoreAllSpellText: 'Ignore All',
|
|
ignoreSpellText: 'Ignore',
|
|
noSpellVariantsText: 'No variants',
|
|
moreText: 'More variants...',
|
|
spellcheckText: 'Spellcheck',
|
|
langText: 'Select Language',
|
|
advancedFrameText: 'Frame Advanced Settings',
|
|
tipIsLocked : 'This element is being edited by another user.',
|
|
textNextPage: 'Next Page',
|
|
textPrevPage: 'Previous Page',
|
|
imageText: 'Image Advanced Settings',
|
|
shapeText: 'Shape Advanced Settings',
|
|
chartText: 'Chart Advanced Settings',
|
|
insertText: 'Insert',
|
|
textCopy: 'Copy',
|
|
textPaste: 'Paste',
|
|
textCut: 'Cut',
|
|
directionText: 'Text Direction',
|
|
directHText: 'Horizontal',
|
|
direct90Text: 'Rotate Text Down',
|
|
direct270Text: 'Rotate Text Up°',
|
|
txtRemoveAccentChar: 'Remove accent character',
|
|
txtBorderProps: 'Borders property',
|
|
txtHideTop: 'Hide top border',
|
|
txtHideBottom: 'Hide bottom border',
|
|
txtHideLeft: 'Hide left border',
|
|
txtHideRight: 'Hide right border',
|
|
txtHideHor: 'Hide horizontal line',
|
|
txtHideVer: 'Hide vertical line',
|
|
txtHideLT: 'Hide left top line',
|
|
txtHideLB: 'Hide left bottom line',
|
|
txtAddTop: 'Add top border',
|
|
txtAddBottom: 'Add bottom border',
|
|
txtAddLeft: 'Add left border',
|
|
txtAddRight: 'Add right border',
|
|
txtAddHor: 'Add horizontal line',
|
|
txtAddVer: 'Add vertical line',
|
|
txtAddLT: 'Add left top line',
|
|
txtAddLB: 'Add left bottom line',
|
|
txtRemoveBar: 'Remove bar',
|
|
txtOverbar: 'Bar over text',
|
|
txtUnderbar: 'Bar under text',
|
|
txtRemScripts: 'Remove scripts',
|
|
txtRemSubscript: 'Remove subscript',
|
|
txtRemSuperscript: 'Remove superscript',
|
|
txtScriptsAfter: 'Scripts after text',
|
|
txtScriptsBefore: 'Scripts before text',
|
|
txtFractionStacked: 'Change to stacked fraction',
|
|
txtFractionSkewed: 'Change to skewed fraction',
|
|
txtFractionLinear: 'Change to linear fraction',
|
|
txtRemFractionBar: 'Remove fraction bar',
|
|
txtAddFractionBar: 'Add fraction bar',
|
|
txtRemLimit: 'Remove limit',
|
|
txtLimitOver: 'Limit over text',
|
|
txtLimitUnder: 'Limit under text',
|
|
txtHidePlaceholder: 'Hide placeholder',
|
|
txtShowPlaceholder: 'Show placeholder',
|
|
txtMatrixAlign: 'Matrix alignment',
|
|
txtColumnAlign: 'Column alignment',
|
|
txtTop: 'Top',
|
|
txtBottom: 'Bottom',
|
|
txtInsertEqBefore: 'Insert equation before',
|
|
txtInsertEqAfter: 'Insert equation after',
|
|
txtDeleteEq: 'Delete equation',
|
|
txtLimitChange: 'Change limits location',
|
|
txtHideTopLimit: 'Hide top limit',
|
|
txtShowTopLimit: 'Show top limit',
|
|
txtHideBottomLimit: 'Hide bottom limit',
|
|
txtShowBottomLimit: 'Show bottom limit',
|
|
txtInsertArgBefore: 'Insert argument before',
|
|
txtInsertArgAfter: 'Insert argument after',
|
|
txtDeleteArg: 'Delete argument',
|
|
txtHideOpenBracket: 'Hide opening bracket',
|
|
txtShowOpenBracket: 'Show opening bracket',
|
|
txtHideCloseBracket: 'Hide closing bracket',
|
|
txtShowCloseBracket: 'Show closing bracket',
|
|
txtStretchBrackets: 'Stretch brackets',
|
|
txtMatchBrackets: 'Match brackets to argument height',
|
|
txtGroupCharOver: 'Char over text',
|
|
txtGroupCharUnder: 'Char under text',
|
|
txtDeleteGroupChar: 'Delete char',
|
|
txtHideDegree: 'Hide degree',
|
|
txtShowDegree: 'Show degree',
|
|
txtIncreaseArg: 'Increase argument size',
|
|
txtDecreaseArg: 'Decrease argument size',
|
|
txtInsertBreak: 'Insert manual break',
|
|
txtDeleteBreak: 'Delete manual break',
|
|
txtAlignToChar: 'Align to character',
|
|
txtDeleteRadical: 'Delete radical',
|
|
txtDeleteChars: 'Delete enclosing characters',
|
|
txtDeleteCharsAndSeparators: 'Delete enclosing characters and separators',
|
|
txtKeepTextOnly: 'Keep text only',
|
|
textUndo: 'Undo',
|
|
strSign: 'Sign',
|
|
strDetails: 'Signature Details',
|
|
strSetup: 'Signature Setup',
|
|
strDelete: 'Remove Signature',
|
|
txtOverwriteCells: 'Overwrite cells',
|
|
textNest: 'Nest table',
|
|
textContentControls: 'Content control',
|
|
textRemove: 'Remove',
|
|
textSettings: 'Settings',
|
|
textRemoveControl: 'Remove content control',
|
|
textEditControls: 'Content control settings',
|
|
textDistributeRows: 'Distribute rows',
|
|
textDistributeCols: 'Distribute columns',
|
|
textUpdateTOC: 'Refresh table of contents',
|
|
textUpdateAll: 'Refresh entire table',
|
|
textUpdatePages: 'Refresh page numbers only',
|
|
textTOCSettings: 'Table of contents settings',
|
|
textTOC: 'Table of contents',
|
|
textRefreshField: 'Refresh field',
|
|
txtPasteSourceFormat: 'Keep source formatting',
|
|
textReplace: 'Replace image',
|
|
textFromUrl: 'From URL',
|
|
textFromFile: 'From File',
|
|
textStartNumberingFrom: 'Set numbering value',
|
|
textStartNewList: 'Start new list',
|
|
textContinueNumbering: 'Continue numbering',
|
|
textSeparateList: 'Separate list',
|
|
textJoinList: 'Join to previous list',
|
|
textNumberingValue: 'Numbering Value',
|
|
bulletsText: 'Bullets and Numbering',
|
|
txtDistribHor : 'Distribute Horizontally',
|
|
txtDistribVert : 'Distribute Vertically',
|
|
textRotate270: 'Rotate 90° Counterclockwise',
|
|
textRotate90: 'Rotate 90° Clockwise',
|
|
textFlipV: 'Flip Vertically',
|
|
textFlipH: 'Flip Horizontally',
|
|
textRotate: 'Rotate',
|
|
textCrop: 'Crop',
|
|
textCropFill: 'Fill',
|
|
textCropFit: 'Fit',
|
|
textFollow: 'Follow move',
|
|
toDictionaryText: 'Add to Dictionary',
|
|
txtPrintSelection: 'Print Selection',
|
|
textCells: 'Cells',
|
|
textSeveral: 'Several Rows/Columns',
|
|
txtInsertCaption: 'Insert Caption',
|
|
txtEmpty: '(Empty)',
|
|
textFromStorage: 'From Storage',
|
|
advancedDropCapText: 'Drop Cap Settings',
|
|
textTitleCellsRemove: 'Delete Cells',
|
|
textLeft: 'Shift cells left',
|
|
textRow: 'Delete entire row',
|
|
textCol: 'Delete entire column',
|
|
textRemCheckBox: 'Remove Checkbox',
|
|
textRemRadioBox: 'Remove Radio Button',
|
|
textRemComboBox: 'Remove Combo Box',
|
|
textRemDropdown: 'Remove Dropdown',
|
|
textRemPicture: 'Remove Image',
|
|
textRemField: 'Remove Text Field',
|
|
txtRemoveWarning: 'Do you want to remove this signature?<br>It can\'t be undone.',
|
|
notcriticalErrorTitle: 'Warning',
|
|
txtWarnUrl: 'Clicking this link can be harmful to your device and data.<br>Are you sure you want to continue?',
|
|
textEditPoints: 'Edit Points',
|
|
textAccept: 'Accept Change',
|
|
textReject: 'Reject Change',
|
|
advancedEquationText: 'Equation Settings',
|
|
unicodeText: 'Unicode',
|
|
latexText: 'LaTeX',
|
|
currProfText: 'Current - Professional',
|
|
currLinearText: 'Current - Linear',
|
|
allProfText: 'All - Professional',
|
|
allLinearText: 'All - Linear',
|
|
eqToInlineText: 'Change to Inline'
|
|
|
|
}, DE.Views.DocumentHolder || {}));
|
|
}); |