]> Shamusworld >> Repos - schematic/blobdiff - src/about.cpp
Added some basic functionality to the program.
[schematic] / src / about.cpp
index 86d3ac2527abebda5c760b9b5f4f97b75262ce3b..8d81d0a1ff7cfebfdd47a74ad1e8ec081531153a 100644 (file)
@@ -14,6 +14,7 @@
 #include "about.h"
 //#include "version.h"
 
+
 AboutWindow::AboutWindow(QWidget * parent/*= 0*/): QWidget(parent, Qt::Dialog)
 {
        setWindowTitle(tr("About SCheMatic..."));
@@ -22,13 +23,12 @@ AboutWindow::AboutWindow(QWidget * parent/*= 0*/): QWidget(parent, Qt::Dialog)
        layout->setSizeConstraint(QLayout::SetFixedSize);
        setLayout(layout);
 
-       image = new QLabel();
-       image->setAlignment(Qt::AlignRight);
-       image->setPixmap(QPixmap(":/res/schematic.png"));
-       layout->addWidget(image);
-
        QString s;
        s.append(tr(
+               "<p>"
+               "<img src=':/res/schematic.png' style='float:right'>"
+               "<b>SCheMatic</b><br>"
+               "<i>The Supply Chain Manager-O-Matic</i><br><br>"
                "<table>"
                "<tr><td align='right'><b>Version: </b></td><td>"
 //             VJ_RELEASE_VERSION " (" VJ_RELEASE_SUBVERSION ")"
@@ -36,29 +36,20 @@ AboutWindow::AboutWindow(QWidget * parent/*= 0*/): QWidget(parent, Qt::Dialog)
                "</td></tr>"
                "<tr><td align='right'><b>Coders: </b></td><td>James \"Shamus\" Hammons</td></tr>"
                "<tr><td align='right'><b>Testers: </b></td><td>Jason O'Neal</td></tr>"
-//             "<tr><td align='right'><b>Build Team: </b></td><td>ggn (win32)<br>LinkoVitch, goldenegg (MacOS)</td></tr>"
-//             "<tr><td align='right'><b>Homepage: </b></td><td>http://icculus.org/virtualjaguar/</td></tr>"
                "</table>"
                "<br><br>"
                "<i>The SCheMatic team would like to express their gratitude to:</i>"
                "<br><br>"
-               "Everyone who helped make SCheMatic a reality.<br>"
-//             "<b>David Raingeard</b> for the original Virtual Jaguar sources<br>"
-//             "<b>Bernd Schmidt</b> for his UAE 68K emulator<br>"
-//             "<b>Sam Lantinga</b> for his amazing SDL libraries<br>"
-//             "<b>Ryan C. Gordon</b> for Virtual Jaguar's web presence<br>"
-//             "<b>Curt Vendel</b> for various Jaguar & other goodies (you <i>rock!</i>)<br>"
-//             "<b>Reboot</b> for reasons too numerous to mention<br>"
-//             "<b>The Free Jaguar Project</b> (you know why) ;-)<br>"
-//             "The guys over at <b>Atari Age</b> :-)<br>"
-//             "<b>byuu</b> for BSNES and showing us what was possible"
+               "Everyone who helped make SCheMatic a reality.<br></p>"
        ));
        text = new QLabel(s);
        layout->addWidget(text);
 }
 
+
 void AboutWindow::keyPressEvent(QKeyEvent * e)
 {
        if (e->key() == Qt::Key_Escape || e->key() == Qt::Key_Return)
                hide();
 }
+