gosu 0.7.10.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (249) hide show
  1. data/COPYING.txt +29 -0
  2. data/Gosu/Async.hpp +48 -0
  3. data/Gosu/Audio.hpp +145 -0
  4. data/Gosu/AutoLink.hpp +16 -0
  5. data/Gosu/Bitmap.hpp +85 -0
  6. data/Gosu/ButtonsMac.hpp +114 -0
  7. data/Gosu/ButtonsWin.hpp +111 -0
  8. data/Gosu/ButtonsX.hpp +115 -0
  9. data/Gosu/Color.hpp +172 -0
  10. data/Gosu/Directories.hpp +36 -0
  11. data/Gosu/Font.hpp +59 -0
  12. data/Gosu/Fwd.hpp +31 -0
  13. data/Gosu/Gosu.hpp +26 -0
  14. data/Gosu/Graphics.hpp +86 -0
  15. data/Gosu/GraphicsBase.hpp +45 -0
  16. data/Gosu/IO.hpp +255 -0
  17. data/Gosu/Image.hpp +148 -0
  18. data/Gosu/ImageData.hpp +45 -0
  19. data/Gosu/Input.hpp +116 -0
  20. data/Gosu/Math.hpp +95 -0
  21. data/Gosu/Platform.hpp +61 -0
  22. data/Gosu/RotFlip.hpp +116 -0
  23. data/Gosu/Sockets.hpp +129 -0
  24. data/Gosu/Text.hpp +47 -0
  25. data/Gosu/TextInput.hpp +57 -0
  26. data/Gosu/Timing.hpp +16 -0
  27. data/Gosu/Utility.hpp +24 -0
  28. data/Gosu/WinUtility.hpp +76 -0
  29. data/Gosu/Window.hpp +84 -0
  30. data/GosuImpl/Async.cpp +37 -0
  31. data/GosuImpl/AudioFmod.cpp +417 -0
  32. data/GosuImpl/AudioSDL.cpp +255 -0
  33. data/GosuImpl/DirectoriesMac.mm +38 -0
  34. data/GosuImpl/DirectoriesUnix.cpp +48 -0
  35. data/GosuImpl/DirectoriesWin.cpp +42 -0
  36. data/GosuImpl/FileUnix.cpp +100 -0
  37. data/GosuImpl/FileWin.cpp +83 -0
  38. data/GosuImpl/Graphics/Bitmap.cpp +116 -0
  39. data/GosuImpl/Graphics/BitmapBMP.cpp +232 -0
  40. data/GosuImpl/Graphics/BitmapColorKey.cpp +39 -0
  41. data/GosuImpl/Graphics/BitmapPNG.cpp +276 -0
  42. data/GosuImpl/Graphics/BitmapUtils.cpp +67 -0
  43. data/GosuImpl/Graphics/BlockAllocator.cpp +127 -0
  44. data/GosuImpl/Graphics/BlockAllocator.hpp +34 -0
  45. data/GosuImpl/Graphics/Color.cpp +126 -0
  46. data/GosuImpl/Graphics/Common.hpp +21 -0
  47. data/GosuImpl/Graphics/DrawOp.hpp +154 -0
  48. data/GosuImpl/Graphics/Font.cpp +110 -0
  49. data/GosuImpl/Graphics/Graphics.cpp +295 -0
  50. data/GosuImpl/Graphics/Image.cpp +159 -0
  51. data/GosuImpl/Graphics/LargeImageData.cpp +115 -0
  52. data/GosuImpl/Graphics/LargeImageData.hpp +37 -0
  53. data/GosuImpl/Graphics/RotFlip.cpp +184 -0
  54. data/GosuImpl/Graphics/TexChunk.cpp +77 -0
  55. data/GosuImpl/Graphics/TexChunk.hpp +40 -0
  56. data/GosuImpl/Graphics/Text.cpp +223 -0
  57. data/GosuImpl/Graphics/TextMac.cpp +242 -0
  58. data/GosuImpl/Graphics/TextPangoFT.cpp +186 -0
  59. data/GosuImpl/Graphics/TextWin.cpp +172 -0
  60. data/GosuImpl/Graphics/Texture.cpp +104 -0
  61. data/GosuImpl/Graphics/Texture.hpp +34 -0
  62. data/GosuImpl/IO.cpp +48 -0
  63. data/GosuImpl/InputMac.mm +677 -0
  64. data/GosuImpl/InputWin.cpp +444 -0
  65. data/GosuImpl/InputX.cpp +158 -0
  66. data/GosuImpl/MacUtility.hpp +48 -0
  67. data/GosuImpl/Math.cpp +49 -0
  68. data/GosuImpl/RubyGosu.swg +474 -0
  69. data/GosuImpl/RubyGosuStub.mm +17 -0
  70. data/GosuImpl/RubyGosu_DllMain.cxx +30 -0
  71. data/GosuImpl/RubyGosu_wrap.cxx +8521 -0
  72. data/GosuImpl/RubyGosu_wrap.h +31 -0
  73. data/GosuImpl/Sockets/CommSocket.cpp +304 -0
  74. data/GosuImpl/Sockets/ListenerSocket.cpp +60 -0
  75. data/GosuImpl/Sockets/MessageSocket.cpp +136 -0
  76. data/GosuImpl/Sockets/Socket.cpp +145 -0
  77. data/GosuImpl/Sockets/Sockets.hpp +66 -0
  78. data/GosuImpl/TextInputMac.mm +207 -0
  79. data/GosuImpl/TextInputWin.cpp +197 -0
  80. data/GosuImpl/TextInputX.cpp +201 -0
  81. data/GosuImpl/TextTTFWin.cpp +247 -0
  82. data/GosuImpl/TimingUnix.cpp +17 -0
  83. data/GosuImpl/TimingWin.cpp +28 -0
  84. data/GosuImpl/Utility.cpp +140 -0
  85. data/GosuImpl/WinMain.cpp +69 -0
  86. data/GosuImpl/WinUtility.cpp +137 -0
  87. data/GosuImpl/WindowMac.mm +466 -0
  88. data/GosuImpl/WindowWin.cpp +447 -0
  89. data/GosuImpl/WindowX.cpp +392 -0
  90. data/GosuImpl/X11vroot.h +118 -0
  91. data/README.txt +13 -0
  92. data/Rakefile +178 -0
  93. data/examples/ChipmunkIntegration.rb +275 -0
  94. data/examples/CptnRuby.rb +231 -0
  95. data/examples/MoreChipmunkAndRMagick.rb +155 -0
  96. data/examples/OpenGLIntegration.rb +232 -0
  97. data/examples/RMagickIntegration.rb +449 -0
  98. data/examples/TextInput.cpp +170 -0
  99. data/examples/TextInput.rb +139 -0
  100. data/examples/Tutorial.cpp +215 -0
  101. data/examples/Tutorial.rb +137 -0
  102. data/examples/media/Beep.wav +0 -0
  103. data/examples/media/CptnRuby Gem.png +0 -0
  104. data/examples/media/CptnRuby Map.txt +25 -0
  105. data/examples/media/CptnRuby Tileset.png +0 -0
  106. data/examples/media/CptnRuby.png +0 -0
  107. data/examples/media/Cursor.png +0 -0
  108. data/examples/media/Earth.png +0 -0
  109. data/examples/media/Explosion.wav +0 -0
  110. data/examples/media/LargeStar.png +0 -0
  111. data/examples/media/Sky.jpg +0 -0
  112. data/examples/media/Smoke.png +0 -0
  113. data/examples/media/Soldier.png +0 -0
  114. data/examples/media/Space.png +0 -0
  115. data/examples/media/Star.png +0 -0
  116. data/examples/media/Starfighter.bmp +0 -0
  117. data/linux/Makefile.in +98 -0
  118. data/linux/configure +5658 -0
  119. data/linux/configure.ac +126 -0
  120. data/linux/extconf.rb +11 -0
  121. data/mac/English.lproj/InfoPlist.strings +0 -0
  122. data/mac/Gosu-Info.plist +26 -0
  123. data/mac/Gosu.xcodeproj/project.pbxproj +1194 -0
  124. data/mac/RubyGosu Template-Info.plist +26 -0
  125. data/mac/libboost_thread_1_34_1_universal.a +0 -0
  126. data/mac/libboost_thread_d_1_34_1_universal.a +0 -0
  127. data/mac/libfmod_universal.a +0 -0
  128. data/mac/libpng_universal.a +0 -0
  129. data/mac/libz_universal.a +0 -0
  130. data/reference/Async_8hpp-source.html +70 -0
  131. data/reference/Audio_8hpp-source.html +114 -0
  132. data/reference/Audio_8hpp.html +50 -0
  133. data/reference/AutoLink_8hpp-source.html +38 -0
  134. data/reference/AutoLink_8hpp.html +34 -0
  135. data/reference/Bitmap_8hpp-source.html +85 -0
  136. data/reference/Bitmap_8hpp.html +58 -0
  137. data/reference/ButtonsMac_8hpp-source.html +133 -0
  138. data/reference/ButtonsWin_8hpp-source.html +133 -0
  139. data/reference/ButtonsX_8hpp-source.html +134 -0
  140. data/reference/Color_8hpp-source.html +169 -0
  141. data/reference/Color_8hpp.html +85 -0
  142. data/reference/Directories_8hpp-source.html +42 -0
  143. data/reference/Directories_8hpp.html +46 -0
  144. data/reference/Font_8hpp-source.html +65 -0
  145. data/reference/Font_8hpp.html +41 -0
  146. data/reference/Fwd_8hpp-source.html +52 -0
  147. data/reference/Fwd_8hpp.html +37 -0
  148. data/reference/Gosu_8hpp-source.html +48 -0
  149. data/reference/Gosu_8hpp.html +34 -0
  150. data/reference/GraphicsBase_8hpp-source.html +57 -0
  151. data/reference/GraphicsBase_8hpp.html +56 -0
  152. data/reference/Graphics_8hpp-source.html +96 -0
  153. data/reference/Graphics_8hpp.html +53 -0
  154. data/reference/IO_8hpp-source.html +255 -0
  155. data/reference/IO_8hpp.html +74 -0
  156. data/reference/ImageData_8hpp-source.html +62 -0
  157. data/reference/ImageData_8hpp.html +43 -0
  158. data/reference/Image_8hpp-source.html +126 -0
  159. data/reference/Image_8hpp.html +48 -0
  160. data/reference/Input_8hpp-source.html +118 -0
  161. data/reference/Input_8hpp.html +50 -0
  162. data/reference/Math_8hpp-source.html +92 -0
  163. data/reference/Math_8hpp.html +74 -0
  164. data/reference/Platform_8hpp-source.html +83 -0
  165. data/reference/Platform_8hpp.html +73 -0
  166. data/reference/RotFlip_8hpp-source.html +138 -0
  167. data/reference/RotFlip_8hpp.html +77 -0
  168. data/reference/Sockets_8hpp-source.html +130 -0
  169. data/reference/Sockets_8hpp.html +66 -0
  170. data/reference/TextInput_8hpp-source.html +64 -0
  171. data/reference/TextInput_8hpp.html +41 -0
  172. data/reference/Text_8hpp-source.html +51 -0
  173. data/reference/Text_8hpp.html +46 -0
  174. data/reference/Timing_8hpp-source.html +36 -0
  175. data/reference/Timing_8hpp.html +42 -0
  176. data/reference/Utility_8hpp-source.html +44 -0
  177. data/reference/Utility_8hpp.html +48 -0
  178. data/reference/WinUtility_8hpp-source.html +79 -0
  179. data/reference/WinUtility_8hpp.html +64 -0
  180. data/reference/Window_8hpp-source.html +91 -0
  181. data/reference/Window_8hpp.html +41 -0
  182. data/reference/annotated.html +51 -0
  183. data/reference/classGosu_1_1Audio-members.html +34 -0
  184. data/reference/classGosu_1_1Audio.html +46 -0
  185. data/reference/classGosu_1_1Bitmap-members.html +44 -0
  186. data/reference/classGosu_1_1Bitmap.html +263 -0
  187. data/reference/classGosu_1_1Buffer-members.html +44 -0
  188. data/reference/classGosu_1_1Buffer.html +78 -0
  189. data/reference/classGosu_1_1Buffer.png +0 -0
  190. data/reference/classGosu_1_1Button-members.html +36 -0
  191. data/reference/classGosu_1_1Button.html +143 -0
  192. data/reference/classGosu_1_1Color-members.html +56 -0
  193. data/reference/classGosu_1_1Color.html +387 -0
  194. data/reference/classGosu_1_1File-members.html +41 -0
  195. data/reference/classGosu_1_1File.html +69 -0
  196. data/reference/classGosu_1_1File.png +0 -0
  197. data/reference/classGosu_1_1Font-members.html +39 -0
  198. data/reference/classGosu_1_1Font.html +309 -0
  199. data/reference/classGosu_1_1Graphics-members.html +50 -0
  200. data/reference/classGosu_1_1Graphics.html +234 -0
  201. data/reference/classGosu_1_1Image-members.html +45 -0
  202. data/reference/classGosu_1_1Image.html +518 -0
  203. data/reference/classGosu_1_1ImageData-members.html +37 -0
  204. data/reference/classGosu_1_1ImageData.html +60 -0
  205. data/reference/classGosu_1_1Input-members.html +44 -0
  206. data/reference/classGosu_1_1Input.html +223 -0
  207. data/reference/classGosu_1_1MessageSocket-members.html +40 -0
  208. data/reference/classGosu_1_1MessageSocket.html +233 -0
  209. data/reference/classGosu_1_1Resource-members.html +39 -0
  210. data/reference/classGosu_1_1Resource.html +116 -0
  211. data/reference/classGosu_1_1Resource.png +0 -0
  212. data/reference/classGosu_1_1Sample-members.html +37 -0
  213. data/reference/classGosu_1_1Sample.html +200 -0
  214. data/reference/classGosu_1_1SampleInstance-members.html +38 -0
  215. data/reference/classGosu_1_1SampleInstance.html +169 -0
  216. data/reference/classGosu_1_1Song-members.html +43 -0
  217. data/reference/classGosu_1_1Song.html +260 -0
  218. data/reference/classGosu_1_1TextInput-members.html +38 -0
  219. data/reference/classGosu_1_1TextInput.html +121 -0
  220. data/reference/classGosu_1_1Window-members.html +50 -0
  221. data/reference/classGosu_1_1Window.html +271 -0
  222. data/reference/doxyfile +233 -0
  223. data/reference/doxygen.css +433 -0
  224. data/reference/doxygen.png +0 -0
  225. data/reference/files.html +54 -0
  226. data/reference/functions.html +236 -0
  227. data/reference/functions_enum.html +45 -0
  228. data/reference/functions_func.html +227 -0
  229. data/reference/functions_vars.html +47 -0
  230. data/reference/hierarchy.html +53 -0
  231. data/reference/index.html +26 -0
  232. data/reference/namespaceGosu.html +2890 -0
  233. data/reference/namespaceGosu_1_1Colors.html +70 -0
  234. data/reference/namespaceGosu_1_1Win.html +275 -0
  235. data/reference/namespacemembers.html +216 -0
  236. data/reference/namespacemembers_enum.html +52 -0
  237. data/reference/namespacemembers_eval.html +54 -0
  238. data/reference/namespacemembers_func.html +185 -0
  239. data/reference/namespacemembers_type.html +46 -0
  240. data/reference/namespacemembers_vars.html +46 -0
  241. data/reference/namespaces.html +35 -0
  242. data/reference/tab_b.gif +0 -0
  243. data/reference/tab_l.gif +0 -0
  244. data/reference/tab_r.gif +0 -0
  245. data/reference/tabs.css +102 -0
  246. data/windows/Gosu.sln +29 -0
  247. data/windows/Gosu.vcproj +553 -0
  248. data/windows/RubyGosu.vcproj +138 -0
  249. metadata +305 -0
@@ -0,0 +1,433 @@
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
+
Binary file
@@ -0,0 +1,54 @@
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 Sep 12 21:50:23 2008 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>