Searched refs:physicalScrollX (Results 1 – 1 of 1) sorted by relevance
455 int physicalScrollX = scrollPosition().x() + m_scrollOrigin.x(); in overhangAmount() local456 if (physicalScrollX < 0) in overhangAmount()457 stretch.setWidth(physicalScrollX); in overhangAmount()458 else if (physicalScrollX > contentsWidth() - visibleContentRect().width()) in overhangAmount()459 stretch.setWidth(physicalScrollX - (contentsWidth() - visibleContentRect().width())); in overhangAmount()1085 int physicalScrollX = scrollPosition().x() + m_scrollOrigin.x(); in wheelEvent() local1086 if (physicalScrollX < 0) { in wheelEvent()1087 verticalOverhangRect.setWidth(-physicalScrollX); in wheelEvent()1094 } else if (physicalScrollX > contentsWidth() - visibleContentRect().width()) { in wheelEvent()1095 int width = physicalScrollX - (contentsWidth() - visibleContentRect().width()); in wheelEvent()