Table Of Contents

Previous topic

QScrollBar

Next topic

QRadioButton

QScrollArea

Inheritance diagram of QScrollArea

Synopsis

Functions

Detailed Description

The PySide.QtGui.QScrollArea class provides a scrolling view onto another widget.

A scroll area is used to display the contents of a child widget within a frame. If the widget exceeds the size of the frame, the view can provide scroll bars so that the entire area of the child widget can be viewed. The child widget must be specified with PySide.QtGui.QScrollArea.setWidget() . For example:

imageLabel = QLabel()
image = QImage("happyguy.png")
imageLabel.setPixmap(QPixmap.fromImage(image))

scrollArea = QScrollArea()
scrollArea.setBackgroundRole(QPalette.Dark)
scrollArea.setWidget(imageLabel)

The code above creates a scroll area (shown in the images below) containing an image label. When scaling the image, the scroll area can provide the necessary scroll bars:

../../_images/qscrollarea-noscrollbars.png ../../_images/qscrollarea-onescrollbar.png ../../_images/qscrollarea-twoscrollbars.png

The scroll bars appearance depends on the currently set scroll bar policies . You can control the appearance of the scroll bars using the inherited functionality from PySide.QtGui.QAbstractScrollArea .

For example, you can set the QAbstractScrollArea.horizontalScrollBarPolicy and QAbstractScrollArea.verticalScrollBarPolicy properties. Or if you want the scroll bars to adjust dynamically when the contents of the scroll area changes, you can use the PySide.QtGui.QAbstractScrollArea.horizontalScrollBar() and PySide.QtGui.QAbstractScrollArea.verticalScrollBar() functions (which enable you to access the scroll bars) and set the scroll bars’ values whenever the scroll area’s contents change, using the QScrollBar.setValue() function.

You can retrieve the child widget using the PySide.QtGui.QScrollArea.widget() function. The view can be made to be resizable with the PySide.QtGui.QScrollArea.setWidgetResizable() function. The alignment of the widget can be specified with PySide.QtGui.QScrollArea.setAlignment() .

Two convenience functions PySide.QtGui.QScrollArea.ensureVisible() and PySide.QtGui.QScrollArea.ensureWidgetVisible() ensure a certain region of the contents is visible inside the viewport, by scrolling the contents if necessary.

Size Hints and Layouts

When using a scroll area to display the contents of a custom widget, it is important to ensure that the size hint of the child widget is set to a suitable value. If a standard PySide.QtGui.QWidget is used for the child widget, it may be necessary to call QWidget.setMinimumSize() to ensure that the contents of the widget are shown correctly within the scroll area.

If a scroll area is used to display the contents of a widget that contains child widgets arranged in a layout, it is important to realize that the size policy of the layout will also determine the size of the widget. This is especially useful to know if you intend to dynamically change the contents of the layout. In such cases, setting the layout’s size constraint property to one which provides constraints on the minimum and/or maximum size of the layout (e.g., QLayout.SetMinAndMaxSize ) will cause the size of the scroll area to be updated whenever the contents of the layout changes.

For a complete example using the PySide.QtGui.QScrollArea class, see the Image Viewer example. The example shows how to combine PySide.QtGui.QLabel and PySide.QtGui.QScrollArea to display an image.

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

Constructs an empty scroll area with the given parent .

PySide.QtGui.QScrollArea.alignment()
Return type:PySide.QtCore.Qt.Alignment

This property holds the alignment of the scroll area’s widget.

By default, the widget stays rooted to the top-left corner of the scroll area.

PySide.QtGui.QScrollArea.ensureVisible(x, y[, xmargin=50[, ymargin=50]])
Parameters:
  • xPySide.QtCore.int
  • yPySide.QtCore.int
  • xmarginPySide.QtCore.int
  • ymarginPySide.QtCore.int

Scrolls the contents of the scroll area so that the point (x , y ) is visible inside the region of the viewport with margins specified in pixels by xmargin and ymargin . If the specified point cannot be reached, the contents are scrolled to the nearest valid position. The default value for both margins is 50 pixels.

PySide.QtGui.QScrollArea.ensureWidgetVisible(childWidget[, xmargin=50[, ymargin=50]])
Parameters:

Scrolls the contents of the scroll area so that the childWidget of QScrollArea.widget() is visible inside the viewport with margins specified in pixels by xmargin and ymargin . If the specified point cannot be reached, the contents are scrolled to the nearest valid position. The default value for both margins is 50 pixels.

PySide.QtGui.QScrollArea.setAlignment(arg__1)
Parameters:arg__1PySide.QtCore.Qt.Alignment

This property holds the alignment of the scroll area’s widget.

By default, the widget stays rooted to the top-left corner of the scroll area.

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

Sets the scroll area’s widget .

The widget becomes a child of the scroll area, and will be destroyed when the scroll area is deleted or when a new widget is set.

The widget’s autoFillBackground property will be set to true .

If the scroll area is visible when the widget is added, you must PySide.QtGui.QWidget.show() it explicitly.

Note that You must add the layout of widget before you call this function; if you add it later, the widget will not be visible - regardless of when you PySide.QtGui.QWidget.show() the scroll area. In this case, you can also not PySide.QtGui.QWidget.show() the widget later.

PySide.QtGui.QScrollArea.setWidgetResizable(resizable)
Parameters:resizablePySide.QtCore.bool

This property holds whether the scroll area should resize the view widget.

If this property is set to false (the default), the scroll area honors the size of its widget. Regardless of this property, you can programmatically resize the widget using PySide.QtGui.QScrollArea.widget() -> PySide.QtGui.QWidget.resize() , and the scroll area will automatically adjust itself to the new size.

If this property is set to true, the scroll area will automatically resize the widget in order to avoid scroll bars where they can be avoided, or to take advantage of extra space.

PySide.QtGui.QScrollArea.takeWidget()
Return type:PySide.QtGui.QWidget

Removes the scroll area’s widget, and passes ownership of the widget to the caller.

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

Returns the scroll area’s widget, or 0 if there is none.

PySide.QtGui.QScrollArea.widgetResizable()
Return type:PySide.QtCore.bool

This property holds whether the scroll area should resize the view widget.

If this property is set to false (the default), the scroll area honors the size of its widget. Regardless of this property, you can programmatically resize the widget using PySide.QtGui.QScrollArea.widget() -> PySide.QtGui.QWidget.resize() , and the scroll area will automatically adjust itself to the new size.

If this property is set to true, the scroll area will automatically resize the widget in order to avoid scroll bars where they can be avoided, or to take advantage of extra space.