1 wxString htmlaboutpage = wxT(
2 "<html>"
3 "<body bgcolor=#FFFFFF>"
4 "<table cellspacing=7 cellpadding=1 border=0 width=100%>"
5 "<tr>"
6 "<td rowspan=3 valign=top align=center width=70>"
7 "<img src=\"memory:opj_logo.xpm\"><br><br>"
8 "</td>"
9 "<td align=center>"
10 "<font size=+0 color=#000000><b>"
11 OPJ_APPLICATION " " OPJ_APPLICATION_VERSION
12 "</b></font><br>"
13 "<font size=-1 color=#000000><b>A JPEG 2000 image viewer</b></font><br>"
14 "<font size=-2 color=#000000><b>" OPJ_APPLICATION_PLATFORM " version</b></font>"
15 "</td>"
16 "</tr>"
17 "<tr height=3 valign=center>"
18 "<td valign=center  bgcolor=#cc3300></td>"
19 "</tr>"
20 "<tr>"
21 "<td align=justify>"
22 "<center><font size=+0 color=#000000><a href=\"http://www.openjpeg.org/\">OpenJPEG</a></font></center>"
23 "<p><font size=-1 color=#000000>The OpenJPEG library is an open-source JPEG 2000 codec written in C language. "
24 "In addition to the basic codec, various other features are under development.</font></p><br>"
25 "<font size=-2 color=red>* Build: ")
26 #include "build.h"
27 wxT(", " __DATE__ ", " __TIME__ "</font><br>")
28 wxT("<font size=-2 color=red>* " wxVERSION_STRING "</font><br>")
29 wxT("<font size=-2 color=red>* OpenJPEG " OPENJPEG_VERSION " (")
30 #ifdef USE_JPWL
31 wxT("<font size=-2 color=green>JPWL</font> ")
32 #endif // USE_JPWL
33 #ifdef USE_JPSEC
34 wxT("<font size=-2 color=green>JPSEC</font> ")
35 #endif // USE_JPSEC
36 wxT(")</font><br>")
37 #ifdef USE_MXF
38 wxT("<font size=-2 color=red>* MXFLib " MXFLIB_VERSION_MAJOR "." MXFLIB_VERSION_MINOR "." MXFLIB_VERSION_TWEAK " (" MXFLIB_VERSION_BUILD ")</font><br>")
39 #endif // USE_MXF
40 wxT("</td>"
41 "</tr>"
42 "<tr>"
43 "<td colspan=2 bgcolor=#CC3300 height=3 valign=center></td>"
44 "</tr>"
45 "<tr>"
46 "<td colspan=2>"
47 "<font size=-2 color=#444444>OpenJPEG is &copy; 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>"
48 "<font size=-2 color=#444444>OPJViewer is &copy; 2007-2008 <a href=\"http://dsplab.diei.unipg.it/\">DSPLab</a> - <a href=\"http://www.unipg.it/\">Universita' degli studi di Perugia</a></font>"
49 "</td>"
50 "</tr>"
51 "</table>"
52 "</body>"
53 "</html>"
54 );
55