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,QLCDNumberis just an output display/label, not an input. So nothing likevalueChangedsignal, just as, say,QLabeldoes not have a signal when you change its text. You say "As Qlabel and so on", butQLabeldoes 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