wxMaracasPathology_01.cxx
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #include "wxMaracasPathology_01.h"
00019
00020
00021 wxMaracasPathology_01::wxMaracasPathology_01( wxWindow* parent,marInterface *mar)
00022 : wxPanel( parent, -1, wxDefaultPosition, wxDefaultSize, wxTAB_TRAVERSAL)
00023 {
00024
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 }
00036
00037 wxMaracasPathology_01::~wxMaracasPathology_01( )
00038 {
00039
00040 }
00041
00042 void wxMaracasPathology_01::ConfigureVTK()
00043 {
00044 _pathologywidget->ConfigureVTK();
00045 }
00046
00047 void wxMaracasPathology_01::ConfigureVTK(vtkImageData *imagedata, int x, int y, int z, double param){
00048 _pathologywidget->ConfigureVTK(imagedata, x, y, z, param );
00049 }
00050
00051
00052
00053