PDA

View Full Version : Constructor of form in QTDesgner ?



safknw
24th August 2006, 14:38
How to create constructor of a form in QTDesigner?

jacek
24th August 2006, 14:53
You can't, in Qt3 you can use init() method that will be invoked from the constructor, but if you want to have full control over the code, better try the subclassing approach (http://doc.trolltech.com/3.3/designer-manual-6.html).