Hi, I have a Wx::wxHtmlWindow. I can attach events to html links but I also want an action when the user clicks somewhere else in the html window.
A wxHtmlCellEvent would seem possible but as opposed to the docs this does not do anything if clicked outside visible contents. Attaching an event to the window itself seems to have the strange effect of being handled first. So instead of (expected) cell -> window the event seems to be passed to the window first, and then to the cell. So how can I make an html window clickable while still being able to process html links? -- Johan