Index: /trunk/BNC/bncabout.html
===================================================================
--- /trunk/BNC/bncabout.html	(revision 161)
+++ /trunk/BNC/bncabout.html	(revision 161)
@@ -0,0 +1,24 @@
+"<p>"
+"<img style=\"float:left;\" src=\"ntrip-logo-grau.bmp\"> &nbsp;<br>&nbsp;&nbsp; BKG NTRIP Client (BNC), Version 1.0<br>"
+"<br>"
+"Developed under GNU General Public License for \"Networked Transport of RTCM via Internet Protocol\" to receive GNSS streaming data over the Internet. Visit <a href=\"http://igs.bkg.bund.de/index_ntrip.htm\" class=\"start\" target=\"new\"><u>NTRIP</u></a> for details.<br>"
+"<br>"
+"Software by:<br>"
+"Czech Technical University, Prague<br>"
+"Faculty of Civil Engineering (<a href=\"http://www.fsv.cvut.cz/katedry/katedra.php?Jazyk=En&Katedra=152\" class=\"start\" target=\"new\"><u>FCE</u></a>)<br>"
+"Department of Advanced Geodesy<br>"
+"<br>"
+"For:<br>"
+"Federal Agency for Cartography and Geodesy (<a href=\"http://www.bkg.bund.de\" class=\"start\" target=\"new\"><u>BKG</u></a>)<br>"
+"Department of Geodesy<br>"
+"Frankfurt, Germany<br>"
+"<br>"
+"This software is provided \"as is\".<br>"
+"Make sure you installed the <a href=\"http://igs.bkg.bund.de/root_ftp/NTRIP/software/BNC_Windows.zip\" class=\"start\" target=\"new\"><u>Latest Version</u></a>.<br>"
+"<br>"
+"Disclaimer:<br>"
+"The BKG may not be held liable for damages of any kind, direct or consequential, which may result from the use of this software.<br>"
+"<br>"
+"BKG, Frankfurt, Germany, September 2006<br>"
+"E-Mail: <a href=\"mailto:euref-ip@bkg.bund.de\" class=\"start\" target=\"new\"><u>euref-ip@bkg.bund.de</u></a>.<br>"
+"</p>"
Index: /trunk/BNC/bncwindow.cpp
===================================================================
--- /trunk/BNC/bncwindow.cpp	(revision 160)
+++ /trunk/BNC/bncwindow.cpp	(revision 161)
@@ -418,17 +418,22 @@
 void bncWindow::slotAbout() {
 
-  QString str("BKG NTRIP Client\n"
-              "Author: L. Mervart\n"
-              "Version 1.0");
-
-  QMessageBox mb("BNC", str,
-                 QMessageBox::Information,
-                 QMessageBox::Ok | QMessageBox::Default,
-                 QMessageBox::NoButton,
-                 QMessageBox::NoButton);
-
-  mb.setIconPixmap(QPixmap(":ntrip-logo-blau.bmp"));
-
-  mb.exec();
+  QString str(
+#include "bncabout.html"
+              );
+
+  QTextBrowser* tb = new QTextBrowser;
+  tb->setHtml(str);
+  tb->setReadOnly(true);
+  tb->show();
+
+  QDialog dlg(this);
+
+  QVBoxLayout* dlgLayout = new QVBoxLayout();
+  dlgLayout->addWidget(tb);
+
+  dlg.setLayout(dlgLayout);
+  int ww = QFontMetrics(font()).width('w');
+  dlg.resize(60*ww, 60*ww);
+  dlg.exec();
 }
 
