1#ifndef DSGC_SCROLLBAR_H
2#define DSGC_SCROLLBAR_H
7 class Scrollbar :
public Component {
9 unsigned int knobAccessibleLength;
10 unsigned int knobLength;
11 float knobRelativePosition;
13 Scrollbar(
Adafruit_GFX &graphics,
unsigned int x,
unsigned int y,
unsigned int width,
unsigned int height,
unsigned int trackLength,
double knobRelativeSize);
14 unsigned int getKnobLength();
15 unsigned int getKnobPositionOffset();
44 static const unsigned int KNOB_RADIUS;
45 static const unsigned int KNOB_WIDTH;
46 static const unsigned int BORDER_RADIUS;
47 static const unsigned int BORDER_WIDTH;
49 virtual void paint()
override;
Definition Adafruit_GFX.h:18