wxMaracasEmptyPanel.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 "wxMaracasEmptyPanel.h"
00019
00020
00021 wxMaracasEmptyPanel::wxMaracasEmptyPanel( wxFrame* parent )
00022 : wxPanel( parent, -1, wxDefaultPosition, wxDefaultSize, wxTAB_TRAVERSAL)
00023 {
00024
00025 _emptyPanel = new wxEmptyPanelWidget( this );
00026 wxBoxSizer* szTop = new wxBoxSizer( wxVERTICAL );
00027 szTop->Add( _emptyPanel, 1 , wxEXPAND | wxALL , 0 );
00028 szTop->Fit( this );
00029 szTop->SetSizeHints( this );
00030 this->SetAutoLayout( true );
00031 this->SetSizer( szTop );
00032 this->Layout();
00033 }
00034
00035 wxMaracasEmptyPanel::~wxMaracasEmptyPanel( )
00036 {
00037
00038 }
00039
00040 void wxMaracasEmptyPanel::ConfigureVTK( vtkImageData *imagedata, int x, int y, int z )
00041 {
00042 _emptyPanel->ConfigureVTK(imagedata, x, y, z );
00043 }
00044
00045
00046
00047
00048
00049
00050