Searched refs:physicalScrollY (Results 1 – 1 of 1) sorted by relevance
480 int physicalScrollY = scrollPosition().y() + m_scrollOrigin.y(); in overhangAmount() local481 if (physicalScrollY < 0) in overhangAmount()482 stretch.setHeight(physicalScrollY); in overhangAmount()483 else if (physicalScrollY > contentsHeight() - visibleContentRect().height()) in overhangAmount()484 stretch.setHeight(physicalScrollY - (contentsHeight() - visibleContentRect().height())); in overhangAmount()1105 int physicalScrollY = scrollPosition().y() + m_scrollOrigin.y(); in wheelEvent() local1106 if (physicalScrollY < 0) { in wheelEvent()1108 horizontalOverhangRect.setHeight(-physicalScrollY); in wheelEvent()1109 } else if (physicalScrollY > contentsHeight() - visibleContentRect().height()) { in wheelEvent()1110 int height = physicalScrollY - (contentsHeight() - visibleContentRect().height()); in wheelEvent()