Quote Originally Posted by jacek
You don't implement signals --- it's enough to declare them within class definition (the rest will be handled by moc).

Then just write:
Qt Code:
  1. emit someSignal( someParameter );
To copy to clipboard, switch view to plain text mode 
Is it enough to just write that line of code in (for example) my povezava.ui.h file within some function (slot)?