Home | History | Annotate | Download | only in Api

Lines Matching refs:Orientation

941     Returns the scrollbar policy for the scrollbar defined by \a orientation.
943 Qt::ScrollBarPolicy QWebFrame::scrollBarPolicy(Qt::Orientation orientation) const
945 if (orientation == Qt::Horizontal)
951 Sets the scrollbar policy for the scrollbar defined by \a orientation to \a policy.
953 void QWebFrame::setScrollBarPolicy(Qt::Orientation orientation, Qt::ScrollBarPolicy policy)
959 if (orientation == Qt::Horizontal) {
975 Sets the current \a value for the scrollbar with orientation \a orientation.
983 void QWebFrame::setScrollBarValue(Qt::Orientation orientation, int value)
986 sb = (orientation == Qt::Horizontal) ? d->horizontalScrollBar() : d->verticalScrollBar();
990 else if (value > scrollBarMaximum(orientation))
991 value = scrollBarMaximum(orientation);
997 Returns the current value for the scrollbar with orientation \a orientation, or 0
998 if no scrollbar is found for \a orientation.
1002 int QWebFrame::scrollBarValue(Qt::Orientation orientation) const
1005 sb = (orientation == Qt::Horizontal) ? d->horizontalScrollBar() : d->verticalScrollBar();
1012 Returns the maximum value for the scrollbar with orientation \a orientation, or 0
1013 if no scrollbar is found for \a orientation.
1017 int QWebFrame::scrollBarMaximum(Qt::Orientation orientation) const
1020 sb = (orientation == Qt::Horizontal) ? d->horizontalScrollBar() : d->verticalScrollBar();
1027 Returns the minimum value for the scrollbar with orientation \a orientation.
1033 int QWebFrame::scrollBarMinimum(Qt::Orientation orientation) const
1035 Q_UNUSED(orientation)
1041 Returns the geometry for the scrollbar with orientation \a orientation.
1045 QRect QWebFrame::scrollBarGeometry(Qt::Orientation orientation) const
1048 sb = (orientation == Qt::Horizontal) ? d->horizontalScrollBar() : d->verticalScrollBar();