QGroupBox¶
The QGroupBox
widget provides a group box frame with a title. More…

Synopsis¶
Functions¶
def
alignment
()def
clicked
([checked=false])def
isCheckable
()def
isChecked
()def
isFlat
()def
setAlignment
(alignment)def
setCheckable
(checkable)def
setChecked
(checked)def
setFlat
(flat)def
setTitle
(title)def
title
()def
toggled
(arg__1)
Virtual functions¶
def
initStyleOption
(option)
Detailed Description¶
A group box provides a frame, a title on top, a keyboard shortcut, and displays various other widgets inside itself. The keyboard shortcut moves keyboard focus to one of the group box’s child widgets.
QGroupBox
also lets you set the title
(normally set in the constructor) and the title’s alignment . Group boxes can be checkable
. Child widgets in checkable group boxes are enabled or disabled depending on whether or not the group box is checked
.
You can minimize the space consumption of a group box by enabling the flat
property. In most styles
, enabling this property results in the removal of the left, right and bottom edges of the frame.
QGroupBox
doesn’t automatically lay out the child widgets (which are often QCheckBox
es or QRadioButton
s but can be any widgets). The following example shows how we can set up a QGroupBox
with a layout:
groupBox = QGroupBox("Exclusive Radio Buttons") radio1 = QRadioButton("&Radio button 1") radio2 = QRadioButton("R&adio button 2") radio3 = QRadioButton("Ra&dio button 3") radio1.setChecked(True) vbox = QVBoxLayout() vbox.addWidget(radio1) vbox.addWidget(radio2) vbox.addWidget(radio3) vbox.addStretch(1) groupBox.setLayout(vbox)See also
-
class
PySide6.QtWidgets.
QGroupBox
([parent=None])¶ PySide6.QtWidgets.QGroupBox(title[, parent=None])
- Parameters
parent –
PySide6.QtWidgets.QWidget
title – str
Constructs a group box widget with the given parent
but with no title.
Constructs a group box with the given title
and parent
.
-
PySide6.QtWidgets.QGroupBox.
alignment
()¶ - Return type
Alignment
See also
-
PySide6.QtWidgets.QGroupBox.
clicked
([checked=false])¶ - Parameters
checked – bool
-
PySide6.QtWidgets.QGroupBox.
initStyleOption
(option)¶ - Parameters
Initialize option
with the values from this QGroupBox
. This method is useful for subclasses when they need a QStyleOptionGroupBox
, but don’t want to fill in all the information themselves.
See also
-
PySide6.QtWidgets.QGroupBox.
isCheckable
()¶ - Return type
bool
-
PySide6.QtWidgets.QGroupBox.
isChecked
()¶ - Return type
bool
-
PySide6.QtWidgets.QGroupBox.
isFlat
()¶ - Return type
bool
-
PySide6.QtWidgets.QGroupBox.
setAlignment
(alignment)¶ - Parameters
alignment – int
See also
-
PySide6.QtWidgets.QGroupBox.
setCheckable
(checkable)¶ - Parameters
checkable – bool
See also
-
PySide6.QtWidgets.QGroupBox.
setChecked
(checked)¶ - Parameters
checked – bool
See also
-
PySide6.QtWidgets.QGroupBox.
title
()¶ - Return type
str
See also
-
PySide6.QtWidgets.QGroupBox.
toggled
(arg__1)¶ - Parameters
arg__1 – bool
© 2021 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.