manualContour3DControler Class Reference

---------------------------------------------------------------------------- More...

#include <manualContour3DControler.h>

Inheritance diagram for manualContour3DControler:

Inheritance graph
[legend]
Collaboration diagram for manualContour3DControler:

Collaboration graph
[legend]

List of all members.

Public Member Functions

 manualContour3DControler ()
virtual ~manualContour3DControler ()
virtual
manualContour3DControler
Clone ()
void CopyAttributesTo (manualContour3DControler *cloneObject)
virtual bool OnLeftButtonDown ()
virtual bool OnChar ()
virtual void InsertPoint (int x, int y, int z)
virtual void MouseClickLeft (int x, int y)
void ResetOrientationPlane ()
vtkMPRBaseDataGetVtkMPRBaseData ()
void SetVtkMPRBaseData (vtkMPRBaseData *vtkmprbasedata)
void CopyAttributesTo (manualContourControler *cloneObject)
void CopyAttributesTo (manualContourBaseControler *cloneObject)
void CopyAttributesTo (InteractorStyleMaracas *cloneObject)
virtual void MouseMove (int x, int y)
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 (manualContourModel *manContModel, manualViewBaseContour *manViewBaseCont)
manualContourModelGetManualContourModel ()
manualViewBaseContourGetManualViewBaseContour ()
virtual void MouseClickRight (int x, int y)
virtual void MouseReleaseLeft (int x, int y)
void SetState (int state)
int GetState ()
bool IsEditable ()
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 ()
virtual void DeleteActualMousePoint (int x, int y)
double * GetVectorPointsXManualContour ()
double * GetVectorPointsYManualContour ()
void SetZ (int z)
virtual int GetZ ()
virtual void AddPoint (int x, int y, int z)
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 void ResetContour ()
virtual bool OnRightDClick ()
virtual bool OnMiddleDClick ()
virtual bool OnMouseWheel ()
void SetVtkInteractorStyleBaseView (vtkInteractorStyleBaseView *_vtkInteractorStyleBaseView)
void RemoveVtkInteractorStyleBaseView ()
void SetActive (bool active)
bool GetActive ()

Protected Attributes

int _bakIdPoint
vtkInteractorStyleBaseView_vtkInteractorStyleBaseView

Private Attributes

vtkMPRBaseData_vtkmprbasedata


Detailed Description

----------------------------------------------------------------------------

Definition at line 11 of file manualContour3DControler.h.


Constructor & Destructor Documentation

manualContour3DControler::manualContour3DControler (  ) 

Definition at line 8 of file manualContour3DControler.cpp.

Referenced by Clone().

00009 {
00010 }

Here is the caller graph for this function:

manualContour3DControler::~manualContour3DControler (  )  [virtual]

Definition at line 12 of file manualContour3DControler.cpp.

00013 {
00014 }


Member Function Documentation

manualContour3DControler * manualContour3DControler::Clone (  )  [virtual]

Reimplemented from manualContourControler.

Reimplemented in manualContour3V3DControler.

Definition at line 16 of file manualContour3DControler.cpp.

References CopyAttributesTo(), and manualContour3DControler().

00017 {
00018         manualContour3DControler * clone = new manualContour3DControler();
00019         CopyAttributesTo(clone);
00020         return clone;
00021 }

Here is the call graph for this function:

void manualContour3DControler::CopyAttributesTo ( manualContour3DControler cloneObject  ) 

Definition at line 24 of file manualContour3DControler.cpp.

References manualContourControler::CopyAttributesTo(), and SetVtkMPRBaseData().

Referenced by Clone(), and manualContour3V3DControler::CopyAttributesTo().

00025 {
00026         // Fathers object
00027         manualContourControler::CopyAttributesTo(cloneObject);
00028 
00029         cloneObject->SetVtkMPRBaseData( this->GetVtkMPRBaseData() );
00030 }

Here is the call graph for this function:

Here is the caller graph for this function:

bool manualContour3DControler::OnLeftButtonDown (  )  [virtual]

Reimplemented from manualContourBaseControler.

Definition at line 33 of file manualContour3DControler.cpp.

References InteractorStyleMaracas::_vtkInteractorStyleBaseView, vtkInteractorStyleBaseView::GetWxVtk3DBaseView(), wxVtkBaseView::GetWxVTKRenderWindowInteractor(), and 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 manualContour3DControler::OnChar (  )  [virtual]

Reimplemented from manualContourBaseControler.

Reimplemented in manualContour3V3DControler.

Definition at line 73 of file manualContour3DControler.cpp.

References InteractorStyleMaracas::_vtkInteractorStyleBaseView, manualContourBaseControler::OnChar(), ResetOrientationPlane(), and vtkInteractorStyleBaseView::SetRefresh_waiting().

Referenced by manualContour3V3DControler::OnChar().

00074 {
00075         bool ok=true;
00076         manualContourControler::OnChar();
00077         char keyCode = _vtkInteractorStyleBaseView->GetInteractor()-> GetKeyCode();
00078         if (keyCode==32){
00079                 ok=false;
00080                 ResetOrientationPlane();
00081                 this->_vtkInteractorStyleBaseView->SetRefresh_waiting();
00082         }
00083         return ok;
00084 }

Here is the call graph for this function:

Here is the caller graph for this function:

void manualContour3DControler::InsertPoint ( int  x,
int  y,
int  z 
) [virtual]

Reimplemented from manualContourBaseControler.

Reimplemented in manualContour3V3DControler.

Definition at line 98 of file manualContour3DControler.cpp.

References manualContourBaseControler::InsertPoint(), and ResetOrientationPlane().

Referenced by manualContour3V3DControler::InsertPoint().

00099 {
00100         manualContourControler::InsertPoint(  x,  y,  z );
00101         ResetOrientationPlane();
00102 }

Here is the call graph for this function:

Here is the caller graph for this function:

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

Reimplemented from manualContourControler.

Definition at line 53 of file manualContour3DControler.cpp.

References InteractorStyleMaracas::_vtkInteractorStyleBaseView, manualView3DContour::GetIdPoint2(), manualContourBaseControler::GetManualContourModel(), manualContourModel::GetManualPoint(), manualContourBaseControler::GetManualViewBaseContour(), manualContourBaseControler::GetState(), GetVtkMPRBaseData(), manualPoint::GetX(), manualPoint::GetY(), manualPoint::GetZ(), manualContourControler::MouseClickLeft(), ResetOrientationPlane(), vtkInteractorStyleBaseView::SetParent_refresh_waiting(), vtkMPRBaseData::SetX(), vtkMPRBaseData::SetY(), and vtkBaseData::SetZ().

Referenced by OnLeftButtonDown().

00054 {
00055         manualView3DContour *manualview3Dcontour=(manualView3DContour*)GetManualViewBaseContour();
00056         int id=manualview3Dcontour->GetIdPoint2(x,y);
00057         if ( (GetState()==0) && (id!=-1) )
00058         {
00059                 manualPoint *mp = this->GetManualContourModel()->GetManualPoint(id);
00060 
00061                 this->GetVtkMPRBaseData()->SetX( mp->GetX() );
00062                 this->GetVtkMPRBaseData()->SetY( mp->GetY() );
00063                 this->GetVtkMPRBaseData()->SetZ( mp->GetZ() );
00064                 ResetOrientationPlane();
00065                 this->_vtkInteractorStyleBaseView->SetParent_refresh_waiting();
00066         }
00067 
00068 
00069         manualContourControler::MouseClickLeft(x,y);
00070 
00071 }

Here is the call graph for this function:

Here is the caller graph for this function:

void manualContour3DControler::ResetOrientationPlane (  ) 

Definition at line 43 of file manualContour3DControler.cpp.

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

Referenced by InsertPoint(), MouseClickLeft(), and 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:

vtkMPRBaseData * manualContour3DControler::GetVtkMPRBaseData (  ) 

Definition at line 92 of file manualContour3DControler.cpp.

References _vtkmprbasedata.

Referenced by MouseClickLeft(), and ResetOrientationPlane().

00093 {
00094         return _vtkmprbasedata;
00095 }

Here is the caller graph for this function:

void manualContour3DControler::SetVtkMPRBaseData ( vtkMPRBaseData vtkmprbasedata  ) 

Definition at line 87 of file manualContour3DControler.cpp.

References _vtkmprbasedata.

Referenced by CopyAttributesTo().

00088 {
00089         _vtkmprbasedata=vtkmprbasedata;
00090 }

Here is the caller graph for this function:

void manualContourControler::CopyAttributesTo ( manualContourControler cloneObject  )  [inherited]

Definition at line 30 of file manualContourControler.cpp.

References manualContourBaseControler::CopyAttributesTo(), and manualContourControler::SetEasyCreation().

Referenced by manualContourControler::Clone(), manualContourPerpPlaneControler::CopyAttributesTo(), manualContour3VControler::CopyAttributesTo(), and CopyAttributesTo().

00031 {
00032         // Fathers object
00033         manualContourBaseControler::CopyAttributesTo(cloneObject);
00034         cloneObject->SetEasyCreation( this->GetEasyCreation() );
00035 }

Here is the call graph for this function:

Here is the caller graph for this function:

void manualContourBaseControler::CopyAttributesTo ( manualContourBaseControler cloneObject  )  [inherited]

Definition at line 35 of file manualContourBaseControler.cpp.

References InteractorStyleMaracas::CopyAttributesTo(), manualContourBaseControler::SetCompleteCreation(), manualContourBaseControler::SetEditable(), manualContourBaseControler::SetKeyBoardMoving(), manualContourBaseControler::SetMoving(), manualContourBaseControler::SetPosibleToMove(), manualContourBaseControler::SetState(), and manualContourBaseControler::SetZ().

Referenced by manualContourBaseControler::Clone(), manualRoiControler::CopyAttributesTo(), manualLineControler::CopyAttributesTo(), manualContourControler::CopyAttributesTo(), and manualCircleControler::CopyAttributesTo().

00036 {
00037         // Fathers object
00038         InteractorStyleMaracas::CopyAttributesTo(cloneObject);
00039         cloneObject->SetZ( this->GetZ() );
00040         cloneObject->SetState( this->GetState() );
00041         cloneObject->SetEditable( this->IsEditable() );
00042         cloneObject->SetPosibleToMove( this->GetPosibleToMove() );
00043         cloneObject->SetMoving( this->IsMoving() );
00044         cloneObject->SetCompleteCreation( this->GetIfCompleteCreation() );
00045         cloneObject->SetKeyBoardMoving( this->GetKeyBoardMoving() );
00046 }

Here is the call graph for this function:

Here is the caller graph for this function:

void InteractorStyleMaracas::CopyAttributesTo ( InteractorStyleMaracas cloneObject  )  [inherited]

Definition at line 27 of file InteractorStyleMaracas.cxx.

References InteractorStyleMaracas::SetActive().

Referenced by InteractorStyleMaracas::Clone(), and manualContourBaseControler::CopyAttributesTo().

00028 {
00029         // Fathers object
00030         //<FATHERCLASS>::CopyAttributesTo(cloneObject);
00031 
00032         cloneObject->SetActive(  this->GetActive() );
00033 }

Here is the call graph for this function:

Here is the caller graph for this function:

void manualContourControler::MouseMove ( int  x,
int  y 
) [virtual, inherited]

Reimplemented from manualContourBaseControler.

Reimplemented in manualCircleControler, manualContour3V3DControler, manualContour3VControler, manualContourPerpPlaneControler, manualLineControler, and manualRoiControler.

Definition at line 117 of file manualContourControler.cpp.

References manualContourControler::_bakIdPoint, InteractorStyleMaracas::_vtkInteractorStyleBaseView, manualContourBaseControler::GetManualViewBaseContour(), manualContourBaseControler::GetPosibleToMove(), manualContourBaseControler::GetState(), manualContourBaseControler::GetZ(), manualContourBaseControler::IsEditable(), manualContourBaseControler::IsMoving(), manualViewBaseContour::MoveContour(), manualViewBaseContour::Refresh(), manualViewBaseContour::RemoveControlPoints(), manualViewBaseContour::SelectPosibleContour(), manualViewBaseContour::SelectPosiblePoint(), manualContourBaseControler::SetPoint(), and vtkInteractorStyleBaseView::SetRefresh_waiting().

Referenced by wxImageViewerWidget::ExecuteEvent2(), manualContourPerpPlaneControler::MouseMove(), manualContour3VControler::MouseMove(), and manualContour3V3DControler::MouseMove().

00118 {
00119         int z=GetZ();
00120         GetManualViewBaseContour()->SelectPosiblePoint(x,y,z);
00121         GetManualViewBaseContour()->SelectPosibleContour(x,y,z);
00122         if (GetState()==1){     SetPoint( _bakIdPoint , x , y ,z); }
00123         if (GetState()==5){     SetPoint( _bakIdPoint , x , y ,z); }
00124         if ( GetState()==6 && !IsEditable() && GetPosibleToMove() &&IsMoving() )
00125         {
00126                 GetManualViewBaseContour()->MoveContour(x,y,z);
00127         }
00128         if (GetState()!=7 || GetManualViewBaseContour()->GetPosibleSelected() ){
00129                 GetManualViewBaseContour()->Refresh();
00130                 this->_vtkInteractorStyleBaseView->SetRefresh_waiting();
00131         }
00132         if (!IsEditable())
00133         {
00134                 GetManualViewBaseContour()->RemoveControlPoints();
00135 //              GetManualViewBaseContour()->RemoveTextActor();
00136                 GetManualViewBaseContour()->Refresh();
00137                 this->_vtkInteractorStyleBaseView->SetRefresh_waiting();
00138         }
00139 
00140 }

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]

Reimplemented from manualContourBaseControler.

Reimplemented in manualContourPerpPlaneControler.

Definition at line 143 of file manualContourControler.cpp.

References InteractorStyleMaracas::_vtkInteractorStyleBaseView, manualViewBaseContour::AddControlPoints(), manualViewBaseContour::AddTextActor(), manualContourBaseControler::GetManualViewBaseContour(), manualContourBaseControler::IsEditable(), manualContourBaseControler::MouseDLeft(), manualViewBaseContour::Refresh(), and vtkInteractorStyleBaseView::SetRefresh_waiting().

Referenced by wxImageViewerWidget::ExecuteEvent2(), and manualContourPerpPlaneControler::MouseDLeft().

Here is the call graph for this function:

Here is the caller graph for this function:

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

Definition at line 155 of file manualContourControler.cpp.

References manualContourControler::_easyCreation.

Referenced by manualContourControler::CopyAttributesTo().

00156 {
00157         _easyCreation=easyCreation;
00158 }

Here is the caller graph for this function:

bool manualContourControler::GetEasyCreation (  )  [inherited]

Definition at line 160 of file manualContourControler.cpp.

References manualContourControler::_easyCreation.

00161 {
00162         return _easyCreation;
00163 }

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

Reimplemented from manualContourBaseControler.

Reimplemented in manualCircleControler, and manualRoiControler.

Definition at line 38 of file manualContourControler.cpp.

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

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().

Referenced by manualContourPerpPlaneControler::OnMouseMove().

00139 {
00140         
00141         if ( _vtkInteractorStyleBaseView!=NULL)
00142         {
00143                 int X,Y;
00144                 wxVTKRenderWindowInteractor *_wxVTKiren;
00145                 _wxVTKiren= _vtkInteractorStyleBaseView->GetWxVtk2DBaseView()->GetWxVTKRenderWindowInteractor();
00146                 _wxVTKiren->GetEventPosition( X , Y );
00147 
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:

Here is the caller 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().

Referenced by manualContourPerpPlaneControler::OnLeftDClick().

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:

Here is the caller 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 manualContourBaseControler::OnRightButtonDown (  )  [virtual, inherited]

Reimplemented from InteractorStyleMaracas.

Definition at line 218 of file manualContourBaseControler.cpp.

References InteractorStyleMaracas::_vtkInteractorStyleBaseView, manualContourBaseControler::GetManualContourModel(), vtkInteractorStyleBaseView::GetWxVtk2DBaseView(), wxVtkBaseView::GetWxVTKRenderWindowInteractor(), manualContourBaseControler::MouseClickRight(), manualContourModel::SetCloseContour(), manualContourBaseControler::SetCompleteCreation(), and manualContourBaseControler::SetKeyBoardMoving().

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                 SetCompleteCreation( true );
00228                 SetKeyBoardMoving( false );
00229                 this->GetManualContourModel()->SetCloseContour(true);
00230                 MouseClickRight(X,Y);
00231         }
00232         return true;
00233 }

Here is the call graph for this function:

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

Reimplemented from InteractorStyleMaracas.

Definition at line 235 of file manualContourBaseControler.cpp.

00236 {
00237         return true;
00238 }

void manualContourBaseControler::SetModelView ( manualContourModel manContModel,
manualViewBaseContour manViewBaseCont 
) [inherited]

Definition at line 240 of file manualContourBaseControler.cpp.

References manualContourBaseControler::_editable, manualContourBaseControler::_manContModel, manualContourBaseControler::_manViewBaseCont, and manualViewBaseContour::SetEditable().

Referenced by wxWidgetMesure2D::ConfigureA(), wxEmptyPanel_3_Widget::ConfigureVTK(), ContourVOIWidget::ConfigureVTK(), wxMaracasCoutourTool::ConfigureVTK(), wxImageViewerWidget::ConstructVTK(), manualContourContainer::createLumenContour(), manualContourContainer::createWallContour(), wxMaracasImageBrowser02::LoadData(), manualContourContainer::restartLumenContour(), and manualContourContainer::restartWallContour().

00240                                                                                                                      {
00241         _manContModel           =       manContModel;
00242         _manViewBaseCont        =       manViewBaseCont;
00243         _manViewBaseCont->SetEditable( &_editable );
00244 }

Here is the call graph for this function:

Here is the caller graph for this function:

manualContourModel * manualContourBaseControler::GetManualContourModel (  )  [inherited]

Definition at line 246 of file manualContourBaseControler.cpp.

References manualContourBaseControler::_manContModel.

Referenced by manualContourBaseControler::AddPoint(), manualContour3VControler::AddPoint(), manualRoiControler::Configure(), manualRoiControler::InitRoi(), manualLineControler::InitRoi(), manualCircleControler::InitRoi(), manualContourBaseControler::InsertPoint(), manualContour3VControler::InsertPoint(), manualContourBaseControler::Magnet(), manualContourControler::MouseClickLeft(), MouseClickLeft(), manualContourBaseControler::OnRightButtonDown(), manualContourContainer::refreshLumen(), manualContourContainer::refreshWall(), manualContourPerpPlaneControler::ResetOrientationPlane(), ResetOrientationPlane(), manualContour3VControler::SetPoint(), and manualRoiControler::SetRoi().

00247 {
00248         return _manContModel;
00249 }

Here is the caller graph for this function:

manualViewBaseContour * manualContourBaseControler::GetManualViewBaseContour (  )  [inherited]

Definition at line 251 of file manualContourBaseControler.cpp.

References manualContourBaseControler::_manViewBaseCont.

Referenced by manualContourBaseControler::AddPoint(), manualContour3VControler::AddPoint(), manualContourPerpPlaneControler::DeleteActualMousePoint(), manualContour3VControler::DeleteActualMousePoint(), manualContour3V3DControler::DeleteActualMousePoint(), manualRoiControler::InitRoi(), manualLineControler::InitRoi(), manualCircleControler::InitRoi(), manualContourBaseControler::InsertPoint(), manualContour3VControler::InsertPoint(), manualContourBaseControler::Magnet(), manualRoiControler::MouseClickLeft(), manualLineControler::MouseClickLeft(), manualContourControler::MouseClickLeft(), MouseClickLeft(), manualCircleControler::MouseClickLeft(), manualContourPerpPlaneControler::MouseDLeft(), manualContourControler::MouseDLeft(), manualContourBaseControler::MouseDLeft(), manualRoiControler::MouseMove(), manualLineControler::MouseMove(), manualContourPerpPlaneControler::MouseMove(), manualContourControler::MouseMove(), manualContour3VControler::MouseMove(), manualContour3V3DControler::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().

00252 {
00253         return _manViewBaseCont;
00254 }

Here is the caller graph for this function:

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

Definition at line 261 of file manualContourBaseControler.cpp.

References manualContourBaseControler::_state, manualContourBaseControler::SetEditable(), and manualContourBaseControler::SetPosibleToMove().

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

00262 {
00263 //      if (_state==1)
00264 //      {
00265 //              _state=0;
00266 //      }
00267         SetEditable( false );
00268         SetPosibleToMove( false );
00269         _state = 0;
00270 
00271 //EED 24Avril2009       _state=7;
00272 }

Here is the call graph for this function:

Here is the caller graph for this function:

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

Definition at line 274 of file manualContourBaseControler.cpp.

References manualContourBaseControler::_state, manualContourBaseControler::GetIfCompleteCreation(), manualContourBaseControler::GetManualViewBaseContour(), manualContourBaseControler::GetZ(), manualContourBaseControler::IsEditable(), manualViewBaseContour::SelectPosibleContour(), manualContourBaseControler::SetEditable(), manualContourBaseControler::SetMoving(), and manualContourBaseControler::SetPosibleToMove().

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

00275 {
00276         if (_state==5){ _state = 0; }
00277         if (_state==6){ _state = 0; }
00278         if (_state==7){ _state = 0; }
00279         SetMoving( false );
00280         GetManualViewBaseContour()->SelectPosibleContour(x,y,GetZ());
00281         if( GetIfCompleteCreation() && IsEditable() && !GetManualViewBaseContour()->GetPosibleSelected() && (GetManualViewBaseContour()->GetIdPoint(x,y,GetZ())==-1)  )
00282         {
00283                 SetEditable( false );
00284                 SetPosibleToMove( false );
00285         }
00286 }

Here is the call graph for this function:

Here is the caller graph for this function:

void manualContourBaseControler::SetState ( int  state  )  [inherited]

Definition at line 306 of file manualContourBaseControler.cpp.

References manualContourBaseControler::_state.

Referenced by manualContourBaseControler::CopyAttributesTo(), manualRoiControler::InitRoi(), manualLineControler::InitRoi(), manualCircleControler::InitRoi(), wxMaracasImageBrowser02::LoadData(), manualRoiControler::MouseClickLeft(), manualLineControler::MouseClickLeft(), manualContourControler::MouseClickLeft(), manualCircleControler::MouseClickLeft(), manualContourBaseControler::ResetContour(), and wxImageViewerWidget::SetStateManualContour().

00307 {
00308         _state=state;
00309 }

Here is the caller graph for this function:

int manualContourBaseControler::GetState (  )  [inherited]

Definition at line 311 of file manualContourBaseControler.cpp.

References manualContourBaseControler::_state.

Referenced by manualRoiControler::MouseClickLeft(), manualLineControler::MouseClickLeft(), manualContourControler::MouseClickLeft(), MouseClickLeft(), manualCircleControler::MouseClickLeft(), manualRoiControler::MouseMove(), manualLineControler::MouseMove(), manualContourControler::MouseMove(), and manualCircleControler::MouseMove().

00312 {
00313         return _state;
00314 }

Here is the caller graph for this function:

bool manualContourBaseControler::IsEditable (  )  [inherited]

Definition at line 316 of file manualContourBaseControler.cpp.

References manualContourBaseControler::_editable.

Referenced by manualContourBaseControler::Magnet(), manualRoiControler::MouseClickLeft(), manualLineControler::MouseClickLeft(), manualContourControler::MouseClickLeft(), manualCircleControler::MouseClickLeft(), manualContourControler::MouseDLeft(), manualContourControler::MouseMove(), manualContourBaseControler::MouseReleaseLeft(), and manualContourBaseControler::OnChar().

00317 {
00318         return _editable;
00319 }

Here is the caller graph for this function:

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

Definition at line 321 of file manualContourBaseControler.cpp.

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

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

00322 {
00323         if (GetManualViewBaseContour()!=NULL) {
00324                 if( !condition )
00325                 {
00326                         GetManualViewBaseContour()->RemoveControlPoints();
00327                 }
00328                 GetManualViewBaseContour()->SetSelected( condition );
00329         }
00330         _editable = condition;
00331 }

Here is the call graph for this function:

Here is the caller graph for this function:

bool manualContourBaseControler::GetPosibleToMove (  )  [inherited]

Definition at line 334 of file manualContourBaseControler.cpp.

References manualContourBaseControler::_posibleToMove.

Referenced by manualContourControler::MouseMove().

00335 {
00336         return _posibleToMove;
00337 }

Here is the caller graph for this function:

void manualContourBaseControler::SetPosibleToMove ( bool  condition  )  [inherited]

Definition at line 339 of file manualContourBaseControler.cpp.

References manualContourBaseControler::_posibleToMove.

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

00340 {
00341         _posibleToMove = condition;
00342 }

Here is the caller graph for this function:

bool manualContourBaseControler::IsMoving (  )  [inherited]

Definition at line 344 of file manualContourBaseControler.cpp.

References manualContourBaseControler::_moving.

Referenced by manualContourControler::MouseMove().

00345 {
00346         return _moving;
00347 }

Here is the caller graph for this function:

void manualContourBaseControler::SetMoving ( bool  condition  )  [inherited]

Definition at line 349 of file manualContourBaseControler.cpp.

References manualContourBaseControler::_moving.

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

00350 {
00351         _moving = condition;
00352 }

Here is the caller graph for this function:

void manualContourBaseControler::SetCompleteCreation ( bool  condition  )  [inherited]

Definition at line 354 of file manualContourBaseControler.cpp.

References manualContourBaseControler::_created.

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

00355 {
00356         _created = condition;
00357 }

Here is the caller graph for this function:

bool manualContourBaseControler::GetIfCompleteCreation (  )  [inherited]

Definition at line 359 of file manualContourBaseControler.cpp.

References manualContourBaseControler::_created.

Referenced by manualContourBaseControler::MouseReleaseLeft().

00360 {
00361         return _created;
00362 }

Here is the caller graph for this function:

void manualContourBaseControler::SetKeyBoardMoving ( bool  condition  )  [inherited]

Definition at line 364 of file manualContourBaseControler.cpp.

References manualContourBaseControler::_keyBoardMoving.

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

00365 {
00366         _keyBoardMoving = condition;
00367 }

Here is the caller graph for this function:

bool manualContourBaseControler::GetKeyBoardMoving (  )  [inherited]

Definition at line 369 of file manualContourBaseControler.cpp.

References manualContourBaseControler::_keyBoardMoving.

Referenced by manualContourBaseControler::OnChar().

00370 {
00371         return _keyBoardMoving;
00372 }

Here is the caller graph for this function:

void manualContourBaseControler::CreateNewManualContour (  )  [inherited]

Definition at line 374 of file manualContourBaseControler.cpp.

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

Referenced by wxWidgetMesure2D::ConfigureA(), wxEmptyPanel_3_Widget::ConfigureVTK(), ContourVOIWidget::ConfigureVTK(), wxMaracasCoutourTool::ConfigureVTK(), manualContourContainer::createLumenContour(), wxImageViewerWidget::CreateNewManualContour(), manualContourContainer::createWallContour(), wxMaracasImageBrowser02::LoadData(), manualContourContainer::refreshLumen(), manualContourContainer::refreshWall(), manualContourContainer::restartLumenContour(), and manualContourContainer::restartWallContour().

00374                                                        {
00375         _manViewBaseCont->CreateNewContour();
00376 }

Here is the call graph for this function:

Here is the caller graph for this function:

int manualContourBaseControler::GetNumberOfPointsManualContour (  )  [inherited]

Definition at line 378 of file manualContourBaseControler.cpp.

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

Referenced by manualContourControler::MouseClickLeft().

00378                                                                   {
00379         return _manViewBaseCont->GetNumberOfPoints();
00380 }

Here is the call graph for this function:

Here is the caller graph for this function:

int manualContourBaseControler::GetNumberOfPointsSplineManualContour (  )  [inherited]

Definition at line 384 of file manualContourBaseControler.cpp.

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

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

00384                                                                         {
00385         //return _manViewBaseCont->GetNumberOfPointsSpline();
00386         return _manContModel->GetNumberOfPointsSpline();
00387 }

Here is the call graph for this function:

Here is the caller graph for this function:

void manualContourBaseControler::DeleteContour (  )  [inherited]

Definition at line 398 of file manualContourBaseControler.cpp.

References manualContourBaseControler::_manContModel, manualContourBaseControler::_manViewBaseCont, manualContourModel::DeleteAllPoints(), and manualViewBaseContour::DeleteContour().

Referenced by wxImageViewerWidget::EraseManualContour(), and manualContourBaseControler::ResetContour().

00398                                               {
00399         _manViewBaseCont->DeleteContour();
00400         _manContModel->DeleteAllPoints();
00401 }

Here is the call graph for this function:

Here is the caller graph for this function:

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

Reimplemented in manualCircleControler, manualContour3V3DControler, manualContour3VControler, manualContourPerpPlaneControler, manualLineControler, and manualRoiControler.

Definition at line 403 of file manualContourBaseControler.cpp.

References manualContourBaseControler::_manContModel, manualContourBaseControler::_manViewBaseCont, manualContourBaseControler::_state, manualViewBaseContour::DeletePoint(), manualContourModel::DeletePoint(), manualViewBaseContour::GetIdPoint(), manualContourModel::GetSizeLstPoints(), and manualContourBaseControler::GetZ().

Referenced by manualContourPerpPlaneControler::DeleteActualMousePoint(), manualContour3VControler::DeleteActualMousePoint(), manualContour3V3DControler::DeleteActualMousePoint(), wxImageViewerWidget::ExecuteEvent2(), and manualContourBaseControler::OnChar().

00404 {
00405         if ((_manContModel!=NULL) && (_manViewBaseCont!=NULL) )
00406         {
00407                 int id=_manViewBaseCont->GetIdPoint(x,y,GetZ());
00408                 if ((id!=-1) && (_manContModel->GetSizeLstPoints()>2) ){
00409                         _manContModel->DeletePoint(id);
00410                         _manViewBaseCont->DeletePoint(id);
00411                 }
00412         }
00413         _state = 0;
00414 }

Here is the call graph for this function:

Here is the caller graph for this function:

double * manualContourBaseControler::GetVectorPointsXManualContour (  )  [inherited]

Definition at line 390 of file manualContourBaseControler.cpp.

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

Referenced by wxImageViewerWidget::GetVectorPointsXManualContour(), manualContourContainer::getXVectorLumenPoints(), and manualContourContainer::getXVectorWallPoints().

00390                                                                  {
00391         return _manViewBaseCont->GetVectorPointsXManualContour();
00392 }

Here is the call graph for this function:

Here is the caller graph for this function:

double * manualContourBaseControler::GetVectorPointsYManualContour (  )  [inherited]

Definition at line 394 of file manualContourBaseControler.cpp.

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

Referenced by wxImageViewerWidget::GetVectorPointsYManualContour(), manualContourContainer::getYVectorLumenPoints(), and manualContourContainer::getYVectorWallPoints().

00394                                                                  {
00395         return _manViewBaseCont->GetVectorPointsYManualContour();
00396 }

Here is the call graph for this function:

Here is the caller graph for this function:

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

Definition at line 440 of file manualContourBaseControler.cpp.

References manualContourBaseControler::_z.

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

00441 {
00442         _z=z;
00443 }

Here is the caller graph for this function:

int manualContourBaseControler::GetZ (  )  [virtual, inherited]

Definition at line 445 of file manualContourBaseControler.cpp.

References manualContourBaseControler::_z.

Referenced by manualContourPerpPlaneControler::DeleteActualMousePoint(), manualContourBaseControler::DeleteActualMousePoint(), manualContour3VControler::DeleteActualMousePoint(), manualContour3V3DControler::DeleteActualMousePoint(), manualRoiControler::InitRoi(), manualLineControler::InitRoi(), manualCircleControler::InitRoi(), manualContourBaseControler::Magnet(), manualRoiControler::MouseClickLeft(), manualLineControler::MouseClickLeft(), manualContourControler::MouseClickLeft(), manualCircleControler::MouseClickLeft(), manualContourBaseControler::MouseDLeft(), manualRoiControler::MouseMove(), manualLineControler::MouseMove(), manualContourPerpPlaneControler::MouseMove(), manualContourControler::MouseMove(), manualContour3VControler::MouseMove(), manualContour3V3DControler::MouseMove(), manualCircleControler::MouseMove(), manualContourBaseControler::MouseReleaseLeft(), and manualContourBaseControler::OnMiddleButtonDown().

00446 {
00447         return _z;
00448 }

Here is the caller graph for this function:

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

Reimplemented in manualContour3V3DControler, manualContour3VControler, and manualContourPerpPlaneControler.

Definition at line 450 of file manualContourBaseControler.cpp.

References manualViewBaseContour::AddPoint(), manualContourModel::AddPoint(), manualContourBaseControler::GetManualContourModel(), manualContourBaseControler::GetManualViewBaseContour(), and manualViewBaseContour::TransfromCoordViewWorld().

Referenced by manualContourPerpPlaneControler::AddPoint(), manualContour3V3DControler::AddPoint(), manualRoiControler::InitRoi(), manualLineControler::InitRoi(), manualCircleControler::InitRoi(), manualRoiControler::MouseClickLeft(), manualLineControler::MouseClickLeft(), manualContourControler::MouseClickLeft(), and manualCircleControler::MouseClickLeft().

00451 {
00452         if (GetManualContourModel()!=NULL){
00453                 double  xx      = x;
00454                 double  yy      = y;
00455                 double  zz      = z;
00456                 GetManualViewBaseContour()->TransfromCoordViewWorld(xx,yy,zz);
00457                 /*int   id              =*/  GetManualContourModel()->AddPoint(xx,yy,zz);  // JPRx
00458                 GetManualViewBaseContour()->AddPoint();
00459 //              GetManualViewBaseContour()->UpdateViewPoint(id);
00460         }
00461 }

Here is the call graph for this function:

Here is the caller graph for this function:

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

Reimplemented in manualContour3VControler.

Definition at line 486 of file manualContourBaseControler.cpp.

References manualContourBaseControler::_manContModel, manualContourModel::GetManualPoint(), manualContourBaseControler::GetManualViewBaseContour(), manualPoint::SetPoint(), manualViewBaseContour::TransfromCoordViewWorld(), and manualViewBaseContour::UpdateViewPoint().

Referenced by manualRoiControler::MouseMove(), manualLineControler::MouseMove(), manualContourControler::MouseMove(), and manualCircleControler::MouseMove().

00486                                                                        { // virtual
00487         if ((GetManualViewBaseContour()!=NULL) && (id>=0)){
00488                 double xx = x;
00489                 double yy = y;
00490                 double zz = z;
00491                 GetManualViewBaseContour()->TransfromCoordViewWorld(xx,yy,zz);
00492                 manualPoint             *mp             = _manContModel->GetManualPoint(id);
00493                 mp->SetPoint(xx,yy,zz);
00494                 GetManualViewBaseContour()->UpdateViewPoint(id);
00495         }
00496 }

Here is the call graph for this function:

Here is the caller graph for this function:

void manualContourBaseControler::SetPointX ( int  id,
int  x 
) [inherited]

Definition at line 498 of file manualContourBaseControler.cpp.

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

Referenced by manualRoiControler::MouseMove().

00498                                                           {
00499         if ((GetManualViewBaseContour()!=NULL) && (id>=0)){
00500                 double xx = x;
00501                 double yy = 0;
00502                 double zz = 0;
00503                 GetManualViewBaseContour()->TransfromCoordViewWorld(xx,yy,zz);
00504                 manualPoint             *mp             = _manContModel->GetManualPoint(id);
00505                 mp->SetPointX(xx);
00506                 GetManualViewBaseContour()->UpdateViewPoint(id);
00507         }
00508 }

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 510 of file manualContourBaseControler.cpp.

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

Referenced by manualRoiControler::MouseMove().

00510                                                           {
00511         if ((GetManualViewBaseContour()!=NULL) && (id>=0)){
00512                 double xx = 0;
00513                 double yy = y;
00514                 double zz = 0;
00515                 GetManualViewBaseContour()->TransfromCoordViewWorld(xx,yy,zz);
00516                 manualPoint             *mp             = _manContModel->GetManualPoint(id);
00517                 mp->SetPointY(yy);
00518                 GetManualViewBaseContour()->UpdateViewPoint(id);
00519         }
00520 }

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 522 of file manualContourBaseControler.cpp.

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

00522                                                           {
00523         if ((GetManualViewBaseContour()!=NULL) && (id>=0)){
00524                 double xx = 0;
00525                 double yy = 0;
00526                 double zz = z;
00527                 GetManualViewBaseContour()->TransfromCoordViewWorld(xx,yy,zz);
00528                 manualPoint             *mp             = _manContModel->GetManualPoint(id);
00529                 mp->SetPointZ(zz);
00530                 GetManualViewBaseContour()->UpdateViewPoint(id);
00531         }
00532 }

Here is the call graph for this function:

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

Definition at line 417 of file manualContourBaseControler.cpp.

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

Referenced by manualContourBaseControler::OnChar().

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

Here is the call graph for this function:

Here is the caller graph for this function:

void manualContourBaseControler::ResetContour (  )  [virtual, inherited]

Reimplemented in manualContour3V3DControler, manualContour3VControler, and manualContourPerpPlaneControler.

Definition at line 534 of file manualContourBaseControler.cpp.

References manualViewBaseContour::CreateNewContour(), manualContourBaseControler::DeleteContour(), manualContourBaseControler::GetManualViewBaseContour(), and manualContourBaseControler::SetState().

Referenced by manualContourPerpPlaneControler::ResetContour(), manualContour3VControler::ResetContour(), and manualContour3V3DControler::ResetContour().

00535 {
00536         this->DeleteContour();
00537         GetManualViewBaseContour()->CreateNewContour();
00538         this->SetState(0);
00539 }

Here is the call graph for this function:

Here is the caller graph for this function:

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:

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

Definition at line 72 of file InteractorStyleMaracas.cxx.

00073 {
00074         return true;
00075 }

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:

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 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 InteractorStyleMaracas::SetActive ( bool  active  )  [inherited]

Definition at line 111 of file InteractorStyleMaracas.cxx.

References InteractorStyleMaracas::_active.

Referenced by wxWidgetMesure2D::ActiveMessureTool(), wxWidgetMesure2D::ConfigureA(), wxEmptyPanel_3_Widget::ConfigureVTK(), ContourVOIWidget::ConfigureVTK(), wxMaracasCoutourTool::ConfigureVTK(), wxImageViewerWidget::ConstructVTK(), InteractorStyleMaracas::CopyAttributesTo(), manualContourContainer::createLumenContour(), wxImageViewerWidget::CreateNewManualContour(), manualContourContainer::createWallContour(), wxMaracasImageBrowser02::LoadData(), wxMaracasImageBrowser02::OnBtnResetRoi(), manualContourContainer::refreshLumen(), manualContourContainer::refreshWall(), manualContourContainer::restartLumenContour(), manualContourContainer::restartWallContour(), vtkInteractorStyleBaseView::SetActiveAllInteractors(), and wxMaracasImageBrowser02::SetROI().

00112 {
00113         _active = active;
00114 }

Here is the caller graph for this function:

bool InteractorStyleMaracas::GetActive (  )  [inherited]

Definition at line 116 of file InteractorStyleMaracas.cxx.

References InteractorStyleMaracas::_active.

Referenced by vtkInteractorStyleBaseView::CallLstInteractorStyleMaracas().

00117 {
00118         return _active;
00119 }

Here is the caller graph for this function:


Member Data Documentation

vtkMPRBaseData* manualContour3DControler::_vtkmprbasedata [private]

Definition at line 31 of file manualContour3DControler.h.

Referenced by GetVtkMPRBaseData(), and SetVtkMPRBaseData().

int manualContourControler::_bakIdPoint [protected, inherited]

Definition at line 28 of file manualContourControler.h.

Referenced by manualContourControler::MouseClickLeft(), and manualContourControler::MouseMove().

vtkInteractorStyleBaseView* InteractorStyleMaracas::_vtkInteractorStyleBaseView [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(), MouseClickLeft(), manualContourPerpPlaneControler::MouseDLeft(), manualContourControler::MouseDLeft(), manualContourPerpPlaneControler::MouseMove(), manualContourControler::MouseMove(), manualContour3V3DControler::MouseMove(), manualContour3VControler::MouseMove_Others(), manualContourBaseControler::OnChar(), OnChar(), manualContour3VControler::OnChar_Others(), vtkInteractorStyleSphere::OnLeftButtonDown(), vtkInteractorStylePlane2D::OnLeftButtonDown(), vtkInteractorStyleMPRView::OnLeftButtonDown(), manualContourBaseControler::OnLeftButtonDown(), 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(), manualInteractorWindowLevel::OnMouseMove(), manualContourBaseControler::OnMouseMove(), vtkInteractorStyleSphere::OnRightButtonDown(), vtkInteractorScrollZ::OnRightButtonDown(), manualContourBaseControler::OnRightButtonDown(), vtkInteractorStyleSphere::OnRightButtonUp(), InteractorStyleMaracas::RemoveVtkInteractorStyleBaseView(), vtkInteractorStyle3DView::SelectMarchibCubePoint(), and InteractorStyleMaracas::SetVtkInteractorStyleBaseView().


The documentation for this class was generated from the following files:
Generated on Wed Jul 29 16:35:44 2009 for creaMaracasVisu_lib by  doxygen 1.5.3