QLCDNumber change display signal
-
THere are some useful signal to use for detect when LCDNumber widget update it's value? somethings like:
connect(ui->LCDmine, SIGNAL(valueChanged()), this, SLOT(changeLogic()));
As Qlabel and so on .... sorry but not find on doc ....
-
@gfxx
No,QLCDNumber
is just an output display/label, not an input. So nothing likevalueChanged
signal, just as, say,QLabel
does not have a signal when you change its text. You say "As Qlabel and so on", butQLabel
does not have any such signal. -
G gfxx has marked this topic as solved on
-
@JonB you are in right .... sorry my error .... so need to reimplemet the widget right?
thanks