For the last days i read a lot about new and old style of signals and slots. It seems now it's easier, but I stuck on one issue.
In my project old code generate dynamic signals based on name passed to it.
Example:
self.netlink.connect(self.netlink,SIGNAL(self.modelName + "_gotCommand"),self.processCommand)
and here is emit
self.emit(SIGNAL(model + "_gotCommand"), cmd, data)
data can be diffrenet type (list , tuple, string , etc) again based on model
So how can I move this code into Qt5 as we need describe each signal with pyqtSignal
definition.