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.
15 lines
499 B
15 lines
499 B
#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
|
|
|