45 #if defined(__WXGTK__) || defined(__WXX11__) || defined(__WXMOTIF__) || defined(__WXMAC__)
46 #include "res/bitmaps/authors.xpm"
52 wxDialog(parent, id, wxString(title, wxConvUTF8), pos, size, style)
56 wxPanel *logoPanel =
new wxPanel(
this,-1);
57 logoPanel->SetBackgroundColour(wxColour(0,0,153));
58 wxStaticBitmap *logo =
new wxStaticBitmap(logoPanel, -1, wxBITMAP( authors ),wxPoint(0,0));
59 wxBoxSizer *logoSizer =
new wxBoxSizer(wxVERTICAL );
60 int wx=logo->GetBitmap().GetWidth();
61 int wy=logo->GetBitmap().GetHeight();
62 logoPanel->SetSize(wx,wy);
64 logoPanel->SetSizer(logoSizer);
65 logoPanel->SetAutoLayout(
true);
67 wxBoxSizer *sizer =
new wxBoxSizer(wxVERTICAL );
68 sizer->Add(logoPanel, 0, wxALIGN_CENTRE_VERTICAL|wxALIGN_CENTER_HORIZONTAL, 0);
70 this->SetSizer(sizer);
71 this->SetAutoLayout(
true);