Default scroll bar GUI element. More...
#include <IGUIScrollBar.h>
Default scroll bar GUI element.
Definition at line 19 of file IGUIScrollBar.h.
irr::gui::IGUIScrollBar::IGUIScrollBar | ( | IGUIEnvironment * | environment, |
IGUIElement * | parent, | ||
s32 | id, | ||
core::rect< s32 > | rectangle | ||
) | [inline] |
constructor
Definition at line 24 of file IGUIScrollBar.h.
virtual s32 irr::gui::IGUIScrollBar::getLargeStep | ( | ) | const [pure virtual] |
gets the large step value
virtual s32 irr::gui::IGUIScrollBar::getMax | ( | ) | const [pure virtual] |
gets the maximum value of the scrollbar.
virtual s32 irr::gui::IGUIScrollBar::getMin | ( | ) | const [pure virtual] |
gets the minimum value of the scrollbar.
virtual s32 irr::gui::IGUIScrollBar::getPos | ( | ) | const [pure virtual] |
gets the current position of the scrollbar
virtual s32 irr::gui::IGUIScrollBar::getSmallStep | ( | ) | const [pure virtual] |
gets the small step value
virtual void irr::gui::IGUIScrollBar::setLargeStep | ( | s32 | step | ) | [pure virtual] |
Sets the large step.
That is the amount that the value changes by when clicking in the tray, or using the page up and page down keys.
virtual void irr::gui::IGUIScrollBar::setMax | ( | s32 | max | ) | [pure virtual] |
sets the maximum value of the scrollbar.
virtual void irr::gui::IGUIScrollBar::setMin | ( | s32 | min | ) | [pure virtual] |
sets the minimum value of the scrollbar.
virtual void irr::gui::IGUIScrollBar::setPos | ( | s32 | pos | ) | [pure virtual] |
sets the current position of the scrollbar
virtual void irr::gui::IGUIScrollBar::setSmallStep | ( | s32 | step | ) | [pure virtual] |
Sets the small step.
That is the amount that the value changes by when clicking on the buttons or using the cursor keys.