I'm doing an interface with Qt5.5.
I have several Qlabel on a first UI and I have implemented mouseReleaseEvent to open a new UI when I click on the labels. This works. When I click on the labels, it do "emit clicked" and then the signal "clicked()" calls the slot "slotClicked()" and it open the new window.
My problem is: How can I know which label is clicked?
Because the window I want to open depends on which label is clicked.