#include <wxMaracasPathology_01.h>
Public Member Functions | |
wxMaracasPathology_01 (wxWindow *parent, marInterface *mar) | |
~wxMaracasPathology_01 () | |
void | ConfigureVTK () |
void | ConfigureVTK (vtkImageData *imagedata, int x, int y, int z, double param) |
Private Attributes | |
wxPathologyWidget_01 * | _pathologywidget |
Definition at line 30 of file wxMaracasPathology_01.h.
wxMaracasPathology_01::wxMaracasPathology_01 | ( | wxWindow * | parent, | |
marInterface * | mar | |||
) |
Definition at line 21 of file wxMaracasPathology_01.cxx.
References _pathologywidget.
00022 : wxPanel( parent, -1, wxDefaultPosition, wxDefaultSize, wxTAB_TRAVERSAL) 00023 { 00024 // Create the main frame window 00025 _pathologywidget = new wxPathologyWidget_01( this,mar ); 00026 00027 00028 wxBoxSizer* szTop = new wxBoxSizer( wxVERTICAL ); 00029 szTop->Add( _pathologywidget, 1 , wxEXPAND | wxALL , 0 ); 00030 szTop->Fit( this ); 00031 szTop->SetSizeHints( this ); 00032 this->SetAutoLayout( true ); 00033 this->SetSizer( szTop ); 00034 this->Layout(); 00035 }
wxMaracasPathology_01::~wxMaracasPathology_01 | ( | ) |
Definition at line 37 of file wxMaracasPathology_01.cxx.
void wxMaracasPathology_01::ConfigureVTK | ( | vtkImageData * | imagedata, | |
int | x, | |||
int | y, | |||
int | z, | |||
double | param | |||
) |
Definition at line 47 of file wxMaracasPathology_01.cxx.
References _pathologywidget, and wxPathologyWidget_01::ConfigureVTK().
00047 { 00048 _pathologywidget->ConfigureVTK(imagedata, x, y, z, param ); 00049 }
void wxMaracasPathology_01::ConfigureVTK | ( | ) |
Definition at line 42 of file wxMaracasPathology_01.cxx.
References _pathologywidget, and wxPathologyWidget_01::ConfigureVTK().
00043 { 00044 _pathologywidget->ConfigureVTK(); 00045 }
Definition at line 38 of file wxMaracasPathology_01.h.
Referenced by ConfigureVTK(), and wxMaracasPathology_01().