Hi
I've this simple problem, I can grab the event of a click on button, but now I need to handle a click over a widget, here is part of the code:
self.widget = QtGui.QWidget(self)
self.widget.setStyleSheet("QWidget { background-color: %s }" % color.name())
self.widget.setGeometry(150, 22, 50, 50)
self.connect(???)
well, what should i put in the ??? to grab a click action over the created widget? thank in advanced