-41.635588:20.595310:-900.000000
-19.965588:18.095310:-900.000000
PORT
-In:"-Zoom&&2P&& Drag ctrl-right click mouse"
+In:"-Zoom&&2P&& Drag ctrl + right click mouse"
FIN_BOX
BOX
wx:OutputText:Box05
-2.908660:11.662815:-900.000000
18.761340:9.162815:-900.000000
PORT
-In:"-Move image&&2P&& Drag shift-left click mouse"
+In:"-Move image&&2P&& Drag shift + left click mouse"
FIN_BOX
BOX
wx:OutputText:Box07
10.740541:5.951831:-900.000000
32.410541:3.451831:-900.000000
PORT
-In:"-Rotate image&&2P&& Drag ctrl-middle click mouse"
+In:"-Rotate image&&2P&& Drag ctrl + middle click mouse"
FIN_BOX
BOX
wx:OutputText:Box08
-72.242839:29.539474:-900.000000
-50.572839:27.039474:-900.000000
PORT
-In:"-Brightness / Contrast&&2P&& Drag middle click mouse (ctrl reset)"
+In:"-Brightness&&2P&& Drag middle click mouse ( +ctrl reset values)"
FIN_BOX
BOX
wx:StaticBox:Box12
set Box03.In "-Change Z: Drag right click mouse"
new wx:OutputText Box04
- set Box04.In "-Zoom: Drag ctrl-right click mouse"
+ set Box04.In "-Zoom: Drag ctrl + right click mouse"
new wx:OutputText Box05
set Box05.In "-Zoom: Wheel mouse"
new wx:OutputText Box06
- set Box06.In "-Move image: Drag shift-left click mouse"
+ set Box06.In "-Move image: Drag shift + left click mouse"
new wx:OutputText Box07
- set Box07.In "-Rotate image: Drag ctrl-middle click mouse"
+ set Box07.In "-Rotate image: Drag ctrl + middle click mouse"
new wx:OutputText Box08
set Box08.In "-Picker (position, gray level): Mouse move"
set Box10.In "-Choose a point: Double click "
new wx:OutputText Box11
- set Box11.In "-Brightness / Contrast: Drag middle click mouse (ctrl reset)"
+ set Box11.In "-Brightness: Drag middle click mouse ( +ctrl reset values)"
new wx:StaticBox Box12
set Box12.BoxTitle "Viewer"
// int keyCode = (int)(wxVTKiren->GetKeyCode());
int ctrlkey = wxVTKiren->GetControlKey();
-// printf("EED manualInteractorWindowLevel::OnMouseMove keyCode=%d ctrlkey=%d\n", keyCode,ctrlkey);
+// int altkey = wxVTKiren->GetAltKey();
+ int shiftkey = wxVTKiren->GetShiftKey();
+// printf("EED manualInteractorWindowLevel::OnMouseMove keyCode=%d ctrlkey=%d alt=%d shift=%d \n", keyCode,ctrlkey, altkey, shiftkey);
double colorWin;
double colorLev;
if(imgrange != NULL)
{
double* scalarrange = imgrange->GetScalarRange();
- if (ctrlkey==0) {
+ if ( (ctrlkey==1) || (shiftkey==1) )
+ {
+ colorWin = scalarrange[1] - scalarrange[0];
+ colorLev = (scalarrange[1] + scalarrange[0])/2;
+ _backWindow = colorWin;
+ _backLevel = colorLev;
+ } else {
double scalarr;
if (scalarrange[1] == scalarrange[0])
{
//colorWin=_backWindow - (scalarr)*( _backPx - tmpPx );
colorWin=_backWindow - dx;
colorLev=_backLevel + dy;
- } else { // ctrlkey == 1
- colorWin = scalarrange[1] - scalarrange[0];
- colorLev = (scalarrange[1] + scalarrange[0])/2;
- _backWindow = colorWin;
- _backLevel = colorLev;
- }
+ } // if ctrlkey || altkey
+// if (ctrlkey==0) {
+// } else { // ctrlkey == 1
+// }
} else {
colorWin=_backWindow - 2*( _backPx - tmpPx );
colorLev=_backLevel + 2*( _backPy - tmpPy );
if ((GetInteractor()->GetControlKey()==1) || (GetInteractor()->GetShiftKey()==1) )
{
- this->vtkInteractorStyleImage::OnLeftButtonDown();
+//EED 2024-11-6 Avoid conflitct between:
+// - (creaMaracasVisu) Reset ColorWindowLevel
+// - (VTK) Rotate/Move image
+// this->vtkInteractorStyleImage::OnLeftButtonDown();
}
}