Eine aufbereitete Darstellung der Quelle

 
     
 
 
Anforderungen  |   Konzepte  |   Entwurf  |   Entwicklung  |   Qualitätssicherung  |   Lebenszyklus  |   Steuerung
 
 
 
 

Benutzer

Quelle  CustomKeys.sys.mjs   Sprache: unbekannt

 
Spracherkennung für: .mjs vermutete Sprache: Unknown {[0] [0] [0]} [Methode: Schwerpunktbildung, einfache Gewichte, sechs Dimensionen]

/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

import { JSONFile } from "resource://gre/modules/JSONFile.sys.mjs";

// All the attributes for a <key> element that might specify the key to press.
// We include data-l10n-id because keys are often specified using Fluent. Note
// that we deliberately remove data-l10n-id when a key is customized because
// otherwise, Fluent would overwrite the customization.
const ATTRS = ["data-l10n-id", "key", "keycode", "modifiers"];

// The original keys for any shortcuts that have been customized. This is used
// to identify whether a shortcut has been customized, as well as to reset a
// shortcut.
const original = {};
// All the browser windows we are handling. Maps from a window to our
// MutationObserver for that window.
const windows = new Map();

// The configuration is an Object with the form:
// { "someKeyId": {
//   modifiers: "mod1,mod2",
//   key: "someKey",
//   keycode: "someKeycode"
// } }
// Only one of `key` or `keycode` should be specified for each entry. An entry
// may be empty to indicate that the default key has been cleared; i.e.
// { "someKeyId": {} }
const config = new JSONFile({
  path: PathUtils.join(PathUtils.profileDir, "customKeys.json"),
});

function applyToKeyEl(window, keyId, keysets) {
  const keyEl = window.document.getElementById(keyId);
  if (!keyEl || keyEl.tagName != "key") {
    return;
  }
  if (!original[keyId]) {
    // Save the original key in case the user wants to reset.
    const orig = (original[keyId] = {});
    for (const attr of ATTRS) {
      const val = keyEl.getAttribute(attr);
      if (val) {
        orig[attr] = val;
      }
    }
  }
  for (const attr of ATTRS) {
    keyEl.removeAttribute(attr);
  }
  const data = config.data[keyId];
  for (const attr of ["modifiers", "key", "keycode"]) {
    const val = data[attr];
    if (val) {
      keyEl.setAttribute(attr, val);
    }
  }
  keysets.add(keyEl.parentElement);
}

function resetKeyEl(window, keyId, keysets) {
  const keyEl = window.document.getElementById(keyId);
  if (!keyEl) {
    return;
  }
  const orig = original[keyId];
  for (const attr of ATTRS) {
    keyEl.removeAttribute(attr);
    const val = orig[attr];
    if (val !== undefined) {
      keyEl.setAttribute(attr, val);
    }
  }
  keysets.add(keyEl.parentElement);
}

async function applyToNewWindow(window) {
  await config.load();
  const keysets = new Set();
  for (const keyId in config.data) {
    applyToKeyEl(window, keyId, keysets);
  }
  refreshKeysets(window, keysets);
  observe(window);
}

function refreshKeysets(window, keysets) {
  if (keysets.size == 0) {
    return;
  }
  const observer = windows.get(window);
  if (observer) {
    // We don't want our MutationObserver to process this.
    observer.disconnect();
  }
  // Gecko doesn't watch for changes to key elements. It only sets up a key
  // element when its keyset is bound to the tree. See:
  // https://searchfox.org/mozilla-central/rev/7857ea04d142f2abc0d777085f9e54526c7cedf9/dom/xul/nsXULElement.cpp#587
  // Therefore, remove and re-add any modified keysets to apply the changes.
  for (const keyset of keysets) {
    const parent = keyset.parentElement;
    keyset.remove();
    parent.append(keyset);
  }
  if (observer) {
    observe(window);
  }
}

function observe(window) {
  let observer = windows.get(window);
  if (!observer) {
    // A keyset can be added dynamically. For example, DevTools does this during
    // delayed startup. Note that key elements cannot be added dynamically. We
    // know this because Gecko doesn't watch for changes to key elements. It
    // only sets up a key element when its keyset is bound to the tree. See:
    // https://searchfox.org/mozilla-central/rev/7857ea04d142f2abc0d777085f9e54526c7cedf9/dom/xul/nsXULElement.cpp#587
    observer = new window.MutationObserver(mutations => {
      const keysets = new Set();
      for (const mutation of mutations) {
        for (const node of mutation.addedNodes) {
          if (node.tagName != "keyset") {
            continue;
          }
          for (const key of node.children) {
            if (key.tagName != "key" || !config.data[key.id]) {
              continue;
            }
            applyToKeyEl(window, key.id, keysets);
          }
        }
      }
      refreshKeysets(window, keysets);
    });
    windows.set(window, observer);
  }
  for (const node of [window.document, window.document.body]) {
    observer.observe(node, { childList: true });
  }
  return observer;
}

export const CustomKeys = {
  /**
   * Customize a keyboard shortcut.
   *
   * @param {string} id The id of the key element.
   * @param {object} data
   * @param {string} data.modifiers The modifiers for the key; e.g. "accel,shift".
   * @param {string} data.key The key itself; e.g. "Y". Mutually exclusive with data.keycode.
   * @param {string} data.keycode The key code; e.g. VK_F1. Mutually exclusive with data.key.
   */
  changeKey(id, { modifiers, key, keycode }) {
    const existing = config.data[id];
    if (
      existing &&
      modifiers == existing.modifiers &&
      key == existing.key &&
      keycode == existing.keycode
    ) {
      return; // No change.
    }
    const defaultKey = this.getDefaultKey(id);
    if (
      defaultKey &&
      modifiers == defaultKey.modifiers &&
      key == defaultKey.key &&
      keycode == defaultKey.keycode
    ) {
      this.resetKey(id);
      return;
    }
    const data = (config.data[id] = {});
    if (modifiers) {
      data.modifiers = modifiers;
    }
    if (key) {
      data.key = key;
    }
    if (keycode) {
      data.keycode = keycode;
    }
    for (const window of windows.keys()) {
      const keysets = new Set();
      applyToKeyEl(window, id, keysets);
      refreshKeysets(window, keysets);
    }
    config.saveSoon();
  },

  /**
   * Reset a keyboard shortcut to its defalt.
   *
   * @param {string} id The id of the key element.
   */
  resetKey(id) {
    if (!config.data[id]) {
      return; // No change.
    }
    delete config.data[id];
    for (const window of windows.keys()) {
      const keysets = new Set();
      resetKeyEl(window, id, keysets);
      refreshKeysets(window, keysets);
    }
    delete original[id];
    config.saveSoon();
  },

  /**
   * Clear a keyboard shortcut; i.e. so it does nothing.
   *
   * @param {string} id The id of the key element.
   */
  clearKey(id) {
    this.changeKey(id, {});
  },

  /**
   * Reset all keyboard shortcuts to their defaults.
   */
  resetAll() {
    config.data = {};
    for (const window of windows.keys()) {
      const keysets = new Set();
      for (const id in original) {
        resetKeyEl(window, id, keysets);
      }
      refreshKeysets(window, keysets);
    }
    for (const id of Object.keys(original)) {
      delete original[id];
    }
    config.saveSoon();
  },

  initWindow(window) {
    applyToNewWindow(window);
  },

  uninitWindow(window) {
    windows.get(window).disconnect();
    windows.delete(window);
  },

  /**
   * Return the default key for this shortcut in the form:
   * { modifiers: "mod1,mod2", key: "someKey", keycode: "someKeycode" }
   * If this shortcut isn't customized, return null.
   *
   * @param {string} keyId The id of the key element.
   */
  getDefaultKey(keyId) {
    const origKey = original[keyId];
    if (!origKey) {
      return null;
    }
    const data = {};
    if (origKey.modifiers) {
      data.modifiers = origKey.modifiers;
    }
    if (origKey.key) {
      data.key = origKey.key;
    }
    if (origKey.keycode) {
      data.keycode = origKey.keycode;
    }
    return data;
  },
};

Object.freeze(CustomKeys);

[Dauer der Verarbeitung: 0.43 Sekunden]

                                                                                                                                                                                                                                                                                                                                                                                                     


Neuigkeiten

     Aktuelles
     Motto des Tages

Open Source Software

     Quellcodebibliothek
     Eigene Quellcodes
     Fremde Quellcodes
     Suchen

Jenseits des Üblichen ....
    

Besucherstatistik

Besucherstatistik

Statistik
#Sources=277311
#Domains=752002