gosu 0.7.10.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
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,50 @@
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::Window Member List</h1>This is the complete list of members for <a class="el" href="classGosu_1_1Window.html">Gosu::Window</a>, including all inherited members.<p><table>
27
+ <tr bgcolor="#f0f0f0"><td><b>audio</b>() const (defined in <a class="el" href="classGosu_1_1Window.html">Gosu::Window</a>)</td><td><a class="el" href="classGosu_1_1Window.html">Gosu::Window</a></td><td></td></tr>
28
+ <tr bgcolor="#f0f0f0"><td><b>audio</b>() (defined in <a class="el" href="classGosu_1_1Window.html">Gosu::Window</a>)</td><td><a class="el" href="classGosu_1_1Window.html">Gosu::Window</a></td><td></td></tr>
29
+ <tr class="memlist"><td><a class="el" href="classGosu_1_1Window.html#d4e680daba62ac7fbc8002b2be50a2c5">buttonDown</a>(Gosu::Button)</td><td><a class="el" href="classGosu_1_1Window.html">Gosu::Window</a></td><td><code> [inline, virtual]</code></td></tr>
30
+ <tr class="memlist"><td><a class="el" href="classGosu_1_1Window.html#41ab0a9bfee1c88d96618308bde584fc">buttonUp</a>(Gosu::Button)</td><td><a class="el" href="classGosu_1_1Window.html">Gosu::Window</a></td><td><code> [inline, virtual]</code></td></tr>
31
+ <tr bgcolor="#f0f0f0"><td><b>caption</b>() const (defined in <a class="el" href="classGosu_1_1Window.html">Gosu::Window</a>)</td><td><a class="el" href="classGosu_1_1Window.html">Gosu::Window</a></td><td></td></tr>
32
+ <tr class="memlist"><td><a class="el" href="classGosu_1_1Window.html#ccbd57bf5ea05899e4270e2b20b300a6">close</a>()</td><td><a class="el" href="classGosu_1_1Window.html">Gosu::Window</a></td><td></td></tr>
33
+ <tr bgcolor="#f0f0f0"><td><b>createSharedContext</b>() (defined in <a class="el" href="classGosu_1_1Window.html">Gosu::Window</a>)</td><td><a class="el" href="classGosu_1_1Window.html">Gosu::Window</a></td><td></td></tr>
34
+ <tr class="memlist"><td><a class="el" href="classGosu_1_1Window.html#b3c5da8e60f81c0528a5d8d9495daac8">draw</a>()</td><td><a class="el" href="classGosu_1_1Window.html">Gosu::Window</a></td><td><code> [inline, virtual]</code></td></tr>
35
+ <tr bgcolor="#f0f0f0"><td><b>graphics</b>() const (defined in <a class="el" href="classGosu_1_1Window.html">Gosu::Window</a>)</td><td><a class="el" href="classGosu_1_1Window.html">Gosu::Window</a></td><td></td></tr>
36
+ <tr bgcolor="#f0f0f0"><td><b>graphics</b>() (defined in <a class="el" href="classGosu_1_1Window.html">Gosu::Window</a>)</td><td><a class="el" href="classGosu_1_1Window.html">Gosu::Window</a></td><td></td></tr>
37
+ <tr bgcolor="#f0f0f0"><td><b>input</b>() const (defined in <a class="el" href="classGosu_1_1Window.html">Gosu::Window</a>)</td><td><a class="el" href="classGosu_1_1Window.html">Gosu::Window</a></td><td></td></tr>
38
+ <tr bgcolor="#f0f0f0"><td><b>input</b>() (defined in <a class="el" href="classGosu_1_1Window.html">Gosu::Window</a>)</td><td><a class="el" href="classGosu_1_1Window.html">Gosu::Window</a></td><td></td></tr>
39
+ <tr bgcolor="#f0f0f0"><td><b>setCaption</b>(const std::wstring &amp;caption) (defined in <a class="el" href="classGosu_1_1Window.html">Gosu::Window</a>)</td><td><a class="el" href="classGosu_1_1Window.html">Gosu::Window</a></td><td></td></tr>
40
+ <tr bgcolor="#f0f0f0"><td><b>SharedContext</b> typedef (defined in <a class="el" href="classGosu_1_1Window.html">Gosu::Window</a>)</td><td><a class="el" href="classGosu_1_1Window.html">Gosu::Window</a></td><td></td></tr>
41
+ <tr class="memlist"><td><a class="el" href="classGosu_1_1Window.html#d4b7c1e5e817d8aaca09f5d19a3a9d93">show</a>()</td><td><a class="el" href="classGosu_1_1Window.html">Gosu::Window</a></td><td></td></tr>
42
+ <tr class="memlist"><td><a class="el" href="classGosu_1_1Window.html#4c74a15418c916dabec98c2da3ca45ba">update</a>()</td><td><a class="el" href="classGosu_1_1Window.html">Gosu::Window</a></td><td><code> [inline, virtual]</code></td></tr>
43
+ <tr class="memlist"><td><a class="el" href="classGosu_1_1Window.html#369461754934c92b9bd0811dbdad8ffa">Window</a>(unsigned width, unsigned height, bool fullscreen, double updateInterval=16.666666)</td><td><a class="el" href="classGosu_1_1Window.html">Gosu::Window</a></td><td></td></tr>
44
+ <tr bgcolor="#f0f0f0"><td><b>~Window</b>() (defined in <a class="el" href="classGosu_1_1Window.html">Gosu::Window</a>)</td><td><a class="el" href="classGosu_1_1Window.html">Gosu::Window</a></td><td><code> [virtual]</code></td></tr>
45
+ </table></div>
46
+ <hr size="1"><address style="text-align: right;"><small>Generated on Fri Sep 12 21:50:23 2008 for Gosu by&nbsp;
47
+ <a href="http://www.doxygen.org/index.html">
48
+ <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.5 </small></address>
49
+ </body>
50
+ </html>
@@ -0,0 +1,271 @@
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::Window 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_1Window.html">Window</a>
25
+ </div>
26
+ </div>
27
+ <div class="contents">
28
+ <h1>Gosu::Window Class Reference</h1><!-- doxytag: class="Gosu::Window" -->Convenient all-in-one class that serves as the foundation of a standard <a class="el" href="namespaceGosu.html" title="The library&#39;s main namespace.">Gosu</a> application.
29
+ <a href="#_details">More...</a>
30
+ <p>
31
+
32
+ <p>
33
+ <a href="classGosu_1_1Window-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 Types</h2></td></tr>
36
+ <tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="anchor" name="ba8dfad645b824851fe0d8846483feff"></a><!-- doxytag: member="Gosu::Window::SharedContext" ref="ba8dfad645b824851fe0d8846483feff" args="" -->
37
+ typedef boost::shared_ptr<br>
38
+ &lt; boost::function&lt; void()&gt; &gt;&nbsp;</td><td class="memItemRight" valign="bottom"><b>SharedContext</b></td></tr>
39
+
40
+ <tr><td colspan="2"><br><h2>Public Member Functions</h2></td></tr>
41
+ <tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGosu_1_1Window.html#369461754934c92b9bd0811dbdad8ffa">Window</a> (unsigned width, unsigned height, bool fullscreen, double updateInterval=16.666666)</td></tr>
42
+
43
+ <tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="anchor" name="62a0e43f8c0311252e53306699f1d0de"></a><!-- doxytag: member="Gosu::Window::caption" ref="62a0e43f8c0311252e53306699f1d0de" args="() const " -->
44
+ std::wstring&nbsp;</td><td class="memItemRight" valign="bottom"><b>caption</b> () const </td></tr>
45
+
46
+ <tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="anchor" name="c4af331ee73acf27e75d453309a559d6"></a><!-- doxytag: member="Gosu::Window::setCaption" ref="c4af331ee73acf27e75d453309a559d6" args="(const std::wstring &amp;caption)" -->
47
+ void&nbsp;</td><td class="memItemRight" valign="bottom"><b>setCaption</b> (const std::wstring &amp;caption)</td></tr>
48
+
49
+ <tr><td class="memItemLeft" nowrap align="right" valign="top">void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGosu_1_1Window.html#d4b7c1e5e817d8aaca09f5d19a3a9d93">show</a> ()</td></tr>
50
+
51
+ <tr><td class="memItemLeft" nowrap align="right" valign="top">void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGosu_1_1Window.html#ccbd57bf5ea05899e4270e2b20b300a6">close</a> ()</td></tr>
52
+
53
+ <tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGosu_1_1Window.html#4c74a15418c916dabec98c2da3ca45ba">update</a> ()</td></tr>
54
+
55
+ <tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGosu_1_1Window.html#b3c5da8e60f81c0528a5d8d9495daac8">draw</a> ()</td></tr>
56
+
57
+ <tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGosu_1_1Window.html#d4e680daba62ac7fbc8002b2be50a2c5">buttonDown</a> (<a class="el" href="classGosu_1_1Button.html">Gosu::Button</a>)</td></tr>
58
+
59
+ <tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGosu_1_1Window.html#41ab0a9bfee1c88d96618308bde584fc">buttonUp</a> (<a class="el" href="classGosu_1_1Button.html">Gosu::Button</a>)</td></tr>
60
+
61
+ <tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="anchor" name="92beaec534fff9513788b37236417991"></a><!-- doxytag: member="Gosu::Window::graphics" ref="92beaec534fff9513788b37236417991" args="() const " -->
62
+ const <a class="el" href="classGosu_1_1Graphics.html">Graphics</a> &amp;&nbsp;</td><td class="memItemRight" valign="bottom"><b>graphics</b> () const </td></tr>
63
+
64
+ <tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="anchor" name="6dea7f1d1f9f44664b000c6a2150650e"></a><!-- doxytag: member="Gosu::Window::graphics" ref="6dea7f1d1f9f44664b000c6a2150650e" args="()" -->
65
+ <a class="el" href="classGosu_1_1Graphics.html">Graphics</a> &amp;&nbsp;</td><td class="memItemRight" valign="bottom"><b>graphics</b> ()</td></tr>
66
+
67
+ <tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="anchor" name="50e644e03e69dba6f0914bd6a10daef2"></a><!-- doxytag: member="Gosu::Window::audio" ref="50e644e03e69dba6f0914bd6a10daef2" args="() const " -->
68
+ const <a class="el" href="classGosu_1_1Audio.html">Audio</a> &amp;&nbsp;</td><td class="memItemRight" valign="bottom"><b>audio</b> () const </td></tr>
69
+
70
+ <tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="anchor" name="ba6ad526d3718ab2f53b62067aac74de"></a><!-- doxytag: member="Gosu::Window::audio" ref="ba6ad526d3718ab2f53b62067aac74de" args="()" -->
71
+ <a class="el" href="classGosu_1_1Audio.html">Audio</a> &amp;&nbsp;</td><td class="memItemRight" valign="bottom"><b>audio</b> ()</td></tr>
72
+
73
+ <tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="anchor" name="88078642d31df76f4fdff18fbce78f41"></a><!-- doxytag: member="Gosu::Window::input" ref="88078642d31df76f4fdff18fbce78f41" args="() const " -->
74
+ const <a class="el" href="classGosu_1_1Input.html">Input</a> &amp;&nbsp;</td><td class="memItemRight" valign="bottom"><b>input</b> () const </td></tr>
75
+
76
+ <tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="anchor" name="8ea4ba2ff316a565b8701c46aa1972ad"></a><!-- doxytag: member="Gosu::Window::input" ref="8ea4ba2ff316a565b8701c46aa1972ad" args="()" -->
77
+ <a class="el" href="classGosu_1_1Input.html">Input</a> &amp;&nbsp;</td><td class="memItemRight" valign="bottom"><b>input</b> ()</td></tr>
78
+
79
+ <tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="anchor" name="ee8eed37f3510d0c01d68c0fff64e07c"></a><!-- doxytag: member="Gosu::Window::createSharedContext" ref="ee8eed37f3510d0c01d68c0fff64e07c" args="()" -->
80
+ SharedContext&nbsp;</td><td class="memItemRight" valign="bottom"><b>createSharedContext</b> ()</td></tr>
81
+
82
+ </table>
83
+ <hr><a name="_details"></a><h2>Detailed Description</h2>
84
+ Convenient all-in-one class that serves as the foundation of a standard <a class="el" href="namespaceGosu.html" title="The library&#39;s main namespace.">Gosu</a> application.
85
+ <p>
86
+ Manages initialization of all of Gosu's core components and provides timing functionality. <hr><h2>Constructor &amp; Destructor Documentation</h2>
87
+ <a class="anchor" name="369461754934c92b9bd0811dbdad8ffa"></a><!-- doxytag: member="Gosu::Window::Window" ref="369461754934c92b9bd0811dbdad8ffa" args="(unsigned width, unsigned height, bool fullscreen, double updateInterval=16.666666)" -->
88
+ <div class="memitem">
89
+ <div class="memproto">
90
+ <table class="memname">
91
+ <tr>
92
+ <td class="memname">Gosu::Window::Window </td>
93
+ <td>(</td>
94
+ <td class="paramtype">unsigned&nbsp;</td>
95
+ <td class="paramname"> <em>width</em>, </td>
96
+ </tr>
97
+ <tr>
98
+ <td class="paramkey"></td>
99
+ <td></td>
100
+ <td class="paramtype">unsigned&nbsp;</td>
101
+ <td class="paramname"> <em>height</em>, </td>
102
+ </tr>
103
+ <tr>
104
+ <td class="paramkey"></td>
105
+ <td></td>
106
+ <td class="paramtype">bool&nbsp;</td>
107
+ <td class="paramname"> <em>fullscreen</em>, </td>
108
+ </tr>
109
+ <tr>
110
+ <td class="paramkey"></td>
111
+ <td></td>
112
+ <td class="paramtype">double&nbsp;</td>
113
+ <td class="paramname"> <em>updateInterval</em> = <code>16.666666</code></td><td>&nbsp;</td>
114
+ </tr>
115
+ <tr>
116
+ <td></td>
117
+ <td>)</td>
118
+ <td></td><td></td><td width="100%"></td>
119
+ </tr>
120
+ </table>
121
+ </div>
122
+ <div class="memdoc">
123
+
124
+ <p>
125
+ Constructs a <a class="el" href="classGosu_1_1Window.html" title="Convenient all-in-one class that serves as the foundation of a standard Gosu application...">Window</a>.
126
+ <p>
127
+ <dl compact><dt><b>Parameters:</b></dt><dd>
128
+ <table border="0" cellspacing="2" cellpadding="0">
129
+ <tr><td valign="top"></td><td valign="top"><em>updateInterval</em>&nbsp;</td><td>Interval in milliseconds between two calls to the update member function. </td></tr>
130
+ </table>
131
+ </dl>
132
+
133
+ </div>
134
+ </div><p>
135
+ <hr><h2>Member Function Documentation</h2>
136
+ <a class="anchor" name="d4b7c1e5e817d8aaca09f5d19a3a9d93"></a><!-- doxytag: member="Gosu::Window::show" ref="d4b7c1e5e817d8aaca09f5d19a3a9d93" args="()" -->
137
+ <div class="memitem">
138
+ <div class="memproto">
139
+ <table class="memname">
140
+ <tr>
141
+ <td class="memname">void Gosu::Window::show </td>
142
+ <td>(</td>
143
+ <td class="paramname"> </td>
144
+ <td>&nbsp;)&nbsp;</td>
145
+ <td width="100%"></td>
146
+ </tr>
147
+ </table>
148
+ </div>
149
+ <div class="memdoc">
150
+
151
+ <p>
152
+ Starts the main event loop.
153
+ <p>
154
+
155
+ </div>
156
+ </div><p>
157
+ <a class="anchor" name="ccbd57bf5ea05899e4270e2b20b300a6"></a><!-- doxytag: member="Gosu::Window::close" ref="ccbd57bf5ea05899e4270e2b20b300a6" args="()" -->
158
+ <div class="memitem">
159
+ <div class="memproto">
160
+ <table class="memname">
161
+ <tr>
162
+ <td class="memname">void Gosu::Window::close </td>
163
+ <td>(</td>
164
+ <td class="paramname"> </td>
165
+ <td>&nbsp;)&nbsp;</td>
166
+ <td width="100%"></td>
167
+ </tr>
168
+ </table>
169
+ </div>
170
+ <div class="memdoc">
171
+
172
+ <p>
173
+ Closes the window if it is currently shown.
174
+ <p>
175
+
176
+ </div>
177
+ </div><p>
178
+ <a class="anchor" name="4c74a15418c916dabec98c2da3ca45ba"></a><!-- doxytag: member="Gosu::Window::update" ref="4c74a15418c916dabec98c2da3ca45ba" args="()" -->
179
+ <div class="memitem">
180
+ <div class="memproto">
181
+ <table class="memname">
182
+ <tr>
183
+ <td class="memname">virtual void Gosu::Window::update </td>
184
+ <td>(</td>
185
+ <td class="paramname"> </td>
186
+ <td>&nbsp;)&nbsp;</td>
187
+ <td width="100%"><code> [inline, virtual]</code></td>
188
+ </tr>
189
+ </table>
190
+ </div>
191
+ <div class="memdoc">
192
+
193
+ <p>
194
+ Called every updateInterval milliseconds while the window is being shown.
195
+ <p>
196
+ Your application's main game logic goes here.
197
+ </div>
198
+ </div><p>
199
+ <a class="anchor" name="b3c5da8e60f81c0528a5d8d9495daac8"></a><!-- doxytag: member="Gosu::Window::draw" ref="b3c5da8e60f81c0528a5d8d9495daac8" args="()" -->
200
+ <div class="memitem">
201
+ <div class="memproto">
202
+ <table class="memname">
203
+ <tr>
204
+ <td class="memname">virtual void Gosu::Window::draw </td>
205
+ <td>(</td>
206
+ <td class="paramname"> </td>
207
+ <td>&nbsp;)&nbsp;</td>
208
+ <td width="100%"><code> [inline, virtual]</code></td>
209
+ </tr>
210
+ </table>
211
+ </div>
212
+ <div class="memdoc">
213
+
214
+ <p>
215
+ Called after every update and when the OS wants the window to repaint itself.
216
+ <p>
217
+ Your application's rendering code goes here.
218
+ </div>
219
+ </div><p>
220
+ <a class="anchor" name="d4e680daba62ac7fbc8002b2be50a2c5"></a><!-- doxytag: member="Gosu::Window::buttonDown" ref="d4e680daba62ac7fbc8002b2be50a2c5" args="(Gosu::Button)" -->
221
+ <div class="memitem">
222
+ <div class="memproto">
223
+ <table class="memname">
224
+ <tr>
225
+ <td class="memname">virtual void Gosu::Window::buttonDown </td>
226
+ <td>(</td>
227
+ <td class="paramtype"><a class="el" href="classGosu_1_1Button.html">Gosu::Button</a>&nbsp;</td>
228
+ <td class="paramname"> </td>
229
+ <td>&nbsp;)&nbsp;</td>
230
+ <td width="100%"><code> [inline, virtual]</code></td>
231
+ </tr>
232
+ </table>
233
+ </div>
234
+ <div class="memdoc">
235
+
236
+ <p>
237
+ Called before update when the user pressed a button while the window had the focus.
238
+ <p>
239
+
240
+ </div>
241
+ </div><p>
242
+ <a class="anchor" name="41ab0a9bfee1c88d96618308bde584fc"></a><!-- doxytag: member="Gosu::Window::buttonUp" ref="41ab0a9bfee1c88d96618308bde584fc" args="(Gosu::Button)" -->
243
+ <div class="memitem">
244
+ <div class="memproto">
245
+ <table class="memname">
246
+ <tr>
247
+ <td class="memname">virtual void Gosu::Window::buttonUp </td>
248
+ <td>(</td>
249
+ <td class="paramtype"><a class="el" href="classGosu_1_1Button.html">Gosu::Button</a>&nbsp;</td>
250
+ <td class="paramname"> </td>
251
+ <td>&nbsp;)&nbsp;</td>
252
+ <td width="100%"><code> [inline, virtual]</code></td>
253
+ </tr>
254
+ </table>
255
+ </div>
256
+ <div class="memdoc">
257
+
258
+ <p>
259
+ Same as buttonDown. Called then the user released a button.
260
+ <p>
261
+
262
+ </div>
263
+ </div><p>
264
+ <hr>The documentation for this class was generated from the following file:<ul>
265
+ <li><a class="el" href="Window_8hpp-source.html">Window.hpp</a></ul>
266
+ </div>
267
+ <hr size="1"><address style="text-align: right;"><small>Generated on Fri Sep 12 21:50:23 2008 for Gosu by&nbsp;
268
+ <a href="http://www.doxygen.org/index.html">
269
+ <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.5 </small></address>
270
+ </body>
271
+ </html>
@@ -0,0 +1,233 @@
1
+ # Doxyfile 1.5.4
2
+
3
+ #---------------------------------------------------------------------------
4
+ # Project related configuration options
5
+ #---------------------------------------------------------------------------
6
+ DOXYFILE_ENCODING = UTF-8
7
+ PROJECT_NAME = Gosu
8
+ PROJECT_NUMBER =
9
+ OUTPUT_DIRECTORY = .
10
+ CREATE_SUBDIRS = NO
11
+ OUTPUT_LANGUAGE = English
12
+ BRIEF_MEMBER_DESC = NO
13
+ REPEAT_BRIEF = YES
14
+ ABBREVIATE_BRIEF =
15
+ ALWAYS_DETAILED_SEC = NO
16
+ INLINE_INHERITED_MEMB = NO
17
+ FULL_PATH_NAMES = NO
18
+ STRIP_FROM_PATH =
19
+ STRIP_FROM_INC_PATH =
20
+ SHORT_NAMES = NO
21
+ JAVADOC_AUTOBRIEF = YES
22
+ QT_AUTOBRIEF = NO
23
+ MULTILINE_CPP_IS_BRIEF = NO
24
+ DETAILS_AT_TOP = NO
25
+ INHERIT_DOCS = YES
26
+ SEPARATE_MEMBER_PAGES = NO
27
+ TAB_SIZE = 4
28
+ ALIASES =
29
+ OPTIMIZE_OUTPUT_FOR_C = NO
30
+ OPTIMIZE_OUTPUT_JAVA = NO
31
+ BUILTIN_STL_SUPPORT = NO
32
+ CPP_CLI_SUPPORT = NO
33
+ SIP_SUPPORT = NO
34
+ DISTRIBUTE_GROUP_DOC = NO
35
+ SUBGROUPING = YES
36
+ TYPEDEF_HIDES_STRUCT = NO
37
+ #---------------------------------------------------------------------------
38
+ # Build related configuration options
39
+ #---------------------------------------------------------------------------
40
+ EXTRACT_ALL = NO
41
+ EXTRACT_PRIVATE = NO
42
+ EXTRACT_STATIC = NO
43
+ EXTRACT_LOCAL_CLASSES = NO
44
+ EXTRACT_LOCAL_METHODS = NO
45
+ EXTRACT_ANON_NSPACES = NO
46
+ HIDE_UNDOC_MEMBERS = NO
47
+ HIDE_UNDOC_CLASSES = NO
48
+ HIDE_FRIEND_COMPOUNDS = NO
49
+ HIDE_IN_BODY_DOCS = NO
50
+ INTERNAL_DOCS = NO
51
+ CASE_SENSE_NAMES = YES
52
+ HIDE_SCOPE_NAMES = NO
53
+ SHOW_INCLUDE_FILES = NO
54
+ INLINE_INFO = YES
55
+ SORT_MEMBER_DOCS = YES
56
+ SORT_BRIEF_DOCS = NO
57
+ SORT_BY_SCOPE_NAME = NO
58
+ GENERATE_TODOLIST = YES
59
+ GENERATE_TESTLIST = YES
60
+ GENERATE_BUGLIST = YES
61
+ GENERATE_DEPRECATEDLIST= YES
62
+ ENABLED_SECTIONS =
63
+ MAX_INITIALIZER_LINES = 30
64
+ SHOW_USED_FILES = YES
65
+ SHOW_DIRECTORIES = NO
66
+ FILE_VERSION_FILTER =
67
+ #---------------------------------------------------------------------------
68
+ # configuration options related to warning and progress messages
69
+ #---------------------------------------------------------------------------
70
+ QUIET = NO
71
+ WARNINGS = YES
72
+ WARN_IF_UNDOCUMENTED = YES
73
+ WARN_IF_DOC_ERROR = YES
74
+ WARN_NO_PARAMDOC = NO
75
+ WARN_FORMAT = "$file:$line: $text "
76
+ WARN_LOGFILE =
77
+ #---------------------------------------------------------------------------
78
+ # configuration options related to the input files
79
+ #---------------------------------------------------------------------------
80
+ INPUT = ../Gosu/
81
+ INPUT_ENCODING = UTF-8
82
+ FILE_PATTERNS = *.hpp
83
+ RECURSIVE = NO
84
+ EXCLUDE =
85
+ EXCLUDE_SYMLINKS = NO
86
+ EXCLUDE_PATTERNS =
87
+ EXCLUDE_SYMBOLS =
88
+ EXAMPLE_PATH =
89
+ EXAMPLE_PATTERNS =
90
+ EXAMPLE_RECURSIVE = NO
91
+ IMAGE_PATH =
92
+ INPUT_FILTER =
93
+ FILTER_PATTERNS =
94
+ FILTER_SOURCE_FILES = NO
95
+ #---------------------------------------------------------------------------
96
+ # configuration options related to source browsing
97
+ #---------------------------------------------------------------------------
98
+ SOURCE_BROWSER = NO
99
+ INLINE_SOURCES = NO
100
+ STRIP_CODE_COMMENTS = YES
101
+ REFERENCED_BY_RELATION = YES
102
+ REFERENCES_RELATION = YES
103
+ REFERENCES_LINK_SOURCE = YES
104
+ USE_HTAGS = NO
105
+ VERBATIM_HEADERS = YES
106
+ #---------------------------------------------------------------------------
107
+ # configuration options related to the alphabetical class index
108
+ #---------------------------------------------------------------------------
109
+ ALPHABETICAL_INDEX = NO
110
+ COLS_IN_ALPHA_INDEX = 5
111
+ IGNORE_PREFIX =
112
+ #---------------------------------------------------------------------------
113
+ # configuration options related to the HTML output
114
+ #---------------------------------------------------------------------------
115
+ GENERATE_HTML = YES
116
+ HTML_OUTPUT = .
117
+ HTML_FILE_EXTENSION = .html
118
+ HTML_HEADER =
119
+ HTML_FOOTER =
120
+ HTML_STYLESHEET =
121
+ HTML_ALIGN_MEMBERS = YES
122
+ GENERATE_HTMLHELP = NO
123
+ HTML_DYNAMIC_SECTIONS = NO
124
+ CHM_FILE =
125
+ HHC_LOCATION =
126
+ GENERATE_CHI = NO
127
+ BINARY_TOC = NO
128
+ TOC_EXPAND = NO
129
+ DISABLE_INDEX = NO
130
+ ENUM_VALUES_PER_LINE = 4
131
+ GENERATE_TREEVIEW = NO
132
+ TREEVIEW_WIDTH = 250
133
+ #---------------------------------------------------------------------------
134
+ # configuration options related to the LaTeX output
135
+ #---------------------------------------------------------------------------
136
+ GENERATE_LATEX = NO
137
+ LATEX_OUTPUT = latex
138
+ LATEX_CMD_NAME = latex
139
+ MAKEINDEX_CMD_NAME = makeindex
140
+ COMPACT_LATEX = NO
141
+ PAPER_TYPE = a4wide
142
+ EXTRA_PACKAGES =
143
+ LATEX_HEADER =
144
+ PDF_HYPERLINKS = NO
145
+ USE_PDFLATEX = NO
146
+ LATEX_BATCHMODE = NO
147
+ LATEX_HIDE_INDICES = NO
148
+ #---------------------------------------------------------------------------
149
+ # configuration options related to the RTF output
150
+ #---------------------------------------------------------------------------
151
+ GENERATE_RTF = NO
152
+ RTF_OUTPUT = rtf
153
+ COMPACT_RTF = NO
154
+ RTF_HYPERLINKS = NO
155
+ RTF_STYLESHEET_FILE =
156
+ RTF_EXTENSIONS_FILE =
157
+ #---------------------------------------------------------------------------
158
+ # configuration options related to the man page output
159
+ #---------------------------------------------------------------------------
160
+ GENERATE_MAN = NO
161
+ MAN_OUTPUT = man
162
+ MAN_EXTENSION = .3
163
+ MAN_LINKS = NO
164
+ #---------------------------------------------------------------------------
165
+ # configuration options related to the XML output
166
+ #---------------------------------------------------------------------------
167
+ GENERATE_XML = NO
168
+ XML_OUTPUT = xml
169
+ XML_SCHEMA =
170
+ XML_DTD =
171
+ XML_PROGRAMLISTING = YES
172
+ #---------------------------------------------------------------------------
173
+ # configuration options for the AutoGen Definitions output
174
+ #---------------------------------------------------------------------------
175
+ GENERATE_AUTOGEN_DEF = NO
176
+ #---------------------------------------------------------------------------
177
+ # configuration options related to the Perl module output
178
+ #---------------------------------------------------------------------------
179
+ GENERATE_PERLMOD = NO
180
+ PERLMOD_LATEX = NO
181
+ PERLMOD_PRETTY = YES
182
+ PERLMOD_MAKEVAR_PREFIX =
183
+ #---------------------------------------------------------------------------
184
+ # Configuration options related to the preprocessor
185
+ #---------------------------------------------------------------------------
186
+ ENABLE_PREPROCESSING = YES
187
+ MACRO_EXPANSION = NO
188
+ EXPAND_ONLY_PREDEF = NO
189
+ SEARCH_INCLUDES = YES
190
+ INCLUDE_PATH =
191
+ INCLUDE_FILE_PATTERNS =
192
+ PREDEFINED =
193
+ EXPAND_AS_DEFINED =
194
+ SKIP_FUNCTION_MACROS = YES
195
+ #---------------------------------------------------------------------------
196
+ # Configuration::additions related to external references
197
+ #---------------------------------------------------------------------------
198
+ TAGFILES =
199
+ GENERATE_TAGFILE =
200
+ ALLEXTERNALS = NO
201
+ EXTERNAL_GROUPS = YES
202
+ PERL_PATH = /usr/bin/perl
203
+ #---------------------------------------------------------------------------
204
+ # Configuration options related to the dot tool
205
+ #---------------------------------------------------------------------------
206
+ CLASS_DIAGRAMS = YES
207
+ MSCGEN_PATH = /Developer/Applications/Doxygen.app/Contents/Resources/
208
+ HIDE_UNDOC_RELATIONS = YES
209
+ HAVE_DOT = NO
210
+ CLASS_GRAPH = YES
211
+ COLLABORATION_GRAPH = YES
212
+ GROUP_GRAPHS = YES
213
+ UML_LOOK = NO
214
+ TEMPLATE_RELATIONS = NO
215
+ INCLUDE_GRAPH = YES
216
+ INCLUDED_BY_GRAPH = YES
217
+ CALL_GRAPH = NO
218
+ CALLER_GRAPH = NO
219
+ GRAPHICAL_HIERARCHY = YES
220
+ DIRECTORY_GRAPH = YES
221
+ DOT_IMAGE_FORMAT = png
222
+ DOT_PATH = /Developer/Applications/Doxygen.app/Contents/Resources/
223
+ DOTFILE_DIRS =
224
+ DOT_GRAPH_MAX_NODES = 50
225
+ MAX_DOT_GRAPH_DEPTH = 0
226
+ DOT_TRANSPARENT = YES
227
+ DOT_MULTI_TARGETS = NO
228
+ GENERATE_LEGEND = YES
229
+ DOT_CLEANUP = YES
230
+ #---------------------------------------------------------------------------
231
+ # Configuration::additions related to the search engine
232
+ #---------------------------------------------------------------------------
233
+ SEARCHENGINE = NO