wild-bind: Dynamic key binding framework

[ bsd3, library, userinterface ] [ Propose Tags ]

Dynamic key binding framework. See https://github.com/debug-ito/wild-bind


[Skip to Readme]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.1.0.0, 0.1.0.1, 0.1.0.2, 0.1.0.3, 0.1.1.0, 0.1.1.1, 0.1.2.0, 0.1.2.1, 0.1.2.2, 0.1.2.3, 0.1.2.4, 0.1.2.5, 0.1.2.6, 0.1.2.7, 0.1.2.8, 0.1.2.9
Change log ChangeLog.md
Dependencies base (>=4.6 && <4.17), containers (>=0.5.0 && <0.7), semigroups (>=0.16.2.2 && <0.21), text (>=1.2.0 && <1.3), transformers (>=0.3.0 && <0.6) [details]
License BSD-3-Clause
Author Toshio Ito <debug.ito@gmail.com>
Maintainer Toshio Ito <debug.ito@gmail.com>
Category UserInterface
Home page https://github.com/debug-ito/wild-bind
Bug tracker https://github.com/debug-ito/wild-bind/issues
Source repo head: git clone https://github.com/debug-ito/wild-bind.git
Uploaded by debugito at 2022-11-28T12:24:36Z
Distributions
Reverse Dependencies 3 direct, 1 indirect [details]
Downloads 6968 total (38 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs available [build log]
Last success reported on 2022-11-28 [all 1 reports]

Readme for wild-bind-0.1.2.9

[back to package description]

wild-bind

WildBind is a dynamic and programmable key binding framework. See https://github.com/debug-ito/wild-bind for WildBind in general.

Architecture and Terminology

WildBind consists of FrontEnd and Binding.

                 +-------------------+
(user) --input-> |   desktop env.    |---[FrontEnd]---[Binding]
                 |                   |                    |
                 | (front-end state) |             (back-end state)
                 +-------------------+
  • A FrontEnd interfaces with a desktop environment. It reads input from the user and the state of the desktop environment. The state is called "front-end state". FrontEnd passes those two kinds of data to Binding.
  • A Binding binds actions to input symbols. Optionally it has its own state, which is called "back-end state".

wild-bind Packages

  • wild-bind: WildBind core data types and functions. This package defines FrontEnd, Binding and other common types. Although WildBind is mainly targeted to number pads, its core is independent of any input types or desktop environments.
  • wild-bind-x11: A FrontEnd implementation for X11 desktop environments.
  • wild-bind-indicator: A GUI that describes current Binding to the user.
  • wild-bind-task-x11: A bundle package that combines all packages above. End users should use this package first.

Author

Toshio Ito <debug.ito at gmail.com>