qt - PyQt setGeometry sets client size; how to set size of entire window? -
class appwindow(qtgui.qmainwindow): def __init__(self, parent=none): super(appwindow, self).__init__(parent) self.setgeometry(x, y, w, h)
when window opens, client area of window cover (x, y, w, h).
but overall window, borders, title, , menubar, covers larger area.
i want initial overall window cover (x, y, w, h), without regard client area size. how do it?
Comments
Post a Comment