Dear Friends
I am trying to trap the rightMousemove event()

void GraphicsViewMesh::mouseMoveEvent(QMouseEvent *me)
{

if(me->button() & Qt::RightButton)
{
zoomIn();
}

}

//can anyone tell me whats wrong in this my zoomIn() function is not working !