/*========================================================================= Program: wxMaracas Module: $RCSfile: wxMaracasEmptyPanel_2.cxx,v $ Language: C++ Date: $Date: 2009/05/14 13:54:54 $ Version: $Revision: 1.1 $ Copyright: (c) 2002, 2003 License: This software is distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the above copyright notice for more information. =========================================================================*/ #include "wxMaracasEmptyPanel_2.h" wxMaracasEmptyPanel_2::wxMaracasEmptyPanel_2( wxWindow* parent,marInterface *mar) : wxPanel( parent, -1, wxDefaultPosition, wxDefaultSize, wxTAB_TRAVERSAL) { // Create the main frame window _emptyPanel_2 = new wxEmptyPanelWidget_2( this,mar ); wxBoxSizer* szTop = new wxBoxSizer( wxVERTICAL ); szTop->Add( _emptyPanel_2, 1 , wxEXPAND | wxALL , 0 ); szTop->Fit( this ); szTop->SetSizeHints( this ); this->SetAutoLayout( true ); this->SetSizer( szTop ); this->Layout(); } //---------------------------------------------------------------------------- wxMaracasEmptyPanel_2::~wxMaracasEmptyPanel_2( ) { // Nothing } //---------------------------------------------------------------------------- void wxMaracasEmptyPanel_2::ConfigureVTK() { _emptyPanel_2->ConfigureVTK(); } //---------------------------------------------------------------------------- // EOF - wxMaracasEmptyPanel.cxx