Searched refs:smallStep (Results 1 - 14 of 14) sorted by relevance

/haiku/src/tests/servers/app/scrollbar/
H A Dmain.cpp40 float smallStep, bigStep; local
41 scrollBar->GetSteps(&smallStep, &bigStep);
43 smallStep, bigStep, scrollBar->Proportion());
48 scrollBar->GetSteps(&smallStep, &bigStep);
51 smallStep, bigStep, scrollBar->Proportion(),
/haiku/src/apps/deskbar/
H A DInlineScrollView.cpp152 float smallStep; local
154 parent->GetSteps(&smallStep, &largeStep);
163 parent->ScrollBy(-smallStep);
218 float smallStep; local
220 grandparent->GetSteps(&smallStep, &largeStep);
229 grandparent->ScrollBy(smallStep);
281 float smallStep; local
283 parent->GetSteps(&smallStep, &largeStep);
292 parent->ScrollBy(-smallStep);
346 float smallStep; local
[all...]
H A DExpandoMenuBar.cpp179 float smallStep; local
180 scrollView->GetSteps(&smallStep, &largeStep);
186 deltaY *= smallStep;
/haiku/src/tests/kits/interface/pictureprint/
H A DPreview.cpp173 float bigStep, smallStep; local
189 smallStep = bigStep / 10.;
190 scroll->SetSteps (smallStep, bigStep);
196 smallStep = bigStep / 10.;
197 scroll->SetSteps (smallStep, bigStep);
/haiku/src/kits/interface/
H A DViewPort.cpp198 float smallStep; local
199 scrollBar->GetSteps(&smallStep, NULL);
200 scrollBar->SetSteps(smallStep, viewPortSize);
H A DMenuWindow.cpp445 float smallStep; local
446 GetSteps(&smallStep, NULL);
447 _ScrollBy(smallStep * delta);
H A DScrollBar.cpp867 BScrollBar::SetSteps(float smallStep, float largeStep) argument
876 smallStep = roundf(smallStep);
878 if (fSmallStep == smallStep && fLargeStep == largeStep)
882 smallStep, largeStep);
884 fSmallStep = smallStep;
900 BScrollBar::GetSteps(float* smallStep, float* largeStep) const argument
902 if (smallStep != NULL)
903 *smallStep = fSmallStep;
H A DColumnListView.cpp1815 float smallStep, largeStep; local
1816 fHorizontalScrollBar->GetSteps(&smallStep, &largeStep);
1821 newVal -= smallStep;
1823 newVal += smallStep;
1877 float smallStep, largeStep; local
1878 fVerticalScrollBar->GetSteps(&smallStep, &largeStep);
H A DMenu.cpp489 float smallStep; local
490 window->GetSteps(&smallStep, &largeStep);
496 deltaY *= smallStep;
H A DView.cpp6624 float smallStep; local
6626 scrollBar->GetSteps(&smallStep, &largeStep);
6633 delta *= smallStep * 3;
/haiku/src/servers/package/
H A DResultWindow.cpp74 float smallStep = ceilf(fontHeight.ascent + fontHeight.descent); local
75 viewPort->ScrollBar(B_VERTICAL)->SetSteps(smallStep, smallStep);
H A DProblemWindow.cpp104 float smallStep = ceilf(fontHeight.ascent + fontHeight.descent); local
105 viewPort->ScrollBar(B_VERTICAL)->SetSteps(smallStep, smallStep);
/haiku/headers/os/interface/
H A DScrollBar.h59 void SetSteps(float smallStep, float largeStep);
/haiku/src/libs/print/libprint/
H A DPreview.cpp517 float smallStep = bigStep / 10.; local
518 scroll->SetSteps(smallStep, bigStep);
524 smallStep = bigStep / 10.;
525 scroll->SetSteps(smallStep, bigStep);

Completed in 134 milliseconds