I have problems using a QDial with a very big range. Using QDials with not too big ranges there is no problem, but using it with big ranges yes, for example:
QDial *dial;
dial->setRange(-50, 50) //goes well
dial->setRange(-107000000, 107000000) // goes well
dial->setRange(INT_MIN, INT_MAX) // goes wrong, the QDial gets blocked
I need to use a QDial because inherits from QAbstractSlider as QSlider, and i need the same traetment for both of them, QDial and QSlider.
Any suggestion or solution for using the QDial with a range as big as [INT_MIN = -2147483647 -1, INT_MAX = +2147483647] without getting blocked?