Ignore:
Timestamp:
Jun 1, 2009, 3:51:40 AM (15 years ago)
Author:
iritscen
Message:

Changed Info panel to be set by SetValue() rather than SetLabel()

File:
1 edited

Legend:

Unmodified
Added
Removed
  • AE/Installer/trunk/source/about_window.cpp

    r325 r327  
    7171bool About::Create( wxWindow* parent, wxWindowID id, const wxString& caption, const wxPoint& pos, const wxSize& size, long style )
    7272{
    73 ////@begin About creation
     73        ////@begin About creation
    7474    SetExtraStyle(wxWS_EX_BLOCK_EVENTS);
    7575    wxDialog::Create( parent, id, caption, pos, size, style );
    76 
     76       
    7777    CreateControls();
    7878    if (GetSizer())
     
    8181    }
    8282    Centre();
    83 ////@end About creation
     83        ////@end About creation
    8484    return true;
    8585}
     
    9292About::~About()
    9393{
    94 ////@begin About destruction
    95 ////@end About destruction
     94        ////@begin About destruction
     95        ////@end About destruction
    9696}
    9797
     
    103103void About::Init()
    104104{
    105 ////@begin About member initialisation
    106 ////@end About member initialisation
     105        ////@begin About member initialisation
     106        ////@end About member initialisation
    107107}
    108108
     
    114114void About::CreateControls()
    115115{   
    116 ////@begin About content construction
     116        ////@begin About content construction
    117117    About* itemDialog1 = this;
    118 
     118       
    119119    wxBoxSizer* itemBoxSizer2 = new wxBoxSizer(wxVERTICAL);
    120120    itemDialog1->SetSizer(itemBoxSizer2);
    121 
     121       
    122122    wxPanel* itemPanel3 = new wxPanel( itemDialog1, ID_PANEL2, wxDefaultPosition, wxDefaultSize, wxNO_BORDER|wxTAB_TRAVERSAL );
    123123    itemBoxSizer2->Add(itemPanel3, 0, wxALIGN_CENTER_HORIZONTAL|wxALL, 5);
    124 
     124       
    125125    wxBoxSizer* itemBoxSizer4 = new wxBoxSizer(wxVERTICAL);
    126126    itemPanel3->SetSizer(itemBoxSizer4);
    127 
    128     wxStaticText* itemStaticText5 = new wxStaticText( itemPanel3, wxID_STATIC, _("Mod Installer v1.0\nby Gumby and Iritscen\n\nThe AE was made possible by:\nNeo - Writing OniSplit, documenting Oni, and lots of technical support\nSsg - Documenting Oni\ngeyser - Guiding the AE work, creating original installer\nSFeLi - Writing the original Daodan DLL\nRossyMiles - Porting the Daodan DLL to C\nGumby - name any AE work you've done here or remove your name\nLoser - Fine-tuning tons of animations\nEdT - Making the BGI troops"), wxDefaultPosition, wxDefaultSize, wxNO_BORDER);
     127       
     128    wxStaticText* itemStaticText5 = new wxStaticText( itemPanel3, wxID_STATIC, _("Mod Installer v1.0\nby Gumby and Iritscen\n\nAE credited to:\nNeo - Making Onisplit, documenting Oni, and lots of technical support\ngeyser -  Original creator\nIritscen - Installer and making things work on the Mac\nGumby - Not much :)\nLoser - All his Animation work\nEdT - BGI troops\nSFeLi - Original Daodan DLL\nRossyMiles - Daodan DLL port to C"), wxDefaultPosition, wxDefaultSize, wxNO_BORDER );
    129129    itemBoxSizer4->Add(itemStaticText5, 0, wxALIGN_LEFT|wxALL, 5);
    130 
     130       
    131131    wxStaticLine* itemStaticLine6 = new wxStaticLine( itemPanel3, wxID_STATIC, wxDefaultPosition, wxDefaultSize, wxLI_HORIZONTAL );
    132132    itemBoxSizer4->Add(itemStaticLine6, 0, wxGROW|wxALL, 5);
    133 
    134     wxStaticText* itemStaticText7 = new wxStaticText( itemPanel3, wxID_STATIC, _("oni.bungie.org"), wxDefaultPosition, wxDefaultSize, 0 );
    135     itemBoxSizer4->Add(itemStaticText7, 0, wxALIGN_CENTER_HORIZONTAL|wxALL, 5);
    136 
     133       
     134    wxTextCtrl* itemTextCtrl7 = new wxTextCtrl( itemPanel3, wxID_STATIC, _("oni.bungie.org"), wxDefaultPosition, wxDefaultSize, wxTE_MULTILINE|wxTE_READONLY );
     135    itemBoxSizer4->Add(itemTextCtrl7, 0, wxALIGN_CENTER_HORIZONTAL|wxALL, 5);
     136       
    137137    wxStdDialogButtonSizer* itemStdDialogButtonSizer8 = new wxStdDialogButtonSizer;
    138 
     138       
    139139    itemBoxSizer4->Add(itemStdDialogButtonSizer8, 0, wxALIGN_CENTER_HORIZONTAL|wxALL, 5);
    140140    wxButton* itemButton9 = new wxButton( itemPanel3, wxID_OK, _("&OK"), wxDefaultPosition, wxDefaultSize, 0 );
    141141    itemStdDialogButtonSizer8->AddButton(itemButton9);
    142 
     142       
    143143    itemStdDialogButtonSizer8->Realize();
    144 
    145 ////@end About content construction
     144       
     145        ////@end About content construction
    146146}
    147147
     
    163163{
    164164    // Bitmap retrieval
    165 ////@begin About bitmap retrieval
     165        ////@begin About bitmap retrieval
    166166    wxUnusedVar(name);
    167167    return wxNullBitmap;
    168 ////@end About bitmap retrieval
     168        ////@end About bitmap retrieval
    169169}
    170170
     
    176176{
    177177    // Icon retrieval
    178 ////@begin About icon retrieval
     178        ////@begin About icon retrieval
    179179    wxUnusedVar(name);
    180180    return wxNullIcon;
    181 ////@end About icon retrieval
     181        ////@end About icon retrieval
    182182}
Note: See TracChangeset for help on using the changeset viewer.