You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
95 lines
5.0 KiB
95 lines
5.0 KiB
/*
|
|
* This file is part of the KDE Libraries
|
|
* Copyright (C) 2000 Espen Sand (espen@kde.org)
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Library General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2 of the License, or (at your option) any later version.
|
|
*
|
|
* This library 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
|
|
* Library General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Library General Public License
|
|
* along with this library; see the file COPYING.LIB. If not, write to
|
|
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
* Boston, MA 02110-1301, USA.
|
|
*
|
|
*/
|
|
|
|
// I (espen) prefer that header files are included alphabetically
|
|
#include <tdeabouttde.h>
|
|
#include <tdeapplication.h>
|
|
#include <tdelocale.h>
|
|
#include <kstandarddirs.h>
|
|
|
|
|
|
TDEAboutKDE::TDEAboutKDE( TQWidget *parent, const char *name, bool modal )
|
|
:TDEAboutDialog( TDEAboutDialog::AbtKDEStandard, TQString::fromLatin1("TDE"),
|
|
KDialogBase::Help|KDialogBase::Close, KDialogBase::Close,
|
|
parent, name, modal )
|
|
{
|
|
const TQString text1 = i18n(""
|
|
"<p>The <b>Trinity Desktop Environment</b> was born as a fork of the "
|
|
"K Desktop Environment version 3.5, which was originally written by the KDE Team, "
|
|
"a world-wide network of software engineers committed to <a "
|
|
"href=\"http://www.gnu.org/philosophy/free-sw.html\">Free Software</a> "
|
|
"development. The name <i>Trinity</i> was chosen because the word means "
|
|
"<i>Three</i> as in <i>continuation of KDE 3</i>.</p><p>Since then, TDE has evolved to "
|
|
"be an independent and standalone computer desktop environment project. The developers "
|
|
"have molded the code to its own identity without giving up on the efficiency, "
|
|
"productivity and traditional user interface experience characteristic of the "
|
|
"original KDE 3 series.</p><p>No single group, company or organization controls the "
|
|
"Trinity source code. Everyone is welcome to contribute to Trinity.<br><br>Visit <a "
|
|
"href=\"http://www.trinitydesktop.org\">http://www.trinitydesktop.org</a> for more information "
|
|
"about Trinity, and <a href=\"http://www.kde.org\">http://www.kde.org</a> "
|
|
"for more information on the KDE project.</p>");
|
|
|
|
const TQString text2 = i18n(""
|
|
"<p>Software can always be improved, and the Trinity Team is ready to "
|
|
"do so. However, you - the user - must tell us when "
|
|
"something does not work as expected or could be done better.</p><p>"
|
|
"The Trinity Desktop Environment has a bug tracking system. Visit "
|
|
"<a href=\"http://bugs.trinitydesktop.org\">http://bugs.trinitydesktop.org</a> or "
|
|
"use the \"Report Bug...\" dialog from the \"Help\" menu to report bugs.</p><p>"
|
|
"If you have a suggestion for improvement then you are welcome to use "
|
|
"the bug tracking system to register your wish. Make sure you use the "
|
|
"severity called \"Wishlist\".</p>" );
|
|
|
|
const TQString text3 = i18n(""
|
|
"<p>You do not have to be a software developer to be a member of the "
|
|
"Trinity team. You can join the national teams that translate "
|
|
"program interfaces. You can provide graphics, themes, sounds, and "
|
|
"improved documentation. You decide!"
|
|
"</p><p>"
|
|
"Visit the "
|
|
"<a href=\"https://wiki.trinitydesktop.org/TDE_Gitea_Workspace\">TDE Gitea Workspace (TGW)</a> "
|
|
"to find out how you can contribute or mail us using one of the "
|
|
"available <a href=\"http://www.trinitydesktop.org/mailinglist.php\">mailing lists</a>."
|
|
"</p><p>"
|
|
"If you need more information or documentation, then a visit to "
|
|
"<a href=\"http://www.trinitydesktop.org/docs\">http://www.trinitydesktop.org/docs</a> "
|
|
"will provide you with what you need.</p>");
|
|
|
|
const TQString text4 = i18n(""
|
|
"<p>TDE is available free of charge, but making it is not free.</p><p>"
|
|
"The Trinity team <i>does need</i> financial support. The money is used to "
|
|
"support the expenses incurred to keep the TDE servers running, so that you - "
|
|
"the user - can access them at any time. You are encouraged to support Trinity "
|
|
"through a financial or hardware donation, using one of the ways described at "
|
|
"<a href=\"http://www.trinitydesktop.org/donate.php\">http://www.trinitydesktop.org/donate.php</a>."
|
|
"</p><p>Thank you very much in advance for your support!</p>");
|
|
|
|
setHelp( TQString::fromLatin1("khelpcenter/main.html"), TQString::null );
|
|
setTitle(i18n("Trinity Desktop Environment. Release %1").
|
|
arg(TQString::fromLatin1(TDE_VERSION_STRING)) );
|
|
addTextPage( i18n("About Trinity","&About"), text1, true );
|
|
addTextPage( i18n("&Report Bugs/Request Enhancements"), text2, true );
|
|
addTextPage( i18n("&Join the Trinity Team"), text3, true );
|
|
addTextPage( i18n("&Support Trinity"), text4, true );
|
|
setImage( locate( "data", TQString::fromLatin1("tdeui/pics/abouttde.png")) );
|
|
setImageBackgroundColor( white );
|
|
}
|