onHover method
Handles hover event. Returns true if the hover is over a drawing tool, false otherwise.
Implementation
bool onHover(PointerHoverEvent event) {
// Default implementation returns false
// Subclasses can override this to provide specific hover handling logic
return false;
}