00001
00002
00003
00004
00005
00006
00007 #include "DlgAbout.h"
00008 #include "MainWindow.h"
00009 #include "Version.h"
00010
00011 DlgAbout::DlgAbout (MainWindow &mainWindow) :
00012 QMessageBox (&mainWindow),
00013 m_mainWindow (mainWindow)
00014 {
00015 setWindowTitle (tr ("About Engauge"));
00016 setTextFormat (Qt::RichText);
00017 setText (QString ("%1 %2 %3 %4")
00018 .arg (tr ("<p>Engauge Digitizer</p>"))
00019 .arg (tr ("Version"))
00020 .arg (VERSION_NUMBER)
00021 .arg (tr ("</p><p>© 2014 Mark Mitchell</p>"
00022 "<p>Engauge Digitizer is an open source tool for efficiently extracting accurate numeric data from "
00023 "images of graphs. The process may be considered as \"inverse graphing\". When you \"engauge\" a document, "
00024 "you are converting pixels into numbers.</p>"
00025 "<p>This is free software, and you are welcome to redistribute it under "
00026 "certain conditions according to the GNU General Public License Version 2,"
00027 "or (at your option) any later version.</p>"
00028 "<p>Engauge Digitizer comes with ABSOLUTELY NO WARRANTY.</p>"
00029 "<p>Read the included LICENSE file for details.</p>"
00030 "<p>Engauge Digitizer Links<p>"
00031 "<ul>"
00032 "<li><a href='https://github.com/markummitchell/engauge-digitizer'>Project Home Page</a></li>"
00033 "<li><a href='https://gitter.im/markummitchell/engauge-digitizer'>Gitter Forum</a></li>"
00034 "</ul>"
00035 "<p>FFTW 3.X.X Links</p>"
00036 "<ul>"
00037 "<li><a href='http://www.fftw.org'>Project page</a></li>"
00038 "</ul>"
00039 "<p>OpenJPEG 2.X Links</p>"
00040 "<ul>"
00041 "<li><a href='http://www.openjpeg.org'>Project page</a></li>"
00042 "</ul>")));
00043 }