gosu 0.7.13 → 0.7.13.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (312) hide show
  1. data/COPYING.txt +4 -2
  2. data/Gosu/Audio.hpp +8 -5
  3. data/Gosu/Font.hpp +5 -3
  4. data/Gosu/Gosu.hpp +6 -0
  5. data/Gosu/Graphics.hpp +6 -13
  6. data/Gosu/GraphicsBase.hpp +14 -3
  7. data/Gosu/IO.hpp +259 -255
  8. data/Gosu/Image.hpp +12 -12
  9. data/Gosu/ImageData.hpp +3 -0
  10. data/Gosu/Input.hpp +14 -2
  11. data/Gosu/Math.hpp +3 -2
  12. data/Gosu/RotFlip.hpp +125 -116
  13. data/Gosu/Sockets.hpp +139 -129
  14. data/Gosu/Text.hpp +4 -4
  15. data/Gosu/WinUtility.hpp +1 -1
  16. data/Gosu/Window.hpp +9 -5
  17. data/GosuImpl/Graphics/BitmapUtils.cpp +8 -8
  18. data/GosuImpl/Graphics/DrawOp.hpp +13 -14
  19. data/GosuImpl/Graphics/Graphics.cpp +3 -2
  20. data/GosuImpl/Graphics/Image.cpp +8 -8
  21. data/GosuImpl/Graphics/LargeImageData.cpp +8 -8
  22. data/GosuImpl/Graphics/Text.cpp +15 -3
  23. data/GosuImpl/{TextTTFWin.cpp → Graphics/TextTTFWin.cpp} +0 -0
  24. data/GosuImpl/Graphics/TextWin.cpp +36 -25
  25. data/GosuImpl/Graphics/Texture.cpp +2 -0
  26. data/GosuImpl/Iconv.hpp +1 -3
  27. data/GosuImpl/RubyGosu.swg +19 -10
  28. data/GosuImpl/RubyGosuStub.mm +40 -8
  29. data/GosuImpl/RubyGosu_SWIG_GC_PATCH.patch +126 -0
  30. data/GosuImpl/RubyGosu_wrap.cxx +1601 -247
  31. data/GosuImpl/RubyGosu_wrap.h +1 -1
  32. data/GosuImpl/WindowWin.cpp +18 -6
  33. data/README.txt +5 -5
  34. data/Rakefile +27 -7
  35. data/linux/Makefile.in +1 -1
  36. data/mac/Gosu.xcodeproj/jlnr.pbxuser +939 -350
  37. data/mac/Gosu.xcodeproj/jlnr.perspectivev3 +66 -61
  38. data/mac/Gosu.xcodeproj/project.pbxproj +474 -92
  39. data/mac/RubyGosu Template-Info.plist b/data/mac/RubyGosu → App-Info.plist +0 -0
  40. data/reference/cpp/_audio_8hpp-source.html +171 -0
  41. data/reference/cpp/_audio_8hpp.html +96 -0
  42. data/reference/cpp/_auto_link_8hpp-source.html +84 -0
  43. data/reference/cpp/_auto_link_8hpp.html +83 -0
  44. data/reference/cpp/_bitmap_8hpp-source.html +130 -0
  45. data/reference/cpp/_bitmap_8hpp.html +107 -0
  46. data/reference/{ButtonsMac_8hpp-source.html → cpp/_buttons_mac_8hpp-source.html} +60 -14
  47. data/reference/cpp/_buttons_mac_8hpp.html +233 -0
  48. data/reference/cpp/_color_8hpp-source.html +215 -0
  49. data/reference/cpp/_color_8hpp.html +119 -0
  50. data/reference/cpp/_directories_8hpp-source.html +88 -0
  51. data/reference/cpp/_directories_8hpp.html +96 -0
  52. data/reference/cpp/_font_8hpp-source.html +111 -0
  53. data/reference/cpp/_font_8hpp.html +87 -0
  54. data/reference/{Fwd_8hpp-source.html → cpp/_fwd_8hpp-source.html} +59 -13
  55. data/reference/cpp/_fwd_8hpp.html +83 -0
  56. data/reference/cpp/_gosu_8hpp-source.html +96 -0
  57. data/reference/cpp/_gosu_8hpp.html +83 -0
  58. data/reference/cpp/_graphics_8hpp-source.html +134 -0
  59. data/reference/cpp/_graphics_8hpp.html +94 -0
  60. data/reference/cpp/_graphics_base_8hpp-source.html +115 -0
  61. data/reference/cpp/_graphics_base_8hpp.html +120 -0
  62. data/reference/cpp/_i_o_8hpp-source.html +301 -0
  63. data/reference/cpp/_i_o_8hpp.html +122 -0
  64. data/reference/cpp/_image_8hpp-source.html +172 -0
  65. data/reference/cpp/_image_8hpp.html +96 -0
  66. data/reference/cpp/_image_data_8hpp-source.html +108 -0
  67. data/reference/cpp/_image_data_8hpp.html +90 -0
  68. data/reference/cpp/_input_8hpp-source.html +182 -0
  69. data/reference/cpp/_input_8hpp.html +102 -0
  70. data/reference/cpp/_math_8hpp-source.html +147 -0
  71. data/reference/cpp/_math_8hpp.html +139 -0
  72. data/reference/{Platform_8hpp-source.html → cpp/_platform_8hpp-source.html} +61 -15
  73. data/reference/cpp/_platform_8hpp.html +136 -0
  74. data/reference/cpp/_rot_flip_8hpp-source.html +184 -0
  75. data/reference/cpp/_rot_flip_8hpp.html +123 -0
  76. data/reference/cpp/_sockets_8hpp-source.html +174 -0
  77. data/reference/cpp/_sockets_8hpp.html +117 -0
  78. data/reference/cpp/_text_8hpp-source.html +102 -0
  79. data/reference/cpp/_text_8hpp.html +99 -0
  80. data/reference/cpp/_text_input_8hpp-source.html +110 -0
  81. data/reference/cpp/_text_input_8hpp.html +87 -0
  82. data/reference/cpp/_timing_8hpp-source.html +82 -0
  83. data/reference/cpp/_timing_8hpp.html +90 -0
  84. data/reference/cpp/_utility_8hpp-source.html +89 -0
  85. data/reference/cpp/_utility_8hpp.html +96 -0
  86. data/reference/cpp/_win_utility_8hpp-source.html +125 -0
  87. data/reference/cpp/_win_utility_8hpp.html +116 -0
  88. data/reference/cpp/_window_8hpp-source.html +157 -0
  89. data/reference/cpp/_window_8hpp.html +87 -0
  90. data/reference/cpp/annotated.html +98 -0
  91. data/reference/cpp/class_gosu_1_1_audio-members.html +74 -0
  92. data/reference/cpp/class_gosu_1_1_audio.html +132 -0
  93. data/reference/cpp/class_gosu_1_1_bitmap-members.html +85 -0
  94. data/reference/cpp/class_gosu_1_1_bitmap.html +501 -0
  95. data/reference/cpp/class_gosu_1_1_buffer-members.html +84 -0
  96. data/reference/cpp/class_gosu_1_1_buffer.html +346 -0
  97. data/reference/{classGosu_1_1Buffer.png → cpp/class_gosu_1_1_buffer.png} +0 -0
  98. data/reference/cpp/class_gosu_1_1_button-members.html +76 -0
  99. data/reference/cpp/class_gosu_1_1_button.html +195 -0
  100. data/reference/cpp/class_gosu_1_1_color-members.html +96 -0
  101. data/reference/cpp/class_gosu_1_1_color.html +758 -0
  102. data/reference/cpp/class_gosu_1_1_comm_socket-members.html +90 -0
  103. data/reference/cpp/class_gosu_1_1_comm_socket.html +505 -0
  104. data/reference/cpp/class_gosu_1_1_file-members.html +81 -0
  105. data/reference/cpp/class_gosu_1_1_file.html +275 -0
  106. data/reference/{classGosu_1_1File.png → cpp/class_gosu_1_1_file.png} +0 -0
  107. data/reference/cpp/class_gosu_1_1_font-members.html +79 -0
  108. data/reference/{classGosu_1_1Font.html → cpp/class_gosu_1_1_font.html} +207 -66
  109. data/reference/cpp/class_gosu_1_1_graphics-members.html +90 -0
  110. data/reference/cpp/class_gosu_1_1_graphics.html +768 -0
  111. data/reference/cpp/class_gosu_1_1_image-members.html +85 -0
  112. data/reference/cpp/class_gosu_1_1_image.html +771 -0
  113. data/reference/cpp/class_gosu_1_1_image_data-members.html +77 -0
  114. data/reference/cpp/class_gosu_1_1_image_data.html +281 -0
  115. data/reference/cpp/class_gosu_1_1_input-members.html +85 -0
  116. data/reference/cpp/class_gosu_1_1_input.html +417 -0
  117. data/reference/cpp/class_gosu_1_1_listener_socket-members.html +78 -0
  118. data/reference/cpp/class_gosu_1_1_listener_socket.html +221 -0
  119. data/reference/cpp/class_gosu_1_1_message_socket-members.html +80 -0
  120. data/reference/{classGosu_1_1MessageSocket.html → cpp/class_gosu_1_1_message_socket.html} +115 -43
  121. data/reference/cpp/class_gosu_1_1_reader-members.html +80 -0
  122. data/reference/cpp/class_gosu_1_1_reader.html +322 -0
  123. data/reference/cpp/class_gosu_1_1_resource-members.html +79 -0
  124. data/reference/cpp/class_gosu_1_1_resource.html +305 -0
  125. data/reference/{classGosu_1_1Resource.png → cpp/class_gosu_1_1_resource.png} +0 -0
  126. data/reference/cpp/class_gosu_1_1_rot_flip-members.html +83 -0
  127. data/reference/cpp/class_gosu_1_1_rot_flip.html +347 -0
  128. data/reference/cpp/class_gosu_1_1_sample-members.html +77 -0
  129. data/reference/{classGosu_1_1Sample.html → cpp/class_gosu_1_1_sample.html} +99 -32
  130. data/reference/cpp/class_gosu_1_1_sample_instance-members.html +81 -0
  131. data/reference/cpp/class_gosu_1_1_sample_instance.html +317 -0
  132. data/reference/cpp/class_gosu_1_1_song-members.html +86 -0
  133. data/reference/{classGosu_1_1Song.html → cpp/class_gosu_1_1_song.html} +152 -68
  134. data/reference/cpp/class_gosu_1_1_text_input-members.html +78 -0
  135. data/reference/cpp/class_gosu_1_1_text_input.html +227 -0
  136. data/reference/cpp/class_gosu_1_1_window-members.html +90 -0
  137. data/reference/cpp/class_gosu_1_1_window.html +533 -0
  138. data/reference/cpp/class_gosu_1_1_writer-members.html +79 -0
  139. data/reference/cpp/class_gosu_1_1_writer.html +292 -0
  140. data/reference/cpp/classes.html +86 -0
  141. data/reference/cpp/closed.gif +0 -0
  142. data/reference/cpp/cpp.css +155 -0
  143. data/reference/{doxygen.png → cpp/doxygen.png} +0 -0
  144. data/reference/cpp/files.html +97 -0
  145. data/reference/cpp/functions.html +127 -0
  146. data/reference/cpp/functions_0x62.html +137 -0
  147. data/reference/cpp/functions_0x63.html +140 -0
  148. data/reference/cpp/functions_0x64.html +142 -0
  149. data/reference/cpp/functions_0x65.html +119 -0
  150. data/reference/cpp/functions_0x66.html +137 -0
  151. data/reference/cpp/functions_0x67.html +131 -0
  152. data/reference/cpp/functions_0x68.html +121 -0
  153. data/reference/cpp/functions_0x69.html +123 -0
  154. data/reference/cpp/functions_0x6b.html +115 -0
  155. data/reference/cpp/functions_0x6c.html +117 -0
  156. data/reference/cpp/functions_0x6d.html +125 -0
  157. data/reference/cpp/functions_0x6e.html +117 -0
  158. data/reference/cpp/functions_0x6f.html +126 -0
  159. data/reference/cpp/functions_0x70.html +136 -0
  160. data/reference/cpp/functions_0x72.html +154 -0
  161. data/reference/cpp/functions_0x73.html +179 -0
  162. data/reference/cpp/functions_0x74.html +127 -0
  163. data/reference/cpp/functions_0x75.html +121 -0
  164. data/reference/cpp/functions_0x76.html +117 -0
  165. data/reference/cpp/functions_0x77.html +129 -0
  166. data/reference/cpp/functions_0x78.html +115 -0
  167. data/reference/cpp/functions_0x79.html +115 -0
  168. data/reference/cpp/functions_0x7e.html +143 -0
  169. data/reference/cpp/functions_enum.html +87 -0
  170. data/reference/cpp/functions_eval.html +89 -0
  171. data/reference/cpp/functions_func.html +125 -0
  172. data/reference/cpp/functions_func_0x62.html +133 -0
  173. data/reference/cpp/functions_func_0x63.html +136 -0
  174. data/reference/cpp/functions_func_0x64.html +140 -0
  175. data/reference/cpp/functions_func_0x65.html +117 -0
  176. data/reference/cpp/functions_func_0x66.html +135 -0
  177. data/reference/cpp/functions_func_0x67.html +129 -0
  178. data/reference/cpp/functions_func_0x68.html +119 -0
  179. data/reference/cpp/functions_func_0x69.html +119 -0
  180. data/reference/cpp/functions_func_0x6b.html +113 -0
  181. data/reference/cpp/functions_func_0x6c.html +113 -0
  182. data/reference/cpp/functions_func_0x6d.html +123 -0
  183. data/reference/cpp/functions_func_0x6e.html +115 -0
  184. data/reference/cpp/functions_func_0x6f.html +113 -0
  185. data/reference/cpp/functions_func_0x70.html +134 -0
  186. data/reference/cpp/functions_func_0x72.html +150 -0
  187. data/reference/cpp/functions_func_0x73.html +173 -0
  188. data/reference/cpp/functions_func_0x74.html +119 -0
  189. data/reference/cpp/functions_func_0x75.html +119 -0
  190. data/reference/cpp/functions_func_0x76.html +115 -0
  191. data/reference/cpp/functions_func_0x77.html +127 -0
  192. data/reference/cpp/functions_func_0x7e.html +141 -0
  193. data/reference/cpp/functions_type.html +87 -0
  194. data/reference/cpp/functions_vars.html +112 -0
  195. data/reference/cpp/globals.html +84 -0
  196. data/reference/cpp/globals_defs.html +84 -0
  197. data/reference/cpp/hierarchy.html +100 -0
  198. data/reference/cpp/index.html +66 -0
  199. data/reference/cpp/open.gif +0 -0
  200. data/reference/cpp/struct_gosu_1_1_g_l_tex_info-members.html +77 -0
  201. data/reference/cpp/struct_gosu_1_1_g_l_tex_info.html +185 -0
  202. data/reference/cpp/struct_gosu_1_1_touch-members.html +75 -0
  203. data/reference/cpp/struct_gosu_1_1_touch.html +153 -0
  204. data/reference/{tab_b.gif → cpp/tab_b.gif} +0 -0
  205. data/reference/{tab_l.gif → cpp/tab_l.gif} +0 -0
  206. data/reference/{tab_r.gif → cpp/tab_r.gif} +0 -0
  207. data/reference/{tabs.css → cpp/tabs.css} +5 -2
  208. data/windows/Gosu.sln +5 -0
  209. data/windows/Gosu.vcproj +3 -3
  210. data/windows/RubyGosu.vcproj +103 -1
  211. metadata +178 -176
  212. data/reference/Async_8hpp-source.html +0 -70
  213. data/reference/Audio_8hpp-source.html +0 -125
  214. data/reference/Audio_8hpp.html +0 -50
  215. data/reference/AutoLink_8hpp-source.html +0 -38
  216. data/reference/AutoLink_8hpp.html +0 -34
  217. data/reference/Bitmap_8hpp-source.html +0 -84
  218. data/reference/Bitmap_8hpp.html +0 -58
  219. data/reference/ButtonsWin_8hpp-source.html +0 -159
  220. data/reference/ButtonsX_8hpp-source.html +0 -160
  221. data/reference/Color_8hpp-source.html +0 -169
  222. data/reference/Color_8hpp.html +0 -85
  223. data/reference/Directories_8hpp-source.html +0 -42
  224. data/reference/Directories_8hpp.html +0 -46
  225. data/reference/Font_8hpp-source.html +0 -65
  226. data/reference/Font_8hpp.html +0 -41
  227. data/reference/Fwd_8hpp.html +0 -37
  228. data/reference/Gosu_8hpp-source.html +0 -49
  229. data/reference/Gosu_8hpp.html +0 -34
  230. data/reference/GraphicsBase_8hpp-source.html +0 -59
  231. data/reference/GraphicsBase_8hpp.html +0 -59
  232. data/reference/Graphics_8hpp-source.html +0 -99
  233. data/reference/Graphics_8hpp.html +0 -60
  234. data/reference/IO_8hpp-source.html +0 -255
  235. data/reference/IO_8hpp.html +0 -74
  236. data/reference/ImageData_8hpp-source.html +0 -62
  237. data/reference/ImageData_8hpp.html +0 -43
  238. data/reference/Image_8hpp-source.html +0 -126
  239. data/reference/Image_8hpp.html +0 -48
  240. data/reference/Input_8hpp-source.html +0 -131
  241. data/reference/Input_8hpp.html +0 -56
  242. data/reference/Math_8hpp-source.html +0 -101
  243. data/reference/Math_8hpp.html +0 -78
  244. data/reference/Platform_8hpp.html +0 -73
  245. data/reference/RotFlip_8hpp-source.html +0 -138
  246. data/reference/RotFlip_8hpp.html +0 -77
  247. data/reference/Sockets_8hpp-source.html +0 -130
  248. data/reference/Sockets_8hpp.html +0 -66
  249. data/reference/TextInput_8hpp-source.html +0 -64
  250. data/reference/TextInput_8hpp.html +0 -41
  251. data/reference/Text_8hpp-source.html +0 -56
  252. data/reference/Text_8hpp.html +0 -48
  253. data/reference/Timing_8hpp-source.html +0 -36
  254. data/reference/Timing_8hpp.html +0 -42
  255. data/reference/Utility_8hpp-source.html +0 -43
  256. data/reference/Utility_8hpp.html +0 -46
  257. data/reference/WinUtility_8hpp-source.html +0 -79
  258. data/reference/WinUtility_8hpp.html +0 -64
  259. data/reference/Window_8hpp-source.html +0 -110
  260. data/reference/Window_8hpp.html +0 -41
  261. data/reference/annotated.html +0 -51
  262. data/reference/classGosu_1_1Audio-members.html +0 -34
  263. data/reference/classGosu_1_1Audio.html +0 -46
  264. data/reference/classGosu_1_1Bitmap-members.html +0 -45
  265. data/reference/classGosu_1_1Bitmap.html +0 -266
  266. data/reference/classGosu_1_1Buffer-members.html +0 -44
  267. data/reference/classGosu_1_1Buffer.html +0 -78
  268. data/reference/classGosu_1_1Button-members.html +0 -36
  269. data/reference/classGosu_1_1Button.html +0 -143
  270. data/reference/classGosu_1_1Color-members.html +0 -56
  271. data/reference/classGosu_1_1Color.html +0 -387
  272. data/reference/classGosu_1_1File-members.html +0 -41
  273. data/reference/classGosu_1_1File.html +0 -69
  274. data/reference/classGosu_1_1Font-members.html +0 -39
  275. data/reference/classGosu_1_1Graphics-members.html +0 -50
  276. data/reference/classGosu_1_1Graphics.html +0 -234
  277. data/reference/classGosu_1_1Image-members.html +0 -45
  278. data/reference/classGosu_1_1Image.html +0 -518
  279. data/reference/classGosu_1_1ImageData-members.html +0 -37
  280. data/reference/classGosu_1_1ImageData.html +0 -60
  281. data/reference/classGosu_1_1Input-members.html +0 -45
  282. data/reference/classGosu_1_1Input.html +0 -256
  283. data/reference/classGosu_1_1MessageSocket-members.html +0 -40
  284. data/reference/classGosu_1_1Resource-members.html +0 -39
  285. data/reference/classGosu_1_1Resource.html +0 -116
  286. data/reference/classGosu_1_1Sample-members.html +0 -37
  287. data/reference/classGosu_1_1SampleInstance-members.html +0 -41
  288. data/reference/classGosu_1_1SampleInstance.html +0 -178
  289. data/reference/classGosu_1_1Song-members.html +0 -46
  290. data/reference/classGosu_1_1TextInput-members.html +0 -38
  291. data/reference/classGosu_1_1TextInput.html +0 -121
  292. data/reference/classGosu_1_1Window-members.html +0 -50
  293. data/reference/classGosu_1_1Window.html +0 -289
  294. data/reference/doxyfile +0 -233
  295. data/reference/doxygen.css +0 -433
  296. data/reference/files.html +0 -54
  297. data/reference/functions.html +0 -249
  298. data/reference/functions_enum.html +0 -45
  299. data/reference/functions_func.html +0 -240
  300. data/reference/functions_vars.html +0 -47
  301. data/reference/hierarchy.html +0 -53
  302. data/reference/index.html +0 -26
  303. data/reference/namespaceGosu.html +0 -3363
  304. data/reference/namespaceGosu_1_1Colors.html +0 -70
  305. data/reference/namespaceGosu_1_1Win.html +0 -275
  306. data/reference/namespacemembers.html +0 -229
  307. data/reference/namespacemembers_enum.html +0 -52
  308. data/reference/namespacemembers_eval.html +0 -54
  309. data/reference/namespacemembers_func.html +0 -196
  310. data/reference/namespacemembers_type.html +0 -46
  311. data/reference/namespacemembers_vars.html +0 -48
  312. data/reference/namespaces.html +0 -35
@@ -1,54 +0,0 @@
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: File Index</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><a href="annotated.html"><span>Classes</span></a></li>
14
- <li class="current"><a href="files.html"><span>Files</span></a></li>
15
- </ul>
16
- </div>
17
- </div>
18
- <div class="contents">
19
- <h1>File List</h1>Here is a list of all documented files with brief descriptions:<table>
20
- <tr><td class="indexkey"><b>Async.hpp</b> <a href="Async_8hpp-source.html">[code]</a></td><td class="indexvalue"></td></tr>
21
- <tr><td class="indexkey"><a class="el" href="Audio_8hpp.html">Audio.hpp</a> <a href="Audio_8hpp-source.html">[code]</a></td><td class="indexvalue">Contains all the classes of Gosu's audio system </td></tr>
22
- <tr><td class="indexkey"><a class="el" href="AutoLink_8hpp.html">AutoLink.hpp</a> <a href="AutoLink_8hpp-source.html">[code]</a></td><td class="indexvalue">Contains pragmas that make MSVC link against all the necessary libraries automatically </td></tr>
23
- <tr><td class="indexkey"><a class="el" href="Bitmap_8hpp.html">Bitmap.hpp</a> <a href="Bitmap_8hpp-source.html">[code]</a></td><td class="indexvalue">Interface of the Bitmap class </td></tr>
24
- <tr><td class="indexkey"><b>ButtonsMac.hpp</b> <a href="ButtonsMac_8hpp-source.html">[code]</a></td><td class="indexvalue"></td></tr>
25
- <tr><td class="indexkey"><b>ButtonsWin.hpp</b> <a href="ButtonsWin_8hpp-source.html">[code]</a></td><td class="indexvalue"></td></tr>
26
- <tr><td class="indexkey"><b>ButtonsX.hpp</b> <a href="ButtonsX_8hpp-source.html">[code]</a></td><td class="indexvalue"></td></tr>
27
- <tr><td class="indexkey"><a class="el" href="Color_8hpp.html">Color.hpp</a> <a href="Color_8hpp-source.html">[code]</a></td><td class="indexvalue">Interface of the Color class </td></tr>
28
- <tr><td class="indexkey"><a class="el" href="Directories_8hpp.html">Directories.hpp</a> <a href="Directories_8hpp-source.html">[code]</a></td><td class="indexvalue">Access to a small set of system paths </td></tr>
29
- <tr><td class="indexkey"><a class="el" href="Font_8hpp.html">Font.hpp</a> <a href="Font_8hpp-source.html">[code]</a></td><td class="indexvalue">Interface of the Font class </td></tr>
30
- <tr><td class="indexkey"><a class="el" href="Fwd_8hpp.html">Fwd.hpp</a> <a href="Fwd_8hpp-source.html">[code]</a></td><td class="indexvalue">Contains declarations of all of Gosu's available classes </td></tr>
31
- <tr><td class="indexkey"><a class="el" href="Gosu_8hpp.html">Gosu.hpp</a> <a href="Gosu_8hpp-source.html">[code]</a></td><td class="indexvalue">Umbrella header for lazy people with fast compilers, or pre-compiled headers </td></tr>
32
- <tr><td class="indexkey"><a class="el" href="Graphics_8hpp.html">Graphics.hpp</a> <a href="Graphics_8hpp-source.html">[code]</a></td><td class="indexvalue">Interface of the Graphics class </td></tr>
33
- <tr><td class="indexkey"><a class="el" href="GraphicsBase_8hpp.html">GraphicsBase.hpp</a> <a href="GraphicsBase_8hpp-source.html">[code]</a></td><td class="indexvalue">Contains general typedefs and enums related to graphics </td></tr>
34
- <tr><td class="indexkey"><a class="el" href="Image_8hpp.html">Image.hpp</a> <a href="Image_8hpp-source.html">[code]</a></td><td class="indexvalue">Interface of the Image class and helper functions </td></tr>
35
- <tr><td class="indexkey"><a class="el" href="ImageData_8hpp.html">ImageData.hpp</a> <a href="ImageData_8hpp-source.html">[code]</a></td><td class="indexvalue">Interface of the ImageData class </td></tr>
36
- <tr><td class="indexkey"><a class="el" href="Input_8hpp.html">Input.hpp</a> <a href="Input_8hpp-source.html">[code]</a></td><td class="indexvalue">Interface of the Input class </td></tr>
37
- <tr><td class="indexkey"><a class="el" href="IO_8hpp.html">IO.hpp</a> <a href="IO_8hpp-source.html">[code]</a></td><td class="indexvalue">Contains everything related to input and output </td></tr>
38
- <tr><td class="indexkey"><a class="el" href="Math_8hpp.html">Math.hpp</a> <a href="Math_8hpp-source.html">[code]</a></td><td class="indexvalue">Contains simple math functionality </td></tr>
39
- <tr><td class="indexkey"><a class="el" href="Platform_8hpp.html">Platform.hpp</a> <a href="Platform_8hpp-source.html">[code]</a></td><td class="indexvalue">Macros and utility functions to facilitate programming on all of Gosu's supported platforms </td></tr>
40
- <tr><td class="indexkey"><a class="el" href="RotFlip_8hpp.html">RotFlip.hpp</a> <a href="RotFlip_8hpp-source.html">[code]</a></td><td class="indexvalue">Interface of the undocumented RotFlip class </td></tr>
41
- <tr><td class="indexkey"><a class="el" href="Sockets_8hpp.html">Sockets.hpp</a> <a href="Sockets_8hpp-source.html">[code]</a></td><td class="indexvalue">Interface of the three socket classes, MessageSocket, CommSocket and ListenerSocket </td></tr>
42
- <tr><td class="indexkey"><a class="el" href="Text_8hpp.html">Text.hpp</a> <a href="Text_8hpp-source.html">[code]</a></td><td class="indexvalue">Functions to output text on bitmaps </td></tr>
43
- <tr><td class="indexkey"><a class="el" href="TextInput_8hpp.html">TextInput.hpp</a> <a href="TextInput_8hpp-source.html">[code]</a></td><td class="indexvalue">Interface of the TextInput class </td></tr>
44
- <tr><td class="indexkey"><a class="el" href="Timing_8hpp.html">Timing.hpp</a> <a href="Timing_8hpp-source.html">[code]</a></td><td class="indexvalue">Functions for timing </td></tr>
45
- <tr><td class="indexkey"><a class="el" href="Utility_8hpp.html">Utility.hpp</a> <a href="Utility_8hpp-source.html">[code]</a></td><td class="indexvalue">General purpose utility functions </td></tr>
46
- <tr><td class="indexkey"><a class="el" href="Window_8hpp.html">Window.hpp</a> <a href="Window_8hpp-source.html">[code]</a></td><td class="indexvalue">Interface of the Window class </td></tr>
47
- <tr><td class="indexkey"><a class="el" href="WinUtility_8hpp.html">WinUtility.hpp</a> <a href="WinUtility_8hpp-source.html">[code]</a></td><td class="indexvalue">Contains some functions which are used to implement <a class="el" href="namespaceGosu.html" title="The library&#39;s main namespace.">Gosu</a> on Windows and might be useful for advanced users who try to integrate <a class="el" href="namespaceGosu.html" title="The library&#39;s main namespace.">Gosu</a> in a Win32 application </td></tr>
48
- </table>
49
- </div>
50
- <hr size="1"><address style="text-align: right;"><small>Generated on Fri Apr 17 23:35:43 2009 for Gosu by&nbsp;
51
- <a href="http://www.doxygen.org/index.html">
52
- <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.5 </small></address>
53
- </body>
54
- </html>
@@ -1,249 +0,0 @@
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: Class Members</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 class="current"><a href="functions.html"><span>Class&nbsp;Members</span></a></li>
22
- </ul>
23
- </div>
24
- <div class="tabs">
25
- <ul>
26
- <li class="current"><a href="functions.html"><span>All</span></a></li>
27
- <li><a href="functions_func.html"><span>Functions</span></a></li>
28
- <li><a href="functions_vars.html"><span>Variables</span></a></li>
29
- <li><a href="functions_enum.html"><span>Enumerations</span></a></li>
30
- </ul>
31
- </div>
32
- <div class="tabs">
33
- <ul>
34
- <li><a href="#index_a"><span>a</span></a></li>
35
- <li><a href="#index_b"><span>b</span></a></li>
36
- <li><a href="#index_c"><span>c</span></a></li>
37
- <li><a href="#index_d"><span>d</span></a></li>
38
- <li><a href="#index_e"><span>e</span></a></li>
39
- <li><a href="#index_f"><span>f</span></a></li>
40
- <li><a href="#index_g"><span>g</span></a></li>
41
- <li><a href="#index_h"><span>h</span></a></li>
42
- <li><a href="#index_i"><span>i</span></a></li>
43
- <li><a href="#index_m"><span>m</span></a></li>
44
- <li><a href="#index_n"><span>n</span></a></li>
45
- <li><a href="#index_o"><span>o</span></a></li>
46
- <li><a href="#index_p"><span>p</span></a></li>
47
- <li><a href="#index_s"><span>s</span></a></li>
48
- <li><a href="#index_t"><span>t</span></a></li>
49
- <li><a href="#index_u"><span>u</span></a></li>
50
- <li><a href="#index_v"><span>v</span></a></li>
51
- <li><a href="#index_w"><span>w</span></a></li>
52
- </ul>
53
- </div>
54
-
55
- <p>
56
- </div>
57
- <div class="contents">
58
- Here is a list of all documented class members with links to the class documentation for each member:
59
- <p>
60
- <h3><a class="anchor" name="index_a">- a -</a></h3><ul>
61
- <li>abgr()
62
- : <a class="el" href="classGosu_1_1Color.html#3ddd0323d5f1bf0d6dcf47ca6e80ca36">Gosu::Color</a>
63
- <li>address()
64
- : <a class="el" href="classGosu_1_1MessageSocket.html#eadfbf7bbdcc2544a5aaa0d16efa2851">Gosu::MessageSocket</a>
65
- <li>argb()
66
- : <a class="el" href="classGosu_1_1Color.html#b079fa3b6b7ebef6a2cf432b0b38984a">Gosu::Color</a>
67
- </ul>
68
- <h3><a class="anchor" name="index_b">- b -</a></h3><ul>
69
- <li>backWriter()
70
- : <a class="el" href="classGosu_1_1Resource.html#8383c59af78d8b90b4f28cd10c6a368f">Gosu::Resource</a>
71
- <li>begin()
72
- : <a class="el" href="classGosu_1_1Graphics.html#5cf453663573a90f6709146cefe4b9cd">Gosu::Graphics</a>
73
- <li>beginGL()
74
- : <a class="el" href="classGosu_1_1Graphics.html#207f436a09bd02e11ddc474565912135">Gosu::Graphics</a>
75
- <li>bgr()
76
- : <a class="el" href="classGosu_1_1Color.html#629f55a6f636bc8d677bcca01eedf1c5">Gosu::Color</a>
77
- <li>Button()
78
- : <a class="el" href="classGosu_1_1Button.html#b0d53d357fa263d676d803c6c6baf843">Gosu::Button</a>
79
- <li>buttonDown()
80
- : <a class="el" href="classGosu_1_1Window.html#d4e680daba62ac7fbc8002b2be50a2c5">Gosu::Window</a>
81
- <li>buttonUp()
82
- : <a class="el" href="classGosu_1_1Window.html#41ab0a9bfee1c88d96618308bde584fc">Gosu::Window</a>
83
- </ul>
84
- <h3><a class="anchor" name="index_c">- c -</a></h3><ul>
85
- <li>caretPos()
86
- : <a class="el" href="classGosu_1_1TextInput.html#8ad34a47b306222df9a28a57c1fa8622">Gosu::TextInput</a>
87
- <li>changePan()
88
- : <a class="el" href="classGosu_1_1SampleInstance.html#def37ef2af53716fb0b10e06263468d0">Gosu::SampleInstance</a>
89
- <li>changeSpeed()
90
- : <a class="el" href="classGosu_1_1SampleInstance.html#3de21bed437c846734cf06243a5db112">Gosu::SampleInstance</a>
91
- <li>changeVolume()
92
- : <a class="el" href="classGosu_1_1SampleInstance.html#bb54d7569ac18cdad24da5d538cca1b5">Gosu::SampleInstance</a>
93
- , <a class="el" href="classGosu_1_1Song.html#e460032103a9ddb7e0dd50f53fb9d36e">Gosu::Song</a>
94
- <li>charToId()
95
- : <a class="el" href="classGosu_1_1Input.html#1cb42fd48c134fac5c2c8496b1e9f05a">Gosu::Input</a>
96
- <li>close()
97
- : <a class="el" href="classGosu_1_1Window.html#ccbd57bf5ea05899e4270e2b20b300a6">Gosu::Window</a>
98
- <li>Color()
99
- : <a class="el" href="classGosu_1_1Color.html#d3875fcbe68fb1fe608ab15f38129c6e">Gosu::Color</a>
100
- <li>createImage()
101
- : <a class="el" href="classGosu_1_1Graphics.html#6b10629453eec979500179e4ceb11434">Gosu::Graphics</a>
102
- <li>currentSong()
103
- : <a class="el" href="classGosu_1_1Song.html#3f6c94bd9ea9522430d6e0d1e1e64250">Gosu::Song</a>
104
- </ul>
105
- <h3><a class="anchor" name="index_d">- d -</a></h3><ul>
106
- <li>data()
107
- : <a class="el" href="classGosu_1_1Bitmap.html#f20320b33058d6a54aa31fc4c99a65fe">Gosu::Bitmap</a>
108
- <li>down()
109
- : <a class="el" href="classGosu_1_1Input.html#b4645c1bf26bceea7f8cfc43680667f1">Gosu::Input</a>
110
- <li>draw()
111
- : <a class="el" href="classGosu_1_1Image.html#7e6de0cae934109ba6c96434767f9540">Gosu::Image</a>
112
- , <a class="el" href="classGosu_1_1Window.html#b3c5da8e60f81c0528a5d8d9495daac8">Gosu::Window</a>
113
- , <a class="el" href="classGosu_1_1Font.html#5a67d1a1745e1d2eb1b7ec7d12f40e35">Gosu::Font</a>
114
- <li>drawMod()
115
- : <a class="el" href="classGosu_1_1Image.html#6ee7e13d1def74cbf5e974fdc3b045a1">Gosu::Image</a>
116
- <li>drawRel()
117
- : <a class="el" href="classGosu_1_1Font.html#60b4c8d6c515ca09d6124a9dc5f3c2f2">Gosu::Font</a>
118
- <li>drawRot()
119
- : <a class="el" href="classGosu_1_1Image.html#9333d4cb15b761020a82a41357ccb674">Gosu::Image</a>
120
- </ul>
121
- <h3><a class="anchor" name="index_e">- e -</a></h3><ul>
122
- <li>end()
123
- : <a class="el" href="classGosu_1_1Graphics.html#ddeab66c3a18c0a12df43067de841b71">Gosu::Graphics</a>
124
- <li>endGL()
125
- : <a class="el" href="classGosu_1_1Graphics.html#3e37d9b17e55fa5f6d3ad6116759364f">Gosu::Graphics</a>
126
- </ul>
127
- <h3><a class="anchor" name="index_f">- f -</a></h3><ul>
128
- <li>Font()
129
- : <a class="el" href="classGosu_1_1Font.html#d0ddfe95679f6caaae82dceba9ce3b70">Gosu::Font</a>
130
- <li>fromHSV()
131
- : <a class="el" href="classGosu_1_1Color.html#f14484c5cff18b011f32e434fe13dfff">Gosu::Color</a>
132
- <li>frontReader()
133
- : <a class="el" href="classGosu_1_1Resource.html#1487016df4be48aa67e4596d5436dab6">Gosu::Resource</a>
134
- </ul>
135
- <h3><a class="anchor" name="index_g">- g -</a></h3><ul>
136
- <li>getData()
137
- : <a class="el" href="classGosu_1_1Image.html#cbd542bae8e42ccc72442326e578c2c2">Gosu::Image</a>
138
- <li>getId()
139
- : <a class="el" href="classGosu_1_1Button.html#b4427dd79ad56325fc5d0509b7ddaed2">Gosu::Button</a>
140
- <li>getPixel()
141
- : <a class="el" href="classGosu_1_1Bitmap.html#93ea4a3ce9a09520dee52ba4deae4d18">Gosu::Bitmap</a>
142
- </ul>
143
- <h3><a class="anchor" name="index_h">- h -</a></h3><ul>
144
- <li>height()
145
- : <a class="el" href="classGosu_1_1Font.html#9357299749e270dbd01e7fb9f841ae54">Gosu::Font</a>
146
- <li>hue()
147
- : <a class="el" href="classGosu_1_1Color.html#e7dea29641a5e7c1a903f17c8f91ca41">Gosu::Color</a>
148
- </ul>
149
- <h3><a class="anchor" name="index_i">- i -</a></h3><ul>
150
- <li>idToChar()
151
- : <a class="el" href="classGosu_1_1Input.html#fc9e732c19055c9f80afb147eac8414b">Gosu::Input</a>
152
- <li>Image()
153
- : <a class="el" href="classGosu_1_1Image.html#b7d4a07a578bc751f446bd60954ed0cd">Gosu::Image</a>
154
- <li>insert()
155
- : <a class="el" href="classGosu_1_1Bitmap.html#ebe6c55dbdf4fe1162bc1276562f8b78">Gosu::Bitmap</a>
156
- </ul>
157
- <h3><a class="anchor" name="index_m">- m -</a></h3><ul>
158
- <li>maxMessageSize()
159
- : <a class="el" href="classGosu_1_1MessageSocket.html#017cc2347921520ba834ef0ae1c31c11">Gosu::MessageSocket</a>
160
- <li>MessageSocket()
161
- : <a class="el" href="classGosu_1_1MessageSocket.html#7894acdea2e7dc85c671ca0f6732ccaf">Gosu::MessageSocket</a>
162
- <li>mouseX()
163
- : <a class="el" href="classGosu_1_1Input.html#6849d640adfe2d576431ab2551c105c1">Gosu::Input</a>
164
- <li>mouseY()
165
- : <a class="el" href="classGosu_1_1Input.html#5bedd5d599dfe530043b3b0f6e3bf2a4">Gosu::Input</a>
166
- </ul>
167
- <h3><a class="anchor" name="index_n">- n -</a></h3><ul>
168
- <li>needsRedraw()
169
- : <a class="el" href="classGosu_1_1Window.html#94fe0b34e44e22a5076edd26f8e76853">Gosu::Window</a>
170
- </ul>
171
- <h3><a class="anchor" name="index_o">- o -</a></h3><ul>
172
- <li>onButtonDown
173
- : <a class="el" href="classGosu_1_1Input.html#b8ea5dbbd08d812cb8d5efa399750e77">Gosu::Input</a>
174
- <li>onReceive
175
- : <a class="el" href="classGosu_1_1MessageSocket.html#946bf3cb838b105842ca86938c3a86ae">Gosu::MessageSocket</a>
176
- </ul>
177
- <h3><a class="anchor" name="index_p">- p -</a></h3><ul>
178
- <li>pause()
179
- : <a class="el" href="classGosu_1_1Song.html#9ae053fbee6f240d2793fab3fa4ef596">Gosu::Song</a>
180
- <li>paused()
181
- : <a class="el" href="classGosu_1_1Song.html#a0d611bf37c19086797c9e46e001e092">Gosu::Song</a>
182
- <li>play()
183
- : <a class="el" href="classGosu_1_1Song.html#6b9cb7b452a737455e8cf4e7d90acff9">Gosu::Song</a>
184
- , <a class="el" href="classGosu_1_1Sample.html#190b3cc66e2115c7ed0390c47769c1b8">Gosu::Sample</a>
185
- <li>playing()
186
- : <a class="el" href="classGosu_1_1Song.html#c83d4b509149c2b1fb48ad697fb1adf3">Gosu::Song</a>
187
- <li>playPan()
188
- : <a class="el" href="classGosu_1_1Sample.html#13032b78fa19f7324035c6fbee6e5069">Gosu::Sample</a>
189
- <li>port()
190
- : <a class="el" href="classGosu_1_1MessageSocket.html#38999d7a0fee723adcb21bf3a036be91">Gosu::MessageSocket</a>
191
- </ul>
192
- <h3><a class="anchor" name="index_s">- s -</a></h3><ul>
193
- <li>Sample()
194
- : <a class="el" href="classGosu_1_1Sample.html#11aa4cd7de748370c9352970660619bf">Gosu::Sample</a>
195
- <li>SampleInstance()
196
- : <a class="el" href="classGosu_1_1SampleInstance.html#1dcf6b649592940d21d3d2487e510c7e">Gosu::SampleInstance</a>
197
- <li>saturation()
198
- : <a class="el" href="classGosu_1_1Color.html#50f84f148ae5676376f7ffab757ebe96">Gosu::Color</a>
199
- <li>selectionStart()
200
- : <a class="el" href="classGosu_1_1TextInput.html#6ddbf85f2115575e2d05e144923630de">Gosu::TextInput</a>
201
- <li>send()
202
- : <a class="el" href="classGosu_1_1MessageSocket.html#994ac62dc770243d65f88db89c1dc8e6">Gosu::MessageSocket</a>
203
- <li>setHue()
204
- : <a class="el" href="classGosu_1_1Color.html#ea1515be19da555c8beed681bd97e714">Gosu::Color</a>
205
- <li>setMousePosition()
206
- : <a class="el" href="classGosu_1_1Input.html#df5d807bd1cbac95bd4bd86dc5588dea">Gosu::Input</a>
207
- <li>setPixel()
208
- : <a class="el" href="classGosu_1_1Bitmap.html#7a247689a33ceb7c296035f439d9e549">Gosu::Bitmap</a>
209
- <li>setSaturation()
210
- : <a class="el" href="classGosu_1_1Color.html#e5401d0533adc33bd2ce0d7d6bf360e6">Gosu::Color</a>
211
- <li>setText()
212
- : <a class="el" href="classGosu_1_1TextInput.html#442bfe73c574c19fe7432fde7b937f5d">Gosu::TextInput</a>
213
- <li>setValue()
214
- : <a class="el" href="classGosu_1_1Color.html#7c84051414c6044f5928920dca1ca2c5">Gosu::Color</a>
215
- <li>show()
216
- : <a class="el" href="classGosu_1_1Window.html#d4b7c1e5e817d8aaca09f5d19a3a9d93">Gosu::Window</a>
217
- <li>Song()
218
- : <a class="el" href="classGosu_1_1Song.html#ef65dfe9e74d33480375481d47eee408">Gosu::Song</a>
219
- <li>stop()
220
- : <a class="el" href="classGosu_1_1Song.html#469a3cf49be8ebec2c9855dec46f5f71">Gosu::Song</a>
221
- </ul>
222
- <h3><a class="anchor" name="index_t">- t -</a></h3><ul>
223
- <li>textWidth()
224
- : <a class="el" href="classGosu_1_1Font.html#ee66d136e3b5b801d146cc1134a0635a">Gosu::Font</a>
225
- <li>Type
226
- : <a class="el" href="classGosu_1_1Song.html#ec4c76bfe19e210da34bcaa286af605f">Gosu::Song</a>
227
- </ul>
228
- <h3><a class="anchor" name="index_u">- u -</a></h3><ul>
229
- <li>update()
230
- : <a class="el" href="classGosu_1_1Input.html#904cd360ad96838a61b408d5aa6729aa">Gosu::Input</a>
231
- , <a class="el" href="classGosu_1_1Window.html#4c74a15418c916dabec98c2da3ca45ba">Gosu::Window</a>
232
- , <a class="el" href="classGosu_1_1MessageSocket.html#3e642630d8b17d9336e3eb7112fa14dd">Gosu::MessageSocket</a>
233
- </ul>
234
- <h3><a class="anchor" name="index_v">- v -</a></h3><ul>
235
- <li>value()
236
- : <a class="el" href="classGosu_1_1Color.html#fa5e1b57786f25f93f8ef84acebfd82f">Gosu::Color</a>
237
- <li>volume()
238
- : <a class="el" href="classGosu_1_1Song.html#ab8e8a273b5ea235ad9f48dee684c683">Gosu::Song</a>
239
- </ul>
240
- <h3><a class="anchor" name="index_w">- w -</a></h3><ul>
241
- <li>Window()
242
- : <a class="el" href="classGosu_1_1Window.html#369461754934c92b9bd0811dbdad8ffa">Gosu::Window</a>
243
- </ul>
244
- </div>
245
- <hr size="1"><address style="text-align: right;"><small>Generated on Fri Apr 17 23:35:43 2009 for Gosu by&nbsp;
246
- <a href="http://www.doxygen.org/index.html">
247
- <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.5 </small></address>
248
- </body>
249
- </html>
@@ -1,45 +0,0 @@
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: Class Members - Enumerations</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 class="current"><a href="functions.html"><span>Class&nbsp;Members</span></a></li>
22
- </ul>
23
- </div>
24
- <div class="tabs">
25
- <ul>
26
- <li><a href="functions.html"><span>All</span></a></li>
27
- <li><a href="functions_func.html"><span>Functions</span></a></li>
28
- <li><a href="functions_vars.html"><span>Variables</span></a></li>
29
- <li class="current"><a href="functions_enum.html"><span>Enumerations</span></a></li>
30
- </ul>
31
- </div>
32
- </div>
33
- <div class="contents">
34
- &nbsp;
35
- <p>
36
- <ul>
37
- <li>Type
38
- : <a class="el" href="classGosu_1_1Song.html#ec4c76bfe19e210da34bcaa286af605f">Gosu::Song</a>
39
- </ul>
40
- </div>
41
- <hr size="1"><address style="text-align: right;"><small>Generated on Fri Apr 17 23:35:43 2009 for Gosu by&nbsp;
42
- <a href="http://www.doxygen.org/index.html">
43
- <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.5 </small></address>
44
- </body>
45
- </html>
@@ -1,240 +0,0 @@
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: Class Members - Functions</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 class="current"><a href="functions.html"><span>Class&nbsp;Members</span></a></li>
22
- </ul>
23
- </div>
24
- <div class="tabs">
25
- <ul>
26
- <li><a href="functions.html"><span>All</span></a></li>
27
- <li class="current"><a href="functions_func.html"><span>Functions</span></a></li>
28
- <li><a href="functions_vars.html"><span>Variables</span></a></li>
29
- <li><a href="functions_enum.html"><span>Enumerations</span></a></li>
30
- </ul>
31
- </div>
32
- <div class="tabs">
33
- <ul>
34
- <li><a href="#index_a"><span>a</span></a></li>
35
- <li><a href="#index_b"><span>b</span></a></li>
36
- <li><a href="#index_c"><span>c</span></a></li>
37
- <li><a href="#index_d"><span>d</span></a></li>
38
- <li><a href="#index_e"><span>e</span></a></li>
39
- <li><a href="#index_f"><span>f</span></a></li>
40
- <li><a href="#index_g"><span>g</span></a></li>
41
- <li><a href="#index_h"><span>h</span></a></li>
42
- <li><a href="#index_i"><span>i</span></a></li>
43
- <li><a href="#index_m"><span>m</span></a></li>
44
- <li><a href="#index_n"><span>n</span></a></li>
45
- <li><a href="#index_p"><span>p</span></a></li>
46
- <li><a href="#index_s"><span>s</span></a></li>
47
- <li><a href="#index_t"><span>t</span></a></li>
48
- <li><a href="#index_u"><span>u</span></a></li>
49
- <li><a href="#index_v"><span>v</span></a></li>
50
- <li><a href="#index_w"><span>w</span></a></li>
51
- </ul>
52
- </div>
53
-
54
- <p>
55
- </div>
56
- <div class="contents">
57
- &nbsp;
58
- <p>
59
- <h3><a class="anchor" name="index_a">- a -</a></h3><ul>
60
- <li>abgr()
61
- : <a class="el" href="classGosu_1_1Color.html#3ddd0323d5f1bf0d6dcf47ca6e80ca36">Gosu::Color</a>
62
- <li>address()
63
- : <a class="el" href="classGosu_1_1MessageSocket.html#eadfbf7bbdcc2544a5aaa0d16efa2851">Gosu::MessageSocket</a>
64
- <li>argb()
65
- : <a class="el" href="classGosu_1_1Color.html#b079fa3b6b7ebef6a2cf432b0b38984a">Gosu::Color</a>
66
- </ul>
67
- <h3><a class="anchor" name="index_b">- b -</a></h3><ul>
68
- <li>backWriter()
69
- : <a class="el" href="classGosu_1_1Resource.html#8383c59af78d8b90b4f28cd10c6a368f">Gosu::Resource</a>
70
- <li>begin()
71
- : <a class="el" href="classGosu_1_1Graphics.html#5cf453663573a90f6709146cefe4b9cd">Gosu::Graphics</a>
72
- <li>beginGL()
73
- : <a class="el" href="classGosu_1_1Graphics.html#207f436a09bd02e11ddc474565912135">Gosu::Graphics</a>
74
- <li>bgr()
75
- : <a class="el" href="classGosu_1_1Color.html#629f55a6f636bc8d677bcca01eedf1c5">Gosu::Color</a>
76
- <li>Button()
77
- : <a class="el" href="classGosu_1_1Button.html#b0d53d357fa263d676d803c6c6baf843">Gosu::Button</a>
78
- <li>buttonDown()
79
- : <a class="el" href="classGosu_1_1Window.html#d4e680daba62ac7fbc8002b2be50a2c5">Gosu::Window</a>
80
- <li>buttonUp()
81
- : <a class="el" href="classGosu_1_1Window.html#41ab0a9bfee1c88d96618308bde584fc">Gosu::Window</a>
82
- </ul>
83
- <h3><a class="anchor" name="index_c">- c -</a></h3><ul>
84
- <li>caretPos()
85
- : <a class="el" href="classGosu_1_1TextInput.html#8ad34a47b306222df9a28a57c1fa8622">Gosu::TextInput</a>
86
- <li>changePan()
87
- : <a class="el" href="classGosu_1_1SampleInstance.html#def37ef2af53716fb0b10e06263468d0">Gosu::SampleInstance</a>
88
- <li>changeSpeed()
89
- : <a class="el" href="classGosu_1_1SampleInstance.html#3de21bed437c846734cf06243a5db112">Gosu::SampleInstance</a>
90
- <li>changeVolume()
91
- : <a class="el" href="classGosu_1_1SampleInstance.html#bb54d7569ac18cdad24da5d538cca1b5">Gosu::SampleInstance</a>
92
- , <a class="el" href="classGosu_1_1Song.html#e460032103a9ddb7e0dd50f53fb9d36e">Gosu::Song</a>
93
- <li>charToId()
94
- : <a class="el" href="classGosu_1_1Input.html#1cb42fd48c134fac5c2c8496b1e9f05a">Gosu::Input</a>
95
- <li>close()
96
- : <a class="el" href="classGosu_1_1Window.html#ccbd57bf5ea05899e4270e2b20b300a6">Gosu::Window</a>
97
- <li>Color()
98
- : <a class="el" href="classGosu_1_1Color.html#d3875fcbe68fb1fe608ab15f38129c6e">Gosu::Color</a>
99
- <li>createImage()
100
- : <a class="el" href="classGosu_1_1Graphics.html#6b10629453eec979500179e4ceb11434">Gosu::Graphics</a>
101
- <li>currentSong()
102
- : <a class="el" href="classGosu_1_1Song.html#3f6c94bd9ea9522430d6e0d1e1e64250">Gosu::Song</a>
103
- </ul>
104
- <h3><a class="anchor" name="index_d">- d -</a></h3><ul>
105
- <li>data()
106
- : <a class="el" href="classGosu_1_1Bitmap.html#f20320b33058d6a54aa31fc4c99a65fe">Gosu::Bitmap</a>
107
- <li>down()
108
- : <a class="el" href="classGosu_1_1Input.html#b4645c1bf26bceea7f8cfc43680667f1">Gosu::Input</a>
109
- <li>draw()
110
- : <a class="el" href="classGosu_1_1Image.html#7e6de0cae934109ba6c96434767f9540">Gosu::Image</a>
111
- , <a class="el" href="classGosu_1_1Window.html#b3c5da8e60f81c0528a5d8d9495daac8">Gosu::Window</a>
112
- , <a class="el" href="classGosu_1_1Font.html#5a67d1a1745e1d2eb1b7ec7d12f40e35">Gosu::Font</a>
113
- <li>drawMod()
114
- : <a class="el" href="classGosu_1_1Image.html#6ee7e13d1def74cbf5e974fdc3b045a1">Gosu::Image</a>
115
- <li>drawRel()
116
- : <a class="el" href="classGosu_1_1Font.html#60b4c8d6c515ca09d6124a9dc5f3c2f2">Gosu::Font</a>
117
- <li>drawRot()
118
- : <a class="el" href="classGosu_1_1Image.html#9333d4cb15b761020a82a41357ccb674">Gosu::Image</a>
119
- </ul>
120
- <h3><a class="anchor" name="index_e">- e -</a></h3><ul>
121
- <li>end()
122
- : <a class="el" href="classGosu_1_1Graphics.html#ddeab66c3a18c0a12df43067de841b71">Gosu::Graphics</a>
123
- <li>endGL()
124
- : <a class="el" href="classGosu_1_1Graphics.html#3e37d9b17e55fa5f6d3ad6116759364f">Gosu::Graphics</a>
125
- </ul>
126
- <h3><a class="anchor" name="index_f">- f -</a></h3><ul>
127
- <li>Font()
128
- : <a class="el" href="classGosu_1_1Font.html#d0ddfe95679f6caaae82dceba9ce3b70">Gosu::Font</a>
129
- <li>fromHSV()
130
- : <a class="el" href="classGosu_1_1Color.html#f14484c5cff18b011f32e434fe13dfff">Gosu::Color</a>
131
- <li>frontReader()
132
- : <a class="el" href="classGosu_1_1Resource.html#1487016df4be48aa67e4596d5436dab6">Gosu::Resource</a>
133
- </ul>
134
- <h3><a class="anchor" name="index_g">- g -</a></h3><ul>
135
- <li>getData()
136
- : <a class="el" href="classGosu_1_1Image.html#cbd542bae8e42ccc72442326e578c2c2">Gosu::Image</a>
137
- <li>getId()
138
- : <a class="el" href="classGosu_1_1Button.html#b4427dd79ad56325fc5d0509b7ddaed2">Gosu::Button</a>
139
- <li>getPixel()
140
- : <a class="el" href="classGosu_1_1Bitmap.html#93ea4a3ce9a09520dee52ba4deae4d18">Gosu::Bitmap</a>
141
- </ul>
142
- <h3><a class="anchor" name="index_h">- h -</a></h3><ul>
143
- <li>height()
144
- : <a class="el" href="classGosu_1_1Font.html#9357299749e270dbd01e7fb9f841ae54">Gosu::Font</a>
145
- <li>hue()
146
- : <a class="el" href="classGosu_1_1Color.html#e7dea29641a5e7c1a903f17c8f91ca41">Gosu::Color</a>
147
- </ul>
148
- <h3><a class="anchor" name="index_i">- i -</a></h3><ul>
149
- <li>idToChar()
150
- : <a class="el" href="classGosu_1_1Input.html#fc9e732c19055c9f80afb147eac8414b">Gosu::Input</a>
151
- <li>Image()
152
- : <a class="el" href="classGosu_1_1Image.html#b7d4a07a578bc751f446bd60954ed0cd">Gosu::Image</a>
153
- <li>insert()
154
- : <a class="el" href="classGosu_1_1Bitmap.html#ebe6c55dbdf4fe1162bc1276562f8b78">Gosu::Bitmap</a>
155
- </ul>
156
- <h3><a class="anchor" name="index_m">- m -</a></h3><ul>
157
- <li>maxMessageSize()
158
- : <a class="el" href="classGosu_1_1MessageSocket.html#017cc2347921520ba834ef0ae1c31c11">Gosu::MessageSocket</a>
159
- <li>MessageSocket()
160
- : <a class="el" href="classGosu_1_1MessageSocket.html#7894acdea2e7dc85c671ca0f6732ccaf">Gosu::MessageSocket</a>
161
- <li>mouseX()
162
- : <a class="el" href="classGosu_1_1Input.html#6849d640adfe2d576431ab2551c105c1">Gosu::Input</a>
163
- <li>mouseY()
164
- : <a class="el" href="classGosu_1_1Input.html#5bedd5d599dfe530043b3b0f6e3bf2a4">Gosu::Input</a>
165
- </ul>
166
- <h3><a class="anchor" name="index_n">- n -</a></h3><ul>
167
- <li>needsRedraw()
168
- : <a class="el" href="classGosu_1_1Window.html#94fe0b34e44e22a5076edd26f8e76853">Gosu::Window</a>
169
- </ul>
170
- <h3><a class="anchor" name="index_p">- p -</a></h3><ul>
171
- <li>pause()
172
- : <a class="el" href="classGosu_1_1Song.html#9ae053fbee6f240d2793fab3fa4ef596">Gosu::Song</a>
173
- <li>paused()
174
- : <a class="el" href="classGosu_1_1Song.html#a0d611bf37c19086797c9e46e001e092">Gosu::Song</a>
175
- <li>play()
176
- : <a class="el" href="classGosu_1_1Song.html#6b9cb7b452a737455e8cf4e7d90acff9">Gosu::Song</a>
177
- , <a class="el" href="classGosu_1_1Sample.html#190b3cc66e2115c7ed0390c47769c1b8">Gosu::Sample</a>
178
- <li>playing()
179
- : <a class="el" href="classGosu_1_1Song.html#c83d4b509149c2b1fb48ad697fb1adf3">Gosu::Song</a>
180
- <li>playPan()
181
- : <a class="el" href="classGosu_1_1Sample.html#13032b78fa19f7324035c6fbee6e5069">Gosu::Sample</a>
182
- <li>port()
183
- : <a class="el" href="classGosu_1_1MessageSocket.html#38999d7a0fee723adcb21bf3a036be91">Gosu::MessageSocket</a>
184
- </ul>
185
- <h3><a class="anchor" name="index_s">- s -</a></h3><ul>
186
- <li>Sample()
187
- : <a class="el" href="classGosu_1_1Sample.html#11aa4cd7de748370c9352970660619bf">Gosu::Sample</a>
188
- <li>SampleInstance()
189
- : <a class="el" href="classGosu_1_1SampleInstance.html#1dcf6b649592940d21d3d2487e510c7e">Gosu::SampleInstance</a>
190
- <li>saturation()
191
- : <a class="el" href="classGosu_1_1Color.html#50f84f148ae5676376f7ffab757ebe96">Gosu::Color</a>
192
- <li>selectionStart()
193
- : <a class="el" href="classGosu_1_1TextInput.html#6ddbf85f2115575e2d05e144923630de">Gosu::TextInput</a>
194
- <li>send()
195
- : <a class="el" href="classGosu_1_1MessageSocket.html#994ac62dc770243d65f88db89c1dc8e6">Gosu::MessageSocket</a>
196
- <li>setHue()
197
- : <a class="el" href="classGosu_1_1Color.html#ea1515be19da555c8beed681bd97e714">Gosu::Color</a>
198
- <li>setMousePosition()
199
- : <a class="el" href="classGosu_1_1Input.html#df5d807bd1cbac95bd4bd86dc5588dea">Gosu::Input</a>
200
- <li>setPixel()
201
- : <a class="el" href="classGosu_1_1Bitmap.html#7a247689a33ceb7c296035f439d9e549">Gosu::Bitmap</a>
202
- <li>setSaturation()
203
- : <a class="el" href="classGosu_1_1Color.html#e5401d0533adc33bd2ce0d7d6bf360e6">Gosu::Color</a>
204
- <li>setText()
205
- : <a class="el" href="classGosu_1_1TextInput.html#442bfe73c574c19fe7432fde7b937f5d">Gosu::TextInput</a>
206
- <li>setValue()
207
- : <a class="el" href="classGosu_1_1Color.html#7c84051414c6044f5928920dca1ca2c5">Gosu::Color</a>
208
- <li>show()
209
- : <a class="el" href="classGosu_1_1Window.html#d4b7c1e5e817d8aaca09f5d19a3a9d93">Gosu::Window</a>
210
- <li>Song()
211
- : <a class="el" href="classGosu_1_1Song.html#ef65dfe9e74d33480375481d47eee408">Gosu::Song</a>
212
- <li>stop()
213
- : <a class="el" href="classGosu_1_1Song.html#469a3cf49be8ebec2c9855dec46f5f71">Gosu::Song</a>
214
- </ul>
215
- <h3><a class="anchor" name="index_t">- t -</a></h3><ul>
216
- <li>textWidth()
217
- : <a class="el" href="classGosu_1_1Font.html#ee66d136e3b5b801d146cc1134a0635a">Gosu::Font</a>
218
- </ul>
219
- <h3><a class="anchor" name="index_u">- u -</a></h3><ul>
220
- <li>update()
221
- : <a class="el" href="classGosu_1_1Input.html#904cd360ad96838a61b408d5aa6729aa">Gosu::Input</a>
222
- , <a class="el" href="classGosu_1_1Window.html#4c74a15418c916dabec98c2da3ca45ba">Gosu::Window</a>
223
- , <a class="el" href="classGosu_1_1MessageSocket.html#3e642630d8b17d9336e3eb7112fa14dd">Gosu::MessageSocket</a>
224
- </ul>
225
- <h3><a class="anchor" name="index_v">- v -</a></h3><ul>
226
- <li>value()
227
- : <a class="el" href="classGosu_1_1Color.html#fa5e1b57786f25f93f8ef84acebfd82f">Gosu::Color</a>
228
- <li>volume()
229
- : <a class="el" href="classGosu_1_1Song.html#ab8e8a273b5ea235ad9f48dee684c683">Gosu::Song</a>
230
- </ul>
231
- <h3><a class="anchor" name="index_w">- w -</a></h3><ul>
232
- <li>Window()
233
- : <a class="el" href="classGosu_1_1Window.html#369461754934c92b9bd0811dbdad8ffa">Gosu::Window</a>
234
- </ul>
235
- </div>
236
- <hr size="1"><address style="text-align: right;"><small>Generated on Fri Apr 17 23:35:43 2009 for Gosu by&nbsp;
237
- <a href="http://www.doxygen.org/index.html">
238
- <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.5 </small></address>
239
- </body>
240
- </html>