#include <wxMaracasEmptyPanel_2.h>
Public Member Functions | |
wxMaracasEmptyPanel_2 (wxWindow *parent, marInterface *mar) | |
~wxMaracasEmptyPanel_2 () | |
void | ConfigureVTK () |
Private Attributes | |
wxEmptyPanelWidget_2 * | _emptyPanel_2 |
Definition at line 30 of file wxMaracasEmptyPanel_2.h.
wxMaracasEmptyPanel_2::wxMaracasEmptyPanel_2 | ( | wxWindow * | parent, | |
marInterface * | mar | |||
) |
Definition at line 21 of file wxMaracasEmptyPanel_2.cxx.
References _emptyPanel_2.
00022 : wxPanel( parent, -1, wxDefaultPosition, wxDefaultSize, wxTAB_TRAVERSAL) 00023 { 00024 // Create the main frame window 00025 _emptyPanel_2 = new wxEmptyPanelWidget_2( this,mar ); 00026 wxBoxSizer* szTop = new wxBoxSizer( wxVERTICAL ); 00027 szTop->Add( _emptyPanel_2, 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_2::~wxMaracasEmptyPanel_2 | ( | ) |
Definition at line 35 of file wxMaracasEmptyPanel_2.cxx.
void wxMaracasEmptyPanel_2::ConfigureVTK | ( | ) |
Definition at line 40 of file wxMaracasEmptyPanel_2.cxx.
References _emptyPanel_2, and wxEmptyPanelWidget_2::ConfigureVTK().
00041 { 00042 _emptyPanel_2->ConfigureVTK(); 00043 }
Definition at line 37 of file wxMaracasEmptyPanel_2.h.
Referenced by ConfigureVTK(), and wxMaracasEmptyPanel_2().