]> Creatis software - creaMaracasVisu.git/blobdiff - lib/maracasVisuLib/src/interface/wxWindows/widgets/vtkInfoTextImage.cxx
creaButtonContainer & creaPanelButtonContainer: Deep errors have been solved!! ready...
[creaMaracasVisu.git] / lib / maracasVisuLib / src / interface / wxWindows / widgets / vtkInfoTextImage.cxx
index e3a39578caffa39b8375f2ce39c39e0231da9a9c..8f70abce157cc31cce2dffdf6cfc062f1534ab0a 100644 (file)
@@ -25,10 +25,12 @@ vtkInfoTextImage::~vtkInfoTextImage()
 
 void vtkInfoTextImage::Configure()
 {
-       _vtkText_WindowLevel    = Create_Text_Label( 10 , 55 );
-       _vtkText_ColorLevel             = Create_Text_Label( 10 , 40 );
-       _vtkText_position               = Create_Text_Label( 10 , 25 );
-       _vtkText_pixelIntensity = Create_Text_Label( 10 , 10 );
+       if(_vtkText_WindowLevel == NULL){
+               _vtkText_WindowLevel    = Create_Text_Label( 10 , 55 );
+               _vtkText_ColorLevel             = Create_Text_Label( 10 , 40 );
+               _vtkText_position               = Create_Text_Label( 10 , 25 );
+               _vtkText_pixelIntensity = Create_Text_Label( 10 , 10 );
+       }
 }
 
 
@@ -72,7 +74,7 @@ vtkTextActor *vtkInfoTextImage::Create_Text_Label(int px, int py )
 
 void vtkInfoTextImage::PutWindowLevel()
 {
-       int value = (int)( _wxvtk2Dbaseview->_imageViewer2XYZ->GetVtkImageViewer2()->GetWindowLevel()->GetWindow() );
+       double value =  _wxvtk2Dbaseview->_imageViewer2XYZ->GetVtkImageViewer2()->GetWindowLevel()->GetWindow() ;
        char zTzxt[20];
        char resultText[50];
 
@@ -80,7 +82,7 @@ void vtkInfoTextImage::PutWindowLevel()
 
 
        //ltoa ( (long)value , zTzxt , 10 );
-       sprintf(zTzxt,"%d",value);
+       sprintf(zTzxt,"%3.4f",value);
 
        strcat(resultText,zTzxt);
        _vtkText_WindowLevel            -> SetInput(resultText);
@@ -90,14 +92,14 @@ void vtkInfoTextImage::PutWindowLevel()
 
 void vtkInfoTextImage::PutColorLevel()
 {
-       int value = (int)(_wxvtk2Dbaseview->_imageViewer2XYZ->GetVtkImageViewer2()->GetWindowLevel()->GetLevel());
+       double value = _wxvtk2Dbaseview->_imageViewer2XYZ->GetVtkImageViewer2()->GetWindowLevel()->GetLevel();
        char zTzxt[20];
        char resultText[50];
 
        strcpy(resultText,"c:");
 
 //     itoa (value,zTzxt,10);
-       sprintf(zTzxt,"%d",value);
+       sprintf(zTzxt,"%3.2f",value);
 
        strcat(resultText,zTzxt);
        _vtkText_ColorLevel             -> SetInput(resultText);
@@ -210,7 +212,7 @@ void vtkInfoTextImage::PutPixelIntensity(int xx, int yy, int zz)
                        }
                }
        
-               if (imagedata->GetScalarType()==VTK_CHAR)
+               else if (imagedata->GetScalarType()==VTK_CHAR)
                {
                        char *pOrg=(char*)imagedata->GetScalarPointer ((int)xx,(int)yy,(int)zz);
        //              itoa (*pOrg,zTzxt,10);
@@ -218,7 +220,7 @@ void vtkInfoTextImage::PutPixelIntensity(int xx, int yy, int zz)
                        sprintf(zTzxt,"%d",tmp);
                }
 
-               if (imagedata->GetScalarType()==VTK_SIGNED_CHAR)
+               else if (imagedata->GetScalarType()==VTK_SIGNED_CHAR)
                {
                        signed char *pOrg=(signed char*)imagedata->GetScalarPointer ((int)xx,(int)yy,(int)zz);
        //              itoa (*pOrg,zTzxt,10);
@@ -226,7 +228,7 @@ void vtkInfoTextImage::PutPixelIntensity(int xx, int yy, int zz)
                        sprintf(zTzxt,"%d",tmp);
                }
 
-               if (imagedata->GetScalarType()==VTK_UNSIGNED_CHAR)
+               else if (imagedata->GetScalarType()==VTK_UNSIGNED_CHAR)
                {
                        unsigned char *pOrg=(unsigned char*)imagedata->GetScalarPointer ((int)xx,(int)yy,(int)zz);
        //              itoa (*pOrg,zTzxt,10);
@@ -234,7 +236,7 @@ void vtkInfoTextImage::PutPixelIntensity(int xx, int yy, int zz)
                        sprintf(zTzxt,"%d",tmp);
                }
 
-               if (imagedata->GetScalarType()==VTK_SHORT)
+               else if (imagedata->GetScalarType()==VTK_SHORT)
                {
                        short *pOrg=(short*)imagedata->GetScalarPointer ((int)xx,(int)yy,(int)zz);
        //              itoa (*pOrg,zTzxt,10);
@@ -242,7 +244,7 @@ void vtkInfoTextImage::PutPixelIntensity(int xx, int yy, int zz)
                        sprintf(zTzxt,"%d",tmp);
                }
 
-               if (imagedata->GetScalarType()==VTK_UNSIGNED_SHORT)
+               else if (imagedata->GetScalarType()==VTK_UNSIGNED_SHORT)
                {
                        unsigned short *pOrg=(unsigned short*)imagedata->GetScalarPointer ((int)xx,(int)yy,(int)zz);
        //              itoa (*pOrg,zTzxt,10);
@@ -250,14 +252,14 @@ void vtkInfoTextImage::PutPixelIntensity(int xx, int yy, int zz)
                        sprintf(zTzxt,"%d",tmp);
                }
        
-               if (imagedata->GetScalarType()==VTK_INT)
+               else if (imagedata->GetScalarType()==VTK_INT)
                {
                        int *pOrg=(int*)imagedata->GetScalarPointer ((int)xx,(int)yy,(int)zz);
        //              itoa (*pOrg,zTzxt,10);
                        sprintf(zTzxt,"%d",*pOrg);
                }
 
-               if (imagedata->GetScalarType()==VTK_UNSIGNED_INT)
+               else if (imagedata->GetScalarType()==VTK_UNSIGNED_INT)
                {
                        unsigned int *pOrg=(unsigned int*)imagedata->GetScalarPointer ((int)xx,(int)yy,(int)zz);
        //              itoa (*pOrg,zTzxt,10);
@@ -265,36 +267,36 @@ void vtkInfoTextImage::PutPixelIntensity(int xx, int yy, int zz)
                        sprintf(zTzxt,"%d",tmp);
                }
 
-               if (imagedata->GetScalarType()==VTK_LONG)
+               else if (imagedata->GetScalarType()==VTK_LONG)
                {
                        long *pOrg=(long*)imagedata->GetScalarPointer ((int)xx,(int)yy,(int)zz);
        //              itoa (*pOrg,zTzxt,10);
                        double tmp=*pOrg;
-                       sprintf(zTzxt,"%3.2f",tmp);
+                       sprintf(zTzxt,"%3.4f",tmp);
                }
 
-               if (imagedata->GetScalarType()==VTK_UNSIGNED_LONG)
+               else if (imagedata->GetScalarType()==VTK_UNSIGNED_LONG)
                {
                        unsigned long *pOrg=(unsigned long*)imagedata->GetScalarPointer ((int)xx,(int)yy,(int)zz);
        //              itoa (*pOrg,zTzxt,10);
                        double tmp=*pOrg;
-                       sprintf(zTzxt,"%3.2f",tmp);
+                       sprintf(zTzxt,"%3.4f",tmp);
                }
 
-               if (imagedata->GetScalarType()==VTK_FLOAT)
+               else if (imagedata->GetScalarType()==VTK_FLOAT)
                {
-                       long *pOrg=(long*)imagedata->GetScalarPointer ((int)xx,(int)yy,(int)zz);
+                       float *pOrg=(float*)imagedata->GetScalarPointer ((int)xx,(int)yy,(int)zz);
        //              itoa (*pOrg,zTzxt,10);
-                       double tmp=*pOrg;
-                       sprintf(zTzxt,"%3.2f",tmp);
+                       double tmp=(double)*pOrg;
+                       sprintf(zTzxt,"%3.4f",tmp);
                }
 
-               if (imagedata->GetScalarType()==VTK_DOUBLE)
+               else if (imagedata->GetScalarType()==VTK_DOUBLE)
                {
                        double *pOrg=(double*)imagedata->GetScalarPointer ((int)xx,(int)yy,(int)zz);
        //              itoa (*pOrg,zTzxt,10);
                        double tmp=*pOrg;
-                       sprintf(zTzxt,"%3.2f",tmp);
+                       sprintf(zTzxt,"%3.4f",tmp);
                }
        } 
        else