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
397 B
15 lines
397 B
4 years ago
|
#ifndef USTRACKBALL_H
|
||
|
#define USTRACKBALL_H
|
||
|
|
||
|
#include "AutoProperty.h"
|
||
|
|
||
|
#define US_TRACKBALL(NAME, \
|
||
|
TITLE, \
|
||
|
ENABLE, \
|
||
|
ACTIVE) \
|
||
|
US_PROPERTY_VIEW_ONLY(QString, NAME ## Title, TITLE) \
|
||
|
US_PROPERTY_VIEW_ONLY(bool, NAME ## Enable, ENABLE) \
|
||
|
US_PROPERTY_VIEW_ONLY(bool, NAME ## Active, ACTIVE)
|
||
|
|
||
|
#endif //USTRACKBALL_H
|