Building a custom textbox in GTK
- by CommuSoft
I want to make my own GTK# Textbox, the textbox should draw the text and it's cursor on a special way.
However keyboard and mouse-handling is quite complex and is also influenced by for instance the operating system (for instance the use of dead keys)
Is there a way to build such a control without having to worry about keyboard input?
I assume I have to make a textbox control that inherits the original textbox control. How can I handle drawing requests and mouse movements?