By using below code I can get seleted value in Qstring format.
Qt Code:
  1. Widget::Widget(QWidget *parent)
  2. : QWidget(parent)
  3. {
  4. cbox = new QComboBox;
  5. glayout = new QGridLayout(this);
  6. glayout->addWidget(cbox);
  7. for(int i=0;i<31;i++){
  8. list.append(QString::number(i));
  9. }
  10. cbox->addItems(list);
  11. connect(cbox,SIGNAL(currentTextChanged(QString)),this,SLOT(SLTcurrentText(QString)));
  12. }
  13.  
  14. void Widget:: SLTcurrentText(QString str){
  15. qDebug()<<"CurrentText ::"<<str<<endl;
  16. }
To copy to clipboard, switch view to plain text mode 
I should use SIGNAL(currentTextChanged(QString)
tnx..