]> Creatis software - creaMaracasVisu.git/blobdiff - lib/maracasVisuLib/src/interface/wxWindows/widgets/vtkInfoTextImage.cxx
#3323 creaMaracasVisu Feature New Normal - label2 for manal contours
[creaMaracasVisu.git] / lib / maracasVisuLib / src / interface / wxWindows / widgets / vtkInfoTextImage.cxx
index 8f70abce157cc31cce2dffdf6cfc062f1534ab0a..33d6f4c269780f9d8cf7dff67d64dad7b043d9bb 100644 (file)
@@ -1,3 +1,28 @@
+/*# ---------------------------------------------------------------------
+#
+# Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image
+#                        pour la Sant�)
+# Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton
+# Previous Authors : Laurent Guigues, Jean-Pierre Roux
+# CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil
+#
+#  This software is governed by the CeCILL-B license under French law and
+#  abiding by the rules of distribution of free software. You can  use,
+#  modify and/ or redistribute the software under the terms of the CeCILL-B
+#  license as circulated by CEA, CNRS and INRIA at the following URL
+#  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
+#  or in the file LICENSE.txt.
+#
+#  As a counterpart to the access to the source code and  rights to copy,
+#  modify and redistribute granted by the license, users are provided only
+#  with a limited warranty  and the software's author,  the holder of the
+#  economic rights,  and the successive licensors  have only  limited
+#  liability.
+#
+#  The fact that you are presently reading this means that you have had
+#  knowledge of the CeCILL-B license and that you accept its terms.
+# ------------------------------------------------------------------------ */
+
 #include "vtkInfoTextImage.h"
 
 #include "vtkTextProperty.h"
@@ -12,6 +37,7 @@ vtkInfoTextImage::vtkInfoTextImage()
        _vtkText_ColorLevel             = NULL;
        _vtkText_position               = NULL;
        _vtkText_pixelIntensity = NULL;
+       _vtkText_plane                  = NULL;
        _marimagedata                   = NULL;
 }
 
@@ -26,10 +52,11 @@ vtkInfoTextImage::~vtkInfoTextImage()
 void vtkInfoTextImage::Configure()
 {
        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 );
+               _vtkText_WindowLevel    = Create_Text_Label( 10 , 60 );
+               _vtkText_ColorLevel             = Create_Text_Label( 10 , 45 );
+               _vtkText_position               = Create_Text_Label( 10 , 30 );
+               _vtkText_pixelIntensity = Create_Text_Label( 10 , 15 );
+               _vtkText_plane                  = Create_Text_Label( 10 , 0 );
        }
 }
 
@@ -38,14 +65,14 @@ void vtkInfoTextImage::Configure()
 
 void vtkInfoTextImage::SetMarImageData(marImageData *marimagedata)
 {
-       _marimagedata=marimagedata;
+       _marimagedata = marimagedata;
 }
 
 //-------------------------------------------------------------------
 
 void vtkInfoTextImage::SetWxVtk2DBaseView(wxVtk2DBaseView *wxvtk2Dbaseview)
 {
-       _wxvtk2Dbaseview=wxvtk2Dbaseview;
+       _wxvtk2Dbaseview = wxvtk2Dbaseview;
 }
 
 //-------------------------------------------------------------------
@@ -93,6 +120,7 @@ void vtkInfoTextImage::PutWindowLevel()
 void vtkInfoTextImage::PutColorLevel()
 {
        double value = _wxvtk2Dbaseview->_imageViewer2XYZ->GetVtkImageViewer2()->GetWindowLevel()->GetLevel();
+
        char zTzxt[20];
        char resultText[50];
 
@@ -105,6 +133,24 @@ void vtkInfoTextImage::PutColorLevel()
        _vtkText_ColorLevel             -> SetInput(resultText);
 }
 
+//-------------------------------------------------------------------
+void vtkInfoTextImage::PutPlane()
+{
+       int plane = _wxvtk2Dbaseview->GetDirection();
+       char zTzxt[20];
+       char resultText[50];
+
+       if (plane==0) { strcpy(resultText,"plane:YZ"); }
+       if (plane==1) { strcpy(resultText,"plane:XZ"); }
+       if (plane==2) { strcpy(resultText,"plane:XY"); }
+
+//     itoa (value,zTzxt,10);
+//     sprintf(zTzxt,"%d",value);
+
+//     strcat(resultText,zTzxt);
+       _vtkText_plane          -> SetInput(resultText);
+}
+
 //-------------------------------------------------------------------
 
 void vtkInfoTextImage::PutPosition(int xx,int yy, int zz)
@@ -162,9 +208,6 @@ void vtkInfoTextImage::PutPosition(int xx,int yy, int zz)
        strcat(resultText,zTzxt);
        strcat(resultText,")");
 
-
-
-
        _vtkText_position               -> SetInput(resultText);
 }