QGraphicsGridLayout#
The QGraphicsGridLayout
class provides a grid layout for managing widgets in Graphics View. More…
Synopsis#
Functions#
def
addItem
(item, row, column, rowSpan, columnSpan[, alignment=Qt.Alignment()])def
addItem
(item, row, column[, alignment=Qt.Alignment()])def
alignment
(item)def
columnAlignment
(column)def
columnCount
()def
columnMaximumWidth
(column)def
columnMinimumWidth
(column)def
columnPreferredWidth
(column)def
columnSpacing
(column)def
columnStretchFactor
(column)def
horizontalSpacing
()def
itemAt
(row, column)def
removeItem
(item)def
rowAlignment
(row)def
rowCount
()def
rowMaximumHeight
(row)def
rowMinimumHeight
(row)def
rowPreferredHeight
(row)def
rowSpacing
(row)def
rowStretchFactor
(row)def
setAlignment
(item, alignment)def
setColumnAlignment
(column, alignment)def
setColumnFixedWidth
(column, width)def
setColumnMaximumWidth
(column, width)def
setColumnMinimumWidth
(column, width)def
setColumnPreferredWidth
(column, width)def
setColumnSpacing
(column, spacing)def
setColumnStretchFactor
(column, stretch)def
setHorizontalSpacing
(spacing)def
setRowAlignment
(row, alignment)def
setRowFixedHeight
(row, height)def
setRowMaximumHeight
(row, height)def
setRowMinimumHeight
(row, height)def
setRowPreferredHeight
(row, height)def
setRowSpacing
(row, spacing)def
setRowStretchFactor
(row, stretch)def
setSpacing
(spacing)def
setVerticalSpacing
(spacing)def
verticalSpacing
()
Note
This documentation may contain snippets that were automatically translated from C++ to Python. We always welcome contributions to the snippet translation. If you see an issue with the translation, you can also let us know by creating a ticket on https:/bugreports.qt.io/projects/PYSIDE
Detailed Description#
Warning
This section contains snippets that were automatically translated from C++ to Python and may contain errors.
The most common way to use QGraphicsGridLayout
is to construct an object on the heap, passing a parent widget to the constructor, then add widgets and layouts by calling addItem()
. QGraphicsGridLayout
automatically computes the dimensions of the grid as you add items.
scene = QGraphicsScene() textEdit = scene.addWidget(QTextEdit()) pushButton = scene.addWidget(QPushButton()) form = QGraphicsWidget() scene.addItem(form) layout = QGraphicsGridLayout(form) layout.addItem(textEdit, 0, 0) layout.addItem(pushButton, 0, 1)
Alternatively, if you do not pass a parent widget to the layout’s constructor, you will need to call setLayout()
to set this layout as the top-level layout for that widget, the widget will take ownership of the layout.
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.
See also
- class PySide6.QtWidgets.QGraphicsGridLayout([parent=None])#
- Parameters:
Constructs a QGraphicsGridLayout
instance. parent
is passed to QGraphicsLayout
‘s constructor.
- PySide6.QtWidgets.QGraphicsGridLayout.addItem(item, row, column, rowSpan, columnSpan[, alignment=Qt.Alignment()])#
- Parameters:
row – int
column – int
rowSpan – int
columnSpan – int
alignment –
Alignment
Adds item
to the grid on row
and column
. You can specify a rowSpan
and columnSpan
and an optional alignment
.
- PySide6.QtWidgets.QGraphicsGridLayout.addItem(item, row, column[, alignment=Qt.Alignment()])
- Parameters:
row – int
column – int
alignment –
Alignment
Adds item
to the grid on row
and column
. You can specify an optional alignment
for item
.
- PySide6.QtWidgets.QGraphicsGridLayout.alignment(item)#
- Parameters:
- Return type:
Alignment
Returns the alignment for item
.
See also
- PySide6.QtWidgets.QGraphicsGridLayout.columnAlignment(column)#
- Parameters:
column – int
- Return type:
Alignment
Returns the alignment for column
.
See also
- 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
.
See also
- PySide6.QtWidgets.QGraphicsGridLayout.columnMinimumWidth(column)#
- Parameters:
column – int
- Return type:
float
Returns the minimum width for column
.
See also
- PySide6.QtWidgets.QGraphicsGridLayout.columnPreferredWidth(column)#
- Parameters:
column – int
- Return type:
float
Returns the preferred width for column
.
See also
- PySide6.QtWidgets.QGraphicsGridLayout.columnSpacing(column)#
- Parameters:
column – int
- Return type:
float
Returns the column spacing for column
.
See also
- PySide6.QtWidgets.QGraphicsGridLayout.columnStretchFactor(column)#
- Parameters:
column – int
- Return type:
int
Returns the stretch factor for column
.
See also
- PySide6.QtWidgets.QGraphicsGridLayout.horizontalSpacing()#
- Return type:
float
Returns the default horizontal spacing for the grid layout.
See also
- PySide6.QtWidgets.QGraphicsGridLayout.itemAt(row, column)#
- Parameters:
row – int
column – int
- Return type:
Returns a pointer to the layout item at (row
, column
).
- PySide6.QtWidgets.QGraphicsGridLayout.removeItem(item)#
- Parameters:
Removes the layout item item
without destroying it. Ownership of the item is transferred to the caller.
See also
- PySide6.QtWidgets.QGraphicsGridLayout.rowAlignment(row)#
- Parameters:
row – int
- Return type:
Alignment
Returns the alignment of row
.
See also
- 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
.
See also
- PySide6.QtWidgets.QGraphicsGridLayout.rowMinimumHeight(row)#
- Parameters:
row – int
- Return type:
float
Returns the minimum height for row, row
.
See also
- PySide6.QtWidgets.QGraphicsGridLayout.rowPreferredHeight(row)#
- Parameters:
row – int
- Return type:
float
Returns the preferred height for row, row
.
See also
- PySide6.QtWidgets.QGraphicsGridLayout.rowSpacing(row)#
- Parameters:
row – int
- Return type:
float
Returns the row spacing for row
.
See also
- PySide6.QtWidgets.QGraphicsGridLayout.rowStretchFactor(row)#
- Parameters:
row – int
- Return type:
int
Returns the stretch factor for row
.
See also
- PySide6.QtWidgets.QGraphicsGridLayout.setAlignment(item, alignment)#
- Parameters:
alignment –
Alignment
Sets the alignment for item
to alignment
.
See also
- PySide6.QtWidgets.QGraphicsGridLayout.setColumnAlignment(column, alignment)#
- Parameters:
column – int
alignment –
Alignment
Sets the alignment for column
to alignment
.
See also
- 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
.
See also
- PySide6.QtWidgets.QGraphicsGridLayout.setColumnMinimumWidth(column, width)#
- Parameters:
column – int
width – float
Sets the minimum width for column
to width
.
See also
- PySide6.QtWidgets.QGraphicsGridLayout.setColumnPreferredWidth(column, width)#
- Parameters:
column – int
width – float
Sets the preferred width for column
to width
.
See also
- PySide6.QtWidgets.QGraphicsGridLayout.setColumnSpacing(column, spacing)#
- Parameters:
column – int
spacing – float
Sets the spacing for column
to spacing
.
See also
- PySide6.QtWidgets.QGraphicsGridLayout.setColumnStretchFactor(column, stretch)#
- Parameters:
column – int
stretch – int
Sets the stretch factor for column
to stretch
.
See also
- PySide6.QtWidgets.QGraphicsGridLayout.setHorizontalSpacing(spacing)#
- Parameters:
spacing – float
Sets the default horizontal spacing for the grid layout to spacing
.
See also
- PySide6.QtWidgets.QGraphicsGridLayout.setRowAlignment(row, alignment)#
- Parameters:
row – int
alignment –
Alignment
Sets the alignment of row
to alignment
.
See also
- 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
.
See also
- PySide6.QtWidgets.QGraphicsGridLayout.setRowMinimumHeight(row, height)#
- Parameters:
row – int
height – float
Sets the minimum height for row, row
, to height
.
See also
- PySide6.QtWidgets.QGraphicsGridLayout.setRowPreferredHeight(row, height)#
- Parameters:
row – int
height – float
Sets the preferred height for row, row
, to height
.
See also
- PySide6.QtWidgets.QGraphicsGridLayout.setRowSpacing(row, spacing)#
- Parameters:
row – int
spacing – float
Sets the spacing for row
to spacing
.
See also
- PySide6.QtWidgets.QGraphicsGridLayout.setRowStretchFactor(row, stretch)#
- Parameters:
row – int
stretch – int
Sets the stretch factor for row
to stretch
.
See also
- PySide6.QtWidgets.QGraphicsGridLayout.setSpacing(spacing)#
- Parameters:
spacing – float
Sets the grid layout’s default spacing, both vertical and horizontal, to spacing
.
See also
- PySide6.QtWidgets.QGraphicsGridLayout.setVerticalSpacing(spacing)#
- Parameters:
spacing – float
Sets the default vertical spacing for the grid layout to spacing
.
See also
- PySide6.QtWidgets.QGraphicsGridLayout.verticalSpacing()#
- Return type:
float
Returns the default vertical spacing for the grid layout.
See also