#include <wxMaracasEmptyPanel.h>
Public Member Functions | |
wxMaracasEmptyPanel (wxFrame *parent) | |
~wxMaracasEmptyPanel () | |
void | ConfigureVTK (vtkImageData *imagedata, int x, int y, int z) |
Private Attributes | |
wxEmptyPanelWidget * | _emptyPanel |
Definition at line 29 of file wxMaracasEmptyPanel.h.
wxMaracasEmptyPanel::wxMaracasEmptyPanel | ( | wxFrame * | parent | ) |
Definition at line 21 of file wxMaracasEmptyPanel.cxx.
References _emptyPanel.
00022 : wxPanel( parent, -1, wxDefaultPosition, wxDefaultSize, wxTAB_TRAVERSAL) 00023 { 00024 // Create the main frame window 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 }
wxMaracasEmptyPanel::~wxMaracasEmptyPanel | ( | ) |
Definition at line 35 of file wxMaracasEmptyPanel.cxx.
void wxMaracasEmptyPanel::ConfigureVTK | ( | vtkImageData * | imagedata, | |
int | x, | |||
int | y, | |||
int | z | |||
) |
Definition at line 40 of file wxMaracasEmptyPanel.cxx.
References _emptyPanel, and wxEmptyPanelWidget::ConfigureVTK().
00041 { 00042 _emptyPanel->ConfigureVTK(imagedata, x, y, z ); 00043 }
Definition at line 36 of file wxMaracasEmptyPanel.h.
Referenced by ConfigureVTK(), and wxMaracasEmptyPanel().