(widget, event_string)
| 827 | mouseWheelBackward(iRen,ren) |
| 828 | |
| 829 | def mouseMove(widget, event_string): |
| 830 | global left, middle, right |
| 831 | if left == 1: |
| 832 | mouseLeftMove(iRen,ren) |
| 833 | if middle == 1: |
| 834 | mouseMiddleMove(iRen,ren) |
| 835 | if right == 1: |
| 836 | mouseRightMove(iRen,ren) |
| 837 | if ( (left == 0) and (middle == 0) and (right == 0) ) : |
| 838 | pass |
| 839 | |
| 840 | # This is where the interaction style is defined |
| 841 | style = vtkInteractorStyleUser() |
nothing calls this directly
no test coverage detected