I’m working on a touch screen app where gui space is very tight. I’d like to rotate a QLabel a bit so that it’s either vertical, or offset at a diagonal a bit. Any suggestions? I couldn’t find anything relevant on the QLabel interface.
Thanks so much!
QLabeldoes not do this. But you can easily create your own widget containing a bit of text:Another option is to draw a
QGraphicsView, you then have the liberty to map real widgets (i.e. aQLabel) through any coordinate transformation.