X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Faboutdlg.cpp;h=d7932c1fe34ac64cbdacc7f25cae1751736a77fb;hp=439d50db6276d5a21ed10f9e690ee74d19d9bbc1;hb=e11bf86d6ebf583b22528fe5fda689aa89ff4aa9;hpb=2f0cc0c53e4ea61a6358b867257d5062ac014c68 diff --git a/src/qtui/aboutdlg.cpp b/src/qtui/aboutdlg.cpp index 439d50db..d7932c1f 100644 --- a/src/qtui/aboutdlg.cpp +++ b/src/qtui/aboutdlg.cpp @@ -18,20 +18,27 @@ * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ +#include + #include "aboutdlg.h" -#include "global.h" +#include "icon.h" +#include "iconloader.h" +#include "quassel.h" AboutDlg::AboutDlg(QWidget *parent) : QDialog(parent) { ui.setupUi(this); + ui.quasselLogo->setPixmap(DesktopIcon("quassel", IconLoader::SizeHuge)); - ui.versionLabel->setText(QString(tr("Version %1
Protocol version: %2
Built: %3 %4")).arg(Global::quasselVersion) - .arg(Global::protocolVersion) - .arg(Global::quasselBuildDate).arg(Global::quasselBuildTime)); + ui.versionLabel->setText(QString(tr("Version: %1
Protocol version: %2
Built: %3")) + .arg(Quassel::buildInfo().fancyVersionString) + .arg(Quassel::buildInfo().protocolVersion) + .arg(Quassel::buildInfo().buildDate)); ui.aboutTextBrowser->setHtml(about()); ui.authorTextBrowser->setHtml(authors()); ui.contributorTextBrowser->setHtml(contributors()); ui.thanksToTextBrowser->setHtml(thanksTo()); + setWindowIcon(Icon("quassel")); } QString AboutDlg::about() const { @@ -71,8 +78,10 @@ QString AboutDlg::contributors() const { "
" "
Daniel \"al\" Albers
German translation, various fixes
" "
Terje \"tan\" Andersen
Norwegian translation, documentation
" + "
Kevin \"KRF\" Funk
German translation
" "
Marco \"kaffeedoktor\" Genise
Ideas, hacking, motivation
" "
Sebastian \"seezer\" Goth
Various improvements and features
" + "
Edward \"Aides\" Toroshchin
Russian translation
" "
John \"nox-Hand\" Hand
Gorgeous application and tray icons
" "
Jonas \"Dante\" Heese
Project founder, various improvements
" "
Paul \"Haudrauf\" Klumpp
Initial design and mainwindow layout
" @@ -95,12 +104,14 @@ QString AboutDlg::thanksTo() const { QString res; res = tr("Special thanks goes to:
" "
" - "
John \"nox-Hand\" Hand
" + "
John \"nox\" Hand
" "
for great artwork and the Quassel logo/icon" "
The Oxygen Team
" "
for creating most of the other shiny icons you see throughout Quassel
" - "
Trolltech
" - "
for creating Qt and Qtopia, and for sponsoring development of Quasseltopia with Greenphones and more
" + "
Qt Software formerly known as Trolltech
" + "
for creating Qt and Qtopia, and for sponsoring development of QuasselTopia with Greenphones and more
" + "
Nokia
" + "
for keeping Qt alive, and for sponsoring development of Quassel Mobile with N810s
" ); return res;