Press n or j to go to the next uncovered block, b, p or k for the previous block.
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 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 | 1x 1x 1x 1x 35x 35x 35x 35x 35x 3x 3x 3x 1x 35x 35x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | /*! * VisualEditor CommandHelpRegistry class. * * @copyright See AUTHORS.txt */ /** * Command help registry. * * @class * @extends OO.Registry * @constructor */ ve.ui.CommandHelpRegistry = function VeUiCommandHelpRegistry() { // Parent constructor OO.Registry.call( this ); }; /* Inheritance */ OO.inheritClass( ve.ui.CommandHelpRegistry, OO.Registry ); /* Methods */ /** * Register a command for display in the dialog. * * @static * @param {string} groupName Dialog-category in which to display this * @param {string} commandHelpName Name of the command help item. * @param {Object} details Details about the command * @param {Function|string} details.label Label describing the command. String or deferred message function. * @param {string} [details.trigger] Symbolic name of trigger this for this command * @param {string[]} [details.shortcuts] Keyboard shortcuts if this is not a real trigger (e.g. copy/paste) * @param {string[]} [details.sequences] Symbolic names of sequences, if this is a sequence, not a trigger */ ve.ui.CommandHelpRegistry.prototype.register = function ( groupName, commandHelpName, details ) { const existingCommand = this.registry[ commandHelpName ]; Iif ( existingCommand ) { if ( details.sequences ) { details = ve.copy( details ); details.sequences = ( existingCommand.sequences || [] ).concat( details.sequences ); } details = ve.extendObject( existingCommand, details ); } const platform = ve.getSystemPlatform(), platformKey = platform === 'mac' ? 'mac' : 'pc'; if ( details.shortcuts ) { for ( let i = 0; i < details.shortcuts.length; i++ ) { const shortcut = details.shortcuts[ i ]; if ( ve.isPlainObject( shortcut ) ) { details.shortcuts[ i ] = shortcut[ platformKey ]; } } } details.group = groupName; OO.Registry.prototype.register.call( this, commandHelpName, details ); }; /** * Get data for a given group of commands. * * @param {string} groupName Group name * @return {Object} Commands associated with the group */ ve.ui.CommandHelpRegistry.prototype.lookupByGroup = function ( groupName ) { const matches = {}; for ( const commandHelpName in this.registry ) { if ( groupName === this.registry[ commandHelpName ].group ) { matches[ commandHelpName ] = this.registry[ commandHelpName ]; } } return matches; }; /* Initialization */ ve.ui.commandHelpRegistry = new ve.ui.CommandHelpRegistry(); /* Registrations */ // Text styles ve.ui.commandHelpRegistry.register( 'textStyle', 'bold', { trigger: 'bold', label: OO.ui.deferMsg( 'visualeditor-annotationbutton-bold-tooltip' ) } ); ve.ui.commandHelpRegistry.register( 'textStyle', 'italic', { trigger: 'italic', label: OO.ui.deferMsg( 'visualeditor-annotationbutton-italic-tooltip' ) } ); ve.ui.commandHelpRegistry.register( 'textStyle', 'link', { trigger: 'link', label: OO.ui.deferMsg( 'visualeditor-annotationbutton-link-tooltip' ) } ); ve.ui.commandHelpRegistry.register( 'textStyle', 'superscript', { trigger: 'superscript', label: OO.ui.deferMsg( 'visualeditor-annotationbutton-superscript-tooltip' ) } ); ve.ui.commandHelpRegistry.register( 'textStyle', 'subscript', { trigger: 'subscript', label: OO.ui.deferMsg( 'visualeditor-annotationbutton-subscript-tooltip' ) } ); ve.ui.commandHelpRegistry.register( 'textStyle', 'underline', { trigger: 'underline', label: OO.ui.deferMsg( 'visualeditor-annotationbutton-underline-tooltip' ) } ); ve.ui.commandHelpRegistry.register( 'textStyle', 'code', { trigger: 'code', label: OO.ui.deferMsg( 'visualeditor-annotationbutton-code-tooltip' ) } ); ve.ui.commandHelpRegistry.register( 'textStyle', 'strikethrough', { trigger: 'strikethrough', label: OO.ui.deferMsg( 'visualeditor-annotationbutton-strikethrough-tooltip' ) } ); ve.ui.commandHelpRegistry.register( 'textStyle', 'clear', { trigger: 'clear', label: OO.ui.deferMsg( 'visualeditor-clearbutton-tooltip' ) } ); // Clipboard ve.ui.commandHelpRegistry.register( 'clipboard', 'cut', { trigger: 'cut', ignoreCommand: true, label: OO.ui.deferMsg( 'visualeditor-clipboard-cut' ) } ); ve.ui.commandHelpRegistry.register( 'clipboard', 'copy', { trigger: 'copy', ignoreCommand: true, label: OO.ui.deferMsg( 'visualeditor-clipboard-copy' ) } ); ve.ui.commandHelpRegistry.register( 'clipboard', 'paste', { trigger: 'paste', ignoreCommand: true, label: OO.ui.deferMsg( 'visualeditor-clipboard-paste' ) } ); ve.ui.commandHelpRegistry.register( 'clipboard', 'pasteSpecial', { trigger: 'pasteSpecial', label: OO.ui.deferMsg( 'visualeditor-clipboard-paste-special' ) } ); // Dialog ve.ui.commandHelpRegistry.register( 'dialog', 'dialogCancel', { shortcuts: [ 'escape' ], label: OO.ui.deferMsg( 'visualeditor-command-dialog-cancel' ) } ); ve.ui.commandHelpRegistry.register( 'dialog', 'dialogConfirm', { shortcuts: [ { mac: 'cmd+enter', pc: 'ctrl+enter' } ], label: OO.ui.deferMsg( 'visualeditor-command-dialog-confirm' ) } ); ve.ui.commandHelpRegistry.register( 'dialog', 'focusContext', { trigger: 'focusContext', label: OO.ui.deferMsg( 'visualeditor-command-dialog-focus-context' ) } ); // Formatting ve.ui.commandHelpRegistry.register( 'formatting', 'paragraph', { trigger: 'paragraph', label: OO.ui.deferMsg( 'visualeditor-formatdropdown-format-paragraph' ) } ); ve.ui.commandHelpRegistry.register( 'formatting', 'heading', { shortcuts: [ 'ctrl+1-6' ], checkCommand: 'heading1', label: OO.ui.deferMsg( 'visualeditor-formatdropdown-format-heading-label' ) } ); ve.ui.commandHelpRegistry.register( 'formatting', 'pre', { trigger: 'preformatted', label: OO.ui.deferMsg( 'visualeditor-formatdropdown-format-preformatted' ) } ); ve.ui.commandHelpRegistry.register( 'formatting', 'blockquote', { trigger: 'blockquote', label: OO.ui.deferMsg( 'visualeditor-formatdropdown-format-blockquote' ) } ); ve.ui.commandHelpRegistry.register( 'formatting', 'indentIn', { trigger: 'indent', label: OO.ui.deferMsg( 'visualeditor-indentationbutton-indent-tooltip' ) } ); ve.ui.commandHelpRegistry.register( 'formatting', 'indentOut', { trigger: 'outdent', label: OO.ui.deferMsg( 'visualeditor-indentationbutton-outdent-tooltip' ) } ); ve.ui.commandHelpRegistry.register( 'formatting', 'listBullet', { sequences: [ 'bulletStar' ], label: OO.ui.deferMsg( 'visualeditor-listbutton-bullet-tooltip' ) } ); ve.ui.commandHelpRegistry.register( 'formatting', 'listNumber', { sequences: [ 'numberDot' ], label: OO.ui.deferMsg( 'visualeditor-listbutton-number-tooltip' ) } ); // History ve.ui.commandHelpRegistry.register( 'history', 'undo', { trigger: 'undo', label: OO.ui.deferMsg( 'visualeditor-historybutton-undo-tooltip' ) } ); ve.ui.commandHelpRegistry.register( 'history', 'redo', { trigger: 'redo', label: OO.ui.deferMsg( 'visualeditor-historybutton-redo-tooltip' ) } ); // Other ve.ui.commandHelpRegistry.register( 'other', 'findAndReplace', { trigger: 'findAndReplace', label: OO.ui.deferMsg( 'visualeditor-find-and-replace-title' ) } ); ve.ui.commandHelpRegistry.register( 'other', 'findNext', { trigger: 'findNext', label: OO.ui.deferMsg( 'visualeditor-find-and-replace-next-button' ) } ); ve.ui.commandHelpRegistry.register( 'other', 'findPrevious', { trigger: 'findPrevious', label: OO.ui.deferMsg( 'visualeditor-find-and-replace-previous-button' ) } ); ve.ui.commandHelpRegistry.register( 'other', 'selectAll', { trigger: 'selectAll', label: OO.ui.deferMsg( 'visualeditor-content-select-all' ) } ); ve.ui.commandHelpRegistry.register( 'other', 'changeDirectionality', { trigger: 'changeDirectionality', label: OO.ui.deferMsg( 'visualeditor-changedir' ) } ); ve.ui.commandHelpRegistry.register( 'other', 'commandHelp', { trigger: 'commandHelp', label: OO.ui.deferMsg( 'visualeditor-dialog-command-help-title' ) } ); // Insert ve.ui.commandHelpRegistry.register( 'insert', 'horizontalRule', { sequences: [ 'horizontalRule' ], label: OO.ui.deferMsg( 'visualeditor-horizontalrule-tooltip' ) } ); |