Dear QT users,

I am using QT and VTK. I created a mouse release method to use it inside a 
QVTKWidget :

void MyQVTKWidget::mouseReleaseEvent(QMouseEvent* event)

{

if (pMainWindow)
{

    ((MainWindow *)pMainWindow)->myMouseReleaseEvent(event);
}

    // call the super class to avoid troubles

    QVTKWidget::mouseReleaseEvent(event);

}

Now, I would like to map (x,y) to slice (i,j). Generally, mouse position should 
be mapped into ( i, j) of current slice. It depends on the zoom factor, aspect 
ratio of the slice and the window size.


But, I am wondering about how can I solve this issue.



Thanks in advance!

Best regards,


Abdelkhalek Bakkari
Ph.D candidate in Computer Science
Institute of Applied Computer Science
Lodz University of Technology, Poland


_______________________________________________
Qt-creator mailing list
[email protected]
http://lists.qt-project.org/mailman/listinfo/qt-creator

Reply via email to