I want to enter temperature in my dialog in this format 12°15°
For this i took QDoubleSpinBox widget but wasn't able to set its text like above.
I tried following:
degree_sign= u'\N{DEGREE SIGN}'
temperature = QDOubleSpinBox()
temperature.setSuffix(degree_sign)
and got 12.15°
I think valueFromText() and textFromValue() can help but don't know how to use them.
How to set QDoubleSpinBox text(or value) format like 12°15°?
One way is inherit from QDoubleSpinBox and override the respective methods as follows in this pseudo code:
main.cpp
main.pro
Build and Run
Disclaimer: even though it looks like a compiling code, it does not work, but shows the concept.