I wanted to know that how can I read the value which is written in side the QLineEdit.
As in spinBoxwe can read it's value by

int a;
a=spinBox->value();
qDebug("%d",a);

Same way I wanted to know the value in to the comboBox.
Is there any way to read this value???