/haiku/src/tests/servers/app/scrollbar/ |
H A D | main.cpp | 40 float smallStep, bigStep; in UpdateScrollbar() local 41 scrollBar->GetSteps(&smallStep, &bigStep); in UpdateScrollbar() 43 smallStep, bigStep, scrollBar->Proportion()); in UpdateScrollbar() 48 scrollBar->GetSteps(&smallStep, &bigStep); in UpdateScrollbar() 51 smallStep, bigStep, scrollBar->Proportion(), in UpdateScrollbar()
|
/haiku/src/apps/deskbar/ |
H A D | InlineScrollView.cpp | 152 float smallStep; in MouseDown() local 154 parent->GetSteps(&smallStep, &largeStep); in MouseDown() 163 parent->ScrollBy(-smallStep); in MouseDown() 218 float smallStep; in MouseDown() local 220 grandparent->GetSteps(&smallStep, &largeStep); in MouseDown() 229 grandparent->ScrollBy(smallStep); in MouseDown() 281 float smallStep; in MouseDown() local 283 parent->GetSteps(&smallStep, &largeStep); in MouseDown() 292 parent->ScrollBy(-smallStep); in MouseDown() 346 float smallStep; in MouseDown() local [all …]
|
H A D | ExpandoMenuBar.cpp | 179 float smallStep; in MessageReceived() local 180 scrollView->GetSteps(&smallStep, &largeStep); in MessageReceived() 186 deltaY *= smallStep; in MessageReceived()
|
/haiku/src/tests/kits/interface/pictureprint/ |
H A D | Preview.cpp | 173 float bigStep, smallStep; in FixScrollbars() local 189 smallStep = bigStep / 10.; in FixScrollbars() 190 scroll->SetSteps (smallStep, bigStep); in FixScrollbars() 196 smallStep = bigStep / 10.; in FixScrollbars() 197 scroll->SetSteps (smallStep, bigStep); in FixScrollbars()
|
/haiku/src/servers/package/ |
H A D | ResultWindow.cpp | 74 float smallStep = ceilf(fontHeight.ascent + fontHeight.descent); in ResultWindow() local 75 viewPort->ScrollBar(B_VERTICAL)->SetSteps(smallStep, smallStep); in ResultWindow()
|
H A D | ProblemWindow.cpp | 104 float smallStep = ceilf(fontHeight.ascent + fontHeight.descent); in ProblemWindow() local 105 viewPort->ScrollBar(B_VERTICAL)->SetSteps(smallStep, smallStep); in ProblemWindow()
|
/haiku/src/kits/interface/ |
H A D | ViewPort.cpp | 198 float smallStep; in _UpdateScrollBar() local 199 scrollBar->GetSteps(&smallStep, NULL); in _UpdateScrollBar() 200 scrollBar->SetSteps(smallStep, viewPortSize); in _UpdateScrollBar()
|
H A D | MenuWindow.cpp | 445 float smallStep; in _Scroll() local 446 GetSteps(&smallStep, NULL); in _Scroll() 447 _ScrollBy(smallStep * delta); in _Scroll()
|
H A D | ScrollBar.cpp | 867 BScrollBar::SetSteps(float smallStep, float largeStep) in SetSteps() argument 876 smallStep = roundf(smallStep); in SetSteps() 878 if (fSmallStep == smallStep && fLargeStep == largeStep) in SetSteps() 882 smallStep, largeStep); in SetSteps() 884 fSmallStep = smallStep; in SetSteps() 900 BScrollBar::GetSteps(float* smallStep, float* largeStep) const in GetSteps() argument 902 if (smallStep != NULL) in GetSteps() 903 *smallStep = fSmallStep; in GetSteps()
|
H A D | ColumnListView.cpp | 1820 float smallStep, largeStep; in KeyDown() local 1821 fHorizontalScrollBar->GetSteps(&smallStep, &largeStep); in KeyDown() 1826 newVal -= smallStep; in KeyDown() 1828 newVal += smallStep; in KeyDown() 1882 float smallStep, largeStep; in KeyDown() local 1883 fVerticalScrollBar->GetSteps(&smallStep, &largeStep); in KeyDown()
|
H A D | Menu.cpp | 489 float smallStep; in MessageReceived() local 490 window->GetSteps(&smallStep, &largeStep); in MessageReceived() 496 deltaY *= smallStep; in MessageReceived()
|
H A D | View.cpp | 6612 float smallStep; in ScrollWithMouseWheelDelta() local 6614 scrollBar->GetSteps(&smallStep, &largeStep); in ScrollWithMouseWheelDelta() 6621 delta *= smallStep * 3; in ScrollWithMouseWheelDelta()
|
/haiku/headers/os/interface/ |
H A D | ScrollBar.h | 59 void SetSteps(float smallStep, float largeStep);
|
/haiku/src/libs/print/libprint/ |
H A D | Preview.cpp | 517 float smallStep = bigStep / 10.; in FixScrollbars() local 518 scroll->SetSteps(smallStep, bigStep); in FixScrollbars() 524 smallStep = bigStep / 10.; in FixScrollbars() 525 scroll->SetSteps(smallStep, bigStep); in FixScrollbars()
|
/haiku/docs/user/interface/ |
H A D | ScrollBar.dox | 249 \fn void BScrollBar::SetSteps(float smallStep, float largeStep) 260 \param smallStep The value to move the scroll bar under normal conditions. 270 \fn void BScrollBar::GetSteps(float* smallStep, float* largeStep) const 274 \remark Either \a smallStep or \a largeStep may be set to \c NULL if you 277 \param smallStep A pointer to a float to be filled out with the small step
|