X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fgui%2Fabout.cpp;h=71cec73ffad216747b191aa4fcc8b5c835f2d35d;hb=c9d57b57d70ab2ae842144828175820fb207a3b0;hp=1e11561479f8a686703283f83682b8b2341cd49c;hpb=2d556a3eb52664e928014a72ad18edc13281de7e;p=virtualjaguar diff --git a/src/gui/about.cpp b/src/gui/about.cpp index 1e11561..71cec73 100644 --- a/src/gui/about.cpp +++ b/src/gui/about.cpp @@ -1,10 +1,10 @@ // // about.cpp - Credits // -// by James L. Hammons +// by James Hammons // (C) 2010 Underground Software // -// JLH = James L. Hammons +// JLH = James Hammons // // Who When What // --- ---------- ------------------------------------------------------------- @@ -20,6 +20,7 @@ #include "about.h" #include "version.h" + AboutWindow::AboutWindow(QWidget * parent/*= 0*/): QWidget(parent, Qt::Dialog) { setWindowTitle(tr("About Virtual Jaguar...")); @@ -28,20 +29,16 @@ 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/vj_title_small.png")); - layout->addWidget(image); - QString s; s.append(tr( + "" "" "" - "" - "" - "" + "" + "" + "" "" "
Version: " VJ_RELEASE_VERSION " (" VJ_RELEASE_SUBVERSION ")" "
Coders: James L. Hammons (shamus)
Niels Wagenaar (nwagenaar)
Carwin Jones (Caz)
Adam Green
Testers: Cyrano Jones, Robert R, TheUMan, Dissection,
overridex, geormetal
Build Team: ggn (win32)
LinkoVitch, goldenegg (MacOS)
Coders: James Hammons (shamus)
Niels Wagenaar (nwagenaar)
Carwin Jones (Caz)
Adam Green
Testers: Cyrano Jones, LinkoVitch, partycle, ggn,
neo-rg, Robert R, TheUMan, Dissection,
overridex, geormetal
Build Team: shamus (win32)
goldenegg (MacOS)
Homepage: http://icculus.org/virtualjaguar/
" "

" @@ -52,16 +49,16 @@ AboutWindow::AboutWindow(QWidget * parent/*= 0*/): QWidget(parent, Qt::Dialog) "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!)
" + "Curt Vendel for various Jaguar & other goodies
" "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" + "byuu for BSNES Higan and showing us what was possible" )); text = new QLabel(s); layout->addWidget(text); } + void AboutWindow::keyPressEvent(QKeyEvent * e) { if (e->key() == Qt::Key_Escape || e->key() == Qt::Key_Return)