/* * * (c) Copyright Ascensio System Limited 2010-2017 * * 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 * */ /** * HeaderFooterSettings.js * * Created by Julia Radzhabova on 02/03/14 * Copyright (c) 2014 Ascensio System SIA. All rights reserved. * */ define([ 'text!documenteditor/main/app/template/HeaderFooterSettings.template', 'jquery', 'underscore', 'backbone', 'common/main/lib/component/Button', 'common/main/lib/component/MetricSpinner', 'common/main/lib/component/CheckBox', 'common/main/lib/component/RadioBox' ], function (menuTemplate, $, _, Backbone) { 'use strict'; DE.Views.HeaderFooterSettings = Backbone.View.extend(_.extend({ el: '#id-header-settings', // Compile our stats template template: _.template(menuTemplate), // Delegated events for creating new items, and clearing completed ones. events: { }, options: { alias: 'HeaderFooterSettings' }, initialize: function () { this._initSettings = true; this._state = { PositionType: c_pageNumPosition.PAGE_NUM_POSITION_TOP, Position: 12.5, DiffFirst: false, DiffOdd: false, SameAs: false, DisabledControls: false, Numbering: true, From: 1 }; this.spinners = []; this.lockedControls = []; this._locked = false; this.render(); }, render: function () { var el = $(this.el); el.html(this.template({ scope: this })); }, setApi: function(api) { this.api = api; return this; }, ChangeSettings: function(prop) { if (this._initSettings) this.createDelayedElements(); this.disableControls(this._locked); if (prop) { var value = prop.get_Type(); if (this._state.PositionType !== value) { if (value == c_pageNumPosition.PAGE_NUM_POSITION_BOTTOM) this.lblPosition[0].innerHTML = this.textHeaderFromBottom; else this.lblPosition[0].innerHTML = this.textHeaderFromTop; this._state.PositionType = value; } value = prop.get_Position(); if ( Math.abs(this._state.Position-value)>0.001 ) { this.numPosition.setValue(Common.Utils.Metric.fnRecalcFromMM(value), true); this._state.Position = value; } value = prop.get_DifferentFirst(); if ( this._state.DiffFirst!==value ) { this.chDiffFirst.setValue(value, true); this._state.DiffFirst=value; } value = prop.get_DifferentEvenOdd(); if ( this._state.DiffOdd!==value ) { this.chDiffOdd.setValue(value, true); this._state.DiffOdd=value; } value = prop.get_LinkToPrevious(); if ( this._state.SameAs!==value ) { this.chSameAs.setDisabled(value===null || this._locked); this.chSameAs.setValue(value==true, true); this._state.SameAs=value; } // value = prop.get_PageNumbering(); if ( this._state.Numbering!==value ) { this.radioPrev.setValue(!!value); this.radioFrom.setValue(!value); this._state.Numbering=value; } // value = prop.get_NumberingFrom(); if ( this._state.From!==value ) { this.numFrom.setValue(value===null ? '' : value); this._state.From=value; } } }, onBtnPositionClick: function(btn, eOpts){ if (this.api) this.api.put_PageNum(btn.options.posWhere, btn.options.posAlign); this.fireEvent('editcomplete', this); }, onNumPositionChange: function(field, newValue, oldValue, eOpts){ if (this.api) this.api.put_HeadersAndFootersDistance(Common.Utils.Metric.fnRecalcToMM(field.getNumberValue())); this.fireEvent('editcomplete', this); }, onDiffFirstChange: function(field, newValue, oldValue, eOpts){ if (this.api) this.api.HeadersAndFooters_DifferentFirstPage(field.getValue()=='checked'); this.fireEvent('editcomplete', this); }, onDiffOddChange: function(field, newValue, oldValue, eOpts){ if (this.api) this.api.HeadersAndFooters_DifferentOddandEvenPage((field.getValue()=='checked')); this.fireEvent('editcomplete', this); }, onSameAsChange: function(field, newValue, oldValue, eOpts){ if (this.api) this.api.HeadersAndFooters_LinkToPrevious((field.getValue()=='checked')); this.fireEvent('editcomplete', this); }, onInsertCurrentClick: function() { if (this.api) this.api.put_PageNum(-1); this.fireEvent('editcomplete', this); }, onRadioPrev: function(field, newValue, eOpts) { if (newValue && this.api) { // this.api.HeadersAndFooters_FromPrevious(newValue); } this.fireEvent('editcomplete', this); }, onRadioFrom: function(field, newValue, eOpts) { if (newValue && this.api) { if (_.isEmpty(this.numFrom.getValue())) this.numFrom.setValue(1); // this.api.HeadersAndFooters_From(this.numFrom.getNumberValue()); } this.fireEvent('editcomplete', this); }, onNumFromChange: function(field, newValue, oldValue, eOpts){ if (this.api) { this.radioFrom.setValue(true); // this.api.HeadersAndFooters_From(field.getNumberValue()); } this.fireEvent('editcomplete', this); }, updateMetricUnit: function() { if (this.spinners) { for (var i=0; i