I am working on a graphics view (using C++ and Qt) which contains quite a few svg images. I intercept clicks on them, but i’d like not to receive events (or to be able to ignore them) when mouse is over transparent parts of svg items.
Is it possible ?
Should svg files be specifically designed for such use ?
Is there some hidden Qt option i have not (yet) heard of ?
Having no other choice but to find out the hard way the answer to my question, here is what i did :
Hence the sad answer : Qt does not permit such a behaviour.