I'm trying to figure out how to draw piano keys in GTK+3 sharp.
What is the best way to create it in Visual Studio?
Thanks
I'm trying to figure out how to draw piano keys in GTK+3 sharp.
What is the best way to create it in Visual Studio?
Thanks
Copyright © 2021 Jogjafile Inc.
I was not really sure what you needed but since I have an implementation of a keyboard for my C project it might help you a bit! I will post the code and my explanations here!
This implementation draws a keyboard for n octaves (the parameter you can specify with the GtkScale on the left of the application), and when a key on the piano is pressed it will highlight it in grey.
Please feel free to ask any questions if there is a part that you do not understand!
Generalities
Method
Here is how I have approached the problem!
Draw the keyboard Let us look at an octave of a piano keyboard, we can clearly see that there are 4 different types of keys: The right type (Do,Fa), The center type (Re,Sol,La), The left type (Mi,Si) and The Black keys. So we need to be able to draw all four of those types, if we want to than redraw a specific key in a different color when it is pressed.
Track the user cursor I have already said that we will use the GtkEventBox for this purpose, but once we get the (x,y) coordinates of the cursor, how do we know to which key area that coordinate corresponds? The trouble here is that only the black keys can be seen as a simple rectangle, the others are actually made up of two. So we need a general purpose function that will verify if we have clicked i a particular rectangle area!
Code
Keeping all the previous ideas in mind, let's get to the actual code!
Glade Here is the .glade of the piano, let's take a quick look at it and understand what it does.
First you can see a GtkAdjustment object, this will be used for the GtkScale that will allow you to choose how many octaves you want your piano to have. There is a main GtkWindow whose chile is a GtkBox that has two children, the GtkScale and the GtkEventBox. As said previously the child of the GtkEventBox is GtkDrawingArea
Code Now let's talk about the code
The comments inside the code are pretty self-explanatory, but if you have any questions concerning a particular function, please do not hesitate to ask!
Here is what I am using to compile the code!
I hope this was helpful! Best Regards,