2009-07-28 21:32:10 +00:00
|
|
|
// Copyright (C) 2003 Dolphin Project.
|
2008-12-08 05:30:24 +00:00
|
|
|
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, version 2.0.
|
|
|
|
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License 2.0 for more details.
|
|
|
|
|
|
|
|
// A copy of the GPL 2.0 should have been included with the program.
|
|
|
|
// If not, see http://www.gnu.org/licenses/
|
|
|
|
|
|
|
|
// Official SVN repository and contact information can be found at
|
|
|
|
// http://code.google.com/p/dolphin-emu/
|
2009-02-06 18:04:24 +00:00
|
|
|
|
2008-12-18 00:37:24 +00:00
|
|
|
#include "Common.h"
|
2008-12-08 05:30:24 +00:00
|
|
|
#include "AboutDolphin.h"
|
|
|
|
#include "svnrev.h"
|
|
|
|
#include "CPUDetect.h"
|
|
|
|
#include "../resources/dolphin_logo.cpp"
|
|
|
|
|
|
|
|
BEGIN_EVENT_TABLE(AboutDolphin, wxDialog)
|
|
|
|
EVT_CLOSE(AboutDolphin::OnClose)
|
2010-02-25 06:12:35 +00:00
|
|
|
EVT_BUTTON(wxID_CLOSE, AboutDolphin::CloseClick)
|
2008-12-08 05:30:24 +00:00
|
|
|
END_EVENT_TABLE()
|
|
|
|
|
|
|
|
AboutDolphin::AboutDolphin(wxWindow *parent, wxWindowID id, const wxString &title, const wxPoint &position, const wxSize& size, long style)
|
|
|
|
: wxDialog(parent, id, title, position, size, style)
|
|
|
|
{
|
|
|
|
CreateGUIControls();
|
|
|
|
}
|
|
|
|
|
|
|
|
AboutDolphin::~AboutDolphin()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void AboutDolphin::CreateGUIControls()
|
|
|
|
{
|
2010-02-25 06:12:35 +00:00
|
|
|
m_Close = new wxButton(this, wxID_CLOSE, wxT("Close"), wxDefaultPosition, wxDefaultSize, 0, wxDefaultValidator);
|
2008-12-08 05:30:24 +00:00
|
|
|
//miloszwl@miloszwl.com (miloszwl.deviantart.com)
|
|
|
|
|
|
|
|
wxMemoryInputStream istream(dolphin_logo_png, sizeof dolphin_logo_png);
|
|
|
|
wxImage iDolphinLogo(istream, wxBITMAP_TYPE_PNG);
|
|
|
|
DolphinLogo = new wxBitmap(iDolphinLogo);
|
|
|
|
sbDolphinLogo = new wxStaticBitmap(this, ID_LOGO, wxNullBitmap, wxDefaultPosition, wxDefaultSize, 0);
|
|
|
|
sbDolphinLogo->SetBitmap(*DolphinLogo);
|
2010-01-20 20:04:42 +00:00
|
|
|
std::string Text = std::string("Dolphin SVN revision ") + SVN_REV_STR +"\n" "Copyright (c) 2003-2010+ Dolphin Team\n"
|
2009-03-18 09:25:05 +00:00
|
|
|
"Dolphin is a Gamecube/Wii emulator, which was originally written by F|RES and ector.\n"
|
2010-01-20 20:04:42 +00:00
|
|
|
"Today Dolphin is an open source project with many contributors, too many to list.\n"
|
|
|
|
"If interested, just go check out the project page at http://code.google.com/p/dolphin-emu.\n\n"
|
2009-02-28 01:15:52 +00:00
|
|
|
"Special thanks to Bushing, Costis, CrowTRobo, Marcan, Segher, Titanik, or9 and Hotquik for their reverse engineering and docs/demos.\n\n"
|
2008-12-08 05:30:24 +00:00
|
|
|
"Big thanks to Gilles Mouchard whose Microlib PPC emulator gave our development a kickstart.\n\n"
|
|
|
|
"Thanks to Frank Wille for his PowerPC disassembler, which or9 and we modified to include Gekko specifics.\n\n"
|
2009-03-21 17:19:46 +00:00
|
|
|
"Thanks to hcs/destop for their GC ADPCM decoder.\n\n"
|
2009-03-18 09:25:05 +00:00
|
|
|
"We are not affiliated with Nintendo in any way.\n"
|
|
|
|
"Gamecube and Wii are trademarks of Nintendo.\n"
|
2008-12-08 05:30:24 +00:00
|
|
|
"The emulator is for educational purposes only and should not be used to play games you do not legally own.\n\n";
|
|
|
|
Message = new wxStaticText(this, ID_MESSAGE,
|
|
|
|
wxString::FromAscii(Text.c_str()),
|
|
|
|
wxDefaultPosition, wxDefaultSize, 0);
|
|
|
|
Message->Wrap(this->GetSize().GetWidth());
|
|
|
|
|
|
|
|
sMain = new wxBoxSizer(wxVERTICAL);
|
|
|
|
sMainHor = new wxBoxSizer(wxHORIZONTAL);
|
|
|
|
sMainHor->Add(sbDolphinLogo);
|
|
|
|
|
|
|
|
sInfo = new wxBoxSizer(wxVERTICAL);
|
|
|
|
sInfo->Add(Message, 1, wxEXPAND|wxALL, 5);
|
|
|
|
sMainHor->Add(sInfo);
|
|
|
|
sMain->Add(sMainHor, 1, wxEXPAND);
|
|
|
|
|
|
|
|
sButtons = new wxBoxSizer(wxHORIZONTAL);
|
|
|
|
sButtons->Add(0, 0, 1, wxEXPAND, 5);
|
|
|
|
sButtons->Add(m_Close, 0, wxALL, 5);
|
|
|
|
sMain->Add(sButtons, 0, wxEXPAND);
|
|
|
|
|
|
|
|
this->SetSizer(sMain);
|
|
|
|
sMain->Layout();
|
|
|
|
|
|
|
|
Fit();
|
2010-02-25 06:12:35 +00:00
|
|
|
CenterOnParent();
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void AboutDolphin::OnClose(wxCloseEvent& WXUNUSED (event))
|
|
|
|
{
|
|
|
|
Destroy();
|
|
|
|
}
|
|
|
|
|
|
|
|
void AboutDolphin::CloseClick(wxCommandEvent& WXUNUSED (event))
|
|
|
|
{
|
|
|
|
Close();
|
|
|
|
}
|