2009/3/12 Andreas Pakulat <ap...@gmx.de>:
>> Thank you Andreas, i'll try it. Just in case, do you have some example
>> of that ?
>
> Its pretty easy (from the top of my head, so might not work right away, but
> you should get the idea)
>
> class MyMainWindow(QMainWindow):
>    def __init__(self,parent):
>        QMainWindow.__init__(self,parent)
>        self.ui = Ui_MainWindow()
>        self.ui.setupUi(this)
>
> class MyCustomMainWindow(MyMainWindow):
>    def __init__(self,parent):
>        MyMainWindow.__init__(self,parent)
>        self.mybutton = QPushButton(self.ui.centralFrame)
>

Great ! Thank you very much

_______________________________________________
PyQt mailing list    PyQt@riverbankcomputing.com
http://www.riverbankcomputing.com/mailman/listinfo/pyqt

Reply via email to