mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-12-19 03:54:07 +00:00
9d19ea1ebc
* also abstract version info into a standalone namespace
74 lines
1.9 KiB
C++
74 lines
1.9 KiB
C++
/* This file is (c) 2008-2012 Konstantin Isakov <ikm@goldendict.org>
|
|
* Part of GoldenDict. Licensed under GPLv3 or later, see the LICENSE file */
|
|
|
|
#include "about.hh"
|
|
#include "utils.hh"
|
|
#include "version.hh"
|
|
|
|
#include <QClipboard>
|
|
#include <QFile>
|
|
#include <QPushButton>
|
|
#include <QSysInfo>
|
|
|
|
About::About( QWidget * parent, std::vector< sptr< Dictionary::Class > > * dictonaries ): QDialog( parent )
|
|
{
|
|
ui.setupUi( this );
|
|
|
|
ui.version->setText( Version::version() );
|
|
|
|
ui.qtVersion->setText( tr( "Based on Qt %1 (%2, %3)" )
|
|
.arg( QLatin1String( qVersion() ), Version::compiler, QSysInfo::currentCpuArchitecture() )
|
|
+ " (Xapian inside)" );
|
|
|
|
connect( ui.copyInfoBtn, &QPushButton::clicked, [] {
|
|
QGuiApplication::clipboard()->setText( Version::everything() );
|
|
} );
|
|
|
|
connect(ui.copyDictListBtn, &QPushButton::clicked, [=]{
|
|
QString tempDictList{};
|
|
for (auto dict : *dictonaries) {
|
|
tempDictList.append(QString::fromStdString(dict->getName() + "\n"));
|
|
}
|
|
QGuiApplication::clipboard()->setText(tempDictList);
|
|
});
|
|
|
|
QFile creditsFile( ":/CREDITS.txt" );
|
|
|
|
if ( creditsFile.open( QFile::ReadOnly ) )
|
|
{
|
|
QStringList creditsList =
|
|
QString::fromUtf8(
|
|
creditsFile.readAll() ).split( '\n', Qt::SkipEmptyParts );
|
|
|
|
QString html = "<html><body>";
|
|
|
|
for( int x = 0; x < creditsList.size(); ++x )
|
|
{
|
|
QString str = creditsList[ x ];
|
|
|
|
str.replace( "\\", "@" );
|
|
|
|
str = Utils::escape( str );
|
|
|
|
int colon = str.indexOf( ":" );
|
|
|
|
if ( colon != -1 )
|
|
{
|
|
QString name( str.left( colon ) );
|
|
|
|
name.replace( ", ", "<br>" );
|
|
|
|
str = "<font color='blue'>" + name + "</font><br> "
|
|
+ str.mid( colon + 1 );
|
|
}
|
|
|
|
html += str;
|
|
html += "<br>";
|
|
}
|
|
|
|
html += "</body></html>";
|
|
|
|
ui.credits->setHtml( html );
|
|
}
|
|
}
|