]> Shamusworld >> Repos - architektonas/blobdiff - src/about.cpp
Initial work on bringing sanity to insane codebase.
[architektonas] / src / about.cpp
index bce636531dea867b595e3371830b5e92c56192d7..17b4f963c058d37ac203876d369d0d286421d085 100644 (file)
@@ -1,10 +1,10 @@
 //
 // about.cpp - Credits
 //
-// by James L. Hammons
+// by James Hammons
 // (C) 2011 Underground Software
 //
-// JLH = James L. Hammons <jlhamm@acm.org>
+// JLH = James Hammons <jlhamm@acm.org>
 //
 // Who  When        What
 // ---  ----------  -------------------------------------------------------------
 //
 
 #include "about.h"
+//testing... #include "structs.h"
+
 
 AboutWindow::AboutWindow(QWidget * parent/*= 0*/): QWidget(parent, Qt::Dialog)
 {
        setWindowTitle(tr("About Architektonas..."));
 
        layout = new QVBoxLayout();
-       layout->setSizeConstraint(QLayout::SetFixedSize);
+//     layout->setSizeConstraint(QLayout::SetFixedSize);
        setLayout(layout);
 
-//     image = new QLabel();
-//     image->setAlignment(Qt::AlignRight);
-//     image->setPixmap(QPixmap(":/res/atns-icon.png"));
-//     layout->addWidget(image);
+       QString s = QString(tr(
+               "<table>"
+               "<tr>"
+               "<td style='padding-right:15px; float:left'><img src=':/res/about-logo.png'></td>"
+               "<td>"
+//             "<img src=':/res/about-logo.png' style='padding-right:15px; float:left'>"
 
-#if 0
-//     QString s = QString(tr("(Last full build was on %1 %2)<br>")).arg(__DATE__).arg(__TIME__);
-       QString s = QString(tr(""//<img src=':/res/atns-icon.png'>"//));
-//     s.append(tr(
-//"This is some random text. I wonder if it will be rendered correctly or not???</p>"
-               "<table><tr><td valign='middle'>"
                "<table>"
-               "<tr><td align='right'><b>Architektonas: </b></td><td>Free, <i>Industrial Strength</i> 2D Computer Aided Design</td></tr>"
+               "<tr><td align='right' width='130'><b>Architektonas: </b></td><td>Free, <i>Industrial Strength</i> 2D Computer Aided Design</td></tr>"
                "<tr><td align='right'><b>Version: </b></td><td>1.0.0</td></tr>"
                "<tr><td align='right'><b>License: </b></td><td>GPL v3 or later</td></tr>"
-               "<tr><td align='right'><b>Chief Architect: </b></td><td>James L. Hammons (shamus)</td></tr>"
-               "<tr><td align='right'><b>Coders: </b></td><td>James L. Hammons (shamus)</td></tr>"
+               "<tr><td align='right'><b>Chief Architect: </b></td><td>James Hammons (shamus)</td></tr>"
+               "<tr><td align='right'><b>Coders: </b></td><td>James Hammons (shamus)</td></tr>"
 //             "<tr><td align='right'><b>Testers: </b></td><td>shamus</td></tr>"
                "<tr><td align='right'><b>Homepage: </b></td><td>http://shamusworld.gotdns.org/architektonas/</td></tr>"
                "</table>"
-               "</td>"
-               "<td><img src=':/res/atns-icon.png'></td></tr></table>"
+
                "<br><br>"
                "<i>The authors of Architektonas would like to express their heartfelt gratitude to:</i>"
-//             "<br>"
                "<ul>"
                "<li>The authors of <b>Inkscape</b>, whose incredible GUI was a huge inspiration for us</li>"
                "<li><b>QCad</b> for sucking so bad that we just <i>had</i> to write something better</li>"
-               "<li>Every other 2D CAD package out there that's mired in a legacy of the bad old days of pencil and paper, and all the attendant horrors that came along with that. We couldn't have done it without you!</li>"
+               "<li>Every other 2D CAD package out there that's mired in a legacy of the bad old days of pencil and paper, and all the attendant horrors that come along with that. We couldn't have done it without you!</li>"
                "</ul>"
-       ));
-#else
-//     QString s = QString(tr("(Last full build was on %1 %2)<br>")).arg(__DATE__).arg(__TIME__);
-       QString s = QString(tr("<body style='background-image::/res/atns-icon.png'>"//<img src=':/res/atns-icon.png' style='float:right'>"//));
-//     s.append(tr(
-//"This is some random text. I wonder if it will be rendered correctly or not???</p>"
-//             "<table><tr><td valign='middle'>"
-               "<table style='float:left'>"
-               "<tr><td align='right'><b>Architektonas: </b></td><td>Free, <i>Industrial Strength</i> 2D Computer Aided Design</td></tr>"
-               "<tr><td align='right'><b>Version: </b></td><td>1.0.0</td></tr>"
-               "<tr><td align='right'><b>License: </b></td><td>GPL v3 or later</td></tr>"
-               "<tr><td align='right'><b>Chief Architect: </b></td><td>James L. Hammons (shamus)</td></tr>"
-               "<tr><td align='right'><b>Coders: </b></td><td>James L. Hammons (shamus)</td></tr>"
-//             "<tr><td align='right'><b>Testers: </b></td><td>shamus</td></tr>"
-               "<tr><td align='right'><b>Homepage: </b></td><td>http://shamusworld.gotdns.org/architektonas/</td></tr>"
+               "</td>"
+               "</tr>"
                "</table>"
-"<img src=':/res/atns-icon.png' style='float:right'>"
-//             "</td>"
-//             "<td><img src=':/res/atns-icon.png'></td></tr></table>"
-               "<br><br>"
-               "<i>The authors of Architektonas would like to express their heartfelt gratitude to:</i>"
-//             "<br>"
-               "<ul>"
-               "<li>The authors of <b>Inkscape</b>, whose incredible GUI was a huge inspiration for us</li>"
-               "<li><b>QCad</b> for sucking so bad that we just <i>had</i> to write something better</li>"
-               "<li>Every other 2D CAD package out there that's mired in a legacy of the bad old days of pencil and paper, and all the attendant horrors that came along with that. We couldn't have done it without you!</li>"
-               "</ul></body>"
        ));
-#endif
 
        text = new QLabel(s);
        text->setWordWrap(true);
+//     text->setMinimumWidth(480);
 //     text->setMaximumWidth(800);
        layout->addWidget(text);
 }
+
+
+void AboutWindow::keyPressEvent(QKeyEvent * e)
+{
+       if (e->key() == Qt::Key_Escape || e->key() == Qt::Key_Return)
+               hide();
+}
+