QAbstractScrollArea¶
The
QAbstractScrollArea
widget provides a scrolling area with on-demand scroll bars. More…
Inherited by: QChartView, QHelpContentWidget, QHelpIndexWidget, QAbstractItemView, QColumnView, QGraphicsView, QHeaderView, QListView, QListWidget, QMdiArea, QPlainTextEdit, QScrollArea, QTableView, QTableWidget, QTextBrowser, QTextEdit, QTreeView, QTreeWidget, QUndoView
Synopsis¶
Functions¶
def
addScrollBarWidget
(widget, alignment)def
cornerWidget
()def
horizontalScrollBar
()def
horizontalScrollBarPolicy
()def
maximumViewportSize
()def
scrollBarWidgets
(alignment)def
setCornerWidget
(widget)def
setHorizontalScrollBar
(scrollbar)def
setHorizontalScrollBarPolicy
(arg__1)def
setSizeAdjustPolicy
(policy)def
setVerticalScrollBar
(scrollbar)def
setVerticalScrollBarPolicy
(arg__1)def
setViewport
(widget)def
setViewportMargins
(left, top, right, bottom)def
setViewportMargins
(margins)def
sizeAdjustPolicy
()def
verticalScrollBar
()def
verticalScrollBarPolicy
()def
viewport
()def
viewportMargins
()
Virtual functions¶
def
scrollContentsBy
(dx, dy)def
setupViewport
(viewport)def
viewportEvent
(arg__1)def
viewportSizeHint
()
Detailed Description¶
QAbstractScrollArea
is a low-level abstraction of a scrolling area. The area provides a central widget called the viewport, in which the contents of the area is to be scrolled (i.e, the visible parts of the contents are rendered in the viewport).Next to the viewport is a vertical scroll bar, and below is a horizontal scroll bar. When all of the area contents fits in the viewport, each scroll bar can be either visible or hidden depending on the scroll bar’s
ScrollBarPolicy
. When a scroll bar is hidden, the viewport expands in order to cover all available space. When a scroll bar becomes visible again, the viewport shrinks in order to make room for the scroll bar.It is possible to reserve a margin area around the viewport, see
setViewportMargins()
. The feature is mostly used to place aQHeaderView
widget above or beside the scrolling area. Subclasses ofQAbstractScrollArea
should implement margins.When inheriting
QAbstractScrollArea
, you need to do the following:
Control the scroll bars by setting their range, value, page step, and tracking their movements.
Draw the contents of the area in the viewport according to the values of the scroll bars.
Handle events received by the viewport in
viewportEvent()
- notably resize events.Use
viewport->update()
to update the contents of the viewport instead ofupdate()
as all painting operations take place on the viewport.With a scroll bar policy of
ScrollBarAsNeeded
(the default),QAbstractScrollArea
shows scroll bars when they provide a non-zero scrolling range, and hides them otherwise.The scroll bars and viewport should be updated whenever the viewport receives a resize event or the size of the contents changes. The viewport also needs to be updated when the scroll bars values change. The initial values of the scroll bars are often set when the area receives new contents.
We give a simple example, in which we have implemented a scroll area that can scroll any
QWidget
. We make the widget a child of the viewport; this way, we do not have to calculate which part of the widget to draw but can simply move the widget withmove()
. When the area contents or the viewport size changes, we do the following:QSize areaSize = viewport()->size(); QSize widgetSize = widget->size(); verticalScrollBar()->setPageStep(areaSize.height()); horizontalScrollBar()->setPageStep(areaSize.width()); verticalScrollBar()->setRange(0, widgetSize.height() - areaSize.height()); horizontalScrollBar()->setRange(0, widgetSize.width() - areaSize.width()); updateWidgetPosition();When the scroll bars change value, we need to update the widget position, i.e., find the part of the widget that is to be drawn in the viewport:
int hvalue = horizontalScrollBar()->value(); int vvalue = verticalScrollBar()->value(); QPoint topLeft = viewport()->rect().topLeft(); widget->move(topLeft.x() - hvalue, topLeft.y() - vvalue);In order to track scroll bar movements, reimplement the virtual function
scrollContentsBy()
. In order to fine-tune scrolling behavior, connect to a scroll bar’sactionTriggered()
signal and adjust thesliderPosition
as you wish.For convenience,
QAbstractScrollArea
makes all viewport events available in the virtualviewportEvent()
handler.QWidget
‘s specialized handlers are remapped to viewport events in the cases where this makes sense. The remapped specialized handlers are:paintEvent()
,mousePressEvent()
,mouseReleaseEvent()
,mouseDoubleClickEvent()
,mouseMoveEvent()
,wheelEvent()
,dragEnterEvent()
,dragMoveEvent()
,dragLeaveEvent()
,dropEvent()
,contextMenuEvent()
, andresizeEvent()
.
QScrollArea
, which inheritsQAbstractScrollArea
, provides smooth scrolling for anyQWidget
(i.e., the widget is scrolled pixel by pixel). You only need to subclassQAbstractScrollArea
if you need more specialized behavior. This is, for instance, true if the entire contents of the area is not suitable for being drawn on aQWidget
or if you do not want smooth scrolling.See also
- class PySide2.QtWidgets.QAbstractScrollArea([parent=None])¶
- param parent:
Constructs a viewport.
The
parent
argument is sent to theQWidget
constructor.
- PySide2.QtWidgets.QAbstractScrollArea.SizeAdjustPolicy¶
This enum specifies how the size hint of the
QAbstractScrollArea
should adjust when the size of the viewport changes.Constant
Description
QAbstractScrollArea.AdjustIgnored
The scroll area will behave like before - and not do any adjust.
QAbstractScrollArea.AdjustToContents
The scroll area will always adjust to the viewport
QAbstractScrollArea.AdjustToContentsOnFirstShow
The scroll area will adjust to its viewport the first time it is shown.
- PySide2.QtWidgets.QAbstractScrollArea.addScrollBarWidget(widget, alignment)¶
- Parameters:
widget –
PySide2.QtWidgets.QWidget
alignment –
Alignment
Adds
widget
as a scroll bar widget in the location specified byalignment
.Scroll bar widgets are shown next to the horizontal or vertical scroll bar, and can be placed on either side of it. If you want the scroll bar widgets to be always visible, set the scrollBarPolicy for the corresponding scroll bar to
AlwaysOn
.alignment
must be one of Qt::Alignleft andAlignRight
, which maps to the horizontal scroll bar, orAlignTop
andAlignBottom
, which maps to the vertical scroll bar.A scroll bar widget can be removed by either re-parenting the widget or deleting it. It’s also possible to hide a widget with
hide()
The scroll bar widget will be resized to fit the scroll bar geometry for the current style. The following describes the case for scroll bar widgets on the horizontal scroll bar:
The height of the widget will be set to match the height of the scroll bar. To control the width of the widget, use
setMinimumWidth
andsetMaximumWidth
, or implementsizeHint()
and set a horizontal size policy. If you want a square widget, callpixelMetric
(PM_ScrollBarExtent
) and set the width to this value.See also
- PySide2.QtWidgets.QAbstractScrollArea.cornerWidget()¶
- Return type:
Returns the widget in the corner between the two scroll bars.
By default, no corner widget is present.
See also
- PySide2.QtWidgets.QAbstractScrollArea.horizontalScrollBar()¶
- Return type:
Returns the horizontal scroll bar.
- PySide2.QtWidgets.QAbstractScrollArea.horizontalScrollBarPolicy()¶
- Return type:
This property holds the policy for the horizontal scroll bar.
The default policy is
ScrollBarAsNeeded
.See also
- PySide2.QtWidgets.QAbstractScrollArea.maximumViewportSize()¶
- Return type:
Returns the size of the viewport as if the scroll bars had no valid scrolling range.
- PySide2.QtWidgets.QAbstractScrollArea.scrollBarWidgets(alignment)¶
- Parameters:
alignment –
Alignment
- Return type:
Returns a list of the currently set scroll bar widgets.
alignment
can be any combination of the four location flags.See also
- PySide2.QtWidgets.QAbstractScrollArea.scrollContentsBy(dx, dy)¶
- Parameters:
dx – int
dy – int
This virtual handler is called when the scroll bars are moved by
dx
,dy
, and consequently the viewport’s contents should be scrolled accordingly.The default implementation simply calls
update()
on the entireviewport()
, subclasses can reimplement this handler for optimization purposes, or - likeQScrollArea
- to move a contents widget. The parametersdx
anddy
are there for convenience, so that the class knows how much should be scrolled (useful e.g. when doing pixel-shifts). You may just as well ignore these values and scroll directly to the position the scroll bars indicate.Calling this function in order to scroll programmatically is an error, use the scroll bars instead (e.g. by calling
setValue()
directly).
- PySide2.QtWidgets.QAbstractScrollArea.setCornerWidget(widget)¶
- Parameters:
widget –
PySide2.QtWidgets.QWidget
Sets the widget in the corner between the two scroll bars to be
widget
.You will probably also want to set at least one of the scroll bar modes to
AlwaysOn
.Passing
None
shows no widget in the corner.Any previous corner widget is hidden.
You may call with the same widget at different times.
All widgets set here will be deleted by the scroll area when it is destroyed unless you separately reparent the widget after setting some other corner widget (or
None
).Any newly set widget should have no current parent.
By default, no corner widget is present.
- PySide2.QtWidgets.QAbstractScrollArea.setHorizontalScrollBar(scrollbar)¶
- Parameters:
scrollbar –
PySide2.QtWidgets.QScrollBar
Replaces the existing horizontal scroll bar with
scrollBar
, and sets all the former scroll bar’s slider properties on the new scroll bar. The former scroll bar is then deleted.QAbstractScrollArea
already provides horizontal and vertical scroll bars by default. You can call this function to replace the default horizontal scroll bar with your own custom scroll bar.
- PySide2.QtWidgets.QAbstractScrollArea.setHorizontalScrollBarPolicy(arg__1)¶
- Parameters:
arg__1 –
ScrollBarPolicy
This property holds the policy for the horizontal scroll bar.
The default policy is
ScrollBarAsNeeded
.See also
- PySide2.QtWidgets.QAbstractScrollArea.setSizeAdjustPolicy(policy)¶
- Parameters:
policy –
SizeAdjustPolicy
This property holds the policy describing how the size of the scroll area changes when the size of the viewport changes.
The default policy is
AdjustIgnored
. Changing this property might actually resize the scrollarea.
- PySide2.QtWidgets.QAbstractScrollArea.setVerticalScrollBar(scrollbar)¶
- Parameters:
scrollbar –
PySide2.QtWidgets.QScrollBar
Replaces the existing vertical scroll bar with
scrollBar
, and sets all the former scroll bar’s slider properties on the new scroll bar. The former scroll bar is then deleted.QAbstractScrollArea
already provides vertical and horizontal scroll bars by default. You can call this function to replace the default vertical scroll bar with your own custom scroll bar.
- PySide2.QtWidgets.QAbstractScrollArea.setVerticalScrollBarPolicy(arg__1)¶
- Parameters:
arg__1 –
ScrollBarPolicy
This property holds the policy for the vertical scroll bar.
The default policy is
ScrollBarAsNeeded
.See also
- PySide2.QtWidgets.QAbstractScrollArea.setViewport(widget)¶
- Parameters:
widget –
PySide2.QtWidgets.QWidget
Sets the viewport to be the given
widget
. TheQAbstractScrollArea
will take ownership of the givenwidget
.If
widget
isNone
,QAbstractScrollArea
will assign a newQWidget
instance for the viewport.See also
- PySide2.QtWidgets.QAbstractScrollArea.setViewportMargins(margins)¶
- Parameters:
margins –
PySide2.QtCore.QMargins
Sets
margins
around the scrolling area. This is useful for applications such as spreadsheets with “locked” rows and columns. The marginal space is is left blank; put widgets in the unused area.By default all margins are zero.
See also
- PySide2.QtWidgets.QAbstractScrollArea.setViewportMargins(left, top, right, bottom)
- Parameters:
left – int
top – int
right – int
bottom – int
Sets the margins around the scrolling area to
left
,top
,right
andbottom
. This is useful for applications such as spreadsheets with “locked” rows and columns. The marginal space is is left blank; put widgets in the unused area.Note that this function is frequently called by
QTreeView
andQTableView
, so margins must be implemented byQAbstractScrollArea
subclasses. Also, if the subclasses are to be used in item views, they should not call this function.By default all margins are zero.
See also
- PySide2.QtWidgets.QAbstractScrollArea.setupViewport(viewport)¶
- Parameters:
viewport –
PySide2.QtWidgets.QWidget
This slot is called by
QAbstractScrollArea
aftersetViewport
(viewport
) has been called. Reimplement this function in a subclass ofQAbstractScrollArea
to initialize the newviewport
before it is used.See also
- PySide2.QtWidgets.QAbstractScrollArea.sizeAdjustPolicy()¶
- Return type:
This property holds the policy describing how the size of the scroll area changes when the size of the viewport changes.
The default policy is
AdjustIgnored
. Changing this property might actually resize the scrollarea.
- PySide2.QtWidgets.QAbstractScrollArea.verticalScrollBar()¶
- Return type:
Returns the vertical scroll bar.
- PySide2.QtWidgets.QAbstractScrollArea.verticalScrollBarPolicy()¶
- Return type:
This property holds the policy for the vertical scroll bar.
The default policy is
ScrollBarAsNeeded
.See also
- PySide2.QtWidgets.QAbstractScrollArea.viewport()¶
- Return type:
Returns the viewport widget.
Use the
widget()
function to retrieve the contents of the viewport widget.See also
- PySide2.QtWidgets.QAbstractScrollArea.viewportEvent(arg__1)¶
- Parameters:
arg__1 –
PySide2.QtCore.QEvent
- Return type:
bool
The main event handler for the scrolling area (the
viewport()
widget). It handles theevent
specified, and can be called by subclasses to provide reasonable default behavior.Returns
true
to indicate to the event system that the event has been handled, and needs no further processing; otherwise returnsfalse
to indicate that the event should be propagated further.You can reimplement this function in a subclass, but we recommend using one of the specialized event handlers instead.
Specialized handlers for viewport events are:
paintEvent()
,mousePressEvent()
,mouseReleaseEvent()
,mouseDoubleClickEvent()
,mouseMoveEvent()
,wheelEvent()
,dragEnterEvent()
,dragMoveEvent()
,dragLeaveEvent()
,dropEvent()
,contextMenuEvent()
, andresizeEvent()
.
- PySide2.QtWidgets.QAbstractScrollArea.viewportMargins()¶
- Return type:
Returns the margins around the scrolling area. By default all the margins are zero.
See also
- PySide2.QtWidgets.QAbstractScrollArea.viewportSizeHint()¶
- Return type:
Returns the recommended size for the viewport. The default implementation returns
viewport()
->sizeHint()
. Note that the size is just the viewport’s size, without any scroll bars visible.
© 2022 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.