Searched refs:scrollChars (Results 1 – 3 of 3) sorted by relevance
54 static ULONG scrollChars; in horizontalScrollChars() local55 if (!scrollChars && !SystemParametersInfo(SPI_GETWHEELSCROLLCHARS, 0, &scrollChars, 0)) in horizontalScrollChars()56 scrollChars = 1; in horizontalScrollChars()57 return scrollChars; in horizontalScrollChars()
58 static ULONG scrollChars; in horizontalScrollChars() local59 if (!scrollChars && !::SystemParametersInfo(SPI_GETWHEELSCROLLCHARS, 0, &scrollChars, 0)) in horizontalScrollChars()60 scrollChars = 1; in horizontalScrollChars()61 return scrollChars; in horizontalScrollChars()
427 unsigned long scrollChars = defaultScrollCharsPerWheelDelta; in mouseWheelEvent() local428 SystemParametersInfo(SPI_GETWHEELSCROLLCHARS, 0, &scrollChars, 0); in mouseWheelEvent()431 scrollDelta *= static_cast<float>(scrollChars) * scrollbarPixelsPerLine; in mouseWheelEvent()