QDateTimeEdit: rollback from 59 to 00 or vice-versa in hours/minute/second

StackOverflow https://stackoverflow.com/questions/14212762

  •  14-01-2022
  •  | 
  •  

Pergunta

How can I rollback hour/min/sec from 59 to 00 or vice versa. Actually QDateTimeEdit doesn't allow it by default and it get stuck after reaching maximum value of 59 if tried pressing up arrow, and same for minimum value 00.

Foi útil?

Solução

You must know that QDateTimeEdit is inherit QAbstractSpinBox, and QAbstractSpinBox has wrapping mechanism, using it you can make your spins circular. So, all what you must do is

setWrapping(true)

in your case, it must be something like this: ui->dateTimeEdit->setWrapping(true);

If wrapping is true stepping up from maximum() value will take you to the minimum() value and vica versa. Wrapping only make sense if you have minimum() and maximum() values set.

See official documentation here .

Good luck!

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top