My problem is that I want to show a keyboard to users that shows all keys on the keyboard and highlights certain keys. For my purpose, I want to show:
- some keys with black backgrounds
- some keys with white backgrounds
- and some keys with grey backgrounds
The black and white keys will be playable as piano keys in a program that I'm working on. Some context is that I am already using pygame to detect key press input.
Also the keyboard that users have on t heir computer varies. It can be qwerty azerty depending upon their hardware.
When I looked into the pygame docs they only provide general primitives like drawing sprites, putting them in groups etc. I don't see any pre-baked resources for a keyboard.
One can do this by using the python library keyboardlayout. Using it one can show an qwerty or azerty layout and this example highlights specifc keys by passing in the overrides argument. It works with pygame and tkinter.
Here's how you use it:
qwerty
orazerty_laptop
. That is the layout_name inputletter_key_size
and it needs you to pass in (width_size_px, height_size_px).Gathering that all together and putting it into action we get:
Here are some samples of what it can do: