You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
499 B
16 lines
499 B
4 years ago
|
#ifndef USSWITCHBUTTON_H
|
||
|
#define USSWITCHBUTTON_H
|
||
|
|
||
|
#include "AutoProperty.h"
|
||
|
|
||
|
#define US_SWITCH_BUTTON(NAME, TITLE, IMAGE, ENABLE, VISIBLE, DEFAULT_VALUE) \
|
||
|
US_SIMPLE_BUTTON(NAME, TITLE, IMAGE, ENABLE, VISIBLE) \
|
||
|
US_PROPERTY(bool, NAME, DEFAULT_VALUE) \
|
||
|
|
||
|
#define US_SWITCH_BUTTON_CUSTOM_SETTER(NAME, TITLE, IMAGE, ENABLE, VISIBLE, DEFAULT_VALUE) \
|
||
|
US_SIMPLE_BUTTON(NAME, TITLE, IMAGE, ENABLE, VISIBLE) \
|
||
|
US_PROPERTY_CUSTOM_SETTER(bool, NAME, DEFAULT_VALUE) \
|
||
|
|
||
|
|
||
|
#endif //USSWITCHBUTTON_H
|