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 "../resources/dolphin_logo.cpp"
|
|
|
|
|
2010-06-10 14:39:08 +00:00
|
|
|
AboutDolphin::AboutDolphin(wxWindow *parent, wxWindowID id,
|
2011-03-15 21:57:00 +00:00
|
|
|
const wxString &title, const wxPoint &position,
|
|
|
|
const wxSize& size, long style)
|
2010-06-10 14:39:08 +00:00
|
|
|
: wxDialog(parent, id, title, position, size, style)
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
|
|
|
wxMemoryInputStream istream(dolphin_logo_png, sizeof dolphin_logo_png);
|
|
|
|
wxImage iDolphinLogo(istream, wxBITMAP_TYPE_PNG);
|
2011-03-15 21:57:00 +00:00
|
|
|
wxStaticBitmap* const sbDolphinLogo = new wxStaticBitmap(this, wxID_ANY,
|
|
|
|
wxBitmap(iDolphinLogo));
|
2010-06-10 14:39:08 +00:00
|
|
|
|
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.";
|
2011-03-15 21:57:00 +00:00
|
|
|
wxStaticText* const Message = new wxStaticText(this, wxID_ANY,
|
|
|
|
wxString::FromAscii(Text.c_str()));
|
|
|
|
Message->Wrap(GetSize().GetWidth());
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2011-03-15 21:57:00 +00:00
|
|
|
wxBoxSizer* const sInfo = new wxBoxSizer(wxVERTICAL);
|
2011-03-16 22:22:21 +00:00
|
|
|
sInfo->Add(Message, 1, wxEXPAND | wxALL, 5);
|
2011-03-15 21:57:00 +00:00
|
|
|
|
|
|
|
wxBoxSizer* const sMainHor = new wxBoxSizer(wxHORIZONTAL);
|
2011-03-16 22:22:21 +00:00
|
|
|
sMainHor->Add(sbDolphinLogo, 0, wxEXPAND | wxALL, 5);
|
2008-12-08 05:30:24 +00:00
|
|
|
sMainHor->Add(sInfo);
|
|
|
|
|
2011-03-15 21:57:00 +00:00
|
|
|
wxBoxSizer* const sMain = new wxBoxSizer(wxVERTICAL);
|
|
|
|
sMain->Add(sMainHor, 1, wxEXPAND);
|
2011-03-16 22:22:21 +00:00
|
|
|
sMain->Add(CreateButtonSizer(wxOK), 0, wxEXPAND | wxLEFT | wxRIGHT | wxBOTTOM, 5);
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2011-03-16 22:22:21 +00:00
|
|
|
SetSizerAndFit(sMain);
|
2011-03-15 21:57:00 +00:00
|
|
|
Center();
|
|
|
|
SetFocus();
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|