LCDGFX LCD display driver
1.1.5
This library is developed to control SSD1306/SSD1325/SSD1327/SSD1331/SSD1351/IL9163/PCD8554 RGB i2c/spi LED displays
|
#include <object.h>
Public Member Functions | |
NanoObject< T > * | getNext (NanoObject< T > *prev=nullptr) |
NanoObject< T > * | getPrev (NanoObject< T > *curr=nullptr) |
void | update () override |
void | refresh () override |
void | draw () override |
bool | has (NanoObject< T > &object) |
void | add (NanoObject< T > &object) |
void | insert (NanoObject< T > &object) |
void | remove (NanoObject< T > &object) |
![]() | |
NanoObject (const NanoPoint &pos) | |
NanoObject (const NanoPoint &pos, const NanoPoint &size) | |
lcdint_t | width () const |
lcdint_t | height () const |
void | moveTo (const NanoPoint &p) |
void | moveBy (const NanoPoint &p) |
void | resize (const NanoPoint &size) |
void | setSize (const NanoPoint &size) |
void | setPos (const NanoPoint &p) |
const NanoPoint | bottom () const |
const NanoPoint | top () const |
const NanoPoint | left () const |
const NanoPoint | right () const |
const NanoPoint | center () const |
lcdint_t | x () const |
lcdint_t | y () const |
const NanoPoint & | getPosition () const |
const NanoRect & | getRect () const |
![]() | |
void | focus () |
void | defocus () |
bool | isFocused () |
bool | hasTiler () |
T & | getTiler () |
Additional Inherited Members | |
![]() | |
void | setTiler (T *tiler) |
![]() | |
NanoRect | m_rect |
![]() | |
T * | m_tiler = nullptr |
Active tiler, assigned to the NanoEngineObject. | |
NanoEngineObject< T > * | m_next = nullptr |
Next NanoEngineObject in the list. | |
Template class for NanoEngine objects lists
|
inline |
Adds new NanoObject to the end of the list and marks it for refresh.
object | object to add. |
|
inlineoverridevirtual |
Draw all objects from the list in the buffer.
Reimplemented from NanoObject< T >.
|
inline |
|
inline |
|
inline |
Returns true if NanoObjectList contains specified object.
object | object to search for. |
|
inline |
Adds new NanoObject to the beginning of the list and marks it for refresh.
object | object to insert. |
|
inlineoverridevirtual |
Refreshes all objects in the list.
Reimplemented from NanoObject< T >.
|
inline |
Removes NanoObject from the list and marks occupied area for refresh.
object | object to remove. |
|
inlineoverridevirtual |
Updates all objects in the list.
Reimplemented from NanoObject< T >.