This abstract base class is implemented by LookAndFeel classes to provide scrollbar-drawing functionality.
|
virtual | ~LookAndFeelMethods ()=default |
virtual bool | areScrollbarButtonsVisible ()=0 |
virtual void | drawScrollbarButton (Graphics &g, ScrollBar &scrollbar, int width, int height, int buttonDirection, bool isScrollbarVertical, bool isMouseOverButton, bool isButtonDown)=0 |
| Draws one of the buttons on a scrollbar.
|
virtual void | drawScrollbar (Graphics &g, ScrollBar &scrollbar, int x, int y, int width, int height, bool isScrollbarVertical, int thumbStartPosition, int thumbSize, bool isMouseOver, bool isMouseDown)=0 |
| Draws the thumb area of a scrollbar.
|
virtual ImageEffectFilter * | getScrollbarEffect ()=0 |
| Returns the component effect to use for a scrollbar.
|
virtual int | getMinimumScrollbarThumbSize (ScrollBar &)=0 |
| Returns the minimum length in pixels to use for a scrollbar thumb.
|
virtual int | getDefaultScrollbarWidth ()=0 |
| Returns the default thickness to use for a scrollbar.
|
virtual int | getScrollbarButtonSize (ScrollBar &)=0 |
| Returns the length in pixels to use for a scrollbar button.
|
virtual void juce::ScrollBar::LookAndFeelMethods::drawScrollbar |
( |
Graphics & | g, |
|
|
ScrollBar & | scrollbar, |
|
|
int | x, |
|
|
int | y, |
|
|
int | width, |
|
|
int | height, |
|
|
bool | isScrollbarVertical, |
|
|
int | thumbStartPosition, |
|
|
int | thumbSize, |
|
|
bool | isMouseOver, |
|
|
bool | isMouseDown ) |
|
pure virtual |
Draws the thumb area of a scrollbar.
- Parameters
-
g | the context to draw into |
scrollbar | the bar itself |
x | the x position of the left edge of the thumb area to draw in |
y | the y position of the top edge of the thumb area to draw in |
width | the width of the thumb area to draw in |
height | the height of the thumb area to draw in |
isScrollbarVertical | true if it's a vertical bar, false if horizontal |
thumbStartPosition | for vertical bars, the y coordinate of the top of the thumb, or its x position for horizontal bars |
thumbSize | for vertical bars, the height of the thumb, or its width for horizontal bars. This may be 0 if the thumb shouldn't be drawn. |
isMouseOver | whether the mouse is over the thumb area, also true if the mouse is currently dragging the thumb |
isMouseDown | whether the mouse is currently dragging the scrollbar |
Implemented in juce::LookAndFeel_V1, juce::LookAndFeel_V2, juce::LookAndFeel_V3, and juce::LookAndFeel_V4.
References juce::Component::isMouseOver(), juce::ScrollBar::ScrollBar(), x, and y.