wxMaracasPathology_01.cxx

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   wxMaracas
00004   Module:    $RCSfile: wxMaracasPathology_01.cxx,v $
00005   Language:  C++
00006   Date:      $Date: 2009/05/14 13:54:54 $
00007   Version:   $Revision: 1.1 $
00008 
00009   Copyright: (c) 2002, 2003
00010   License:
00011 
00012      This software is distributed WITHOUT ANY WARRANTY; without even
00013      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
00014      PURPOSE.  See the above copyright notice for more information.
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   // 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 }
00036 //----------------------------------------------------------------------------
00037 wxMaracasPathology_01::~wxMaracasPathology_01( )
00038 {
00039   // Nothing
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 // EOF - wxMaracasPathology_01.cxx
00053 

Generated on 18 Mar 2010 for creaMaracasVisu_lib by  doxygen 1.6.1