manualContour3V3DControler Class Reference

#include <manualContour3V3DControler.h>

Inheritance diagram for manualContour3V3DControler:
Inheritance graph
[legend]
Collaboration diagram for manualContour3V3DControler:
Collaboration graph
[legend]

List of all members.

Public Member Functions

 manualContour3V3DControler ()
virtual ~manualContour3V3DControler ()
virtual
manualContour3V3DControler
Clone ()
void CopyAttributesTo (manualContour3V3DControler *cloneObject)
void SetManualContour3VControler (manualContour3VControler *manualcontour3Vcontroler)
manualContour3VControlerGetManualContour3VControler ()
virtual bool OnChar ()
virtual void AddPoint (int x, int y, int z)
virtual void DeleteActualMousePoint (int x, int y)
virtual void MouseMove (int x, int y)
virtual void InsertPoint (int x, int y, int z)
virtual void ResetContour ()
virtual bool OnLeftButtonDown ()
virtual void MouseClickLeft (int x, int y)
void ResetOrientationPlane ()
vtkMPRBaseDataGetVtkMPRBaseData ()
void SetVtkMPRBaseData (vtkMPRBaseData *vtkmprbasedata)
virtual void MouseDLeft (int x, int y)
void SetEasyCreation (bool easyCreation)
bool GetEasyCreation ()
virtual void Configure ()
virtual bool OnMouseMove ()
virtual bool OnLeftButtonUp ()
virtual bool OnLeftDClick ()
virtual bool OnMiddleButtonDown ()
virtual bool OnMiddleButtonUp ()
virtual bool OnRightButtonDown ()
virtual bool OnRightButtonUp ()
void SetModelView (manualBaseModel *manContModel, manualViewBaseContour *manViewBaseCont)
manualBaseModelGetManualContourModel ()
manualViewBaseContourGetManualViewBaseContour ()
virtual void MouseClickRight (int x, int y)
virtual void MouseReleaseLeft (int x, int y)
void SetState (int state)
int GetState ()
bool IsEditable ()
virtual void SetEditable (bool condition)
bool GetPosibleToMove ()
void SetPosibleToMove (bool condition)
bool IsMoving ()
void SetMoving (bool condition)
void SetCompleteCreation (bool condition)
bool GetIfCompleteCreation ()
void SetKeyBoardMoving (bool condition)
bool GetKeyBoardMoving ()
void CreateNewManualContour ()
int GetNumberOfPointsManualContour ()
int GetNumberOfPointsSplineManualContour ()
void DeleteContour ()
double * GetVectorPointsXManualContour ()
double * GetVectorPointsYManualContour ()
void SetZ (int z)
virtual int GetZ ()
virtual void SetPoint (int id, int x, int y, int z)
void SetPointX (int id, int x)
void SetPointY (int id, int y)
void SetPointZ (int id, int z)
void Magnet (int x, int y)
virtual bool OnRightDClick ()
virtual bool OnMiddleDClick ()
virtual bool OnMouseWheel ()
void SetVtkInteractorStyleBaseView (vtkInteractorStyleBaseView *_vtkInteractorStyleBaseView)
void RemoveVtkInteractorStyleBaseView ()
void SetActive (bool active)
bool GetActive ()

Public Attributes

int _bakIdPoint

Protected Attributes

bool _easyCreation
manualViewBaseContour_manViewBaseCont
manualBaseModel_manContModel
int _z
int _state
bool _editable
bool _posibleToMove
bool _moving
bool _created
bool _keyBoardMoving
vtkInteractorStyleBaseView_vtkInteractorStyleBaseView

Private Attributes

manualContour3VControler_manualcontour3Vcontroler

Detailed Description

Definition at line 11 of file manualContour3V3DControler.h.


Constructor & Destructor Documentation

manualContour3V3DControler::manualContour3V3DControler (  ) 

Definition at line 8 of file manualContour3V3DControler.cpp.

Referenced by Clone().

00009   :
00010 _manualcontour3Vcontroler(NULL)
00011 {
00012 }
// ----------------------------------------------------------------------------

Here is the caller graph for this function:

manualContour3V3DControler::~manualContour3V3DControler (  )  [virtual]

Definition at line 14 of file manualContour3V3DControler.cpp.

00015 {
00016 }


Member Function Documentation

void manualContour3V3DControler::AddPoint ( int  x,
int  y,
int  z 
) [virtual]

Reimplemented from manualContourBaseControler.

Definition at line 41 of file manualContour3V3DControler.cpp.

References _manualcontour3Vcontroler, and manualContour3VControler::AddPoint_Others().

00042 {
00043         manualContour3DControler::AddPoint(  x,  y,  z );
00044         if (_manualcontour3Vcontroler!=NULL)
00045         {
00046                 _manualcontour3Vcontroler->AddPoint_Others();
00047         }
00048 }

Here is the call graph for this function:

manualContour3V3DControler * manualContour3V3DControler::Clone (  )  [virtual]

Reimplemented from manualContour3DControler.

Definition at line 19 of file manualContour3V3DControler.cpp.

References CopyAttributesTo(), and manualContour3V3DControler().

00020 {
00021         manualContour3V3DControler * clone = new manualContour3V3DControler();
00022         CopyAttributesTo(clone);
00023         return clone;
00024 }

Here is the call graph for this function:

void manualContourControler::Configure (  )  [virtual, inherited]

Reimplemented from manualContourBaseControler.

Reimplemented in manualCircleControler, manualRoiControler, and manualRotationToolControler.

Definition at line 38 of file manualContourControler.cpp.

00039 {
00040  //     this->_manContModel->SetNumberOfPointsSpline(100);
00041 }

void manualContour3V3DControler::CopyAttributesTo ( manualContour3V3DControler cloneObject  ) 

Reimplemented from manualContour3DControler.

Definition at line 27 of file manualContour3V3DControler.cpp.

References GetManualContour3VControler(), and SetManualContour3VControler().

Referenced by Clone().

00028 {
00029         // Fathers object
00030         manualContour3DControler::CopyAttributesTo(cloneObject);
00031 
00032         cloneObject->SetManualContour3VControler( this->GetManualContour3VControler() );
00033 }

Here is the call graph for this function:

Here is the caller graph for this function:

void manualContourBaseControler::CreateNewManualContour (  )  [inherited]
void manualContour3V3DControler::DeleteActualMousePoint ( int  x,
int  y 
) [virtual]
void manualContourBaseControler::DeleteContour (  )  [inherited]
bool InteractorStyleMaracas::GetActive (  )  [inherited]

Definition at line 116 of file InteractorStyleMaracas.cxx.

References InteractorStyleMaracas::_active.

Referenced by vtkInteractorStyleBaseView::CallLstInteractorStyleMaracas(), and InteractorStyleMaracas::CopyAttributesTo().

00117 {
00118         return _active;
00119 }

Here is the caller graph for this function:

bool manualContourControler::GetEasyCreation (  )  [inherited]

Definition at line 161 of file manualContourControler.cpp.

References manualContourControler::_easyCreation.

Referenced by manualContourControler::CopyAttributesTo().

00162 {
00163         return _easyCreation;
00164 }

Here is the caller graph for this function:

bool manualContourBaseControler::GetIfCompleteCreation (  )  [inherited]

Definition at line 363 of file manualContourBaseControler.cpp.

References manualContourBaseControler::_created.

Referenced by manualContourBaseControler::CopyAttributesTo(), and manualContourBaseControler::MouseReleaseLeft().

00364 {
00365         return _created;
00366 }

Here is the caller graph for this function:

bool manualContourBaseControler::GetKeyBoardMoving (  )  [inherited]

Definition at line 373 of file manualContourBaseControler.cpp.

References manualContourBaseControler::_keyBoardMoving.

Referenced by manualContourBaseControler::CopyAttributesTo(), and manualContourBaseControler::OnChar().

00374 {
00375         return _keyBoardMoving;
00376 }

Here is the caller graph for this function:

manualContour3VControler * manualContour3V3DControler::GetManualContour3VControler (  ) 

Definition at line 75 of file manualContour3V3DControler.cpp.

References _manualcontour3Vcontroler.

Referenced by CopyAttributesTo().

00076 {
00077         return _manualcontour3Vcontroler;
00078 }

Here is the caller graph for this function:

manualBaseModel * manualContourBaseControler::GetManualContourModel (  )  [inherited]
manualViewBaseContour * manualContourBaseControler::GetManualViewBaseContour (  )  [inherited]

Definition at line 248 of file manualContourBaseControler.cpp.

References manualContourBaseControler::_manViewBaseCont.

Referenced by manualContourBaseControler::AddPoint(), manualContour3VControler::AddPoint(), manualContourPerpPlaneControler::DeleteActualMousePoint(), manualContour3VControler::DeleteActualMousePoint(), DeleteActualMousePoint(), manualRotationToolControler::InitRoi(), manualRoiControler::InitRoi(), manualLineControler::InitRoi(), manualCircleControler::InitRoi(), manualContourBaseControler::InsertPoint(), manualContour3VControler::InsertPoint(), manualContourBaseControler::Magnet(), manualRotationToolControler::MouseClickLeft(), manualRoiControler::MouseClickLeft(), manualLineControler::MouseClickLeft(), manualContourControler::MouseClickLeft(), manualContour3DControler::MouseClickLeft(), manualCircleControler::MouseClickLeft(), manualContourPerpPlaneControler::MouseDLeft(), manualContourControler::MouseDLeft(), manualRotationToolControler::MouseMove(), manualRoiControler::MouseMove(), manualLineControler::MouseMove(), manualContourPerpPlaneControler::MouseMove(), manualContourControler::MouseMove(), manualContour3VControler::MouseMove(), MouseMove(), manualCircleControler::MouseMove(), manualContour3VControler::MouseMove_Others(), manualContourBaseControler::MouseReleaseLeft(), manualContourBaseControler::OnChar(), manualContourBaseControler::OnMiddleButtonDown(), manualContourContainer::refreshLumen(), manualContourContainer::refreshWall(), manualContourBaseControler::ResetContour(), manualContourBaseControler::SetEditable(), manualContourBaseControler::SetPoint(), manualContour3VControler::SetPoint(), manualContourBaseControler::SetPointX(), manualContourBaseControler::SetPointY(), manualContourBaseControler::SetPointZ(), and manualRoiControler::SetRoi().

00249 {
00250         return _manViewBaseCont;
00251 }

Here is the caller graph for this function:

int manualContourBaseControler::GetNumberOfPointsManualContour (  )  [inherited]

Definition at line 382 of file manualContourBaseControler.cpp.

References manualContourBaseControler::_manViewBaseCont, and manualViewBaseContour::GetNumberOfPoints().

Referenced by manualContourControler::MouseClickLeft().

00382                                                                   {
00383         return _manViewBaseCont->GetNumberOfPoints();
00384 }

Here is the call graph for this function:

Here is the caller graph for this function:

int manualContourBaseControler::GetNumberOfPointsSplineManualContour (  )  [inherited]

Definition at line 388 of file manualContourBaseControler.cpp.

References manualContourBaseControler::_manContModel, and manualBaseModel::GetNumberOfPointsSpline().

Referenced by manualContourContainer::getNumberOfLumenContourPoints(), wxImageViewerWidget::GetNumberOfPointsSplineManualContour(), and manualContourContainer::getNumberOfWallContourPoints().

00388                                                                         {
00389         //return _manViewBaseCont->GetNumberOfPointsSpline();
00390         return _manContModel->GetNumberOfPointsSpline();
00391 }

Here is the call graph for this function:

Here is the caller graph for this function:

bool manualContourBaseControler::GetPosibleToMove (  )  [inherited]

Definition at line 338 of file manualContourBaseControler.cpp.

References manualContourBaseControler::_posibleToMove.

Referenced by manualContourBaseControler::CopyAttributesTo(), and manualContourControler::MouseMove().

00339 {
00340         return _posibleToMove;
00341 }

Here is the caller graph for this function:

int manualContourBaseControler::GetState (  )  [inherited]
double * manualContourBaseControler::GetVectorPointsXManualContour (  )  [inherited]
double * manualContourBaseControler::GetVectorPointsYManualContour (  )  [inherited]
vtkMPRBaseData * manualContour3DControler::GetVtkMPRBaseData (  )  [inherited]
int manualContourBaseControler::GetZ (  )  [virtual, inherited]
void manualContour3V3DControler::InsertPoint ( int  x,
int  y,
int  z 
) [virtual]

Reimplemented from manualContour3DControler.

Definition at line 35 of file manualContour3V3DControler.cpp.

References _manualcontour3Vcontroler, and manualContour3VControler::InsertPoint_Others().

Here is the call graph for this function:

bool manualContourBaseControler::IsEditable (  )  [inherited]
bool manualContourBaseControler::IsMoving (  )  [inherited]

Definition at line 348 of file manualContourBaseControler.cpp.

References manualContourBaseControler::_moving.

Referenced by manualContourBaseControler::CopyAttributesTo(), and manualContourControler::MouseMove().

00349 {
00350         return _moving;
00351 }

Here is the caller graph for this function:

void manualContourBaseControler::Magnet ( int  x,
int  y 
) [inherited]

Definition at line 421 of file manualContourBaseControler.cpp.

References manualContourBaseControler::_manViewBaseCont, manualContourBaseControler::_state, manualBaseModel::GetIdPoint(), manualViewBaseContour::GetIdPoint(), manualContourBaseControler::GetManualContourModel(), manualBaseModel::GetManualPoint(), manualContourBaseControler::GetManualViewBaseContour(), manualContourBaseControler::GetZ(), manualContourBaseControler::IsEditable(), manualPoint::SetPoint(), and manualViewBaseContour::TransfromCoordViewWorld().

Referenced by manualContourBaseControler::OnChar().

00422 {
00423         if( IsEditable())
00424         {
00425                 /*int id= */ _manViewBaseCont->GetIdPoint(x,y,GetZ()); // JPRx
00426                 if (GetManualContourModel()!=NULL){
00427                         double  xx      = x;
00428                         double  yy      = y;
00429                         double  zz      = GetZ();
00430                         GetManualViewBaseContour()->TransfromCoordViewWorld(xx,yy,zz);
00431                         int                     id      = GetManualContourModel()->GetIdPoint(xx,yy,zz,32000,-1);
00432                         if (id!=-1)
00433                         {
00434                                 manualPoint     *mp     = GetManualContourModel()->GetManualPoint(id);
00435                                 mp->SetPoint(xx,yy,zz);
00436                         }
00437         //              GetManualViewBaseContour()->UpdateViewPoint(id);
00438                 }
00439                 _state = 0;
00440         }
00441 }

Here is the call graph for this function:

Here is the caller graph for this function:

void manualContour3DControler::MouseClickLeft ( int  x,
int  y 
) [virtual, inherited]
void manualContourBaseControler::MouseClickRight ( int  x,
int  y 
) [virtual, inherited]

Definition at line 258 of file manualContourBaseControler.cpp.

References manualContourBaseControler::_state, manualContourBaseControler::GetManualContourModel(), manualBaseModel::SetCloseContour(), manualContourBaseControler::SetCompleteCreation(), manualContourBaseControler::SetEditable(), manualContourBaseControler::SetKeyBoardMoving(), and manualContourBaseControler::SetPosibleToMove().

Referenced by wxImageViewerWidget::ExecuteEvent2(), and manualContourBaseControler::OnRightButtonDown().

00259 {
00260         SetCompleteCreation( true );
00261         SetKeyBoardMoving( false );
00262         this->GetManualContourModel()->SetCloseContour(true);
00263 
00264 //      if (_state==1)
00265 //      {
00266 //              _state=0;
00267 //      }
00268         SetEditable( false );
00269         SetPosibleToMove( false );
00270         _state = 0;
00271 
00272 //EED 24Avril2009       _state=7;
00273 }

Here is the call graph for this function:

Here is the caller graph for this function:

void manualContourControler::MouseDLeft ( int  x,
int  y 
) [virtual, inherited]
void manualContour3V3DControler::MouseMove ( int  x,
int  y 
) [virtual]
void manualContourBaseControler::MouseReleaseLeft ( int  x,
int  y 
) [virtual, inherited]
bool manualContour3V3DControler::OnChar (  )  [virtual]

Reimplemented from manualContour3DControler.

Definition at line 80 of file manualContour3V3DControler.cpp.

References _manualcontour3Vcontroler, manualContour3DControler::OnChar(), and manualContour3VControler::OnChar_Others().

00081 {
00082         if (manualContour3DControler::OnChar()==false )
00083         {
00084                 _manualcontour3Vcontroler->OnChar_Others();
00085         }
00086         return true;
00087 }

Here is the call graph for this function:

bool manualContour3DControler::OnLeftButtonDown (  )  [virtual, inherited]

Reimplemented from manualContourBaseControler.

Definition at line 33 of file manualContour3DControler.cpp.

References InteractorStyleMaracas::_vtkInteractorStyleBaseView, vtkInteractorStyleBaseView::GetWxVtk3DBaseView(), wxVtkBaseView::GetWxVTKRenderWindowInteractor(), and manualContour3DControler::MouseClickLeft().

00034 {
00035         int X,Y;
00036         wxVTKRenderWindowInteractor *wxVTKiren;
00037         wxVTKiren = _vtkInteractorStyleBaseView->GetWxVtk3DBaseView()->GetWxVTKRenderWindowInteractor();
00038         wxVTKiren->GetEventPosition(X,Y);
00039         MouseClickLeft(X,Y);
00040         return true;
00041 }

Here is the call graph for this function:

bool manualContourBaseControler::OnLeftButtonUp (  )  [virtual, inherited]

Reimplemented from InteractorStyleMaracas.

Definition at line 172 of file manualContourBaseControler.cpp.

References InteractorStyleMaracas::_vtkInteractorStyleBaseView, vtkInteractorStyleBaseView::GetWxVtk2DBaseView(), wxVtkBaseView::GetWxVTKRenderWindowInteractor(), and manualContourBaseControler::MouseReleaseLeft().

00173 {
00174         if ( _vtkInteractorStyleBaseView!=NULL )
00175         {
00176                 int X,Y;
00177                 wxVTKRenderWindowInteractor *wxVTKiren;
00178                 wxVTKiren = _vtkInteractorStyleBaseView->GetWxVtk2DBaseView()->GetWxVTKRenderWindowInteractor();
00179                 wxVTKiren->GetEventPosition(X,Y);
00180                 MouseReleaseLeft(X,Y);
00181         }
00182         return true;
00183 }

Here is the call graph for this function:

bool manualContourBaseControler::OnLeftDClick (  )  [virtual, inherited]

Reimplemented from InteractorStyleMaracas.

Reimplemented in manualContourPerpPlaneControler.

Definition at line 185 of file manualContourBaseControler.cpp.

References InteractorStyleMaracas::_vtkInteractorStyleBaseView, vtkInteractorStyleBaseView::GetWxVtk2DBaseView(), wxVtkBaseView::GetWxVTKRenderWindowInteractor(), and manualContourBaseControler::MouseDLeft().

00186 {
00187         if ( _vtkInteractorStyleBaseView!=NULL )
00188         {
00189                 int X,Y;
00190                 wxVTKRenderWindowInteractor *wxVTKiren;
00191                 wxVTKiren = _vtkInteractorStyleBaseView->GetWxVtk2DBaseView()->GetWxVTKRenderWindowInteractor();
00192                 wxVTKiren->GetEventPosition(X,Y);
00193 
00194                 this->MouseDLeft(X,Y);
00195         }
00196         return true;
00197 }

Here is the call graph for this function:

bool manualContourBaseControler::OnMiddleButtonDown (  )  [virtual, inherited]

Reimplemented from InteractorStyleMaracas.

Definition at line 199 of file manualContourBaseControler.cpp.

References InteractorStyleMaracas::_vtkInteractorStyleBaseView, manualContourBaseControler::GetManualViewBaseContour(), vtkInteractorStyleBaseView::GetWxVtk2DBaseView(), wxVtkBaseView::GetWxVTKRenderWindowInteractor(), manualContourBaseControler::GetZ(), and manualViewBaseContour::InitMove().

00200 {
00201 //      SetKeyBoardMoving( false );
00202         if ( _vtkInteractorStyleBaseView!=NULL )
00203         {
00204                 int X,Y;
00205                 wxVTKRenderWindowInteractor *wxVTKiren;
00206                 wxVTKiren = _vtkInteractorStyleBaseView->GetWxVtk2DBaseView()->GetWxVTKRenderWindowInteractor();
00207                 wxVTKiren->GetEventPosition(X,Y);
00208                 GetManualViewBaseContour()->InitMove( X, Y,GetZ());
00209         }
00210         return true;
00211 }

Here is the call graph for this function:

bool manualContourBaseControler::OnMiddleButtonUp (  )  [virtual, inherited]

Reimplemented from InteractorStyleMaracas.

Definition at line 213 of file manualContourBaseControler.cpp.

00214 {
00215         return true;
00216 }

bool InteractorStyleMaracas::OnMiddleDClick (  )  [virtual, inherited]

Definition at line 72 of file InteractorStyleMaracas.cxx.

00073 {
00074         return true;
00075 }

bool manualContourBaseControler::OnMouseMove (  )  [virtual, inherited]

Reimplemented from InteractorStyleMaracas.

Reimplemented in manualContourPerpPlaneControler.

Definition at line 138 of file manualContourBaseControler.cpp.

References InteractorStyleMaracas::_vtkInteractorStyleBaseView, vtkInteractorStyleBaseView::GetWxVtk2DBaseView(), wxVtkBaseView::GetWxVTKRenderWindowInteractor(), and manualContourBaseControler::MouseMove().

00139 {
00140         if ( _vtkInteractorStyleBaseView!=NULL)
00141         {
00142                 int X,Y;
00143                 wxVTKRenderWindowInteractor *_wxVTKiren;
00144                 _wxVTKiren= _vtkInteractorStyleBaseView->GetWxVtk2DBaseView()->GetWxVTKRenderWindowInteractor();
00145                 _wxVTKiren->GetEventPosition( X , Y );
00146 
00147         printf("EED manualContourBaseControler::OnMouseMove %d %d\n",X,Y);
00148 
00149                 if ( (_vtkInteractorStyleBaseView->GetInteractor()->GetControlKey()==0) &&
00150                         (_vtkInteractorStyleBaseView->GetInteractor()->GetShiftKey()==0) ) {
00151                         MouseMove(X,Y);
00152                 }
00153         }
00154         return true;
00155 }

Here is the call graph for this function:

bool InteractorStyleMaracas::OnMouseWheel (  )  [virtual, inherited]

Definition at line 92 of file InteractorStyleMaracas.cxx.

Referenced by vtkInteractorStyleBaseView::CallLstInteractorStyleMaracas().

00093 {
00094         return true;
00095 }

Here is the caller graph for this function:

bool manualContourBaseControler::OnRightButtonDown (  )  [virtual, inherited]

Reimplemented from InteractorStyleMaracas.

Definition at line 218 of file manualContourBaseControler.cpp.

References InteractorStyleMaracas::_vtkInteractorStyleBaseView, vtkInteractorStyleBaseView::GetWxVtk2DBaseView(), wxVtkBaseView::GetWxVTKRenderWindowInteractor(), and manualContourBaseControler::MouseClickRight().

00219 {
00220         if( _vtkInteractorStyleBaseView!= NULL )
00221         {
00222                 int X,Y;
00223                 wxVTKRenderWindowInteractor *wxVTKiren;
00224                 wxVTKiren = _vtkInteractorStyleBaseView->GetWxVtk2DBaseView()->GetWxVTKRenderWindowInteractor();
00225                 wxVTKiren->GetEventPosition(X, Y);
00226 
00227                 MouseClickRight(X,Y);
00228         }
00229         return true;
00230 }

Here is the call graph for this function:

bool manualContourBaseControler::OnRightButtonUp (  )  [virtual, inherited]

Reimplemented from InteractorStyleMaracas.

Definition at line 232 of file manualContourBaseControler.cpp.

00233 {
00234         return true;
00235 }

bool InteractorStyleMaracas::OnRightDClick (  )  [virtual, inherited]

Definition at line 87 of file InteractorStyleMaracas.cxx.

Referenced by vtkInteractorStyleBaseView::CallLstInteractorStyleMaracas().

00088 {
00089         return true;
00090 }

Here is the caller graph for this function:

void InteractorStyleMaracas::RemoveVtkInteractorStyleBaseView (  )  [inherited]

Definition at line 106 of file InteractorStyleMaracas.cxx.

References InteractorStyleMaracas::_vtkInteractorStyleBaseView.

Referenced by vtkInteractorStyleBaseView::RemoveInteractorStyleMaracas().

00107 {
00108         _vtkInteractorStyleBaseView = NULL;
00109 }

Here is the caller graph for this function:

void manualContour3V3DControler::ResetContour (  )  [virtual]

Reimplemented from manualContourBaseControler.

Definition at line 90 of file manualContour3V3DControler.cpp.

References _manualcontour3Vcontroler, and manualContour3VControler::ResetContour_Others().

Here is the call graph for this function:

void manualContour3DControler::ResetOrientationPlane (  )  [inherited]

Definition at line 43 of file manualContour3DControler.cpp.

References manualContourBaseControler::GetManualContourModel(), manualBaseModel::GetNearestPointAndNormal(), manualContour3DControler::GetVtkMPRBaseData(), vtkMPRBaseData::GetX(), vtkMPRBaseData::GetY(), vtkBaseData::GetZ(), and vtkMPRBaseData::SetNormal().

Referenced by manualContour3DControler::InsertPoint(), manualContour3DControler::MouseClickLeft(), and manualContour3DControler::OnChar().

00044 {
00045         double p[3],rp[3],rn[3];
00046         p[0] = this->GetVtkMPRBaseData()->GetX(  );
00047         p[1] = this->GetVtkMPRBaseData()->GetY(  );
00048         p[2] = this->GetVtkMPRBaseData()->GetZ(  );
00049         this->GetManualContourModel()->GetNearestPointAndNormal(p,rp,rn);
00050         this->GetVtkMPRBaseData()->SetNormal(rn[0],rn[1],rn[2]);
00051 }

Here is the call graph for this function:

Here is the caller graph for this function:

void InteractorStyleMaracas::SetActive ( bool  active  )  [inherited]
void manualContourBaseControler::SetCompleteCreation ( bool  condition  )  [inherited]

Definition at line 358 of file manualContourBaseControler.cpp.

References manualContourBaseControler::_created.

Referenced by manualContourBaseControler::CopyAttributesTo(), and manualContourBaseControler::MouseClickRight().

00359 {
00360         _created = condition;
00361 }

Here is the caller graph for this function:

void manualContourControler::SetEasyCreation ( bool  easyCreation  )  [inherited]

Definition at line 156 of file manualContourControler.cpp.

References manualContourControler::_easyCreation.

Referenced by manualContourControler::CopyAttributesTo().

00157 {
00158         _easyCreation=easyCreation;
00159 }

Here is the caller graph for this function:

void manualContourBaseControler::SetEditable ( bool  condition  )  [virtual, inherited]

Definition at line 325 of file manualContourBaseControler.cpp.

References manualContourBaseControler::_editable, manualContourBaseControler::GetManualViewBaseContour(), manualViewBaseContour::RemoveControlPoints(), and manualViewBaseContour::SetSelected().

Referenced by manualContourBaseControler::CopyAttributesTo(), manualContourBaseControler::MouseClickRight(), and manualContourBaseControler::MouseReleaseLeft().

00326 {
00327         if (GetManualViewBaseContour()!=NULL) {
00328                 if( !condition )
00329                 {
00330                         GetManualViewBaseContour()->RemoveControlPoints();
00331                 }
00332                 GetManualViewBaseContour()->SetSelected( condition );
00333         }
00334         _editable = condition;
00335 }

Here is the call graph for this function:

Here is the caller graph for this function:

void manualContourBaseControler::SetKeyBoardMoving ( bool  condition  )  [inherited]
void manualContour3V3DControler::SetManualContour3VControler ( manualContour3VControler manualcontour3Vcontroler  ) 

Definition at line 70 of file manualContour3V3DControler.cpp.

References _manualcontour3Vcontroler.

Referenced by CopyAttributesTo().

00071 {
00072         _manualcontour3Vcontroler = manualcontour3Vcontroler;
00073 }

Here is the caller graph for this function:

void manualContourBaseControler::SetModelView ( manualBaseModel manContModel,
manualViewBaseContour manViewBaseCont 
) [inherited]
void manualContourBaseControler::SetMoving ( bool  condition  )  [inherited]

Definition at line 353 of file manualContourBaseControler.cpp.

References manualContourBaseControler::_moving.

Referenced by manualContourBaseControler::CopyAttributesTo(), manualContourControler::MouseClickLeft(), and manualContourBaseControler::MouseReleaseLeft().

00354 {
00355         _moving = condition;
00356 }

Here is the caller graph for this function:

void manualContourBaseControler::SetPoint ( int  id,
int  x,
int  y,
int  z 
) [virtual, inherited]
void manualContourBaseControler::SetPointX ( int  id,
int  x 
) [inherited]

Definition at line 504 of file manualContourBaseControler.cpp.

References manualContourBaseControler::_manContModel, manualBaseModel::GetManualPoint(), manualContourBaseControler::GetManualViewBaseContour(), manualPoint::SetPointX(), manualViewBaseContour::TransfromCoordViewWorld(), and manualViewBaseContour::UpdateViewPoint().

Referenced by manualRoiControler::MouseMove().

00504                                                           {
00505         if ((GetManualViewBaseContour()!=NULL) && (id>=0)){
00506                 double xx = x;
00507                 double yy = 0;
00508                 double zz = 0;
00509                 GetManualViewBaseContour()->TransfromCoordViewWorld(xx,yy,zz);
00510                 manualPoint             *mp             = _manContModel->GetManualPoint(id);
00511                 mp->SetPointX(xx);
00512                 GetManualViewBaseContour()->UpdateViewPoint(id);
00513         }
00514 }

Here is the call graph for this function:

Here is the caller graph for this function:

void manualContourBaseControler::SetPointY ( int  id,
int  y 
) [inherited]

Definition at line 516 of file manualContourBaseControler.cpp.

References manualContourBaseControler::_manContModel, manualBaseModel::GetManualPoint(), manualContourBaseControler::GetManualViewBaseContour(), manualPoint::SetPointY(), manualViewBaseContour::TransfromCoordViewWorld(), and manualViewBaseContour::UpdateViewPoint().

Referenced by manualRoiControler::MouseMove().

00516                                                           {
00517         if ((GetManualViewBaseContour()!=NULL) && (id>=0)){
00518                 double xx = 0;
00519                 double yy = y;
00520                 double zz = 0;
00521                 GetManualViewBaseContour()->TransfromCoordViewWorld(xx,yy,zz);
00522                 manualPoint             *mp             = _manContModel->GetManualPoint(id);
00523                 mp->SetPointY(yy);
00524                 GetManualViewBaseContour()->UpdateViewPoint(id);
00525         }
00526 }

Here is the call graph for this function:

Here is the caller graph for this function:

void manualContourBaseControler::SetPointZ ( int  id,
int  z 
) [inherited]

Definition at line 528 of file manualContourBaseControler.cpp.

References manualContourBaseControler::_manContModel, manualBaseModel::GetManualPoint(), manualContourBaseControler::GetManualViewBaseContour(), manualPoint::SetPointZ(), manualViewBaseContour::TransfromCoordViewWorld(), and manualViewBaseContour::UpdateViewPoint().

00528                                                           {
00529         if ((GetManualViewBaseContour()!=NULL) && (id>=0)){
00530                 double xx = 0;
00531                 double yy = 0;
00532                 double zz = z;
00533                 GetManualViewBaseContour()->TransfromCoordViewWorld(xx,yy,zz);
00534                 manualPoint             *mp             = _manContModel->GetManualPoint(id);
00535                 mp->SetPointZ(zz);
00536                 GetManualViewBaseContour()->UpdateViewPoint(id);
00537         }
00538 }

Here is the call graph for this function:

void manualContourBaseControler::SetPosibleToMove ( bool  condition  )  [inherited]
void manualContourBaseControler::SetState ( int  state  )  [inherited]
void InteractorStyleMaracas::SetVtkInteractorStyleBaseView ( vtkInteractorStyleBaseView _vtkInteractorStyleBaseView  )  [inherited]

Definition at line 99 of file InteractorStyleMaracas.cxx.

References InteractorStyleMaracas::_vtkInteractorStyleBaseView.

Referenced by vtkInteractorStyleBaseView::AddInteractorStyleMaracas(), and vtkInteractorStyleBaseView::InsertInteractorStyleMaracas().

00100 {
00101         _vtkInteractorStyleBaseView = vtkInteractorStyleBaseView;
00102 }

Here is the caller graph for this function:

void manualContour3DControler::SetVtkMPRBaseData ( vtkMPRBaseData vtkmprbasedata  )  [inherited]

Definition at line 87 of file manualContour3DControler.cpp.

References manualContour3DControler::_vtkmprbasedata.

Referenced by manualContour3DControler::CopyAttributesTo().

00088 {
00089         _vtkmprbasedata=vtkmprbasedata;
00090 }

Here is the caller graph for this function:

void manualContourBaseControler::SetZ ( int  z  )  [inherited]

Definition at line 444 of file manualContourBaseControler.cpp.

References manualContourBaseControler::_z.

Referenced by wxWidgetMesure2D::ConfigureA(), wxImageViewerWidget::ConstructVTK(), and manualContourBaseControler::CopyAttributesTo().

00445 {
00446         _z=z;
00447 }

Here is the caller graph for this function:


Member Data Documentation

bool manualContourBaseControler::_created [protected, inherited]
bool manualContourControler::_easyCreation [protected, inherited]
bool manualContourBaseControler::_editable [protected, inherited]
bool manualContourBaseControler::_keyBoardMoving [protected, inherited]
bool manualContourBaseControler::_moving [protected, inherited]
bool manualContourBaseControler::_posibleToMove [protected, inherited]
int manualContourBaseControler::_state [protected, inherited]

Definition at line 45 of file InteractorStyleMaracas.h.

Referenced by manualContour3VControler::AddPoint_Others(), manualContour3VControler::DeleteActualMousePoint_Others(), manualContour3VControler::InsertPoint_Others(), InteractorStyleMaracas::InteractorStyleMaracas(), manualContourControler::MouseClickLeft(), manualContour3DControler::MouseClickLeft(), manualContourPerpPlaneControler::MouseDLeft(), manualContourControler::MouseDLeft(), manualContourPerpPlaneControler::MouseMove(), manualContourControler::MouseMove(), MouseMove(), manualContour3VControler::MouseMove_Others(), manualContourBaseControler::OnChar(), manualContour3DControler::OnChar(), manualContour3VControler::OnChar_Others(), vtkInteractorStyleSphere::OnLeftButtonDown(), vtkInteractorStylePlane2D::OnLeftButtonDown(), vtkInteractorStyleMPRView::OnLeftButtonDown(), vtkInteractorManualPaint::OnLeftButtonDown(), manualContourBaseControler::OnLeftButtonDown(), manualContour3DControler::OnLeftButtonDown(), vtkInteractorStyleSphere::OnLeftButtonUp(), vtkInteractorStylePlane2D::OnLeftButtonUp(), manualContourBaseControler::OnLeftButtonUp(), vtkInteractorStylePlane2D::OnLeftDClick(), vtkInteractorStyleMPRView::OnLeftDClick(), manualContourBaseControler::OnLeftDClick(), manualInteractorWindowLevel::OnMiddleButtonDown(), manualContourBaseControler::OnMiddleButtonDown(), vtkInteractorStyleSphere::OnMouseMove(), vtkInteractorStylePlane2D::OnMouseMove(), vtkInteractorStyleMPRView::OnMouseMove(), vtkInteractorScrollZ::OnMouseMove(), vtkInfoTextImageInteractorPlane2D::OnMouseMove(), vtkInfoTextImageInteractor::OnMouseMove(), vtkInteractorManualPaint::OnMouseMove(), manualInteractorWindowLevel::OnMouseMove(), manualContourBaseControler::OnMouseMove(), vtkInteractorStyleSphere::OnRightButtonDown(), vtkInteractorScrollZ::OnRightButtonDown(), manualContourBaseControler::OnRightButtonDown(), vtkInteractorStyleSphere::OnRightButtonUp(), InteractorStyleMaracas::RemoveVtkInteractorStyleBaseView(), vtkInteractorStyle3DView::SelectMarchibCubePoint(), and InteractorStyleMaracas::SetVtkInteractorStyleBaseView().

int manualContourBaseControler::_z [protected, inherited]

The documentation for this class was generated from the following files:

Generated on 20 Oct 2010 for creaMaracasVisu_lib by  doxygen 1.6.1