provide more information in the about box.
authorDiane Trout <diane@caltech.edu>
Wed, 22 Mar 2006 02:45:42 +0000 (02:45 +0000)
committerDiane Trout <diane@caltech.edu>
Wed, 22 Mar 2006 02:45:42 +0000 (02:45 +0000)
qui/MussaWindow.cpp

index e2525b9c7a2b5120797682743bc8f1e514b7b80f..b2c2a0811c8872c7d262a5de9067c7091384b13d 100644 (file)
@@ -184,10 +184,23 @@ void MussaWindow::setupMainMenu()
   
 void MussaWindow::about()
 {
-  QMessageBox::about(this, tr("About mussa"),
-      tr("Welcome to Multiple Species Sequence Analysis\n"
-         "(c) 2005-2006 California Institute of Technology\n"
-         "Tristan De Buysscher, Diane Trout\n"));
+  QString msg("Welcome to Multiple Species Sequence Analysis\n"
+              "(c) 2005-2006 California Institute of Technology\n"
+              "Tristan De Buysscher, Diane Trout\n");
+   msg += "\n\r";
+   msg += "Path: ";
+   msg += QDir::currentPath();
+   msg += "\n";
+   msg += "OpenGL: ";
+   msg += (char *)glGetString(GL_VERSION);
+   msg += "\n";
+   QMessageBox::about(this, tr("About mussa"), msg);
+   /*
+                      tr("Welcome to Multiple Species Sequence Analysis\n"
+              "(c) 2005-2006 California Institute of Technology\n"
+              "Tristan De Buysscher, Diane Trout\n"));
+  */
+
 }
 
 void MussaWindow::createNewAnalysis()