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,233 +0,0 @@
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
@@ -1,433 +0,0 @@
1
- BODY,H1,H2,H3,H4,H5,H6,P,CENTER,TD,TH,UL,DL,DIV {
2
- font-family: Geneva, Arial, Helvetica, sans-serif;
3
- }
4
- BODY,TD {
5
- font-size: 90%;
6
- }
7
- H1 {
8
- text-align: center;
9
- font-size: 160%;
10
- }
11
- H2 {
12
- font-size: 120%;
13
- }
14
- H3 {
15
- font-size: 100%;
16
- }
17
- CAPTION {
18
- font-weight: bold
19
- }
20
- DIV.qindex {
21
- width: 100%;
22
- background-color: #e8eef2;
23
- border: 1px solid #84b0c7;
24
- text-align: center;
25
- margin: 2px;
26
- padding: 2px;
27
- line-height: 140%;
28
- }
29
- DIV.navpath {
30
- width: 100%;
31
- background-color: #e8eef2;
32
- border: 1px solid #84b0c7;
33
- text-align: center;
34
- margin: 2px;
35
- padding: 2px;
36
- line-height: 140%;
37
- }
38
- DIV.navtab {
39
- background-color: #e8eef2;
40
- border: 1px solid #84b0c7;
41
- text-align: center;
42
- margin: 2px;
43
- margin-right: 15px;
44
- padding: 2px;
45
- }
46
- TD.navtab {
47
- font-size: 70%;
48
- }
49
- A.qindex {
50
- text-decoration: none;
51
- font-weight: bold;
52
- color: #1A419D;
53
- }
54
- A.qindex:visited {
55
- text-decoration: none;
56
- font-weight: bold;
57
- color: #1A419D
58
- }
59
- A.qindex:hover {
60
- text-decoration: none;
61
- background-color: #ddddff;
62
- }
63
- A.qindexHL {
64
- text-decoration: none;
65
- font-weight: bold;
66
- background-color: #6666cc;
67
- color: #ffffff;
68
- border: 1px double #9295C2;
69
- }
70
- A.qindexHL:hover {
71
- text-decoration: none;
72
- background-color: #6666cc;
73
- color: #ffffff;
74
- }
75
- A.qindexHL:visited {
76
- text-decoration: none;
77
- background-color: #6666cc;
78
- color: #ffffff
79
- }
80
- A.el {
81
- text-decoration: none;
82
- font-weight: bold
83
- }
84
- A.elRef {
85
- font-weight: bold
86
- }
87
- A.code:link {
88
- text-decoration: none;
89
- font-weight: normal;
90
- color: #0000FF
91
- }
92
- A.code:visited {
93
- text-decoration: none;
94
- font-weight: normal;
95
- color: #0000FF
96
- }
97
- A.codeRef:link {
98
- font-weight: normal;
99
- color: #0000FF
100
- }
101
- A.codeRef:visited {
102
- font-weight: normal;
103
- color: #0000FF
104
- }
105
- A:hover {
106
- text-decoration: none;
107
- background-color: #f2f2ff
108
- }
109
- DL.el {
110
- margin-left: -1cm
111
- }
112
- .fragment {
113
- font-family: monospace, fixed;
114
- font-size: 95%;
115
- }
116
- PRE.fragment {
117
- border: 1px solid #CCCCCC;
118
- background-color: #f5f5f5;
119
- margin-top: 4px;
120
- margin-bottom: 4px;
121
- margin-left: 2px;
122
- margin-right: 8px;
123
- padding-left: 6px;
124
- padding-right: 6px;
125
- padding-top: 4px;
126
- padding-bottom: 4px;
127
- }
128
- DIV.ah {
129
- background-color: black;
130
- font-weight: bold;
131
- color: #ffffff;
132
- margin-bottom: 3px;
133
- margin-top: 3px
134
- }
135
-
136
- DIV.groupHeader {
137
- margin-left: 16px;
138
- margin-top: 12px;
139
- margin-bottom: 6px;
140
- font-weight: bold;
141
- }
142
- DIV.groupText {
143
- margin-left: 16px;
144
- font-style: italic;
145
- font-size: 90%
146
- }
147
- BODY {
148
- background: white;
149
- color: black;
150
- margin-right: 20px;
151
- margin-left: 20px;
152
- }
153
- TD.indexkey {
154
- background-color: #e8eef2;
155
- font-weight: bold;
156
- padding-right : 10px;
157
- padding-top : 2px;
158
- padding-left : 10px;
159
- padding-bottom : 2px;
160
- margin-left : 0px;
161
- margin-right : 0px;
162
- margin-top : 2px;
163
- margin-bottom : 2px;
164
- border: 1px solid #CCCCCC;
165
- }
166
- TD.indexvalue {
167
- background-color: #e8eef2;
168
- font-style: italic;
169
- padding-right : 10px;
170
- padding-top : 2px;
171
- padding-left : 10px;
172
- padding-bottom : 2px;
173
- margin-left : 0px;
174
- margin-right : 0px;
175
- margin-top : 2px;
176
- margin-bottom : 2px;
177
- border: 1px solid #CCCCCC;
178
- }
179
- TR.memlist {
180
- background-color: #f0f0f0;
181
- }
182
- P.formulaDsp {
183
- text-align: center;
184
- }
185
- IMG.formulaDsp {
186
- }
187
- IMG.formulaInl {
188
- vertical-align: middle;
189
- }
190
- SPAN.keyword { color: #008000 }
191
- SPAN.keywordtype { color: #604020 }
192
- SPAN.keywordflow { color: #e08000 }
193
- SPAN.comment { color: #800000 }
194
- SPAN.preprocessor { color: #806020 }
195
- SPAN.stringliteral { color: #002080 }
196
- SPAN.charliteral { color: #008080 }
197
- SPAN.vhdldigit { color: #ff00ff }
198
- SPAN.vhdlchar { color: #000000 }
199
- SPAN.vhdlkeyword { color: #700070 }
200
- SPAN.vhdllogic { color: #ff0000 }
201
-
202
- .mdescLeft {
203
- padding: 0px 8px 4px 8px;
204
- font-size: 80%;
205
- font-style: italic;
206
- background-color: #FAFAFA;
207
- border-top: 1px none #E0E0E0;
208
- border-right: 1px none #E0E0E0;
209
- border-bottom: 1px none #E0E0E0;
210
- border-left: 1px none #E0E0E0;
211
- margin: 0px;
212
- }
213
- .mdescRight {
214
- padding: 0px 8px 4px 8px;
215
- font-size: 80%;
216
- font-style: italic;
217
- background-color: #FAFAFA;
218
- border-top: 1px none #E0E0E0;
219
- border-right: 1px none #E0E0E0;
220
- border-bottom: 1px none #E0E0E0;
221
- border-left: 1px none #E0E0E0;
222
- margin: 0px;
223
- }
224
- .memItemLeft {
225
- padding: 1px 0px 0px 8px;
226
- margin: 4px;
227
- border-top-width: 1px;
228
- border-right-width: 1px;
229
- border-bottom-width: 1px;
230
- border-left-width: 1px;
231
- border-top-color: #E0E0E0;
232
- border-right-color: #E0E0E0;
233
- border-bottom-color: #E0E0E0;
234
- border-left-color: #E0E0E0;
235
- border-top-style: solid;
236
- border-right-style: none;
237
- border-bottom-style: none;
238
- border-left-style: none;
239
- background-color: #FAFAFA;
240
- font-size: 80%;
241
- }
242
- .memItemRight {
243
- padding: 1px 8px 0px 8px;
244
- margin: 4px;
245
- border-top-width: 1px;
246
- border-right-width: 1px;
247
- border-bottom-width: 1px;
248
- border-left-width: 1px;
249
- border-top-color: #E0E0E0;
250
- border-right-color: #E0E0E0;
251
- border-bottom-color: #E0E0E0;
252
- border-left-color: #E0E0E0;
253
- border-top-style: solid;
254
- border-right-style: none;
255
- border-bottom-style: none;
256
- border-left-style: none;
257
- background-color: #FAFAFA;
258
- font-size: 80%;
259
- }
260
- .memTemplItemLeft {
261
- padding: 1px 0px 0px 8px;
262
- margin: 4px;
263
- border-top-width: 1px;
264
- border-right-width: 1px;
265
- border-bottom-width: 1px;
266
- border-left-width: 1px;
267
- border-top-color: #E0E0E0;
268
- border-right-color: #E0E0E0;
269
- border-bottom-color: #E0E0E0;
270
- border-left-color: #E0E0E0;
271
- border-top-style: none;
272
- border-right-style: none;
273
- border-bottom-style: none;
274
- border-left-style: none;
275
- background-color: #FAFAFA;
276
- font-size: 80%;
277
- }
278
- .memTemplItemRight {
279
- padding: 1px 8px 0px 8px;
280
- margin: 4px;
281
- border-top-width: 1px;
282
- border-right-width: 1px;
283
- border-bottom-width: 1px;
284
- border-left-width: 1px;
285
- border-top-color: #E0E0E0;
286
- border-right-color: #E0E0E0;
287
- border-bottom-color: #E0E0E0;
288
- border-left-color: #E0E0E0;
289
- border-top-style: none;
290
- border-right-style: none;
291
- border-bottom-style: none;
292
- border-left-style: none;
293
- background-color: #FAFAFA;
294
- font-size: 80%;
295
- }
296
- .memTemplParams {
297
- padding: 1px 0px 0px 8px;
298
- margin: 4px;
299
- border-top-width: 1px;
300
- border-right-width: 1px;
301
- border-bottom-width: 1px;
302
- border-left-width: 1px;
303
- border-top-color: #E0E0E0;
304
- border-right-color: #E0E0E0;
305
- border-bottom-color: #E0E0E0;
306
- border-left-color: #E0E0E0;
307
- border-top-style: solid;
308
- border-right-style: none;
309
- border-bottom-style: none;
310
- border-left-style: none;
311
- color: #606060;
312
- background-color: #FAFAFA;
313
- font-size: 80%;
314
- }
315
- .search {
316
- color: #003399;
317
- font-weight: bold;
318
- }
319
- FORM.search {
320
- margin-bottom: 0px;
321
- margin-top: 0px;
322
- }
323
- INPUT.search {
324
- font-size: 75%;
325
- color: #000080;
326
- font-weight: normal;
327
- background-color: #e8eef2;
328
- }
329
- TD.tiny {
330
- font-size: 75%;
331
- }
332
- a {
333
- color: #1A41A8;
334
- }
335
- a:visited {
336
- color: #2A3798;
337
- }
338
- .dirtab {
339
- padding: 4px;
340
- border-collapse: collapse;
341
- border: 1px solid #84b0c7;
342
- }
343
- TH.dirtab {
344
- background: #e8eef2;
345
- font-weight: bold;
346
- }
347
- HR {
348
- height: 1px;
349
- border: none;
350
- border-top: 1px solid black;
351
- }
352
-
353
- /* Style for detailed member documentation */
354
- .memtemplate {
355
- font-size: 80%;
356
- color: #606060;
357
- font-weight: normal;
358
- margin-left: 3px;
359
- }
360
- .memnav {
361
- background-color: #e8eef2;
362
- border: 1px solid #84b0c7;
363
- text-align: center;
364
- margin: 2px;
365
- margin-right: 15px;
366
- padding: 2px;
367
- }
368
- .memitem {
369
- padding: 4px;
370
- background-color: #eef3f5;
371
- border-width: 1px;
372
- border-style: solid;
373
- border-color: #dedeee;
374
- -moz-border-radius: 8px 8px 8px 8px;
375
- }
376
- .memname {
377
- white-space: nowrap;
378
- font-weight: bold;
379
- }
380
- .memdoc{
381
- padding-left: 10px;
382
- }
383
- .memproto {
384
- background-color: #d5e1e8;
385
- width: 100%;
386
- border-width: 1px;
387
- border-style: solid;
388
- border-color: #84b0c7;
389
- font-weight: bold;
390
- -moz-border-radius: 8px 8px 8px 8px;
391
- }
392
- .paramkey {
393
- text-align: right;
394
- }
395
- .paramtype {
396
- white-space: nowrap;
397
- }
398
- .paramname {
399
- color: #602020;
400
- font-style: italic;
401
- white-space: nowrap;
402
- }
403
- /* End Styling for detailed member documentation */
404
-
405
- /* for the tree view */
406
- .ftvtree {
407
- font-family: sans-serif;
408
- margin:0.5em;
409
- }
410
- .directory {
411
- font-size: 9pt;
412
- font-weight: bold;
413
- }
414
- .directory h3 {
415
- margin: 0px;
416
- margin-top: 1em;
417
- font-size: 11pt;
418
- }
419
- .directory > h3 {
420
- margin-top: 0;
421
- }
422
- .directory p {
423
- margin: 0px;
424
- white-space: nowrap;
425
- }
426
- .directory div {
427
- display: none;
428
- margin: 0px;
429
- }
430
- .directory img {
431
- vertical-align: -30%;
432
- }
433
-