How can I add a layout but not a widget inside a QtGui.QTabWidget? Something like this:
tabs = QtGui.QTabWidget()
tabs.addTab(QtGui.QVBoxLayout(), "Layout")
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You don’t add layouts to a tab widget, you add widgets.
The simplest choice here would be a
QFrame(or even a plainQWidget), to which you can set whatever layout you want.