QGraphicsGridLayout

The QGraphicsGridLayout class provides a grid layout for managing widgets in Graphics View. More

Inheritance diagram of PySide6.QtWidgets.QGraphicsGridLayout

Synopsis

Functions

Detailed Description

The most common way to use QGraphicsGridLayout is to construct an object on the heap with no parent, add widgets and layouts by calling addItem() , and finally assign the layout to a widget by calling setLayout() . QGraphicsGridLayout automatically computes the dimensions of the grid as you add items.

scene = QGraphicsScene()
textEdit = scene.addWidget(QTextEdit)
pushButton = scene.addWidget(QPushButton)
layout = QGraphicsGridLayout()
layout.addItem(textEdit, 0, 0)
layout.addItem(pushButton, 0, 1)
form = QGraphicsWidget()
form.setLayout(layout)
scene.addItem(form)

The layout takes ownership of the items. In some cases when the layout item also inherits from QGraphicsItem (such as QGraphicsWidget ) there will be a ambiguity in ownership because the layout item belongs to two ownership hierarchies. See the documentation of setOwnedByLayout() how to handle this. You can access each item in the layout by calling count() and itemAt() . Calling removeAt() will remove an item from the layout, without destroying it.

Size Hints and Size Policies in QGraphicsGridLayout

QGraphicsGridLayout respects each item’s size hints and size policies, and when a cell in the grid has more space than the items can fill, each item is arranged according to the layout’s alignment for that item. You can set an alignment for each item by calling setAlignment() , and check the alignment for any item by calling alignment() . You can also set the alignment for an entire row or column by calling setRowAlignment() and setColumnAlignment() respectively. By default, items are aligned to the top left.

class PySide6.QtWidgets.QGraphicsGridLayout([parent=None])
Parameters

parentPySide6.QtWidgets.QGraphicsLayoutItem

Constructs a QGraphicsGridLayout instance. parent is passed to QGraphicsLayout ‘s constructor.

PySide6.QtWidgets.QGraphicsGridLayout.addItem(item, row, column[, alignment=Qt.Alignment()])
Parameters

Adds item to the grid on row and column. You can specify an optional alignment for item.

PySide6.QtWidgets.QGraphicsGridLayout.addItem(item, row, column, rowSpan, columnSpan[, alignment=Qt.Alignment()])
Parameters

Adds item to the grid on row and column. You can specify a rowSpan and columnSpan and an optional alignment.

PySide6.QtWidgets.QGraphicsGridLayout.alignment(item)
Parameters

itemPySide6.QtWidgets.QGraphicsLayoutItem

Return type

Alignment

Returns the alignment for item.

See also

setAlignment()

PySide6.QtWidgets.QGraphicsGridLayout.columnAlignment(column)
Parameters

column – int

Return type

Alignment

Returns the alignment for column.

PySide6.QtWidgets.QGraphicsGridLayout.columnCount()
Return type

int

Returns the number of columns in the grid layout. This is always one more than the index of the last column that is occupied by a layout item (empty columns are counted except for those at the end).

PySide6.QtWidgets.QGraphicsGridLayout.columnMaximumWidth(column)
Parameters

column – int

Return type

float

Returns the maximum width for column.

PySide6.QtWidgets.QGraphicsGridLayout.columnMinimumWidth(column)
Parameters

column – int

Return type

float

Returns the minimum width for column.

PySide6.QtWidgets.QGraphicsGridLayout.columnPreferredWidth(column)
Parameters

column – int

Return type

float

Returns the preferred width for column.

PySide6.QtWidgets.QGraphicsGridLayout.columnSpacing(column)
Parameters

column – int

Return type

float

Returns the column spacing for column.

PySide6.QtWidgets.QGraphicsGridLayout.columnStretchFactor(column)
Parameters

column – int

Return type

int

Returns the stretch factor for column.

PySide6.QtWidgets.QGraphicsGridLayout.horizontalSpacing()
Return type

float

Returns the default horizontal spacing for the grid layout.

PySide6.QtWidgets.QGraphicsGridLayout.itemAt(row, column)
Parameters
  • row – int

  • column – int

Return type

PySide6.QtWidgets.QGraphicsLayoutItem

Returns a pointer to the layout item at (row, column).

PySide6.QtWidgets.QGraphicsGridLayout.removeItem(item)
Parameters

itemPySide6.QtWidgets.QGraphicsLayoutItem

Removes the layout item item without destroying it. Ownership of the item is transferred to the caller.

See also

addItem()

PySide6.QtWidgets.QGraphicsGridLayout.rowAlignment(row)
Parameters

row – int

Return type

Alignment

Returns the alignment of row.

PySide6.QtWidgets.QGraphicsGridLayout.rowCount()
Return type

int

Returns the number of rows in the grid layout. This is always one more than the index of the last row that is occupied by a layout item (empty rows are counted except for those at the end).

PySide6.QtWidgets.QGraphicsGridLayout.rowMaximumHeight(row)
Parameters

row – int

Return type

float

Returns the maximum height for row, row.

PySide6.QtWidgets.QGraphicsGridLayout.rowMinimumHeight(row)
Parameters

row – int

Return type

float

Returns the minimum height for row, row.

PySide6.QtWidgets.QGraphicsGridLayout.rowPreferredHeight(row)
Parameters

row – int

Return type

float

Returns the preferred height for row, row.

PySide6.QtWidgets.QGraphicsGridLayout.rowSpacing(row)
Parameters

row – int

Return type

float

Returns the row spacing for row.

See also

setRowSpacing()

PySide6.QtWidgets.QGraphicsGridLayout.rowStretchFactor(row)
Parameters

row – int

Return type

int

Returns the stretch factor for row.

PySide6.QtWidgets.QGraphicsGridLayout.setAlignment(item, alignment)
Parameters

Sets the alignment for item to alignment.

See also

alignment()

PySide6.QtWidgets.QGraphicsGridLayout.setColumnAlignment(column, alignment)
Parameters
  • column – int

  • alignmentAlignment

Sets the alignment for column to alignment.

PySide6.QtWidgets.QGraphicsGridLayout.setColumnFixedWidth(column, width)
Parameters
  • column – int

  • width – float

Sets the fixed width of column to width.

PySide6.QtWidgets.QGraphicsGridLayout.setColumnMaximumWidth(column, width)
Parameters
  • column – int

  • width – float

Sets the maximum width of column to width.

PySide6.QtWidgets.QGraphicsGridLayout.setColumnMinimumWidth(column, width)
Parameters
  • column – int

  • width – float

Sets the minimum width for column to width.

PySide6.QtWidgets.QGraphicsGridLayout.setColumnPreferredWidth(column, width)
Parameters
  • column – int

  • width – float

Sets the preferred width for column to width.

PySide6.QtWidgets.QGraphicsGridLayout.setColumnSpacing(column, spacing)
Parameters
  • column – int

  • spacing – float

Sets the spacing for column to spacing.

See also

columnSpacing()

PySide6.QtWidgets.QGraphicsGridLayout.setColumnStretchFactor(column, stretch)
Parameters
  • column – int

  • stretch – int

Sets the stretch factor for column to stretch.

PySide6.QtWidgets.QGraphicsGridLayout.setHorizontalSpacing(spacing)
Parameters

spacing – float

Sets the default horizontal spacing for the grid layout to spacing.

PySide6.QtWidgets.QGraphicsGridLayout.setRowAlignment(row, alignment)
Parameters
  • row – int

  • alignmentAlignment

Sets the alignment of row to alignment.

See also

rowAlignment()

PySide6.QtWidgets.QGraphicsGridLayout.setRowFixedHeight(row, height)
Parameters
  • row – int

  • height – float

Sets the fixed height for row, row, to height.

PySide6.QtWidgets.QGraphicsGridLayout.setRowMaximumHeight(row, height)
Parameters
  • row – int

  • height – float

Sets the maximum height for row, row, to height.

PySide6.QtWidgets.QGraphicsGridLayout.setRowMinimumHeight(row, height)
Parameters
  • row – int

  • height – float

Sets the minimum height for row, row, to height.

PySide6.QtWidgets.QGraphicsGridLayout.setRowPreferredHeight(row, height)
Parameters
  • row – int

  • height – float

Sets the preferred height for row, row, to height.

PySide6.QtWidgets.QGraphicsGridLayout.setRowSpacing(row, spacing)
Parameters
  • row – int

  • spacing – float

Sets the spacing for row to spacing.

See also

rowSpacing()

PySide6.QtWidgets.QGraphicsGridLayout.setRowStretchFactor(row, stretch)
Parameters
  • row – int

  • stretch – int

Sets the stretch factor for row to stretch.

PySide6.QtWidgets.QGraphicsGridLayout.setSpacing(spacing)
Parameters

spacing – float

Sets the grid layout’s default spacing, both vertical and horizontal, to spacing.

PySide6.QtWidgets.QGraphicsGridLayout.setVerticalSpacing(spacing)
Parameters

spacing – float

Sets the default vertical spacing for the grid layout to spacing.

PySide6.QtWidgets.QGraphicsGridLayout.verticalSpacing()
Return type

float

Returns the default vertical spacing for the grid layout.