PyQt4 中的布局管理

目录 上一篇 下一篇

GUI 编程的一个重要方面是布局管理。布局管理是我们在窗口上放置小部件的方式。管理可以通过两种基本方式进行。我们可以使用绝对定位或布局类。

绝对定位

程序员指定每个小部件的位置和大小(以像素为单位)。当您使用绝对定位时,我们必须了解以下限制:

  • 如果我们调整窗口大小,小部件的大小和位置不会改变
  • 应用程序在不同平台上可能看起来不同
  • 更改应用程序中的字体可能会破坏布局
  • 如果我们决定改变我们的布局,我们必须完全重做我们的布局,这是乏味且耗时的

以下示例将在绝对坐标中定位小部件。

#!/usr/bin/python

"""
ZetCode PyQt4 tutorial 

This example shows three labels on a window
using absolute positioning. 

author: Jan Bodnar
website: zetcode.com
"""

import sys
from PyQt4 import QtGui

class Example(QtGui.QWidget):
    
    def __init__(self):
        super(Example, self).__init__()
        
        self.initUI()
        
    def initUI(self):
        
        lbl1 = QtGui.QLabel('ZetCode', self)
        lbl1.move(15, 10)

        lbl2 = QtGui.QLabel('tutorials', self)
        lbl2.move(35, 40)
        
        lbl3 = QtGui.QLabel('for programmers', self)
        lbl3.move(55, 70)        
        
        self.setGeometry(300, 300, 250, 150)
        self.setWindowTitle('Absolute')    
        self.show()
        
def main():
    
    app = QtGui.QApplication(sys.argv)
    ex = Example()
    sys.exit(app.exec_())


if __name__ == '__main__':
    main()

我们使用该move方法来定位我们的小部件。在我们的例子中,这些是标签。我们通过提供 x 和 y 坐标来定位它们。坐标系的起点位于左上角。x 值从左向右增长。y 值从上到下增长。

lbl1 = QtGui.QLabel('Zetcode', self)
lbl1.move(15, 10)

标签小部件位于x=15和处y=10。

绝对定位

箱体布局

使用布局类进行布局管理更加灵活和实用。这是在窗口上放置小部件的首选方式。QHBoxLayout和QtGui.QVBoxLayout是基本的布局类,用于水平和垂直排列小部件。

假设我们想在右下角放置两个按钮。为了创建这样的布局,我们将使用一个水平框和一个垂直框。为了创建必要的空间,我们将添加拉伸因子。

#!/usr/bin/python

"""
ZetCode PyQt4 tutorial 

In this example, we position two push
buttons in the bottom-right corner 
of the window. 

author: Jan Bodnar
website: zetcode.com
"""

import sys
from PyQt4 import QtGui

class Example(QtGui.QWidget):
    
    def __init__(self):
        super(Example, self).__init__()
        
        self.initUI()
        
    def initUI(self):
        
        okButton = QtGui.QPushButton("OK")
        cancelButton = QtGui.QPushButton("Cancel")

        hbox = QtGui.QHBoxLayout()
        hbox.addStretch(1)
        hbox.addWidget(okButton)
        hbox.addWidget(cancelButton)

        vbox = QtGui.QVBoxLayout()
        vbox.addStretch(1)
        vbox.addLayout(hbox)
        
        self.setLayout(vbox)    
        
        self.setGeometry(300, 300, 300, 150)
        self.setWindowTitle('Buttons')    
        self.show()
        
def main():
    
    app = QtGui.QApplication(sys.argv)
    ex = Example()
    sys.exit(app.exec_())


if __name__ == '__main__':
    main()

该示例将两个按钮放置在窗口的右下角。当我们调整应用程序窗口的大小时,它们会留在那里。我们同时使用QtGui.HBoxLayout和QtGui.QVBoxLayout。

okButton = QtGui.QPushButton("OK")
cancelButton = QtGui.QPushButton("Cancel")

这里我们创建两个按钮。

hbox = QtGui.QHBoxLayout()
hbox.addStretch(1)
hbox.addWidget(okButton)
hbox.addWidget(cancelButton)

我们创建一个水平框布局并添加拉伸因子和两个按钮。拉伸在两个按钮之前添加了可拉伸的空间。这会将它们推到窗口的右侧。

vbox = QtGui.QVBoxLayout()
vbox.addStretch(1)
vbox.addLayout(hbox)

为了创建必要的布局,我们将水平布局放入垂直布局中。垂直框中的拉伸因子会将带有按钮的水平框推到窗口底部。

self.setLayout(vbox)

最后,我们设置窗口的主要布局。
按钮

QtGui.QGridLayout

最通用的布局类是网格布局。此布局将空间划分为行和列。要创建网格布局,我们使用QtGui.QGridLayout类。

#!/usr/bin/python

import sys
from PyQt4 import QtGui

"""
ZetCode PyQt4 tutorial 

In this example, we create a skeleton
of a calculator using a QtGui.QGridLayout.

author: Jan Bodnar
website: zetcode.com
"""

class Example(QtGui.QWidget):
    
    def __init__(self):
        super(Example, self).__init__()
        
        self.initUI()
        
    def initUI(self):
        
        grid = QtGui.QGridLayout()
        self.setLayout(grid)
 
        names = ['Cls', 'Bck', '', 'Close',
                 '7', '8', '9', '/',
                '4', '5', '6', '*',
                 '1', '2', '3', '-',
                '0', '.', '=', '+']
        
        positions = [(i,j) for i in range(5) for j in range(4)]
        
        for position, name in zip(positions, names):
            
            if name == '':
                continue
            button = QtGui.QPushButton(name)
            grid.addWidget(button, *position)
            
        self.move(300, 150)
        self.setWindowTitle('Calculator')
        self.show()
        
def main():
    app = QtGui.QApplication(sys.argv)
    ex = Example()
    sys.exit(app.exec_())

if __name__ == '__main__':
    main()

在我们的示例中,我们创建了一个按钮网格。

grid = QtGui.QGridLayout()
self.setLayout(grid)

QGridLayout的实例被创建并设置为应用程序窗口的布局。

names = ['Cls', 'Bck', '', 'Close',
            '7', '8', '9', '/',
        '4', '5', '6', '*',
            '1', '2', '3', '-',
        '0', '.', '=', '+']

这些是稍后用于按钮的标签。

positions = [(i,j) for i in range(5) for j in range(4)]

我们在网格中创建一个位置列表。

for position, name in zip(positions, names):
    
    if name == '':
        continue
    button = QtGui.QPushButton(name)
    grid.addWidget(button, *position)

使用addWidget方法创建按钮并将其添加到布局中。
计算器骨架

审查示例

小部件可以跨越网格中的多个列或行。在下一个例子中,我们将说明这一点。

#!/usr/bin/python

"""
ZetCode PyQt4 tutorial 

In this example, we create a bit
more complicated window layout using
the QtGui.QGridLayout manager. 

author: Jan Bodnar
website: zetcode.com
"""

import sys
from PyQt4 import QtGui


class Example(QtGui.QWidget):
    
    def __init__(self):
        super(Example, self).__init__()
        
        self.initUI()
        
    def initUI(self):
        
        title = QtGui.QLabel('Title')
        author = QtGui.QLabel('Author')
        review = QtGui.QLabel('Review')

        titleEdit = QtGui.QLineEdit()
        authorEdit = QtGui.QLineEdit()
        reviewEdit = QtGui.QTextEdit()

        grid = QtGui.QGridLayout()
        grid.setSpacing(10)

        grid.addWidget(title, 1, 0)
        grid.addWidget(titleEdit, 1, 1)

        grid.addWidget(author, 2, 0)
        grid.addWidget(authorEdit, 2, 1)

        grid.addWidget(review, 3, 0)
        grid.addWidget(reviewEdit, 3, 1, 5, 1)
        
        self.setLayout(grid) 
        
        self.setGeometry(300, 300, 350, 300)
        self.setWindowTitle('Review')    
        self.show()
        
def main():
    
    app = QtGui.QApplication(sys.argv)
    ex = Example()
    sys.exit(app.exec_())


if __name__ == '__main__':
    main()

我们创建了一个窗口,其中有三个标签,两个行编辑和一个文本编辑部件。布局是用QtGui.QGridLayout完成的。

grid = QtGui.QGridLayout()
grid.setSpacing(10)

我们创建一个网格布局并设置小部件之间的间距。

grid.addWidget(reviewEdit, 3, 1, 5, 1)

如果我们向网格中添加一个小部件,我们可以提供小部件的行跨度和列跨度。在本例中,我们使reviewEdit小部件跨越5行。
审查示例
PyQt4 教程的这一部分专门讨论布局管理。

目录 上一篇 下一篇

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值