--- AE/Installer/trunk/source/about.cpp 2009/07/06 13:20:11 389 +++ AE/Installer/trunk/source/about.cpp 2010/04/25 03:44:19 512 @@ -1,34 +1,19 @@ -///////////////////////////////////////////////////////////////////////////// -// Name: about.cpp -// Purpose: -// Author: -// Modified by: -// Created: 08/05/2009 11:10:32 -// RCS-ID: -// Copyright: -// Licence: -///////////////////////////////////////////////////////////////////////////// - -// For compilers that support precompilation, includes "wx/wx.h". -#include "wx/wxprec.h" - -#ifdef __BORLANDC__ -#pragma hdrstop -#endif - -#ifndef WX_PRECOMP -#include "wx/wx.h" -#endif +/***************************************************************************\ +| Project: AE Installer | +| By: Gumby & Iritscen | +| File: About.cpp | +| Function: Handles the About window! | +| Created: 08/05/2009 11:10:32 | +\***************************************************************************/ ////@begin includes ////@end includes - +#include "globals.h" #include "about.h" ////@begin XPM images ////@end XPM images - /* * About type definition */ @@ -70,17 +55,17 @@ About::About( wxWindow* parent, wxWindow bool About::Create( wxWindow* parent, wxWindowID id, const wxString& caption, const wxPoint& pos, const wxSize& size, long style ) { -////@begin About creation + ////@begin About creation SetExtraStyle(wxWS_EX_BLOCK_EVENTS); wxDialog::Create( parent, id, caption, pos, size, style ); - + CreateControls(); if (GetSizer()) { GetSizer()->SetSizeHints(this); } Centre(); -////@end About creation + ////@end About creation return true; } @@ -91,8 +76,8 @@ bool About::Create( wxWindow* parent, wx About::~About() { -////@begin About destruction -////@end About destruction + ////@begin About destruction + ////@end About destruction } @@ -102,8 +87,8 @@ About::~About() void About::Init() { -////@begin About member initialisation -////@end About member initialisation + ////@begin About member initialisation + ////@end About member initialisation } @@ -113,36 +98,52 @@ void About::Init() void About::CreateControls() { -////@begin About content construction + ////@begin About content construction About* itemDialog1 = this; - + wxBoxSizer* itemBoxSizer2 = new wxBoxSizer(wxVERTICAL); itemDialog1->SetSizer(itemBoxSizer2); - - wxPanel* itemPanel3 = new wxPanel( itemDialog1, ID_PANEL2, wxDefaultPosition, wxDefaultSize, wxNO_BORDER|wxTAB_TRAVERSAL ); + + wxPanel* itemPanel3 = new wxPanel( itemDialog1, ID_PANEL2, wxDefaultPosition, wxDefaultSize, wxNO_BORDER|wxTAB_TRAVERSAL ); itemBoxSizer2->Add(itemPanel3, 0, wxALIGN_CENTER_HORIZONTAL|wxALL, 5); - + wxBoxSizer* itemBoxSizer4 = new wxBoxSizer(wxVERTICAL); itemPanel3->SetSizer(itemBoxSizer4); - - wxStaticText* itemStaticText5 = new wxStaticText( itemPanel3, wxID_STATIC, _("Mod Installer v1.0\nby Gumby and Iritscen\n\nAE credited to:\nEdT: BGI troops, additional weapons\ngeyser: Original creator\nGumby: Not much :)\nLoser: All his animation work\nNeo: Making OniSplit, documenting Oni, and lots of technical support\nONIrules: Additional weapons\nParadox: More documenting of Oni\nRossyMiles: Daodan DLL port to C\nSeventeen Seconds: Additional weapons\nSFeLi: Original Daodan DLL\nssg: Documenting Oni"), wxDefaultPosition, wxDefaultSize, wxNO_BORDER ); + + string aboutText = "AE/Mod Installer v"; + aboutText = aboutText + INSTALLER_VERSION; + aboutText = aboutText + "\nby Gumby and Iritscen\n\n" + + "AE credited to:\n" + + "EdT: BGI troops, additional weapons\n" + + "geyser: Original AE framework\n" + + "Gumby: General AE framework, Windows Installer, add'l Daodan DLL coding\n" + + "Iritscen: Mac port of Installer & add'l Installer coding\n" + + "Loser: Improved combat animation and AI\n" + + "Neo: OniSplit, documenting Oni, tech support\n" + + "ONIrules: Additional weapons\n" + + "Paradox: Documenting of Oni\n" + + "RossyMiles: Daodan DLL port to C\n" + + "SFeLi: Original asm Daodan DLL\n" + + "ssg: Documenting Oni's game data"; + wxStaticText* itemStaticText5 = new wxStaticText( itemPanel3, wxID_STATIC, _(aboutText.c_str()), wxDefaultPosition, wxDefaultSize, wxNO_BORDER ); itemBoxSizer4->Add(itemStaticText5, 0, wxALIGN_LEFT|wxALL, 5); - + wxStaticLine* itemStaticLine6 = new wxStaticLine( itemPanel3, wxID_STATIC, wxDefaultPosition, wxDefaultSize, wxLI_HORIZONTAL ); itemBoxSizer4->Add(itemStaticLine6, 0, wxGROW|wxALL, 5); - - wxStaticText* itemStaticText7 = new wxStaticText( itemPanel3, wxID_STATIC, _("oni.bungie.org"), wxDefaultPosition, wxDefaultSize, 0 ); - itemBoxSizer4->Add(itemStaticText7, 0, wxALIGN_CENTER_HORIZONTAL|wxALL, 5); - + + wxHyperlinkCtrl* oniUrl = new wxHyperlinkCtrl( itemPanel3, wxID_STATIC, "http://oni.bungie.org", "http://oni.bungie.org", + wxDefaultPosition, wxDefaultSize, wxHL_DEFAULT_STYLE); + itemBoxSizer4->Add(oniUrl, 0, wxALIGN_CENTER_HORIZONTAL|wxALL, 5); + wxStdDialogButtonSizer* itemStdDialogButtonSizer8 = new wxStdDialogButtonSizer; - + itemBoxSizer4->Add(itemStdDialogButtonSizer8, 0, wxALIGN_CENTER_HORIZONTAL|wxALL, 5); wxButton* itemButton9 = new wxButton( itemPanel3, wxID_OK, _("&OK"), wxDefaultPosition, wxDefaultSize, 0 ); itemStdDialogButtonSizer8->AddButton(itemButton9); - + itemStdDialogButtonSizer8->Realize(); - -////@end About content construction + + ////@end About content construction } @@ -162,10 +163,10 @@ bool About::ShowToolTips() wxBitmap About::GetBitmapResource( const wxString& name ) { // Bitmap retrieval -////@begin About bitmap retrieval + ////@begin About bitmap retrieval wxUnusedVar(name); return wxNullBitmap; -////@end About bitmap retrieval + ////@end About bitmap retrieval } /* @@ -175,8 +176,8 @@ wxBitmap About::GetBitmapResource( const wxIcon About::GetIconResource( const wxString& name ) { // Icon retrieval -////@begin About icon retrieval + ////@begin About icon retrieval wxUnusedVar(name); return wxNullIcon; -////@end About icon retrieval + ////@end About icon retrieval }