summaryrefslogtreecommitdiffstats
path: root/tdeui/kaboutkde.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tdeui/kaboutkde.cpp')
-rw-r--r--tdeui/kaboutkde.cpp87
1 files changed, 87 insertions, 0 deletions
diff --git a/tdeui/kaboutkde.cpp b/tdeui/kaboutkde.cpp
new file mode 100644
index 000000000..b520e8380
--- /dev/null
+++ b/tdeui/kaboutkde.cpp
@@ -0,0 +1,87 @@
+/*
+ * 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 <kaboutkde.h>
+#include <kapplication.h>
+#include <klocale.h>
+#include <kstandarddirs.h>
+
+
+KAboutKDE::KAboutKDE( TQWidget *parent, const char *name, bool modal )
+ :KAboutDialog( KAboutDialog::AbtKDEStandard, TQString::tqfromLatin1("TDE"),
+ KDialogBase::Help|KDialogBase::Close, KDialogBase::Close,
+ parent, name, modal )
+{
+ const TQString text1 = i18n(""
+ "The <b>Trinity Desktop Environment</b> is 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.<br><br>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. ");
+
+ const TQString text2 = i18n(""
+ "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.<br><br>"
+ "The Trinity Desktop Environment has a bug tracking system. Visit "
+ "<A HREF=\"http://bugs.pearsoncomputing.net/\">http://bugs.pearsoncomputing.net</A> or "
+ "use the \"Report Bug...\" dialog from the \"Help\" menu to report bugs.<br><br>"
+ "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\"." );
+
+ const TQString text3 = i18n(""
+ "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!"
+ "<br><br>"
+ "Visit "
+ "<A HREF=\"http://www.trinitydesktop.org/jobs/\">http://www.trinitydesktop.org/jobs/</A> "
+ "for information on some projects in which you can participate."
+ "<br><br>"
+ "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.");
+ const TQString text4 = i18n(""
+ "Trinity is available free of charge, but making it is not free.<br><br>"
+ "<br><br>"
+ "The Trinity team does need financial support. Most of the money is used to "
+ "reimburse members and others on expenses they experienced when "
+ "contributing to Trinity. You are encouraged to support Trinity through a financial "
+ "donation, using one of the ways described at "
+ "<a href=\"http://www.trinitydesktop.org/donate.php\">http://www.trinitydesktop.org/donate.php</a>."
+ "<br><br>Thank you very much in advance for your support!");
+ setHelp( TQString::tqfromLatin1("khelpcenter/main.html"), TQString::null );
+ setTitle(i18n("Trinity Desktop Environment. Release %1").
+ arg(TQString::tqfromLatin1(KDE_VERSION_STRING)) );
+ addTextPage( i18n("About Trinity","&About"), text1, true );
+ addTextPage( i18n("&Report Bugs or Wishes"), text2, true );
+ addTextPage( i18n("&Join the Trinity Team"), text3, true );
+ addTextPage( i18n("&Support Trinity"), text4, true );
+ setImage( locate( "data", TQString::tqfromLatin1("tdeui/pics/aboutkde.png")) );
+ setImageBackgroundColor( white );
+}