Searched refs:scrollLines (Results 1 – 3 of 3) sorted by relevance
62 static ULONG scrollLines; in verticalScrollLines() local63 if (!scrollLines && !SystemParametersInfo(SPI_GETWHEELSCROLLLINES, 0, &scrollLines, 0)) in verticalScrollLines()64 scrollLines = 3; in verticalScrollLines()65 return scrollLines; in verticalScrollLines()
66 static ULONG scrollLines; in verticalScrollLines() local67 if (!scrollLines && !::SystemParametersInfo(SPI_GETWHEELSCROLLLINES, 0, &scrollLines, 0)) in verticalScrollLines()68 scrollLines = 3; in verticalScrollLines()69 return scrollLines; in verticalScrollLines()
433 unsigned long scrollLines = defaultScrollLinesPerWheelDelta; in mouseWheelEvent() local434 SystemParametersInfo(SPI_GETWHEELSCROLLLINES, 0, &scrollLines, 0); in mouseWheelEvent()435 if (scrollLines == WHEEL_PAGESCROLL) in mouseWheelEvent()438 scrollDelta *= static_cast<float>(scrollLines) * scrollbarPixelsPerLine; in mouseWheelEvent()