Accelerator table

In Windows programming, an accelerator table allows an application to specify a list of accelerators (keyboard shortcuts) for menu items or other commands.[1] For example, Ctrl+S is often used as a shortcut to the File→Save menu item, Ctrl+O is a common shortcut to the File→Open menu item, etc. An accelerator takes precedence over normal processing and can be a convenient way to program some event handling.

Accelerator tables are usually located in the resources section of the binary.

Accelerators and menus

Each accelerator is associated with a control ID, the same kind of IDs which are assigned to buttons, combo boxes, list boxes, and also menu items. In this way, GUI objects can be created which represent the same function as an accelerator.

Since using the menus, and subsequently the mouse, is not always the best solution, it is important to provide users with the possibility to minimize usage of the mouse. For this reason showing the accelerators in menus can be useful; it informs the user that there are shortcuts, and that using the mouse is not always mandatory.

Electron usage

The software framework Electron also uses the term "Accelerator" as the name for its API to specify keyboard shortcuts for menu items and program behaviors on multiple platforms, including those other than Windows.[2]

gollark: It is, I think, mostly orthogonal to what you're doing at school, so you could probably learn about these statistical things, if not the calculus-based parts.
gollark: Your school may not teach it, but don't let school stop you from being educated.
gollark: Well, you could understand it if you learned about it, I expect.
gollark: μ is the mean (average, ish) of a random variable. σ, as I said, is standard deviation, which is sort of like the average distance of samples from that random variable from the mean μ.
gollark: Not really.

See also

References

  1. "Accelerator Tables". microsoft.com. 2018-05-30. Retrieved 2020-01-27.
  2. "Accelerator". electronjs.org. 2020-01-22. Retrieved 2020-01-27.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.