I need to implement a QSpinBox control which should be able to process int64 values as it's minimum & maximum values. Current implementation only supports int32 values. 
End of the day my QSpinBox should accept any value between 
9223372036854775807 and -9223372036854775808
What do I need to do, if I'm to achieve this by subclassing QAbstractSpinbox ? 
 
    