/* * * (c) Copyright Ascensio System Limited 2010-2016 * * This program is a free software product. You can redistribute it and/or * modify it under the terms of the GNU Affero General Public License (AGPL) * version 3 as published by the Free Software Foundation. In accordance with * Section 7(a) of the GNU AGPL its Section 15 shall be amended to the effect * that Ascensio System SIA expressly excludes the warranty of non-infringement * of any third-party rights. * * This program is distributed WITHOUT ANY WARRANTY; without even the implied * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For * details, see the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html * * You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, * EU, LV-1021. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under * Section 5 of the GNU AGPL version 3. * * Pursuant to Section 7(b) of the License you must retain the original Product * logo when distributing the program. Pursuant to Section 7(e) we decline to * grant you any rights under trademark law for use of our trademarks. * * All the Product's GUI elements, including illustrations and icon sets, as * well as technical writing content are licensed under the terms of the * Creative Commons Attribution-ShareAlike 4.0 International. See the License * terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode * */ /** * Toolbar.js * * Toolbar view * * Created by Alexander Yuzhin on 4/16/14 * Copyright (c) 2014 Ascensio System SIA. All rights reserved. * */ define([ 'backbone', 'text!presentationeditor/main/app/template/Toolbar.template', 'common/main/lib/collection/Fonts', 'common/main/lib/component/Button', 'common/main/lib/component/ComboBox', 'common/main/lib/component/DataView', 'common/main/lib/component/ColorPalette', 'common/main/lib/component/ThemeColorPalette', 'common/main/lib/component/Menu', 'common/main/lib/component/DimensionPicker', 'common/main/lib/component/Window', 'common/main/lib/component/ComboBoxFonts', 'common/main/lib/component/ComboDataView' /** coauthoring begin **/ ,'common/main/lib/component/SynchronizeTip' /** coauthoring end **/ ], function (Backbone, toolbarTemplate) { 'use strict'; PE.enumLock = { paragraphLock: 'para-lock', shapeLock: 'shape-lock', slideLock: 'slide-lock', slideDeleted: 'slide-deleted', noSlides: 'no-slides', lostConnect: 'disconnect', incIndentLock: 'can-inc-indent', decIndentLock: 'can-dec-indent', hyperlinkLock: 'can-hyperlink', undoLock: 'can-undo', redoLock: 'can-redo', docPropsLock: 'doc-props-lock', themeLock: 'theme-lock', menuFileOpen: 'menu-file-open', noParagraphSelected: 'no-paragraph', noObjectSelected: 'no-object', disableOnStart: 'on-start', cantPrint: 'cant-print', noTextSelected: 'no-text', inEquation: 'in-equation' }; PE.Views.Toolbar = Backbone.View.extend(_.extend({ el: '#toolbar', // Compile our stats template template: _.template(toolbarTemplate), // Delegated events for creating new items, and clearing completed ones. events: { // }, initialize: function () { var me = this; me.paragraphControls = []; me.shapeControls = []; me.slideOnlyControls = []; me.synchTooltip = undefined; me.schemeNames = [ me.txtScheme1, me.txtScheme2, me.txtScheme3, me.txtScheme4, me.txtScheme5, me.txtScheme6, me.txtScheme7, me.txtScheme8, me.txtScheme9, me.txtScheme10, me.txtScheme11, me.txtScheme12, me.txtScheme13, me.txtScheme14, me.txtScheme15, me.txtScheme16, me.txtScheme17, me.txtScheme18, me.txtScheme19, me.txtScheme20, me.txtScheme21 ]; me._state = { hasCollaborativeChanges: undefined }; me.btnSaveCls = 'btn-save'; me.btnSaveTip = this.tipSave + Common.Utils.String.platformKey('Ctrl+S'); /** * UI Components */ var _set = PE.enumLock; me.btnNewDocument = new Common.UI.Button({ id : 'id-toolbar-btn-newdocument', cls : 'btn-toolbar', iconCls : 'btn-newdocument', lock : [_set.slideDeleted, _set.paragraphLock, _set.lostConnect, _set.noSlides] }); me.paragraphControls.push(me.btnNewDocument); me.btnOpenDocument = new Common.UI.Button({ id : 'id-toolbar-btn-opendocument', cls : 'btn-toolbar', iconCls : 'btn-opendocument', lock : [_set.slideDeleted, _set.paragraphLock, _set.lostConnect, _set.noSlides] }); me.paragraphControls.push(me.btnOpenDocument); me.btnAddSlide = new Common.UI.Button({ id : 'id-toolbar-button-add-slide', cls : 'btn-toolbar', iconCls : 'btn-addslide', split : true, lock : [_set.menuFileOpen, _set.slideDeleted, _set.lostConnect, _set.disableOnStart], menu : true }); me.slideOnlyControls.push(me.btnAddSlide); me.btnChangeSlide = new Common.UI.Button({ id : 'id-toolbar-button-change-slide', cls : 'btn-toolbar', iconCls : 'btn-changeslide', lock : [_set.menuFileOpen, _set.slideDeleted, _set.slideLock, _set.lostConnect, _set.noSlides, _set.disableOnStart], menu : true }); me.slideOnlyControls.push(me.btnChangeSlide); me.btnPreview = new Common.UI.Button({ id : 'id-toolbar-button-preview', cls : 'btn-toolbar', iconCls : 'btn-preview', lock : [_set.menuFileOpen, _set.slideDeleted, _set.noSlides, _set.disableOnStart], split : true, menu : new Common.UI.Menu({ items : [ {caption: this.textShowBegin, value: 0}, {caption: this.textShowCurrent, value: 1}, {caption: '--'}, me.mnuShowSettings = new Common.UI.MenuItem({ caption: this.textShowSettings, value: 2, lock: [_set.lostConnect] }) ] }) }); me.slideOnlyControls.push(me.btnPreview); me.btnPrint = new Common.UI.Button({ id : 'id-toolbar-btn-print', cls : 'btn-toolbar', iconCls : 'btn-print', lock : [_set.slideDeleted, _set.noSlides, _set.cantPrint] }); me.paragraphControls.push(me.btnPrint); me.btnSave = new Common.UI.Button({ id : 'id-toolbar-btn-save', cls : 'btn-toolbar', iconCls : me.btnSaveCls, lock : [_set.lostConnect] }); me.btnUndo = new Common.UI.Button({ id : 'id-toolbar-btn-undo', cls : 'btn-toolbar', iconCls : 'btn-undo', lock : [_set.undoLock, _set.slideDeleted, _set.lostConnect, _set.disableOnStart] }); me.slideOnlyControls.push(me.btnUndo); me.btnRedo = new Common.UI.Button({ id : 'id-toolbar-btn-redo', cls : 'btn-toolbar', iconCls : 'btn-redo', lock : [_set.redoLock, _set.slideDeleted, _set.lostConnect, _set.disableOnStart] }); me.slideOnlyControls.push(me.btnRedo); me.btnCopy = new Common.UI.Button({ id : 'id-toolbar-btn-copy', cls : 'btn-toolbar', iconCls : 'btn-copy', lock : [_set.slideDeleted, _set.lostConnect, _set.noSlides, _set.disableOnStart] }); me.slideOnlyControls.push(me.btnCopy); me.btnPaste = new Common.UI.Button({ id : 'id-toolbar-btn-paste', cls : 'btn-toolbar', iconCls : 'btn-paste', lock : [_set.slideDeleted, _set.paragraphLock, _set.lostConnect, _set.noSlides] }); me.paragraphControls.push(me.btnPaste); me.cmbFontName = new Common.UI.ComboBoxFonts({ cls : 'input-group-nr', menuCls : 'scrollable-menu', menuStyle : 'min-width: 325px;', hint : me.tipFontName, lock : [_set.slideDeleted, _set.paragraphLock, _set.lostConnect, _set.noSlides, _set.noTextSelected, _set.shapeLock], store : new Common.Collections.Fonts() }); me.paragraphControls.push(me.cmbFontName); me.cmbFontSize = new Common.UI.ComboBox({ cls : 'input-group-nr', menuStyle : 'min-width: 55px;', hint : me.tipFontSize, lock : [_set.slideDeleted, _set.paragraphLock, _set.lostConnect, _set.noSlides, _set.noTextSelected, _set.shapeLock], data : [ { value: 8, displayValue: "8" }, { value: 9, displayValue: "9" }, { value: 10, displayValue: "10" }, { value: 11, displayValue: "11" }, { value: 12, displayValue: "12" }, { value: 14, displayValue: "14" }, { value: 16, displayValue: "16" }, { value: 18, displayValue: "18" }, { value: 20, displayValue: "20" }, { value: 22, displayValue: "22" }, { value: 24, displayValue: "24" }, { value: 26, displayValue: "26" }, { value: 28, displayValue: "28" }, { value: 36, displayValue: "36" }, { value: 48, displayValue: "48" }, { value: 72, displayValue: "72" } ] }); me.paragraphControls.push(me.cmbFontSize); me.btnBold = new Common.UI.Button({ id : 'id-toolbar-btn-bold', cls : 'btn-toolbar', iconCls : 'btn-bold', lock : [_set.slideDeleted, _set.paragraphLock, _set.lostConnect, _set.noSlides, _set.noTextSelected, _set.shapeLock], enableToggle: true }); me.paragraphControls.push(me.btnBold); me.btnItalic = new Common.UI.Button({ id : 'id-toolbar-btn-italic', cls : 'btn-toolbar', iconCls : 'btn-italic', lock : [_set.slideDeleted, _set.paragraphLock, _set.lostConnect, _set.noSlides, _set.noTextSelected, _set.shapeLock], enableToggle: true }); me.paragraphControls.push(me.btnItalic); me.btnUnderline = new Common.UI.Button({ id : 'id-toolbar-btn-underline', cls : 'btn-toolbar', iconCls : 'btn-underline', lock : [_set.slideDeleted, _set.paragraphLock, _set.lostConnect, _set.noSlides, _set.noTextSelected, _set.shapeLock], enableToggle: true }); me.paragraphControls.push(me.btnUnderline); me.btnStrikeout = new Common.UI.Button({ id : 'id-toolbar-btn-strikeout', cls : 'btn-toolbar', iconCls : 'btn-strikeout', lock : [_set.slideDeleted, _set.paragraphLock, _set.lostConnect, _set.noSlides, _set.noTextSelected, _set.shapeLock], enableToggle: true }); me.paragraphControls.push(me.btnStrikeout); me.btnSuperscript = new Common.UI.Button({ id : 'id-toolbar-btn-superscript', cls : 'btn-toolbar', iconCls : 'btn-superscript', lock : [_set.slideDeleted, _set.paragraphLock, _set.lostConnect, _set.noSlides, _set.noTextSelected, _set.shapeLock, _set.inEquation], enableToggle: true, toggleGroup : 'superscriptGroup' }); me.paragraphControls.push(me.btnSuperscript); me.btnSubscript = new Common.UI.Button({ id : 'id-toolbar-btn-subscript', cls : 'btn-toolbar', iconCls : 'btn-subscript', lock : [_set.slideDeleted, _set.paragraphLock, _set.lostConnect, _set.noSlides, _set.noTextSelected, _set.shapeLock, _set.inEquation], enableToggle: true, toggleGroup : 'superscriptGroup' }); me.paragraphControls.push(me.btnSubscript); me.btnFontColor = new Common.UI.Button({ id : 'id-toolbar-btn-fontcolor', cls : 'btn-toolbar', iconCls : 'btn-fontcolor', lock : [_set.slideDeleted, _set.paragraphLock, _set.lostConnect, _set.noSlides, _set.noTextSelected, _set.shapeLock], split : true, menu : new Common.UI.Menu({ items: [ { template: _.template('
') }, { template: _.template('' + me.textNewColor + '') } ] }) }).on('render:after', function(btn) { var colorVal = $(''); $('button:first-child', btn.cmpEl).append(colorVal); colorVal.css('background-color', btn.currentColor || 'transparent'); me.mnuFontColorPicker = new Common.UI.ThemeColorPalette({ el: $('#id-toolbar-menu-fontcolor') }); }); me.paragraphControls.push(me.btnFontColor); me.btnClearStyle = new Common.UI.Button({ id : 'id-toolbar-btn-clearstyle', cls : 'btn-toolbar', iconCls : 'btn-clearstyle', lock : [_set.slideDeleted, _set.paragraphLock, _set.lostConnect, _set.noSlides, _set.noParagraphSelected] }); me.paragraphControls.push(me.btnClearStyle); me.btnCopyStyle = new Common.UI.Button({ id : 'id-toolbar-btn-copystyle', cls : 'btn-toolbar', iconCls : 'btn-copystyle', lock : [_set.slideDeleted, _set.lostConnect, _set.noSlides, _set.noParagraphSelected, _set.disableOnStart], enableToggle: true }); me.slideOnlyControls.push(me.btnCopyStyle); me.btnMarkers = new Common.UI.Button({ id : 'id-toolbar-btn-markers', cls : 'btn-toolbar', iconCls : 'btn-setmarkers', lock : [_set.slideDeleted, _set.paragraphLock, _set.lostConnect, _set.noSlides, _set.noParagraphSelected], enableToggle: true, toggleGroup : 'markersGroup', split : true, menu : true }); me.paragraphControls.push(me.btnMarkers); me.btnNumbers = new Common.UI.Button({ id : 'id-toolbar-btn-numbering', cls : 'btn-toolbar', iconCls : 'btn-numbering', lock : [_set.slideDeleted, _set.paragraphLock, _set.lostConnect, _set.noSlides, _set.noParagraphSelected], enableToggle: true, toggleGroup : 'markersGroup', split : true, menu : true }); me.paragraphControls.push(me.btnNumbers); var clone = function(source) { var obj = {}; for (var prop in source) obj[prop] = (typeof(source[prop])=='object') ? clone(source[prop]) : source[prop]; return obj; }; this.mnuMarkersPicker = { conf: {index:0}, selectByIndex: function (idx) { this.conf.index = idx; } }; this.mnuNumbersPicker = clone(this.mnuMarkersPicker); me.btnHorizontalAlign = new Common.UI.Button({ id : 'id-toolbar-btn-halign', cls : 'btn-toolbar', iconCls : 'btn-align-left', icls : 'btn-align-left', lock : [_set.slideDeleted, _set.paragraphLock, _set.lostConnect, _set.noSlides, _set.noParagraphSelected], menu : new Common.UI.Menu({ items: [ { caption : me.textAlignLeft + Common.Utils.String.platformKey('Ctrl+L'), iconCls : 'mnu-align-left', icls : 'btn-align-left', checkable : true, toggleGroup : 'halignGroup', checked : true, value : 1 }, { caption : me.textAlignCenter + Common.Utils.String.platformKey('Ctrl+E'), iconCls : 'mnu-align-center', icls : 'btn-align-center', checkable : true, toggleGroup : 'halignGroup', value : 2 }, { caption : me.textAlignRight + Common.Utils.String.platformKey('Ctrl+R'), iconCls : 'mnu-align-right', icls : 'btn-align-right', checkable : true, toggleGroup : 'halignGroup', value : 0 }, { caption : me.textAlignJust + Common.Utils.String.platformKey('Ctrl+J'), iconCls : 'mnu-align-just', icls : 'btn-align-just', checkable : true, toggleGroup : 'halignGroup', value : 3 } ] }) }); me.paragraphControls.push(me.btnHorizontalAlign); me.btnVerticalAlign = new Common.UI.Button({ id : 'id-toolbar-btn-valign', cls : 'btn-toolbar', lock : [_set.slideDeleted, _set.paragraphLock, _set.lostConnect, _set.noSlides, _set.noParagraphSelected], iconCls : 'btn-align-middle', icls : 'btn-align-middle', menu : new Common.UI.Menu({ items: [ { caption : me.textAlignTop, iconCls : 'mnu-align-top', icls : 'btn-align-top', checkable : true, toggleGroup : 'valignGroup', value : Asc.c_oAscVAlign.Top }, { caption : me.textAlignMiddle, iconCls : 'mnu-align-middle', icls : 'btn-align-middle', checkable : true, toggleGroup : 'valignGroup', value : Asc.c_oAscVAlign.Center, checked : true }, { caption : me.textAlignBottom, iconCls : 'mnu-align-bottom', icls : 'btn-align-bottom', checkable : true, toggleGroup : 'valignGroup', value : Asc.c_oAscVAlign.Bottom } ] }) }); me.paragraphControls.push(me.btnVerticalAlign); me.btnDecLeftOffset = new Common.UI.Button({ id : 'id-toolbar-btn-decoffset', cls : 'btn-toolbar', iconCls : 'btn-decoffset', lock : [_set.decIndentLock, _set.slideDeleted, _set.paragraphLock, _set.lostConnect, _set.noSlides, _set.noParagraphSelected] }); me.paragraphControls.push(me.btnDecLeftOffset); me.btnIncLeftOffset = new Common.UI.Button({ id : 'id-toolbar-btn-incoffset', cls : 'btn-toolbar', iconCls : 'btn-incoffset', lock : [_set.incIndentLock, _set.slideDeleted, _set.paragraphLock, _set.lostConnect, _set.noSlides, _set.noParagraphSelected] }); me.paragraphControls.push(me.btnIncLeftOffset); me.btnLineSpace = new Common.UI.Button({ id : 'id-toolbar-btn-linespace', cls : 'btn-toolbar', iconCls : 'btn-linespace', lock : [_set.slideDeleted, _set.paragraphLock, _set.lostConnect, _set.noSlides, _set.noParagraphSelected], menu : new Common.UI.Menu({ style: 'min-width: 60px;', items: [ { caption: '1.0', value: 1.0, checkable: true, toggleGroup: 'linesize' }, { caption: '1.15', value: 1.15, checkable: true, toggleGroup: 'linesize' }, { caption: '1.5', value: 1.5, checkable: true, toggleGroup: 'linesize' }, { caption: '2.0', value: 2.0, checkable: true, toggleGroup: 'linesize' }, { caption: '2.5', value: 2.5, checkable: true, toggleGroup: 'linesize' }, { caption: '3.0', value: 3.0, checkable: true, toggleGroup: 'linesize' } ] }) }); me.paragraphControls.push(me.btnLineSpace); me.btnInsertTable = new Common.UI.Button({ id : 'id-toolbar-btn-inserttable', cls : 'btn-toolbar', iconCls : 'btn-inserttable', lock : [_set.slideDeleted, _set.lostConnect, _set.noSlides, _set.disableOnStart], menu : new Common.UI.Menu({ items: [ { template: _.template('') }, { caption: me.mniCustomTable, value: 'custom' } ] }) }).on('render:after', function(btn) { me.mnuTablePicker = new Common.UI.DimensionPicker({ el : $('#id-toolbar-menu-tablepicker'), minRows : 8, minColumns : 10, maxRows : 8, maxColumns : 10 }); }); me.slideOnlyControls.push(me.btnInsertTable); me.btnInsertImage = new Common.UI.Button({ id : 'id-toolbar-btn-insertimage', cls : 'btn-toolbar', iconCls : 'btn-insertimage', lock : [_set.slideDeleted, _set.lostConnect, _set.noSlides, _set.disableOnStart], menu : new Common.UI.Menu({ items: [ { caption: me.mniImageFromFile, value: 'file' }, { caption: me.mniImageFromUrl, value: 'url' } ] }) }); me.slideOnlyControls.push(me.btnInsertImage); me.btnInsertChart = new Common.UI.Button({ id : 'id-toolbar-btn-insertchart', cls : 'btn-toolbar', iconCls : 'btn-insertchart', lock : [_set.slideDeleted, _set.lostConnect, _set.noSlides, _set.disableOnStart], menu : new Common.UI.Menu({ style: 'width: 435px;', items: [ { template: _.template('') } ] }) }).on('render:after', function(btn) { me.mnuInsertChartPicker = new Common.UI.DataView({ el: $('#id-toolbar-menu-insertchart'), parentMenu: btn.menu, showLast: false, restoreHeight: 421, groups: new Common.UI.DataViewGroupStore([ { id: 'menu-chart-group-bar', caption: me.textColumn, headername: me.textCharts }, { id: 'menu-chart-group-line', caption: me.textLine }, { id: 'menu-chart-group-pie', caption: me.textPie }, { id: 'menu-chart-group-hbar', caption: me.textBar }, { id: 'menu-chart-group-area', caption: me.textArea, inline: true }, { id: 'menu-chart-group-scatter', caption: me.textPoint, inline: true }, { id: 'menu-chart-group-stock', caption: me.textStock, inline: true } ]), store: new Common.UI.DataViewStore([ { group: 'menu-chart-group-bar', type: Asc.c_oAscChartTypeSettings.barNormal, allowSelected: true, iconCls: 'column-normal', selected: true}, { group: 'menu-chart-group-bar', type: Asc.c_oAscChartTypeSettings.barStacked, allowSelected: true, iconCls: 'column-stack'}, { group: 'menu-chart-group-bar', type: Asc.c_oAscChartTypeSettings.barStackedPer, allowSelected: true, iconCls: 'column-pstack'}, { group: 'menu-chart-group-bar', type: Asc.c_oAscChartTypeSettings.barNormal3d, allowSelected: true, iconCls: 'column-3d-normal'}, { group: 'menu-chart-group-bar', type: Asc.c_oAscChartTypeSettings.barStacked3d, allowSelected: true, iconCls: 'column-3d-stack'}, { group: 'menu-chart-group-bar', type: Asc.c_oAscChartTypeSettings.barStackedPer3d, allowSelected: true, iconCls: 'column-3d-pstack'}, { group: 'menu-chart-group-bar', type: Asc.c_oAscChartTypeSettings.barNormal3dPerspective, allowSelected: true, iconCls: 'column-3d-normal-per'}, { group: 'menu-chart-group-line', type: Asc.c_oAscChartTypeSettings.lineNormal, allowSelected: true, iconCls: 'line-normal'}, { group: 'menu-chart-group-line', type: Asc.c_oAscChartTypeSettings.lineStacked, allowSelected: true, iconCls: 'line-stack'}, { group: 'menu-chart-group-line', type: Asc.c_oAscChartTypeSettings.lineStackedPer, allowSelected: true, iconCls: 'line-pstack'}, { group: 'menu-chart-group-line', type: Asc.c_oAscChartTypeSettings.line3d, allowSelected: true, iconCls: 'line-3d'}, { group: 'menu-chart-group-pie', type: Asc.c_oAscChartTypeSettings.pie, allowSelected: true, iconCls: 'pie-normal'}, { group: 'menu-chart-group-pie', type: Asc.c_oAscChartTypeSettings.doughnut, allowSelected: true, iconCls: 'pie-doughnut'}, { group: 'menu-chart-group-pie', type: Asc.c_oAscChartTypeSettings.pie3d, allowSelected: true, iconCls: 'pie-3d-normal'}, { group: 'menu-chart-group-hbar', type: Asc.c_oAscChartTypeSettings.hBarNormal, allowSelected: true, iconCls: 'bar-normal'}, { group: 'menu-chart-group-hbar', type: Asc.c_oAscChartTypeSettings.hBarStacked, allowSelected: true, iconCls: 'bar-stack'}, { group: 'menu-chart-group-hbar', type: Asc.c_oAscChartTypeSettings.hBarStackedPer, allowSelected: true, iconCls: 'bar-pstack'}, { group: 'menu-chart-group-hbar', type: Asc.c_oAscChartTypeSettings.hBarNormal3d, allowSelected: true, iconCls: 'bar-3d-normal'}, { group: 'menu-chart-group-hbar', type: Asc.c_oAscChartTypeSettings.hBarStacked3d, allowSelected: true, iconCls: 'bar-3d-stack'}, { group: 'menu-chart-group-hbar', type: Asc.c_oAscChartTypeSettings.hBarStackedPer3d, allowSelected: true, iconCls: 'bar-3d-pstack'}, { group: 'menu-chart-group-area', type: Asc.c_oAscChartTypeSettings.areaNormal, allowSelected: true, iconCls: 'area-normal'}, { group: 'menu-chart-group-area', type: Asc.c_oAscChartTypeSettings.areaStacked, allowSelected: true, iconCls: 'area-stack'}, { group: 'menu-chart-group-area', type: Asc.c_oAscChartTypeSettings.areaStackedPer, allowSelected: true, iconCls: 'area-pstack'}, { group: 'menu-chart-group-scatter', type: Asc.c_oAscChartTypeSettings.scatter, allowSelected: true, iconCls: 'point-normal'}, { group: 'menu-chart-group-stock', type: Asc.c_oAscChartTypeSettings.stock, allowSelected: true, iconCls: 'stock-normal'} ]), itemTemplate: _.template('') }) }); me.slideOnlyControls.push(me.btnInsertChart); me.btnInsertText = new Common.UI.Button({ id : 'id-toolbar-btn-inserttext', cls : 'btn-toolbar', iconCls : 'btn-inserttext', lock : [_set.slideDeleted, _set.lostConnect, _set.noSlides, _set.disableOnStart], enableToggle: true, split : true, menu : new Common.UI.Menu({ items : [ {caption: this.textInsText, value: 'text'}, this.mnuInsertTextArt = new Common.UI.MenuItem({ caption: this.textInsTextArt, value: 'art', menu: new Common.UI.Menu({ menuAlign: 'tl-tr', cls: 'menu-shapes', items: [ { template: _.template('') } ] }) }) ] }) }); me.slideOnlyControls.push(me.btnInsertText); this.btnInsertEquation = new Common.UI.Button({ id : 'id-toolbar-btn-insertequation', cls : 'btn-toolbar', iconCls : 'btn-insertequation', lock : [_set.slideDeleted, _set.lostConnect, _set.noSlides, _set.disableOnStart], split : true, menu : new Common.UI.Menu({cls: 'menu-shapes'}) }); this.slideOnlyControls.push(this.btnInsertEquation); me.btnInsertHyperlink = new Common.UI.Button({ id : 'id-toolbar-btn-inserthyperlink', cls : 'btn-toolbar', iconCls : 'btn-inserthyperlink', lock : [_set.hyperlinkLock, _set.slideDeleted, _set.paragraphLock, _set.lostConnect, _set.noSlides, _set.noParagraphSelected] }); me.paragraphControls.push(me.btnInsertHyperlink); me.btnInsertShape = new Common.UI.Button({ id : 'id-toolbar-btn-insertshape', cls : 'btn-toolbar', iconCls : 'btn-insertshape', lock : [_set.slideDeleted, _set.lostConnect, _set.noSlides, _set.disableOnStart], enableToggle: true, menu : new Common.UI.Menu({cls: 'menu-shapes'}) }); me.slideOnlyControls.push(me.btnInsertShape); me.btnColorSchemas = new Common.UI.Button({ id : 'id-toolbar-btn-colorschemas', cls : 'btn-toolbar', iconCls : 'btn-colorschemas', lock : [_set.themeLock, _set.slideDeleted, _set.lostConnect, _set.noSlides, _set.disableOnStart], menu : new Common.UI.Menu({ items : [], maxHeight : 600, restoreHeight: 600 }).on('show:before', function(mnu) { this.scroller = new Common.UI.Scroller({ el: $(this.el).find('.dropdown-menu '), useKeyboard: this.enableKeyEvents && !this.handleSelect, minScrollbarLength : 40, alwaysVisibleY: true }); }).on('show:after', function(btn, e) { var mnu = $(this.el).find('.dropdown-menu '), docH = Common.Utils.innerHeight(), menuH = mnu.outerHeight(), top = parseInt(mnu.css('top')); if (menuH > docH) { mnu.css('max-height', (docH - parseInt(mnu.css('padding-top')) - parseInt(mnu.css('padding-bottom'))-5) + 'px'); this.scroller.update({minScrollbarLength : 40}); } else if ( mnu.height() < this.options.restoreHeight ) { mnu.css('max-height', (Math.min(docH - parseInt(mnu.css('padding-top')) - parseInt(mnu.css('padding-bottom'))-5, this.options.restoreHeight)) + 'px'); menuH = mnu.outerHeight(); if (top+menuH > docH) { mnu.css('top', 0); } this.scroller.update({minScrollbarLength : 40}); } }) }); me.slideOnlyControls.push(me.btnColorSchemas); me.btnHide = new Common.UI.Button({ id : 'id-toolbar-btn-hidebars', cls : 'btn-toolbar', iconCls : 'btn-hidebars', lock : [_set.menuFileOpen, _set.slideDeleted, _set.disableOnStart], menu : true }); me.slideOnlyControls.push(me.btnHide); this.btnFitPage = { conf: {checked:false}, setChecked: function(val) { this.conf.checked = val;}, isChecked: function () { return this.conf.checked; } }; this.btnFitWidth = clone(this.btnFitPage); this.mnuZoom = {options: {value: 100}}; me.btnAdvSettings = new Common.UI.Button({ id : 'id-toolbar-btn-settings', cls : 'btn-toolbar', iconCls : 'btn-settings', lock : [_set.slideDeleted, _set.disableOnStart] }); me.slideOnlyControls.push(me.btnAdvSettings); me.btnShapeAlign = new Common.UI.Button({ id : 'id-toolbar-btn-shape-align', cls : 'btn-toolbar', iconCls : 'btn-align-shape', lock : [_set.slideDeleted, _set.shapeLock, _set.lostConnect, _set.noSlides, _set.noObjectSelected, _set.disableOnStart], menu : new Common.UI.Menu({ items: [ { caption : me.textShapeAlignLeft, iconCls : 'mnu-shape-align-left', value : Asc.c_oAscAlignShapeType.ALIGN_LEFT }, { caption : me.textShapeAlignCenter, iconCls : 'mnu-shape-align-center', value : Asc.c_oAscAlignShapeType.ALIGN_CENTER }, { caption : me.textShapeAlignRight, iconCls : 'mnu-shape-align-right', value : Asc.c_oAscAlignShapeType.ALIGN_RIGHT }, { caption : me.textShapeAlignTop, iconCls : 'mnu-shape-align-top', value : Asc.c_oAscAlignShapeType.ALIGN_TOP }, { caption : me.textShapeAlignMiddle, iconCls : 'mnu-shape-align-middle', value : Asc.c_oAscAlignShapeType.ALIGN_MIDDLE }, { caption : me.textShapeAlignBottom, iconCls : 'mnu-shape-align-bottom', value : Asc.c_oAscAlignShapeType.ALIGN_BOTTOM }, {caption: '--' }, { caption : me.txtDistribHor, iconCls : 'mnu-distrib-hor', value : 6 }, { caption : me.txtDistribVert, iconCls : 'mnu-distrib-vert', value : 7 } ] }) }); me.shapeControls.push(me.btnShapeAlign); me.slideOnlyControls.push(me.btnShapeAlign); me.btnShapeArrange = new Common.UI.Button({ id : 'id-toolbar-btn-shape-arrange', cls : 'btn-toolbar', iconCls : 'btn-arrange-shape', lock : [_set.slideDeleted, _set.lostConnect, _set.noSlides, _set.noObjectSelected, _set.disableOnStart], menu : new Common.UI.Menu({ items: [ { caption : me.textArrangeFront, iconCls : 'mnu-arrange-front', value : 1 }, { caption : me.textArrangeBack, iconCls : 'mnu-arrange-back', value : 2 }, { caption : me.textArrangeForward, iconCls : 'mnu-arrange-forward', value : 3 }, { caption : me.textArrangeBackward, iconCls : 'mnu-arrange-backward', value : 4 }, {caption: '--' }, me.mnuGroupShapes = new Common.UI.MenuItem({ caption: me.txtGroup, iconCls: 'mnu-group', value: 5 }), me.mnuUnGroupShapes = new Common.UI.MenuItem({ caption: me.txtUngroup, iconCls: 'mnu-ungroup', value: 6 }) ] }) }); me.slideOnlyControls.push(me.btnShapeArrange ); me.btnSlideSize = new Common.UI.Button({ id : 'id-toolbar-btn-slide-size', cls : 'btn-toolbar', iconCls : 'btn-slidesize', lock : [_set.docPropsLock, _set.slideDeleted, _set.lostConnect, _set.noSlides, _set.disableOnStart], menu : new Common.UI.Menu({ items: [ { caption : me.mniSlideStandard, checkable : true, toggleGroup : 'slidesize', value : 0 }, { caption : me.mniSlideWide, checkable : true, toggleGroup : 'slidesize', value : 1 }, {caption: '--'}, { caption : me.mniSlideAdvanced, value : 'advanced' } ] }) }); me.slideOnlyControls.push(me.btnSlideSize); me.listTheme = new Common.UI.ComboDataView({ cls : 'combo-styles', itemWidth : 85, enableKeyEvents: true, itemHeight : 38, hint: this.tipSlideTheme, lock: [_set.lostConnect, _set.noSlides], beforeOpenHandler: function(e) { var cmp = this, menu = cmp.openButton.menu, minMenuColumn = 6; if (menu.cmpEl) { var itemEl = $(cmp.cmpEl.find('.dataview.inner .style').get(0)).parent(); var itemMargin = /*parseInt($(itemEl.get(0)).parent().css('margin-right'))*/-1; var itemWidth = itemEl.is(':visible') ? parseInt(itemEl.css('width')) : (cmp.itemWidth + parseInt(itemEl.css('padding-left')) + parseInt(itemEl.css('padding-right')) + parseInt(itemEl.css('border-left-width')) + parseInt(itemEl.css('border-right-width'))); var minCount = cmp.menuPicker.store.length >= minMenuColumn ? minMenuColumn : cmp.menuPicker.store.length, columnCount = Math.min(cmp.menuPicker.store.length, Math.round($('.dataview', $(cmp.fieldPicker.el)).width() / (itemMargin + itemWidth) + 0.5)); columnCount = columnCount < minCount ? minCount : columnCount; menu.menuAlignEl = cmp.cmpEl; menu.menuAlign = 'tl-tl'; var offset = cmp.cmpEl.width() - cmp.openButton.$el.width() - columnCount * (itemMargin + itemWidth) - 1; menu.setOffset(Math.min(offset, 0)); menu.cmpEl.css({ 'width' : columnCount * (itemWidth + itemMargin), 'min-height': cmp.cmpEl.height() }); } if (cmp.menuPicker.scroller) { cmp.menuPicker.scroller.update({ includePadding: true, suppressScrollX: true }); } } }); me.listTheme.fieldPicker.itemTemplate = _.template([ '