Guest User

Untitled

a guest
Feb 21st, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. class GUIManagerWindow(QtGui.QMainWindow):
  2. def __init__(self):
  3. QtGui.QMainWindow.__init__(self)
  4. self.setWindowTitle(u'Main WIndow')
  5. self.central_widget = QtGui.QWidget()
  6. self.mainlayout = QtGui.QVBoxLayout()
  7. self.mainlayout.setAlignment(QtCore.Qt.AlignTop)
  8. self.central_widget.setLayout(self.mainlayout)
  9. self.setCentralWidget(self.central_widget)
  10. x = QtGui.QWidget()
  11. x.setLayout(TopMenuLayout.TopMenuLayout(x))
Add Comment
Please, Sign In to add comment