Searched refs:physicalScrollX (Results 1 – 1 of 1) sorted by relevance
486 int physicalScrollX = scrollPosition().x() + m_scrollOrigin.x(); in overhangAmount() local487 if (physicalScrollX < 0) in overhangAmount()488 stretch.setWidth(physicalScrollX); in overhangAmount()489 else if (physicalScrollX > contentsWidth() - visibleContentRect().width()) in overhangAmount()490 stretch.setWidth(physicalScrollX - (contentsWidth() - visibleContentRect().width())); in overhangAmount()1116 int physicalScrollX = scrollPosition().x() + m_scrollOrigin.x(); in wheelEvent() local1117 if (physicalScrollX < 0) { in wheelEvent()1118 verticalOverhangRect.setWidth(-physicalScrollX); in wheelEvent()1125 } else if (physicalScrollX > contentsWidth() - visibleContentRect().width()) { in wheelEvent()1126 int width = physicalScrollX - (contentsWidth() - visibleContentRect().width()); in wheelEvent()