wxMaracasEmptyPanel Class Reference

#include <wxMaracasEmptyPanel.h>

Collaboration diagram for wxMaracasEmptyPanel:
Collaboration graph
[legend]

List of all members.

Public Member Functions

 wxMaracasEmptyPanel (wxFrame *parent)
 ~wxMaracasEmptyPanel ()
void ConfigureVTK (vtkImageData *imagedata, int x, int y, int z)

Private Attributes

wxEmptyPanelWidget_emptyPanel

Detailed Description

Definition at line 29 of file wxMaracasEmptyPanel.h.


Constructor & Destructor Documentation

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.

00036 {
00037   // Nothing
00038 }


Member Function Documentation

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 }

Here is the call graph for this function:


Member Data Documentation

Definition at line 36 of file wxMaracasEmptyPanel.h.

Referenced by ConfigureVTK(), and wxMaracasEmptyPanel().


The documentation for this class was generated from the following files:

Generated on 18 Mar 2010 for creaMaracasVisu_lib by  doxygen 1.6.1