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.
189 lines
6.2 KiB
189 lines
6.2 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 <qlabel.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( QWidget *parent, const char *name,
|
|
bool modal )
|
|
:KAboutDialog( AbtTabbed|AbtProduct,
|
|
kapp ? kapp->caption() : QString::null,
|
|
Close, Close,
|
|
parent, name, modal )
|
|
{
|
|
buildDialog(KGlobal::instance()->aboutData());
|
|
}
|
|
|
|
KAboutApplication::KAboutApplication( const KAboutData *aboutData, QWidget *parent,
|
|
const char *name, bool modal )
|
|
:KAboutDialog( AbtTabbed|AbtProduct, aboutData->programName(), Close, Close,
|
|
parent, name, modal )
|
|
{
|
|
buildDialog(aboutData);
|
|
}
|
|
|
|
void KAboutApplication::buildDialog( const KAboutData *aboutData )
|
|
{
|
|
if( !aboutData )
|
|
{
|
|
//
|
|
// Recovery
|
|
//
|
|
|
|
//i18n "??" is displayed as (pseudo-)version when no data is known about the application
|
|
setProduct( kapp ? kapp->caption() : QString::null, i18n("??"), QString::null, QString::null );
|
|
KAboutContainer *appPage = addContainerPage( i18n("&About"));
|
|
|
|
QString appPageText =
|
|
i18n("No information available.\n"
|
|
"The supplied KAboutData object does not exist.");
|
|
QLabel *appPageLabel = new QLabel( "\n\n\n\n"+appPageText+"\n\n\n\n", 0 );
|
|
appPage->addWidget( appPageLabel );
|
|
return;
|
|
}
|
|
|
|
setProduct( aboutData->programName(), aboutData->version(),
|
|
QString::null, QString::null );
|
|
|
|
if (!aboutData->programLogo().isNull())
|
|
setProgramLogo( aboutData->programLogo() );
|
|
|
|
QString 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"));
|
|
|
|
QLabel *appPageLabel = new QLabel( 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, SIGNAL(leftClickedURL(const QString &)),
|
|
this, SLOT(openURLSlot(const QString &)));
|
|
}
|
|
|
|
int authorCount = aboutData->authors().count();
|
|
if (authorCount)
|
|
{
|
|
QString authorPageTitle = authorCount == 1 ?
|
|
i18n("A&uthor") : i18n("A&uthors");
|
|
KAboutContainer *authorPage = addScrolledContainerPage( authorPageTitle );
|
|
|
|
if (!aboutData->customAuthorTextEnabled() || !aboutData->customAuthorRichText().isEmpty ())
|
|
{
|
|
QString text;
|
|
KActiveLabel* activeLabel = new KActiveLabel( authorPage );
|
|
if (!aboutData->customAuthorTextEnabled())
|
|
{
|
|
if ( aboutData->bugAddress().isEmpty() || aboutData->bugAddress() == "submit@bugs.kde.org")
|
|
text = i18n( "Please use <a href=\"http://bugs.kde.org\">http://bugs.kde.org</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 );
|
|
}
|
|
|
|
QValueList<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") );
|
|
QValueList<KAboutPerson>::ConstIterator it;
|
|
for (it = aboutData->credits().begin();
|
|
it != aboutData->credits().end(); ++it)
|
|
{
|
|
creditsPage->addPerson( (*it).name(), (*it).emailAddress(),
|
|
(*it).webAddress(), (*it).task() );
|
|
}
|
|
}
|
|
|
|
const QValueList<KAboutTranslator> translatorList = aboutData->translators();
|
|
|
|
if(translatorList.count() > 0)
|
|
{
|
|
QString text = "<qt>";
|
|
|
|
QValueList<KAboutTranslator>::ConstIterator it;
|
|
for(it = translatorList.begin(); it != translatorList.end(); ++it)
|
|
{
|
|
text += QString("<p>%1<br> "
|
|
"<a href=\"mailto:%2\">%2</a></p>")
|
|
.arg((*it).name())
|
|
.arg((*it).emailAddress())
|
|
.arg((*it).emailAddress());
|
|
}
|
|
|
|
text += KAboutData::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( QSize(400,1) );
|
|
}
|