Hi..
I Have a trouble to choose the right values for the QGraphicsView::translte method..
My graphicsView contains a map ..and I disabled the scrollBar which is generated automaticly by the class..inseatd I wanna use some Actions To allow a translate right,left,up and down..

connect(actionPan_right,SIGNAL(triggered()),this,S LOT(Right()));
connect(actionPan_left,SIGNAL(triggered()),this,SL OT(Left()));
connect(actionPan_up,SIGNAL(triggered()),this,SLOT (Up()));
connect(actionPan_down,SIGNAL(triggered()),this,SL OT(down()));

....


void gpsinterface::Right(){
graphicsView->translate(1.5,0);
}
void gpsinterface::Left(){
graphicsView->translate(-1.5,0);
}
void gpsinterface::Up(){
graphicsView->translate(0,1.5);
}
void gpsinterface::down(){
graphicsView->translate(0,-1.5);
}


..sometime it works with the pan right but the othrs are still inactive?!!

Plz if someOne had used that method befor could help !!
thanks