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 "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()
|
|
|
|
|
2010-06-10 14:39:08 +00:00
|
|
|
AboutDolphin::AboutDolphin(wxWindow *parent, wxWindowID id,
|
|
|
|
const wxString &title, const wxPoint &position,
|
|
|
|
const wxSize& size, long style)
|
|
|
|
: wxDialog(parent, id, title, position, size, style)
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
|
|
|
CreateGUIControls();
|
|
|
|
}
|
|
|
|
|
|
|
|
AboutDolphin::~AboutDolphin()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void AboutDolphin::CreateGUIControls()
|
|
|
|
{
|
2011-01-05 04:35:46 +00:00
|
|
|
m_Close = new wxButton(this, wxID_CLOSE, _("Close"),
|
2010-06-10 14:39:08 +00:00
|
|
|
wxDefaultPosition, wxDefaultSize, 0, wxDefaultValidator);
|
2008-12-08 05:30:24 +00:00
|
|
|
|
|
|
|
wxMemoryInputStream istream(dolphin_logo_png, sizeof dolphin_logo_png);
|
|
|
|
wxImage iDolphinLogo(istream, wxBITMAP_TYPE_PNG);
|
2010-06-10 14:39:08 +00:00
|
|
|
sbDolphinLogo = new wxStaticBitmap(this, ID_LOGO,
|
|
|
|
wxBitmap(iDolphinLogo), wxDefaultPosition, wxDefaultSize, 0);
|
|
|
|
|
2011-01-11 16:19:15 +00:00
|
|
|
std::string Text = std::string(svn_rev_str) + "\n"
|
2011-01-17 01:47:27 +00:00
|
|
|
"Copyright (c) 2003-2011+ Dolphin Team\n"
|
2010-06-10 14:39:08 +00:00
|
|
|
"\n"
|
|
|
|
"Dolphin is a Gamecube/Wii emulator, which was\n"
|
|
|
|
"originally written by F|RES and ector.\n"
|
|
|
|
"Today Dolphin is an open source project with many\n"
|
|
|
|
"contributors, too many to list.\n"
|
|
|
|
"If interested, just go check out the project page at\n"
|
|
|
|
"http://code.google.com/p/dolphin-emu/ .\n"
|
|
|
|
"\n"
|
|
|
|
"Special thanks to Bushing, Costis, CrowTRobo,\n"
|
|
|
|
"Marcan, Segher, Titanik, or9 and Hotquik for their\n"
|
|
|
|
"reverse engineering and docs/demos.\n"
|
|
|
|
"\n"
|
|
|
|
"Big thanks to Gilles Mouchard whose Microlib PPC\n"
|
|
|
|
"emulator gave our development a kickstart.\n"
|
|
|
|
"\n"
|
|
|
|
"Thanks to Frank Wille for his PowerPC disassembler,\n"
|
|
|
|
"which or9 and we modified to include Gekko specifics.\n"
|
|
|
|
"\n"
|
|
|
|
"Thanks to hcs/destop for their GC ADPCM decoder.\n"
|
|
|
|
"\n"
|
|
|
|
"We are not affiliated with Nintendo in any way.\n"
|
2009-03-18 09:25:05 +00:00
|
|
|
"Gamecube and Wii are trademarks of Nintendo.\n"
|
2010-06-10 14:39:08 +00:00
|
|
|
"The emulator is for educational purposes only\n"
|
|
|
|
"and should not be used to play games you do\n"
|
|
|
|
"not legally own.";
|
2008-12-08 05:30:24 +00:00
|
|
|
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))
|
|
|
|
{
|
2010-07-30 13:14:53 +00:00
|
|
|
EndModal(wxID_OK);
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void AboutDolphin::CloseClick(wxCommandEvent& WXUNUSED (event))
|
|
|
|
{
|
|
|
|
Close();
|
|
|
|
}
|