X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fabout.cpp;h=8d81d0a1ff7cfebfdd47a74ad1e8ec081531153a;hb=e2916da12c7309ded63c3d091271ebb2f9123305;hp=86d3ac2527abebda5c760b9b5f4f97b75262ce3b;hpb=6faae8ae2d4575bb03459bd381a5cf8da8044b3c;p=schematic diff --git a/src/about.cpp b/src/about.cpp index 86d3ac2..8d81d0a 100644 --- a/src/about.cpp +++ b/src/about.cpp @@ -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( + "

" + "" + "SCheMatic
" + "The Supply Chain Manager-O-Matic

" "" "" "" "" -// "" -// "" "
Version: " // VJ_RELEASE_VERSION " (" VJ_RELEASE_SUBVERSION ")" @@ -36,29 +36,20 @@ AboutWindow::AboutWindow(QWidget * parent/*= 0*/): QWidget(parent, Qt::Dialog) "
Coders: James \"Shamus\" Hammons
Testers: Jason O'Neal
Build Team: ggn (win32)
LinkoVitch, goldenegg (MacOS)
Homepage: http://icculus.org/virtualjaguar/
" "

" "The SCheMatic team would like to express their gratitude to:" "

" - "Everyone who helped make SCheMatic a reality.
" -// "David Raingeard for the original Virtual Jaguar sources
" -// "Bernd Schmidt for his UAE 68K emulator
" -// "Sam Lantinga for his amazing SDL libraries
" -// "Ryan C. Gordon for Virtual Jaguar's web presence
" -// "Curt Vendel for various Jaguar & other goodies (you rock!)
" -// "Reboot for reasons too numerous to mention
" -// "The Free Jaguar Project (you know why) ;-)
" -// "The guys over at Atari Age :-)
" -// "byuu for BSNES and showing us what was possible" + "Everyone who helped make SCheMatic a reality.

" )); text = new QLabel(s); layout->addWidget(text); } + void AboutWindow::keyPressEvent(QKeyEvent * e) { if (e->key() == Qt::Key_Escape || e->key() == Qt::Key_Return) hide(); } +