From: <ni...@us...> - 2008-10-23 16:46:30
|
Revision: 13 http://wxdevide.svn.sourceforge.net/wxdevide/?rev=13&view=rev Author: ninjanl Date: 2008-10-23 16:46:26 +0000 (Thu, 23 Oct 2008) Log Message: ----------- AboutDlg altered to be sizer based. Doesn't look too shabby if I do say so myself. Will continue to alter dialogs so that they are all sizer based. Modified Paths: -------------- trunk/wxdevide/source/AboutDlg.cpp trunk/wxdevide/source/AboutDlg.h trunk/wxdevide/source/AboutDlg.wxform Modified: trunk/wxdevide/source/AboutDlg.cpp =================================================================== --- trunk/wxdevide/source/AboutDlg.cpp 2008-10-07 18:02:56 UTC (rev 12) +++ trunk/wxdevide/source/AboutDlg.cpp 2008-10-23 16:46:26 UTC (rev 13) @@ -1,5 +1,5 @@ //--------------------------------------------------------------------------- -// // $Id$ +// $Id$ // Name: AboutDlg.cpp // Author: Sof.T // Created: 23/01/2007 22:21:49 @@ -37,453 +37,565 @@ END_EVENT_TABLE() ////Event Table End -AboutDlg::AboutDlg(wxWindow *parent, wxWindowID id, const wxString &title, const wxPoint &position, const wxSize& size, long style) -: wxDialog(parent, id, title, position, size, style) +AboutDlg::AboutDlg( wxWindow *parent, wxWindowID id, const wxString &title, const wxPoint &position, const wxSize& size, long style ) + : wxDialog( parent, id, title, position, size, style ) { CreateGUIControls(); } AboutDlg::~AboutDlg() { -} +} void AboutDlg::CreateGUIControls() { //Do not add custom code between - //GUI Items Creation Start and GUI Items Creation End. + //GUI Items Creation Start and GUI Items Creation End. //wxDev-C++ designer will remove them. //Add the custom code before or after the blocks ////GUI Items Creation Start + WxBoxSizer1 = new wxBoxSizer(wxVERTICAL); + this->SetSizer(WxBoxSizer1); + this->SetAutoLayout(true); + wxBitmap ImgBanner_BITMAP(AboutDlg_ImgBanner_XPM); ImgBanner = new wxStaticBitmap(this, ID_IMGBANNER, ImgBanner_BITMAP, wxDefaultPosition, wxDefaultSize); ImgBanner->Enable(false); ImgBanner->SetFont(wxFont(8, wxSWISS, wxNORMAL, wxNORMAL, false, _("MS Sans Serif"))); + WxBoxSizer1->Add(ImgBanner,0,wxALIGN_TOP | wxALL,5); NbkContainer = new wxNotebook(this, ID_NBKCONTAINER, wxDefaultPosition, wxDefaultSize, wxNB_DEFAULT); NbkContainer->SetFont(wxFont(8, wxSWISS, wxNORMAL, wxNORMAL, false, _("MS Sans Serif"))); + WxBoxSizer1->Add(NbkContainer,0,wxEXPAND | wxALL,5); NpgVersion = new wxPanel(NbkContainer, ID_NPGVERSION, wxDefaultPosition, wxDefaultSize); NpgVersion->SetBackgroundColour(wxColour(*wxWHITE)); NpgVersion->SetFont(wxFont(8, wxSWISS, wxNORMAL, wxNORMAL, false, _("MS Sans Serif"))); NbkContainer->AddPage(NpgVersion, _("Version Information")); + WxBoxSizer3 = new wxBoxSizer(wxVERTICAL); + NpgVersion->SetSizer(WxBoxSizer3); + NpgVersion->SetAutoLayout(true); + LblDevCppCopyright = new wxStaticText(NpgVersion, ID_LBLDEVCPPCOPYRIGHT, _("Dev-C++ Code Base Copyright (c) Bloodshed Software"), wxDefaultPosition, wxDefaultSize, 0, _("LblDevCppCopyright")); - LblDevCppCopyright->SetFont(wxFont(8, wxSWISS, wxNORMAL, wxBOLD, false, _("MS Sans Serif"))); + LblDevCppCopyright->SetFont(wxFont(7, wxSWISS, wxNORMAL, wxBOLD, false, _("MS Sans Serif"))); + WxBoxSizer3->Add(LblDevCppCopyright,0,0 | wxALL,5); LblwxDevCppCopyright = new wxStaticText(NpgVersion, ID_LBLWXDEVCPPCOPYRIGHT, _("Form Designer Copyright (c) wxDev-C++ Development Team"), wxDefaultPosition, wxDefaultSize, 0, _("LblwxDevCppCopyright")); - LblwxDevCppCopyright->SetFont(wxFont(8, wxSWISS, wxNORMAL, wxBOLD, false, _("MS Sans Serif"))); + LblwxDevCppCopyright->SetFont(wxFont(7, wxSWISS, wxNORMAL, wxBOLD, false, _("MS Sans Serif"))); + WxBoxSizer3->Add(LblwxDevCppCopyright,0,wxALIGN_LEFT | wxALL,5); + WxFlexGridSizer1 = new wxFlexGridSizer(0, 2, 0, 0); + WxBoxSizer3->Add(WxFlexGridSizer1, 0, wxALIGN_CENTER | wxALL, 5); + LblwxdevcppWebsite = new wxStaticText(NpgVersion, ID_LBLWXDEVCPPWEBSITE, _("wxDev-C++ Website:"), wxDefaultPosition, wxDefaultSize, 0, _("LblwxdevcppWebsite")); LblwxdevcppWebsite->SetFont(wxFont(8, wxSWISS, wxNORMAL, wxNORMAL, false, _("MS Sans Serif"))); + WxFlexGridSizer1->Add(LblwxdevcppWebsite,0,wxALIGN_LEFT | wxALL,5); + HlkwxdevcppWebsite = new wxHyperlinkCtrl(NpgVersion, ID_HLKWXDEVCPPWEBSITE, _("http://wxdsgn.sourceforge.net/"), _("http://wxdsgn.sourceforge.net/"), wxDefaultPosition, wxDefaultSize, wxNO_BORDER | wxHL_CONTEXTMENU, _("HlkwxdevcppWebsite")); + HlkwxdevcppWebsite->SetNormalColour(*wxBLUE); + HlkwxdevcppWebsite->SetFont(wxFont(7, wxSWISS, wxNORMAL, wxNORMAL, true, _("MS Sans Serif"))); + WxFlexGridSizer1->Add(HlkwxdevcppWebsite,0,wxALIGN_LEFT | wxALL,5); + LblForum = new wxStaticText(NpgVersion, ID_LBLFORUM, _("wxDev-C++ Support Forum:"), wxDefaultPosition, wxDefaultSize, 0, _("LblForum")); LblForum->SetFont(wxFont(8, wxSWISS, wxNORMAL, wxNORMAL, false, _("MS Sans Serif"))); + WxFlexGridSizer1->Add(LblForum,0,wxALIGN_LEFT | wxALL,5); + HlkForumSite = new wxHyperlinkCtrl(NpgVersion, ID_HLKFORUMSITE, _("http://wxforum.shadonet.com/viewforum.php?f=28"), _("http://wxforum.shadonet.com/viewforum.php?f=28"), wxDefaultPosition, wxDefaultSize, wxNO_BORDER | wxHL_CONTEXTMENU, _("HlkForumSite")); + HlkForumSite->SetNormalColour(*wxBLUE); + HlkForumSite->SetFont(wxFont(7, wxSWISS, wxNORMAL, wxNORMAL, true, _("MS Sans Serif"))); + WxFlexGridSizer1->Add(HlkForumSite,0,wxALIGN_CENTER | wxALL,5); + LblwxWeb = new wxStaticText(NpgVersion, ID_LBLWXWEB, _("wxWidget Site"), wxDefaultPosition, wxDefaultSize, 0, _("LblwxWeb")); LblwxWeb->SetFont(wxFont(8, wxSWISS, wxNORMAL, wxNORMAL, false, _("MS Sans Serif"))); + WxFlexGridSizer1->Add(LblwxWeb,0,wxALIGN_LEFT | wxALL,5); + HlkwxWebsite = new wxHyperlinkCtrl(NpgVersion, ID_HLKWXWEBSITE, _("http://wxwidgets.org"), _("http://wxwidgets.org"), wxDefaultPosition, wxDefaultSize, wxNO_BORDER | wxHL_CONTEXTMENU, _("HlkwxWebsite")); + HlkwxWebsite->SetNormalColour(*wxBLUE); + HlkwxWebsite->SetFont(wxFont(7, wxSWISS, wxNORMAL, wxNORMAL, true, _("MS Sans Serif"))); + WxFlexGridSizer1->Add(HlkwxWebsite,0,wxALIGN_LEFT | wxALL,5); + LblBook = new wxStaticText(NpgVersion, ID_LBLBOOK, _("wxDev-C++ Book :"), wxDefaultPosition, wxDefaultSize, 0, _("LblBook")); LblBook->SetFont(wxFont(8, wxSWISS, wxNORMAL, wxNORMAL, false, _("MS Sans Serif"))); + WxFlexGridSizer1->Add(LblBook,0,0 | wxALL,5); - HlkwxdevcppWebsite = new wxHyperlinkCtrl(NpgVersion, ID_HLKWXDEVCPPWEBSITE, _("http://wxdsgn.sourceforge.net/"), _("http://wxdsgn.sourceforge.net/"), wxDefaultPosition, wxDefaultSize, wxNO_BORDER | wxHL_CONTEXTMENU, _("HlkwxdevcppWebsite")); - HlkwxdevcppWebsite->SetNormalColour(*wxBLUE); - HlkwxdevcppWebsite->SetFont(wxFont(8, wxSWISS, wxNORMAL, wxNORMAL, true, _("MS Sans Serif"))); - - HlkForumSite = new wxHyperlinkCtrl(NpgVersion, ID_HLKFORUMSITE, _("http://wxforum.shadonet.com/viewforum.php?f=28"), _("http://wxforum.shadonet.com/viewforum.php?f=28"), wxDefaultPosition, wxDefaultSize, wxNO_BORDER | wxHL_CONTEXTMENU, _("HlkForumSite")); - HlkForumSite->SetNormalColour(*wxBLUE); - HlkForumSite->SetFont(wxFont(8, wxSWISS, wxNORMAL, wxNORMAL, true, _("MS Sans Serif"))); - - HlkwxWebsite = new wxHyperlinkCtrl(NpgVersion, ID_HLKWXWEBSITE, _("http://wxwidgets.org"), _("http://wxwidgets.org"), wxDefaultPosition, wxDefaultSize, wxNO_BORDER | wxHL_CONTEXTMENU, _("HlkwxWebsite")); - HlkwxWebsite->SetNormalColour(*wxBLUE); - HlkwxWebsite->SetFont(wxFont(8, wxSWISS, wxNORMAL, wxNORMAL, true, _("MS Sans Serif"))); - HlkBook = new wxHyperlinkCtrl(NpgVersion, ID_HLKBOOK, _("http://wxdevcpp-book.sourceforge.net/"), _("http://wxdevcpp-book.sourceforge.net/"), wxDefaultPosition, wxDefaultSize, wxNO_BORDER | wxHL_CONTEXTMENU, _("HlkBook")); HlkBook->SetNormalColour(*wxBLUE); - HlkBook->SetFont(wxFont(8, wxSWISS, wxNORMAL, wxNORMAL, true, _("MS Sans Serif"))); + HlkBook->SetFont(wxFont(7, wxSWISS, wxNORMAL, wxNORMAL, true, _("MS Sans Serif"))); + WxFlexGridSizer1->Add(HlkBook,0,wxALIGN_LEFT | wxALL,5); NpgLicense = new wxPanel(NbkContainer, ID_NPGLICENSE, wxDefaultPosition, wxDefaultSize); NpgLicense->SetBackgroundColour(wxColour(*wxWHITE)); NpgLicense->SetFont(wxFont(8, wxSWISS, wxNORMAL, wxNORMAL, false, _("MS Sans Serif"))); NbkContainer->AddPage(NpgLicense, _("GNU General Public License")); - MmoLicense = new wxTextCtrl(NpgLicense, ID_MMOLICENSE, _(" GNU GENERAL PUBLIC LICENSE\r\n Version 2, June 1991\r\n\r\nCopyright (C) 1989, 1991 Free Software Foundation, Inc.\r\n675 Mass Ave, Cambridge, MA 02139, USA\r\nEveryone is permitted to copy and distribute verbatim copies of this \r\nlicense document, but changing it is not allowed.\r\n\r\nPreamble\r\n\r\nThe licenses for most software are designed to take away your freedom \r\nto share and change it. By contrast, the GNU General Public License is \r\nintended to guarantee your freedom to share and change free software--\r\nto make sure the software is free for all its users. This General Public \r\nLicense applies to most of the Free Software Foundation's software and\r\nto any other program whose authors commit to using it. (Some other Free\r\nSoftware Foundation software is covered by the GNU Library General \r\nPublic License instead.) You can apply it to your programs, too.\r\n\r\nWhen we speak of free software, we are referring to freedom, not price. \r\nOur General Public Licenses are designed to make sure that you have \r\nthe freedom to distribute copies of free software (and charge for this \r\nservice if you wish), that you receive source code or can get it if you\r\nwant it, that you can change the software or use pieces of it in new free\r\nprograms; and that you know you can do these things.\r\n\r\nTo protect your rights, we need to make restrictions that forbid anyone to \r\ndeny you these rights or to ask you to surrender the rights. These \r\nrestrictions translate to certain responsibilities for you if you distribute \r\ncopies of the software, or if you modify it.\r\n\r\nFor example, if you distribute copies of such a program, whether gratis or \r\nfor a fee, you must give the recipients all the rights that you have. You \r\nmust make sure that they, too, receive or can get the source code. And \r\nyou must show them these terms so they know their rights.\r\n\r\nWe protect your rights with two steps: (1) copyright the software, and (2) \r\noffer you this license which gives you legal permission to copy, distribute \r\nand/or modify the software.\r\n\r\nAlso, for each author's protection and ours, we want to make certain that\r\neveryone understands that there is no warranty for this free software. If \r\nthe software is modified by someone else and passed on, we want its \r\nrecipients to know that what they have is not the original, so that any \r\nproblems introduced by others will not reflect on the original authors'\r\nreputations.\r\n\r\nFinally, any free program is threatened constantly by software patents. \r\nWe wish to avoid the danger that redistributors of a free program will \r\nindividually obtain patent licenses, in effect making the program \r\nproprietary. To prevent this, we have made it clear that any patent must\r\nbe licensed for everyone's free use or not licensed at all.\r\n\r\nThe precise terms and conditions for copying, distribution and\r\nmodification follow.\r\n\r\n GNU GENERAL PUBLIC LICENSE\r\nTERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND \r\nMODIFICATION\r\n\r\n 0. This License applies to any program or other work which contains a \r\nnotice placed by the copyright holder saying it may be distributed under \r\nthe terms of this General Public License. The \"Program\", below, refers \r\nto \r\nany such program or work, and a \"work based on the Program\" means \r\neither the Program or any derivative work under copyright law: that is to \r\nsay, a work containing the Program or a portion of it, either verbatim or \r\nwith modifications and/or translated into another language. (Hereinafter, \r\ntranslation is included without limitation in the term \"modification\".) Each \r\nlicensee is addressed as \"you\".\r\n\r\nActivities other than copying, distribution and modification are not \r\ncovered by this License; they are outside its scope. The act of running \r\nthe Program is not restricted, and the output from the Program is covered \r\nonly if its contents constitute a work based on the Program (independent \r\nof having been made by running the Program). Whether that is true \r\ndepends on what the Program does.\r\n\r\n 1. You may copy and distribute verbatim copies of the Program's source \r\ncode as you receive it, in any medium, provided that you conspicuously \r\nand appropriately publish on each copy an appropriate copyright notice \r\nand disclaimer of warranty; keep intact all the notices that refer to this \r\nLicense and to the absence of any warranty; and give any other \r\nrecipients of the Program a copy of this License along with the Program.\r\n\r\nYou may charge a fee for the physical act of transferring a copy, and you \r\nmay at your option offer warranty protection in exchange for a fee.\r\n\r\n 2. You may modify your copy or copies of the Program or any portion of \r\nit, thus forming a work based on the Program, and copy and distribute \r\nsuch modifications or work under the terms of Section 1 above, provided \r\nthat you also meet all of these conditions:\r\n\r\n a) You must cause the modified files to carry prominent notices stating\r\n that you changed the files and the date of any change.\r\n\r\n b) You must cause any work that you distribute or publish, that in \r\n whole or in part contains or is derived from the Program or any part\r\n thereof, to be licensed as a whole at no charge to all third parties \r\n under the terms of this License.\r\n\r\n c) If the modified program normally reads commands interactively when\r\n run, you must cause it, when started running for such interactive use\r\n in the most ordinary way, to print or display an announcement \r\nincluding\r\n an appropriate copyright notice and a notice that there is no warranty\r\n (or else, saying that you provide a warranty) and that users may\r\n redistribute the program under these conditions, and telling the user \r\n how to view a copy of this License. (Exception: if the Program itself is \r\n interactive but does not normally print such an announcement, your \r\n work based on the Program is not required to print an announcement.)\r\n\r\nThese requirements apply to the modified work as a whole. If identifiable\r\nsections of that work are not derived from the Program, and can be \r\nreasonably considered independent and separate works in themselves,\r\nthen this License, and its terms, do not apply to those sections when you\r\ndistribute them as separate works. But when you distribute the same \r\nsections as part of a whole which is a work based on the Program, the\r\ndistribution of the whole must be on the terms of this License, whose\r\npermissions for other licensees extend to the entire whole, and thus to\r\neach and every part regardless of who wrote it.\r\n\r\nThus, it is not the intent of this section to claim rights or contest your \r\nrights to work written entirely by you; rather, the intent is to exercise the\r\nright to control the distribution of derivative or collective works based on\r\nthe Program.\r\n\r\nIn addition, mere aggregation of another work not based on the Program\r\nwith the Program (or with a work based on the Program) on a volume of\r\na storage or distribution medium does not bring the other work under the\r\nscope of this License.\r\n\r\n 3. You may copy and distribute the Program (or a work based on it, \r\nunder Section 2) in object code or executable form under the terms of\r\nSections 1 and 2 above provided that you also do one of the following:\r\n\r\n a) Accompany it with the complete corresponding machine-readable \r\n source code, which must be distributed under the terms of Sections 1\r\n and 2 above on a medium customarily used for software interchange; \r\n or,\r\n\r\n b) Accompany it with a written offer, valid for at least three years, to\r\n give any third party, for a charge no more than your cost of physically\r\n performing source distribution, a complete machine-readable copy of\r\n the corresponding source code, to be distributed under the terms of\r\n Sections 1 and 2 above on a medium customarily used for software\r\n interchange; or,\r\n\r\n c) Accompany it with the information you received as to the offer to \r\n distribute corresponding source code. (This alternative is allowed\r\n only for noncommercial distribution and only if you received the\r\n program in object code or executable form with such an offer, in\r\n accord with Subsection b above.)\r\n\r\nThe source code for a work means the preferred form of the work for \r\nmaking modifications to it. For an executable work, complete source\r\ncode means all the source code for all modules it contains, plus any\r\nassociated interface definition files, plus the scripts used to control\r\ncompilation and installation of the executable. However, as a special\r\nexception, the source code distributed need not include anything that\r\nis normally distributed (in either source or binary form) with the major\r\ncomponents (compiler, kernel, and so on) of the operating system on\r\nwhich the executable runs, unless that component itself accompanies\r\nthe executable.\r\n\r\nIf distribution of executable or object code is made by offering access\r\nto copy from a designated place, then offering equivalent access to\r\ncopy the source code from the same place counts as distribution of\r\nthe source code, even though third parties are not compelled to copy\r\nthe source along with the object code.\r\n\r\n 4. You may not copy, modify, sublicense, or distribute the Program\r\nexcept as expressly provided under this License. Any attempt otherwise\r\nto copy, modify, sublicense or distribute the Program is void, and will\r\nautomatically terminate your rights under this License. However, parties\r\nwho have received copies, or rights, from you under this License will\r\nnot have their licenses terminated so long as such parties remain in\r\nfull compliance.\r\n\r\n 5. You are not required to accept this License, since you have not\r\nsigned it. However, nothing else grants you permission to modify or\r\ndistribute the Program or its derivative works. These actions are\r\nprohibited by law if you do not accept this License. Therefore, by\r\nmodifying or distributing the Program (or any work based on the Program),\r\nyou indicate your acceptance of this License to do so, and all its terms\r\nand conditions for copying, distributing or modifying the Program or works\r\nbased on it.\r\n\r\n 6. Each time you redistribute the Program (or any work based on the \r\nProgram), the recipient automatically receives a license from the original\r\nlicensor to copy, distribute or modify the Program subject to these terms\r\nand conditions. You may not impose any further restrictions on the\r\nrecipients' exercise of the rights granted herein. You are not responsible\r\nfor enforcing compliance by third parties to this License.\r\n\r\n 7. If, as a consequence of a court judgment or allegation of patent\r\ninfringement or for any other reason (not limited to patent issues), \r\nconditions are imposed on you (whether by court order, agreement or \r\notherwise) that contradict the conditions of this License, they do not\r\nexcuse you from the conditions of this License. If you cannot distribute\r\nso as to satisfy simultaneously your obligations under this License and\r\nany other pertinent obligations, then as a consequence you may not\r\ndistribute the Program at all. For example, if a patent license would not\r\npermit royalty-free redistribution of the Program by all those who receive\r\ncopies directly or indirectly through you, then the only way you could\r\nsatisfy both it and this License would be to refrain entirely from\r\ndistribution of the Program.\r\n\r\nIf any portion of this section is held invalid or unenforceable under any\r\nparticular circumstance, the balance of the section is intended to apply\r\nand the section as a whole is intended to apply in other circumstances.\r\n\r\nIt is not the purpose of this section to induce you to infringe any patents\r\nor other property right claims or to contest validity of any such claims;\r\nthis section has the sole purpose of protecting the integrity of the free\r\nsoftware distribution system, which is implemented by public license\r\npractices. Many people have made generous contributions to the wide\r\nrange of software distributed through that system in reliance on\r\nconsistent application of that system; it is up to the author/donor to\r\ndecide if he or she is willing to distribute software through any other\r\nsystem and a licensee cannot impose that choice.\r\n\r\nThis section is intended to make thoroughly clear what is believed to be \r\na\r\nconsequence of the rest of this License.\r\n\r\n 8. If the distribution and/or use of the Program is restricted in certain\r\ncountries either by patents or by copyrighted interfaces, the original\r\ncopyright holder who places the Program under this License may add an\r\nexplicit geographical distribution limitation excluding those countries, so\r\nthat distribution is permitted only in or among countries not thus excluded.\r\n In such case, this License incorporates the limitation as if written in the\r\nbody of this License.\r\n\r\n 9. The Free Software Foundation may publish revised and/or new \r\nversions of the General Public License from time to time. Such new \r\nversions will be similar in spirit to the present version, but may differ in\r\ndetail to address new problems or concerns.\r\n\r\nEach version is given a distinguishing version number. If the Program\r\nspecifies a version number of this License which applies to it and \"any \r\nlater version\", you have the option of following the terms and conditions\r\neither of that version or of any later version published by the Free \r\nSoftware Foundation. If the Program does not specify a version number\r\nof this License, you may choose any version ever published by the Free\r\nSoftware Foundation.\r\n\r\n 10. If you wish to incorporate parts of the Program into other free\r\nprograms whose distribution conditions are different, write to the author\r\nto ask for permission. For software which is copyrighted by the Free\r\nSoftware Foundation, write to the Free Software Foundation; we \r\nsometimes make exceptions for this. Our decision will be guided by the \r\ntwo goals of preserving the free status of all derivatives of our free \r\nsoftware and of promoting the sharing and reuse of software generally.\r\n\r\n NO WARRANTY\r\n\r\n 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, \r\nTHERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT \r\nPERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE \r\nSTATED IN WRITING THE COPYRIGHT HOLDERS AND/OR \r\nOTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT \r\nWARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, \r\nINCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\r\nOF MERCHANTABILITY AND FITNESS FOR A PARTICULAR \r\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND\r\nPERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE\r\nPROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL\r\nNECESSARY SERVICING, REPAIR OR CORRECTION.\r\n\r\n 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR \r\nAGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR \r\nANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE \r\nTHE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR \r\nDAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR \r\nCONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR \r\nINABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED\r\nTO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR\r\nLOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE\r\nOF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),\r\nEVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED \r\nOF\r\nTHE POSSIBILITY OF SUCH DAMAGES.\r\n\r\n END OF TERMS AND CONDITIONS\r\n"), wxDefaultPosition, wxDefaultSize, wxTE_MULTILINE, wxDefaultValidator, _("MmoLicense")); + WxBoxSizer4 = new wxBoxSizer(wxHORIZONTAL); + NpgLicense->SetSizer(WxBoxSizer4); + NpgLicense->SetAutoLayout(true); + + MmoLicense = new wxTextCtrl(NpgLicense, ID_MMOLICENSE, _(" GNU GENERAL PUBLIC LICENSE\r\n Version 2, June 1991\r\n\r\nCopyright (C) 1989, 1991 Free Software Foundation, Inc.\r\n675 Mass Ave, Cambridge, MA 02139, USA\r\nEveryone is permitted to copy and distribute verbatim copies of\r\nthis license document, but changing it is not allowed.\r\n\r\nPreamble\r\n\r\nThe licenses for most software are designed to take away your\r\nfreedom to share and change it. By contrast, the GNU General\r\nPublic License is intended to guarantee your freedom to share\r\nand change free software--to make sure the software is free for\r\nall its users. This General Public License applies to most of the\r\nFree Software Foundation's software and to any other program\r\nwhose authors commit to using it. (Some other Free Software\r\nFoundation software is covered by the GNU Library General\r\nPublic License instead.) You can apply it to your programs, too.\r\n\r\nWhen we speak of free software, we are referring to freedom, not\r\nprice. Our General Public Licenses are designed to make sure\r\nthat you have the freedom to distribute copies of free software\r\n(and charge for this service if you wish), that you receive source\r\ncode or can get it if you want it, that you can change the\r\nsoftware or use pieces of it in new free programs; and that you\r\nknow you can do these things.\r\n\r\nTo protect your rights, we need to make restrictions that forbid\r\nanyone to deny you these rights or to ask you to surrender the\r\nrights. These restrictions translate to certain responsibilities for\r\nyou if you distribute copies of the software, or if you modify it.\r\n\r\nFor example, if you distribute copies of such a program, whether\r\ngratis or for a fee, you must give the recipients all the rights that\r\nyou have. You must make sure that they, too, receive or can get\r\nthe source code. And you must show them these terms so they\r\nknow their rights.\r\n\r\nWe protect your rights with two steps: (1) copyright the\r\nsoftware, and (2) offer you this license which gives you legal\r\npermission to copy, distribute and/or modify the software.\r\n\r\nAlso, for each author's protection and ours, we want to make\r\ncertain that everyone understands that there is no warranty for\r\nthis free software. If the software is modified by someone else\r\nand passed on, we want its recipients to know that what they\r\nhave is not the original, so that any problems introduced by\r\nothers will not reflect on the original authors' reputations.\r\n\r\nFinally, any free program is threatened constantly by software\r\npatents. We wish to avoid the danger that redistributors of a\r\nfree program will individually obtain patent licenses, in effect\r\nmaking the program proprietary. To prevent this, we have made\r\nit clear that any patent must be licensed for everyone's free use\r\nor not licensed at all.\r\n\r\nThe precise terms and conditions for copying, distribution and\r\nmodification follow.\r\n\r\n GNU GENERAL PUBLIC LICENSE\r\nTERMS AND CONDITIONS FOR COPYING, DISTRIBUTION \r\nAND \r\nMODIFICATION\r\n\r\n 0. This License applies to any program or other work which\r\ncontains a notice placed by the copyright holder saying it may\r\nbe distributed under the terms of this General Public License.\r\nThe \"Program\", below, refers to any such program or work,\r\nand a \"work based on the Program\" means either the Program\r\nor any derivative work under copyright law: that is to say, a work\r\ncontaining the Program or a portion of it, either verbatim or with\r\nmodifications and/or translated into another language.\r\n(Hereinafter, translation is included without limitation in the\r\nterm \"modification\".) Each licensee is addressed as \"you\".\r\n\r\nActivities other than copying, distribution and modification are\r\nnot covered by this License; they are outside its scope. The\r\nact of running the Program is not restricted, and the output\r\nfrom the Program is covered only if its contents constitute a\r\nwork based on the Program (independent of having been made\r\nby running the Program). Whether that is true depends on what\r\nthe Program does.\r\n\r\n 1. You may copy and distribute verbatim copies of the\r\nProgram's source code as you receive it, in any medium,\r\nprovided that you conspicuously and appropriately publish\r\non each copy an appropriate copyright notice and disclaimer\r\nof warranty; keep intact all the notices that refer to this License\r\nand to the absence of any warranty; and give any other\r\nrecipients of the Program a copy of this License along with\r\nthe Program.\r\n\r\nYou may charge a fee for the physical act of transferring a copy,\r\nand you may at your option offer warranty protection in\r\nexchange for a fee.\r\n\r\n 2. You may modify your copy or copies of the Program or any\r\nportion of it, thus forming a work based on the Program, and\r\ncopy and distribute such modifications or work under the terms\r\nof Section 1 above, provided that you also meet all of these\r\nconditions:\r\n\r\n a) You must cause the modified files to carry prominent\r\n notices stating that you changed the files and the date\r\n of any change.\r\n\r\n b) You must cause any work that you distribute or publish,\r\n that in whole or in part contains or is derived from the\r\n Program or any part thereof, to be licensed as a whole at\r\n no charge to all third parties under the terms of this License.\r\n\r\n c) If the modified program normally reads commands\r\n interactively when run, you must cause it, when started\r\n running for such interactive use in the most ordinary way,\r\n to print or display an announcement including an\r\n appropriate copyright notice and a notice that there is no\r\n warranty (or else, saying that you provide a warranty) and\r\n that users may redistribute the program under these\r\n conditions, and telling the user how to view a copy of this\r\n License. (Exception: if the Program itself is interactive but\r\n does not normally print such an announcement, your work\r\n based on the Program is not required to print an\r\n announcement.)\r\n\r\nThese requirements apply to the modified work as a whole. If\r\nidentifiable sections of that work are not derived from the\r\nProgram, and can be reasonably considered independent and\r\nseparate works in themselves, then this License, and its terms,\r\ndo not apply to those sections when you distribute them as\r\nseparate works. But when you distribute the same sections as\r\npart of a whole which is a work based on the Program, the\r\ndistribution of the whole must be on the terms of this License,\r\nwhose permissions for other licensees extend to the entire\r\nwhole, and thus to each and every part regardless of who wrote it.\r\n\r\nThus, it is not the intent of this section to claim rights or contest\r\nyour rights to work written entirely by you; rather, the intent is to\r\nexercise the right to control the distribution of derivative or\r\ncollective works based on the Program.\r\n\r\nIn addition, mere aggregation of another work not based on the\r\nProgram with the Program (or with a work based on the\r\nProgram) on a volume of a storage or distribution medium does\r\nnot bring the other work under the scope of this License.\r\n\r\n 3. You may copy and distribute the Program (or a work based\r\non it, under Section 2) in object code or executable form under\r\nthe terms of Sections 1 and 2 above provided that you also do\r\none of the following:\r\n\r\n a) Accompany it with the complete corresponding machine-\r\n readable source code, which must be distributed under the\r\n terms of Sections 1 and 2 above on a medium customarily\r\n used for software interchange; or,\r\n\r\n b) Accompany it with a written offer, valid for at least three\r\n years, to give any third party, for a charge no more than your\r\n cost of physically performing source distribution, a complete\r\n machine-readable copy of the corresponding source code,\r\n to be distributed under the terms of Sections 1 and 2 above\r\n on a medium customarily used for software interchange; or,\r\n\r\n c) Accompany it with the information you received as to the\r\n offer to distribute corresponding source code. (This\r\n alternative is allowed only for noncommercial distribution\r\n and only if you received the program in object code or\r\n executable form with such an offer, in accord with Subsection\r\n b above.)\r\n\r\nThe source code for a work means the preferred form of the\r\nwork for making modifications to it. For an executable work,\r\ncomplete source code means all the source code for all modules\r\nit contains, plus any associated interface definition files,\r\nplus the scripts used to control compilation and installation\r\nof the executable. However, as a special exception, the source\r\ncode distributed need not include anything that is normally\r\ndistributed (in either source or binary form) with the major\r\ncomponents (compiler, kernel, and so on) of the operating\r\nsystem on which the executable runs, unless that component\r\nitself accompanies the executable.\r\n\r\nIf distribution of executable or object code is made by offering\r\naccess to copy from a designated place, then offering equivalent\r\naccess to copy the source code from the same place counts as\r\ndistribution of the source code, even though third parties are\r\nnot compelled to copy the source along with the object code.\r\n\r\n 4. You may not copy, modify, sublicense, or distribute the\r\nProgram except as expressly provided under this License. Any\r\nattempt otherwise to copy, modify, sublicense or distribute the\r\nProgram is void, and will automatically terminate your rights\r\nunder this License. However, parties who have received copies,\r\nor rights, from you under this License will not have their\r\nlicenses terminated so long as such parties remain in full\r\ncompliance.\r\n\r\n 5. You are not required to accept this License, since you have\r\nnot signed it. However, nothing else grants you permission to\r\nmodify or distribute the Program or its derivative works. These\r\nactions are prohibited by law if you do not accept this License.\r\nTherefore, by modifying or distributing the Program (or any\r\nwork based on the Program), you indicate your acceptance of\r\nthis License to do so, and all its terms and conditions for\r\ncopying, distributing or modifying the Program or works based\r\non it.\r\n\r\n 6. Each time you redistribute the Program (or any work based\r\non the Program), the recipient automatically receives a license\r\nfrom the original licensor to copy, distribute or modify the\r\nProgram subject to these terms and conditions. You may not\r\nimpose any further restrictions on the recipients' exercise of\r\nthe rights granted herein. You are not responsible for enforcing\r\ncompliance by third parties to this License.\r\n\r\n 7. If, as a consequence of a court judgment or allegation of\r\npatent infringement or for any other reason (not limited to\r\npatent issues), conditions are imposed on you (whether by court\r\norder, agreement or otherwise) that contradict the conditions\r\nof this License, they do not excuse you from the conditions of\r\nthis License. If you cannot distribute so as to satisfy\r\nsimultaneously your obligations under this License and any\r\nother pertinent obligations, then as a consequence you may not\r\ndistribute the Program at all. For example, if a patent license\r\nwould not permit royalty-free redistribution of the Program by\r\nall those who receive copies directly or indirectly through you,\r\nthen the only way you could satisfy both it and this License\r\nwould be to refrain entirely from distribution of the Program.\r\n\r\nIf any portion of this section is held invalid or unenforceable\r\nunder any particular circumstance, the balance of the section\r\nis intended to apply and the section as a whole is intended to\r\napply in other circumstances.\r\n\r\nIt is not the purpose of this section to induce you to infringe\r\nany patents or other property right claims or to contest validity\r\nof any such claims; this section has the sole purpose of\r\nprotecting the integrity of the free software distribution system,\r\nwhich is implemented by public license practices. Many people\r\nhave made generous contributions to the wide range of software\r\ndistributed through that system in reliance on consistent\r\napplication of that system; it is up to the author/donor to\r\ndecide if he or she is willing to distribute software through\r\nany other system and a licensee cannot impose that choice.\r\n\r\nThis section is intended to make thoroughly clear what is\r\nbelieved to be a consequence of the rest of this License.\r\n\r\n 8. If the distribution and/or use of the Program is restricted in\r\ncertain countries either by patents or by copyrighted interfaces,\r\nthe original copyright holder who places the Program under this\r\nLicense may add an explicit geographical distribution limitation\r\nexcluding those countries, so that distribution is permitted only\r\nin or among countries not thus excluded. In such case, this\r\nLicense incorporates the limitation as if written in the body of\r\nthis License.\r\n\r\n 9. The Free Software Foundation may publish revised and/or\r\nnew versions of the General Public License from time to time.\r\nSuch new versions will be similar in spirit to the present\r\nversion, but may differ in detail to address new problems or\r\nconcerns.\r\n\r\nEach version is given a distinguishing version number. If the\r\nProgram specifies a version number of this License which\r\napplies to it and \"any later version\", you have the option of\r\nfollowing the terms and conditions either of that version or\r\nof any later version published by the Free Software Foundation.\r\nIf the Program does not specify a version number of this License,\r\nyou may choose any version ever published by the Free Software\r\nFoundation.\r\n\r\n 10. If you wish to incorporate parts of the Program into\r\nother free programs whose distribution conditions are different,\r\nwrite to the author to ask for permission. For software which\r\nis copyrighted by the Free Software Foundation, write to the\r\nFree Software Foundation; we sometimes make exceptions for\r\nthis. Our decision will be guided by the two goals of preserving\r\nthe free status of all derivatives of our free software and of\r\npromoting the sharing and reuse of software generally.\r\n\r\n NO WARRANTY\r\n\r\n 11. BECAUSE THE PROGRAM IS LICENSED FREE OF \r\nCHARGE, \r\nTHERE IS NO WARRANTY FOR THE PROGRAM, TO THE \r\nEXTENT \r\nPERMITTED BY APPLICABLE LAW. EXCEPT WHEN \r\nOTHERWISE \r\nSTATED IN WRITING THE COPYRIGHT HOLDERS AND/OR \r\nOTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" \r\nWITHOUT \r\nWARRANTY OF ANY KIND, EITHER EXPRESSED OR \r\nIMPLIED, \r\nINCLUDING, BUT NOT LIMITED TO, THE IMPLIED \r\nWARRANTIES\r\nOF MERCHANTABILITY AND FITNESS FOR A PARTICULAR \r\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND\r\nPERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD \r\nTHE\r\nPROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF \r\nALL\r\nNECESSARY SERVICING, REPAIR OR CORRECTION.\r\n\r\n 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW \r\nOR \r\nAGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, \r\nOR \r\nANY OTHER PARTY WHO MAY MODIFY AND/OR \r\nREDISTRIBUTE \r\nTHE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU \r\nFOR \r\nDAMAGES, INCLUDING ANY GENERAL, SPECIAL, \r\nINCIDENTAL\r\nOR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE \r\nOR \r\nINABILITY TO USE THE PROGRAM (INCLUDING BUT NOT\r\nLIMITED TO LOSS OF DATA OR DATA BEING RENDERED\r\nINACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD\r\nPARTIES OR A FAILURE OF THE PROGRAM TO OPERATE \r\nWITH\r\nANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR \r\nOTHER\r\nPARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH\r\nDAMAGES.\r\n\r\n END OF TERMS AND CONDITIONS\r\n"), wxDefaultPosition, wxDefaultSize, wxTE_MULTILINE, wxDefaultValidator, _("MmoLicense")); MmoLicense->SetMaxLength(0); - MmoLicense->AppendText(_(" GNU GENERAL PUBLIC LICENSE")); + MmoLicense->AppendText(_(" GNU GENERAL PUBLIC LICENSE")); MmoLicense->AppendText(_(" Version 2, June 1991")); MmoLicense->AppendText(_("")); MmoLicense->AppendText(_("Copyright (C) 1989, 1991 Free Software Foundation, Inc.")); MmoLicense->AppendText(_("675 Mass Ave, Cambridge, MA 02139, USA")); - MmoLicense->AppendText(_("Everyone is permitted to copy and distribute verbatim copies of this ")); - MmoLicense->AppendText(_("license document, but changing it is not allowed.")); + MmoLicense->AppendText(_("Everyone is permitted to copy and distribute verbatim copies of")); + MmoLicense->AppendText(_("this license document, but changing it is not allowed.")); MmoLicense->AppendText(_("")); MmoLicense->AppendText(_("Preamble")); MmoLicense->AppendText(_("")); - MmoLicense->AppendText(_("The licenses for most software are designed to take away your freedom ")); - MmoLicense->AppendText(_("to share and change it. By contrast, the GNU General Public License is ")); - MmoLicense->AppendText(_("intended to guarantee your freedom to share and change free software--")); - MmoLicense->AppendText(_("to make sure the software is free for all its users. This General Public ")); - MmoLicense->AppendText(_("License applies to most of the Free Software Foundation's software and")); - MmoLicense->AppendText(_("to any other program whose authors commit to using it. (Some other Free")); - MmoLicense->AppendText(_("Software Foundation software is covered by the GNU Library General ")); + MmoLicense->AppendText(_("The licenses for most software are designed to take away your")); + MmoLicense->AppendText(_("freedom to share and change it. By contrast, the GNU General")); + MmoLicense->AppendText(_("Public License is intended to guarantee your freedom to share")); + MmoLicense->AppendText(_("and change free software--to make sure the software is free for")); + MmoLicense->AppendText(_("all its users. This General Public License applies to most of the")); + MmoLicense->AppendText(_("Free Software Foundation's software and to any other program")); + MmoLicense->AppendText(_("whose authors commit to using it. (Some other Free Software")); + MmoLicense->AppendText(_("Foundation software is covered by the GNU Library General")); MmoLicense->AppendText(_("Public License instead.) You can apply it to your programs, too.")); MmoLicense->AppendText(_("")); - MmoLicense->AppendText(_("When we speak of free software, we are referring to freedom, not price. ")); - MmoLicense->AppendText(_("Our General Public Licenses are designed to make sure that you have ")); - MmoLicense->AppendText(_("the freedom to distribute copies of free software (and charge for this ")); - MmoLicense->AppendText(_("service if you wish), that you receive source code or can get it if you")); - MmoLicense->AppendText(_("want it, that you can change the software or use pieces of it in new free")); - MmoLicense->AppendText(_("programs; and that you know you can do these things.")); + MmoLicense->AppendText(_("When we speak of free software, we are referring to freedom, not")); + MmoLicense->AppendText(_("price. Our General Public Licenses are designed to make sure")); + MmoLicense->AppendText(_("that you have the freedom to distribute copies of free software")); + MmoLicense->AppendText(_("(and charge for this service if you wish), that you receive source")); + MmoLicense->AppendText(_("code or can get it if you want it, that you can change the")); + MmoLicense->AppendText(_("software or use pieces of it in new free programs; and that you")); + MmoLicense->AppendText(_("know you can do these things.")); MmoLicense->AppendText(_("")); - MmoLicense->AppendText(_("To protect your rights, we need to make restrictions that forbid anyone to ")); - MmoLicense->AppendText(_("deny you these rights or to ask you to surrender the rights. These ")); - MmoLicense->AppendText(_("restrictions translate to certain responsibilities for you if you distribute ")); - MmoLicense->AppendText(_("copies of the software, or if you modify it.")); + MmoLicense->AppendText(_("To protect your rights, we need to make restrictions that forbid")); + MmoLicense->AppendText(_("anyone to deny you these rights or to ask you to surrender the")); + MmoLicense->AppendText(_("rights. These restrictions translate to certain responsibilities for")); + MmoLicense->AppendText(_("you if you distribute copies of the software, or if you modify it.")); MmoLicense->AppendText(_("")); - MmoLicense->AppendText(_("For example, if you distribute copies of such a program, whether gratis or ")); - MmoLicense->AppendText(_("for a fee, you must give the recipients all the rights that you have. You ")); - MmoLicense->AppendText(_("must make sure that they, too, receive or can get the source code. And ")); - MmoLicense->AppendText(_("you must show them these terms so they know their rights.")); + MmoLicense->AppendText(_("For example, if you distribute copies of such a program, whether")); + MmoLicense->AppendText(_("gratis or for a fee, you must give the recipients all the rights that")); + MmoLicense->AppendText(_("you have. You must make sure that they, too, receive or can get")); + MmoLicense->AppendText(_("the source code. And you must show them these terms so they")); + MmoLicense->AppendText(_("know their rights.")); MmoLicense->AppendText(_("")); - MmoLicense->AppendText(_("We protect your rights with two steps: (1) copyright the software, and (2) ")); - MmoLicense->AppendText(_("offer you this license which gives you legal permission to copy, distribute ")); - MmoLicense->AppendText(_("and/or modify the software.")); + MmoLicense->AppendText(_("We protect your rights with two steps: (1) copyright the")); + MmoLicense->AppendText(_("software, and (2) offer you this license which gives you legal")); + MmoLicense->AppendText(_("permission to copy, distribute and/or modify the software.")); MmoLicense->AppendText(_("")); - MmoLicense->AppendText(_("Also, for each author's protection and ours, we want to make certain that")); - MmoLicense->AppendText(_("everyone understands that there is no warranty for this free software. If ")); - MmoLicense->AppendText(_("the software is modified by someone else and passed on, we want its ")); - MmoLicense->AppendText(_("recipients to know that what they have is not the original, so that any ")); - MmoLicense->AppendText(_("problems introduced by others will not reflect on the original authors'")); - MmoLicense->AppendText(_("reputations.")); + MmoLicense->AppendText(_("Also, for each author's protection and ours, we want to make")); + MmoLicense->AppendText(_("certain that everyone understands that there is no warranty for")); + MmoLicense->AppendText(_("this free software. If the software is modified by someone else")); + MmoLicense->AppendText(_("and passed on, we want its recipients to know that what they")); + MmoLicense->AppendText(_("have is not the original, so that any problems introduced by")); + MmoLicense->AppendText(_("others will not reflect on the original authors' reputations.")); MmoLicense->AppendText(_("")); - MmoLicense->AppendText(_("Finally, any free program is threatened constantly by software patents. ")); - MmoLicense->AppendText(_("We wish to avoid the danger that redistributors of a free program will ")); - MmoLicense->AppendText(_("individually obtain patent licenses, in effect making the program ")); - MmoLicense->AppendText(_("proprietary. To prevent this, we have made it clear that any patent must")); - MmoLicense->AppendText(_("be licensed for everyone's free use or not licensed at all.")); + MmoLicense->AppendText(_("Finally, any free program is threatened constantly by software")); + MmoLicense->AppendText(_("patents. We wish to avoid the danger that redistributors of a")); + MmoLicense->AppendText(_("free program will individually obtain patent licenses, in effect")); + MmoLicense->AppendText(_("making the program proprietary. To prevent this, we have made")); + MmoLicense->AppendText(_("it clear that any patent must be licensed for everyone's free use")); + MmoLicense->AppendText(_("or not licensed at all.")); MmoLicense->AppendText(_("")); MmoLicense->AppendText(_("The precise terms and conditions for copying, distribution and")); MmoLicense->AppendText(_("modification follow.")); MmoLicense->AppendText(_("")); MmoLicense->AppendText(_(" GNU GENERAL PUBLIC LICENSE")); - MmoLicense->AppendText(_("TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND ")); + MmoLicense->AppendText(_("TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION ")); + MmoLicense->AppendText(_("AND ")); MmoLicense->AppendText(_("MODIFICATION")); MmoLicense->AppendText(_("")); - MmoLicense->AppendText(_(" 0. This License applies to any program or other work which contains a ")); - MmoLicense->AppendText(_("notice placed by the copyright holder saying it may be distributed under ")); - MmoLicense->AppendText(_("the terms of this General Public License. The \"Program\", below, refers ")); - MmoLicense->AppendText(_("to ")); - MmoLicense->AppendText(_("any such program or work, and a \"work based on the Program\" means ")); - MmoLicense->AppendText(_("either the Program or any derivative work under copyright law: that is to ")); - MmoLicense->AppendText(_("say, a work containing the Program or a portion of it, either verbatim or ")); - MmoLicense->AppendText(_("with modifications and/or translated into another language. (Hereinafter, ")); - MmoLicense->AppendText(_("translation is included without limitation in the term \"modification\".) Each ")); - MmoLicense->AppendText(_("licensee is addressed as \"you\".")); + MmoLicense->AppendText(_(" 0. This License applies to any program or other work which")); + MmoLicense->AppendText(_("contains a notice placed by the copyright holder saying it may")); + MmoLicense->AppendText(_("be distributed under the terms of this General Public License.")); + MmoLicense->AppendText(_("The \"Program\", below, refers to any such program or work,")); + MmoLicense->AppendText(_("and a \"work based on the Program\" means either the Program")); + MmoLicense->AppendText(_("or any derivative work under copyright law: that is to say, a work")); + MmoLicense->AppendText(_("containing the Program or a portion of it, either verbatim or with")); + MmoLicense->AppendText(_("modifications and/or translated into another language.")); + MmoLicense->AppendText(_("(Hereinafter, translation is included without limitation in the")); + MmoLicense->AppendText(_("term \"modification\".) Each licensee is addressed as \"you\".")); MmoLicense->AppendText(_("")); - MmoLicense->AppendText(_("Activities other than copying, distribution and modification are not ")); - MmoLicense->AppendText(_("covered by this License; they are outside its scope. The act of running ")); - MmoLicense->AppendText(_("the Program is not restricted, and the output from the Program is covered ")); - MmoLicense->AppendText(_("only if its contents constitute a work based on the Program (independent ")); - MmoLicense->AppendText(_("of having been made by running the Program). Whether that is true ")); - MmoLicense->AppendText(_("depends on what the Program does.")); + MmoLicense->AppendText(_("Activities other than copying, distribution and modification are")); + MmoLicense->AppendText(_("not covered by this License; they are outside its scope. The")); + MmoLicense->AppendText(_("act of running the Program is not restricted, and the output")); + MmoLicense->AppendText(_("from the Program is covered only if its contents constitute a")); + MmoLicense->AppendText(_("work based on the Program (independent of having been made")); + MmoLicense->AppendText(_("by running the Program). Whether that is true depends on what")); + MmoLicense->AppendText(_("the Program does.")); MmoLicense->AppendText(_("")); - MmoLicense->AppendText(_(" 1. You may copy and distribute verbatim copies of the Program's source ")); - MmoLicense->AppendText(_("code as you receive it, in any medium, provided that you conspicuously ")); - MmoLicense->AppendText(_("and appropriately publish on each copy an appropriate copyright notice ")); - MmoLicense->AppendText(_("and disclaimer of warranty; keep intact all the notices that refer to this ")); - MmoLicense->AppendText(_("License and to the absence of any warranty; and give any other ")); - MmoLicense->AppendText(_("recipients of the Program a copy of this License along with the Program.")); + MmoLicense->AppendText(_(" 1. You may copy and distribute verbatim copies of the")); + MmoLicense->AppendText(_("Program's source code as you receive it, in any medium,")); + MmoLicense->AppendText(_("provided that you conspicuously and appropriately publish")); + MmoLicense->AppendText(_("on each copy an appropriate copyright notice and disclaimer")); + MmoLicense->AppendText(_("of warranty; keep intact all the notices that refer to this License")); + MmoLicense->AppendText(_("and to the absence of any warranty; and give any other")); + MmoLicense->AppendText(_("recipients of the Program a copy of this License along with")); + MmoLicense->AppendText(_("the Program.")); MmoLicense->AppendText(_("")); - MmoLicense->AppendText(_("You may charge a fee for the physical act of transferring a copy, and you ")); - MmoLicense->AppendText(_("may at your option offer warranty protection in exchange for a fee.")); + MmoLicense->AppendText(_("You may charge a fee for the physical act of transferring a copy,")); + MmoLicense->AppendText(_("and you may at your option offer warranty protection in")); + MmoLicense->AppendText(_("exchange for a fee.")); MmoLicense->AppendText(_("")); - MmoLicense->AppendText(_(" 2. You may modify your copy or copies of the Program or any portion of ")); - MmoLicense->AppendText(_("it, thus forming a work based on the Program, and copy and distribute ")); - MmoLicense->AppendText(_("such modifications or work under the terms of Section 1 above, provided ")); - MmoLicense->AppendText(_("that you also meet all of these conditions:")); + MmoLicense->AppendText(_(" 2. You may modify your copy or copies of the Program or any")); + MmoLicense->AppendText(_("portion of it, thus forming a work based on the Program, and")); + MmoLicense->AppendText(_("copy and distribute such modifications or work under the terms")); + MmoLicense->AppendText(_("of Section 1 above, provided that you also meet all of these")); + MmoLicense->AppendText(_("conditions:")); MmoLicense->AppendText(_("")); - MmoLicense->AppendText(_(" a) You must cause the modified files to carry prominent notices stating")); - MmoLicense->AppendText(_(" that you changed the files and the date of any change.")); + MmoLicense->AppendText(_(" a) You must cause the modified files to carry prominent")); + MmoLicense->AppendText(_(" notices stating that you changed the files and the date")); + MmoLicense->AppendText(_(" of any change.")); MmoLicense->AppendText(_("")); - MmoLicense->AppendText(_(" b) You must cause any work that you distribute or publish, that in ")); - MmoLicense->AppendText(_(" whole or in part contains or is derived from the Program or any part")); - MmoLicense->AppendText(_(" thereof, to be licensed as a whole at no charge to all third parties ")); - MmoLicense->AppendText(_(" under the terms of this License.")); + MmoLicense->AppendText(_(" b) You must cause any work that you distribute or publish,")); + MmoLicense->AppendText(_(" that in whole or in part contains or is derived from the")); + MmoLicense->AppendText(_(" Program or any part thereof, to be licensed as a whole at")); + MmoLicense->AppendText(_(" no charge to all third parties under the terms of this License.")); MmoLicense->AppendText(_("")); - MmoLicense->AppendText(_(" c) If the modified program normally reads commands interactively when")); - MmoLicense->AppendText(_(" run, you must cause it, when started running for such interactive use")); - MmoLicense->AppendText(_(" in the most ordinary way, to print or display an announcement ")); - MmoLicense->AppendText(_("including")); - MmoLicense->AppendText(_(" an appropriate copyright notice and a notice that there is no warranty")); - MmoLicense->AppendText(_(" (or else, saying that you provide a warranty) and that users may")); - MmoLicense->AppendText(_(" redistribute the program under these conditions, and telling the user ")); - MmoLicense->AppendText(_(" how to view a copy of this License. (Exception: if the Program itself is ")); - MmoLicense->AppendText(_(" interactive but does not normally print such an announcement, your ")); - MmoLicense->AppendText(_(" work based on the Program is not required to print an announcement.)")); + MmoLicense->AppendText(_(" c) If the modified program normally reads commands")); + MmoLicense->AppendText(_(" interactively when run, you must cause it, when started")); + MmoLicense->AppendText(_(" running for such interactive use in the most ordinary way,")); + MmoLicense->AppendText(_(" to print or display an announcement including an")); + MmoLicense->AppendText(_(" appropriate copyright notice and a notice that there is no")); + MmoLicense->AppendText(_(" warranty (or else, saying that you provide a warranty) and")); + MmoLicense->AppendText(_(" that users may redistribute the program under these")); + MmoLicense->AppendText(_(" conditions, and telling the user how to view a copy of this")); + MmoLicense->AppendText(_(" License. (Exception: if the Program itself is interactive but")); + MmoLicense->AppendText(_(" does not normally print such an announcement, your work")); + MmoLicense->AppendText(_(" based on the Program is not required to print an")); + MmoLicense->AppendText(_(" announcement.)")); MmoLicense->AppendText(_("")); - MmoLicense->AppendText(_("These requirements apply to the modified work as a whole. If identifiable")); - MmoLicense->AppendText(_("sections of that work are not derived from the Program, and can be ")); - MmoLicense->AppendText(_("reasonably considered independent and separate works in themselves,")); - MmoLicense->AppendText(_("then this License, and its terms, do not apply to those sections when you")); - MmoLicense->AppendText(_("distribute them as separate works. But when you distribute the same ")); - MmoLicense->AppendText(_("sections as part of a whole which is a work based on the Program, the")); - MmoLicense->AppendText(_("distribution of the whole must be on the terms of this License, whose")); - MmoLicense->AppendText(_("permissions for other licensees extend to the entire whole, and thus to")); - MmoLicense->AppendText(_("each and every part regardless of who wrote it.")); + MmoLicense->AppendText(_("These requirements apply to the modified work as a whole. If")); + MmoLicense->AppendText(_("identifiable sections of that work are not derived from the")); + MmoLicense->AppendText(_("Program, and can be reasonably considered independent and")); + MmoLicense->AppendText(_("separate works in themselves, then this License, and its terms,")); + MmoLicense->AppendText(_("do not apply to those sections when you distribute them as")); + MmoLicense->AppendText(_("separate works. But when you distribute the same sections as")); + MmoLicense->Appe... [truncated message content] |