1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 | 1× 1× 1× 1× 1× 1× 1× 1× 1× 1× 1× 1× 1× 1× 1× 14× 1× 14× 1× 2× 2× 1× 2× 2× 1× 1× 1× 1× 55× 55× 55× 55× 55× 55× 55× 55× 55× 55× 55× 55× 55× 1× 1× | /* istanbul ignore next */ var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { extendStatics = Object.setPrototypeOf || ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; }; return extendStatics(d, b); }; return function (d, b) { extendStatics(d, b); function __() { this.constructor = d; } d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); }; })(); define(["require", "exports", "../ribbon-interfaces", "../ribbon-constants"], function (require, exports, ribbon_interfaces_1, ribbon_constants_1) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var ShowGroup = (function (_super) { __extends(ShowGroup, _super); function ShowGroup() { return _super !== null && _super.apply(this, arguments) || this; } ShowGroup.prototype.getGroupModel = function () { return { header: this.localObj.getConstant(ribbon_constants_1.RibbonConstants.SHOW_GROUP_HEADER), id: this.ribbonId + '_showGroup', overflowHeader: this.localObj.getConstant(ribbon_constants_1.RibbonConstants.SHOW_GROUP_HEADER), collections: [ { items: [ { type: 'CheckBox', keyTip: 'R', checkBoxSettings: { label: this.localObj.getConstant('Ruler'), checked: false, change: this.rulerChangeHandler.bind(this) }, id: this.ribbonId + ribbon_constants_1.RibbonConstants.RULER_CHECKBOX_ID, ribbonTooltipSettings: { content: this.localObj.getConstant('Show or hide the rulers') } }, { type: 'CheckBox', keyTip: 'B', checkBoxSettings: { label: this.localObj.getConstant('Show Bookmarks'), checked: false, change: this.bookmarkMarkersChangeHandler.bind(this) }, id: this.ribbonId + ribbon_constants_1.RibbonConstants.BOOKMARK_MARKERS_CHECKBOX_ID, ribbonTooltipSettings: { content: this.localObj.getConstant('Show or hide bookmarks') } }, { type: 'CheckBox', keyTip: 'K', checkBoxSettings: { label: this.localObj.getConstant('Navigation Pane'), checked: false, change: this.navigationPaneChangeHandler.bind(this) }, id: this.ribbonId + ribbon_constants_1.RibbonConstants.NAVIGATION_PANE_CHECKBOX_ID, ribbonTooltipSettings: { content: this.localObj.getConstant('Show or hide the navigation pane') } } ] } ] }; }; ShowGroup.prototype.rulerChangeHandler = function (args) { this.documentEditor.documentEditorSettings.showRuler = args.checked; this.documentEditor.focusIn(); }; ShowGroup.prototype.bookmarkMarkersChangeHandler = function (args) { this.documentEditor.documentEditorSettings.showBookmarks = args.checked; this.documentEditor.focusIn(); }; ShowGroup.prototype.navigationPaneChangeHandler = function (args) { this.documentEditor.documentEditorSettings.showNavigationPane = args.checked; this.documentEditor.focusIn(); }; ShowGroup.prototype.updateSelection = function () { var ribbon = this.container.ribbon.ribbon; var rulerCheckBox = this.container.ribbon.ribbon.getItem(this.ribbonId + ribbon_constants_1.RibbonConstants.RULER_CHECKBOX_ID); Eif (rulerCheckBox) { rulerCheckBox.checkBoxSettings.checked = this.documentEditor.documentEditorSettings.showRuler; ribbon.updateItem(rulerCheckBox); } var bookmarkCheckBox = ribbon.getItem(this.ribbonId + ribbon_constants_1.RibbonConstants.BOOKMARK_MARKERS_CHECKBOX_ID); Eif (bookmarkCheckBox) { bookmarkCheckBox.checkBoxSettings.checked = this.documentEditor.documentEditorSettings.showBookmarks; ribbon.updateItem(bookmarkCheckBox); } var navigationCheckBox = ribbon.getItem(this.ribbonId + ribbon_constants_1.RibbonConstants.NAVIGATION_PANE_CHECKBOX_ID); Eif (navigationCheckBox) { navigationCheckBox.checkBoxSettings.checked = this.documentEditor.documentEditorSettings.showNavigationPane; ribbon.updateItem(navigationCheckBox); } }; return ShowGroup; }(ribbon_interfaces_1.RibbonGroupBase)); exports.ShowGroup = ShowGroup; }); |