2013-03-04 99 views
1

我正在使用PyQt編寫簡單的計算器。在我的代碼中,我使用QGridLayout來組合小部件。但有一個問題。我找不到調整窗口小部件大小的方法。我嘗試使用QWidget.resize和insertStreach,但它不能像我需要的那樣工作。哪個函數可以替代QWidget.resize?爲什麼PyQt QGridLayout不能調整大小?

from PyQt4.QtCore import * 
from PyQt4.QtGui import * 
import sys 

class Button(QPushButton): 
    def __init__(self, text, parent, TextObject): 
     super().__init__(text, parent=parent or None) 
     self.clicked.connect(TextObject.SLOT_TextInsert('%s' %(text))) 

class Text(QLineEdit): 
    def __init__(self, parent): 
     super().__init__(parent=parent) 
     self.show() 

    def SLOT_TextInsert(self, text): 
     return lambda: self.insert('%s' %(text)) 

    def SLOT_TextGet(self): 
     text = self.text() 

if __name__ == '__main__': 
    app = QApplication(sys.argv) 

    root = QWidget() 
    text = Text(root) 
    plus = Button('+', root, text) 
    minus = Button('-', root, text) 
    multiple = Button('*', root, text) 
    divide = Button('/', root, text) 
    null = Button('0', root, text) 
    dot = Button('.', root, text) 
    equal = Button('=', root, text) 
    clean = Button('Ce', root, text) 

    layout = QGridLayout(root) 
    layout.setSpacing(2) 
    layout.addWidget(text, 1, 1, 1, 5) 
    layout.addWidget(plus, 2, 4) 
    layout.addWidget(minus, 2, 5) 
    layout.addWidget(multiple, 3, 4) 
    layout.addWidget(divide, 3, 5) 
    layout.addWidget(clean, 4, 4, 1, 2) 
    layout.addWidget(null, 5, 1, 1, 2) 
    layout.addWidget(dot, 5, 3) 
    layout.addWidget(equal, 5, 4, 1, 2) 

    num_list = list() 
    row=2; col=1 
    for i in range(0,9): 
     num_list.append(Button('%s' %(i+1), root, text)) 
     layout.addWidget(num_list[i], row, col) 
     col = col+1 
     if i == 2 or i == 5: 
      col = 1; row = row+1 

    root.resize(10,10) 
    root.show()   
    sys.exit(app.exec_()) 

回答

1

QWidget::sizePolicy

類似按鈕的控件設置大小策略,以指定它們可能水平拉伸,但垂直固定。

爲了使按鈕也垂直調整,您需要修改按鈕的大小政策:

class Button(QPushButton): 
    def __init__(self, text, parent, TextObject): 
     super().__init__(text, parent=parent or None) 
     self.setSizePolicy (QSizePolicy.Expanding, QSizePolicy.Expanding) 
     self.clicked.connect(TextObject.SLOT_TextInsert('%s' %(text))) 
+0

Thaks了很多的幫助! – 2013-03-04 10:30:53

相關問題