wxMaracasHelpDialog Class Reference

Dialog class that show authors ... More...

#include <wxMaracasHelpDialog.h>

List of all members.

Public Member Functions

 wxMaracasHelpDialog (wxWindow *parent, int id, const char *title="Maracas Help", const wxPoint &pos=wxPoint(400, 275), const wxSize &size=wxSize(1000, 600), long style=wxDEFAULT_DIALOG_STYLE)


Detailed Description

Dialog class that show authors ...

Definition at line 27 of file wxMaracasHelpDialog.h.


Constructor & Destructor Documentation

wxMaracasHelpDialog::wxMaracasHelpDialog ( wxWindow *  parent,
int  id,
const char *  title = "Maracas Help",
const wxPoint &  pos = wxPoint(400, 275),
const wxSize &  size = wxSize(1000, 600),
long  style = wxDEFAULT_DIALOG_STYLE 
)

Definition at line 26 of file wxMaracasHelpDialog.cxx.

00026                                                                                                                                        :
00027     wxDialog(parent, id, wxString(title, wxConvUTF8), pos, size, style)
00028 {
00029 
00030 
00031         wxPanel                 *logoPanel      = new wxPanel(this,-1);
00032         logoPanel->SetBackgroundColour(wxColour(0,0,153));
00033     wxStaticBitmap      *logo           = new wxStaticBitmap(logoPanel, -1, wxBITMAP( authors ),wxPoint(0,0));
00034         wxBoxSizer              *logoSizer      = new wxBoxSizer(wxVERTICAL );
00035         int wx=logo->GetBitmap().GetWidth();
00036         int wy=logo->GetBitmap().GetHeight();
00037         logoPanel->SetSize(wx,wy);
00038         logoSizer->Add(logo);
00039         logoPanel->SetSizer(logoSizer);
00040         logoPanel->SetAutoLayout(true);
00041 
00042         wxBoxSizer              *sizer          = new wxBoxSizer(wxVERTICAL );
00043         sizer->Add(logoPanel,   0, wxALIGN_CENTRE_VERTICAL|wxALIGN_CENTER_HORIZONTAL, 0);
00044 
00045         this->SetSizer(sizer);
00046         this->SetAutoLayout(true);
00047         SetSize(wx,wy+20);
00048         
00049 
00050 }


The documentation for this class was generated from the following files:
Generated on Wed Jul 29 16:36:19 2009 for creaMaracasVisu_lib by  doxygen 1.5.3