#include <wxMaracas_SegmentationFM3D.h>
Public Member Functions | |
wxMaracas_SegmentationFM3D (wxWindow *parent, marImageData *marimagedata, double voxelSize) | |
~wxMaracas_SegmentationFM3D () | |
void | ConfigureVTK () |
vtkMPRBaseData * | GetVtkMPRBaseData () |
vtkPlane2DView * | GetVtkPlane2DView () |
Private Attributes | |
wxSegmentationFM3DWidget * | _MPR |
Definition at line 30 of file wxMaracas_SegmentationFM3D.h.
wxMaracas_SegmentationFM3D::wxMaracas_SegmentationFM3D | ( | wxWindow * | parent, | |
marImageData * | marimagedata, | |||
double | voxelSize | |||
) |
Definition at line 26 of file wxMaracas_SegmentationFM3D.cxx.
References _MPR.
00027 : wxPanel( parent, -1, wxDefaultPosition, wxDefaultSize, wxTAB_TRAVERSAL) 00028 { 00029 00030 // Create the main frame window 00031 _MPR = new wxSegmentationFM3DWidget( this, marimagedata , voxelSize); 00032 wxBoxSizer* szTop = new wxBoxSizer( wxVERTICAL ); 00033 szTop->Add( _MPR, 1 , wxEXPAND | wxALL , 0 ); 00034 this->SetAutoLayout( true ); 00035 this->SetSizer( szTop ); 00036 szTop->Fit( this ); 00037 szTop->SetSizeHints( this ); 00038 //EEDxx2.4 00039 // FitInside(); 00040 00041 }
wxMaracas_SegmentationFM3D::~wxMaracas_SegmentationFM3D | ( | ) |
Definition at line 43 of file wxMaracas_SegmentationFM3D.cxx.
void wxMaracas_SegmentationFM3D::ConfigureVTK | ( | ) |
Definition at line 50 of file wxMaracas_SegmentationFM3D.cxx.
References _MPR, and wxSegmentationFM3DWidget::ConfigureVTK().
00051 { 00052 _MPR->ConfigureVTK(); 00053 }
vtkMPRBaseData * wxMaracas_SegmentationFM3D::GetVtkMPRBaseData | ( | ) |
Definition at line 55 of file wxMaracas_SegmentationFM3D.cxx.
References _MPR, and wxSegmentationFM3DWidget::GetVtkMPRBaseData().
00056 { 00057 return _MPR->GetVtkMPRBaseData(); 00058 }
vtkPlane2DView * wxMaracas_SegmentationFM3D::GetVtkPlane2DView | ( | ) |
Definition at line 61 of file wxMaracas_SegmentationFM3D.cxx.
References _MPR, and wxSegmentationFM3DWidget::GetVtkPlane2DView().
00062 { 00063 return _MPR->GetVtkPlane2DView(); 00064 }
Definition at line 40 of file wxMaracas_SegmentationFM3D.h.
Referenced by ConfigureVTK(), GetVtkMPRBaseData(), GetVtkPlane2DView(), and wxMaracas_SegmentationFM3D().