PDA

View Full Version : Slots or new slots



Colx007
29th November 2007, 13:46
The slots of qt4.3.2 are not sufficient (or adapted) for my applications. Can I edit slots or new slots at qt4 designer? do someone how to do?

jacek
29th November 2007, 13:53
You can't add slots in Qt Designer, but you can do it in your code.

Colx007
21st January 2008, 17:28
Theoretically I can use costom widgets in designer, but I can't use costom slots. I believe that someone did not end his task:confused:.

jacek
21st January 2008, 18:38
Theoretically I can use costom widgets in designer, but I can't use costom slots. I believe that someone did not end his task:confused:.
You can use custom slots and signals to make connections, but you can't add them, because .ui files don't represent QObjects. This is even too much --- Designer is for designing the layout and everything what should be in the code (i.e. the behaviour) is beyond Designer's scope.