22 Q_PROPERTY(
bool leftHanded READ leftHanded WRITE setLeftHanded NOTIFY leftHandedChanged)
23 Q_PROPERTY(
ScrollMethod scrollMethod READ scrollMethod WRITE setScrollMethod NOTIFY scrollMethodChanged)
24 Q_PROPERTY(
AccelerationProfile accelerationProfile READ accelerationProfile WRITE setAccelerationProfile NOTIFY
25 accelerationProfileChanged)
26 Q_PROPERTY(
double accelerationSpeed READ accelerationSpeed WRITE setAccelerationSpeed NOTIFY accelerationSpeedChanged)
31 virtual
bool leftHanded() const = 0;
34 virtual
double accelerationSpeed() const = 0;
36 virtual
void setLeftHanded(
bool leftHanded) = 0;
39 virtual
void setAccelerationSpeed(
double accelerationSpeed) = 0;
42 void leftHandedChanged(
bool leftHanded);
45 void accelerationSpeedChanged(
double speed);