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.
tdelibs/tdeui/kaboutapplication.cpp

189 lines
6.3 KiB

/*
* This file is part of the KDE Libraries
* Copyright (C) 2000 Waldo Bastian (bastian@kde.org) and
* 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 <tqlabel.h>
#include <kaboutapplication.h>
#include <kaboutdialog_private.h>
#include <kaboutdata.h>
#include <kapplication.h>
#include <kglobal.h>
#include <klocale.h>
#include <kurllabel.h>
#include <kactivelabel.h>
#include "ktextedit.h"
KAboutApplication::KAboutApplication( TQWidget *parent, const char *name,
bool modal )
:KAboutDialog( AbtTabbed|AbtProduct,
kapp ? kapp->caption() : TQString::null,
Close, Close,
parent, name, modal )
{
buildDialog(KGlobal::instance()->aboutData());
}
KAboutApplication::KAboutApplication( const TDEAboutData *aboutData, TQWidget *parent,
const char *name, bool modal )
:KAboutDialog( AbtTabbed|AbtProduct, aboutData->programName(), Close, Close,
parent, name, modal )
{
buildDialog(aboutData);
}
void KAboutApplication::buildDialog( const TDEAboutData *aboutData )
{
if( !aboutData )
{
//
// Recovery
//
//i18n "??" is displayed as (pseudo-)version when no data is known about the application
setProduct( kapp ? kapp->caption() : TQString::null, i18n("??"), TQString::null, TQString::null );
KAboutContainer *appPage = addContainerPage( i18n("&About"));
TQString appPageText =
i18n("No information available.\n"
"The supplied TDEAboutData object does not exist.");
TQLabel *appPageLabel = new TQLabel( "\n\n\n\n"+appPageText+"\n\n\n\n", 0 );
appPage->addWidget( appPageLabel );
return;
}
setProduct( aboutData->programName(), aboutData->version(),
TQString::null, TQString::null );
if (!aboutData->programLogo().isNull())
setProgramLogo( aboutData->programLogo() );
TQString appPageText = aboutData->shortDescription() + "\n";
if (!aboutData->otherText().isEmpty())
appPageText += "\n" + aboutData->otherText()+"\n";
if (!aboutData->copyrightStatement().isEmpty())
appPageText += "\n" + aboutData->copyrightStatement()+"\n";
KAboutContainer *appPage = addContainerPage( i18n("&About"));
TQLabel *appPageLabel = new TQLabel( appPageText, 0 );
appPage->addWidget( appPageLabel );
if (!aboutData->homepage().isEmpty())
{
KURLLabel *url = new KURLLabel();
url->setText(aboutData->homepage());
url->setURL(aboutData->homepage());
appPage->addWidget( url );
connect( url, TQT_SIGNAL(leftClickedURL(const TQString &)),
this, TQT_SLOT(openURLSlot(const TQString &)));
}
int authorCount = aboutData->authors().count();
if (authorCount)
{
TQString authorPageTitle = authorCount == 1 ?
i18n("A&uthor") : i18n("A&uthors");
KAboutContainer *authorPage = addScrolledContainerPage( authorPageTitle );
if (!aboutData->customAuthorTextEnabled() || !aboutData->customAuthorRichText().isEmpty ())
{
TQString text;
KActiveLabel* activeLabel = new KActiveLabel( authorPage );
if (!aboutData->customAuthorTextEnabled())
{
if ( aboutData->bugAddress().isEmpty() || aboutData->bugAddress() == "submit@bugs.pearsoncomputing.net")
text = i18n( "Please use <a href=\"http://bugs.pearsoncomputing.net\">http://bugs.pearsoncomputing.net</a> to report bugs.\n" );
else {
if( aboutData->authors().count() == 1 && ( aboutData->authors().first().emailAddress() == aboutData->bugAddress() ) )
{
text = i18n( "Please report bugs to <a href=\"mailto:%1\">%2</a>.\n" ).arg( aboutData->authors().first().emailAddress() ).arg( aboutData->authors().first().emailAddress() );
}
else {
text = i18n( "Please report bugs to <a href=\"mailto:%1\">%2</a>.\n" ).arg(aboutData->bugAddress()).arg(aboutData->bugAddress() );
}
}
}
else
{
text = aboutData->customAuthorRichText();
}
activeLabel->setText( text );
authorPage->addWidget( activeLabel );
}
TQValueList<KAboutPerson>::ConstIterator it;
for (it = aboutData->authors().begin();
it != aboutData->authors().end(); ++it)
{
authorPage->addPerson( (*it).name(), (*it).emailAddress(),
(*it).webAddress(), (*it).task() );
}
}
int creditsCount = aboutData->credits().count();
if (creditsCount)
{
KAboutContainer *creditsPage =
addScrolledContainerPage( i18n("&Thanks To") );
TQValueList<KAboutPerson>::ConstIterator it;
for (it = aboutData->credits().begin();
it != aboutData->credits().end(); ++it)
{
creditsPage->addPerson( (*it).name(), (*it).emailAddress(),
(*it).webAddress(), (*it).task() );
}
}
const TQValueList<KAboutTranslator> translatorList = aboutData->translators();
if(translatorList.count() > 0)
{
TQString text = "<qt>";
TQValueList<KAboutTranslator>::ConstIterator it;
for(it = translatorList.begin(); it != translatorList.end(); ++it)
{
text += TQString("<p>%1<br>&nbsp;&nbsp;&nbsp;"
"<a href=\"mailto:%2\">%2</a></p>")
.arg((*it).name())
.arg((*it).emailAddress())
.arg((*it).emailAddress());
}
text += TDEAboutData::aboutTranslationTeam() + "</qt>";
addTextPage( i18n("T&ranslation"), text, true);
}
if (!aboutData->license().isEmpty() )
{
addLicensePage( i18n("&License Agreement"), aboutData->license() );
}
//
// Make sure the dialog has a reasonable width
//
setInitialSize( TQSize(400,1) );
}