Sming Framework API
Sming - Open Source framework for high efficiency WiFi SoC ESP8266 native development with C++ language.
|
#include <NexSlider.h>
Public Member Functions | |
NexSlider (uint8_t pid, uint8_t cid, const char *name) | |
bool | getValue (uint32_t *number) |
bool | setValue (uint32_t number) |
uint32_t | Get_background_color_bco (uint32_t *number) |
bool | Set_background_color_bco (uint32_t number) |
uint32_t | Get_font_color_pco (uint32_t *number) |
bool | Set_font_color_pco (uint32_t number) |
uint32_t | Get_pointer_thickness_wid (uint32_t *number) |
bool | Set_pointer_thickness_wid (uint32_t number) |
uint32_t | Get_cursor_height_hig (uint32_t *number) |
bool | Set_cursor_height_hig (uint32_t number) |
uint32_t | getMaxval (uint32_t *number) |
bool | setMaxval (uint32_t number) |
uint32_t | getMinval (uint32_t *number) |
bool | setMinval (uint32_t number) |
void | attachPush (NexTouchEventCb push, void *ptr=NULL) |
void | detachPush (void) |
void | attachPop (NexTouchEventCb pop, void *ptr=NULL) |
void | detachPop (void) |
void | printObjInfo (void) |
Static Public Member Functions | |
static void | iterate (NexTouch **list, uint8_t pid, uint8_t cid, int32_t event) |
Protected Member Functions | |
uint8_t | getObjPid (void) |
uint8_t | getObjCid (void) |
const char * | getObjName (void) |
NexSlider component.
NexSlider::NexSlider | ( | uint8_t | pid, |
uint8_t | cid, | ||
const char * | name | ||
) |
Constructor.
pid | - page id. |
cid | - component id. |
name | - pointer to an unique name in range of all components. |
|
inherited |
Attach an callback function of pop touch event.
pop | - callback called with ptr when a pop touch event occurs. |
ptr | - parameter passed into pop[default:NULL]. |
|
inherited |
Attach an callback function of push touch event.
push | - callback called with ptr when a push touch event occurs. |
ptr | - parameter passed into push[default:NULL]. |
|
inherited |
Detach an callback function.
|
inherited |
Detach an callback function.
uint32_t NexSlider::Get_background_color_bco | ( | uint32_t * | number | ) |
Get bco attribute of component
number | - buffer storing data retur |
uint32_t NexSlider::Get_cursor_height_hig | ( | uint32_t * | number | ) |
Get hig attribute of component
number | - buffer storing data retur |
uint32_t NexSlider::Get_font_color_pco | ( | uint32_t * | number | ) |
Get pco attribute of component
number | - buffer storing data retur |
uint32_t NexSlider::Get_pointer_thickness_wid | ( | uint32_t * | number | ) |
Get wid attribute of component
number | - buffer storing data retur |
uint32_t NexSlider::getMaxval | ( | uint32_t * | number | ) |
Get maxval attribute of component
number | - buffer storing data retur |
uint32_t NexSlider::getMinval | ( | uint32_t * | number | ) |
Get minval attribute of component
number | - buffer storing data retur |
bool NexSlider::getValue | ( | uint32_t * | number | ) |
Get the value of slider.
number | - an output parameter to save the value of slider. |
true | - success. |
false | - failed. |
|
inherited |
Print current object'address, page id, component id and name.
bool NexSlider::Set_background_color_bco | ( | uint32_t | number | ) |
Set bco attribute of component
number | - To set up the data |
bool NexSlider::Set_cursor_height_hig | ( | uint32_t | number | ) |
Set hig attribute of component
number | - To set up the data |
bool NexSlider::Set_font_color_pco | ( | uint32_t | number | ) |
Set pco attribute of component
number | - To set up the data |
bool NexSlider::Set_pointer_thickness_wid | ( | uint32_t | number | ) |
Set wid attribute of component
number | - To set up the data |
bool NexSlider::setMaxval | ( | uint32_t | number | ) |
Set maxval attribute of component
number | - To set up the data |
bool NexSlider::setMinval | ( | uint32_t | number | ) |
Set minval attribute of component
number | - To set up the data |
bool NexSlider::setValue | ( | uint32_t | number | ) |
Set the value of slider.
number | - the value of slider. |
true | - success. |
false | - failed. |