2007-03-27 14:48:17 +02:00
|
|
|
wxString htmlaboutpage = wxT(
|
|
|
|
"<html>"
|
|
|
|
"<body bgcolor=#FFFFFF>"
|
2007-06-16 19:28:47 +02:00
|
|
|
"<table cellspacing=7 cellpadding=1 border=0 width=100%>"
|
2007-03-27 14:48:17 +02:00
|
|
|
"<tr>"
|
|
|
|
"<td rowspan=3 valign=top align=center width=70>"
|
2007-06-16 19:28:47 +02:00
|
|
|
"<img src=\"memory:opj_logo.xpm\"><br><br>"
|
2007-03-27 14:48:17 +02:00
|
|
|
"</td>"
|
|
|
|
"<td align=center>"
|
2007-06-16 19:28:47 +02:00
|
|
|
"<font size=+0 color=#000000><b>"
|
|
|
|
OPJ_APPLICATION " " OPJ_APPLICATION_VERSION
|
2007-03-27 14:48:17 +02:00
|
|
|
"</b></font><br>"
|
2007-06-16 19:28:47 +02:00
|
|
|
"<font size=-1 color=#000000><b>A JPEG 2000 image viewer</b></font><br>"
|
|
|
|
"<font size=-2 color=#000000><b>" OPJ_APPLICATION_PLATFORM " version</b></font>"
|
2007-03-27 14:48:17 +02:00
|
|
|
"</td>"
|
|
|
|
"</tr>"
|
2007-06-16 19:28:47 +02:00
|
|
|
"<tr height=3 valign=center>"
|
|
|
|
"<td valign=center bgcolor=#cc3300></td>"
|
2007-03-27 14:48:17 +02:00
|
|
|
"</tr>"
|
|
|
|
"<tr>"
|
|
|
|
"<td align=justify>"
|
|
|
|
"<center><font size=+0 color=#000000><a href=\"http://www.openjpeg.org/\">OpenJPEG</a></font></center>"
|
2008-01-31 15:36:06 +01:00
|
|
|
"<p><font size=-1 color=#000000>The OpenJPEG library is an open-source JPEG 2000 codec written in C language. "
|
|
|
|
"In addition to the basic codec, various other features are under development.</font></p><br>"
|
2007-06-16 19:28:47 +02:00
|
|
|
"<font size=-2 color=red>* Build: ")
|
|
|
|
#include "build.h"
|
2007-10-23 16:33:40 +02:00
|
|
|
wxT(", " __DATE__ ", " __TIME__ "</font><br>")
|
|
|
|
wxT("<font size=-2 color=red>* " wxVERSION_STRING "</font><br>")
|
2008-01-31 15:36:06 +01:00
|
|
|
wxT("<font size=-2 color=red>* OpenJPEG " OPENJPEG_VERSION " (")
|
2007-03-27 14:48:17 +02:00
|
|
|
#ifdef USE_JPWL
|
2008-01-31 15:36:06 +01:00
|
|
|
wxT("<font size=-2 color=green>JPWL</font> ")
|
2007-03-27 14:48:17 +02:00
|
|
|
#endif // USE_JPWL
|
|
|
|
#ifdef USE_JPSEC
|
2008-01-31 15:36:06 +01:00
|
|
|
wxT("<font size=-2 color=green>JPSEC</font> ")
|
2007-03-27 14:48:17 +02:00
|
|
|
#endif // USE_JPSEC
|
2008-01-31 15:36:06 +01:00
|
|
|
wxT(")</font><br>")
|
|
|
|
#ifdef USE_MXF
|
|
|
|
wxT("<font size=-2 color=red>* MXFLib " MXFLIB_VERSION_MAJOR "." MXFLIB_VERSION_MINOR "." MXFLIB_VERSION_TWEAK " (" MXFLIB_VERSION_BUILD ")</font><br>")
|
|
|
|
#endif // USE_MXF
|
2007-03-29 10:27:03 +02:00
|
|
|
wxT("</td>"
|
2007-03-27 14:48:17 +02:00
|
|
|
"</tr>"
|
|
|
|
"<tr>"
|
2007-06-16 19:28:47 +02:00
|
|
|
"<td colspan=2 bgcolor=#CC3300 height=3 valign=center></td>"
|
2007-03-27 14:48:17 +02:00
|
|
|
"</tr>"
|
|
|
|
"<tr>"
|
|
|
|
"<td colspan=2>"
|
2008-01-31 15:36:06 +01:00
|
|
|
"<font size=-2 color=#444444>OpenJPEG is © 2002-2008 <a href=\"http://www.tele.ucl.ac.be/\">TELE</a> - <a href=\"http://www.uclouvain.be/\">Universite' Catholique de Louvain</a></font><br>"
|
|
|
|
"<font size=-2 color=#444444>OPJViewer is © 2007-2008 <a href=\"http://dsplab.diei.unipg.it/\">DSPLab</a> - <a href=\"http://www.unipg.it/\">Universita' degli studi di Perugia</a></font>"
|
2007-03-27 14:48:17 +02:00
|
|
|
"</td>"
|
|
|
|
"</tr>"
|
|
|
|
"</table>"
|
|
|
|
"</body>"
|
|
|
|
"</html>"
|
2007-03-29 10:27:03 +02:00
|
|
|
);
|