1
///////////////////////////////////////////////////////////////////////////////
2 // LameXP - Audio Encoder Front-End
3 // Copyright (C) 2004-2020 LoRd_MuldeR <MuldeR2@GMX.de>
5 // This program is free software; you can redistribute it and/or modify
6 // it under the terms of the GNU GENERAL PUBLIC LICENSE as published by
7 // the Free Software Foundation; either version 2 of the License, or
8 // (at your option) any later version; always including the non-optional
9 // LAMEXP GNU GENERAL PUBLIC LICENSE ADDENDUM. See "License.txt" file!
11 // This program is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
16 // You should have received a copy of the GNU General Public License along
17 // with this program; if not, write to the Free Software Foundation, Inc.,
18 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 // http://www.gnu.org/licenses/gpl-2.0.txt
21 ///////////////////////////////////////////////////////////////////////////////
23 #include "Dialog_About.h"
25 #include "UIC_AboutDialog.h"
29 #include "Model_Settings.h"
32 #include <MUtils/Global.h>
33 #include <MUtils/OSSupport.h>
34 #include <MUtils/Sound.h>
35 #include <MUtils/GUI.h>
36 #include <MUtils/Version.h>
40 #include <QApplication>
42 #include <QPushButton>
43 #include <QDesktopServices>
48 #include <QDesktopWidget>
50 #include <QMessageBox>
51 #include <QTextStream>
53 #include <QCloseEvent>
54 #include <QElapsedTimer>
55 #include <QLibraryInfo>
56 #include <QWindowsVistaStyle>
57 #include <QWindowsXPStyle>
64 #define LINK(URL) QString("<a href=\"%1\">%2</a>").arg(URL).arg(QString(URL).replace("-", "−"))
65 #define TRIM_RIGHT(STR) do { while(STR.endsWith(QChar(' ')) || STR.endsWith(QChar('\t')) || STR.endsWith(QChar('\r')) || STR.endsWith(QChar('\n'))) STR.chop(1); } while(0)
66 #define PLAY_SOUND_OPTIONAL(NAME, ASYNC) do { if(m_settings->soundsEnabled()) MUtils::Sound::play_sound((NAME), (ASYNC)); } while(0)
67 #define MAKE_TRANSPARENT(WIDGET) do { QPalette _p = (WIDGET)->palette(); _p.setColor(QPalette::Background, Qt::transparent); (WIDGET)->setPalette(_p); } while(0)
70 const char *AboutDialog::neroAacUrl
= "http://www.videohelp.com/software/Nero-AAC-Codec"; //"http://www.nero.com/eng/company/about-nero/nero-aac-codec.php"
71 const char *AboutDialog::disqueUrl
= "http://muldersoft.com/?player_url=n4bply6Ibqw"; //38X-MXOB014
81 g_lamexp_translators
[] =
83 {"en", L
"Englisch", L
"LoRd_MuldeR", "MuldeR2@GMX.de" },
84 {"de", L
"Deutsch", L
"LoRd_MuldeR", "MuldeR2@GMX.de" },
85 {"", L
"", L
"Bodo Thevissen", "Bodo@thevissen.de" },
86 {"es", L
"Español", L
"Rub3nCT", "Rub3nCT@gmail.com" },
87 {"fr", L
"Française", L
"Dodich Informatique", "Dodich@live.fr" },
88 {"", L
"Française", L
"Sami Ghoul-Duclos", "samgd14@live.ca" },
89 {"hu", L
"Magyarul", L
"ZityiSoft Team", "zityisoft@gmail.com" },
90 {"it", L
"Italiano", L
"Roberto", "Gulliver_69@libero.it" },
91 {"", L
"", L
"Gianluca Papi", "johnnyb.goode68@gmail.com"},
92 {"ja", L
"日本語", L
"Maboroshin", "pc.genkaku.in" },
93 {"kr", L
"한국어", L
"JaeHyung Lee", "Kolanp@gmail.com" },
94 {"pl", L
"Polski", L
"Sir Daniel K", "Sir.Daniel.K@gmail.com" },
95 {"ru", L
"Русский", L
"Neonailol", "Neonailol@gmail.com" },
96 {"", L
"", L
"Иван Митин", "bardak@inbox.ru" },
97 {"sv", L
"Svenska", L
"Åke Engelbrektson", "eson@svenskasprakfiler.se"},
98 {"tw", L
"繁体中文", L
"456Vv", "123@456vv.com" },
99 {"uk", L
"Українська", L
"Arestarh", "Arestarh@ukr.net" },
100 {"zh", L
"简体中文", L
"456Vv", "123@456vv.com" },
101 {"", L
"", L
"庄泓川", "kidneybean@pku.edu.cn" },
102 {NULL
, NULL
, NULL
, NULL
}
111 g_lamexp_specialThanks
[] =
113 { "Doom9's Forum", "http://forum.doom9.org/" },
114 { "Gleitz | German Doom9", "http://forum.gleitz.info/" },
115 { "Portable Freeware", "http://www.portablefreeware.com/" },
116 { "Hydrogenaudio Forums", "http://www.hydrogenaudio.org/" },
117 { "RareWares", "http://www.rarewares.org/" },
118 { "GitHub", "http://github.com/" },
119 { "SourceForge", "http://sourceforge.net/" },
120 { "OSDN.net", "http://osdn.net/" },
121 { "Marius Hudea", "http://savedonthe.net/" },
122 { "Qt Developer Network", "http://www.qt.io/developers/" },
123 { "Codecs.com", "http://www.codecs.com/" },
124 { "VideoHelp", "http://www.videohelp.com/" },
136 { "GitHub.com", "https://github.com/lordmulder/LameXP" },
137 { "SourceForge.net", "http://sourceforge.net/p/lamexp/code/" },
138 { "OSDN.net", "https://osdn.net/projects/lamexp/scm/git/LameXP/" },
139 { "Bitbucket.org", "https://bitbucket.org/muldersoft/lamexp" },
140 { "GitLab.com" , "https://gitlab.com/lamexp/lamexp" },
141 { "Assembla.com", "https://www.assembla.com/spaces/lamexp/" },
142 { "repo.or.cz", "https://repo.or.cz/w/LameXP.git" },
146 ////////////////////////////////////////////////////////////
148 ////////////////////////////////////////////////////////////
150 AboutDialog::AboutDialog(SettingsModel
*settings
, QWidget
*parent
, bool firstStart
)
153 ui(new Ui::AboutDialog
),
154 m_settings(settings
),
155 m_initFlags(new QMap
<QWidget
*,bool>),
160 m_firstStart(firstStart
)
162 //Init the dialog, from the .ui file
164 setWindowFlags(windowFlags() & (~Qt::WindowContextHelpButtonHint
));
165 setMinimumSize(this->size());
167 //Adjust size to DPI settings and re-center
168 MUtils::GUI::scale_widget(this);
173 MUtils::GUI::enable_close_button(this, false);
177 connect(ui
->tabWidget
, SIGNAL(currentChanged(int)), this, SLOT(tabChanged(int)));
180 const type_info
&styleType
= typeid(*qApp
->style());
181 if((typeid(QWindowsVistaStyle
) == styleType
) || (typeid(QWindowsXPStyle
) == styleType
))
183 MAKE_TRANSPARENT(ui
->infoScrollArea
);
184 MAKE_TRANSPARENT(ui
->contributorsScrollArea
);
185 MAKE_TRANSPARENT(ui
->softwareScrollArea
);
186 MAKE_TRANSPARENT(ui
->licenseScrollArea
);
189 //Show about dialog for the first time?
192 ui
->acceptButton
->hide();
193 ui
->declineButton
->hide();
194 ui
->aboutQtButton
->show();
195 ui
->closeButton
->show();
197 QPixmap
disque(":/images/Disque.png");
198 m_disque
.reset(new QLabel(this, Qt::Window
| Qt::FramelessWindowHint
| Qt::WindowStaysOnTopHint
));
199 m_disque
->resize(disque
.size());
200 m_disque
->setStyleSheet("background:transparent;");
201 m_disque
->setAttribute(Qt::WA_TranslucentBackground
);
202 m_disque
->setPixmap(disque
);
203 m_disque
->setCursor(QCursor(Qt::PointingHandCursor
));
204 m_disque
->installEventFilter(this);
206 connect(QApplication::desktop(), SIGNAL(workAreaResized(int)), this, SLOT(geometryUpdated()));
209 m_discOpacity
= 0.01;
210 m_disquePos
.setX(static_cast<int>(MUtils::next_rand_u32() % static_cast<unsigned int>(m_disqueBound
.right() - disque
.width() - m_disqueBound
.left())) + m_disqueBound
.left());
211 m_disquePos
.setY(static_cast<int>(MUtils::next_rand_u32() % static_cast<unsigned int>(m_disqueBound
.bottom() - disque
.height() - m_disqueBound
.top())) + m_disqueBound
.top());
212 m_disqueFlags
[0] = (MUtils::next_rand_u32() > (UINT_MAX
/2));
213 m_disqueFlags
[1] = (MUtils::next_rand_u32() > (UINT_MAX
/2));
214 m_disque
->move(m_disquePos
);
215 m_disque
->setWindowOpacity(m_discOpacity
);
217 m_disqueTimer
.reset(new QTimer());
219 connect(m_disqueTimer
.data(), SIGNAL(timeout()), this, SLOT(moveDisque()));
220 connect(ui
->aboutQtButton
, SIGNAL(clicked()), this, SLOT(showAboutQt()));
224 ui
->acceptButton
->show();
225 ui
->declineButton
->show();
226 ui
->aboutQtButton
->hide();
227 ui
->closeButton
->hide();
230 //Activate "show license" button
231 ui
->showLicenseButton
->show();
232 connect(ui
->showLicenseButton
, SIGNAL(clicked()), this, SLOT(gotoLicenseTab()));
235 AboutDialog::~AboutDialog(void)
243 m_disqueTimer
->stop();
248 ////////////////////////////////////////////////////////////
250 ////////////////////////////////////////////////////////////
252 int AboutDialog::exec()
256 if (m_settings
->soundsEnabled())
258 if (!MUtils::Sound::play_sound_file("imageres.dll", 5080, true))
260 MUtils::Sound::play_system_sound("SystemStart", true);
266 PLAY_SOUND_OPTIONAL("ghost", true);
269 switch(QDialog::exec())
283 ////////////////////////////////////////////////////////////
285 ////////////////////////////////////////////////////////////
287 #define TEMP_HIDE_DISQUE(CMD) do \
289 bool _tmp = (m_disque) ? m_disque->isVisible() : false; \
290 if(_tmp) m_disque->hide(); \
294 m_discOpacity = 0.01; \
295 m_disque->setWindowOpacity(m_discOpacity); \
301 void AboutDialog::tabChanged(int index
, const bool silent
)
303 bool bInitialized
= m_initFlags
->value(ui
->tabWidget
->widget(index
), false);
307 qApp
->setOverrideCursor(QCursor(Qt::WaitCursor
));
309 if(QWidget
*tab
= ui
->tabWidget
->widget(index
))
313 if(tab
== ui
->infoTab
) { initInformationTab(); ok
= true; }
314 if(tab
== ui
->contributorsTab
) { initContributorsTab(); ok
= true; }
315 if(tab
== ui
->softwareTab
) { initSoftwareTab(); ok
= true; }
316 if(tab
== ui
->licenseTab
) { initLicenseTab(); ok
= true; }
320 m_initFlags
->insert(tab
, true);
324 qWarning("Unknown tab %p encountered, cannot initialize !!!", tab
);
329 ui
->tabWidget
->widget(index
)->update();
330 qApp
->processEvents();
331 qApp
->restoreOverrideCursor();
335 PLAY_SOUND_OPTIONAL("tick", true);
338 if(QWidget
*tab
= ui
->tabWidget
->widget(index
))
340 if(tab
== ui
->infoTab
) ui
->infoScrollArea
->verticalScrollBar()->setSliderPosition(0);
341 if(tab
== ui
->contributorsTab
) ui
->contributorsScrollArea
->verticalScrollBar()->setSliderPosition(0);
342 if(tab
== ui
->softwareTab
) ui
->softwareScrollArea
->verticalScrollBar()->setSliderPosition(0);
343 if(tab
== ui
->licenseTab
) ui
->licenseScrollArea
->verticalScrollBar()->setSliderPosition(0);
346 //Update license button
347 ui
->showLicenseButton
->setChecked(ui
->tabWidget
->widget(index
) == ui
->licenseTab
);
348 if(ui
->tabWidget
->widget(index
) != ui
->licenseTab
) m_lastTab
= index
;
351 void AboutDialog::enableButtons(void)
353 ui
->acceptButton
->setEnabled(true);
354 ui
->declineButton
->setEnabled(true);
355 setCursor(QCursor(Qt::ArrowCursor
));
358 void AboutDialog::openURL(const QString
&url
)
360 if(!QDesktopServices::openUrl(QUrl(url
)))
362 MUtils::OS::shell_open(this, url
);
366 void AboutDialog::showAboutQt(void)
370 QMessageBox::aboutQt(this);
374 void AboutDialog::gotoLicenseTab(void)
376 ui
->tabWidget
->setCurrentIndex(ui
->tabWidget
->indexOf(ui
->showLicenseButton
->isChecked() ? ui
->licenseTab
: ui
->tabWidget
->widget(m_lastTab
)));
379 void AboutDialog::moveDisque(void)
382 QElapsedTimer elapsedTimer
;
383 elapsedTimer
.start();
385 if((!m_disqueDelay
.isNull()) && m_disqueDelay
->isValid())
387 const qint64 delay
= m_disqueDelay
->restart();
388 delta
= qBound(1, static_cast<int>(ceil(static_cast<double>(delay
) / 5.12)), 128);
392 m_disqueDelay
.reset(new QElapsedTimer());
393 m_disqueDelay
->start();
398 if(m_disquePos
.x() <= m_disqueBound
.left()) { m_disqueFlags
[0] = true; m_rotateNext
= true; }
399 if(m_disquePos
.x() >= m_disqueBound
.right()) { m_disqueFlags
[0] = false; m_rotateNext
= true; }
400 if(m_disquePos
.y() <= m_disqueBound
.top()) { m_disqueFlags
[1] = true; m_rotateNext
= true; }
401 if(m_disquePos
.y() >= m_disqueBound
.bottom()) { m_disqueFlags
[1] = false; m_rotateNext
= true; }
403 m_disquePos
.setX(m_disqueFlags
[0] ? (m_disquePos
.x() + delta
) : (m_disquePos
.x() - delta
));
404 m_disquePos
.setY(m_disqueFlags
[1] ? (m_disquePos
.y() + delta
) : (m_disquePos
.y() - delta
));
406 m_disque
->move(m_disquePos
);
410 const QPixmap
*const cartoon
= m_cartoon
[m_disqueFlags
[0] ? (m_disqueFlags
[1] ? 1 : 0): (m_disqueFlags
[1] ? 2 : 3)].data();
413 m_disque
->setPixmap(*cartoon
);
414 if(m_disque
->size() != cartoon
->size())
416 m_disque
->resize(cartoon
->size());
420 m_rotateNext
= false;
423 if(m_discOpacity
!= 1.0)
425 m_discOpacity
= m_discOpacity
+ 0.01;
426 if(qFuzzyCompare(m_discOpacity
, 1.0) || (m_discOpacity
> 1.0))
430 m_disque
->setWindowOpacity(m_discOpacity
);
436 void AboutDialog::geometryUpdated(void)
440 QRect screenGeometry
= QApplication::desktop()->availableGeometry();
441 m_disqueBound
.setLeft(screenGeometry
.left());
442 m_disqueBound
.setRight(screenGeometry
.width() - m_disque
->width() + screenGeometry
.left());
443 m_disqueBound
.setTop(screenGeometry
.top());
444 m_disqueBound
.setBottom(screenGeometry
.height() - m_disque
->height() + screenGeometry
.top());
448 m_disqueBound
= QApplication::desktop()->availableGeometry();
452 void AboutDialog::adjustSize(void)
454 const int maxH
= QApplication::desktop()->availableGeometry().height();
455 const int maxW
= QApplication::desktop()->availableGeometry().width();
457 const int deltaH
= ui
->infoScrollArea
->widget()->height() - ui
->infoScrollArea
->viewport()->height();
458 const int deltaW
= ui
->infoScrollArea
->widget()->width() - ui
->infoScrollArea
->viewport()->width();
462 this->resize(this->width(), qMin(this->height() + deltaH
, maxH
));
463 this->move(this->x(), this->y() - (deltaH
/ 2));
464 this->setMinimumHeight(qMax(this->minimumHeight(), this->height()));
469 this->resize(qMin(this->width() + deltaW
, maxW
), this->height());
470 this->move(this->x() - (deltaW
/ 2), this->y());
471 this->setMinimumWidth(qMax(this->minimumWidth(), this->width()));
475 ////////////////////////////////////////////////////////////
476 // Protected Functions
477 ////////////////////////////////////////////////////////////
479 void AboutDialog::showEvent(QShowEvent
*e
)
481 QDialog::showEvent(e
);
483 ui
->tabWidget
->setCurrentIndex(ui
->tabWidget
->indexOf(ui
->infoTab
));
484 tabChanged(m_lastTab
= ui
->tabWidget
->currentIndex(), true);
488 ui
->acceptButton
->setEnabled(false);
489 ui
->declineButton
->setEnabled(false);
490 QTimer::singleShot(5000, this, SLOT(enableButtons()));
491 setCursor(QCursor(Qt::WaitCursor
));
494 if (!(m_disque
.isNull() || m_disqueTimer
.isNull()))
497 m_disqueTimer
->start(10);
500 QTimer::singleShot(0, this, SLOT(adjustSize()));
503 void AboutDialog::closeEvent(QCloseEvent
*e
)
511 bool AboutDialog::eventFilter(QObject
*obj
, QEvent
*event
)
513 if((!m_disque
.isNull()) && (obj
== m_disque
.data()) && (event
->type() == QEvent::MouseButtonPress
))
515 PLAY_SOUND_OPTIONAL("chicken", true);
518 QPixmap
cartoon(":/images/Cartoon.png");
519 for(int i
= 0; i
< 4; i
++)
521 m_cartoon
[i
].reset(new QPixmap(cartoon
.transformed(QMatrix().rotate(static_cast<double>(i
*90) + 45.0), Qt::SmoothTransformation
)));
525 QDesktopServices::openUrl(QUrl(disqueUrl
));
531 ////////////////////////////////////////////////////////////
533 ////////////////////////////////////////////////////////////
535 void AboutDialog::initInformationTab(void)
537 const QDate versionDate
= MUtils::Version::app_build_date();
538 const QTime versionTime
= MUtils::Version::app_build_time();
540 const QString versionStr
= QString("Version %1 %2, Build %3 [%4] [%5]").arg
542 QString().sprintf("%u.%02u", lamexp_version_major(), lamexp_version_minor()),
543 QString::fromLatin1(lamexp_version_release()),
544 QString::number(lamexp_version_build()),
545 versionDate
.toString(Qt::ISODate
),
546 versionTime
.toString(Qt::ISODate
)
549 const QString platformStr
= QString("%1 [%2], MUtilities %3 [%4] [%5], Qt Framework v%6 [%7]").arg
551 QString::fromLatin1(MUtils::Version::compiler_version()),
552 QString::fromLatin1(MUtils::Version::compiler_arch()),
553 QString().sprintf("%u.%02u", MUtils::Version::lib_version_major(), MUtils::Version::lib_version_minor()),
554 MUtils::Version::lib_build_date().toString(Qt::ISODate
).toLatin1().constData(),
555 MUtils::Version::lib_build_time().toString(Qt::ISODate
).toLatin1().constData(),
556 QString::fromLatin1(qVersion()),
557 QLibraryInfo::buildDate().toString(Qt::ISODate
)
560 const QString copyrightStr
= QString().sprintf
562 "Copyright (C) 2004-%04d LoRd_MuldeR <MuldeR2@GMX.de>. Some rights reserved.",
563 qMax(versionDate
.year(), MUtils::OS::current_date().year())
568 aboutText
+= QString("<h2>%1</h2>").arg(tr("LameXP - Audio Encoder Front-end"));
569 aboutText
+= QString("<b>%1</b><br>").arg(copyrightStr
);
570 aboutText
+= QString("<b>%1</b><br>").arg(versionStr
);
571 aboutText
+= QString("<b>%1</b><br><br>").arg(platformStr
);
572 aboutText
+= QString("%1<br>").arg(tr("Please visit %1 for news and updates!").arg(LINK(lamexp_website_url())));
574 #if QT_VERSION < QT_VERSION_CHECK(5,0,0)
575 const QDate currentDate
= MUtils::OS::current_date();
578 int daysLeft
= qMax(currentDate
.daysTo(lamexp_version_expires()), 0);
579 aboutText
+= QString("<hr><font color=\"crimson\">%1</font>").arg(QString("!!! --- DEBUG BUILD --- Expires at: %1 · Days left: %2 --- DEBUG BUILD --- !!!").arg(lamexp_version_expires().toString(Qt::ISODate
), QString::number(daysLeft
)));
581 else if(lamexp_version_demo())
583 int daysLeft
= qMax(currentDate
.daysTo(lamexp_version_expires()), 0);
584 aboutText
+= QString("<hr><font color=\"crimson\">%1</font>").arg(tr("Note: This demo (pre-release) version of LameXP will expire at %1. Still %2 days left.").arg(lamexp_version_expires().toString(Qt::ISODate
), QString::number(daysLeft
)));
587 const QDate currentDate
= lamexp_current_date_safe();
590 int daysLeft
= qMax(currentDate
.daysTo(lamexp_version_expires()), 0i64
);
591 aboutText
+= QString("<hr><font color=\"crimson\">%1</font>").arg(QString("!!! --- DEBUG BUILD --- Expires at: %1 · Days left: %2 --- DEBUG BUILD --- !!!").arg(lamexp_version_expires().toString(Qt::ISODate
), QString::number(daysLeft
)));
593 else if(lamexp_version_demo())
595 int daysLeft
= qMax(currentDate
.daysTo(lamexp_version_expires()), 0i64
);
596 aboutText
+= QString("<hr><font color=\"crimson\">%1</font>").arg(tr("Note: This demo (pre-release) version of LameXP will expire at %1. Still %2 days left.").arg(lamexp_version_expires().toString(Qt::ISODate
), QString::number(daysLeft
)));
600 aboutText
+= "<hr><br>";
602 aboutText
+= "<tt>This program is free software; you can redistribute it and/or modify<br>";
603 aboutText
+= "it under the terms of the GNU GENERAL PUBLIC LICENSE as published by<br>";
604 aboutText
+= "the Free Software Foundation; either version 2 of the License, or<br>";
605 aboutText
+= "(at your option) any later version; always including the non-optional<br>";
606 aboutText
+= "refinements defined in the \"License.txt\" file (see \"License\" tab).<br><br>";
607 aboutText
+= "This program is distributed in the hope that it will be useful,<br>";
608 aboutText
+= "but WITHOUT ANY WARRANTY; without even the implied warranty of<br>";
609 aboutText
+= "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the<br>";
610 aboutText
+= "GNU General Public License for more details.<br><br>";
611 aboutText
+= "You should have received a copy of the GNU General Public License<br>";
612 aboutText
+= "along with this program; if not, write to the Free Software<br>";
613 aboutText
+= "Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110−1301, USA.</tt><br>";
614 aboutText
+= "<hr><table style=\"margin-top:4px\"><tr>";
615 aboutText
+= "<td valign=\"middle\"><img src=\":/icons/error_big.png\"</td><td> </td>";
616 aboutText
+= QString("<td style='white-space:normal'><font color=\"darkred\">%1</font></td>").arg(tr("Note: LameXP is free software. Do <b>not</b> pay money to obtain or use LameXP! If some third-party website tries to make you pay for downloading LameXP, you should <b>not</b> respond to the offer !!!"));
617 aboutText
+= "</tr></table>";
619 ui
->infoLabel
->setText(NOBREAK(aboutText
));
620 ui
->infoIcon
->setPixmap(lamexp_app_icon().pixmap(QSize(72,72)));
621 connect(ui
->infoLabel
, SIGNAL(linkActivated(QString
)), this, SLOT(openURL(QString
)));
624 void AboutDialog::initContributorsTab(void)
626 const QString
spaces(" ");
627 const QString
extraVSpace("<font style=\"font-size:7px\"><br> </font>");
629 QString contributorsAboutText
;
630 contributorsAboutText
+= QString("<h3>%1</h3>").arg(tr("The following people have contributed to LameXP:"));
631 contributorsAboutText
+= "<table style=\"margin-top:12px;white-space:nowrap\">";
633 contributorsAboutText
+= QString("<tr><td colspan=\"7\"><b>%1</b>%2</td></tr>").arg(tr("Programmers:"), extraVSpace
);
634 QString icon
= QString("<img src=\":/icons/%1.png\">").arg("user_gray");
635 contributorsAboutText
+= QString("<tr><td valign=\"middle\">%1</td><td>%2</td>").arg(icon
, spaces
);
636 contributorsAboutText
+= QString("<td valign=\"middle\">%1</td><td>%2</td>").arg(tr("Project Leader"), spaces
);
637 contributorsAboutText
+= QString("<td valign=\"middle\">%1</td><td>%2</td><td><a href=\"mailto:%3?subject=LameXP\"><%3></a></td></tr>").arg(L1S("LoRd_MuldeR"), spaces
, L1S("MuldeR2@GMX.de"));
638 contributorsAboutText
+= QString("<tr><td colspan=\"7\"><b> </b></td></tr>");
640 contributorsAboutText
+= QString("<tr><td colspan=\"7\"><b>%1</b>%2</td></tr>").arg(tr("Translators:"), extraVSpace
);
641 for(int i
= 0; g_lamexp_translators
[i
].pcName
; i
++)
643 const QString flagIcon
= (strlen(g_lamexp_translators
[i
].pcFlag
) > 0) ? QString("<img src=\":/flags/%1.png\">").arg(QString::fromLatin1(g_lamexp_translators
[i
].pcFlag
)) : QString();
644 const QString contactAddr
= QString::fromLatin1(g_lamexp_translators
[i
].pcContactAddr
);
645 const QString linkUrl
= QString(contactAddr
.contains('@') ? "mailto:%1?subject=LameXP" : "http://%1").arg(contactAddr
);
646 contributorsAboutText
+= QString("<tr><td valign=\"middle\">%1</td><td>%2</td>").arg(flagIcon
, spaces
);
647 contributorsAboutText
+= QString("<td valign=\"middle\">%1</td><td>%2</td>").arg(MUTILS_QSTR(g_lamexp_translators
[i
].pcLanguage
), spaces
);
648 contributorsAboutText
+= QString("<td valign=\"middle\">%1</td><td>%2</td><td><a href=\"%3\"><%4></a></td></tr>").arg(MUTILS_QSTR(g_lamexp_translators
[i
].pcName
), spaces
, linkUrl
, contactAddr
);
651 contributorsAboutText
+= QString("<tr><td colspan=\"7\"><b> </b></td></tr>");
652 contributorsAboutText
+= QString("<tr><td colspan=\"7\"><b>%1</b>%2</td></tr>").arg(tr("Special thanks to:"), extraVSpace
);
654 QString webIcon
= QString("<img src=\":/icons/%1.png\">").arg("world");
655 for(int i
= 0; g_lamexp_specialThanks
[i
].pcName
; i
++)
657 contributorsAboutText
+= QString("<tr><td valign=\"middle\">%1</td><td>%2</td>").arg(webIcon
, spaces
);
658 contributorsAboutText
+= QString("<td valign=\"middle\">%1</td><td>%2</td><td valign=\"middle\" colspan=\"3\"><a href=\"%3\">%3</td></tr>").arg(QString::fromLatin1(g_lamexp_specialThanks
[i
].pcName
), spaces
, QString::fromLatin1(g_lamexp_specialThanks
[i
].pcAddress
));
661 contributorsAboutText
+= QString("<tr><td colspan=\"7\"><b> </b></td></tr>");
662 contributorsAboutText
+= QString("<tr><td colspan=\"7\"><b>%1</b>%2</td></tr>").arg(tr("Official Mirrors:"), extraVSpace
);
664 QString serverIcon
= QString("<img src=\":/icons/%1.png\">").arg("server_database");
665 for(int i
= 0; g_lamexp_mirrors
[i
].pcName
; i
++)
667 contributorsAboutText
+= QString("<tr><td valign=\"middle\">%1</td><td>%2</td>").arg(serverIcon
, spaces
);
668 contributorsAboutText
+= QString("<td valign=\"middle\">%1</td><td>%2</td><td valign=\"middle\" colspan=\"3\"><a href=\"%3\">%3</td></tr>").arg(QString::fromLatin1(g_lamexp_mirrors
[i
].pcName
), spaces
, QString::fromLatin1(g_lamexp_mirrors
[i
].pcAddress
));
671 contributorsAboutText
+= "</table><br><br><br>";
672 contributorsAboutText
+= QString("<i>%1</i><br>").arg(tr("If you are willing to contribute a LameXP translation, feel free to contact us!"));
674 ui
->contributorsLabel
->setText(NOBREAK(contributorsAboutText
));
675 ui
->contributorsIcon
->setPixmap(QIcon(":/images/Logo_Contributors.png").pixmap(QSize(72,84)));
676 connect(ui
->contributorsLabel
, SIGNAL(linkActivated(QString
)), this, SLOT(openURL(QString
)));
679 void AboutDialog::initSoftwareTab(void)
681 QString moreAboutText
;
683 moreAboutText
+= QString("<h3>%1</h3>").arg(tr("The following third-party software is used in LameXP:"));
684 moreAboutText
+= "<ul style='margin-left:-25px'>"; //;font-size:7pt
686 moreAboutText
+= makeToolText
688 tr("LAME - OpenSource mp3 Encoder"),
689 "lame.exe", "v?.???, #-?",
690 tr("Released under the terms of the GNU Lesser General Public License."),
691 "http://lame.sourceforge.net/"
693 moreAboutText
+= makeToolText
695 tr("OggEnc - Vorbis Encoder"),
696 "oggenc2.exe", "v?.??, libvorbis v?.?? + aoTuV b?.??_#",
697 tr("Completely open and patent-free audio encoding technology."),
698 "http://www.rarewares.org/ogg-oggenc.php"
700 moreAboutText
+= makeToolText
702 tr("Nero AAC Reference MPEG-4 Encoder"),
703 "neroAacEnc.exe", "v?.?.?.?",
704 tr("Freeware state-of-the-art HE-AAC encoder with 2-Pass support."),
706 tr("Available from vendor web-site as free download:")
708 moreAboutText
+= makeToolText
710 tr("Aften - A/52 audio encoder"),
711 "aften.exe", "v?.?.?",
712 tr("Released under the terms of the GNU Lesser General Public License."),
713 "http://aften.sourceforge.net/"
715 moreAboutText
+= makeToolText
717 tr("FLAC - Free Lossless Audio Codec"),
718 "flac.exe", "v?.?.?",
719 tr("Open and patent-free lossless audio compression technology."),
720 "http://flac.sourceforge.net/"
722 moreAboutText
+= makeToolText
724 tr("Opus Audio Codec"),
725 "opusenc.exe", "#, ????-??-??",
726 tr("Totally open, royalty-free, highly versatile audio codec."),
727 "http://www.opus-codec.org/"
729 moreAboutText
+= makeToolText
731 tr("mpg123 - Fast Console MPEG Audio Player/Decoder"),
732 "mpg123.exe", "v?.??.??",
733 tr("Released under the terms of the GNU Lesser General Public License."),
734 "http://www.mpg123.de/"
736 moreAboutText
+= makeToolText
738 tr("FAAD - OpenSource MPEG-4 and MPEG-2 AAC Decoder"),
739 "faad.exe", "v?.?.?",
740 tr("Released under the terms of the GNU General Public License."),
741 "https://sourceforge.net/projects/faac/" //"http://www.audiocoding.com/"
743 moreAboutText
+= makeToolText
745 tr("OggDec - Vorbis Decoder"),
746 "oggdec.exe", "v?.??.?",
747 tr("Command line Ogg Vorbis decoder created by John33."),
748 "http://www.rarewares.org/ogg-oggdec.php"
750 moreAboutText
+= makeToolText
752 tr("Valdec from AC3Filter Tools - AC3/DTS Decoder"),
753 "valdec.exe", "v?.??#",
754 tr("Released under the terms of the GNU Lesser General Public License."),
755 "http://www.ac3filter.net/projects/tools"
757 moreAboutText
+= makeToolText
759 tr("WavPack - Hybrid Lossless Compression"),
760 "wvunpack.exe", "v?.??.?",
761 tr("Completely open audio compression format."),
762 "http://www.wavpack.com/"
764 moreAboutText
+= makeToolText
766 tr("Musepack - Living Audio Compression"),
767 "mpcdec.exe", "r???",
768 tr("Released under the terms of the GNU Lesser General Public License."),
769 "http://www.musepack.net/"
771 moreAboutText
+= makeToolText
773 tr("Monkey's Audio - Lossless Audio Compressor"),
775 tr("Freely available source code, simple SDK and non-restrictive licensing."),
776 "http://www.monkeysaudio.com/"
778 moreAboutText
+= makeToolText
780 tr("Shorten - Lossless Audio Compressor"),
781 "shorten.exe", "v?.?.?",
782 tr("Released under the terms of the GNU Lesser General Public License."),
783 "http://etree.org/shnutils/shorten/"
785 moreAboutText
+= makeToolText
787 tr("Speex - Free Codec For Free Speech"),
788 "speexdec.exe", "v?.?",
789 tr("Open Source patent-free audio format designed for speech."),
790 "http://www.speex.org/"
792 moreAboutText
+= makeToolText
794 tr("The True Audio - Lossless Audio Codec"),
796 tr("Released under the terms of the GNU Lesser General Public License."),
797 "http://tta.sourceforge.net/"
799 moreAboutText
+= makeToolText
801 tr("refalac - Win32 command line ALAC encoder/decoder"),
802 "refalac.exe", "v?.??",
803 tr("The ALAC reference implementation by Apple is available under the Apache license."),
804 "http://alac.macosforge.org/"
806 moreAboutText
+= makeToolText
808 tr("wma2wav - Dump WMA files to Wave Audio"),
809 "wma2wav.exe", "????-??-??",
810 tr("Copyright (c) 2011 LoRd_MuldeR <mulder2@gmx.de>. Some rights reserved."),
811 "http://forum.doom9.org/showthread.php?t=140273"
813 moreAboutText
+= makeToolText
815 tr("avs2wav - Avisynth to Wave Audio converter"),
816 "avs2wav.exe", "v?.?",
817 tr("By Jory Stone <jcsston@toughguy.net> and LoRd_MuldeR <mulder2@gmx.de>."),
818 "http://forum.doom9.org/showthread.php?t=70882"
820 moreAboutText
+= makeToolText
823 "dcaenc.exe", "????-??-??",
824 tr("Copyright (c) 2008-2011 Alexander E. Patrakov. Distributed under the LGPL."),
825 "https://gitlab.com/patrakov/dcaenc"
827 moreAboutText
+= makeToolText
829 tr("MediaInfo - Media File Analysis Tool"),
830 "mediainfo.exe", "v??.??.?",
831 tr("Released under the terms of the GNU Lesser General Public License."),
832 "http://mediainfo.sourceforge.net/"
834 moreAboutText
+= makeToolText
836 tr("SoX - Sound eXchange"),
837 "sox.exe", "v??.?.?",
838 tr("Released under the terms of the GNU Lesser General Public License."),
839 "http://sox.sourceforge.net/"
841 moreAboutText
+= makeToolText
843 tr("GnuPG - The GNU Privacy Guard"),
844 "gpgv.exe", "v?.?.??",
845 tr("Released under the terms of the GNU Lesser General Public License."),
846 "http://www.gnupg.org/"
848 moreAboutText
+= makeToolText
850 tr("cURL - Curl URL Request Library"),
851 "curl.exe", "v?.??.?",
852 tr("By Daniel Stenberg, released under the terms of the MIT/X Derivate License."),
853 "https://curl.haxx.se/"
855 moreAboutText
+= makeToolText
857 tr("UPX - The Ultimate Packer for eXecutables"),
859 tr("Released under the terms of the GNU Lesser General Public License."),
860 "http://upx.sourceforge.net/"
862 moreAboutText
+= makeToolText
864 tr("Silk Icons - Over 700 icons in PNG format"),
866 tr("By Mark James, released under the Creative Commons 'BY' License."),
867 "http://www.famfamfam.com/lab/icons/silk/"
869 moreAboutText
+= makeToolText
871 tr("Angry Chicken and Ghost Scream sound"),
873 tr("By Alexander, released under the Creative Commons 'BY' License."),
874 "http://www.orangefreesounds.com/"
876 moreAboutText
+= QString("</ul><br><i>%1</i><br>").arg
878 tr("The copyright of LameXP as a whole belongs to LoRd_MuldeR. The copyright of third-party software used in LameXP belongs to the individual authors.")
881 ui
->softwareLabel
->setText(NOBREAK(moreAboutText
));
882 ui
->softwareIcon
->setPixmap(QIcon(":/images/Logo_Software.png").pixmap(QSize(72,65)));
883 connect(ui
->softwareLabel
, SIGNAL(linkActivated(QString
)), this, SLOT(openURL(QString
)));
886 void AboutDialog::initLicenseTab(void)
889 QRegExp
header("^(\\s*)((?:\\w+\\s+)?GNU GENERAL PUBLIC LICENSE(?:\\s+\\w+)?)(\\s*)$");
892 licenseText
+= ("<tt>");
894 QFile
file(":/License.txt");
895 if(file
.open(QIODevice::ReadOnly
))
897 QTextStream
stream(&file
);
898 while((!stream
.atEnd()) && (stream
.status() == QTextStream::Ok
))
900 QString line
= stream
.readLine();
901 line
.replace('<', "<").replace('>', ">");
902 if((headerCount
< 2) && (header
.indexIn(line
) >= 0))
904 line
.replace(header
, "\\1<b>\\2</b>\\3");
908 licenseText
+= QString("<nobr>%1</nobr><br>").arg(line
.replace(' ', " "));
910 licenseText
+= QString("<br>");
911 stream
.device()->close();
915 licenseText
+= QString("<font color=\"darkred\">Oups, failed to load license text. Please refer to:</font><br>");
916 licenseText
+= LINK("http://www.gnu.org/licenses/gpl-2.0.html");
919 licenseText
+= ("</tt>");
921 ui
->licenseLabel
->setText(licenseText
);
922 ui
->licenseIcon
->setPixmap(QIcon(":/images/Logo_GNU.png").pixmap(QSize(72,65)));
923 connect(ui
->licenseLabel
, SIGNAL(linkActivated(QString
)), this, SLOT(openURL(QString
)));
926 QString
AboutDialog::makeToolText(const QString
&toolName
, const QString
&toolBin
, const QString
&toolVerFmt
, const QString
&toolLicense
, const QString
&toolWebsite
, const QString
&extraInfo
)
928 QString toolText
, toolTag
, verStr(toolVerFmt
);
930 if(!toolBin
.isEmpty())
932 const unsigned int version
= lamexp_tools_version(toolBin
, &toolTag
);
933 verStr
= lamexp_version2string(toolVerFmt
, version
, tr("n/a"), toolTag
);
936 toolText
+= QString("<li>%1<br>").arg(QString("<b>%1 (%2)</b>").arg(toolName
, verStr
));
937 toolText
+= QString("%1<br>").arg(toolLicense
);
938 if(!extraInfo
.isEmpty()) toolText
+= QString("<i>%1</i><br>").arg(extraInfo
);
939 toolText
+= LINK(toolWebsite
);
940 toolText
+= QString("<font style=\"font-size:9px\"><br> </font>");