Searched refs:physicalScrollY (Results 1 – 1 of 1) sorted by relevance
449 int physicalScrollY = scrollPosition().y() + m_scrollOrigin.y(); in overhangAmount() local450 if (physicalScrollY < 0) in overhangAmount()451 stretch.setHeight(physicalScrollY); in overhangAmount()452 else if (physicalScrollY > contentsHeight() - visibleContentRect().height()) in overhangAmount()453 stretch.setHeight(physicalScrollY - (contentsHeight() - visibleContentRect().height())); in overhangAmount()1074 int physicalScrollY = scrollPosition().y() + m_scrollOrigin.y(); in wheelEvent() local1075 if (physicalScrollY < 0) { in wheelEvent()1077 horizontalOverhangRect.setHeight(-physicalScrollY); in wheelEvent()1078 } else if (physicalScrollY > contentsHeight() - visibleContentRect().height()) { in wheelEvent()1079 int height = physicalScrollY - (contentsHeight() - visibleContentRect().height()); in wheelEvent()