template<typename DisplayDriver>
class daisy::OledColorDisplay< DisplayDriver >
This class is for drawing to a monochrome OLED display.
|
| OledColorDisplay () |
|
virtual | ~OledColorDisplay () |
|
void | Init (Config config) |
|
uint16_t | Height () const override |
|
uint16_t | Width () const override |
|
void | Fill (bool on) override |
|
void | DrawPixel (uint_fast8_t x, uint_fast8_t y, bool on) override |
|
void | SetColorFG (uint8_t red, uint8_t green, uint8_t blue) |
|
void | SetColorBG (uint8_t red, uint8_t green, uint8_t blue) |
|
void | Update () override |
|
| ColorGraphicsDisplayImpl () |
|
virtual | ~ColorGraphicsDisplayImpl () |
|
void | DrawLine (uint_fast8_t x1, uint_fast8_t y1, uint_fast8_t x2, uint_fast8_t y2, bool on) override |
|
void | DrawRect (uint_fast8_t x1, uint_fast8_t y1, uint_fast8_t x2, uint_fast8_t y2, bool on, bool fill=false) override |
|
void | DrawArc (uint_fast8_t x, uint_fast8_t y, uint_fast8_t radius, int_fast16_t start_angle, int_fast16_t sweep, bool on) override |
|
char | WriteChar (char ch, FontDef font, bool on) override |
|
char | WriteString (const char *str, FontDef font, bool on) override |
|
Rectangle | WriteStringAligned (const char *str, const FontDef &font, Rectangle boundingBox, Alignment alignment, bool on) override |
|
| ColorGraphicsDisplay () |
|
virtual | ~ColorGraphicsDisplay () |
|
Rectangle | GetBounds () const |
|
size_t | CurrentX () |
|
size_t | CurrentY () |
|
void | DrawRect (const Rectangle &rect, bool on, bool fill=false) |
|
void | DrawCircle (uint_fast8_t x, uint_fast8_t y, uint_fast8_t radius, bool on) |
|
void | SetCursor (uint16_t x, uint16_t y) |
|