I am new to PyQt4 and i try to make a QMainWindow in which I can change the views. I use the QtDesigner plugin for eclipse. I make a QMainWindow with some space for a view. The view is a QWidget made in QtDesigner, too.
So how can i show my QWidget in my QMainWindow?
Thanks in advance.
QWidgetis just a blank, frameless rectangle that is usually used as a container for other widgets - so it won't really "show" anything. What were you expecting to see? And what do you mean by "change the views"? – ekhumoro Nov 22 '11 at 14:54