PyQt 4 Layoutレイアウト管理学習ノート


1.Absolute Layout絶対位置決め
クラス:なし、デフォルト.moveメソッドを使用して位置決めを行います.
2.ボックスレイアウト
クラス:QHBOxLayout(水平)とQVBOxLayout(垂直)
概要
layoutクラス管理により、より柔軟で実用的になります.これは優先的に考える方法です.基本的なlayoutクラスはQtGuiです.QHBOxLayoutとQtGui.QVBoxLayout .これらはwidgetを水平および垂直にレイアウトします.
例コード:

#!/usr/bin/python
# -*- coding: utf-8 -*-
import sys
from PyQt4 import QtGui

class Example(QtGui.QWidget):
    def __init__(self):
        super(Example, self).__init__()
        self.initUI()
    def initUI(self):
        names = ['Cls', 'Bck', '', 'Close', '7', '8', '9', '/',
                    '4', '5', '6', '*', '1', '2', '3', '-',
                    '0', '.', '=', '+']
        grid = QtGui.QGridLayout()
        j = 0
        pos = [(0, 0), (0, 1), (0, 2), (0, 3),
                (1, 0), (1, 1), (1, 2), (1, 3),
                (2, 0), (2, 1), (2, 2), (2, 3),
                (3, 0), (3, 1), (3, 2), (3, 3 ),
                (4, 0), (4, 1), (4, 2), (4, 3)]
        for i in names:
            button = QtGui.QPushButton(i)
            if j == 2:
               grid.addWidget(QtGui.QLabel(''), 0, 2)
            else: grid.addWidget(button, pos[j][0], pos[j][1])
            j = j + 1

        self.setLayout(grid)       
        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()

3.Grid Layoutグリッドレイアウト
クラス:QGridLayout
サンプルコード