Not work

Qt Code:
  1. void ComboBoxDelegate::mousePressEvent(QMouseEvent *e)
  2. {
  3. if (e->button()==Qt::LeftButton) {
  4. qDebug() << "Klik Kiri";
  5. }
  6.  
  7. if (e->button()==Qt::RightButton) {
  8. qDebug() << "Klik Kanan";
  9. }
  10. }
To copy to clipboard, switch view to plain text mode 

Btw, how can I know index of item selected?