12DIALOG_ABOUT_BASE::DIALOG_ABOUT_BASE( wxWindow* parent, wxWindowID 
id, 
const wxString& title, 
const wxPoint& pos, 
const wxSize& size, 
long style ) : wxDialog( parent, id, title, pos, size, style )
 
   14    this->SetSizeHints( wxSize( -1,-1 ), wxDefaultSize );
 
   16    wxBoxSizer* bSizerMain;
 
   17    bSizerMain = 
new wxBoxSizer( wxVERTICAL );
 
   19    wxBoxSizer* bSizerTitle;
 
   20    bSizerTitle = 
new wxBoxSizer( wxHORIZONTAL );
 
   23    bSizerTitle->Add( 0, 0, 1, wxEXPAND, 5 );
 
   25    m_bitmapApp = 
new wxStaticBitmap( 
this, wxID_ANY, wxNullBitmap, wxDefaultPosition, wxDefaultSize, 0 );
 
   26    bSizerTitle->Add( 
m_bitmapApp, 1, wxALIGN_CENTER|wxALL, 5 );
 
   28    wxBoxSizer* b_apptitleSizer;
 
   29    b_apptitleSizer = 
new wxBoxSizer( wxVERTICAL );
 
   31    m_staticTextAppTitle = 
new wxStaticText( 
this, wxID_ANY, 
_(
"App Title"), wxDefaultPosition, wxDefaultSize, wxALIGN_CENTER_HORIZONTAL );
 
   33    m_staticTextAppTitle->SetFont( wxFont( 14, wxFONTFAMILY_DEFAULT, wxFONTSTYLE_NORMAL, wxFONTWEIGHT_BOLD, 
false, wxEmptyString ) );
 
   37    m_staticTextBuildVersion = 
new wxStaticText( 
this, wxID_ANY, 
_(
"Build Version Info"), wxDefaultPosition, wxDefaultSize, wxALIGN_CENTER_HORIZONTAL );
 
   41    m_staticTextLibVersion = 
new wxStaticText( 
this, wxID_ANY, 
_(
"Lib Version Info"), wxDefaultPosition, wxDefaultSize, wxALIGN_CENTER_HORIZONTAL );
 
   46    bSizerTitle->Add( b_apptitleSizer, 10, wxALL|wxEXPAND, 5 );
 
   49    bSizer5 = 
new wxBoxSizer( wxVERTICAL );
 
   52    bSizer5->Add( 0, 0, 1, wxEXPAND, 5 );
 
   54    m_btCopyVersionInfo = 
new wxButton( 
this, wxID_COPY, 
_(
"&Copy Version Info"), wxDefaultPosition, wxDefaultSize, 0 );
 
   59    m_btReportBug = 
new wxButton( 
this, wxID_COPY, 
_(
"&Report Bug"), wxDefaultPosition, wxDefaultSize, 0 );
 
   64    m_btDonate = 
new wxButton( 
this, wxID_COPY, 
_(
"Donate"), wxDefaultPosition, wxDefaultSize, 0 );
 
   67    bSizer5->Add( 
m_btDonate, 0, wxALL|wxEXPAND, 5 );
 
   70    bSizer5->Add( 0, 0, 1, wxEXPAND, 5 );
 
   73    bSizerTitle->Add( bSizer5, 0, wxEXPAND, 10 );
 
   76    bSizerTitle->Add( 0, 0, 1, wxEXPAND, 5 );
 
   79    bSizerMain->Add( bSizerTitle, 0, wxEXPAND, 5 );
 
   81    m_notebook = 
new wxNotebook( 
this, wxID_ANY, wxDefaultPosition, wxDefaultSize, 0 );
 
   85    bSizerMain->Add( 
m_notebook, 2, wxEXPAND | wxALL, 5 );
 
   87    wxBoxSizer* bSizerButtons;
 
   88    bSizerButtons = 
new wxBoxSizer( wxHORIZONTAL );
 
   90    m_btOk = 
new wxButton( 
this, wxID_OK, 
_(
"&OK"), wxDefaultPosition, wxDefaultSize, 0 );
 
   93    bSizerButtons->Add( 
m_btOk, 0, wxALL, 5 );
 
   96    bSizerMain->Add( bSizerButtons, 0, wxALIGN_RIGHT|wxRIGHT|wxLEFT, 5 );
 
   99    this->SetSizer( bSizerMain );