1 /*=========================================================================
4 Module: $RCSfile: wxMaracasEmptyPanel_2.cxx,v $
6 Date: $Date: 2008/10/31 16:32:09 $
7 Version: $Revision: 1.1 $
9 Copyright: (c) 2002, 2003
12 This software is distributed WITHOUT ANY WARRANTY; without even
13 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
14 PURPOSE. See the above copyright notice for more information.
16 =========================================================================*/
18 #include "wxMaracasEmptyPanel_2.h"
21 wxMaracasEmptyPanel_2::wxMaracasEmptyPanel_2( wxWindow* parent,marInterface *mar)
22 : wxPanel( parent, -1, wxDefaultPosition, wxDefaultSize, wxTAB_TRAVERSAL)
24 // Create the main frame window
25 _emptyPanel_2 = new wxEmptyPanelWidget_2( this,mar );
26 wxBoxSizer* szTop = new wxBoxSizer( wxVERTICAL );
27 szTop->Add( _emptyPanel_2, 1 , wxEXPAND | wxALL , 0 );
29 szTop->SetSizeHints( this );
30 this->SetAutoLayout( true );
31 this->SetSizer( szTop );
34 //----------------------------------------------------------------------------
35 wxMaracasEmptyPanel_2::~wxMaracasEmptyPanel_2( )
39 //----------------------------------------------------------------------------
40 void wxMaracasEmptyPanel_2::ConfigureVTK()
42 _emptyPanel_2->ConfigureVTK();
44 //----------------------------------------------------------------------------
46 // EOF - wxMaracasEmptyPanel.cxx