gosu 0.7.10.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (249) hide show
  1. data/COPYING.txt +29 -0
  2. data/Gosu/Async.hpp +48 -0
  3. data/Gosu/Audio.hpp +145 -0
  4. data/Gosu/AutoLink.hpp +16 -0
  5. data/Gosu/Bitmap.hpp +85 -0
  6. data/Gosu/ButtonsMac.hpp +114 -0
  7. data/Gosu/ButtonsWin.hpp +111 -0
  8. data/Gosu/ButtonsX.hpp +115 -0
  9. data/Gosu/Color.hpp +172 -0
  10. data/Gosu/Directories.hpp +36 -0
  11. data/Gosu/Font.hpp +59 -0
  12. data/Gosu/Fwd.hpp +31 -0
  13. data/Gosu/Gosu.hpp +26 -0
  14. data/Gosu/Graphics.hpp +86 -0
  15. data/Gosu/GraphicsBase.hpp +45 -0
  16. data/Gosu/IO.hpp +255 -0
  17. data/Gosu/Image.hpp +148 -0
  18. data/Gosu/ImageData.hpp +45 -0
  19. data/Gosu/Input.hpp +116 -0
  20. data/Gosu/Math.hpp +95 -0
  21. data/Gosu/Platform.hpp +61 -0
  22. data/Gosu/RotFlip.hpp +116 -0
  23. data/Gosu/Sockets.hpp +129 -0
  24. data/Gosu/Text.hpp +47 -0
  25. data/Gosu/TextInput.hpp +57 -0
  26. data/Gosu/Timing.hpp +16 -0
  27. data/Gosu/Utility.hpp +24 -0
  28. data/Gosu/WinUtility.hpp +76 -0
  29. data/Gosu/Window.hpp +84 -0
  30. data/GosuImpl/Async.cpp +37 -0
  31. data/GosuImpl/AudioFmod.cpp +417 -0
  32. data/GosuImpl/AudioSDL.cpp +255 -0
  33. data/GosuImpl/DirectoriesMac.mm +38 -0
  34. data/GosuImpl/DirectoriesUnix.cpp +48 -0
  35. data/GosuImpl/DirectoriesWin.cpp +42 -0
  36. data/GosuImpl/FileUnix.cpp +100 -0
  37. data/GosuImpl/FileWin.cpp +83 -0
  38. data/GosuImpl/Graphics/Bitmap.cpp +116 -0
  39. data/GosuImpl/Graphics/BitmapBMP.cpp +232 -0
  40. data/GosuImpl/Graphics/BitmapColorKey.cpp +39 -0
  41. data/GosuImpl/Graphics/BitmapPNG.cpp +276 -0
  42. data/GosuImpl/Graphics/BitmapUtils.cpp +67 -0
  43. data/GosuImpl/Graphics/BlockAllocator.cpp +127 -0
  44. data/GosuImpl/Graphics/BlockAllocator.hpp +34 -0
  45. data/GosuImpl/Graphics/Color.cpp +126 -0
  46. data/GosuImpl/Graphics/Common.hpp +21 -0
  47. data/GosuImpl/Graphics/DrawOp.hpp +154 -0
  48. data/GosuImpl/Graphics/Font.cpp +110 -0
  49. data/GosuImpl/Graphics/Graphics.cpp +295 -0
  50. data/GosuImpl/Graphics/Image.cpp +159 -0
  51. data/GosuImpl/Graphics/LargeImageData.cpp +115 -0
  52. data/GosuImpl/Graphics/LargeImageData.hpp +37 -0
  53. data/GosuImpl/Graphics/RotFlip.cpp +184 -0
  54. data/GosuImpl/Graphics/TexChunk.cpp +77 -0
  55. data/GosuImpl/Graphics/TexChunk.hpp +40 -0
  56. data/GosuImpl/Graphics/Text.cpp +223 -0
  57. data/GosuImpl/Graphics/TextMac.cpp +242 -0
  58. data/GosuImpl/Graphics/TextPangoFT.cpp +186 -0
  59. data/GosuImpl/Graphics/TextWin.cpp +172 -0
  60. data/GosuImpl/Graphics/Texture.cpp +104 -0
  61. data/GosuImpl/Graphics/Texture.hpp +34 -0
  62. data/GosuImpl/IO.cpp +48 -0
  63. data/GosuImpl/InputMac.mm +677 -0
  64. data/GosuImpl/InputWin.cpp +444 -0
  65. data/GosuImpl/InputX.cpp +158 -0
  66. data/GosuImpl/MacUtility.hpp +48 -0
  67. data/GosuImpl/Math.cpp +49 -0
  68. data/GosuImpl/RubyGosu.swg +474 -0
  69. data/GosuImpl/RubyGosuStub.mm +17 -0
  70. data/GosuImpl/RubyGosu_DllMain.cxx +30 -0
  71. data/GosuImpl/RubyGosu_wrap.cxx +8521 -0
  72. data/GosuImpl/RubyGosu_wrap.h +31 -0
  73. data/GosuImpl/Sockets/CommSocket.cpp +304 -0
  74. data/GosuImpl/Sockets/ListenerSocket.cpp +60 -0
  75. data/GosuImpl/Sockets/MessageSocket.cpp +136 -0
  76. data/GosuImpl/Sockets/Socket.cpp +145 -0
  77. data/GosuImpl/Sockets/Sockets.hpp +66 -0
  78. data/GosuImpl/TextInputMac.mm +207 -0
  79. data/GosuImpl/TextInputWin.cpp +197 -0
  80. data/GosuImpl/TextInputX.cpp +201 -0
  81. data/GosuImpl/TextTTFWin.cpp +247 -0
  82. data/GosuImpl/TimingUnix.cpp +17 -0
  83. data/GosuImpl/TimingWin.cpp +28 -0
  84. data/GosuImpl/Utility.cpp +140 -0
  85. data/GosuImpl/WinMain.cpp +69 -0
  86. data/GosuImpl/WinUtility.cpp +137 -0
  87. data/GosuImpl/WindowMac.mm +466 -0
  88. data/GosuImpl/WindowWin.cpp +447 -0
  89. data/GosuImpl/WindowX.cpp +392 -0
  90. data/GosuImpl/X11vroot.h +118 -0
  91. data/README.txt +13 -0
  92. data/Rakefile +178 -0
  93. data/examples/ChipmunkIntegration.rb +275 -0
  94. data/examples/CptnRuby.rb +231 -0
  95. data/examples/MoreChipmunkAndRMagick.rb +155 -0
  96. data/examples/OpenGLIntegration.rb +232 -0
  97. data/examples/RMagickIntegration.rb +449 -0
  98. data/examples/TextInput.cpp +170 -0
  99. data/examples/TextInput.rb +139 -0
  100. data/examples/Tutorial.cpp +215 -0
  101. data/examples/Tutorial.rb +137 -0
  102. data/examples/media/Beep.wav +0 -0
  103. data/examples/media/CptnRuby Gem.png +0 -0
  104. data/examples/media/CptnRuby Map.txt +25 -0
  105. data/examples/media/CptnRuby Tileset.png +0 -0
  106. data/examples/media/CptnRuby.png +0 -0
  107. data/examples/media/Cursor.png +0 -0
  108. data/examples/media/Earth.png +0 -0
  109. data/examples/media/Explosion.wav +0 -0
  110. data/examples/media/LargeStar.png +0 -0
  111. data/examples/media/Sky.jpg +0 -0
  112. data/examples/media/Smoke.png +0 -0
  113. data/examples/media/Soldier.png +0 -0
  114. data/examples/media/Space.png +0 -0
  115. data/examples/media/Star.png +0 -0
  116. data/examples/media/Starfighter.bmp +0 -0
  117. data/linux/Makefile.in +98 -0
  118. data/linux/configure +5658 -0
  119. data/linux/configure.ac +126 -0
  120. data/linux/extconf.rb +11 -0
  121. data/mac/English.lproj/InfoPlist.strings +0 -0
  122. data/mac/Gosu-Info.plist +26 -0
  123. data/mac/Gosu.xcodeproj/project.pbxproj +1194 -0
  124. data/mac/RubyGosu Template-Info.plist +26 -0
  125. data/mac/libboost_thread_1_34_1_universal.a +0 -0
  126. data/mac/libboost_thread_d_1_34_1_universal.a +0 -0
  127. data/mac/libfmod_universal.a +0 -0
  128. data/mac/libpng_universal.a +0 -0
  129. data/mac/libz_universal.a +0 -0
  130. data/reference/Async_8hpp-source.html +70 -0
  131. data/reference/Audio_8hpp-source.html +114 -0
  132. data/reference/Audio_8hpp.html +50 -0
  133. data/reference/AutoLink_8hpp-source.html +38 -0
  134. data/reference/AutoLink_8hpp.html +34 -0
  135. data/reference/Bitmap_8hpp-source.html +85 -0
  136. data/reference/Bitmap_8hpp.html +58 -0
  137. data/reference/ButtonsMac_8hpp-source.html +133 -0
  138. data/reference/ButtonsWin_8hpp-source.html +133 -0
  139. data/reference/ButtonsX_8hpp-source.html +134 -0
  140. data/reference/Color_8hpp-source.html +169 -0
  141. data/reference/Color_8hpp.html +85 -0
  142. data/reference/Directories_8hpp-source.html +42 -0
  143. data/reference/Directories_8hpp.html +46 -0
  144. data/reference/Font_8hpp-source.html +65 -0
  145. data/reference/Font_8hpp.html +41 -0
  146. data/reference/Fwd_8hpp-source.html +52 -0
  147. data/reference/Fwd_8hpp.html +37 -0
  148. data/reference/Gosu_8hpp-source.html +48 -0
  149. data/reference/Gosu_8hpp.html +34 -0
  150. data/reference/GraphicsBase_8hpp-source.html +57 -0
  151. data/reference/GraphicsBase_8hpp.html +56 -0
  152. data/reference/Graphics_8hpp-source.html +96 -0
  153. data/reference/Graphics_8hpp.html +53 -0
  154. data/reference/IO_8hpp-source.html +255 -0
  155. data/reference/IO_8hpp.html +74 -0
  156. data/reference/ImageData_8hpp-source.html +62 -0
  157. data/reference/ImageData_8hpp.html +43 -0
  158. data/reference/Image_8hpp-source.html +126 -0
  159. data/reference/Image_8hpp.html +48 -0
  160. data/reference/Input_8hpp-source.html +118 -0
  161. data/reference/Input_8hpp.html +50 -0
  162. data/reference/Math_8hpp-source.html +92 -0
  163. data/reference/Math_8hpp.html +74 -0
  164. data/reference/Platform_8hpp-source.html +83 -0
  165. data/reference/Platform_8hpp.html +73 -0
  166. data/reference/RotFlip_8hpp-source.html +138 -0
  167. data/reference/RotFlip_8hpp.html +77 -0
  168. data/reference/Sockets_8hpp-source.html +130 -0
  169. data/reference/Sockets_8hpp.html +66 -0
  170. data/reference/TextInput_8hpp-source.html +64 -0
  171. data/reference/TextInput_8hpp.html +41 -0
  172. data/reference/Text_8hpp-source.html +51 -0
  173. data/reference/Text_8hpp.html +46 -0
  174. data/reference/Timing_8hpp-source.html +36 -0
  175. data/reference/Timing_8hpp.html +42 -0
  176. data/reference/Utility_8hpp-source.html +44 -0
  177. data/reference/Utility_8hpp.html +48 -0
  178. data/reference/WinUtility_8hpp-source.html +79 -0
  179. data/reference/WinUtility_8hpp.html +64 -0
  180. data/reference/Window_8hpp-source.html +91 -0
  181. data/reference/Window_8hpp.html +41 -0
  182. data/reference/annotated.html +51 -0
  183. data/reference/classGosu_1_1Audio-members.html +34 -0
  184. data/reference/classGosu_1_1Audio.html +46 -0
  185. data/reference/classGosu_1_1Bitmap-members.html +44 -0
  186. data/reference/classGosu_1_1Bitmap.html +263 -0
  187. data/reference/classGosu_1_1Buffer-members.html +44 -0
  188. data/reference/classGosu_1_1Buffer.html +78 -0
  189. data/reference/classGosu_1_1Buffer.png +0 -0
  190. data/reference/classGosu_1_1Button-members.html +36 -0
  191. data/reference/classGosu_1_1Button.html +143 -0
  192. data/reference/classGosu_1_1Color-members.html +56 -0
  193. data/reference/classGosu_1_1Color.html +387 -0
  194. data/reference/classGosu_1_1File-members.html +41 -0
  195. data/reference/classGosu_1_1File.html +69 -0
  196. data/reference/classGosu_1_1File.png +0 -0
  197. data/reference/classGosu_1_1Font-members.html +39 -0
  198. data/reference/classGosu_1_1Font.html +309 -0
  199. data/reference/classGosu_1_1Graphics-members.html +50 -0
  200. data/reference/classGosu_1_1Graphics.html +234 -0
  201. data/reference/classGosu_1_1Image-members.html +45 -0
  202. data/reference/classGosu_1_1Image.html +518 -0
  203. data/reference/classGosu_1_1ImageData-members.html +37 -0
  204. data/reference/classGosu_1_1ImageData.html +60 -0
  205. data/reference/classGosu_1_1Input-members.html +44 -0
  206. data/reference/classGosu_1_1Input.html +223 -0
  207. data/reference/classGosu_1_1MessageSocket-members.html +40 -0
  208. data/reference/classGosu_1_1MessageSocket.html +233 -0
  209. data/reference/classGosu_1_1Resource-members.html +39 -0
  210. data/reference/classGosu_1_1Resource.html +116 -0
  211. data/reference/classGosu_1_1Resource.png +0 -0
  212. data/reference/classGosu_1_1Sample-members.html +37 -0
  213. data/reference/classGosu_1_1Sample.html +200 -0
  214. data/reference/classGosu_1_1SampleInstance-members.html +38 -0
  215. data/reference/classGosu_1_1SampleInstance.html +169 -0
  216. data/reference/classGosu_1_1Song-members.html +43 -0
  217. data/reference/classGosu_1_1Song.html +260 -0
  218. data/reference/classGosu_1_1TextInput-members.html +38 -0
  219. data/reference/classGosu_1_1TextInput.html +121 -0
  220. data/reference/classGosu_1_1Window-members.html +50 -0
  221. data/reference/classGosu_1_1Window.html +271 -0
  222. data/reference/doxyfile +233 -0
  223. data/reference/doxygen.css +433 -0
  224. data/reference/doxygen.png +0 -0
  225. data/reference/files.html +54 -0
  226. data/reference/functions.html +236 -0
  227. data/reference/functions_enum.html +45 -0
  228. data/reference/functions_func.html +227 -0
  229. data/reference/functions_vars.html +47 -0
  230. data/reference/hierarchy.html +53 -0
  231. data/reference/index.html +26 -0
  232. data/reference/namespaceGosu.html +2890 -0
  233. data/reference/namespaceGosu_1_1Colors.html +70 -0
  234. data/reference/namespaceGosu_1_1Win.html +275 -0
  235. data/reference/namespacemembers.html +216 -0
  236. data/reference/namespacemembers_enum.html +52 -0
  237. data/reference/namespacemembers_eval.html +54 -0
  238. data/reference/namespacemembers_func.html +185 -0
  239. data/reference/namespacemembers_type.html +46 -0
  240. data/reference/namespacemembers_vars.html +46 -0
  241. data/reference/namespaces.html +35 -0
  242. data/reference/tab_b.gif +0 -0
  243. data/reference/tab_l.gif +0 -0
  244. data/reference/tab_r.gif +0 -0
  245. data/reference/tabs.css +102 -0
  246. data/windows/Gosu.sln +29 -0
  247. data/windows/Gosu.vcproj +553 -0
  248. data/windows/RubyGosu.vcproj +138 -0
  249. metadata +305 -0
@@ -0,0 +1,41 @@
1
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2
+ <html><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
3
+ <title>Gosu: Member List</title>
4
+ <link href="doxygen.css" rel="stylesheet" type="text/css">
5
+ <link href="tabs.css" rel="stylesheet" type="text/css">
6
+ </head><body>
7
+ <!-- Generated by Doxygen 1.5.5 -->
8
+ <div class="navigation" id="top">
9
+ <div class="tabs">
10
+ <ul>
11
+ <li><a href="index.html"><span>Main&nbsp;Page</span></a></li>
12
+ <li><a href="namespaces.html"><span>Namespaces</span></a></li>
13
+ <li class="current"><a href="annotated.html"><span>Classes</span></a></li>
14
+ <li><a href="files.html"><span>Files</span></a></li>
15
+ </ul>
16
+ </div>
17
+ <div class="tabs">
18
+ <ul>
19
+ <li><a href="annotated.html"><span>Class&nbsp;List</span></a></li>
20
+ <li><a href="hierarchy.html"><span>Class&nbsp;Hierarchy</span></a></li>
21
+ <li><a href="functions.html"><span>Class&nbsp;Members</span></a></li>
22
+ </ul>
23
+ </div>
24
+ </div>
25
+ <div class="contents">
26
+ <h1>Gosu::File Member List</h1>This is the complete list of members for <a class="el" href="classGosu_1_1File.html">Gosu::File</a>, including all inherited members.<p><table>
27
+ <tr class="memlist"><td><a class="el" href="classGosu_1_1Resource.html#8383c59af78d8b90b4f28cd10c6a368f">backWriter</a>()</td><td><a class="el" href="classGosu_1_1Resource.html">Gosu::Resource</a></td><td><code> [inline]</code></td></tr>
28
+ <tr bgcolor="#f0f0f0"><td><b>File</b>(const std::wstring &amp;filename, FileMode mode=fmRead) (defined in <a class="el" href="classGosu_1_1File.html">Gosu::File</a>)</td><td><a class="el" href="classGosu_1_1File.html">Gosu::File</a></td><td><code> [explicit]</code></td></tr>
29
+ <tr class="memlist"><td><a class="el" href="classGosu_1_1Resource.html#1487016df4be48aa67e4596d5436dab6">frontReader</a>() const </td><td><a class="el" href="classGosu_1_1Resource.html">Gosu::Resource</a></td><td><code> [inline]</code></td></tr>
30
+ <tr bgcolor="#f0f0f0"><td><b>read</b>(std::size_t offset, std::size_t length, void *destBuffer) const (defined in <a class="el" href="classGosu_1_1File.html">Gosu::File</a>)</td><td><a class="el" href="classGosu_1_1File.html">Gosu::File</a></td><td><code> [virtual]</code></td></tr>
31
+ <tr bgcolor="#f0f0f0"><td><b>resize</b>(std::size_t newSize) (defined in <a class="el" href="classGosu_1_1File.html">Gosu::File</a>)</td><td><a class="el" href="classGosu_1_1File.html">Gosu::File</a></td><td><code> [virtual]</code></td></tr>
32
+ <tr bgcolor="#f0f0f0"><td><b>size</b>() const (defined in <a class="el" href="classGosu_1_1File.html">Gosu::File</a>)</td><td><a class="el" href="classGosu_1_1File.html">Gosu::File</a></td><td><code> [virtual]</code></td></tr>
33
+ <tr bgcolor="#f0f0f0"><td><b>write</b>(std::size_t offset, std::size_t length, const void *sourceBuffer) (defined in <a class="el" href="classGosu_1_1File.html">Gosu::File</a>)</td><td><a class="el" href="classGosu_1_1File.html">Gosu::File</a></td><td><code> [virtual]</code></td></tr>
34
+ <tr bgcolor="#f0f0f0"><td><b>~File</b>() (defined in <a class="el" href="classGosu_1_1File.html">Gosu::File</a>)</td><td><a class="el" href="classGosu_1_1File.html">Gosu::File</a></td><td></td></tr>
35
+ <tr bgcolor="#f0f0f0"><td><b>~Resource</b>() (defined in <a class="el" href="classGosu_1_1Resource.html">Gosu::Resource</a>)</td><td><a class="el" href="classGosu_1_1Resource.html">Gosu::Resource</a></td><td><code> [inline, virtual]</code></td></tr>
36
+ </table></div>
37
+ <hr size="1"><address style="text-align: right;"><small>Generated on Fri Sep 12 21:50:23 2008 for Gosu by&nbsp;
38
+ <a href="http://www.doxygen.org/index.html">
39
+ <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.5 </small></address>
40
+ </body>
41
+ </html>
@@ -0,0 +1,69 @@
1
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2
+ <html><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
3
+ <title>Gosu: Gosu::File Class Reference</title>
4
+ <link href="doxygen.css" rel="stylesheet" type="text/css">
5
+ <link href="tabs.css" rel="stylesheet" type="text/css">
6
+ </head><body>
7
+ <!-- Generated by Doxygen 1.5.5 -->
8
+ <div class="navigation" id="top">
9
+ <div class="tabs">
10
+ <ul>
11
+ <li><a href="index.html"><span>Main&nbsp;Page</span></a></li>
12
+ <li><a href="namespaces.html"><span>Namespaces</span></a></li>
13
+ <li class="current"><a href="annotated.html"><span>Classes</span></a></li>
14
+ <li><a href="files.html"><span>Files</span></a></li>
15
+ </ul>
16
+ </div>
17
+ <div class="tabs">
18
+ <ul>
19
+ <li><a href="annotated.html"><span>Class&nbsp;List</span></a></li>
20
+ <li><a href="hierarchy.html"><span>Class&nbsp;Hierarchy</span></a></li>
21
+ <li><a href="functions.html"><span>Class&nbsp;Members</span></a></li>
22
+ </ul>
23
+ </div>
24
+ <div class="navpath"><a class="el" href="namespaceGosu.html">Gosu</a>::<a class="el" href="classGosu_1_1File.html">File</a>
25
+ </div>
26
+ </div>
27
+ <div class="contents">
28
+ <h1>Gosu::File Class Reference</h1><!-- doxytag: class="Gosu::File" --><!-- doxytag: inherits="Gosu::Resource" --><a class="el" href="classGosu_1_1File.html" title="File with the Resource interface.">File</a> with the <a class="el" href="classGosu_1_1Resource.html" title="Base class for resources.">Resource</a> interface.
29
+ <a href="#_details">More...</a>
30
+ <p>
31
+ <div class="dynheader">
32
+ Inheritance diagram for Gosu::File:</div>
33
+ <div class="dynsection">
34
+
35
+ <p><center><img src="classGosu_1_1File.png" usemap="#Gosu::File_map" border="0" alt=""></center>
36
+ <map name="Gosu::File_map">
37
+ <area href="classGosu_1_1Resource.html" alt="Gosu::Resource" shape="rect" coords="0,0,101,24">
38
+ </map>
39
+ </div>
40
+
41
+ <p>
42
+ <a href="classGosu_1_1File-members.html">List of all members.</a><table border="0" cellpadding="0" cellspacing="0">
43
+ <tr><td></td></tr>
44
+ <tr><td colspan="2"><br><h2>Public Member Functions</h2></td></tr>
45
+ <tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="anchor" name="ca8146e9a279ee5cdee72bf6997eb392"></a><!-- doxytag: member="Gosu::File::File" ref="ca8146e9a279ee5cdee72bf6997eb392" args="(const std::wstring &amp;filename, FileMode mode=fmRead)" -->
46
+ &nbsp;</td><td class="memItemRight" valign="bottom"><b>File</b> (const std::wstring &amp;filename, <a class="el" href="namespaceGosu.html#f3bd16cebaf102e43f576d0a0ca1fcc3">FileMode</a> mode=fmRead)</td></tr>
47
+
48
+ <tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="anchor" name="d3cb0b3153253936f11ae51da9032532"></a><!-- doxytag: member="Gosu::File::size" ref="d3cb0b3153253936f11ae51da9032532" args="() const " -->
49
+ std::size_t&nbsp;</td><td class="memItemRight" valign="bottom"><b>size</b> () const </td></tr>
50
+
51
+ <tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="anchor" name="e8e557bc658ba2f2caca51517d461ee3"></a><!-- doxytag: member="Gosu::File::resize" ref="e8e557bc658ba2f2caca51517d461ee3" args="(std::size_t newSize)" -->
52
+ void&nbsp;</td><td class="memItemRight" valign="bottom"><b>resize</b> (std::size_t newSize)</td></tr>
53
+
54
+ <tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="anchor" name="65d51811adfa8909e325a52c79903c78"></a><!-- doxytag: member="Gosu::File::read" ref="65d51811adfa8909e325a52c79903c78" args="(std::size_t offset, std::size_t length, void *destBuffer) const " -->
55
+ void&nbsp;</td><td class="memItemRight" valign="bottom"><b>read</b> (std::size_t offset, std::size_t length, void *destBuffer) const </td></tr>
56
+
57
+ <tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="anchor" name="3ed021544dfd296370219744cc71c61e"></a><!-- doxytag: member="Gosu::File::write" ref="3ed021544dfd296370219744cc71c61e" args="(std::size_t offset, std::size_t length, const void *sourceBuffer)" -->
58
+ void&nbsp;</td><td class="memItemRight" valign="bottom"><b>write</b> (std::size_t offset, std::size_t length, const void *sourceBuffer)</td></tr>
59
+
60
+ </table>
61
+ <hr><a name="_details"></a><h2>Detailed Description</h2>
62
+ <a class="el" href="classGosu_1_1File.html" title="File with the Resource interface.">File</a> with the <a class="el" href="classGosu_1_1Resource.html" title="Base class for resources.">Resource</a> interface. <hr>The documentation for this class was generated from the following file:<ul>
63
+ <li><a class="el" href="IO_8hpp-source.html">IO.hpp</a></ul>
64
+ </div>
65
+ <hr size="1"><address style="text-align: right;"><small>Generated on Fri Sep 12 21:50:23 2008 for Gosu by&nbsp;
66
+ <a href="http://www.doxygen.org/index.html">
67
+ <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.5 </small></address>
68
+ </body>
69
+ </html>
@@ -0,0 +1,39 @@
1
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2
+ <html><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
3
+ <title>Gosu: Member List</title>
4
+ <link href="doxygen.css" rel="stylesheet" type="text/css">
5
+ <link href="tabs.css" rel="stylesheet" type="text/css">
6
+ </head><body>
7
+ <!-- Generated by Doxygen 1.5.5 -->
8
+ <div class="navigation" id="top">
9
+ <div class="tabs">
10
+ <ul>
11
+ <li><a href="index.html"><span>Main&nbsp;Page</span></a></li>
12
+ <li><a href="namespaces.html"><span>Namespaces</span></a></li>
13
+ <li class="current"><a href="annotated.html"><span>Classes</span></a></li>
14
+ <li><a href="files.html"><span>Files</span></a></li>
15
+ </ul>
16
+ </div>
17
+ <div class="tabs">
18
+ <ul>
19
+ <li><a href="annotated.html"><span>Class&nbsp;List</span></a></li>
20
+ <li><a href="hierarchy.html"><span>Class&nbsp;Hierarchy</span></a></li>
21
+ <li><a href="functions.html"><span>Class&nbsp;Members</span></a></li>
22
+ </ul>
23
+ </div>
24
+ </div>
25
+ <div class="contents">
26
+ <h1>Gosu::Font Member List</h1>This is the complete list of members for <a class="el" href="classGosu_1_1Font.html">Gosu::Font</a>, including all inherited members.<p><table>
27
+ <tr class="memlist"><td><a class="el" href="classGosu_1_1Font.html#5a67d1a1745e1d2eb1b7ec7d12f40e35">draw</a>(const std::wstring &amp;text, double x, double y, ZPos z, double factorX=1, double factorY=1, Color c=Colors::white, AlphaMode mode=amDefault) const </td><td><a class="el" href="classGosu_1_1Font.html">Gosu::Font</a></td><td></td></tr>
28
+ <tr class="memlist"><td><a class="el" href="classGosu_1_1Font.html#60b4c8d6c515ca09d6124a9dc5f3c2f2">drawRel</a>(const std::wstring &amp;text, double x, double y, ZPos z, double relX, double relY, double factorX=1, double factorY=1, Color c=Colors::white, AlphaMode mode=amDefault) const </td><td><a class="el" href="classGosu_1_1Font.html">Gosu::Font</a></td><td></td></tr>
29
+ <tr bgcolor="#f0f0f0"><td><b>drawRot</b>(const std::wstring &amp;text, double x, double y, ZPos z, double angle, double factorX=1, double factorY=1, Color c=Colors::white, AlphaMode mode=amDefault) const (defined in <a class="el" href="classGosu_1_1Font.html">Gosu::Font</a>)</td><td><a class="el" href="classGosu_1_1Font.html">Gosu::Font</a></td><td></td></tr>
30
+ <tr class="memlist"><td><a class="el" href="classGosu_1_1Font.html#d0ddfe95679f6caaae82dceba9ce3b70">Font</a>(Graphics &amp;graphics, const std::wstring &amp;fontName, unsigned height)</td><td><a class="el" href="classGosu_1_1Font.html">Gosu::Font</a></td><td></td></tr>
31
+ <tr class="memlist"><td><a class="el" href="classGosu_1_1Font.html#9357299749e270dbd01e7fb9f841ae54">height</a>() const </td><td><a class="el" href="classGosu_1_1Font.html">Gosu::Font</a></td><td></td></tr>
32
+ <tr class="memlist"><td><a class="el" href="classGosu_1_1Font.html#ee66d136e3b5b801d146cc1134a0635a">textWidth</a>(const std::wstring &amp;text, double factorX=1) const </td><td><a class="el" href="classGosu_1_1Font.html">Gosu::Font</a></td><td></td></tr>
33
+ <tr bgcolor="#f0f0f0"><td><b>~Font</b>() (defined in <a class="el" href="classGosu_1_1Font.html">Gosu::Font</a>)</td><td><a class="el" href="classGosu_1_1Font.html">Gosu::Font</a></td><td></td></tr>
34
+ </table></div>
35
+ <hr size="1"><address style="text-align: right;"><small>Generated on Fri Sep 12 21:50:23 2008 for Gosu by&nbsp;
36
+ <a href="http://www.doxygen.org/index.html">
37
+ <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.5 </small></address>
38
+ </body>
39
+ </html>
@@ -0,0 +1,309 @@
1
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2
+ <html><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
3
+ <title>Gosu: Gosu::Font Class Reference</title>
4
+ <link href="doxygen.css" rel="stylesheet" type="text/css">
5
+ <link href="tabs.css" rel="stylesheet" type="text/css">
6
+ </head><body>
7
+ <!-- Generated by Doxygen 1.5.5 -->
8
+ <div class="navigation" id="top">
9
+ <div class="tabs">
10
+ <ul>
11
+ <li><a href="index.html"><span>Main&nbsp;Page</span></a></li>
12
+ <li><a href="namespaces.html"><span>Namespaces</span></a></li>
13
+ <li class="current"><a href="annotated.html"><span>Classes</span></a></li>
14
+ <li><a href="files.html"><span>Files</span></a></li>
15
+ </ul>
16
+ </div>
17
+ <div class="tabs">
18
+ <ul>
19
+ <li><a href="annotated.html"><span>Class&nbsp;List</span></a></li>
20
+ <li><a href="hierarchy.html"><span>Class&nbsp;Hierarchy</span></a></li>
21
+ <li><a href="functions.html"><span>Class&nbsp;Members</span></a></li>
22
+ </ul>
23
+ </div>
24
+ <div class="navpath"><a class="el" href="namespaceGosu.html">Gosu</a>::<a class="el" href="classGosu_1_1Font.html">Font</a>
25
+ </div>
26
+ </div>
27
+ <div class="contents">
28
+ <h1>Gosu::Font Class Reference</h1><!-- doxytag: class="Gosu::Font" -->A font can be used to draw text on a <a class="el" href="classGosu_1_1Graphics.html" title="Serves as the target of all drawing and provides basic drawing functionality.">Graphics</a> object very flexibly.
29
+ <a href="#_details">More...</a>
30
+ <p>
31
+
32
+ <p>
33
+ <a href="classGosu_1_1Font-members.html">List of all members.</a><table border="0" cellpadding="0" cellspacing="0">
34
+ <tr><td></td></tr>
35
+ <tr><td colspan="2"><br><h2>Public Member Functions</h2></td></tr>
36
+ <tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGosu_1_1Font.html#d0ddfe95679f6caaae82dceba9ce3b70">Font</a> (<a class="el" href="classGosu_1_1Graphics.html">Graphics</a> &amp;graphics, const std::wstring &amp;fontName, unsigned height)</td></tr>
37
+
38
+ <tr><td class="memItemLeft" nowrap align="right" valign="top">unsigned&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGosu_1_1Font.html#9357299749e270dbd01e7fb9f841ae54">height</a> () const </td></tr>
39
+
40
+ <tr><td class="memItemLeft" nowrap align="right" valign="top">double&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGosu_1_1Font.html#ee66d136e3b5b801d146cc1134a0635a">textWidth</a> (const std::wstring &amp;text, double factorX=1) const </td></tr>
41
+
42
+ <tr><td class="memItemLeft" nowrap align="right" valign="top">void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGosu_1_1Font.html#5a67d1a1745e1d2eb1b7ec7d12f40e35">draw</a> (const std::wstring &amp;text, double x, double y, <a class="el" href="namespaceGosu.html#a2fd8fe9574c0ad3fd52557cb160be49">ZPos</a> z, double factorX=1, double factorY=1, <a class="el" href="classGosu_1_1Color.html">Color</a> c=Colors::white, <a class="el" href="namespaceGosu.html#769656b1f560bc3d1bbdb47f8ca4eda9">AlphaMode</a> mode=amDefault) const </td></tr>
43
+
44
+ <tr><td class="memItemLeft" nowrap align="right" valign="top">void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGosu_1_1Font.html#60b4c8d6c515ca09d6124a9dc5f3c2f2">drawRel</a> (const std::wstring &amp;text, double x, double y, <a class="el" href="namespaceGosu.html#a2fd8fe9574c0ad3fd52557cb160be49">ZPos</a> z, double relX, double relY, double factorX=1, double factorY=1, <a class="el" href="classGosu_1_1Color.html">Color</a> c=Colors::white, <a class="el" href="namespaceGosu.html#769656b1f560bc3d1bbdb47f8ca4eda9">AlphaMode</a> mode=amDefault) const </td></tr>
45
+
46
+ <tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="anchor" name="0771bb27561cefe3381fb36101ac7859"></a><!-- doxytag: member="Gosu::Font::drawRot" ref="0771bb27561cefe3381fb36101ac7859" args="(const std::wstring &amp;text, double x, double y, ZPos z, double angle, double factorX=1, double factorY=1, Color c=Colors::white, AlphaMode mode=amDefault) const " -->
47
+ void&nbsp;</td><td class="memItemRight" valign="bottom"><b>drawRot</b> (const std::wstring &amp;text, double x, double y, <a class="el" href="namespaceGosu.html#a2fd8fe9574c0ad3fd52557cb160be49">ZPos</a> z, double angle, double factorX=1, double factorY=1, <a class="el" href="classGosu_1_1Color.html">Color</a> c=Colors::white, <a class="el" href="namespaceGosu.html#769656b1f560bc3d1bbdb47f8ca4eda9">AlphaMode</a> mode=amDefault) const </td></tr>
48
+
49
+ </table>
50
+ <hr><a name="_details"></a><h2>Detailed Description</h2>
51
+ A font can be used to draw text on a <a class="el" href="classGosu_1_1Graphics.html" title="Serves as the target of all drawing and provides basic drawing functionality.">Graphics</a> object very flexibly.
52
+ <p>
53
+ Fonts are ideal for small texts that change regularly. For large, static texts you should use createBitmap and turn the result into an image. <hr><h2>Constructor &amp; Destructor Documentation</h2>
54
+ <a class="anchor" name="d0ddfe95679f6caaae82dceba9ce3b70"></a><!-- doxytag: member="Gosu::Font::Font" ref="d0ddfe95679f6caaae82dceba9ce3b70" args="(Graphics &amp;graphics, const std::wstring &amp;fontName, unsigned height)" -->
55
+ <div class="memitem">
56
+ <div class="memproto">
57
+ <table class="memname">
58
+ <tr>
59
+ <td class="memname">Gosu::Font::Font </td>
60
+ <td>(</td>
61
+ <td class="paramtype"><a class="el" href="classGosu_1_1Graphics.html">Graphics</a> &amp;&nbsp;</td>
62
+ <td class="paramname"> <em>graphics</em>, </td>
63
+ </tr>
64
+ <tr>
65
+ <td class="paramkey"></td>
66
+ <td></td>
67
+ <td class="paramtype">const std::wstring &amp;&nbsp;</td>
68
+ <td class="paramname"> <em>fontName</em>, </td>
69
+ </tr>
70
+ <tr>
71
+ <td class="paramkey"></td>
72
+ <td></td>
73
+ <td class="paramtype">unsigned&nbsp;</td>
74
+ <td class="paramname"> <em>height</em></td><td>&nbsp;</td>
75
+ </tr>
76
+ <tr>
77
+ <td></td>
78
+ <td>)</td>
79
+ <td></td><td></td><td width="100%"></td>
80
+ </tr>
81
+ </table>
82
+ </div>
83
+ <div class="memdoc">
84
+
85
+ <p>
86
+ Constructs a font that can be drawn onto the graphics object.
87
+ <p>
88
+ <dl compact><dt><b>Parameters:</b></dt><dd>
89
+ <table border="0" cellspacing="2" cellpadding="0">
90
+ <tr><td valign="top"></td><td valign="top"><em>fontName</em>&nbsp;</td><td>Name of a system font, or a filename to a TTF file (must contain '/'). </td></tr>
91
+ <tr><td valign="top"></td><td valign="top"><em>height</em>&nbsp;</td><td>Height of the font, in pixels. </td></tr>
92
+ </table>
93
+ </dl>
94
+
95
+ </div>
96
+ </div><p>
97
+ <hr><h2>Member Function Documentation</h2>
98
+ <a class="anchor" name="9357299749e270dbd01e7fb9f841ae54"></a><!-- doxytag: member="Gosu::Font::height" ref="9357299749e270dbd01e7fb9f841ae54" args="() const " -->
99
+ <div class="memitem">
100
+ <div class="memproto">
101
+ <table class="memname">
102
+ <tr>
103
+ <td class="memname">unsigned Gosu::Font::height </td>
104
+ <td>(</td>
105
+ <td class="paramname"> </td>
106
+ <td>&nbsp;)&nbsp;</td>
107
+ <td width="100%"> const</td>
108
+ </tr>
109
+ </table>
110
+ </div>
111
+ <div class="memdoc">
112
+
113
+ <p>
114
+ Returns the height of the font, in pixels.
115
+ <p>
116
+
117
+ </div>
118
+ </div><p>
119
+ <a class="anchor" name="ee66d136e3b5b801d146cc1134a0635a"></a><!-- doxytag: member="Gosu::Font::textWidth" ref="ee66d136e3b5b801d146cc1134a0635a" args="(const std::wstring &amp;text, double factorX=1) const " -->
120
+ <div class="memitem">
121
+ <div class="memproto">
122
+ <table class="memname">
123
+ <tr>
124
+ <td class="memname">double Gosu::Font::textWidth </td>
125
+ <td>(</td>
126
+ <td class="paramtype">const std::wstring &amp;&nbsp;</td>
127
+ <td class="paramname"> <em>text</em>, </td>
128
+ </tr>
129
+ <tr>
130
+ <td class="paramkey"></td>
131
+ <td></td>
132
+ <td class="paramtype">double&nbsp;</td>
133
+ <td class="paramname"> <em>factorX</em> = <code>1</code></td><td>&nbsp;</td>
134
+ </tr>
135
+ <tr>
136
+ <td></td>
137
+ <td>)</td>
138
+ <td></td><td></td><td width="100%"> const</td>
139
+ </tr>
140
+ </table>
141
+ </div>
142
+ <div class="memdoc">
143
+
144
+ <p>
145
+ Returns the width the given text would occupy if drawn.
146
+ <p>
147
+
148
+ </div>
149
+ </div><p>
150
+ <a class="anchor" name="5a67d1a1745e1d2eb1b7ec7d12f40e35"></a><!-- doxytag: member="Gosu::Font::draw" ref="5a67d1a1745e1d2eb1b7ec7d12f40e35" args="(const std::wstring &amp;text, double x, double y, ZPos z, double factorX=1, double factorY=1, Color c=Colors::white, AlphaMode mode=amDefault) const " -->
151
+ <div class="memitem">
152
+ <div class="memproto">
153
+ <table class="memname">
154
+ <tr>
155
+ <td class="memname">void Gosu::Font::draw </td>
156
+ <td>(</td>
157
+ <td class="paramtype">const std::wstring &amp;&nbsp;</td>
158
+ <td class="paramname"> <em>text</em>, </td>
159
+ </tr>
160
+ <tr>
161
+ <td class="paramkey"></td>
162
+ <td></td>
163
+ <td class="paramtype">double&nbsp;</td>
164
+ <td class="paramname"> <em>x</em>, </td>
165
+ </tr>
166
+ <tr>
167
+ <td class="paramkey"></td>
168
+ <td></td>
169
+ <td class="paramtype">double&nbsp;</td>
170
+ <td class="paramname"> <em>y</em>, </td>
171
+ </tr>
172
+ <tr>
173
+ <td class="paramkey"></td>
174
+ <td></td>
175
+ <td class="paramtype"><a class="el" href="namespaceGosu.html#a2fd8fe9574c0ad3fd52557cb160be49">ZPos</a>&nbsp;</td>
176
+ <td class="paramname"> <em>z</em>, </td>
177
+ </tr>
178
+ <tr>
179
+ <td class="paramkey"></td>
180
+ <td></td>
181
+ <td class="paramtype">double&nbsp;</td>
182
+ <td class="paramname"> <em>factorX</em> = <code>1</code>, </td>
183
+ </tr>
184
+ <tr>
185
+ <td class="paramkey"></td>
186
+ <td></td>
187
+ <td class="paramtype">double&nbsp;</td>
188
+ <td class="paramname"> <em>factorY</em> = <code>1</code>, </td>
189
+ </tr>
190
+ <tr>
191
+ <td class="paramkey"></td>
192
+ <td></td>
193
+ <td class="paramtype"><a class="el" href="classGosu_1_1Color.html">Color</a>&nbsp;</td>
194
+ <td class="paramname"> <em>c</em> = <code>Colors::white</code>, </td>
195
+ </tr>
196
+ <tr>
197
+ <td class="paramkey"></td>
198
+ <td></td>
199
+ <td class="paramtype"><a class="el" href="namespaceGosu.html#769656b1f560bc3d1bbdb47f8ca4eda9">AlphaMode</a>&nbsp;</td>
200
+ <td class="paramname"> <em>mode</em> = <code>amDefault</code></td><td>&nbsp;</td>
201
+ </tr>
202
+ <tr>
203
+ <td></td>
204
+ <td>)</td>
205
+ <td></td><td></td><td width="100%"> const</td>
206
+ </tr>
207
+ </table>
208
+ </div>
209
+ <div class="memdoc">
210
+
211
+ <p>
212
+ Draws text so the top left corner of the text is at (x; y).
213
+ <p>
214
+
215
+ </div>
216
+ </div><p>
217
+ <a class="anchor" name="60b4c8d6c515ca09d6124a9dc5f3c2f2"></a><!-- doxytag: member="Gosu::Font::drawRel" ref="60b4c8d6c515ca09d6124a9dc5f3c2f2" args="(const std::wstring &amp;text, double x, double y, ZPos z, double relX, double relY, double factorX=1, double factorY=1, Color c=Colors::white, AlphaMode mode=amDefault) const " -->
218
+ <div class="memitem">
219
+ <div class="memproto">
220
+ <table class="memname">
221
+ <tr>
222
+ <td class="memname">void Gosu::Font::drawRel </td>
223
+ <td>(</td>
224
+ <td class="paramtype">const std::wstring &amp;&nbsp;</td>
225
+ <td class="paramname"> <em>text</em>, </td>
226
+ </tr>
227
+ <tr>
228
+ <td class="paramkey"></td>
229
+ <td></td>
230
+ <td class="paramtype">double&nbsp;</td>
231
+ <td class="paramname"> <em>x</em>, </td>
232
+ </tr>
233
+ <tr>
234
+ <td class="paramkey"></td>
235
+ <td></td>
236
+ <td class="paramtype">double&nbsp;</td>
237
+ <td class="paramname"> <em>y</em>, </td>
238
+ </tr>
239
+ <tr>
240
+ <td class="paramkey"></td>
241
+ <td></td>
242
+ <td class="paramtype"><a class="el" href="namespaceGosu.html#a2fd8fe9574c0ad3fd52557cb160be49">ZPos</a>&nbsp;</td>
243
+ <td class="paramname"> <em>z</em>, </td>
244
+ </tr>
245
+ <tr>
246
+ <td class="paramkey"></td>
247
+ <td></td>
248
+ <td class="paramtype">double&nbsp;</td>
249
+ <td class="paramname"> <em>relX</em>, </td>
250
+ </tr>
251
+ <tr>
252
+ <td class="paramkey"></td>
253
+ <td></td>
254
+ <td class="paramtype">double&nbsp;</td>
255
+ <td class="paramname"> <em>relY</em>, </td>
256
+ </tr>
257
+ <tr>
258
+ <td class="paramkey"></td>
259
+ <td></td>
260
+ <td class="paramtype">double&nbsp;</td>
261
+ <td class="paramname"> <em>factorX</em> = <code>1</code>, </td>
262
+ </tr>
263
+ <tr>
264
+ <td class="paramkey"></td>
265
+ <td></td>
266
+ <td class="paramtype">double&nbsp;</td>
267
+ <td class="paramname"> <em>factorY</em> = <code>1</code>, </td>
268
+ </tr>
269
+ <tr>
270
+ <td class="paramkey"></td>
271
+ <td></td>
272
+ <td class="paramtype"><a class="el" href="classGosu_1_1Color.html">Color</a>&nbsp;</td>
273
+ <td class="paramname"> <em>c</em> = <code>Colors::white</code>, </td>
274
+ </tr>
275
+ <tr>
276
+ <td class="paramkey"></td>
277
+ <td></td>
278
+ <td class="paramtype"><a class="el" href="namespaceGosu.html#769656b1f560bc3d1bbdb47f8ca4eda9">AlphaMode</a>&nbsp;</td>
279
+ <td class="paramname"> <em>mode</em> = <code>amDefault</code></td><td>&nbsp;</td>
280
+ </tr>
281
+ <tr>
282
+ <td></td>
283
+ <td>)</td>
284
+ <td></td><td></td><td width="100%"> const</td>
285
+ </tr>
286
+ </table>
287
+ </div>
288
+ <div class="memdoc">
289
+
290
+ <p>
291
+ Draws text at a position relative to (x; y).
292
+ <p>
293
+ <dl compact><dt><b>Parameters:</b></dt><dd>
294
+ <table border="0" cellspacing="2" cellpadding="0">
295
+ <tr><td valign="top"></td><td valign="top"><em>relX</em>&nbsp;</td><td>Determines where the text is drawn horizontally. If relX is 0.0, the text will be to the right of x, if it is 1.0, the text will be to the left of x, if it is 0.5, it will be centered on x. Of course, all real numbers are possible values. </td></tr>
296
+ <tr><td valign="top"></td><td valign="top"><em>relY</em>&nbsp;</td><td>See relX. </td></tr>
297
+ </table>
298
+ </dl>
299
+
300
+ </div>
301
+ </div><p>
302
+ <hr>The documentation for this class was generated from the following file:<ul>
303
+ <li><a class="el" href="Font_8hpp-source.html">Font.hpp</a></ul>
304
+ </div>
305
+ <hr size="1"><address style="text-align: right;"><small>Generated on Fri Sep 12 21:50:23 2008 for Gosu by&nbsp;
306
+ <a href="http://www.doxygen.org/index.html">
307
+ <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.5 </small></address>
308
+ </body>
309
+ </html>