是否有任何方法可以检测QDial
(包装属性设置为true(是顺时针旋转还是逆时针旋转?
让0是包裹的QDial
的最小值,100是最大值。如果两个连续值变化之间的差值是正的,那么你有逆时针旋转,如果不是,你有顺时针旋转(你必须将其调整到你的实际值(
您应该将QDial
划分为子类,并使用sliderMoved
信号:
当sliderDown为true并且滑块移动时,会发出此信号。这种情况通常发生在用户拖动滑块时。价值是新的滑块位置。
即使在跟踪关闭时也会发出此信号
将此信号连接到一个插槽,该插槽可计算旋转是顺时针还是逆时针
connect(this, SIGNAL(sliderMoved(int)), this, SLOT(calculateRotationDirection(int)));
void calculateRotationDirection(int v)
{
int difference = previousValue - v;
// make sure we have not reached the start...
if (v == 0)
{
if (previousValue == 100)
direction = DIRECTION_CLOCKWISE;
else
direction = DIRECTION_ANTICLOCKWISE;
}
else if (v == 100)
{
if (previousValue == 0)
direction = DIRECTION_ANTICLOCKWISE;
else
direction = DIRECTION_CLOCKWISE;
}
else
{
if (difference > 0)
direction = DIRECTION_ANTICLOCKWISE; // a simple enum
else if (difference < 0)
direction = DIRECTION_CLOCKWISE;
}
previousValue = v; // store the previous value
}
现在您可以添加一个函数来返回子类的direction
属性。