]> Creatis software - creaImageIO.git/blobdiff - src2/creaImageIOTreeView.h
Added validation function (visible in ok button being enabled or not)
[creaImageIO.git] / src2 / creaImageIOTreeView.h
index fe29f3bddab5635487bcef758a1943289e0c81ab..de4f7f23bd621f474f30e9a97a71a793cf399204 100644 (file)
@@ -10,6 +10,7 @@ namespace creaImageIO
   /**
    * \ingroup View
    */
+       
   //=====================================================================
   
   //=====================================================================
@@ -40,17 +41,37 @@ namespace creaImageIO
     ///Returns the selected data as a vector of vtkImageData (4D)
          virtual void GetSelectedImages(std::vector<vtkImageData*>& s, int dim)
          { GimmickError("INTERNAL ERROR : TreeView::GetSelectedImages not overloaded");}
+
+         ///Sets the maximum dimension allowed for selections
+         void SetMaxDimension(int maxdim){ mSelectionMaxDimension=maxdim; }
+         ///Sets the minimum dimension allowed for selections
+         void SetMinDimension(int mindim){ mSelectionMinDimension=mindim; }
+         ///Sets the output dimension desired for selections
+         void SetOutputDimension(int outdim){ mOutputDimension=outdim; }
     
     protected:
       TreeHandler* GetTreeHandler() { return mTreeHandler; }
+         ///Gets the maximum dimension allowed for selections
+         int GetMaxDimension(){ return mSelectionMaxDimension; }
+         ///Gets the minimum dimension allowed for selections
+         int GetMinDimension(){ return mSelectionMinDimension; }
+         ///Gets the output dimension desired for selections
+         int GetOutputDimension(){ return mOutputDimension; }
 
     private:
       /// The TreeHandler with which it corresponds
       TreeHandler* mTreeHandler;
+         //The selection's maximum dimension
+         int mSelectionMaxDimension;
+         //The selection's minimum dimension
+         int mSelectionMinDimension;
+         //The user desired output dimension
+         int mOutputDimension;
     };
     // EO class TreeView
     //=====================================================================
   
+  
 } // EO namespace creaImageIO
 
 // EOF