Table Of Contents

Previous topic

QGroupBox

Next topic

QDockWidget

QFocusFrame

Inheritance diagram of QFocusFrame

Synopsis

Functions

Detailed Description

The PySide.QtGui.QFocusFrame widget provides a focus frame which can be outside of a widget’s normal paintable area.

Normally an application will not need to create its own PySide.QtGui.QFocusFrame as PySide.QtGui.QStyle will handle this detail for you. A style writer can optionally use a PySide.QtGui.QFocusFrame to have a focus area outside of the widget’s paintable geometry. In this way space need not be reserved for the widget to have focus but only set on a PySide.QtGui.QWidget with QFocusFrame::setWidget. It is, however, legal to create your own PySide.QtGui.QFocusFrame on a custom widget and set its geometry manually via QWidget::setGeometry however you will not get auto-placement when the focused widget changes size or placement.

class PySide.QtGui.QFocusFrame([parent=None])
Parameters:parentPySide.QtGui.QWidget

Constructs a PySide.QtGui.QFocusFrame .

The focus frame will not monitor parent for updates but rather can be placed manually or by using QFocusFrame::setWidget. A PySide.QtGui.QFocusFrame sets Qt.WA_NoChildEventsForParent attribute; as a result the parent will not receive a QEvent.ChildInserted event, this will make it possible to manually set the geometry of the PySide.QtGui.QFocusFrame inside of a PySide.QtGui.QSplitter or other child event monitoring widget.

PySide.QtGui.QFocusFrame.initStyleOption(option)
Parameters:optionPySide.QtGui.QStyleOption

Initialize option with the values from this PySide.QtGui.QFocusFrame . This method is useful for subclasses when they need a PySide.QtGui.QStyleOption , but don’t want to fill in all the information themselves.

PySide.QtGui.QFocusFrame.setWidget(widget)
Parameters:widgetPySide.QtGui.QWidget

PySide.QtGui.QFocusFrame will track changes to widget and resize itself automatically. If the monitored widget’s parent changes, PySide.QtGui.QFocusFrame will follow the widget and place itself around the widget automatically. If the monitored widget is deleted, PySide.QtGui.QFocusFrame will set it to zero.

PySide.QtGui.QFocusFrame.widget()
Return type:PySide.QtGui.QWidget

Returns the currently monitored widget for automatically resize and update.