X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=lib%2FmaracasVisuLib%2Fsrc%2Finterface%2FwxWindows%2Fwidgets%2FwxMaracasIRMViewManager.h;h=b3be47c7724a7f917617aeb84cf692ebb7906d7a;hb=4443a8fe2b4992b6abee8531917fd0803018fc12;hp=b9656d5e26de7e7bb5243c291daf7d57671fd213;hpb=21c2226cf3dcad1daf3fb04818583b559694fa81;p=creaMaracasVisu.git diff --git a/lib/maracasVisuLib/src/interface/wxWindows/widgets/wxMaracasIRMViewManager.h b/lib/maracasVisuLib/src/interface/wxWindows/widgets/wxMaracasIRMViewManager.h index b9656d5..b3be47c 100644 --- a/lib/maracasVisuLib/src/interface/wxWindows/widgets/wxMaracasIRMViewManager.h +++ b/lib/maracasVisuLib/src/interface/wxWindows/widgets/wxMaracasIRMViewManager.h @@ -3,8 +3,8 @@ Program: wxMaracas Module: $RCSfile: wxMaracasIRMViewManager.h,v $ Language: C++ - Date: $Date: 2009/04/09 13:58:38 $ - Version: $Revision: 1.2 $ + Date: $Date: 2009/04/14 12:47:30 $ + Version: $Revision: 1.3 $ Copyright: (c) 2002, 2003 License: @@ -136,7 +136,7 @@ public: /** ** Adds a prop3D to the manager and returns the identifier **/ - int addProp3D(vtkProp3D* prop3D, std::string dataname); + int addProp3D(vtkProp3D* prop3D, std::string dataname) throw (char*); /** ** Adds a prop3D to the manager and returns the identifier **/ @@ -144,12 +144,12 @@ public: /** ** Changes the opacity in a prop3D **/ - void changeOpacity(int propid, int value); + void changeOpacity(int propid, int value)throw(char*); /** ** changes the isovalue in a prop3D **/ - void changeIsoValue(int propid, int value); + void changeIsoValue(int propid, int value)throw(char*); /** ** loads a prop3D from a nSTL file @@ -164,27 +164,27 @@ public: /** ** adds or removes an actor depending of the bool value **/ - void addRemoveActor(int propid, bool addremove); + void addRemoveActor(int propid, bool addremove)throw(char*); /** ** Check if the variables are setted correctly **/ - void checkInvariant(); + void checkInvariant()throw(char*); /** ** Given an id search the data in the vector **/ - wxMaracasIRMViewManagerData* getViewData(int id); + wxMaracasIRMViewManagerData* getViewData(int id)throw(char*); /** ** Given the id, return the max iso value from the imagedata **/ - int getMaxIsoValue(int propid); + int getMaxIsoValue(int propid)throw(char*); /** ** Changes the color of the actor **/ - void changeColor(int propid, double red, double green, double blue); + void changeColor(int propid, double red, double green, double blue) throw(char*); private: std::vector prop3Dvect;