glib2 0.90.2-x86-mingw32

Sign up to get free protection for your applications and to get access to all the features.
Files changed (875) hide show
  1. data/ChangeLog +3115 -0
  2. data/README +40 -0
  3. data/Rakefile +69 -0
  4. data/ext/glib2/depend +10 -0
  5. data/ext/glib2/extconf.rb +61 -0
  6. data/ext/glib2/glib2.def +89 -0
  7. data/ext/glib2/rbgcompat.h +30 -0
  8. data/ext/glib2/rbglib.c +330 -0
  9. data/ext/glib2/rbglib.h +96 -0
  10. data/ext/glib2/rbglib_bookmarkfile.c +595 -0
  11. data/ext/glib2/rbglib_completion.c +192 -0
  12. data/ext/glib2/rbglib_convert.c +195 -0
  13. data/ext/glib2/rbglib_error.c +95 -0
  14. data/ext/glib2/rbglib_fileutils.c +83 -0
  15. data/ext/glib2/rbglib_i18n.c +44 -0
  16. data/ext/glib2/rbglib_int64.c +157 -0
  17. data/ext/glib2/rbglib_iochannel.c +883 -0
  18. data/ext/glib2/rbglib_keyfile.c +846 -0
  19. data/ext/glib2/rbglib_maincontext.c +915 -0
  20. data/ext/glib2/rbglib_mainloop.c +87 -0
  21. data/ext/glib2/rbglib_messages.c +150 -0
  22. data/ext/glib2/rbglib_pollfd.c +111 -0
  23. data/ext/glib2/rbglib_shell.c +68 -0
  24. data/ext/glib2/rbglib_source.c +190 -0
  25. data/ext/glib2/rbglib_spawn.c +345 -0
  26. data/ext/glib2/rbglib_threads.c +51 -0
  27. data/ext/glib2/rbglib_timer.c +127 -0
  28. data/ext/glib2/rbglib_unicode.c +611 -0
  29. data/ext/glib2/rbglib_utils.c +386 -0
  30. data/ext/glib2/rbglib_win32.c +136 -0
  31. data/ext/glib2/rbgobj_boxed.c +251 -0
  32. data/ext/glib2/rbgobj_closure.c +337 -0
  33. data/ext/glib2/rbgobj_convert.c +167 -0
  34. data/ext/glib2/rbgobj_enums.c +961 -0
  35. data/ext/glib2/rbgobj_fundamental.c +30 -0
  36. data/ext/glib2/rbgobj_object.c +892 -0
  37. data/ext/glib2/rbgobj_param.c +390 -0
  38. data/ext/glib2/rbgobj_paramspecs.c +305 -0
  39. data/ext/glib2/rbgobj_signal.c +963 -0
  40. data/ext/glib2/rbgobj_strv.c +61 -0
  41. data/ext/glib2/rbgobj_type.c +851 -0
  42. data/ext/glib2/rbgobj_typeinstance.c +121 -0
  43. data/ext/glib2/rbgobj_typeinterface.c +148 -0
  44. data/ext/glib2/rbgobj_typemodule.c +66 -0
  45. data/ext/glib2/rbgobj_typeplugin.c +49 -0
  46. data/ext/glib2/rbgobj_value.c +313 -0
  47. data/ext/glib2/rbgobj_valuearray.c +59 -0
  48. data/ext/glib2/rbgobj_valuetypes.c +298 -0
  49. data/ext/glib2/rbgobject.c +406 -0
  50. data/ext/glib2/rbgobject.h +265 -0
  51. data/ext/glib2/rbgprivate.h +88 -0
  52. data/ext/glib2/rbgutil.c +316 -0
  53. data/ext/glib2/rbgutil.h +82 -0
  54. data/ext/glib2/rbgutil_callback.c +231 -0
  55. data/extconf.rb +49 -0
  56. data/lib/1.8/glib2.so +0 -0
  57. data/lib/1.9/glib2.so +0 -0
  58. data/lib/glib-mkenums.rb +199 -0
  59. data/lib/glib2.rb +239 -0
  60. data/lib/gnome2-win32-binary-downloader.rb +92 -0
  61. data/lib/mkmf-gnome2.rb +377 -0
  62. data/sample/bookmarkfile.rb +66 -0
  63. data/sample/completion.rb +45 -0
  64. data/sample/idle.rb +41 -0
  65. data/sample/iochannel.rb +44 -0
  66. data/sample/keyfile.rb +62 -0
  67. data/sample/shell.rb +36 -0
  68. data/sample/spawn.rb +25 -0
  69. data/sample/timeout.rb +28 -0
  70. data/sample/timeout2.rb +35 -0
  71. data/sample/timer.rb +40 -0
  72. data/sample/type-register.rb +103 -0
  73. data/sample/type-register2.rb +104 -0
  74. data/sample/utils.rb +54 -0
  75. data/test/glib-test-init.rb +6 -0
  76. data/test/glib-test-utils.rb +12 -0
  77. data/test/run-test.rb +21 -0
  78. data/test/test_enum.rb +99 -0
  79. data/test/test_file_utils.rb +15 -0
  80. data/test/test_glib2.rb +120 -0
  81. data/test/test_iochannel.rb +275 -0
  82. data/test/test_key_file.rb +38 -0
  83. data/test/test_mkenums.rb +25 -0
  84. data/test/test_signal.rb +20 -0
  85. data/test/test_timeout.rb +28 -0
  86. data/test/test_unicode.rb +369 -0
  87. data/test/test_utils.rb +37 -0
  88. data/test/test_win32.rb +13 -0
  89. data/test-unit/COPYING +56 -0
  90. data/test-unit/GPL +340 -0
  91. data/test-unit/History.txt +232 -0
  92. data/test-unit/Manifest.txt +110 -0
  93. data/test-unit/PSFL +271 -0
  94. data/test-unit/README.txt +75 -0
  95. data/test-unit/Rakefile +53 -0
  96. data/test-unit/TODO +5 -0
  97. data/test-unit/bin/testrb +5 -0
  98. data/test-unit/html/bar.png +0 -0
  99. data/test-unit/html/bar.svg +153 -0
  100. data/test-unit/html/developer.png +0 -0
  101. data/test-unit/html/developer.svg +469 -0
  102. data/test-unit/html/famfamfam-logo.png +0 -0
  103. data/test-unit/html/favicon.ico +0 -0
  104. data/test-unit/html/favicon.png +0 -0
  105. data/test-unit/html/favicon.svg +82 -0
  106. data/test-unit/html/heading-mark.png +0 -0
  107. data/test-unit/html/heading-mark.svg +393 -0
  108. data/test-unit/html/index.html +247 -0
  109. data/test-unit/html/index.html.ja +270 -0
  110. data/test-unit/html/install.png +0 -0
  111. data/test-unit/html/install.svg +636 -0
  112. data/test-unit/html/jp.png +0 -0
  113. data/test-unit/html/kinotan-failure.png +0 -0
  114. data/test-unit/html/kinotan-pass.png +0 -0
  115. data/test-unit/html/logo.png +0 -0
  116. data/test-unit/html/logo.svg +483 -0
  117. data/test-unit/html/reference.png +0 -0
  118. data/test-unit/html/rubyforge.png +0 -0
  119. data/test-unit/html/tango-logo.png +0 -0
  120. data/test-unit/html/test-unit.css +339 -0
  121. data/test-unit/html/tutorial.png +0 -0
  122. data/test-unit/html/tutorial.svg +559 -0
  123. data/test-unit/html/us.png +0 -0
  124. data/test-unit/images/color-diff.png +0 -0
  125. data/test-unit/lib/test/unit/assertionfailederror.rb +25 -0
  126. data/test-unit/lib/test/unit/assertions.rb +1334 -0
  127. data/test-unit/lib/test/unit/attribute.rb +125 -0
  128. data/test-unit/lib/test/unit/autorunner.rb +363 -0
  129. data/test-unit/lib/test/unit/collector/descendant.rb +23 -0
  130. data/test-unit/lib/test/unit/collector/dir.rb +108 -0
  131. data/test-unit/lib/test/unit/collector/load.rb +144 -0
  132. data/test-unit/lib/test/unit/collector/objectspace.rb +34 -0
  133. data/test-unit/lib/test/unit/collector.rb +36 -0
  134. data/test-unit/lib/test/unit/color-scheme.rb +106 -0
  135. data/test-unit/lib/test/unit/color.rb +96 -0
  136. data/test-unit/lib/test/unit/diff.rb +740 -0
  137. data/test-unit/lib/test/unit/error.rb +130 -0
  138. data/test-unit/lib/test/unit/exceptionhandler.rb +39 -0
  139. data/test-unit/lib/test/unit/failure.rb +136 -0
  140. data/test-unit/lib/test/unit/fixture.rb +176 -0
  141. data/test-unit/lib/test/unit/notification.rb +129 -0
  142. data/test-unit/lib/test/unit/omission.rb +191 -0
  143. data/test-unit/lib/test/unit/pending.rb +150 -0
  144. data/test-unit/lib/test/unit/priority.rb +180 -0
  145. data/test-unit/lib/test/unit/runner/console.rb +52 -0
  146. data/test-unit/lib/test/unit/runner/emacs.rb +8 -0
  147. data/test-unit/lib/test/unit/runner/tap.rb +8 -0
  148. data/test-unit/lib/test/unit/testcase.rb +483 -0
  149. data/test-unit/lib/test/unit/testresult.rb +121 -0
  150. data/test-unit/lib/test/unit/testsuite.rb +110 -0
  151. data/test-unit/lib/test/unit/ui/console/outputlevel.rb +14 -0
  152. data/test-unit/lib/test/unit/ui/console/testrunner.rb +430 -0
  153. data/test-unit/lib/test/unit/ui/emacs/testrunner.rb +63 -0
  154. data/test-unit/lib/test/unit/ui/tap/testrunner.rb +82 -0
  155. data/test-unit/lib/test/unit/ui/testrunner.rb +53 -0
  156. data/test-unit/lib/test/unit/ui/testrunnermediator.rb +77 -0
  157. data/test-unit/lib/test/unit/ui/testrunnerutilities.rb +41 -0
  158. data/test-unit/lib/test/unit/util/backtracefilter.rb +42 -0
  159. data/test-unit/lib/test/unit/util/method-owner-finder.rb +28 -0
  160. data/test-unit/lib/test/unit/util/observable.rb +90 -0
  161. data/test-unit/lib/test/unit/util/output.rb +31 -0
  162. data/test-unit/lib/test/unit/util/procwrapper.rb +48 -0
  163. data/test-unit/lib/test/unit/version.rb +7 -0
  164. data/test-unit/lib/test/unit.rb +328 -0
  165. data/test-unit/sample/adder.rb +13 -0
  166. data/test-unit/sample/subtracter.rb +12 -0
  167. data/test-unit/sample/test_adder.rb +20 -0
  168. data/test-unit/sample/test_subtracter.rb +20 -0
  169. data/test-unit/sample/test_user.rb +23 -0
  170. data/test-unit/test/collector/test-descendant.rb +133 -0
  171. data/test-unit/test/collector/test-load.rb +442 -0
  172. data/test-unit/test/collector/test_dir.rb +406 -0
  173. data/test-unit/test/collector/test_objectspace.rb +100 -0
  174. data/test-unit/test/run-test.rb +15 -0
  175. data/test-unit/test/test-attribute.rb +86 -0
  176. data/test-unit/test/test-color-scheme.rb +69 -0
  177. data/test-unit/test/test-color.rb +47 -0
  178. data/test-unit/test/test-diff.rb +518 -0
  179. data/test-unit/test/test-emacs-runner.rb +60 -0
  180. data/test-unit/test/test-fixture.rb +287 -0
  181. data/test-unit/test/test-notification.rb +33 -0
  182. data/test-unit/test/test-omission.rb +81 -0
  183. data/test-unit/test/test-pending.rb +70 -0
  184. data/test-unit/test/test-priority.rb +119 -0
  185. data/test-unit/test/test-testcase.rb +544 -0
  186. data/test-unit/test/test_assertions.rb +1197 -0
  187. data/test-unit/test/test_error.rb +26 -0
  188. data/test-unit/test/test_failure.rb +33 -0
  189. data/test-unit/test/test_testresult.rb +113 -0
  190. data/test-unit/test/test_testsuite.rb +129 -0
  191. data/test-unit/test/testunit-test-util.rb +14 -0
  192. data/test-unit/test/ui/test_tap.rb +33 -0
  193. data/test-unit/test/ui/test_testrunmediator.rb +20 -0
  194. data/test-unit/test/util/test-method-owner-finder.rb +38 -0
  195. data/test-unit/test/util/test-output.rb +11 -0
  196. data/test-unit/test/util/test_backtracefilter.rb +41 -0
  197. data/test-unit/test/util/test_observable.rb +102 -0
  198. data/test-unit/test/util/test_procwrapper.rb +36 -0
  199. data/vendor/local/bin/envsubst.exe +0 -0
  200. data/vendor/local/bin/gettext.exe +0 -0
  201. data/vendor/local/bin/gettext.sh +123 -0
  202. data/vendor/local/bin/glib-genmarshal.exe +0 -0
  203. data/vendor/local/bin/glib-gettextize +188 -0
  204. data/vendor/local/bin/glib-mkenums +511 -0
  205. data/vendor/local/bin/gobject-query.exe +0 -0
  206. data/vendor/local/bin/gspawn-win32-helper-console.exe +0 -0
  207. data/vendor/local/bin/gspawn-win32-helper.exe +0 -0
  208. data/vendor/local/bin/intl.dll +0 -0
  209. data/vendor/local/bin/libasprintf-0.dll +0 -0
  210. data/vendor/local/bin/libgcc_s_dw2-1.dll +0 -0
  211. data/vendor/local/bin/libgio-2.0-0.dll +0 -0
  212. data/vendor/local/bin/libglib-2.0-0.dll +0 -0
  213. data/vendor/local/bin/libgmodule-2.0-0.dll +0 -0
  214. data/vendor/local/bin/libgobject-2.0-0.dll +0 -0
  215. data/vendor/local/bin/libgthread-2.0-0.dll +0 -0
  216. data/vendor/local/bin/ngettext.exe +0 -0
  217. data/vendor/local/include/autosprintf.h +66 -0
  218. data/vendor/local/include/glib-2.0/gio/gappinfo.h +237 -0
  219. data/vendor/local/include/glib-2.0/gio/gasyncinitable.h +119 -0
  220. data/vendor/local/include/glib-2.0/gio/gasyncresult.h +73 -0
  221. data/vendor/local/include/glib-2.0/gio/gbufferedinputstream.h +123 -0
  222. data/vendor/local/include/glib-2.0/gio/gbufferedoutputstream.h +82 -0
  223. data/vendor/local/include/glib-2.0/gio/gcancellable.h +103 -0
  224. data/vendor/local/include/glib-2.0/gio/gcharsetconverter.h +60 -0
  225. data/vendor/local/include/glib-2.0/gio/gcontenttype.h +57 -0
  226. data/vendor/local/include/glib-2.0/gio/gconverter.h +95 -0
  227. data/vendor/local/include/glib-2.0/gio/gconverterinputstream.h +80 -0
  228. data/vendor/local/include/glib-2.0/gio/gconverteroutputstream.h +80 -0
  229. data/vendor/local/include/glib-2.0/gio/gdatainputstream.h +133 -0
  230. data/vendor/local/include/glib-2.0/gio/gdataoutputstream.h +116 -0
  231. data/vendor/local/include/glib-2.0/gio/gdrive.h +225 -0
  232. data/vendor/local/include/glib-2.0/gio/gemblem.h +58 -0
  233. data/vendor/local/include/glib-2.0/gio/gemblemedicon.h +62 -0
  234. data/vendor/local/include/glib-2.0/gio/gfile.h +1017 -0
  235. data/vendor/local/include/glib-2.0/gio/gfileattribute.h +77 -0
  236. data/vendor/local/include/glib-2.0/gio/gfileenumerator.h +133 -0
  237. data/vendor/local/include/glib-2.0/gio/gfileicon.h +56 -0
  238. data/vendor/local/include/glib-2.0/gio/gfileinfo.h +951 -0
  239. data/vendor/local/include/glib-2.0/gio/gfileinputstream.h +112 -0
  240. data/vendor/local/include/glib-2.0/gio/gfileiostream.h +118 -0
  241. data/vendor/local/include/glib-2.0/gio/gfilemonitor.h +95 -0
  242. data/vendor/local/include/glib-2.0/gio/gfilenamecompleter.h +76 -0
  243. data/vendor/local/include/glib-2.0/gio/gfileoutputstream.h +119 -0
  244. data/vendor/local/include/glib-2.0/gio/gfilterinputstream.h +76 -0
  245. data/vendor/local/include/glib-2.0/gio/gfilteroutputstream.h +76 -0
  246. data/vendor/local/include/glib-2.0/gio/gicon.h +91 -0
  247. data/vendor/local/include/glib-2.0/gio/ginetaddress.h +103 -0
  248. data/vendor/local/include/glib-2.0/gio/ginetsocketaddress.h +69 -0
  249. data/vendor/local/include/glib-2.0/gio/ginitable.h +96 -0
  250. data/vendor/local/include/glib-2.0/gio/ginputstream.h +172 -0
  251. data/vendor/local/include/glib-2.0/gio/gio.h +101 -0
  252. data/vendor/local/include/glib-2.0/gio/gioenums.h +703 -0
  253. data/vendor/local/include/glib-2.0/gio/gioenumtypes.h +79 -0
  254. data/vendor/local/include/glib-2.0/gio/gioerror.h +48 -0
  255. data/vendor/local/include/glib-2.0/gio/giomodule.h +132 -0
  256. data/vendor/local/include/glib-2.0/gio/gioscheduler.h +52 -0
  257. data/vendor/local/include/glib-2.0/gio/giostream.h +112 -0
  258. data/vendor/local/include/glib-2.0/gio/giotypes.h +339 -0
  259. data/vendor/local/include/glib-2.0/gio/gloadableicon.h +97 -0
  260. data/vendor/local/include/glib-2.0/gio/gmemoryinputstream.h +82 -0
  261. data/vendor/local/include/glib-2.0/gio/gmemoryoutputstream.h +97 -0
  262. data/vendor/local/include/glib-2.0/gio/gmount.h +242 -0
  263. data/vendor/local/include/glib-2.0/gio/gmountoperation.h +123 -0
  264. data/vendor/local/include/glib-2.0/gio/gnativevolumemonitor.h +62 -0
  265. data/vendor/local/include/glib-2.0/gio/gnetworkaddress.h +69 -0
  266. data/vendor/local/include/glib-2.0/gio/gnetworkservice.h +69 -0
  267. data/vendor/local/include/glib-2.0/gio/goutputstream.h +207 -0
  268. data/vendor/local/include/glib-2.0/gio/gresolver.h +167 -0
  269. data/vendor/local/include/glib-2.0/gio/gseekable.h +99 -0
  270. data/vendor/local/include/glib-2.0/gio/gsimpleasyncresult.h +125 -0
  271. data/vendor/local/include/glib-2.0/gio/gsocket.h +176 -0
  272. data/vendor/local/include/glib-2.0/gio/gsocketaddress.h +79 -0
  273. data/vendor/local/include/glib-2.0/gio/gsocketaddressenumerator.h +89 -0
  274. data/vendor/local/include/glib-2.0/gio/gsocketclient.h +130 -0
  275. data/vendor/local/include/glib-2.0/gio/gsocketconnectable.h +68 -0
  276. data/vendor/local/include/glib-2.0/gio/gsocketconnection.h +91 -0
  277. data/vendor/local/include/glib-2.0/gio/gsocketcontrolmessage.h +105 -0
  278. data/vendor/local/include/glib-2.0/gio/gsocketlistener.h +138 -0
  279. data/vendor/local/include/glib-2.0/gio/gsocketservice.h +88 -0
  280. data/vendor/local/include/glib-2.0/gio/gsrvtarget.h +52 -0
  281. data/vendor/local/include/glib-2.0/gio/gtcpconnection.h +68 -0
  282. data/vendor/local/include/glib-2.0/gio/gthemedicon.h +63 -0
  283. data/vendor/local/include/glib-2.0/gio/gthreadedsocketservice.h +81 -0
  284. data/vendor/local/include/glib-2.0/gio/gvfs.h +125 -0
  285. data/vendor/local/include/glib-2.0/gio/gvolume.h +211 -0
  286. data/vendor/local/include/glib-2.0/gio/gvolumemonitor.h +151 -0
  287. data/vendor/local/include/glib-2.0/gio/gzlibcompressor.h +55 -0
  288. data/vendor/local/include/glib-2.0/gio/gzlibdecompressor.h +54 -0
  289. data/vendor/local/include/glib-2.0/glib/galloca.h +63 -0
  290. data/vendor/local/include/glib-2.0/glib/garray.h +179 -0
  291. data/vendor/local/include/glib-2.0/glib/gasyncqueue.h +120 -0
  292. data/vendor/local/include/glib-2.0/glib/gatomic.h +85 -0
  293. data/vendor/local/include/glib-2.0/glib/gbacktrace.h +68 -0
  294. data/vendor/local/include/glib-2.0/glib/gbase64.h +57 -0
  295. data/vendor/local/include/glib-2.0/glib/gbitlock.h +43 -0
  296. data/vendor/local/include/glib-2.0/glib/gbookmarkfile.h +191 -0
  297. data/vendor/local/include/glib-2.0/glib/gcache.h +69 -0
  298. data/vendor/local/include/glib-2.0/glib/gchecksum.h +86 -0
  299. data/vendor/local/include/glib-2.0/glib/gcompletion.h +77 -0
  300. data/vendor/local/include/glib-2.0/glib/gconvert.h +138 -0
  301. data/vendor/local/include/glib-2.0/glib/gdataset.h +122 -0
  302. data/vendor/local/include/glib-2.0/glib/gdate.h +263 -0
  303. data/vendor/local/include/glib-2.0/glib/gdir.h +52 -0
  304. data/vendor/local/include/glib-2.0/glib/gerror.h +98 -0
  305. data/vendor/local/include/glib-2.0/glib/gfileutils.h +128 -0
  306. data/vendor/local/include/glib-2.0/glib/ghash.h +166 -0
  307. data/vendor/local/include/glib-2.0/glib/ghook.h +181 -0
  308. data/vendor/local/include/glib-2.0/glib/ghostutils.h +40 -0
  309. data/vendor/local/include/glib-2.0/glib/gi18n-lib.h +38 -0
  310. data/vendor/local/include/glib-2.0/glib/gi18n.h +34 -0
  311. data/vendor/local/include/glib-2.0/glib/giochannel.h +366 -0
  312. data/vendor/local/include/glib-2.0/glib/gkeyfile.h +250 -0
  313. data/vendor/local/include/glib-2.0/glib/glist.h +120 -0
  314. data/vendor/local/include/glib-2.0/glib/gmacros.h +277 -0
  315. data/vendor/local/include/glib-2.0/glib/gmain.h +304 -0
  316. data/vendor/local/include/glib-2.0/glib/gmappedfile.h +49 -0
  317. data/vendor/local/include/glib-2.0/glib/gmarkup.h +163 -0
  318. data/vendor/local/include/glib-2.0/glib/gmem.h +203 -0
  319. data/vendor/local/include/glib-2.0/glib/gmessages.h +343 -0
  320. data/vendor/local/include/glib-2.0/glib/gnode.h +288 -0
  321. data/vendor/local/include/glib-2.0/glib/goption.h +370 -0
  322. data/vendor/local/include/glib-2.0/glib/gpattern.h +49 -0
  323. data/vendor/local/include/glib-2.0/glib/gpoll.h +93 -0
  324. data/vendor/local/include/glib-2.0/glib/gprimes.h +51 -0
  325. data/vendor/local/include/glib-2.0/glib/gprintf.h +52 -0
  326. data/vendor/local/include/glib-2.0/glib/gqsort.h +46 -0
  327. data/vendor/local/include/glib-2.0/glib/gquark.h +52 -0
  328. data/vendor/local/include/glib-2.0/glib/gqueue.h +127 -0
  329. data/vendor/local/include/glib-2.0/glib/grand.h +85 -0
  330. data/vendor/local/include/glib-2.0/glib/gregex.h +243 -0
  331. data/vendor/local/include/glib-2.0/glib/grel.h +97 -0
  332. data/vendor/local/include/glib-2.0/glib/gscanner.h +278 -0
  333. data/vendor/local/include/glib-2.0/glib/gsequence.h +128 -0
  334. data/vendor/local/include/glib-2.0/glib/gshell.h +55 -0
  335. data/vendor/local/include/glib-2.0/glib/gslice.h +86 -0
  336. data/vendor/local/include/glib-2.0/glib/gslist.h +114 -0
  337. data/vendor/local/include/glib-2.0/glib/gspawn.h +139 -0
  338. data/vendor/local/include/glib-2.0/glib/gstdio.h +159 -0
  339. data/vendor/local/include/glib-2.0/glib/gstrfuncs.h +267 -0
  340. data/vendor/local/include/glib-2.0/glib/gstring.h +178 -0
  341. data/vendor/local/include/glib-2.0/glib/gtestutils.h +292 -0
  342. data/vendor/local/include/glib-2.0/glib/gthread.h +408 -0
  343. data/vendor/local/include/glib-2.0/glib/gthreadpool.h +114 -0
  344. data/vendor/local/include/glib-2.0/glib/gtimer.h +65 -0
  345. data/vendor/local/include/glib-2.0/glib/gtree.h +91 -0
  346. data/vendor/local/include/glib-2.0/glib/gtypes.h +451 -0
  347. data/vendor/local/include/glib-2.0/glib/gunicode.h +404 -0
  348. data/vendor/local/include/glib-2.0/glib/gurifuncs.h +81 -0
  349. data/vendor/local/include/glib-2.0/glib/gutils.h +490 -0
  350. data/vendor/local/include/glib-2.0/glib/gvariant.h +224 -0
  351. data/vendor/local/include/glib-2.0/glib/gvarianttype.h +305 -0
  352. data/vendor/local/include/glib-2.0/glib/gwin32.h +114 -0
  353. data/vendor/local/include/glib-2.0/glib-object.h +41 -0
  354. data/vendor/local/include/glib-2.0/glib.h +97 -0
  355. data/vendor/local/include/glib-2.0/gmodule.h +101 -0
  356. data/vendor/local/include/glib-2.0/gobject/gboxed.h +236 -0
  357. data/vendor/local/include/glib-2.0/gobject/gclosure.h +251 -0
  358. data/vendor/local/include/glib-2.0/gobject/genums.h +261 -0
  359. data/vendor/local/include/glib-2.0/gobject/gmarshal.h +169 -0
  360. data/vendor/local/include/glib-2.0/gobject/gobject.h +562 -0
  361. data/vendor/local/include/glib-2.0/gobject/gobjectnotifyqueue.c +166 -0
  362. data/vendor/local/include/glib-2.0/gobject/gparam.h +410 -0
  363. data/vendor/local/include/glib-2.0/gobject/gparamspecs.h +1083 -0
  364. data/vendor/local/include/glib-2.0/gobject/gsignal.h +509 -0
  365. data/vendor/local/include/glib-2.0/gobject/gsourceclosure.h +51 -0
  366. data/vendor/local/include/glib-2.0/gobject/gtype.h +1608 -0
  367. data/vendor/local/include/glib-2.0/gobject/gtypemodule.h +263 -0
  368. data/vendor/local/include/glib-2.0/gobject/gtypeplugin.h +134 -0
  369. data/vendor/local/include/glib-2.0/gobject/gvalue.h +159 -0
  370. data/vendor/local/include/glib-2.0/gobject/gvaluearray.h +77 -0
  371. data/vendor/local/include/glib-2.0/gobject/gvaluecollector.h +222 -0
  372. data/vendor/local/include/glib-2.0/gobject/gvaluetypes.h +243 -0
  373. data/vendor/local/include/libintl.h +464 -0
  374. data/vendor/local/lib/GNU.Gettext.dll +0 -0
  375. data/vendor/local/lib/gio-2.0.def +800 -0
  376. data/vendor/local/lib/gio-2.0.lib +0 -0
  377. data/vendor/local/lib/glib-2.0/include/glibconfig.h +284 -0
  378. data/vendor/local/lib/glib-2.0.def +1381 -0
  379. data/vendor/local/lib/glib-2.0.lib +0 -0
  380. data/vendor/local/lib/gmodule-2.0.def +11 -0
  381. data/vendor/local/lib/gmodule-2.0.lib +0 -0
  382. data/vendor/local/lib/gobject-2.0.def +349 -0
  383. data/vendor/local/lib/gobject-2.0.lib +0 -0
  384. data/vendor/local/lib/gthread-2.0.def +3 -0
  385. data/vendor/local/lib/gthread-2.0.lib +0 -0
  386. data/vendor/local/lib/intl.lib +0 -0
  387. data/vendor/local/lib/libasprintf.dll.a +0 -0
  388. data/vendor/local/lib/libgio-2.0.dll.a +0 -0
  389. data/vendor/local/lib/libglib-2.0.dll.a +0 -0
  390. data/vendor/local/lib/libgmodule-2.0.dll.a +0 -0
  391. data/vendor/local/lib/libgobject-2.0.dll.a +0 -0
  392. data/vendor/local/lib/libgthread-2.0.dll.a +0 -0
  393. data/vendor/local/lib/libintl.def +31 -0
  394. data/vendor/local/lib/libintl.dll.a +0 -0
  395. data/vendor/local/lib/pkgconfig/gio-2.0.pc +14 -0
  396. data/vendor/local/lib/pkgconfig/glib-2.0.pc +15 -0
  397. data/vendor/local/lib/pkgconfig/gmodule-2.0.pc +14 -0
  398. data/vendor/local/lib/pkgconfig/gmodule-no-export-2.0.pc +14 -0
  399. data/vendor/local/lib/pkgconfig/gobject-2.0.pc +11 -0
  400. data/vendor/local/lib/pkgconfig/gthread-2.0.pc +11 -0
  401. data/vendor/local/manifest/gettext-runtime-dev_0.18.1.1-2_win32.mft +81 -0
  402. data/vendor/local/manifest/gettext-runtime_0.18.1.1-2_win32.mft +3 -0
  403. data/vendor/local/manifest/glib-dev_2.24.2-2_win32.mft +491 -0
  404. data/vendor/local/manifest/glib_2.24.2-2_win32.mft +101 -0
  405. data/vendor/local/share/aclocal/glib-2.0.m4 +211 -0
  406. data/vendor/local/share/aclocal/glib-gettext.m4 +432 -0
  407. data/vendor/local/share/doc/gettext/bind_textdomain_codeset.3.html +165 -0
  408. data/vendor/local/share/doc/gettext/bindtextdomain.3.html +160 -0
  409. data/vendor/local/share/doc/gettext/csharpdoc/GNU_Gettext.html +8 -0
  410. data/vendor/local/share/doc/gettext/csharpdoc/GNU_Gettext_GettextResourceManager.html +305 -0
  411. data/vendor/local/share/doc/gettext/csharpdoc/GNU_Gettext_GettextResourceSet.html +356 -0
  412. data/vendor/local/share/doc/gettext/csharpdoc/begin.html +11 -0
  413. data/vendor/local/share/doc/gettext/csharpdoc/index.html +10 -0
  414. data/vendor/local/share/doc/gettext/csharpdoc/namespaces.html +6 -0
  415. data/vendor/local/share/doc/gettext/envsubst.1.html +213 -0
  416. data/vendor/local/share/doc/gettext/gettext.1.html +266 -0
  417. data/vendor/local/share/doc/gettext/gettext.3.html +186 -0
  418. data/vendor/local/share/doc/gettext/ngettext.1.html +280 -0
  419. data/vendor/local/share/doc/gettext/ngettext.3.html +143 -0
  420. data/vendor/local/share/doc/gettext/textdomain.3.html +150 -0
  421. data/vendor/local/share/doc/glib-2.24.2/COPYING +482 -0
  422. data/vendor/local/share/doc/glib-dev-2.24.2/COPYING +482 -0
  423. data/vendor/local/share/doc/libasprintf/autosprintf_all.html +174 -0
  424. data/vendor/local/share/glib-2.0/gdb/glib.py +252 -0
  425. data/vendor/local/share/glib-2.0/gdb/gobject.py +305 -0
  426. data/vendor/local/share/glib-2.0/gettext/mkinstalldirs +111 -0
  427. data/vendor/local/share/glib-2.0/gettext/po/Makefile.in.in +277 -0
  428. data/vendor/local/share/gtk-doc/html/gio/GAppInfo.html +1390 -0
  429. data/vendor/local/share/gtk-doc/html/gio/GAsyncInitable.html +531 -0
  430. data/vendor/local/share/gtk-doc/html/gio/GAsyncResult.html +343 -0
  431. data/vendor/local/share/gtk-doc/html/gio/GBufferedInputStream.html +568 -0
  432. data/vendor/local/share/gtk-doc/html/gio/GBufferedOutputStream.html +295 -0
  433. data/vendor/local/share/gtk-doc/html/gio/GCancellable.html +620 -0
  434. data/vendor/local/share/gtk-doc/html/gio/GCharsetConverter.html +245 -0
  435. data/vendor/local/share/gtk-doc/html/gio/GConverter.html +388 -0
  436. data/vendor/local/share/gtk-doc/html/gio/GDataInputStream.html +993 -0
  437. data/vendor/local/share/gtk-doc/html/gio/GDataOutputStream.html +544 -0
  438. data/vendor/local/share/gtk-doc/html/gio/GDrive.html +1416 -0
  439. data/vendor/local/share/gtk-doc/html/gio/GEmblem.html +272 -0
  440. data/vendor/local/share/gtk-doc/html/gio/GEmblemedIcon.html +206 -0
  441. data/vendor/local/share/gtk-doc/html/gio/GFile.html +7450 -0
  442. data/vendor/local/share/gtk-doc/html/gio/GFileDescriptorBased.html +115 -0
  443. data/vendor/local/share/gtk-doc/html/gio/GFileEnumerator.html +520 -0
  444. data/vendor/local/share/gtk-doc/html/gio/GFileIOStream.html +312 -0
  445. data/vendor/local/share/gtk-doc/html/gio/GFileIcon.html +155 -0
  446. data/vendor/local/share/gtk-doc/html/gio/GFileInfo.html +3116 -0
  447. data/vendor/local/share/gtk-doc/html/gio/GFileInputStream.html +262 -0
  448. data/vendor/local/share/gtk-doc/html/gio/GFileMonitor.html +353 -0
  449. data/vendor/local/share/gtk-doc/html/gio/GFileOutputStream.html +301 -0
  450. data/vendor/local/share/gtk-doc/html/gio/GFilenameCompleter.html +217 -0
  451. data/vendor/local/share/gtk-doc/html/gio/GFilterInputStream.html +182 -0
  452. data/vendor/local/share/gtk-doc/html/gio/GFilterOutputStream.html +183 -0
  453. data/vendor/local/share/gtk-doc/html/gio/GIOModule.html +261 -0
  454. data/vendor/local/share/gtk-doc/html/gio/GIOStream.html +479 -0
  455. data/vendor/local/share/gtk-doc/html/gio/GIcon.html +331 -0
  456. data/vendor/local/share/gtk-doc/html/gio/GInetAddress.html +717 -0
  457. data/vendor/local/share/gtk-doc/html/gio/GInetSocketAddress.html +195 -0
  458. data/vendor/local/share/gtk-doc/html/gio/GInitable.html +388 -0
  459. data/vendor/local/share/gtk-doc/html/gio/GInputStream.html +808 -0
  460. data/vendor/local/share/gtk-doc/html/gio/GLoadableIcon.html +301 -0
  461. data/vendor/local/share/gtk-doc/html/gio/GMemoryInputStream.html +185 -0
  462. data/vendor/local/share/gtk-doc/html/gio/GMemoryOutputStream.html +362 -0
  463. data/vendor/local/share/gtk-doc/html/gio/GMount.html +1465 -0
  464. data/vendor/local/share/gtk-doc/html/gio/GMountOperation.html +848 -0
  465. data/vendor/local/share/gtk-doc/html/gio/GNetworkAddress.html +263 -0
  466. data/vendor/local/share/gtk-doc/html/gio/GNetworkService.html +248 -0
  467. data/vendor/local/share/gtk-doc/html/gio/GOutputStream.html +1006 -0
  468. data/vendor/local/share/gtk-doc/html/gio/GResolver.html +787 -0
  469. data/vendor/local/share/gtk-doc/html/gio/GSeekable.html +350 -0
  470. data/vendor/local/share/gtk-doc/html/gio/GSimpleAsyncResult.html +979 -0
  471. data/vendor/local/share/gtk-doc/html/gio/GSocket.html +2152 -0
  472. data/vendor/local/share/gtk-doc/html/gio/GSocketAddress.html +297 -0
  473. data/vendor/local/share/gtk-doc/html/gio/GSocketClient.html +930 -0
  474. data/vendor/local/share/gtk-doc/html/gio/GSocketConnectable.html +428 -0
  475. data/vendor/local/share/gtk-doc/html/gio/GSocketConnection.html +548 -0
  476. data/vendor/local/share/gtk-doc/html/gio/GSocketControlMessage.html +274 -0
  477. data/vendor/local/share/gtk-doc/html/gio/GSocketListener.html +741 -0
  478. data/vendor/local/share/gtk-doc/html/gio/GSocketService.html +258 -0
  479. data/vendor/local/share/gtk-doc/html/gio/GThemedIcon.html +377 -0
  480. data/vendor/local/share/gtk-doc/html/gio/GThreadedSocketService.html +197 -0
  481. data/vendor/local/share/gtk-doc/html/gio/GUnixFDList.html +381 -0
  482. data/vendor/local/share/gtk-doc/html/gio/GUnixFDMessage.html +280 -0
  483. data/vendor/local/share/gtk-doc/html/gio/GUnixInputStream.html +237 -0
  484. data/vendor/local/share/gtk-doc/html/gio/GUnixOutputStream.html +237 -0
  485. data/vendor/local/share/gtk-doc/html/gio/GUnixSocketAddress.html +306 -0
  486. data/vendor/local/share/gtk-doc/html/gio/GVfs.html +274 -0
  487. data/vendor/local/share/gtk-doc/html/gio/GVolume.html +1028 -0
  488. data/vendor/local/share/gtk-doc/html/gio/GVolumeMonitor.html +709 -0
  489. data/vendor/local/share/gtk-doc/html/gio/GZlibCompressor.html +180 -0
  490. data/vendor/local/share/gtk-doc/html/gio/GZlibDecompressor.html +128 -0
  491. data/vendor/local/share/gtk-doc/html/gio/api-index-2-18.html +153 -0
  492. data/vendor/local/share/gtk-doc/html/gio/api-index-2-20.html +155 -0
  493. data/vendor/local/share/gtk-doc/html/gio/api-index-2-22.html +1088 -0
  494. data/vendor/local/share/gtk-doc/html/gio/api-index-2-24.html +206 -0
  495. data/vendor/local/share/gtk-doc/html/gio/api-index-deprecated.html +97 -0
  496. data/vendor/local/share/gtk-doc/html/gio/api-index-full.html +4499 -0
  497. data/vendor/local/share/gtk-doc/html/gio/async.html +44 -0
  498. data/vendor/local/share/gtk-doc/html/gio/ch01.html +171 -0
  499. data/vendor/local/share/gtk-doc/html/gio/ch02.html +45 -0
  500. data/vendor/local/share/gtk-doc/html/gio/ch03.html +80 -0
  501. data/vendor/local/share/gtk-doc/html/gio/ch19.html +75 -0
  502. data/vendor/local/share/gtk-doc/html/gio/ch20.html +217 -0
  503. data/vendor/local/share/gtk-doc/html/gio/ch20s02.html +41 -0
  504. data/vendor/local/share/gtk-doc/html/gio/ch20s03.html +39 -0
  505. data/vendor/local/share/gtk-doc/html/gio/conversion.html +44 -0
  506. data/vendor/local/share/gtk-doc/html/gio/extending-gio.html +96 -0
  507. data/vendor/local/share/gtk-doc/html/gio/extending.html +41 -0
  508. data/vendor/local/share/gtk-doc/html/gio/failable_initialization.html +38 -0
  509. data/vendor/local/share/gtk-doc/html/gio/file_mon.html +33 -0
  510. data/vendor/local/share/gtk-doc/html/gio/file_ops.html +50 -0
  511. data/vendor/local/share/gtk-doc/html/gio/gio-Desktop-file-based-GAppInfo.html +339 -0
  512. data/vendor/local/share/gtk-doc/html/gio/gio-Extension-Points.html +465 -0
  513. data/vendor/local/share/gtk-doc/html/gio/gio-GContentType.html +381 -0
  514. data/vendor/local/share/gtk-doc/html/gio/gio-GConverterInputstream.html +163 -0
  515. data/vendor/local/share/gtk-doc/html/gio/gio-GConverterOutputstream.html +163 -0
  516. data/vendor/local/share/gtk-doc/html/gio/gio-GFileAttribute.html +927 -0
  517. data/vendor/local/share/gtk-doc/html/gio/gio-GIOError.html +328 -0
  518. data/vendor/local/share/gtk-doc/html/gio/gio-GIOScheduler.html +297 -0
  519. data/vendor/local/share/gtk-doc/html/gio/gio-GSrvTarget.html +313 -0
  520. data/vendor/local/share/gtk-doc/html/gio/gio-Unix-Mounts.html +918 -0
  521. data/vendor/local/share/gtk-doc/html/gio/gio-hierarchy.html +107 -0
  522. data/vendor/local/share/gtk-doc/html/gio/gio.devhelp +1235 -0
  523. data/vendor/local/share/gtk-doc/html/gio/gio.devhelp2 +1384 -0
  524. data/vendor/local/share/gtk-doc/html/gio/gvfs-overview.png +0 -0
  525. data/vendor/local/share/gtk-doc/html/gio/highlevel-socket.html +47 -0
  526. data/vendor/local/share/gtk-doc/html/gio/home.png +0 -0
  527. data/vendor/local/share/gtk-doc/html/gio/icons.html +50 -0
  528. data/vendor/local/share/gtk-doc/html/gio/index.html +318 -0
  529. data/vendor/local/share/gtk-doc/html/gio/index.sgml +1795 -0
  530. data/vendor/local/share/gtk-doc/html/gio/left.png +0 -0
  531. data/vendor/local/share/gtk-doc/html/gio/migrating.html +42 -0
  532. data/vendor/local/share/gtk-doc/html/gio/networking.html +57 -0
  533. data/vendor/local/share/gtk-doc/html/gio/pt01.html +39 -0
  534. data/vendor/local/share/gtk-doc/html/gio/pt02.html +293 -0
  535. data/vendor/local/share/gtk-doc/html/gio/resolver.html +47 -0
  536. data/vendor/local/share/gtk-doc/html/gio/right.png +0 -0
  537. data/vendor/local/share/gtk-doc/html/gio/streaming.html +92 -0
  538. data/vendor/local/share/gtk-doc/html/gio/style.css +257 -0
  539. data/vendor/local/share/gtk-doc/html/gio/types.html +41 -0
  540. data/vendor/local/share/gtk-doc/html/gio/up.png +0 -0
  541. data/vendor/local/share/gtk-doc/html/gio/utils.html +33 -0
  542. data/vendor/local/share/gtk-doc/html/gio/volume_mon.html +47 -0
  543. data/vendor/local/share/gtk-doc/html/glib/api-index-2-10.html +180 -0
  544. data/vendor/local/share/gtk-doc/html/glib/api-index-2-12.html +312 -0
  545. data/vendor/local/share/gtk-doc/html/glib/api-index-2-14.html +563 -0
  546. data/vendor/local/share/gtk-doc/html/glib/api-index-2-16.html +362 -0
  547. data/vendor/local/share/gtk-doc/html/glib/api-index-2-18.html +102 -0
  548. data/vendor/local/share/gtk-doc/html/glib/api-index-2-2.html +124 -0
  549. data/vendor/local/share/gtk-doc/html/glib/api-index-2-20.html +83 -0
  550. data/vendor/local/share/gtk-doc/html/glib/api-index-2-22.html +194 -0
  551. data/vendor/local/share/gtk-doc/html/glib/api-index-2-24.html +419 -0
  552. data/vendor/local/share/gtk-doc/html/glib/api-index-2-4.html +389 -0
  553. data/vendor/local/share/gtk-doc/html/glib/api-index-2-6.html +413 -0
  554. data/vendor/local/share/gtk-doc/html/glib/api-index-2-8.html +158 -0
  555. data/vendor/local/share/gtk-doc/html/glib/api-index-deprecated.html +340 -0
  556. data/vendor/local/share/gtk-doc/html/glib/api-index-full.html +7835 -0
  557. data/vendor/local/share/gtk-doc/html/glib/file-name-encodings.png +0 -0
  558. data/vendor/local/share/gtk-doc/html/glib/glib-Arrays.html +893 -0
  559. data/vendor/local/share/gtk-doc/html/glib/glib-Asynchronous-Queues.html +818 -0
  560. data/vendor/local/share/gtk-doc/html/glib/glib-Atomic-Operations.html +413 -0
  561. data/vendor/local/share/gtk-doc/html/glib/glib-Automatic-String-Completion.html +430 -0
  562. data/vendor/local/share/gtk-doc/html/glib/glib-Balanced-Binary-Trees.html +802 -0
  563. data/vendor/local/share/gtk-doc/html/glib/glib-Base64-Encoding.html +372 -0
  564. data/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html +500 -0
  565. data/vendor/local/share/gtk-doc/html/glib/glib-Bookmark-file-parser.html +2054 -0
  566. data/vendor/local/share/gtk-doc/html/glib/glib-Byte-Arrays.html +560 -0
  567. data/vendor/local/share/gtk-doc/html/glib/glib-Byte-Order-Macros.html +1686 -0
  568. data/vendor/local/share/gtk-doc/html/glib/glib-Caches.html +398 -0
  569. data/vendor/local/share/gtk-doc/html/glib/glib-Character-Set-Conversion.html +1187 -0
  570. data/vendor/local/share/gtk-doc/html/glib/glib-Commandline-option-parser.html +1665 -0
  571. data/vendor/local/share/gtk-doc/html/glib/glib-Data-Checksums.html +460 -0
  572. data/vendor/local/share/gtk-doc/html/glib/glib-Datasets.html +528 -0
  573. data/vendor/local/share/gtk-doc/html/glib/glib-Date-and-Time-Functions.html +2042 -0
  574. data/vendor/local/share/gtk-doc/html/glib/glib-Double-ended-Queues.html +1278 -0
  575. data/vendor/local/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html +1406 -0
  576. data/vendor/local/share/gtk-doc/html/glib/glib-Dynamic-Loading-of-Modules.html +548 -0
  577. data/vendor/local/share/gtk-doc/html/glib/glib-Error-Reporting.html +1023 -0
  578. data/vendor/local/share/gtk-doc/html/glib/glib-File-Utilities.html +1810 -0
  579. data/vendor/local/share/gtk-doc/html/glib/glib-GVariant.html +3798 -0
  580. data/vendor/local/share/gtk-doc/html/glib/glib-GVariantType.html +1815 -0
  581. data/vendor/local/share/gtk-doc/html/glib/glib-Glob-style-pattern-matching.html +295 -0
  582. data/vendor/local/share/gtk-doc/html/glib/glib-Hash-Tables.html +1512 -0
  583. data/vendor/local/share/gtk-doc/html/glib/glib-Hook-Functions.html +1367 -0
  584. data/vendor/local/share/gtk-doc/html/glib/glib-Hostname-Utilities.html +229 -0
  585. data/vendor/local/share/gtk-doc/html/glib/glib-I18N.html +629 -0
  586. data/vendor/local/share/gtk-doc/html/glib/glib-IO-Channels.html +2196 -0
  587. data/vendor/local/share/gtk-doc/html/glib/glib-Key-value-file-parser.html +2556 -0
  588. data/vendor/local/share/gtk-doc/html/glib/glib-Keyed-Data-Lists.html +612 -0
  589. data/vendor/local/share/gtk-doc/html/glib/glib-Lexical-Scanner.html +1451 -0
  590. data/vendor/local/share/gtk-doc/html/glib/glib-Limits-of-Basic-Types.html +389 -0
  591. data/vendor/local/share/gtk-doc/html/glib/glib-Memory-Allocation.html +1029 -0
  592. data/vendor/local/share/gtk-doc/html/glib/glib-Memory-Allocators.html +141 -0
  593. data/vendor/local/share/gtk-doc/html/glib/glib-Memory-Chunks.html +706 -0
  594. data/vendor/local/share/gtk-doc/html/glib/glib-Memory-Slices.html +510 -0
  595. data/vendor/local/share/gtk-doc/html/glib/glib-Message-Logging.html +703 -0
  596. data/vendor/local/share/gtk-doc/html/glib/glib-Miscellaneous-Macros.html +1045 -0
  597. data/vendor/local/share/gtk-doc/html/glib/glib-Miscellaneous-Utility-Functions.html +1523 -0
  598. data/vendor/local/share/gtk-doc/html/glib/glib-N-ary-Trees.html +1466 -0
  599. data/vendor/local/share/gtk-doc/html/glib/glib-Numerical-Definitions.html +204 -0
  600. data/vendor/local/share/gtk-doc/html/glib/glib-Perl-compatible-regular-expressions.html +2648 -0
  601. data/vendor/local/share/gtk-doc/html/glib/glib-Pointer-Arrays.html +752 -0
  602. data/vendor/local/share/gtk-doc/html/glib/glib-Quarks.html +269 -0
  603. data/vendor/local/share/gtk-doc/html/glib/glib-Random-Numbers.html +578 -0
  604. data/vendor/local/share/gtk-doc/html/glib/glib-Relations-and-Tuples.html +483 -0
  605. data/vendor/local/share/gtk-doc/html/glib/glib-Sequences.html +1353 -0
  606. data/vendor/local/share/gtk-doc/html/glib/glib-Shell-related-Utilities.html +238 -0
  607. data/vendor/local/share/gtk-doc/html/glib/glib-Simple-XML-Subset-Parser.html +1283 -0
  608. data/vendor/local/share/gtk-doc/html/glib/glib-Singly-Linked-Lists.html +1212 -0
  609. data/vendor/local/share/gtk-doc/html/glib/glib-Spawning-Processes.html +924 -0
  610. data/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html +466 -0
  611. data/vendor/local/share/gtk-doc/html/glib/glib-String-Chunks.html +301 -0
  612. data/vendor/local/share/gtk-doc/html/glib/glib-String-Utility-Functions.html +2947 -0
  613. data/vendor/local/share/gtk-doc/html/glib/glib-Strings.html +1290 -0
  614. data/vendor/local/share/gtk-doc/html/glib/glib-Testing.html +1719 -0
  615. data/vendor/local/share/gtk-doc/html/glib/glib-The-Main-Event-Loop.html +3379 -0
  616. data/vendor/local/share/gtk-doc/html/glib/glib-Thread-Pools.html +606 -0
  617. data/vendor/local/share/gtk-doc/html/glib/glib-Threads.html +3411 -0
  618. data/vendor/local/share/gtk-doc/html/glib/glib-Timers.html +245 -0
  619. data/vendor/local/share/gtk-doc/html/glib/glib-Trash-Stacks.html +188 -0
  620. data/vendor/local/share/gtk-doc/html/glib/glib-Type-Conversion-Macros.html +263 -0
  621. data/vendor/local/share/gtk-doc/html/glib/glib-URI-Functions.html +314 -0
  622. data/vendor/local/share/gtk-doc/html/glib/glib-Unicode-Manipulation.html +3356 -0
  623. data/vendor/local/share/gtk-doc/html/glib/glib-Version-Information.html +150 -0
  624. data/vendor/local/share/gtk-doc/html/glib/glib-Warnings-and-Assertions.html +438 -0
  625. data/vendor/local/share/gtk-doc/html/glib/glib-Windows-Compatibility-Functions.html +476 -0
  626. data/vendor/local/share/gtk-doc/html/glib/glib-building.html +438 -0
  627. data/vendor/local/share/gtk-doc/html/glib/glib-changes.html +159 -0
  628. data/vendor/local/share/gtk-doc/html/glib/glib-compiling.html +118 -0
  629. data/vendor/local/share/gtk-doc/html/glib/glib-core.html +64 -0
  630. data/vendor/local/share/gtk-doc/html/glib/glib-cross-compiling.html +160 -0
  631. data/vendor/local/share/gtk-doc/html/glib/glib-data-types.html +120 -0
  632. data/vendor/local/share/gtk-doc/html/glib/glib-fundamentals.html +59 -0
  633. data/vendor/local/share/gtk-doc/html/glib/glib-gettextize.html +93 -0
  634. data/vendor/local/share/gtk-doc/html/glib/glib-regex-syntax.html +2395 -0
  635. data/vendor/local/share/gtk-doc/html/glib/glib-resources.html +121 -0
  636. data/vendor/local/share/gtk-doc/html/glib/glib-running.html +302 -0
  637. data/vendor/local/share/gtk-doc/html/glib/glib-utilities.html +112 -0
  638. data/vendor/local/share/gtk-doc/html/glib/glib.devhelp +2084 -0
  639. data/vendor/local/share/gtk-doc/html/glib/glib.devhelp2 +2556 -0
  640. data/vendor/local/share/gtk-doc/html/glib/glib.html +80 -0
  641. data/vendor/local/share/gtk-doc/html/glib/gtester-report.html +72 -0
  642. data/vendor/local/share/gtk-doc/html/glib/gtester.html +131 -0
  643. data/vendor/local/share/gtk-doc/html/glib/gvariant-format-strings.html +1171 -0
  644. data/vendor/local/share/gtk-doc/html/glib/home.png +0 -0
  645. data/vendor/local/share/gtk-doc/html/glib/index.html +336 -0
  646. data/vendor/local/share/gtk-doc/html/glib/index.sgml +2717 -0
  647. data/vendor/local/share/gtk-doc/html/glib/left.png +0 -0
  648. data/vendor/local/share/gtk-doc/html/glib/mainloop-states.gif +0 -0
  649. data/vendor/local/share/gtk-doc/html/glib/right.png +0 -0
  650. data/vendor/local/share/gtk-doc/html/glib/style.css +257 -0
  651. data/vendor/local/share/gtk-doc/html/glib/tools.html +41 -0
  652. data/vendor/local/share/gtk-doc/html/glib/up.png +0 -0
  653. data/vendor/local/share/gtk-doc/html/gobject/GTypeModule.html +710 -0
  654. data/vendor/local/share/gtk-doc/html/gobject/GTypePlugin.html +453 -0
  655. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-10.html +85 -0
  656. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-12.html +55 -0
  657. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-14.html +51 -0
  658. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-18.html +46 -0
  659. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-2.html +38 -0
  660. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-22.html +46 -0
  661. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-24.html +72 -0
  662. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-4.html +178 -0
  663. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-6.html +42 -0
  664. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-8.html +42 -0
  665. data/vendor/local/share/gtk-doc/html/gobject/api-index-deprecated.html +50 -0
  666. data/vendor/local/share/gtk-doc/html/gobject/api-index-full.html +2577 -0
  667. data/vendor/local/share/gtk-doc/html/gobject/ch01s02.html +136 -0
  668. data/vendor/local/share/gtk-doc/html/gobject/ch06s03.html +113 -0
  669. data/vendor/local/share/gtk-doc/html/gobject/chapter-gobject.html +293 -0
  670. data/vendor/local/share/gtk-doc/html/gobject/chapter-gtype.html +263 -0
  671. data/vendor/local/share/gtk-doc/html/gobject/chapter-intro.html +92 -0
  672. data/vendor/local/share/gtk-doc/html/gobject/chapter-signal.html +214 -0
  673. data/vendor/local/share/gtk-doc/html/gobject/glib-genmarshal.html +355 -0
  674. data/vendor/local/share/gtk-doc/html/gobject/glib-mkenums.html +295 -0
  675. data/vendor/local/share/gtk-doc/html/gobject/glue.png +0 -0
  676. data/vendor/local/share/gtk-doc/html/gobject/gobject-Boxed-Types.html +406 -0
  677. data/vendor/local/share/gtk-doc/html/gobject/gobject-Closures.html +2355 -0
  678. data/vendor/local/share/gtk-doc/html/gobject/gobject-Enumeration-and-Flag-Types.html +847 -0
  679. data/vendor/local/share/gtk-doc/html/gobject/gobject-GParamSpec.html +1423 -0
  680. data/vendor/local/share/gtk-doc/html/gobject/gobject-Generic-values.html +776 -0
  681. data/vendor/local/share/gtk-doc/html/gobject/gobject-Signals.html +2741 -0
  682. data/vendor/local/share/gtk-doc/html/gobject/gobject-Standard-Parameter-and-Value-Types.html +5242 -0
  683. data/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html +2609 -0
  684. data/vendor/local/share/gtk-doc/html/gobject/gobject-Type-Information.html +4227 -0
  685. data/vendor/local/share/gtk-doc/html/gobject/gobject-Value-arrays.html +413 -0
  686. data/vendor/local/share/gtk-doc/html/gobject/gobject-Varargs-Value-Collection.html +230 -0
  687. data/vendor/local/share/gtk-doc/html/gobject/gobject-memory.html +234 -0
  688. data/vendor/local/share/gtk-doc/html/gobject/gobject-properties.html +270 -0
  689. data/vendor/local/share/gtk-doc/html/gobject/gobject-query.html +117 -0
  690. data/vendor/local/share/gtk-doc/html/gobject/gobject.devhelp +723 -0
  691. data/vendor/local/share/gtk-doc/html/gobject/gobject.devhelp2 +757 -0
  692. data/vendor/local/share/gtk-doc/html/gobject/gtype-conventions.html +143 -0
  693. data/vendor/local/share/gtk-doc/html/gobject/gtype-instantiable-classed.html +287 -0
  694. data/vendor/local/share/gtk-doc/html/gobject/gtype-non-instantiable-classed.html +316 -0
  695. data/vendor/local/share/gtk-doc/html/gobject/gtype-non-instantiable.html +76 -0
  696. data/vendor/local/share/gtk-doc/html/gobject/home.png +0 -0
  697. data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-chainup.html +100 -0
  698. data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-code.html +86 -0
  699. data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-construction.html +113 -0
  700. data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-destruction.html +122 -0
  701. data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-methods.html +257 -0
  702. data/vendor/local/share/gtk-doc/html/gobject/howto-gobject.html +283 -0
  703. data/vendor/local/share/gtk-doc/html/gobject/howto-interface-implement.html +125 -0
  704. data/vendor/local/share/gtk-doc/html/gobject/howto-interface-properties.html +167 -0
  705. data/vendor/local/share/gtk-doc/html/gobject/howto-interface.html +160 -0
  706. data/vendor/local/share/gtk-doc/html/gobject/howto-signals.html +121 -0
  707. data/vendor/local/share/gtk-doc/html/gobject/index.html +187 -0
  708. data/vendor/local/share/gtk-doc/html/gobject/index.sgml +734 -0
  709. data/vendor/local/share/gtk-doc/html/gobject/left.png +0 -0
  710. data/vendor/local/share/gtk-doc/html/gobject/pr01.html +72 -0
  711. data/vendor/local/share/gtk-doc/html/gobject/pt01.html +80 -0
  712. data/vendor/local/share/gtk-doc/html/gobject/pt02.html +66 -0
  713. data/vendor/local/share/gtk-doc/html/gobject/pt03.html +55 -0
  714. data/vendor/local/share/gtk-doc/html/gobject/right.png +0 -0
  715. data/vendor/local/share/gtk-doc/html/gobject/rn01.html +82 -0
  716. data/vendor/local/share/gtk-doc/html/gobject/rn02.html +47 -0
  717. data/vendor/local/share/gtk-doc/html/gobject/signal.html +377 -0
  718. data/vendor/local/share/gtk-doc/html/gobject/style.css +257 -0
  719. data/vendor/local/share/gtk-doc/html/gobject/tools-ginspector.html +35 -0
  720. data/vendor/local/share/gtk-doc/html/gobject/tools-gob.html +40 -0
  721. data/vendor/local/share/gtk-doc/html/gobject/tools-gtkdoc.html +63 -0
  722. data/vendor/local/share/gtk-doc/html/gobject/tools-refdb.html +55 -0
  723. data/vendor/local/share/gtk-doc/html/gobject/tools-vala.html +43 -0
  724. data/vendor/local/share/gtk-doc/html/gobject/up.png +0 -0
  725. data/vendor/local/share/locale/af/LC_MESSAGES/glib20.mo +0 -0
  726. data/vendor/local/share/locale/am/LC_MESSAGES/glib20.mo +0 -0
  727. data/vendor/local/share/locale/ar/LC_MESSAGES/glib20.mo +0 -0
  728. data/vendor/local/share/locale/as/LC_MESSAGES/glib20.mo +0 -0
  729. data/vendor/local/share/locale/ast/LC_MESSAGES/glib20.mo +0 -0
  730. data/vendor/local/share/locale/az/LC_MESSAGES/glib20.mo +0 -0
  731. data/vendor/local/share/locale/be/LC_MESSAGES/gettext-runtime.mo +0 -0
  732. data/vendor/local/share/locale/be/LC_MESSAGES/glib20.mo +0 -0
  733. data/vendor/local/share/locale/be@latin/LC_MESSAGES/glib20.mo +0 -0
  734. data/vendor/local/share/locale/bg/LC_MESSAGES/gettext-runtime.mo +0 -0
  735. data/vendor/local/share/locale/bg/LC_MESSAGES/glib20.mo +0 -0
  736. data/vendor/local/share/locale/bn/LC_MESSAGES/glib20.mo +0 -0
  737. data/vendor/local/share/locale/bn_IN/LC_MESSAGES/glib20.mo +0 -0
  738. data/vendor/local/share/locale/bs/LC_MESSAGES/glib20.mo +0 -0
  739. data/vendor/local/share/locale/ca/LC_MESSAGES/gettext-runtime.mo +0 -0
  740. data/vendor/local/share/locale/ca/LC_MESSAGES/glib20.mo +0 -0
  741. data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/glib20.mo +0 -0
  742. data/vendor/local/share/locale/cs/LC_MESSAGES/gettext-runtime.mo +0 -0
  743. data/vendor/local/share/locale/cs/LC_MESSAGES/glib20.mo +0 -0
  744. data/vendor/local/share/locale/cy/LC_MESSAGES/glib20.mo +0 -0
  745. data/vendor/local/share/locale/da/LC_MESSAGES/gettext-runtime.mo +0 -0
  746. data/vendor/local/share/locale/da/LC_MESSAGES/glib20.mo +0 -0
  747. data/vendor/local/share/locale/de/LC_MESSAGES/gettext-runtime.mo +0 -0
  748. data/vendor/local/share/locale/de/LC_MESSAGES/glib20.mo +0 -0
  749. data/vendor/local/share/locale/dz/LC_MESSAGES/glib20.mo +0 -0
  750. data/vendor/local/share/locale/el/LC_MESSAGES/gettext-runtime.mo +0 -0
  751. data/vendor/local/share/locale/el/LC_MESSAGES/glib20.mo +0 -0
  752. data/vendor/local/share/locale/en@boldquot/LC_MESSAGES/gettext-runtime.mo +0 -0
  753. data/vendor/local/share/locale/en@quot/LC_MESSAGES/gettext-runtime.mo +0 -0
  754. data/vendor/local/share/locale/en@shaw/LC_MESSAGES/glib20.mo +0 -0
  755. data/vendor/local/share/locale/en_CA/LC_MESSAGES/glib20.mo +0 -0
  756. data/vendor/local/share/locale/en_GB/LC_MESSAGES/glib20.mo +0 -0
  757. data/vendor/local/share/locale/eo/LC_MESSAGES/gettext-runtime.mo +0 -0
  758. data/vendor/local/share/locale/eo/LC_MESSAGES/glib20.mo +0 -0
  759. data/vendor/local/share/locale/es/LC_MESSAGES/gettext-runtime.mo +0 -0
  760. data/vendor/local/share/locale/es/LC_MESSAGES/glib20.mo +0 -0
  761. data/vendor/local/share/locale/et/LC_MESSAGES/gettext-runtime.mo +0 -0
  762. data/vendor/local/share/locale/et/LC_MESSAGES/glib20.mo +0 -0
  763. data/vendor/local/share/locale/eu/LC_MESSAGES/glib20.mo +0 -0
  764. data/vendor/local/share/locale/fa/LC_MESSAGES/glib20.mo +0 -0
  765. data/vendor/local/share/locale/fi/LC_MESSAGES/gettext-runtime.mo +0 -0
  766. data/vendor/local/share/locale/fi/LC_MESSAGES/glib20.mo +0 -0
  767. data/vendor/local/share/locale/fr/LC_MESSAGES/gettext-runtime.mo +0 -0
  768. data/vendor/local/share/locale/fr/LC_MESSAGES/glib20.mo +0 -0
  769. data/vendor/local/share/locale/ga/LC_MESSAGES/gettext-runtime.mo +0 -0
  770. data/vendor/local/share/locale/ga/LC_MESSAGES/glib20.mo +0 -0
  771. data/vendor/local/share/locale/gl/LC_MESSAGES/gettext-runtime.mo +0 -0
  772. data/vendor/local/share/locale/gl/LC_MESSAGES/glib20.mo +0 -0
  773. data/vendor/local/share/locale/gu/LC_MESSAGES/glib20.mo +0 -0
  774. data/vendor/local/share/locale/he/LC_MESSAGES/glib20.mo +0 -0
  775. data/vendor/local/share/locale/hi/LC_MESSAGES/glib20.mo +0 -0
  776. data/vendor/local/share/locale/hr/LC_MESSAGES/glib20.mo +0 -0
  777. data/vendor/local/share/locale/hu/LC_MESSAGES/glib20.mo +0 -0
  778. data/vendor/local/share/locale/hy/LC_MESSAGES/glib20.mo +0 -0
  779. data/vendor/local/share/locale/id/LC_MESSAGES/gettext-runtime.mo +0 -0
  780. data/vendor/local/share/locale/id/LC_MESSAGES/glib20.mo +0 -0
  781. data/vendor/local/share/locale/is/LC_MESSAGES/glib20.mo +0 -0
  782. data/vendor/local/share/locale/it/LC_MESSAGES/gettext-runtime.mo +0 -0
  783. data/vendor/local/share/locale/it/LC_MESSAGES/glib20.mo +0 -0
  784. data/vendor/local/share/locale/ja/LC_MESSAGES/gettext-runtime.mo +0 -0
  785. data/vendor/local/share/locale/ja/LC_MESSAGES/glib20.mo +0 -0
  786. data/vendor/local/share/locale/ka/LC_MESSAGES/glib20.mo +0 -0
  787. data/vendor/local/share/locale/kn/LC_MESSAGES/glib20.mo +0 -0
  788. data/vendor/local/share/locale/ko/LC_MESSAGES/gettext-runtime.mo +0 -0
  789. data/vendor/local/share/locale/ko/LC_MESSAGES/glib20.mo +0 -0
  790. data/vendor/local/share/locale/ku/LC_MESSAGES/glib20.mo +0 -0
  791. data/vendor/local/share/locale/locale.alias +77 -0
  792. data/vendor/local/share/locale/lt/LC_MESSAGES/glib20.mo +0 -0
  793. data/vendor/local/share/locale/lv/LC_MESSAGES/glib20.mo +0 -0
  794. data/vendor/local/share/locale/mai/LC_MESSAGES/glib20.mo +0 -0
  795. data/vendor/local/share/locale/mg/LC_MESSAGES/glib20.mo +0 -0
  796. data/vendor/local/share/locale/mk/LC_MESSAGES/glib20.mo +0 -0
  797. data/vendor/local/share/locale/ml/LC_MESSAGES/glib20.mo +0 -0
  798. data/vendor/local/share/locale/mn/LC_MESSAGES/glib20.mo +0 -0
  799. data/vendor/local/share/locale/mr/LC_MESSAGES/glib20.mo +0 -0
  800. data/vendor/local/share/locale/ms/LC_MESSAGES/glib20.mo +0 -0
  801. data/vendor/local/share/locale/nb/LC_MESSAGES/gettext-runtime.mo +0 -0
  802. data/vendor/local/share/locale/nb/LC_MESSAGES/glib20.mo +0 -0
  803. data/vendor/local/share/locale/nds/LC_MESSAGES/glib20.mo +0 -0
  804. data/vendor/local/share/locale/ne/LC_MESSAGES/glib20.mo +0 -0
  805. data/vendor/local/share/locale/nl/LC_MESSAGES/gettext-runtime.mo +0 -0
  806. data/vendor/local/share/locale/nl/LC_MESSAGES/glib20.mo +0 -0
  807. data/vendor/local/share/locale/nn/LC_MESSAGES/gettext-runtime.mo +0 -0
  808. data/vendor/local/share/locale/nn/LC_MESSAGES/glib20.mo +0 -0
  809. data/vendor/local/share/locale/oc/LC_MESSAGES/glib20.mo +0 -0
  810. data/vendor/local/share/locale/or/LC_MESSAGES/glib20.mo +0 -0
  811. data/vendor/local/share/locale/pa/LC_MESSAGES/glib20.mo +0 -0
  812. data/vendor/local/share/locale/pl/LC_MESSAGES/gettext-runtime.mo +0 -0
  813. data/vendor/local/share/locale/pl/LC_MESSAGES/glib20.mo +0 -0
  814. data/vendor/local/share/locale/ps/LC_MESSAGES/glib20.mo +0 -0
  815. data/vendor/local/share/locale/pt/LC_MESSAGES/gettext-runtime.mo +0 -0
  816. data/vendor/local/share/locale/pt/LC_MESSAGES/glib20.mo +0 -0
  817. data/vendor/local/share/locale/pt_BR/LC_MESSAGES/gettext-runtime.mo +0 -0
  818. data/vendor/local/share/locale/pt_BR/LC_MESSAGES/glib20.mo +0 -0
  819. data/vendor/local/share/locale/ro/LC_MESSAGES/gettext-runtime.mo +0 -0
  820. data/vendor/local/share/locale/ro/LC_MESSAGES/glib20.mo +0 -0
  821. data/vendor/local/share/locale/ru/LC_MESSAGES/gettext-runtime.mo +0 -0
  822. data/vendor/local/share/locale/ru/LC_MESSAGES/glib20.mo +0 -0
  823. data/vendor/local/share/locale/rw/LC_MESSAGES/glib20.mo +0 -0
  824. data/vendor/local/share/locale/si/LC_MESSAGES/glib20.mo +0 -0
  825. data/vendor/local/share/locale/sk/LC_MESSAGES/gettext-runtime.mo +0 -0
  826. data/vendor/local/share/locale/sk/LC_MESSAGES/glib20.mo +0 -0
  827. data/vendor/local/share/locale/sl/LC_MESSAGES/gettext-runtime.mo +0 -0
  828. data/vendor/local/share/locale/sl/LC_MESSAGES/glib20.mo +0 -0
  829. data/vendor/local/share/locale/sq/LC_MESSAGES/glib20.mo +0 -0
  830. data/vendor/local/share/locale/sr/LC_MESSAGES/gettext-runtime.mo +0 -0
  831. data/vendor/local/share/locale/sr/LC_MESSAGES/glib20.mo +0 -0
  832. data/vendor/local/share/locale/sr@ije/LC_MESSAGES/glib20.mo +0 -0
  833. data/vendor/local/share/locale/sr@latin/LC_MESSAGES/glib20.mo +0 -0
  834. data/vendor/local/share/locale/sv/LC_MESSAGES/gettext-runtime.mo +0 -0
  835. data/vendor/local/share/locale/sv/LC_MESSAGES/glib20.mo +0 -0
  836. data/vendor/local/share/locale/ta/LC_MESSAGES/glib20.mo +0 -0
  837. data/vendor/local/share/locale/te/LC_MESSAGES/glib20.mo +0 -0
  838. data/vendor/local/share/locale/th/LC_MESSAGES/glib20.mo +0 -0
  839. data/vendor/local/share/locale/tl/LC_MESSAGES/glib20.mo +0 -0
  840. data/vendor/local/share/locale/tr/LC_MESSAGES/gettext-runtime.mo +0 -0
  841. data/vendor/local/share/locale/tr/LC_MESSAGES/glib20.mo +0 -0
  842. data/vendor/local/share/locale/tt/LC_MESSAGES/glib20.mo +0 -0
  843. data/vendor/local/share/locale/uk/LC_MESSAGES/gettext-runtime.mo +0 -0
  844. data/vendor/local/share/locale/uk/LC_MESSAGES/glib20.mo +0 -0
  845. data/vendor/local/share/locale/vi/LC_MESSAGES/gettext-runtime.mo +0 -0
  846. data/vendor/local/share/locale/vi/LC_MESSAGES/glib20.mo +0 -0
  847. data/vendor/local/share/locale/wa/LC_MESSAGES/glib20.mo +0 -0
  848. data/vendor/local/share/locale/xh/LC_MESSAGES/glib20.mo +0 -0
  849. data/vendor/local/share/locale/yi/LC_MESSAGES/glib20.mo +0 -0
  850. data/vendor/local/share/locale/zh_CN/LC_MESSAGES/gettext-runtime.mo +0 -0
  851. data/vendor/local/share/locale/zh_CN/LC_MESSAGES/glib20.mo +0 -0
  852. data/vendor/local/share/locale/zh_HK/LC_MESSAGES/gettext-runtime.mo +0 -0
  853. data/vendor/local/share/locale/zh_HK/LC_MESSAGES/glib20.mo +0 -0
  854. data/vendor/local/share/locale/zh_TW/LC_MESSAGES/gettext-runtime.mo +0 -0
  855. data/vendor/local/share/locale/zh_TW/LC_MESSAGES/glib20.mo +0 -0
  856. data/vendor/local/share/man/man1/envsubst.1 +54 -0
  857. data/vendor/local/share/man/man1/gettext.1 +69 -0
  858. data/vendor/local/share/man/man1/glib-genmarshal.1 +307 -0
  859. data/vendor/local/share/man/man1/glib-mkenums.1 +234 -0
  860. data/vendor/local/share/man/man1/gobject-query.1 +83 -0
  861. data/vendor/local/share/man/man1/ngettext.1 +68 -0
  862. data/vendor/local/share/man/man3/bind_textdomain_codeset.3 +72 -0
  863. data/vendor/local/share/man/man3/bindtextdomain.3 +69 -0
  864. data/vendor/local/share/man/man3/dcgettext.3 +1 -0
  865. data/vendor/local/share/man/man3/dcngettext.3 +1 -0
  866. data/vendor/local/share/man/man3/dgettext.3 +1 -0
  867. data/vendor/local/share/man/man3/dngettext.3 +1 -0
  868. data/vendor/local/share/man/man3/gettext.3 +99 -0
  869. data/vendor/local/share/man/man3/ngettext.3 +60 -0
  870. data/vendor/local/share/man/man3/textdomain.3 +57 -0
  871. data/vendor/local/src/tml/packaging/gettext_0.18.1.1-2_win32.log +10423 -0
  872. data/vendor/local/src/tml/packaging/gettext_0.18.1.1-2_win32.sh +457 -0
  873. data/vendor/local/src/tml/packaging/glib_2.24.2-2_win32.log +2602 -0
  874. data/vendor/local/src/tml/packaging/glib_2.24.2-2_win32.sh +290 -0
  875. metadata +940 -0
data/ChangeLog ADDED
@@ -0,0 +1,3115 @@
1
+ 2010-09-26 Kouhei Sutou <kou@cozmixng.org>
2
+
3
+ * ext/glib2/rbglib.h: 0.90.2 -> 0.90.3.
4
+
5
+ 2010-09-25 Kouhei Sutou <kou@cozmixng.org>
6
+
7
+ * lib/mkmf-gnome2.rb (ensure_objs): add.
8
+
9
+ * lib/mkmf-gnome2.rb: add generated files in build directory
10
+ to build targets too.
11
+
12
+ 2010-09-23 Kouhei Sutou <kou@cozmixng.org>
13
+
14
+ * ext/glib2/rbglib.h: 0.90.1 -> 0.90.2.
15
+
16
+ * Rakefile: don't add .zip into gem.
17
+
18
+ * lib/mkmf-gnome2.rb (#add_depend_package): improve auto build
19
+ path detection.
20
+
21
+ * ext/glib2/rbglib.h: 0.90.0 -> 0.90.1.
22
+
23
+ * ext/glib2/rbglib.h (RBGLIB_MINOR_VERSION): 20 -> 90. (0.20.0 -> 0.90.0)
24
+
25
+ * lib/glib2.rb (GLib#prepend_environment_path): add for Windows DLL.
26
+
27
+ * ext/glib2/rbgutil.c (rbgutil_gslist2ary_and_free): fix wrong
28
+ address is passed.
29
+
30
+ * test/run-test.rb: fix extension library path.
31
+
32
+ * lib/mkmf-gnome2.rb (#add_depend_package): don't add nonexistent
33
+ path to include paths.
34
+
35
+ * lib/mkmf-gnome2.rb (#ruby_gnome2_version): follow directory
36
+ structure change.
37
+
38
+ * lib/mkmf-gnome2.rb (#add_depend_package): support top build
39
+ directory path.
40
+
41
+ * README: add installation document by RubyGems.
42
+
43
+ * lib/mkmf-gnome2.rb (#add_depend_package): add build directory to
44
+ include path.
45
+
46
+ 2010-09-21 Kouhei Sutou <kou@cozmixng.org>
47
+
48
+ * lib/mkmf-gnome2.rb (#check_cairo): support rcairo path customize
49
+ by arguments.
50
+
51
+ * lib/mkmf-gnome2.rb (#check_cairo): follow rcairo's path change.
52
+
53
+ * ext/glib/extconfr.b, lib/mkmf-gnome2.rb: share Windows setup code.
54
+
55
+ * Rakefile, lib/gnome2-win32-binary-downloader.rb: share
56
+ Windows binary file downloader.
57
+
58
+ 2010-09-11 Kouhei Sutou <kou@cozmixng.org>
59
+
60
+ * ext/glib2/rbglib_maincontext.c (idle_add): fix default priority.
61
+ Reported by ashbb. Thanks!!!
62
+
63
+ 2010-09-07 Kouhei Sutou <kou@cozmixng.org>
64
+
65
+ * lib/mkmf-gnome2.rb: ensure add generated enum file.
66
+
67
+ * ./: support cross-compile for Windows.
68
+
69
+ 2010-09-02 Kouhei Sutou <kou@cozmixng.org>
70
+
71
+ * ./: reconstruct directory structure for rake-compiler.
72
+
73
+ 2010-07-24 Nikolai Weibull
74
+
75
+ src/rbgutil.c: make sure that all strings are fred in
76
+ rbgutil_glist2ary_string_and_free.
77
+
78
+ 2010-07-23 Nikolai Weibull
79
+
80
+ src/rbgutil.c: use rb_ensure around all *_free functions and also fix a
81
+ bug that made sure that no lists were actually freed. That's the price
82
+ of reusing variables.
83
+
84
+ 2010-07-14 Kouhei Sutou <kou@cozmixng.org>
85
+
86
+ * src/rbglib.c: fix coding style.
87
+
88
+ 2010-07-12 Nikolai Weibull
89
+
90
+ * src/rbglib.c: use rb_ensure for rbg_cstr_to_rval to free the memory
91
+ even if an error occurs when creating the Ruby String.
92
+
93
+ 2010-04-17 Kouhei Sutou <kou@cozmixng.org>
94
+
95
+ * src/rbglib.h: 0.19.4 -> 0.20.0.
96
+
97
+ 2010-04-07 Kouhei Sutou <kou@cozmixng.org>
98
+
99
+ * src/rbgobj_typeinstance.c (each_cinfo): fix a memory leak.
100
+
101
+ 2010-02-28 Kouhei Sutou <kou@cozmixng.org>
102
+
103
+ * src/lib/mkmf-gnome2.rb, src/lib/glib-mkenums.rb: add
104
+ {:force_flags => [pattern1, ...]} options to glib_mkenums to force
105
+ treating detected enum as flags.
106
+
107
+ 2010-02-12 Kouhei Sutou <kou@cozmixng.org>
108
+
109
+ * src/rbgutil.[ch], src/glib2.def: add
110
+ rbgutil_string_set_utf8_encoding() for Ruby 1.9.
111
+ * extconf.rb: detect rb_enc_associate().
112
+
113
+ 2010-02-06 Kouhei Sutou <kou@cozmixng.org>
114
+
115
+ * src/rbgobj_closure.c, src/rbgobj_signal.c, src/rbgobject.h,
116
+ srb/glib2.def: set tag to GRClosure for debugging.
117
+
118
+ 2009-10-11 Kouhei Sutou <kou@cozmixng.org>
119
+
120
+ * src/rbgobj_object.c: fix type_register on Ruby 1.9.
121
+ don't use each_with_index in C because
122
+ rb_iterate() API seems changed in Ruby 1.9.
123
+ Reported by Simon Arnaud. Thanks!!!
124
+
125
+ 2009-09-24 Kouhei Sutou <kou@cozmixng.org>
126
+
127
+ * src/rbglib.h (RBGLIB_MICRO_VERSION): 0.19.3 -> 0.19.4.
128
+
129
+ * src/lib/mkmf-gnome2.rb: add missing nil check.
130
+ Reported by Simon Arnaud. Thanks!!!
131
+
132
+ * src/lib/mkmf-gnome2.rb: use INCFLAGS instead of CPPFLAGS.
133
+
134
+ 2009-09-23 Kouhei Sutou <kou@cozmixng.org>
135
+
136
+ * src/rbglib.h (RBGLIB_MICRO_VERSION): 0.19.2 -> 0.19.3.
137
+
138
+ * src/rbglib_maincontext.c: follow the recent Ruby thread priority
139
+ changes.
140
+
141
+ 2009-09-22 Kouhei Sutou <kou@cozmixng.org>
142
+
143
+ * src/rbglib_maincontext.c: work Ruby thread with GTK+.
144
+ [Debian #502262]
145
+ Reported by Johan Walles. Thanks!!!
146
+
147
+ * src/rbglib_maincontext.c: fix multi thread blocking with Ruby
148
+ 1.8.6-p368 or later and 1.8.7-p173 or later. [#2862022]
149
+ Reported by Andrea Dallera. Thanks!!!
150
+
151
+ * src/lib/mkmf-gnome2.rb: don't add nonexistent path to include paths.
152
+
153
+ 2009-08-15 Kouhei Sutou <kou@cozmixng.org>
154
+
155
+ * src/lib/mkmf-gnome2.rb: check $(vendorarchdir) availability.
156
+ Reported by Toshiyuki Suzumura. Thanks!!!
157
+
158
+ 2009-08-10 Kouhei Sutou <kou@cozmixng.org>
159
+
160
+ * extconf.rb, src/lib/mkmf-gnome2.rb: cleanup.
161
+
162
+ * src/lib/mkmf-gnome2.rb: cleanup.
163
+
164
+ 2009-07-26 Kouhei Sutou <kou@cozmixng.org>
165
+
166
+ * src/rbglib.h (RBGLIB_MICRO_VERSION): 0.19.1 -> 0.19.2.
167
+
168
+ 2009-05-31 Kouhei Sutou <kou@cozmixng.org>
169
+
170
+ * src/lib/mkmf-gnome2.rb: add also "-I$(vendorarchdir)" to CPPFLAGS.
171
+
172
+ * src/depend: use RUBYARCHDIR.
173
+ Patch by OBATA Akio. Thanks!!!
174
+
175
+ 2009-05-30 Kouhei Sutou <kou@cozmixng.org>
176
+
177
+ * src/rbgobj_type.c: use GHashTable instead of Ruby's Hash to
178
+ avoid object creation while GC.
179
+ Reported by OBATA Akio. Thanks!!!
180
+
181
+ * src/rbgobj_boxed.c (boxed_free): don't create new object on free.
182
+
183
+ * src/rbglib.h (RBGLIB_MICRO_VERSION): 0.19.0 -> 0.19.1.
184
+
185
+ 2009-05-27 Pascal Terjan <pterjan@linuxfr.org>
186
+
187
+ * src/rbglib.c: fix limits of basic types
188
+
189
+ 2009-04-04 Kouhei Sutou <kou@cozmixng.org>
190
+
191
+ * src/rbglib.h, src/rbglib_error.c (rbgerr_define_gerror): add
192
+ const.
193
+ Suggested by Nikolai Weibull. Thanks!!!
194
+
195
+ 2009-03-27 Kouhei Sutou <kou@cozmixng.org>
196
+
197
+ * src/lib/pkg-config.rb: use license statement in www.gnu.org.
198
+ Suggested by Samuel Tesla. Thanks!!!
199
+
200
+ 2009-03-21 Kouhei Sutou <kou@cozmixng.org>
201
+
202
+ * src/rbglib_maincontext.c, test/test_timeout.rb: fix inverted
203
+ type conversion.
204
+ Reported by Nikolai Weibull. Thanks!!!
205
+
206
+ 2009-02-23 Kouhei Sutou <kou@cozmixng.org>
207
+
208
+ * src/rbglib_convert.c: remove duplicated GLib.charset method.
209
+
210
+ * src/rbgobj_object.c (Init_gobject_gobject): undef automatically
211
+ notify method defined for GObject::notify signal.
212
+
213
+ * test/test_iochannel.rb: suppress warnings for Ruby 1.9.2dev.
214
+
215
+ 2009-01-11 Kouhei Sutou <kou@cozmixng.org>
216
+
217
+ * src/rbglib_maincontext.c: add workaround for ruby 1.9.0. Should
218
+ we try to support 1.9.0? [#2493874]
219
+ Reported by boo. Thanks!!!
220
+
221
+ 2008-12-12 Kouhei Sutou <kou@cozmixng.org>
222
+
223
+ * src/depend (install): glib-enum-types.h exists in $(builddir)
224
+ not $(srcdir). [#2420281]
225
+ Reported by troels knak-nielsen. Thanks!!!
226
+
227
+ * TODO: add an entry:
228
+ make log message handler set by Ruby/GLib removable.
229
+
230
+ 2008-12-10 Kouhei Sutou <kou@cozmixng.org>
231
+
232
+ * src/rbgobj_type.c: use Mutex instead of rb_thread_critical.
233
+ * src/rbgobj_boxed.c, src/rbgobj_enums.c,
234
+ src/rbgobj_typeinterface.c, src/lib/glib2.rb: follow the above change.
235
+
236
+ 2008-11-19 Kouhei Sutou <kou@cozmixng.org>
237
+
238
+ * src/rbgobj_enums.c, test/test_enum.rb: GLib::Flags#| accepts
239
+ empty array.
240
+
241
+ * test/test_glib2.rb: move a test that depends of Ruby/GTK2 to
242
+ Ruby/GTK2.
243
+
244
+ 2008-11-01 Kouhei Sutou <kou@cozmixng.org>
245
+
246
+ * src/rbglib.h (DBL2NUM): define.
247
+
248
+ * src/: use RARRAY_PTR(), RARRAY_LEN() and RSTRING_LEN().
249
+
250
+ 2008-10-25 Kouhei Sutou <kou@cozmixng.org>
251
+
252
+ * test/test_signal.rb: use assert_const_defined.
253
+
254
+ 2008-10-16 Kouhei Sutou <kou@cozmixng.org>
255
+
256
+ * TODO: add.
257
+
258
+ 2008-10-03 Kouhei Sutou <kou@cozmixng.org>
259
+
260
+ * src/rbglib.h: 0.18.0 -> 0.19.0.
261
+
262
+ 2008-09-30 Andy Spencer
263
+
264
+ * src/depend (install): install glib-enum-types.h. [#2106938]
265
+
266
+ 2008-09-30 Kouhei Sutou <kou@cozmixng.org>
267
+
268
+ * src/rbglib.h (g_key_file_get_type): move to ...
269
+ * src/rbgobject.h: ... here.
270
+
271
+ 2008-09-18 Kouhei Sutou <kou@cozmixng.org>
272
+
273
+ * src/rbglib_maincontext.c: use VALUE not guint to
274
+ rb_set_end_proc()'s data. This will fix Debian bug [#490305].
275
+
276
+ 2008-09-14 Kouhei Sutou <kou@cozmixng.org>
277
+
278
+ * src/rbgobj_object.c (holder_free): fix memory leak.
279
+
280
+ 2008-09-13 Kouhei Sutou <kou@cozmixng.org>
281
+
282
+ * src/lib/mkmf-gnome2.rb (check_cairo): support rcairo in gem.
283
+ Suggested by OBATA Akio. Thanks!!!
284
+
285
+ 2008-09-07 Kouhei Sutou <kou@cozmixng.org>
286
+
287
+ * src/rbglib.h: 0.17.0 -> 0.18.0.
288
+
289
+ 2008-09-06 Kouhei Sutou <kou@cozmixng.org>
290
+
291
+ * src/rbgobj_object.c: cleanup.
292
+
293
+ * src/rbgobj_object.c: destroy object on weak notify. [Bug #2060606]
294
+ Reported by Arnaud Cornet. Thanks!!!
295
+
296
+ 2008-07-27 Sjoerd Simons <sjoerd@luon.net>
297
+
298
+ * src/rbgobj_closure.c: Only use G_REMOVE_RELATIVE when a closure is
299
+ directly invalidated. This prevents object creation when freeing the
300
+ closure from the garbage collector.
301
+
302
+ 2008-07-09 Kouhei Sutou <kou@cozmixng.org>
303
+
304
+ * src/rbgobj_object.c (gobj_get_property): fix a bug introduced in
305
+ r2740. (Gtk::Image#stock returns String not Symbol)
306
+
307
+ 2008-06-23 Kouhei Sutou <kou@cozmixng.org>
308
+
309
+ * src/lib/mkmf-gnome2.rb (create_makefile_at_srcdir): allow source
310
+ directory that isn't absolute path.
311
+ Reported by Guillaume Cottenceau. Thanks!!!
312
+
313
+ 2008-06-19 Kouhei Sutou <kou@cozmixng.org>
314
+
315
+ * src/rbgobj_type.c (rbgobj_lookup_class_by_gtype_body): add
316
+ create_class option.
317
+
318
+ * src/rbgobject.h (GTYPE2CINFO_NO_CREATE): add.
319
+
320
+ * src/rbgobject.h, src/rbgobj_type.c
321
+ (rbgobj_lookup_class_by_gtype_full): add.
322
+
323
+ * src/rbgobj_typeinstance.c (each_cinfo): don't create object
324
+ during GC to work with ruby 1.8.7.
325
+ Reported by Kazuhiro NISHIYAMA. Thanks!!!
326
+
327
+ 2008-06-14 Kouhei Sutou <kou@cozmixng.org>
328
+
329
+ * ./: use test-unit not test-unit-ext.
330
+ * test/glib-test-init.rb: add.
331
+ * test/run-test.rb: use test/glib-test-init.
332
+
333
+ 2008-06-11 Kouhei Sutou <kou@cozmixng.org>
334
+
335
+ * src/lib/mkmf-gnome2.rb (check_ruby_func): include ruby.h in
336
+ have_func test.
337
+
338
+ * src/rbgobj_object.c (gobj_inspect): add const.
339
+
340
+ * extconf.rb: include glib.h or ruby.h in have_func test.
341
+
342
+ 2008-06-08 Kouhei Sutou <kou@cozmixng.org>
343
+
344
+ * src/lib/mkmf-gnome2.rb (create_top_makefile): cleanup.
345
+
346
+ 2008-05-23 Kouhei Sutou <kou@cozmixng.org>
347
+
348
+ * test/run-test.rb: use which not --version to detect make.
349
+
350
+ 2008-05-14 Kouhei Sutou <kou@cozmixng.org>
351
+
352
+ * test/test_unicode.rb:
353
+ - add uconv check.
354
+ - add GLib version check.
355
+
356
+ 2008-05-13 Kouhei Sutou <kou@cozmixng.org>
357
+
358
+ * src/rbglib_keyfile.c (keyfile_load_from_dirs): fix index.
359
+
360
+ 2008-05-02 Kouhei Sutou <kou@cozmixng.org>
361
+
362
+ * src/rbgobj_type.c: fix style.
363
+
364
+ 2008-05-02 Sjoerd Simons <sjoerd@luon.net>
365
+
366
+ * src/rbgobj_type.c: Make rbgobj_lookup_class_by_gtype a thread critical
367
+ section. Prevents issues if two ruby threads want to convert an unknown
368
+ GObject class at the same time.
369
+
370
+ 2008-05-02 Kouhei Sutou <kou@cozmixng.org>
371
+
372
+ * src/rbglib.h (GERROR2RVAL): define.
373
+
374
+ 2008-04-26 Kouhei Sutou <kou@cozmixng.org>
375
+
376
+ * src/rbgutil.c (rbgutil_glist2ary_string)
377
+ (rbgutil_gslist2ary_and_free, rbgutil_gslist2ary_boxed_and_free):
378
+ fix not freed bug.
379
+
380
+ * src/rbgutil.h (GLIST2ARY_STR, GLIST2ARY_STR_FREE): add.
381
+
382
+ * src/glib2.def, src/rbgutil.c (rbgutil_glist2ary_string,
383
+ rbgutil_glist2ary_string_and_free): add.
384
+
385
+ * src/rbglib.h (RBG_INSPECT): add.
386
+
387
+ * src/glib2.def: src/rbglib.c (rbg_rval_inspect): add.
388
+
389
+ * src/rbglib.h (RVAL2CSTR_ACCEPT_NIL): use function instead of
390
+ macro to avoid double evaluation.
391
+
392
+ * src/glib2.def, src/rbglib.c (rbg_rval2cstr_accept_nil): add.
393
+
394
+ 2008-04-22 Sjoerd Simons <sjoerd@luon.net>
395
+
396
+ * src/rbglib_maincontext: Handle both thread->wait_for WAIT_FD and
397
+ WAIT_SELECT properly.
398
+
399
+ 2008-04-20 Sjoerd Simons <sjoerd@luon.net>
400
+
401
+ * src/rbglib_maincontext: Properly handle the case where the poll setup
402
+ function returns early.
403
+
404
+ 2008-04-20 Kouhei Sutou <kou@cozmixng.org>
405
+
406
+ * src/rbglib_maincontext.c: free old FDs.
407
+
408
+ 2008-04-17 Sjoerd Simons <sjoerd@luon.net>
409
+
410
+ * src/rbglib_maincontext.c: When preparing our source only add pollfds if we
411
+ were not already polling for it. Fixes 100% cpu usage as soon as another
412
+ ruby thread is blocked on a file descriptor.
413
+
414
+ 2008-04-16 Sjoerd Simons <sjoerd@luon.net>
415
+
416
+ * src/rbgobject.c: When initializing look at the complete inheritance tree to
417
+ see if any superclass defined a specialized initialize function
418
+
419
+ 2008-04-15 Kouhei Sutou <kou@cozmixng.org>
420
+
421
+ * src/rbgutil.h:
422
+ - GLIST2ARY_WITH_FREE -> GLIST2ARY_FREE.
423
+ - GSLIST2ARY_WITH_FREE -> GSLIST2ARY_FREE.
424
+
425
+ 2008-04-14 Kouhei Sutou <kou@cozmixng.org>
426
+
427
+ * test/glib-test-utils.rb (GLibTestUtils#only_win32): use GLib.os_win32?.
428
+
429
+ * src/rbglib_win32.c: implement
430
+ g_win32_get_package_installation_directory_of_module() defined in
431
+ 2.16. Maybe work...
432
+
433
+ * test/glib-test-utils.rb: add only_win32.
434
+
435
+ * test/test_win32.rb: add.
436
+
437
+ * src/rbglib_fileutils.c: implement g_format_size_for_display()
438
+ defined in 2.16.
439
+
440
+ * test/test_file_utils.rb: add.
441
+
442
+ * src/rbglib_keyfile.c:
443
+ - implement g_key_file_load_from_dirs() defined in 2.14.
444
+ - define G_KEY_FILE_DESKTOP_* defined in 2.14.
445
+
446
+ * test/test_key_file.rb: add.
447
+
448
+ * src/rbglib_utils.c:
449
+ - implement g_get_user_XXX_dir() and g_get_system_XXX_dirs().
450
+ - implement g_get_user_special_dir() defined in 2.14.
451
+
452
+ * test/test_utils.rb: add.
453
+
454
+ * src/lib/glib2.rb (GLib::UserDirectory): remove DIRECTORY_ prefix.
455
+
456
+ * src/rbglib.c: Init_glib_utils() use G_DEF_CLASS().
457
+
458
+ 2008-04-13 Kouhei Sutou <kou@cozmixng.org>
459
+
460
+ * src/rbglib_unicode.c, test/test_unicode.rb: bind Unicode related
461
+ functions added in GLib 2.14.
462
+
463
+ * test/run-test.rb: use glib-test-utils.rb.
464
+
465
+ * test/glib-test-utils.rb: add.
466
+
467
+ * src/rbgobj_value.c (rbgobj_initialize_gvalue): support more
468
+ objects.
469
+
470
+ * src/rbgobj_object.c, src/rbgobj_boxed.c, src/rbgobj_param.c,
471
+ src/rbgobj_enums.c, src/rbgobj_typeinterface.c, src/rbgprivate.h:
472
+ export Ruby classes/modules associated fundamental GType privately.
473
+
474
+ 2008-04-10 Kouhei Sutou <kou@cozmixng.org>
475
+
476
+ * src/rbgobject.h: G_DEF_CLASS2 -> G_DEF_CLASS_WITH_GC_FUNC.
477
+
478
+ * src/glib2.def: export g_connect_flags_get_type().
479
+
480
+ * extconf.rb, src/rbgobj_signal.c: make GSignalFlags,
481
+ GConnectFlags and GSignalMatchType GLib::Enum or GLib::Flags.
482
+
483
+ * test/test_signal.rb: add.
484
+
485
+ * src/rbgobj_type.c, src/glib2.def (rbgobj_define_class): add.
486
+
487
+ * src/rbgobject.h (GTYPE2CLASS), src/rbgobj_type.c
488
+ (rbgobj_lookup_class_by_gtype): accept G_TYPE_INVALID.
489
+
490
+ * src/rbgutil.h:
491
+ - GLIST2ARYF -> GLIST2ARY_WITH_FREE.
492
+ - GSLIST2ARYF -> GSLIST2ARY_WITH_FREE.
493
+
494
+ * src/rbgobject.h: remove nonexistent
495
+ rbg_{set,remote}_internal_poll_func.
496
+
497
+ 2008-04-05 Sjoerd Simons <sjoerd@luon.net>
498
+
499
+ * src/rbgutil_callback.c: Create the pipe inside
500
+ rbgutil_start_callback_dispatch_thread to ensure it's created in a race-free
501
+ way
502
+
503
+ 2008-04-04 Kouhei Sutou <kou@cozmixng.org>
504
+
505
+ * src/glib2.def: follow the recent changes.
506
+
507
+ * extconf.rb, src/rbgutil_callback.c: use pipe() for communicating
508
+ threads.
509
+
510
+ * src/rbglib_bookmarkfile.c (bf_load_from_data): don't declare
511
+ variable after some expression.
512
+
513
+ 2008-04-01 Kouhei Sutou <kou@cozmixng.org>
514
+
515
+ * src/rbglib.h (CSTR2RVAL2), src/lib/glib2.rb: cleanup.
516
+
517
+ 2008-03-31 Kouhei Sutou <kou@cozmixng.org>
518
+
519
+ * src/rbglib.h (RVAL2CSTR_ACCEPT_NIL): renamed from RVAL2CSTR2.
520
+
521
+ * src/glib2.def: exported rbgobj_get_ruby_object_from_gobject.
522
+
523
+ 2008-03-30 Kouhei Sutou <kou@cozmixng.org>
524
+
525
+ * src/rbgobject.h (GOBJ2RVAL_UNREF): renamed from GOBJ2RVALU().
526
+
527
+ * src/rbgobj_object.c, src/rbgobj_param.c, src/rbgprivate.h:
528
+ get_value -> get_ruby_object.
529
+
530
+ * src/rbgobject.c: followed the above changes.
531
+
532
+ * src/rbgobject.h: exported rbgobj_get_ruby_object_from_gobject().
533
+
534
+ 2008-03-23 Kouhei Sutou <kou@cozmixng.org>
535
+
536
+ * src/rbglib.h (CSTR2RVAL_FREE): renamed from CSTR2RVAL2.
537
+
538
+ 2008-03-22 Kouhei Sutou <kou@cozmixng.org>
539
+
540
+ * src/rbgutil_callback.c (rbgutil_protect):
541
+ - passed exception.
542
+ - fixed missing type conversion.
543
+
544
+ * src/lib/glib2.rb (GLib.exit_application): received exception.
545
+
546
+ 2008-03-20 Kouhei Sutou <kou@cozmixng.org>
547
+
548
+ * test/test_unicode.rb: fixed duplicated name.
549
+
550
+ * test/run-test.rb: $VERBOSE = true.
551
+
552
+ * src/rbgobj_enums.c, src/rbglib_error.c: used g_ascii_toupper()
553
+ instead of toupper() to be locale independent. [Bug #1901843]
554
+ Reported by Joseph Method. Thanks!!!
555
+
556
+ 2008-03-15 Kouhei Sutou <kou@cozmixng.org>
557
+
558
+ * src/lib/glib-mkenums.rb: used constants instead of consts.
559
+ * test/test_mkenums.rb: added.
560
+ * test/run-test.rb: required 'glib2'.
561
+
562
+ * src/lib/glib-mkenums.rb: used $Id$ instead of $Rev$.
563
+
564
+ * src/lib/glib-mkenums.rb: GLib::Enum -> GLib::EnumDefinition to
565
+ avoid name conflict.
566
+
567
+ * src/lib/glib-mkenums.rb: supported glib 2.16.1.
568
+ [Bug #1886689] [Bug #1913301]
569
+ Reported by Mikael Hallendal and mezz. Thanks!!!
570
+
571
+ * ./, test/run-test.rb: used TestUnitExt.
572
+
573
+ * test/run-test.rb: renamed from test/runner.rb.
574
+
575
+ * test/: renamed from tests/.
576
+
577
+ 2008-03-04 Kouhei Sutou <kou@cozmixng.org>
578
+
579
+ * src/rbgobj_closure.c: used G_RELATIVE2 and "closures" ID for
580
+ keeping GRClosure reference instead of G_ADD_CHILD to protect
581
+ GRClosures from G_CHILD_REMOVE_ALL.
582
+
583
+ 2008-02-21 Kouhei Sutou <kou@cozmixng.org>
584
+
585
+ * src/rbgutil_callback.c:
586
+ - used GAsyncQueue instead of pipe() because pipe() isn't
587
+ portable.
588
+ - rbgutil_{start,stop}_callback_handle_thread ->
589
+ rbgutil_{start,stop}_callback_dispatch_thread.
590
+
591
+ 2008-02-17 Kouhei Sutou <kou@cozmixng.org>
592
+
593
+ * src/rbgutil_callback.c: initialized callback_handle_thread
594
+ variable as nil.
595
+
596
+ 2008-02-14 Kouhei Sutou <kou@cozmixng.org>
597
+
598
+ * src/rbgutil_callback.c: callback handle thread isn't started
599
+ automatically. Call rbgutil_start_callback_handle_thread() before
600
+ some callbacks invoked. This change breaks Sjoerd's GStreamer
601
+ bindings. Sorry.
602
+
603
+ * src/rbglib_maincontext.c: don't use rb_thread_critical because
604
+ we don't create a thread now.
605
+
606
+ * src/rbgutil.h, src/glib2.def: exported
607
+ rbgutil_{start,stop}_callback_handle_thread().
608
+
609
+ 2008-01-07 Kouhei Sutou <kou@cozmixng.org>
610
+
611
+ * src/rbgobject.c (rbgobj_define_property_accessors),
612
+ src/rbgobj_signal.c (rbgobj_define_action_methods): don't eval
613
+ empty string because that crashes ruby 1.9.0.
614
+
615
+ 2008-01-06 Kouhei Sutou <kou@cozmixng.org>
616
+
617
+ * src/rbgobj_enums.c (rbgobj_init_flags_class): added "_" prefix
618
+ to fix invalid predicate method name that starts with
619
+ digits. e.g. 4mv? -> _4mv?. Or just ignore?
620
+
621
+ * src/rbgobj_convert.c (rbgobj_convert_rvalue2gtype): implemented.
622
+
623
+ 2008-01-04 Kouhei Sutou <kou@cozmixng.org>
624
+
625
+ * src/rbglib.h (RARRAY_PTR, RARRAY_LEN): defined.
626
+
627
+ * src/rbgobject.h (GPTR2RVAL, RVAL2GPTR): added.
628
+
629
+ 2008-01-03 Kouhei Sutou <kou@cozmixng.org>
630
+
631
+ * src/depend: don't use ftools.
632
+ Reported by Carlo E. Prelz. Thanks!!!
633
+
634
+ 2008-01-02 Kouhei Sutou <kou@cozmixng.org>
635
+
636
+ * src/rbgobj_value.c, src/rbgobject.h, src/glib2.def
637
+ (rbgobj_initialize_gvalue): added. (experimental)
638
+
639
+ * src/rbgobj_convert.c, src/rbgprivate.h
640
+ (rbgobj_convert_rvalue2gtype): should be implemented.
641
+
642
+ 2007-12-31 Kouhei Sutou <kou@cozmixng.org>
643
+
644
+ * src/rbgutil_callback.c: fixed ruby's thread check.
645
+
646
+ * src/rbgutil_callback.c: fixed a wrong select() argument.
647
+ Reported by Carlo E. Prelz. Thanks!!!
648
+
649
+ 2007-12-29 Kouhei Sutou <kou@cozmixng.org>
650
+
651
+ * src/rbglib_mainloop.c: moved poll related functions to ...
652
+ * src/rbglib_maincontext.c: ... here.
653
+
654
+ * src/rbglib_mainloop.c: supported ruby 1.9.0 thread model.
655
+
656
+ * extconf.rb: removed a needless check.
657
+
658
+ 2007-12-28 Kouhei Sutou <kou@cozmixng.org>
659
+
660
+ * src/rbgobj_object.c: rb_hash_aset()'s key should be VALUE not ID.
661
+
662
+ 2007-11-28 Kouhei Sutou <kou@cozmixng.org>
663
+
664
+ * src/rbglib_mainloop.c (source_prepare_add_poll_fd): treated
665
+ G_IO_HUP as except case not read case.
666
+
667
+ 2007-11-27 Kouhei Sutou <kou@cozmixng.org>
668
+
669
+ * src/rbglib_mainloop.c: don't use g_source_is_destroyed().
670
+
671
+ * extconf.rb: detected curr_thread.
672
+
673
+ * src/rbglib_mainloop.c: supported ruby 1.8.6 p0.
674
+
675
+ 2007-11-26 Kouhei Sutou <kou@cozmixng.org>
676
+
677
+ * src/rbgutil_callback.c: used rb_thread_select() instead of
678
+ rb_thread_wait_fd().
679
+
680
+ * src/rbglib_mainloop.c: used G_IO_IN as initial events.
681
+
682
+ * src/utils_callback.c: renamed to ...
683
+ * src/rbgutil_callback.c: ... this.
684
+ * src/utils_int64.c: renamed to ...
685
+ * src/rbglib_int64.c: ... this.
686
+ * src/rbglib.c: followed the above changes.
687
+
688
+ * src/rbglib_mainloop.c (source_check): fixed a typo.
689
+
690
+ 2007-11-25 Kouhei Sutou <kou@cozmixng.org>
691
+
692
+ * src/rbglib_mainloop.c: used GPollFD.
693
+
694
+ 2007-11-23 Kouhei Sutou <kou@cozmixng.org>
695
+
696
+ * tests/test_glib2.rb: added GC.start.
697
+
698
+ 2007-11-21 Kouhei Sutou <kou@cozmixng.org>
699
+
700
+ * src/rbglib_mainloop.c (source_prepare): checked pending signals.
701
+
702
+ 2007-11-17 Kouhei Sutou <kou@cozmixng.org>
703
+
704
+ * src/rbglib_mainloop.c: used GSource not poll func overriding.
705
+
706
+ 2007-11-11 Kouhei Sutou <kou@cozmixng.org>
707
+
708
+ * src/rbgobj_fundamental.c: re-added for making more flexible
709
+ backward compatibility layer.
710
+ * src/glib2.def, src/rbgcompat.h: followed the above change.
711
+
712
+ * src/rbgobject.h (RG_DEF_CONVERSION), src/rbgcompat.h: used RG_
713
+ prefix not G_ prefix.
714
+
715
+ * src/rbgobject.c: made GOBJ2RVAL overridable for non-fundamental
716
+ type.
717
+
718
+ * src/global.h: merged to src/rbgprivate.h and removed.
719
+ * src/: followed the above changes.
720
+
721
+ * src/glib2.def, src/depend: followed the below changes.
722
+
723
+ * src/rbgobj_fundamental.c, src/rbgobj_convert.c,
724
+ src/rbgobj_value.c, src/rbgobject.[ch], src/rbgobj_type.c: renamed
725
+ to rbgobj_convert_* from rbgobj_fund_*. The previous API is still
726
+ available but need to rebuild.
727
+ * src/rbgprivate.h, src/rbgcompat.h: added.
728
+
729
+ 2007-11-10 Kouhei Sutou <kou@cozmixng.org>
730
+
731
+ * src/rbgobject.[ch], src/rbgobj_fundamental.c: made RVAL2GOBJU
732
+ customizable.
733
+
734
+ 2007-10-04 Kouhei Sutou <kou@cozmixng.org>
735
+
736
+ * src/lib/mkmf-gnome2.rb: fixed build failure with top-level
737
+ extconf.rb. Reported by andy. Thanks!
738
+
739
+ 2007-10-03 Kouhei Sutou <kou@cozmixng.org>
740
+
741
+ * src/rbgobject.c (rbgobj_ruby_object_from_instance2): don't use
742
+ functions of Ruby for GTypeInstance.
743
+
744
+ * src/rbglib_mainloop.c (ml_initialize): all arguments of
745
+ GLib::MainLoop.new are optional.
746
+
747
+ 2007-09-29 Kouhei Sutou <kou@cozmixng.org>
748
+
749
+ * src/lib/mkmf-gnome2.rb (create_makefile_at_srcdir): don't use TOPDIR.
750
+
751
+ 2007-08-30 Kouhei Sutou <kou@cozmixng.org>
752
+
753
+ * src/rbglib_unicode.c (rbglib_m_unichar_get_script):
754
+ G_TYPE_UNICODE_SCRIPT_TYPE -> G_TYPE_UNICODE_SCRIPT.
755
+
756
+ * src/rbglib_maincontext.c (timeout_add_seconds): used
757
+ g_timeout_add_seconds_full() not g_timeout_add_seconds().
758
+
759
+ * src/lib/mkmf-gnome2.rb: cleanup.
760
+
761
+ 2007-08-30 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
762
+
763
+ * src/lib/mkmf-gnome2.rb: re-supported build in no-source
764
+ directory.
765
+
766
+ 2007-08-14 Vincent Isambart <vincent.isambart@gmail.com>
767
+ * src/utils_int64.c: included rbglib.h instead of ruby.h
768
+ because utils_int64.c uses the RVAL2CBOOL macro that is declared
769
+ in rbglib.h and thus resulted in a dynamic link error on Mac
770
+ that the system could not find a RVAL2CBOOL function.
771
+
772
+ 2007-08-08 Kouhei Sutou <kou@cozmixng.org>
773
+
774
+ * src/rbgobj_enums.c: supported convenience GEnum and GFlags
775
+ notation. e.g.:
776
+ GLib::UTF8.normalize(utf8, GLib::NormalizeMode::NFD)
777
+ ->
778
+ GLib::UTF8.normalize(utf8, :nfd)
779
+
780
+ key_file.load_from_data(data,
781
+ GLib::KeyFile::KEEP_COMMENTS |
782
+ GLib::KeyFile::KEEP_TRANSLATIONS)
783
+ ->
784
+ key_file.load_from_data(data, [:keep_contents, :keep_translations])
785
+
786
+ * tests/test_enum.rb: added tests for the above feature.
787
+
788
+ 2007-07-25 Sjoerd Simons <sjoerd@luon.net>
789
+ * src/rbgobj_signal.c: Properly use the GValueArray api in emit_body.
790
+ Causes all values in the parameter array to be unset after emission.
791
+ Fixing some reference leaks.
792
+
793
+ 2007-07-20 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
794
+
795
+ * src/rbgobj_object.c, src/rbgobject.h: deperecate
796
+ rbgobj_add_abstract_but_create_instance_class() and
797
+ move abstract-type check from .allocate to dummy #initialize.
798
+
799
+ 2007-07-16 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
800
+
801
+ * src/rbgobj_type.c: use rbgobj_init_object_class() to initialize
802
+ object class.
803
+ * src/rbgobj_object.c, src/global.h: add new function
804
+ rbgobj_init_object_class().
805
+
806
+ * src/rbgobj_object.c (rbgobj_gobject_new): check returned value of
807
+ g_object_newv().
808
+
809
+ 2007-07-14 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
810
+
811
+ * src/rbgobject.h: remove unused/undefined functions
812
+ rbgobj_boxed_ref() and rbgobj_boxed_unref().
813
+
814
+ * src/rbgobject.c: new function rbgobj_invalidate_relatives().
815
+ * src/rbgobject.c: move GObject stuffs to rbgobj_object.c again.
816
+ * src/rbgobj_object.c: deprecate rbgobj_object_create().
817
+ * src/rbgobj_boxed.c: deprecate rbgobj_boxed_create().
818
+
819
+ * src/utils_callback.c: brush up.
820
+
821
+ 2007-07-13 Guillaume Cottenceau
822
+
823
+ * src/rbglib_iochannel.c, src/rbglib_maincontext.c,
824
+ src/rbglib_mainloop.c, src/rbglib_source.c, src/rbglib_utils.c,
825
+ src/rbgobj_boxed.c, src/rbgobj_object.c, src/rbgobj_param.c,
826
+ src/rbgobj_paramspecs.c, src/rbgobj_signal.c, src/rbgobj_type.c,
827
+ src/rbgobj_typeinterface.c, src/rbgobj_value.c, src/rbgobject.c,
828
+ src/utils_int64.c: replace RTEST uses by RVAL2CBOOL
829
+
830
+ 2007-07-13 Guillaume Cottenceau
831
+
832
+ * src/rbgobj_closure.c, src/rbgobj_enums.c, src/rbgobj_object.c,
833
+ src/rbgobj_param.c, src/rbgobj_signal.c, src/rbgobj_type.c,
834
+ src/rbgobj_typemodule.c, src/rbgobj_value.c,
835
+ src/rbgobj_valuetypes.c: "? Qtrue : QFalse" => CBOOL2RVAL cleanup
836
+
837
+ 2007-07-10 Guillaume Cottenceau
838
+
839
+ * src/rbgobj_boxed.c: support passing nil to RVAL2BOXED, in order
840
+ to pass NULL to glib/gtk
841
+
842
+ 2007-07-10 Guillaume Cottenceau
843
+
844
+ * src/rbgobject.c: kou says we should use NIL_P(foo) not foo ==
845
+ Qnil
846
+
847
+ 2007-07-08 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
848
+
849
+ * src/rbgutil.h: mark G_BLOCK_PROC() as deprecated.
850
+ * src/*.c: use rb_block_proc() directly instead of using G_BLOCK_PROC().
851
+
852
+ * src/utils_callback.c (callback_info_run): use rbgutil_protect().
853
+ * src/utils_callback.c (listen_callback_pipe): call
854
+ rb_thread_schedule() to activate newly created thread.
855
+ * src/utils_callback.c (invoke_callback_in_ruby_thread):
856
+ g_mutex_lock(info.done_mutex) should be done before writing
857
+ data to pipe.
858
+
859
+ 2007-07-07 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
860
+
861
+ * src/extconf.rb, src/rbglib_messages.c: call ruby_set_current_source()
862
+ only if it exists. Current ruby 1.9 doesn't have it.
863
+
864
+ * src/extconf.rb, src/utils_callback.c: don't use is_ruby_native_thread
865
+ on ruby 1.9.
866
+
867
+ * src/rbglib_messages.c, extconf.rb: fix to compile on ruby 1.9:
868
+ ruby_sourcefile -> rb_sourcefile()
869
+ ruby_sourceline -> rb_sourceline()
870
+
871
+ * src/rbglib_message.c, rbglib_completion.c: remove ruby 1.6 support.
872
+
873
+ * src/rbgobj_strv.c (strv_from_ruby): fix not to double free.
874
+
875
+ * src/rbglib_bookmarkfile.c: fix to compile on ruby 1.9:
876
+ RSTRING(v)->ptr -> RSTRING_PTR(v),
877
+ RSTRING(v)->len -> RSTRING_LEN(v).
878
+
879
+ * test/test_glib2.rb: add some tests.
880
+
881
+ * src/rbbutil.h: change G_PROTECT_CALLBACK() to support calling
882
+ from non-ruby thread.
883
+
884
+ * src/rbgutil.c: move rbgutil_protect() into utils_callback.c.
885
+
886
+ * src/rbgobj_closure.c: separate stuffs that relate to thread into
887
+ utils_callback.c.
888
+
889
+ * src/utils_callback.c: new file for callback invocation.
890
+
891
+ 2007-07-06 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
892
+
893
+ * src/rbgobj_boxed.c (rbgobj_boxed_get): type check should be done
894
+ before doing Data_Get_Struct().
895
+
896
+ 2007-07-06 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
897
+
898
+ * src/rbgobj_boxed.c (rbgobj_boxed_get): fix argument type to match
899
+ with its prototype. Repored by Guillaume Cottenceau.
900
+ [ruby-gnome2-devel-en] HEAD doesn't build
901
+
902
+ 2007-07-04 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
903
+
904
+ * src/global.h, src/rbglib.h, src/rbgobj_boxed.c, src/rbgobj_closure.c,
905
+ src/rbgobj_enums.c, src/rbgobj_object.c, src/rbgobj_param.c,
906
+ src/rbgobj_typeinstance.c, src/rbgutil.c, src/rbgutil.h, extconf.rb:
907
+ remove ruby-1.6.x support and old yarv support.
908
+
909
+ 2007-07-02 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
910
+
911
+ * src/rbglib_spawn.c, src/rbgobj_object.c, src/rbgobj_signal.c,
912
+ src/rbgobj_type.c, src/rbgobj_typemodule.c, src/rbgobject.c:
913
+ remove unnecessary StringValue() invocations.
914
+
915
+ 2007-07-01 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
916
+
917
+ * src/rbgobj_typeinterface.c: brush up and should not call
918
+ g_type_default_interface_ref(G_TYPE_INTERFACE) which causes SEGV.
919
+
920
+ 2007-06-28 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
921
+
922
+ * tests/test_glib2.rb (TestGLib#test_signal_handler_disconnect_and_gc):
923
+ new test.
924
+
925
+ 2007-06-23 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
926
+
927
+ * src/rbgobj_closure.c: detach closure->rb_holder from GObject
928
+ when the closure is invalidated.
929
+ [ruby-gnome2-devel-en] Signal handling causes memory leaks
930
+
931
+ 2007-06-20 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
932
+
933
+ * src/rbgobj_typeinterface.c: Make interfaces not to be decendants
934
+ of GLib::MetaInterface. This change makes Mutoh-san's change at
935
+ 2007-06-16 unnecessary.
936
+
937
+ * src/rbgobj_typeinterface.c: fix GLib::MetaInterface#gtype;
938
+ generic_gtype() -> generic_s_gtype().
939
+
940
+ * src/rbglib_mainloop.c: use rbglib_poll() if possible, regardless of
941
+ ruby version. (ruby 1.5.4 is no longer considerd.)
942
+
943
+ * src/rbgobj_closure.c: fixed a segfault which is caused by accessing freed
944
+ GRClosure.
945
+
946
+ 2007-06-16 Masao Mutoh <mutoh@highway.ne.jp>
947
+
948
+ * src/rbgobj_signal.c: Fixed a segfault using Glade.
949
+ By syscrash2k Bug#1709389.
950
+
951
+ 2007-06-16 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
952
+
953
+ * extconf.rb, src/rbglib.h, src/rbglib.c, src/rbglib_convert.c,
954
+ src/rbglib_iochannel.c, src/rbglib_keyfile.c, src/rbglib_mainloop.c,
955
+ src/rbglib_spawn.c, src/rbglib_unicode.c, src/rbgobj_object.c, src/rbgutil.c:
956
+ fix to compile on ruby 1.9;
957
+ RSTRING(v)->ptr -> RSTRING_PTR(v),
958
+ RSTRING(v)->len -> RSTRING_LEN(v),
959
+ ruby_errinfo -> rb_errinfo(),
960
+ and so on.
961
+
962
+ 2007-06-16 Masao Mutoh <mutoh@highway.ne.jp>
963
+
964
+ * src/rbgobj_typeinterface.c: GLib::Interface.property, .install_property,
965
+ .properties raises a NoMethodError when they call as the instance method.
966
+
967
+ 2007-06-13 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
968
+
969
+ * src/rbgobj_closure.c: Simplify GRClosure data structure by removing
970
+ GRClosureHolder.
971
+
972
+ 2006-12-29 Masao Mutoh <mutoh@highway.ne.jp>
973
+
974
+ * src/lib/mkmf-gnome2.rb: Work ruby-1.8.4 or earlier again.
975
+ by Kouhei Sutou.
976
+ * src/rbglib.h: Increment minor version.
977
+
978
+ 2006-12-28 Masao Mutoh <mutoh@highway.ne.jp>
979
+
980
+ * src/lib/glib2.rb: Remove to support dropline GTK2-Runtime DLL.
981
+ * src/lib/glib-mkenums.rb: Fixed a parse error on GLib-2.6.
982
+
983
+ 2006-12-26 Kouhei Sutou <kou@cozmixng.org>
984
+
985
+ * src/lib/glib-mkenums.rb: added a space before comment end mark.
986
+
987
+ 2006-12-26 Masao Mutoh <mutoh@highway.ne.jp>
988
+
989
+ * extconf.rb: Code cleanup.
990
+ * src/lib/glib-mkenums.rb: Reimplement as a pure ruby library.
991
+ * src/lib/mkmf-gnome2.rb: Work MinGW again.
992
+ * src/rbglib_win32.c: Fix to compile problems.
993
+
994
+ 2006-12-25 Kouhei Sutou <kou@cozmixng.org>
995
+
996
+ * src/lib/glib2.rb (GLib.utf8_validate): removed needless code.
997
+
998
+ 2006-12-24 Masao Mutoh <mutoh@highway.ne.jp>
999
+
1000
+ * src/rbglib_convert.c: GLib.utf8_validate becomes deprecated.
1001
+ Use GLib::UTF8.validate instead.
1002
+ * sample/bookmarkfile.rb: Add for GLib::BookmarkFile sample.
1003
+
1004
+ 2006-12-23 Masao Mutoh <mutoh@highway.ne.jp>
1005
+
1006
+ * src/rbglib_bookmarkfile.c: Add GLib::BookmarkFile
1007
+ * src/rbglib_win32.c: Code cleanup. Imprement all functions.
1008
+
1009
+ 2006-12-21 Masao Mutoh <mutoh@highway.ne.jp>
1010
+
1011
+ * src/rbglib_keyfile.c: Add GLib::Keyfile.
1012
+ * sample/keyfile.rb: Add a sample for GLib::KeyFile.
1013
+
1014
+ 2006-12-16 Masao Mutoh <mutoh@highway.ne.jp>
1015
+
1016
+ * src/rbgobj_closure.c: Fix warnings on x86_64.
1017
+ * src/rbglib_unicode.c: Code cleanup.
1018
+ * src/lib/glib-mkenums.rb: Make GLib::MkEnums.
1019
+ * src/lib/mkmf-gnome2.rb: Follow above change.
1020
+
1021
+ 2006-12-11 Masao Mutoh <mutoh@highway.ne.jp>
1022
+
1023
+ * src/rbglib_maincontext.c: Add GLib::Source.current for GLib-2.12.
1024
+ Add GLib::MainContext#owner? for GLib-2.10.
1025
+ GLib::Timeout#add_seconds, #source_new_seconds for GLib-2.14.
1026
+
1027
+ 2006-12-10 Kouhei Sutou <kou@cozmixng.org>
1028
+
1029
+ * src/rbglib_unicode.c:
1030
+ - GLib::Unicode::XXX -> GLib::Unicode::Type::XXX.
1031
+ - GLib::UnicodeBreak::XXX -> GLib::Unicode::BreakType::XXX.
1032
+ - GLib::UnicodeScript::XXX -> GLib::Unicode::Script::XXX.
1033
+ * tests/test_unicode.rb: followed the changes.
1034
+
1035
+ * src/lib/glib2.rb: GLib.utf8_validate is deprecated. Use
1036
+ GLib::UTF8.validate instead.
1037
+ * src/rbglib_unicode.c:
1038
+ - moved GLib.unichar_* to GLib::UniChar.*.
1039
+ - moved GLib.unicode_* to GLib::Unicode.*.
1040
+ - moved GLib.utf8_* to GLib::UTF8.*.
1041
+ - moved GLib.utf16_* to GLib::UTF16.*.
1042
+ - moved GLib.ucs4_* to GLib::UCS4.*.
1043
+ - removed GLib::UNICODE_*.
1044
+ - removed GLib::UNICODE_BREAK_*.
1045
+ - removed GLib::NORMALIZE_*.
1046
+ * tests/test_unicode.rb: followed the changes.
1047
+
1048
+ 2006-12-09 Kouhei Sutou <kou@cozmixng.org>
1049
+
1050
+ * src/rbglib_unicode.c:
1051
+ - merged GLib.utf8_get_char_validate to GLib.utf8_get_char.
1052
+ - GLib.unichar_control? -> GLib.unichar.cntrl?
1053
+ - added GLib.utf8_reverse.
1054
+ * tests/test_unicode.rb: followed the changes.
1055
+
1056
+ * src/rbglib_unicode.c, tests/test_unicode.rb: completed.
1057
+
1058
+ 2006-12-08 Kouhei Sutou <kou@cozmixng.org>
1059
+
1060
+ * src/rbglib_unicode.c: added. not completed yet.
1061
+ * src/rbglib.c: added Init_glib_unicode().
1062
+ * tests/test_unicode.rb: added tests for Unicode related bindings.
1063
+
1064
+ 2006-12-07 Kouhei Sutou <kou@cozmixng.org>
1065
+
1066
+ * src/rbgobj_closure.c (rclosure_unref): set Qnil to
1067
+ disposed rclosure->rb_holder.
1068
+
1069
+ 2006-12-07 Guillaume Cottenceau <gcottenc@gmail.com>
1070
+
1071
+ * src/rbgobj_closure.c (rclosure_invalidate): don't check
1072
+ rclosure->rb_holder because the check isn't necessary.
1073
+
1074
+ 2006-12-06 Kouhei Sutou <kou@cozmixng.org>
1075
+
1076
+ * src/lib/glib-mkenums.rb: removed garbages.
1077
+
1078
+ 2006-12-05 Kouhei Sutou <kou@cozmixng.org>
1079
+
1080
+ * src/lib/glib-mkenums.rb: added.
1081
+ * src/lib/mkmf-gnome2.rb (glib_mkenums): added.
1082
+ * extconf.rb: used glib_mkenums.
1083
+
1084
+ 2006-12-04 Kouhei Sutou <kou@cozmixng.org>
1085
+
1086
+ * tests/runner.rb: used Test::Unit::Autorunner.run.
1087
+ * tests/test-glib2, tests/test-iocahnnel.rb: renamed to ...
1088
+ * tests/test_glib2, tests/test_iochannel.rb: ... them for adapting
1089
+ Test::Unit's default configurations.
1090
+
1091
+ * tests/test-iochannel.txt, tests/test-iochannel-sjis.txt: removed
1092
+ needless files.
1093
+
1094
+ * tests/runner.rb: setup $LOAD_PATH for test environment.
1095
+
1096
+ * tests/test-iochannel.rb: rewrote with Tempfile. I want to
1097
+ suppress GLib-WARNING and GLib-CRITICAL messages but I don't know
1098
+ how to do the thing...
1099
+
1100
+ * src/rbglib_iochannel.c: made "U" each time for avoiding GC
1101
+ problem.
1102
+
1103
+ 2006-11-22 Masao Mutoh <mutoh@highway.ne.jp>
1104
+
1105
+ * src/rbgobj_typeinterface.c: Fixed a bug when accessing the properties
1106
+ of GLib::Instantiatable.
1107
+
1108
+ 2006-11-05 Masao Mutoh <mutoh@highway.ne.jp>
1109
+
1110
+ * src/lib/mkmf-gnome2.rb: Set "0" to micro version of version
1111
+ header if pkg-config --modversion doesn't have micro version.
1112
+ Bug #1590573.
1113
+
1114
+ 2006-10-12 Kouhei Sutou <kou@cozmixng.org>
1115
+
1116
+ * src/rbgobj_closure.c: improved alive check.
1117
+
1118
+ 2006-09-26 Kouhei Sutou <kou@cozmixng.org>
1119
+
1120
+ * src/lib/mkmf-gnome2.rb: used $INCFLAGS instead of $CFLAGS.
1121
+
1122
+ 2006-09-25 Kouhei Sutou <kou@cozmixng.org>
1123
+
1124
+ * src/rbgobj_closure.c: improved closure handling. I hope this
1125
+ change fixes a closure related segmentation fault bug.
1126
+ - added available data marks and checked that marks.
1127
+
1128
+ 2006-09-21 kangabroo
1129
+
1130
+ * src/rbgobj_enums.c: fixed typo. bug #1561675.
1131
+
1132
+ 2006-08-17 Masao Mutoh <mutoh@highway.ne.jp>
1133
+
1134
+ * src/rbgobj_object.c: Compiled on GLib-2.8.x again.
1135
+
1136
+ 2006-07-09 Kouhei Sutou <kou@cozmixng.org>
1137
+
1138
+ * src/glib2.def, src/rbgobject.c, src/rbgobject.h
1139
+ (rbgobj_ruby_object_from_instance_with_unref):
1140
+ added convenience function.
1141
+ * src/rbglib.h (GOBJ2RVALU): added convenience macro.
1142
+
1143
+ * src/rbgobj_object.c: implemented GLib::InitiallyUnowned.
1144
+
1145
+ * src/rbglib.h (RVAL2CSTR2): added convenience macro.
1146
+
1147
+ 2006-06-30 Masao Mutoh <mutoh@highway.ne.jp>
1148
+
1149
+ * src/rbglib_mainloop.c, rbgobject.h, glib2.def: Improve to support
1150
+ Win32. rbg_(set|remove)_internal_poll_func are externed.
1151
+
1152
+ 2006-06-28 Masao Mutoh <mutoh@highway.ne.jp>
1153
+
1154
+ * src/lib/mkmf-gnome2.rb: Fixed wrong include path.
1155
+ * src/rbglib.h: Increment version info.
1156
+
1157
+ 2006-06-18 Masao Mutoh <mutoh@highway.ne.jp>
1158
+
1159
+ * src/rbgobj_type.c: Fixed a problem when the object which extends Module
1160
+ can't access the instance methods. Reported by Laurent Sansonetti and Bug #1496185.
1161
+
1162
+ 2006-06-17 Masao Mutoh <mutoh@highway.ne.jp>
1163
+
1164
+ * sample/type-register?.rb: Remove Gtk.init.
1165
+ * src/lib/glib2.rb: Added GLib.exit_application. This is called when it raises
1166
+ the exception in a callback proc and it isn't catched in the proc.
1167
+ * src/rbgutil.c: Added G_PROTECT_CALLBACK. You need to wrap the functions which
1168
+ run in the mainloop with this. This is based on rclosure_marshal_do() in
1169
+ src/rbgobj_closure.c.
1170
+ * src/rbgobj_closure.c: Apply above G_PROTECT_CALLBACK.
1171
+ * src/rbgutil.[ch]: Added GLIST2ARYF, GLIST2ARY2F, GSLIST2ARYF, GLIST2ARY2F.
1172
+ They free the list with g_list_free() or g_slist_free() internal.
1173
+ * src/glib2.def: Follow above changes.
1174
+
1175
+ 2006-06-09 Sjoerd Simons <sjoerd@luon.net>
1176
+
1177
+ * src/rbgobj_object.c: Only let the GObject mark function retrieve
1178
+ object properties that it will actually mark. Which is currently just
1179
+ other GObjects
1180
+
1181
+ 2006-06-05 Masao Mutoh <mutoh@highway.ne.jp>
1182
+
1183
+ * src/rbgobj_closure.c, glib2.def: Works on Windows again.
1184
+
1185
+ 2006-05-29 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
1186
+
1187
+ * src/rbgobjvalue.c: Use g_type_set_qdata and g_type_get_qdata instead
1188
+ of ruby's hash table.
1189
+
1190
+ * src/rbgobj_singal.c: new function gobj_sig_connect_impl
1191
+ extracted from gobj_sig_connect and gobj_sig_connect_after.
1192
+
1193
+ * src/rbgobj_signal.c: Make eNoSignal and _signal_list to be static.
1194
+
1195
+ 2006-05-27 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
1196
+
1197
+ * src/rbgobj_object.c: Remove GLib::Object#singleton_method_added.
1198
+ Now we can't define signal handlers by defining singleton methods.
1199
+
1200
+ * src/rbgobj_typeinstance.c (each_cinfo): Fix to traverse ancestor's cinfo.
1201
+
1202
+ * src/rbgobj_paramspecs.c, src/rbgobj_value.c: Use RVAL2GOBJ instead of
1203
+ rbgobj_param_spec_get_struct().
1204
+ * src/rbgobj_param.c: Rename rbgobj_param_spec_get_struct() to
1205
+ rbgobj_get_param_spec().
1206
+
1207
+ * src/rbgobject.c: Remove rbgobj_ruby_object_from_instance_if_exist
1208
+ and add rbgobj_ruby_object_from_instance2.
1209
+ * src/rbgobject.c: Remove rbgobj_get_value_from_gobject_if_exist
1210
+ and extend rbgobj_get_value_from_gobject by adding one argument.
1211
+ * src/rbgobj_param.c: Remove rbgobj_get_value_from_param_spec_if_exist
1212
+ and extend rbgobj_get_value_from_param_spec by adding one argument.
1213
+ * src/rbgobject.h, src/global.h, src/glib2.def,
1214
+ src/rbgobj_typeinstance.c: Follow above changes.
1215
+
1216
+ * src/rbgobj_typeinterface.c: New file.
1217
+ * src/rbgobj_type.c, src/rbgobject.c: separate some interface stuffs
1218
+ into src/rbgobj_typeinterface.c.
1219
+
1220
+ * src/rbgobj_typeinstance.c: New file.
1221
+ * src/rbgobj_type.c, src/rbgobject.c, rbgobj_param.c: separate
1222
+ some cInstantiatable stuffs into rbgobj_typeinstance.c.
1223
+ * src/global.h: ditto.
1224
+
1225
+ * src/rbgobj_closure.c: Revert changes of 2006-04-15.
1226
+ We shouldn't use Data_Make_Struct in rclosure_marshal since
1227
+ this function could be called from arbitrary threads.
1228
+ * src/rbgobj_closure.c: simplify codes a bit.
1229
+
1230
+ * src/rbgobject.c, src/rbgobj_value.c, rbgobject.h, src/glib2.def:
1231
+ Add new APIs:
1232
+ void rbgobj_gc_mark_instance(gpointer instance) and
1233
+ void rbgobj_gc_mark_gvalue(GValue* value).
1234
+
1235
+ * src/rbgobject.c: Change to call `mark` and `free` functions of all
1236
+ associated cinfo (not only direct one).
1237
+
1238
+ * src/rbgobj_object.c: Register mark procedure which marks
1239
+ each property value. So that each property value is protected from GC
1240
+ whenever the owner is alive.
1241
+
1242
+ * src/rbgobj_param.c:
1243
+ Add rbgobj_get_value_from_param_spec_if_exist.
1244
+
1245
+ * tests/test-glib2.rb (test_inheritance_and_gc): call GC.start.
1246
+
1247
+ 2006-05-27 Kouhei Sutou <kou@cozmixng.org>
1248
+
1249
+ * src/rbglib_maincontext.c: fixed idle/timeout callback memory leak.
1250
+
1251
+ * src/rbgobject.c: added rbgobj_get_relative_removable.
1252
+ * src/rbgobject.h: ditto.
1253
+ * src/glib2.def: ditto.
1254
+
1255
+ * src/rbglib_source.c: moved GLib::Source.remove to
1256
+ rbglib_maincontext.c
1257
+
1258
+ * src/rbglib.c: initialize source before main_context.
1259
+
1260
+ 2006-05-26 Sjoerd Simons <sjoerd@luon.net>
1261
+
1262
+ * src/rbgobj_closure.c: Ensure that a signal handler in ruby is always run in
1263
+ a ruby native thread. This allows signals coming from non-ruby native threads
1264
+ to be handled correctly. Needs ruby configured with --enable-pthread to work
1265
+ (otherwise the behaviour isn't changed)
1266
+
1267
+ 2006-05-26 Sjoerd Simons <sjoerd@luon.net>
1268
+
1269
+ * src/rbglib.h, src/global.h: Move the 64 bit integer
1270
+ util functions to the public header
1271
+
1272
+ 2006-05-27 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
1273
+
1274
+ * src/rbgobj_signal.c: Fix the format string of rb_raise to match with
1275
+ actual arguments.
1276
+
1277
+ 2006-05-26 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
1278
+
1279
+ * extconf.rb, src/rbgobj_rbgobj_closure.c: fix compilation error on YARV.
1280
+
1281
+ 2006-05-23 Sjoerd Simons
1282
+
1283
+ * src/rbgobj_fundamental.c: Fixed typo.
1284
+
1285
+ 2006-05-18 Kouhei Sutou <kou@cozmixng.org>
1286
+
1287
+ * src/lib/pkg-config.rb (PKGConfig#have_package): accepted 0.X.X
1288
+ version as check target version.
1289
+
1290
+ 2006-05-17 Masao Mutoh <mutoh@highway.ne.jp>
1291
+
1292
+ * src/rbgobj_strv.c: Removed GLib::Strv because they are useless.
1293
+ * src/rbgobj_valuearray.c: Removed GLib::ValueArray.
1294
+
1295
+ 2006-05-17 Sjoerd Simons
1296
+
1297
+ * src/rbgobj_valuearray.c: Added.
1298
+ * src/rbgobj_closure.c: Fixed crash when handling exception coming
1299
+ from an signal handler.
1300
+
1301
+ 2006-05-14 Sjoerd Simons
1302
+
1303
+ * src/rbgobj_enums.c: Don't crash if a genum's nick is uninitialized.
1304
+ * src/rbglib_completion.c: Fixed GLib::Completion#remove_items.
1305
+ * src/glib2.def, global.h, rbgobj_type.c, rbgobj_value.c,
1306
+ rbgobject.[ch], rbgobj_fundamental.c: Added to be able to
1307
+ add new fundamental object to Ruby/GLib2 such as GLib::Object,
1308
+ GLib::Boxed.
1309
+
1310
+ 2006-04-20 Kouhei Sutou <kou@cozmixng.org>
1311
+
1312
+ * src/rbgobj_closure.c (g_rclosure_attach): Fixed a bug
1313
+ GLib::Object.type_register doesn't work.
1314
+ * src/rbgobj_type.c: Fixed a bug GLib::MetaInterface#gtype doesn't
1315
+ work.
1316
+
1317
+ * src/rbgobj_closure.c: Fixed a closure reference count bug.
1318
+
1319
+ 2006-04-19 Kouhei Sutou <kou@cozmixng.org>
1320
+
1321
+ * src/rbgobj_type.c (rbgobj_lookup_class): fixed typo.
1322
+
1323
+ 2006-04-15 Kouhei Sutou <kou@cozmixng.org>
1324
+
1325
+ * src/rbgobj_closure.c (rclosure_marshal, rclosure_marshal_body):
1326
+ Changed an argument type to VALUE from struct marshal_arg *.
1327
+
1328
+ 2006-03-18 Kouhei Sutou <kou@cozmixng.org>
1329
+
1330
+ * src/rbgobj_closure.c: Fixed memory leak. Held closure in each
1331
+ object instead of using global table to protect GRClosure from
1332
+ Ruby's GC. Each function using GRClosure needs to call
1333
+ g_rclosure_attach to protect GRClosure from Ruby's GC.
1334
+
1335
+ * src/glib2.def: Added g_rclosure_attach.
1336
+ * src/rbgobject.h: ditto.
1337
+
1338
+ * src/rbgobj_object.c: Called g_rclosure_attach.
1339
+ * src/rbgobj_signal.c: ditto.
1340
+
1341
+ 2006-03-11 Joao Pedrosa
1342
+
1343
+ * src/rbglib_win32.c: Fix a typo on win32.
1344
+
1345
+ 2006-02-08 Kouhei Sutou <kou@cozmixng.org>
1346
+
1347
+ * src/rbglib_win32.c: Supported GLib.win32_locale and
1348
+ GLib.win32_locale_filename_from_utf8.
1349
+
1350
+ * src/rbglib_i18n.c: Supported GLib.language_names.
1351
+
1352
+ 2006-01-14 Kouhei Sutou <kou@cozmixng.org>
1353
+
1354
+ * src/rbglib_source.c: GLib::Source#remove -> GLib::Soruce.remove.
1355
+
1356
+ 2005-12-17 Masao Mutoh <mutoh@highway.ne.jp>
1357
+
1358
+ * src/rbgobj_signal.c: Fixed to use G_BLOCK_PROC.
1359
+
1360
+ 2005-11-23 Masao Mutoh <mutoh@highway.ne.jp>
1361
+
1362
+ * src/rbglib_timer.c: Fix to compile on Cygwin.
1363
+
1364
+ 2005-11-14 Masao Mutoh <mutoh@highway.ne.jp>
1365
+
1366
+ * src/rbglib.h: Increment micro version.
1367
+ * src/rbgobject.h, glib2.def: Fixed problems on Win32.
1368
+
1369
+ 2005-11-05 Masao Mutoh <mutoh@highway.ne.jp>
1370
+
1371
+ * src/rbgobject.[ch]: Added G_CHILD_REMOVE_ALL.
1372
+
1373
+ 2005-11-03 Masao Mutoh <mutoh@highway.ne.jp>
1374
+
1375
+ * src/rbglib_mainloop.c: rb_thread_wait_for waits 10ms instead of 100ms
1376
+ to avoid to lose any signals for Win32. Report by MIYAMUKO Katsuyuki.
1377
+ * src/rbgobject.[ch]: Added G_CHILD_SET, _UNSET, _ADD, _REMOVE.
1378
+ * src/rbgobj_object.c: Keeps ruby objects as instance variables
1379
+ of the object not to be GCed(GLib::Object#(set|get)_property).
1380
+ * src/rbgobject.c: Fixed memory leaks. Bug #1341573. Retrieve
1381
+ the code from 0.13.0. So, other libs need to support G_CHILD_*
1382
+ to avoid Tomasz's problem(2005-09-15).
1383
+
1384
+ 2005-10-16 Masao Mutoh <mutoh@highway.ne.jp>
1385
+
1386
+ * src/rbglib.h: Increment version information.
1387
+ * src/rbglib_mainloop.c: Fixed to compile on Win32.
1388
+
1389
+ 2005-10-15 Masao Mutoh <mutoh@highway.ne.jp>
1390
+
1391
+ * src/rbgobj_type.c, rbglib_timer.c, rbglib_completion.c,
1392
+ rbgobject.c, rbgobj_type.c, rbglib_messages.c:
1393
+ Fixed a compilation errors/warnings under GTK+-2.0/Ruby-1.6.
1394
+ * src/rbglib.c, src/rbglib_timer.c: Added GLib::Timer.
1395
+ * sample/timer.rb: Added.
1396
+ * src/rbglib_completion.c: Added GLib::Completion.
1397
+ * sample/completion.rb: Added.
1398
+
1399
+ 2005-10-10 Masao Mutoh <mutoh@highway.ne.jp>
1400
+
1401
+ * src/rbglib.c: Added constants from "Limits of Basic Types",
1402
+ "Numerical Definitions".
1403
+ * src/rbglib_shell.c: Added GLib::Shell.
1404
+ * sample/shell.rb: Added.
1405
+
1406
+ 2005-10-08 Masao Mutoh <mutoh@highway.ne.jp>
1407
+
1408
+ * src/lib/mkmf-gnome2.rb: Added make_version_header.
1409
+
1410
+ 2005-10-07 Masao Mutoh <mutoh@highway.ne.jp>
1411
+
1412
+ * src/rbglib_mainloop.c: Works with ruby threads and signal handlers.
1413
+ Reported by Bram Senders.
1414
+
1415
+ 2005-10-05 Masao Mutoh <mutoh@highway.ne.jp>
1416
+
1417
+ * src/rbgobj_enums.c: Supports spaces in nick names.
1418
+ Reported by Detlef Reichl.
1419
+
1420
+ 2005-10-04 Masao Mutoh <mutoh@highway.ne.jp>
1421
+
1422
+ * src/lib/mkmf-gnome2.rb: Fix a bug to compile
1423
+ Ruby-GNOME2 with Ruby/Cairo on Win32.
1424
+ * src/rbglib_utils.c: Fix a linking error on Win32.
1425
+ * extconf.rb: ditto.
1426
+
1427
+ 2005-09-29 Masao Mutoh <mutoh@highway.ne.jp>
1428
+
1429
+ * src/rbglib.c: Added GLib::BUILD_VERSION.
1430
+
1431
+ 2005-09-18 Masao Mutoh <mutoh@highway.ne.jp>
1432
+
1433
+ * src/rbgobj_type.c: Add GLib::MetaInterface#install_property, #property,
1434
+ #properties.
1435
+ * src/rbgobject.c: Doesn't wrap the set_foo functions
1436
+ for construct only properties by Sven Herzberg [Bug #1192975]
1437
+
1438
+ 2005-09-15 Masao Mutoh <mutoh@highway.ne.jp>
1439
+
1440
+ * src/lib/glib2.rb: Supports Ruby-GetText-Package.
1441
+ You can use GetText methods unless "require 'gettext'".
1442
+ And it works in English if the users don't have Ruby-GetText-Package.
1443
+ * src/rbgobject.c: Keep the ruby object when the GObject is removed by C side.
1444
+ Tomasz Wegrzanowski.
1445
+
1446
+ 2005-09-13 Masao Mutoh <mutoh@highway.ne.jp>
1447
+
1448
+ * src/rbglib_messages.c: Show Warning messages unless -d option.
1449
+ Pointed out by Guillaume Cottenceau.
1450
+
1451
+ 2005-09-12 Masao Mutoh <mutoh@highway.ne.jp>
1452
+
1453
+ * src/rbgobject.c (rbgobj_instance_from_ruby_object): Fixed the error messages
1454
+ "TypeError: fundamental type glong isn't supported" to
1455
+ "TypeError:Fixnum isn't supported". Pointed out by Guillaume Cottenceau.
1456
+
1457
+ 2005-09-08 Kouhei Sutou <kou@cozmixng.org>
1458
+
1459
+ * src/rbgobj_boxed.c (rbgobj_make_boxed): Return nil if boxed
1460
+ object is NULL.
1461
+
1462
+ 2005608-21 Pascal Terjan <pterjan@linuxfr.org>
1463
+
1464
+ * src/rbglib_utils.c: Added GLib.listenv and .host_name (2.8)
1465
+
1466
+ 2005-07-30 Masao Mutoh <mutoh@highway.ne.jp>
1467
+
1468
+ * src/rbglib.h: Increment version.
1469
+ * sample/type-register.rb: Fix a bug.
1470
+
1471
+ 2005-07-27 Masao Mutoh <mutoh@highway.ne.jp>
1472
+
1473
+ * src/lib/pkg-config.rb: Added PKGConfig.name, .description,
1474
+ .provides, .requires.
1475
+
1476
+ 2005-07-26 Masao Mutoh <mutoh@highway.ne.jp>
1477
+
1478
+ * src/rbglib_iochannel.c, rbglib_maincontext.c: Works on Win32 again.
1479
+
1480
+ 2005-07-24 Masao Mutoh <mutoh@highway.ne.jp>
1481
+
1482
+ * src/lib/pkg-config.rb: Added PKGConfig.list_all.
1483
+
1484
+ 2005-07-23 Masao Mutoh <mutoh@highway.ne.jp>
1485
+
1486
+ * extconf.rb, src/rbglib_maincontext.c, rbglib_iochannel.c:
1487
+ Fix to work on ruby-1.6.8, GTK+-2.0.6.
1488
+ * src/rbglib_iochannel.c, rbgobj_object.c: Fix a compiling warning.
1489
+
1490
+ 2005-07-15 Masao Mutoh <mutoh@highway.ne.jp>
1491
+
1492
+ * sample/iochannel.rb, timeout.rb: Modified header comments.
1493
+
1494
+ 2005-07-10 Masao Mutoh <mutoh@highway.ne.jp>
1495
+
1496
+ * sample/iochannel.rb: Added.
1497
+
1498
+ 2005-07-02 Masao Mutoh <mutoh@highway.ne.jp>
1499
+
1500
+ * tests/test-iochannel.*: Added tests for GLib::IOChannel.
1501
+
1502
+ 2005-06-30 Masao Mutoh <mutoh@highway.ne.jp>
1503
+
1504
+ * src/rbglib_iochannel.c: Rename GLib::IOChannel#fd => #fileno, #to_i.
1505
+ Improved #seek.
1506
+
1507
+ 2005-06-29 Masao Mutoh <mutoh@highway.ne.jp>
1508
+
1509
+ * src/rbglib_iochannel.c: Added GLib::IOChannel#each_char, #each, #each_line.
1510
+
1511
+ 2005-06-28 Masao Mutoh <mutoh@highway.ne.jp>
1512
+
1513
+ * src/rbglib_iochannel.c: Rename GLib::IOChannel#read_chars => #read.
1514
+ Unify GLib::IOChannel#read_to_end => #read.
1515
+
1516
+ 2005-06-26 Masao Mutoh <mutoh@highway.ne.jp>
1517
+
1518
+ * src/rbglib_iochannel.c: Rename GLib::IOChannel#read_unichar => #readchar.
1519
+ #read_line => #readline. Add #gets, #getc.
1520
+
1521
+ 2005-06-16 Masao Mutoh <mutoh@highway.ne.jp>
1522
+
1523
+ * src/rbgobj_strv.c: Fix double free error.
1524
+ * src/rbglib_iochannel.c: Added GLib::IOChannel.
1525
+ * src/rbglib.c, rbgobject.h: ditto.
1526
+
1527
+ 2005-03-24 Masao Mutoh <mutoh@highway.ne.jp>
1528
+
1529
+ * sample/spawn.rb: Add a comment. Bugs:1159417.
1530
+ * extconf.rb: Add require gtherad-2.0. Bugs: 1159413
1531
+
1532
+ 2005-03-21 Vincent Isambart <isambart@netcourrier.com>
1533
+
1534
+ * src/lib/pkg-config.rb: Renames the "libs" local variable to "libraries"
1535
+ to work ruby-1.9.x.
1536
+
1537
+ 2005-03-14 Masao Mutoh <mutoh@highway.ne.jp>
1538
+
1539
+ * src/rbglib.h, rbgobject.h: Move some macros/definitions to rbgobject.h
1540
+ Reported by Vincent Isambart.
1541
+ * src/rbglib_maincontext.c: Added GLib::MainContext#query.
1542
+
1543
+ 2005-03-13 Masao Mutoh <mutoh@highway.ne.jp>
1544
+
1545
+ * sample/idle.rb, timeout.rb, timeout2.rb: Added.
1546
+ * src/rbglib_pollfd.c: Added GLib::PollFD.
1547
+ * src/rbglib_source.c: Added GLib::Source.
1548
+ * src/rbglib_maincontext.c: Added GLib::MainContext#find_source,
1549
+ #add_poll, #remove_poll, GLib::Timeout, GLib::Idle, GLib::ChildWatch.
1550
+ * src/rbglib.[ch]: Support GLib::PollFD, GLib::Source.
1551
+
1552
+ 2005-03-12 Masao Mutoh <mutoh@highway.ne.jp>
1553
+
1554
+ * src/rbglib_mainloop.c: Added GLib::MainLoop.
1555
+ * src/rbglib_maincontext.c: Added GLib::MainContext.
1556
+ * src/rbglib.[ch]: Support GLib::MainLoop, GLib::MainContext.
1557
+
1558
+ 2005-03-06 Masao Mutoh <mutoh@highway.ne.jp>
1559
+
1560
+ * src/rbglib_threads.c, extconf.rb: Fix compiling problem on MSVC++.
1561
+
1562
+ 2005-03-05 Masao Mutoh <mutoh@highway.ne.jp>
1563
+
1564
+ * sample/spawn.rb: Added.
1565
+ * README: Revised.
1566
+
1567
+ 2005-02-26 Masao Mutoh <mutoh@highway.ne.jp>
1568
+
1569
+ * src/rbglib.c, rbglib_threads.c: Added GLib::Threads.
1570
+ * src/lib/pkg-config.rb: Added PKGConfig.cflags_only_I, .cflags_only_other.
1571
+ * src/rbglib.h: Increment version information.
1572
+
1573
+ 2005-02-26 KATO Kazuyoshi <kzys@8-p.info>
1574
+
1575
+ * src/rbgobj_type.c (rbgobj_lookup_class): Fixed a problem in Ruby 1.9.
1576
+ [ruby-list:40518] [ruby-dev:23690]
1577
+
1578
+ 2005-02-22 Masao Mutoh <mutoh@highway.ne.jp>
1579
+
1580
+ * src/lib/glib2.rb: Removed to call GLib::Log.cancel_handler.
1581
+
1582
+ 2005-02-17 Masao Mutoh <mutoh@highway.ne.jp>
1583
+
1584
+ * src/lib/mkmf-gnome2.rb: Don't remove Makefile with 'nmake clean'.
1585
+
1586
+ 2005-02-15 Masao Mutoh <mutoh@highway.ne.jp>
1587
+
1588
+ * README, COPYING.LIB: Replace "GNU LIBRARY GENERAL PUBLIC LICENSE"
1589
+ to "GNU LESSER GENERAL PUBLIC LICENSE".
1590
+
1591
+ 2005-02-09 Masao Mutoh <mutoh@highway.ne.jp>
1592
+
1593
+ * src/lib/glib2.rb: Fix the default error level.
1594
+
1595
+ 2005-02-02 Masao Mutoh <mutoh@highway.ne.jp>
1596
+
1597
+ * src/rbglib_messages.c: Fix a compiling warning on Cygwin.
1598
+
1599
+ 2005-02-01 Masao Mutoh <mutoh@highway.ne.jp>
1600
+
1601
+ * src/lib/mkmf-gnome2.rb: Change checking-rules order.
1602
+ Added GTK_BASE_PATH environment variable option for Win32.
1603
+ * src/rbglib.c, rbglib_convert.c, rbgutil.h, rbgobject.h:
1604
+ Remove to include glib.h directly.
1605
+
1606
+ 2005-01-31 Masao Mutoh <mutoh@highway.ne.jp>
1607
+
1608
+ * src/rbglib_messages.c: Fix segfault, and make it simple.
1609
+ Now it doesn't raise Exception, because of bad influence to
1610
+ other libs such as gnomeprint.
1611
+
1612
+ 2005-01-30 Masao Mutoh <mutoh@highway.ne.jp>
1613
+
1614
+ * extconf.rb: Follow mkmf-gnome2.rb changes.
1615
+ * src/lib/pkgconfig.rb: Separated from mkmf-gnome2.rb.
1616
+
1617
+ 2005-01-28 Masao Mutoh <mutoh@highway.ne.jp>
1618
+
1619
+ * src/rbglib_message.c, rbglib_spawn.c, rbgobject.c, rbgobj_boxed.c,
1620
+ rbgobj_closure.c,rbgobj_enums.c,rbgobj_object.c, rbgobj_type.c,
1621
+ src/lib/mkmf-gnome2.rb: Support MS VC++.
1622
+ * src/lib/mkmf-gnome2.rb: Added setup_win32, add_depend_package.
1623
+ * src/glib.def: Added rbgobj_register_class.
1624
+
1625
+ 2005-01-23 Masao Mutoh <mutoh@highway.ne.jp>
1626
+
1627
+ * src/lib/glib2.rb: Remove $KCODE="U". Reported by Dafydd Harries.
1628
+ Added header information.
1629
+
1630
+ 2005-01-09 Masao Mutoh <mutoh@highway.ne.jp>
1631
+
1632
+ * src/lib/glib2.rb: Improved error handling.
1633
+ * src/rbglib_messages.c: ditto.
1634
+ * src/rbgobj_strv.c: Added for GLib-2.4.x. Support GStrv as Array.
1635
+ * src/rbgobject.c: Support GStrv.
1636
+
1637
+ 2004-11-21 Masao Mutoh <mutoh@highway.ne.jp>
1638
+
1639
+ * src/rbglib_messages.c, src/lib/glib2.rb:
1640
+ Rewrite code to C for stablity.
1641
+
1642
+ 2004-11-14 Masao Mutoh <mutoh@highway.ne.jp>
1643
+
1644
+ * src/rbglib.h: Increment version information.
1645
+
1646
+ 2004-11-03 Masao Mutoh <mutoh@highway.ne.jp>
1647
+
1648
+ * src/rbglib_messages.c: Works again for ruby-1.8.x.
1649
+ Reported by Kohei Sutou.
1650
+
1651
+ 2004-10-31 Masao Mutoh <mutoh@highway.ne.jp>
1652
+
1653
+ * src/rbglib_messages.c: Check the paratmeter is Block or not.
1654
+
1655
+ 2004-10-22 Masao Mutoh <mutoh@highway.ne.jp>
1656
+
1657
+ * src/lib/glib2.rb: Added GLib.check_binding_version?
1658
+ * src/rbglib_utils.c: GLib.check_version: Use static variables
1659
+ instead of MACROS.
1660
+ GLib.check_version -> GLib.check_version?.
1661
+ * sample/utils.rb: ditto.
1662
+
1663
+ 2004-10-20 Masao Mutoh <mutoh@highway.ne.jp>
1664
+
1665
+ * src/rbglib_convert.c: Implemented GLib::ConvertError.
1666
+
1667
+ 2004-10-18 Masao Mutoh <mutoh@highway.ne.jp>
1668
+
1669
+ * src/lib/mkmf-gnome2.rb: Added PKGConfig.modversion, .check_version?.
1670
+ PKGConfig#have_package accept major, minor micro version to check
1671
+ the module version correctly.
1672
+ Pointed out by Kouhei Sutou.
1673
+
1674
+ 2004-10-17 Vincent Isambart <isambart@netcourrier.com>
1675
+
1676
+ * src/lib/mkmf-gnome2.rb: Renamed add_uniq_to_objs to add_obj.
1677
+
1678
+ 2004-10-17 Vincent Isambart <isambart@netcourrier.com>
1679
+
1680
+ * src/lib/mkmf-gnome2.rb: Added the add_uniq_to_objs function.
1681
+
1682
+ 2004-09-23 Masao Mutoh <mutoh@highway.ne.jp>
1683
+
1684
+ * src/lib/glib2.rb: Renamed GLib::Log.set_error_domain to
1685
+ GLib::Log.set_log_domain.
1686
+
1687
+ 2004-09-23 Masao Mutoh <mutoh@highway.ne.jp>
1688
+
1689
+ * src/lib/glib2.rb: Improved log handling.
1690
+ Define GLib::ERROR_DOMAIN, GLib::Object::LOG_DOMAIN,
1691
+ GLib::Thread::LOG_DOMAIN, GLib::Module::LOG_DOMAIN.
1692
+
1693
+ 2004-09-21 Masao Mutoh <mutoh@highway.ne.jp>
1694
+
1695
+ * src/lib/glib2.rb: Add GLib::Log.set_error_domain for improvement
1696
+ error handling.
1697
+
1698
+ 2004-09-03 Masao Mutoh <mutoh@highway.ne.jp>
1699
+
1700
+ * src/lib/glib2.rb: Set $KCODE to "U".
1701
+
1702
+ 2004-08-22 Masao Mutoh <mutoh@highway.ne.jp>
1703
+
1704
+ * src/rbgobj_enums.c: makes rbgobj_define_const to a global function.
1705
+ * src/rbglib_error.c: Fix bugs. Re-implement rbgerr_define_gerror.
1706
+
1707
+ 2004-08-19 Masao Mutoh <mutoh@highway.ne.jp>
1708
+
1709
+ * src/rbgobj_type.c: rbgobj_define_class() can define parent compulsorily.
1710
+ * src/rbgobj_param.c, rbgobj_object.c, rbgobj_boxed.c: Follow above change.
1711
+
1712
+ * src/rbgerror.c, rbglib.h: Added. Replace rbgutil_gerror2exception.
1713
+ * src/rbgutil.[ch]: Removed rbgutil_gerror2exception.
1714
+ * src/rbgfileutils.c: Added for GLib::FileError.
1715
+ * src/rbgutil.c: Improved RAISE_GERROR.
1716
+ * src/rbglib.c, glib2.def: Follow these changes.
1717
+
1718
+ 2004-08-15 Masao Mutoh <mutoh@highway.ne.jp>
1719
+
1720
+ * src/rbglib.h: Increment version number.
1721
+
1722
+ 2004-08-07 Masao Mutoh <mutoh@highway.ne.jp>
1723
+
1724
+ * src/rbglib_spawn.c: Fix warnings.
1725
+ * src/rbgobject.c: Fix a warning.
1726
+
1727
+ 2004-08-04 Masao Mutoh <mutoh@highway.ne.jp>
1728
+
1729
+ * src/rbglib.h: Define GPid when GLib < 2.4.0.
1730
+
1731
+ 2004-08-02 Masao Mutoh <mutoh@highway.ne.jp>
1732
+
1733
+ * src/rbglib_spawn.c: Change the parent of GLib::Spawn*Error to
1734
+ StandardError from SystemCallError.
1735
+ Added GLib::Spawn#async_with_pipes, #async, #sync.
1736
+ Make uniform of the return values of GLib::Spawn#command_line_sync
1737
+ to #sync.
1738
+
1739
+ 2004-08-01 Masao Mutoh <mutoh@highway.ne.jp>
1740
+
1741
+ * src/rbglib.h, glib2.def: Export rbglib_spawn_error()
1742
+ for Gdk::Screen#spawn_on_screen.
1743
+ Increment version.
1744
+
1745
+ 2004-07-31 Masao Mutoh <mutoh@highway.ne.jp>
1746
+
1747
+ * src/rbglib.c: setlocale parameter was changed.
1748
+ LC_CTYPE and LC_MESSAGES are set not LC_ALL.
1749
+
1750
+ 2004-07-24 Masao Mutoh <mutoh@highway.ne.jp>
1751
+
1752
+ * tests/test-glib2.rb: Removed ^M. Pointed out by Laurent Sansonetti.
1753
+ * src/rbglib.c: Version informations use variables not macros.
1754
+ Added GLib::INTERFACE_AGE, GLib::BINARY_AGE.
1755
+ Pointed out by Jeremy Henty
1756
+
1757
+ 2004-05-21 Masao Mutoh <mutoh@highway.ne.jp>
1758
+
1759
+ * src/rbglib.h. glib2.def: Fixed a problem with rbg_cstr2rval_with_free
1760
+ reported by Joao Pedrosa.
1761
+
1762
+ 2004-05-16 Masao Mutoh <mutoh@highway.ne.jp>
1763
+
1764
+ * src/rbgobject.c (rbgobj_define_property_accessor): Supports
1765
+ interface properties (Since 2.4).
1766
+ * src/rbgobj_type.c (rbgobj_init_interface): ditto.
1767
+
1768
+ 2004-05-15 Masao Mutoh <mutoh@highway.ne.jp>
1769
+
1770
+ * src/rbglib.[ch]: Add CSTR2RVAL2 which free given char* area.
1771
+
1772
+ 2004-05-05 Laurent Sansonetti <lrz@gnome.org>
1773
+
1774
+ * src/rbglib_spawn.c: Fixed a memory overflow bug in the
1775
+ spawn_error table.
1776
+
1777
+ 2004-05-01 Masao Mutoh <mutoh@highway.ne.jp>
1778
+
1779
+ * src/rbglib_spawn.c: Fix an initial error on some platforms
1780
+ to restrict errno to exist the environment.
1781
+ Reported by Laurent Sansonetti.
1782
+
1783
+ 2004-04-30 Masao Mutoh <mutoh@highway.ne.jp>
1784
+
1785
+ * sample/utils.rb: Add a sample.
1786
+ * src/rbglib_utils.c: Add/Modify some methods.
1787
+ * src/lib/glib2.rb: Fix a bug which GLib.__add_one_arg_setter(klass)
1788
+ doen't work for module function and moved from src/rbgutil.c.
1789
+
1790
+ 2004-04-30 Pascal Terjan <pterjan@linuxfr.org>
1791
+
1792
+ * src/rbglib_utils.c: Added.
1793
+ * src/rbglib.c: Follow rbglib_utils.c added.
1794
+
1795
+ 2004-04-27 Masao Mutoh <mutoh@highway.ne.jp>
1796
+
1797
+ * src/rbgobj_type.c: Accept a ruby class when GType[...] is required.
1798
+ * sample/type-register2.rb: Added.
1799
+ * src/rbglib_spawn.c: Improve error classes.
1800
+ Separate module from GLib to GLib::Spawn.
1801
+ Add GLib::Spawn.close_pid.
1802
+
1803
+ 2004-04-27 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
1804
+
1805
+ * src/rbglib_spawn.c: Added.
1806
+ * src/rbglib.c: Follow above changes.
1807
+
1808
+ 2004-04-20 Masao Mutoh <mutoh@highway.ne.jp>
1809
+
1810
+ * src/rbglib_messages.c: Fix bugs, Add GLib::Log.log, set_fatal_mask,
1811
+ set_always_fatal, some constants.
1812
+ * src/lib/glib2.rb: Add GLib::Log.error, message, critical, warning.
1813
+
1814
+ 2004-04-15 Masao Mutoh <mutoh@highway.ne.jp>
1815
+
1816
+ * src/rbglib_convert.c: Add GLib.utf8_validate.
1817
+ * src/rbglib.c: Commented out Init_mem(), because of "cross-thread violation"
1818
+ with Gst::Thread.
1819
+
1820
+ 2004-03-24 Masao Mutoh <mutoh@highway.ne.jp>
1821
+
1822
+ * src/rbgutil.c: RAISE_GERROR() returns error messages in UTF-8.
1823
+
1824
+ 2004-03-14 Masao Mutoh <mutoh@highway.ne.jp>
1825
+
1826
+ * src/rbglib.h: Increment version number.
1827
+
1828
+ 2004-03-10 Masao Mutoh <mutoh@highway.ne.jp>
1829
+
1830
+ * src/rbgobj_type.c: Fix a compilation error on MinGW.
1831
+
1832
+ 2004-03-07 Masao Mutoh <mutoh@highway.ne.jp>
1833
+
1834
+ * sample/type-register.rb: Omit a parameter for type_register.
1835
+
1836
+ 2004-03-06 Masao Mutoh <mutoh@highway.ne.jp>
1837
+
1838
+ * src/rbglib.h src/rbgobj_object.c src/rbgobj_paramspecs.c
1839
+ src/rbgobj_signal.c src/rbgobj_type.c src/rbgobject.c
1840
+ src/rbgobject.h src/rbgutil.c src/lib/mkmf-gnome2.rb: Update Copyright.
1841
+ * src/lib/mkmf-gnome2.rb: Work under ruby-1.8.1 or later on Cygwin.
1842
+
1843
+ 2004-03-05 Masao Mutoh <mutoh@highway.ne.jp>
1844
+
1845
+ * src/rbgobj_object.c: Fix a memleak for GLib::Object#properties.
1846
+ * src/rbgobj_signal.c: Fix a memleak for GLib::Object#signals.
1847
+
1848
+ 2004-03-04 Masao Mutoh <mutoh@highway.ne.jp>
1849
+
1850
+ * src/rbgutil.c: Work under ruby-1.6.8.
1851
+ The idea is from Sasada Koichi.
1852
+
1853
+ 2004-03-02 Masao Mutoh <mutoh@highway.ne.jp>
1854
+
1855
+ * src/rbglib.h: Increment version number.
1856
+
1857
+ 2004-02-24 Masao Mutoh <mutoh@highway.ne.jp>
1858
+
1859
+ * src/rbgobject.c: Remove id, send from prop_exclude_list.
1860
+
1861
+ 2004-02-23 Masao Mutoh <mutoh@highway.ne.jp>
1862
+
1863
+ * src/rbgobject.h: Add G_DEF_CLASS3(). This is for real-gtype
1864
+ but its foo_get_type() isn't public method such as GdkScreenX11.
1865
+ * src/rbgobj_type.c: Add RGObjClassInfoDynamic and G_DEF_CLASS3().
1866
+ * src/glib2.def: ditto.
1867
+
1868
+ 2004-02-22 Masao Mutoh <mutoh@highway.ne.jp>
1869
+
1870
+ * src/rbgobject.c: prop_exclude_list defined as a static hash.
1871
+
1872
+ 2004-02-14 Vincent Isambart <isambart@netcourrier.com>
1873
+
1874
+ * src/lib/mkmf-gnome2.rb: replaced PLATFORM with RUBY_PLATFORM
1875
+
1876
+ 2004-02-01 Masao Mutoh <mutoh@highway.ne.jp>
1877
+
1878
+ * src/rbgobj_paramspecs.c: Fix a bug for GLib::Param::Flags.new.
1879
+
1880
+ 2003-12-21 Masao Mutoh <mutoh@highway.ne.jp>
1881
+
1882
+ * src/rbgobj_object.c: Fix a typo. Pointed out by Kazuhiro NISHIYAMA.
1883
+
1884
+ 2003-12-21 Kenichi Komiya <kom@mail1.accsnet.ne.jp>
1885
+
1886
+ * src/rbgobj_object.c: Check when the first argument is nil or Hash.
1887
+
1888
+ 2003-11-22 Masao Mutoh <mutoh@highway.ne.jp>
1889
+
1890
+ * src/rbglib.h: increment RBGLIB_MICRO_VERSION.
1891
+
1892
+ 2003-11-15 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
1893
+
1894
+ * src/rbgobj_enums.c: disable range checks.
1895
+
1896
+ * sample/type-register.rb: call GLib::Object#notify when a
1897
+ property is updated.
1898
+
1899
+ * src/rbgobj_signal.c: remove GLib::MetaInterface#signal_override
1900
+ and GLib::Instantiatable#signal_chain_from_overridden.
1901
+
1902
+ 2003-11-10 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
1903
+
1904
+ * src/rbglib.c: remove duplication of #include <locale.h>.
1905
+
1906
+ 2003-11-10 Masao Mutoh <mutoh@highway.ne.jp>
1907
+
1908
+ * src/rbgobj_enums.c, rbgobject.h: Add G_RENAME_NICK.
1909
+
1910
+ 2003-11-07 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
1911
+
1912
+ * sample/type-register.rb: remove Japanese comments.
1913
+
1914
+ * src/rbglib.h: increment RBGLIB_MINOR_VERSION.
1915
+
1916
+ * src/rbgobj_object.c: do not depend on C99, Thanks to Hiroshi
1917
+ IGARASHI.
1918
+
1919
+ * src/rbgobj_object.c: remove unnecessary #endif, Thanks to Nobuyoshi
1920
+ Nakada.
1921
+
1922
+ 2003-11-05 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
1923
+
1924
+ * sample/type-register.rb: add new file.
1925
+
1926
+ * rename test/test-glib2.rb to tests/test-glib2.rb.
1927
+
1928
+ * src/rbgobj_object.c: rename GLib::Object.register_type to
1929
+ type_register and change its arguments.
1930
+
1931
+ * src/rbgobj_object.c, src/rbgobj_signal.c, src/global.h: enable
1932
+ subtyping codes by default.
1933
+
1934
+ 2003-10-29 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
1935
+
1936
+ * src/global.h, src/rbgobj_object.c, src/rbgobj_signal.c: share a
1937
+ module which serves to hook 'super'.
1938
+
1939
+ * src/rbgobj_signal.c: change prefix of default handler of signals
1940
+ from 'do_' to 'signal_do_'.
1941
+
1942
+ * test/test-glib2.rb: new file.
1943
+
1944
+ 2003-10-26 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
1945
+
1946
+ * src/rbgobj_object.c (get_prop_func, set_prop_func): replace '-' with
1947
+ '_' from method name.
1948
+
1949
+ * src/rbgobj_object.c (get_prop_func, set_prop_func): do not call
1950
+ #do_get_property and #do_set_property, but #foo and #foo=.
1951
+
1952
+ * src/rbgobj_signal.c (gobj_s_signal_new): change the arity of
1953
+ GLib::Instantiatable#signal_new.
1954
+
1955
+ 2003-10-24 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
1956
+
1957
+ * src/rbgobj_signal.c (emit_body, chain_from_overridden_body):
1958
+ remove G_SIGNAL_TYPE_STATIC_SCOPE flag from parameters and
1959
+ return value.
1960
+
1961
+ 2003-10-23 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
1962
+
1963
+ * src/rbgobj_enum.c (rbgobj_get_enum, rbgobj_get_flags): check if the
1964
+ argument GType is subtype of GEnum or GFlags.
1965
+
1966
+ * src/rbgobj_signal.c: new method
1967
+ GLib::Instantiatable#signal_has_handler_pending?.
1968
+
1969
+ * src/rbgobj_signal.c (g_signal_handler_block,
1970
+ gobj_sig_handler_unblock, gobj_sig_handler_disconnect):
1971
+ use NUM2ULONG instead of NUM2INT.
1972
+
1973
+ 2003-10-14 Masao Mutoh <mutoh@highway.ne.jp>
1974
+
1975
+ * src/rbgobj_signal.c: Fix a segfault when GLib::Object#signal_emit
1976
+ is called.
1977
+
1978
+ 2003-10-08 Laurent Sansonetti <lrz@gnome.org>
1979
+
1980
+ * src/rbgobj_param.c: Removed a compilation warning in function
1981
+ value_validate_ensure().
1982
+
1983
+ 2003-10-05 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
1984
+
1985
+ * src/rbglib.c: call g_mem_set_vtable() to make glib to use
1986
+ ruby_xmalloc(), ruby_xrealloc(), ruby_xfree().
1987
+
1988
+ 2003-09-26 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
1989
+
1990
+ * src/lib/mkmf-gnome2.rb: append "-I$(sitearchdir)" to $CPPFLAGS not
1991
+ $CFLAGS. and stop overriding create_makefile().
1992
+
1993
+ 2003-09-23 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
1994
+
1995
+ * src/rbgobj_signal.c (gobj_s_signal_new): use #instance_method,
1996
+ UnboundMethod#bind and Method#call instead of #__send__.
1997
+
1998
+ * src/rbgobj_signal.c (gobj_s_method_added): check GType.
1999
+
2000
+ 2003-09-22 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
2001
+
2002
+ * src/rbgobj_signal.c (gobj_s_sig_override): check if the class is
2003
+ registered.
2004
+
2005
+ * src/rbgobj_signal.c (gobj_s_method_added): when a method named
2006
+ 'do_<signal_name>' is defined then override default handler by the
2007
+ method.
2008
+
2009
+ 2003-09-20 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
2010
+
2011
+ * src/rbgobj_type.c: override #append_features of interface modules to
2012
+ prevent including them into classes which is not subclass of
2013
+ GLib::Instantiatable.
2014
+
2015
+ 2003-09-18 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
2016
+
2017
+ * src/rbgobj_closure.c: implement GLib::Closure#invalidate.
2018
+
2019
+ * src/rbgobj_closure.c: don't invoke Proc objects after ruby is
2020
+ terminated.
2021
+
2022
+ * src/rbgobj_signal.c: implement GLib::MetaInterface#signal_override
2023
+ and GLib::Instantiatable#signal_chain_from_overridden experimentaly.
2024
+
2025
+ 2003-09-06 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
2026
+
2027
+ * src/rbglib.c: define GLib::BINDING_VERSION.
2028
+
2029
+ * src/lib/mkmf-gnome2.rb: use PKG_CONFIG environment variable.
2030
+
2031
+ 2003-09-06 Masao Mutoh <mutoh@highway.ne.jp>
2032
+
2033
+ * src/lib/mkmf_gnome2.rb: Pass "-l$(sitearchdir)" at last of $CFLAGS.
2034
+
2035
+ 2003-09-03 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
2036
+
2037
+ * src/rbgobj_object.c (register_type): if the super type is not defined
2038
+ by ruby, then include a new module that defines #initialize.
2039
+
2040
+ * src/rbgobj_param.c (value_validate): use rb_ensure().
2041
+
2042
+ * src/rbgobj_param.c: disable GLib::Param#value_defaults? since the
2043
+ name is bad.
2044
+
2045
+ 2003-08-31 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
2046
+
2047
+ * src/rbgobj_enum.c (enum_coerce): use NUM2INT not NUM2UINT.
2048
+
2049
+ * src/rbgobj_paramspecs.c: delete unnecessary StringValue invocation.
2050
+
2051
+ * src/rbgobj_paramspecs.c: use RVAL2GENUM and RVAL2GFLAGS.
2052
+
2053
+ 2003-08-30 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
2054
+
2055
+ * src/lib/glib2.rb: rescue LoadError and Win32::Registry::Error
2056
+ separately.
2057
+
2058
+ * src/lib/glib2.rb: On mingw32 and mswin32 platform, require
2059
+ 'win32/registry' unconditionaly and rescue LoadError.
2060
+ (proposed by TAMURA.KENICHI <sgs02516@nifty.com>)
2061
+
2062
+ * src/rbgobj_enums.c: fixed rgbobj_get_enum - a VALUE was not
2063
+ converted to int before calling rbgobj_make_enum.
2064
+ (reported by Geoff Youngs <g@intersect-uk.co.uk>)
2065
+
2066
+ 2003-08-29 Vincent Isambart <isambart@netcourrier.com>
2067
+
2068
+ * src/rbgobj_enums.c: fixed rgbobj_get_flags - a VALUE was not
2069
+ converted to unsigned int before calling rbgobj_make_flags.
2070
+
2071
+ 2003-08-28 Masao Mutoh <mutoh@highway.ne.jp>
2072
+
2073
+ * extconf.rb: Exit with 1 when the package is not found.
2074
+
2075
+ 2003-08-25 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
2076
+
2077
+ * src/rbgobject.h: new macros RVAL2GENUM(), RVAL2GFLAGS(),
2078
+ GENUM2RVAL() and GFLAGS2RVAL().
2079
+
2080
+ * src/rbgobj_signal.c: new exception class GLib::NoSignalError.
2081
+
2082
+ * src/rbgobj_object.c: new exception class GLib::NoPropertyError.
2083
+
2084
+ * src/lib/glib2.rb: append Dropline GTK2-Runtime DLL path into PATH
2085
+ environmental variable. (proposed by TAMURA.KENICHI <sgs02516@nifty.com>)
2086
+
2087
+ * src/rbgobj_object.c: remove GLib::Object#property.
2088
+
2089
+ * src/rbgobj_enums.c (rbgobj_get_enum, rbgobj_get_flags):
2090
+ create temporary enum/flags object if the argument is an integer.
2091
+ this is to check if the integer is in the values avalable in the type.
2092
+ (proposed by Vincent Isambart <vincent.isambart@laposte.net>
2093
+
2094
+ * src/rbgobject.c (rbgobj_initialize_object): raise RuntimeError
2095
+ if the argument is NULL. (proposed by Vincent Isambart
2096
+ <vincent.isambart@laposte.net>)
2097
+
2098
+ 2003-08-21 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
2099
+
2100
+ * src/rbgobj_boxed.c: define GLib::Boxed#initialize which simply raise
2101
+ TypeError.
2102
+
2103
+ * src/rbglib2.rb: fix format of GLib::Flags#inspect.
2104
+
2105
+ * src/glib2.def, src/global.h, src/rbgobj_enums.c, src/rbgobj_type.c,
2106
+ src/rbgobj_value.c, src/rbgobject.h, src/lib/glib2.rb: new classes
2107
+ GLib::Enum and GLib::Flags.
2108
+
2109
+ 2003-08-17 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
2110
+
2111
+ * src/lib/glib2.rb: add new file.
2112
+
2113
+ * src/lib/mkmf-gnome2.rb (PKGConfig.have_package): don't use
2114
+ Array#quote. Because mkmf.rb of ruby-1.6 doesn't provide this method.
2115
+
2116
+ 2003-08-16 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
2117
+
2118
+ * src/rbgobject.h, src/rbgobj_type.c, let rbgobj_define_class() to
2119
+ take `const gchar*', not `gchar*'.
2120
+
2121
+ 2003-08-14 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
2122
+
2123
+ * src/lib/mkmf-gnome2.rb (PKGConfig.have_package): append linker
2124
+ flags other than -l and -L into $LDFLAGS.
2125
+
2126
+ 2003-08-09 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
2127
+
2128
+ * src/rbgobj_signal.c (gobj_sig_emit): fix to setup arg.self.
2129
+
2130
+ 2003-08-09 Masao Mutoh <mutoh@highway.ne.jp>
2131
+
2132
+ * src/depend: use old style
2133
+ * src/glib2.def: Add rbgobj_constant_remap.
2134
+
2135
+ 2003-08-06 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
2136
+
2137
+ * src/rbgobj_valuetypes.c: use GHashTable instead of Ruby's Hash
2138
+ for reference counting. Using Ruby's Hash may cause segmentaion fault
2139
+ when ruby exits.
2140
+
2141
+ * src/rbgobj_closure.c: use GHashTable instead of Ruby's Hash
2142
+ for the same reason as src/rbgobj_valuetypes.c.
2143
+
2144
+ * src/rbgobject.c (rbgobj_gobject_initialize): don't warn if the
2145
+ instance type is a subtype of the class type.
2146
+
2147
+ 2003-08-03 Masao Mutoh <mutoh@highway.ne.jp>
2148
+
2149
+ * src/rbgobj_valuetypes.c: Fix error for gcc 2.95.4.
2150
+ Reported by Hiroshi Igarashi.
2151
+
2152
+ 2003-08-02 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
2153
+
2154
+ * src/lib/mkmf-gnome2.rb (PKGConfig.have_package): use --libs-only-l
2155
+ and --libs-only-L instead of --libs.
2156
+
2157
+ 2003-08-02 Masao Mutoh <mutoh@highway.ne.jp>
2158
+
2159
+ * src/lib/mkmf-gnome2.rb: fix for other libraries can't compile
2160
+ in other directories.
2161
+
2162
+ 2003-08-02 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
2163
+
2164
+ * src/rbgobj_object.c (gobj_s_properties),
2165
+ src/rbgobj_signal.c (gobj_s_signals): recurse by default.
2166
+
2167
+ 2003-08-01 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
2168
+
2169
+ * src/rbgobj_type.c: don't free RGObjClassInfo structure.
2170
+
2171
+ 2003-07-28 Geoff Youngs <g@intersect-uk.co.uk>
2172
+ * src/rbgobj_enums.c: add rbgobj_constant_* to allow renaming
2173
+ invalid constants.
2174
+ * src/rbgobject.h: add G_RENAME_CONSTANT
2175
+
2176
+ 2003-07-26 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
2177
+
2178
+ * src/rbgobj_closure.c (rclosure_marshal): don't stop jumps.
2179
+ This is a temporary solution for the Ruby-GNOME2 0.6 release.
2180
+
2181
+ 2003-07-22 Masao Mutoh <mutoh@highway.ne.jp>
2182
+
2183
+ * src/rbglib.h: add CBOOL2RVAL, RVAL2CBOOL.
2184
+
2185
+ * src/lib/mkmf-gnome2.rb: Change include orders.
2186
+
2187
+ 2003-07-21 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
2188
+
2189
+ * src/rbgobj_enums.c (rbgobj_flags_add_constants): use UINT2NUM()
2190
+ instaed of INT2NUM().
2191
+
2192
+ * src/rbgobj_object.c (gobj_smethod_added): use
2193
+ rbgobj_get_signal_func().
2194
+
2195
+ * src/rbgobj_signal.c (gobj_s_signal_new): fix to treat accumulator
2196
+ correctly.
2197
+
2198
+ * src/rbgobj_type.c: implement GLib::Type#<=>.
2199
+
2200
+ * src/rbgobj_type.c: change superclass of GLib::Boxed from Data to
2201
+ Object.
2202
+
2203
+ * src/global.h, rbgutil.c: add new functions generic_s_new(),
2204
+ generic_s_gtype() and generic_gtype().
2205
+
2206
+ * rbgobj_boxed.c, rbgobj_type.c: use generic_s_new(),
2207
+ generic_s_gtype() and generic_gtype().
2208
+
2209
+ 2003-07-21 Masao Mutoh <mutoh@highway.ne.jp>
2210
+
2211
+ * src/rbgobj_closure.c: enhance warning message of rclosure_marshal()
2212
+ which is used in GLib::Instantiatable#signal_connect().
2213
+
2214
+ 2003-07-20 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
2215
+
2216
+ * src/rbgobj_signal.c, src/rbgobj_type.c, src/global.h: enable
2217
+ rbgobj_define_action_methods() by default.
2218
+ This function defines methods that emit action signals.
2219
+
2220
+ Action signals are signals that may freely be emitted on alive
2221
+ objects from user code via g_signal_emit() and friends, without
2222
+ the need of being embedded into extra code that performs pre or
2223
+ post emission adjustments on the object. They can also be thought
2224
+ of as by third-party code generically callable object methods.
2225
+
2226
+ * src/rbgobject.h, src/rbgobj_enum.c, src/glib2.def: add new function
2227
+ rbgobj_add_constants() and new macro G_DEF_CONSTANTS().
2228
+
2229
+ 2003-07-18 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
2230
+
2231
+ * src/rbgobj_signal.c (signal_add_emission_hook): fix to treat `detail'
2232
+ argument correctly.
2233
+
2234
+ 2003-07-17 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
2235
+
2236
+ * src/rbgobj_closure.c (rclosure_marshal): use rb_protect().
2237
+
2238
+ * src/rbgobj_valuetypes.c (value_transform_ruby_any): use rb_protect().
2239
+
2240
+ * src/rbgobject.c (rbgobj_gobject_new): use rb_ensure().
2241
+
2242
+ * src/rbgobj_signal.c (gobj_sig_emit): use rb_ensure().
2243
+
2244
+ * src/rbgobj_object.c (gobj_set_property):
2245
+ call rbgobj_rvalue_to_gvalue() even if the argument is nil.
2246
+
2247
+ * src/rbgobj_signal.c: remove Dispatch Closure stuff.
2248
+ use g_rclosure_new() instead.
2249
+
2250
+ * src/rbgobj_value.c (rbgobj_rvalue_to_gvalue): call #to_s only for
2251
+ Symbol->G_TYPE_STEING conversion.
2252
+
2253
+ * src/rbgobject.c (rbgobj_gobject_initialize): check if the argument
2254
+ has expected GType.
2255
+
2256
+ * src/rbgobject.c (rbgobj_get_gobject): raise TypeError instead of
2257
+ ArgumentError.
2258
+
2259
+ 2003-07-16 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
2260
+
2261
+ * src/rbgobj_boxed.c (boxed_to_ruby): convert NULL to nil.
2262
+
2263
+ * src/rbgobj_object.c (register_type): change error message:
2264
+ "parent class" to "super class".
2265
+
2266
+ * src/rbgobj_param.c: remove Param#default=.
2267
+ rename Param#defaults to Param#value_defaults?.
2268
+ rename Paramcompare to Param#value_compare.
2269
+ implement Param#value_validate, #value_convert,
2270
+ (value_defaults) initialize tmp.
2271
+
2272
+ * src/rbgobj_paramspecs.c: remove *#default and *#default_value.
2273
+
2274
+ * src/rbgobj_type.c:
2275
+ (get_superclass): change to static function.
2276
+ (GLib::Type#initialize): check if the given integer is valid GType
2277
+ by using g_type_name().
2278
+ (GLib::Type#==, #<, #>, #<=, #>=): return nil when uncomparable.
2279
+
2280
+ 2003-07-14 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
2281
+
2282
+ * src/depend: use $(srcdir) to allow building in different directories.
2283
+
2284
+ * src/rbgobj_param.c (inspect): change inspect format.
2285
+
2286
+ * src/rbgobj_param.c: new methods:
2287
+ GLib::Param#owner, GLib::Param#readable?,
2288
+ GLib::Param#writable?, GLib::Param#construct?,
2289
+ GLib::Param#construct_only?, GLib::Param#lax_validation?,
2290
+ GLib::Param#private?, GLib::Param#readwrite?
2291
+
2292
+ * src/rbgobj_paramspec.c: new methods:
2293
+ GLib::Param::Char#range, GLib::Param::UChar#range,
2294
+ GLib::Param::Int#range, GLib::Param::UInt#range,
2295
+ GLib::Param::Long#range, GLib::Param::ULong#range,
2296
+ GLib::Param::Int64#range, GLib::Param::UInt64#range,
2297
+ GLib::Param::Float#range, GLib::Param::Double#range
2298
+
2299
+ * src/rbgobj_boxed.c: implement GLib::Boxed#inspect and
2300
+ GLib::Boxed#initialize_copy.
2301
+ (boxed_from_ruby): accept nil and set NULL.
2302
+
2303
+ * src/rbgobj_signal.c: implement GLib::Signal#inspect and
2304
+ GLib::Signal#owner.
2305
+ (to_signal_id, to_gquark): removed.
2306
+ (gobj_s_signal_new, gobj_s_signal, gobj_sig_emit, gobj_sig_emit_stop):
2307
+ accept Symbol.
2308
+ (query_signal_id, query_signal_name, query_itype, query_return_type,
2309
+ query_signal_flags, query_param_types): fix argument declaration.
2310
+
2311
+ * src/rbgobj_valuetypes.c: implement GLib::Pointer#inspect,
2312
+ GLib::Pointer#==, GLib::Pointer#eql? and GLib::Pointer#hash.
2313
+
2314
+ 2003-07-13 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
2315
+
2316
+ * src/rbgobj_value.c, rbgobj_type.c:
2317
+ Accept rb_cObject as RBGOBJ_TYPE_RUBY_VALUE not G_TYPE_POINTER.
2318
+
2319
+ 2003-07-10 Masao Mutoh <mutoh@highway.ne.jp>
2320
+
2321
+ * src/rbgobj_value.c, rbgobj_value_types.c, rbgobj_type.c:
2322
+ Accept rb_cObject as G_TYPE_POINTER.
2323
+
2324
+ 2003-06-26 Masao Mutoh <mutoh@highway.ne.jp>
2325
+
2326
+ * src/rbgutil.h: Define G_BLOCK_PROC for ruby-1.8.x.
2327
+ * src/*c: Use G_BLOCK_PROC instead of rb_f_lambda().
2328
+ * src/lib/mkmf-gnome2.rb: Check rb_block_proc().
2329
+
2330
+ 2003-06-23 Masao Mutoh <mutoh@highway.ne.jp>
2331
+
2332
+ * src/rbglib.c: Add GLib::PRIORITY_*.
2333
+
2334
+ 2003-06-22 Masao Mutoh <mutoh@highway.ne.jp>
2335
+
2336
+ * src/rbglib.c: Call setlocale(LC_NUMERIC, "C") for some locales
2337
+ which doesn't use "." as decimal-point.
2338
+ Pointed out by Joao Pedrosa.
2339
+
2340
+ 2003-05-27 Geoff Youngs <g@intersect-uk.co.uk>
2341
+
2342
+ * rbgobject.c - altered rbgobj_instance_from_ruby_object()
2343
+ and rbgobj_ruby_object_from_instance() to
2344
+ convert between NULL and nil automatically
2345
+
2346
+ 2003-05-27 Masao Mutoh <mutoh@highway.ne.jp>
2347
+
2348
+ * src/depend: Add a file.
2349
+ * src/lib/mkmf-gnome2.rb: Add a file(Move from ../).
2350
+ * extconf.rb: Follow above changes.
2351
+
2352
+ 2003-05-21 Masao Mutoh <mutoh@highway.ne.jp>
2353
+
2354
+ * src/rbgutil.c: klass.instance_methods to klass.instance_methods(false)
2355
+ for ruby-1.8.x.
2356
+ * src/rbgobject.h, rbgobj_type.c: Remove rbgobj_exist_class().
2357
+ Use rb_const_define_at() instead. Pointed out by Masahiro Sakai.
2358
+
2359
+ 2003-05-19 Masao Mutoh <mutoh@highway.ne.jp>
2360
+
2361
+ * src/rbgobj_type.c, rbgobject.h: Add rbgobj_exist_class().
2362
+
2363
+ 2003-04-13 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
2364
+
2365
+ * src/rbgobj_type.c: fix so that GLib::Type#to_class can treat
2366
+ GEnum's descendants.
2367
+
2368
+ * src/rbgobj_object.c: enable GLib::Object.new! by default
2369
+
2370
+ * src/rbgobj_object.c (gobj_s_install_property): modify error message.
2371
+
2372
+ * src/rbgobj_signal.c (gobj_s_signal_new): check if the class has a
2373
+ registerd type.
2374
+
2375
+ * src/rbgobj_signal.c: implement GLib::Signal#{run_first?, run_last?,
2376
+ run_cleanup?, no_recurse?, detailed?, action?, no_hooks?}
2377
+
2378
+ 2003-04-12 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
2379
+
2380
+ * src/rbgobj_object.c (GLib::Object.new!): check if the class has a
2381
+ registered type.
2382
+
2383
+ * src/rbgobj_object.c: implement GLib::Object.install_property
2384
+
2385
+ * src/rbgobj_object.c: improve type registeration system.
2386
+
2387
+ * src/rbgobj_paramspecs.c: fix to use appropriate GType.
2388
+
2389
+ * src/rbgobj_type.c, src/rbgobject.h: Add a new function
2390
+ rbgobj_register_class() and rewring
2391
+ _register_fundamental_klass_to_gtype() and
2392
+ _register_fundamental_gtype_to_klass() with it.
2393
+
2394
+ 2003-04-08 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
2395
+
2396
+ * src/rbgobj_type.c: fix typo. ( interfaced? => interface? )
2397
+
2398
+ * src/rbgobj_type.c: implement GLib::Type#<, GLib::Type#>,
2399
+ GLib::Type#<= and GLib::Type#>=.
2400
+
2401
+ * src/rbgobj_signal.c: Extend GLib::Instantiatable#signal_handler_block
2402
+ to take a block.
2403
+
2404
+ * src/rbgobj_signal.c (gobj_s_signals): Fix memory leak.
2405
+
2406
+ * src/rbgobj_object.c: Use RVAL2GTYPE().
2407
+
2408
+ * src/rbgobj_type.c (interface_get_gtype): Use CLASS2GTYPE().
2409
+
2410
+ * src/rbgobject.c (rbgobj_define_property_accessors): ditto
2411
+
2412
+ 2003-04-07 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
2413
+
2414
+ * src/rbgobj_signal.c: Implement a new function
2415
+ rbgobj_define_action_methods() experimentaly.
2416
+ This function defines methods that emit action signals.
2417
+
2418
+ Action signals are signals that may freely be emitted on alive
2419
+ objects from user code via g_signal_emit() and friends, without
2420
+ the need of being embedded into extra code that performs pre or
2421
+ post emission adjustments on the object. They can also be thought
2422
+ of as by third-party code generically callable object methods.
2423
+
2424
+ * src/rbgobj_signal.c: Extend GLib::Object.signals to
2425
+ GLib::Object.signals([inherited_too])
2426
+
2427
+ * src/rbgobj_object.c: Extend GLib::Object.properties to
2428
+ GLib::Object.properties([inherited_too])
2429
+
2430
+ * src/global.h, src/rbgobj_signal.c, rbgobj_type.c:
2431
+ gsub(/mInterfaceCommons/, 'mMetaInterface') and define
2432
+ GLib::MetaInterface.
2433
+
2434
+ * src/rbgobj_paramspecs.c (GLib::Param::String#default_value):
2435
+ use rbg_cstr2rval() instead of rb_str_new2(). Because we need to
2436
+ allow NULL.
2437
+
2438
+ * src/rbgobj_type.c: simplify the format of GLib::Type#inspect
2439
+
2440
+ 2003-04-06 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
2441
+
2442
+ * src/rbgobj_signal.c: rename signal_emit_by_name and
2443
+ signal_emit_stop_by_name to signal_emit and signal_emit_stop
2444
+ respectively.
2445
+
2446
+ * src/rbgobj_signal.c: remove Signal#signal_id, Signal#signal_name,
2447
+ Signal#signal_flags.
2448
+
2449
+ 2003-04-05 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
2450
+
2451
+ * extconf.rb: add --enable-experimental option
2452
+
2453
+ * src/rbgobj_signal.c (gobj_s_signal_new): implement accumulator stuff.
2454
+
2455
+ * src/rbgobj_signal.c: code cleanup
2456
+
2457
+ * src/rbgobj_signal.c: use signal_id as a key of signal_func_table.
2458
+
2459
+ * src/rbgobj_signal.c: change rbgobj_get_signal_func() to static
2460
+ function.
2461
+
2462
+ * src/rbgobj_signal.c: implement Signal#add_emission_hook and
2463
+ Signal#remove_emission_hook
2464
+
2465
+ 2003-04-04 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
2466
+
2467
+ * src/rbgobj_object.c (gobject_class_new): implement the function
2468
+ experimentaly.
2469
+
2470
+ * src/rbgobj_object.c: abolish not_abstract_table and use
2471
+ RGObjClassInfo's `flags' field.
2472
+
2473
+ * src/rbgobj_boxed.c: abolish boxed_table and use RGObjClassInfo's
2474
+ `flags' field.
2475
+
2476
+ * src/rbgobject.c, src/rbgobject.h:
2477
+ add `flags' field to RGObjClassInfo.
2478
+
2479
+ * src/rbgobj_type.c (rbgobj_lookup_class_by_gtype): code cleanup
2480
+
2481
+ 2003-03-21 Masao Mutoh <mutoh@highway.ne.jp>
2482
+
2483
+ * src/rbgobj_object.c: Add GLib::Object.destroyed?
2484
+
2485
+ 2003-03-19 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
2486
+
2487
+ * src/glib2.def: Add a file
2488
+
2489
+ 2003-03-14 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
2490
+
2491
+ * src/rbglib_messages.c: change rbglib_log_handler_procs to static
2492
+ variable.
2493
+
2494
+ 2003-03-12 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
2495
+
2496
+ * src/rbglib_convert.c: implement
2497
+ - uri = GLib.filename_to_uri(filename[, hostname])
2498
+ - filename, hostname = GLib.filename_from_uri(uri)
2499
+
2500
+ 2003-03-07 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
2501
+
2502
+ * src/rbgutil.h: #include rbglib.h for RUBY_GLIB2_VAR.
2503
+
2504
+ * src/rbglib.h, rbgutil.h: define RUBY_GLIB2_VAR macro, and
2505
+ use RUBY_GLIB2_VAR for defining 'exported' variables.
2506
+
2507
+ * extconf.rb: append "-DRUBY_GLIB2_COMPILATION" to $defs.
2508
+
2509
+ 2003-02-20 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
2510
+
2511
+ * extconf.rb: Check NODE_ATTRASGN only if try_compile is defined.
2512
+
2513
+ 2003-02-17 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
2514
+
2515
+ * src/rbgobject.h: Add rbgobj_signal_wrap() declaration.
2516
+
2517
+ * src/rbgobject.h, src/global.h: Move declaration of
2518
+ rbgobj_define_property_accessors() from rbgobject.h to global.h
2519
+
2520
+ * src/rbgobject.h: Remove rbgobj_define_signal_constants() declaration.
2521
+ This function no longer exists.
2522
+
2523
+ 2003-02-16 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
2524
+
2525
+ * extconf.rb, src/rbgutil.c:
2526
+ Check whether NODE_ATTRASGN is used in ruby. If NODE_ATTRASGN is
2527
+ used, G_DEF_SETTERS uses alias_method instead of generating wrapper
2528
+ methods.
2529
+ Patch from Nobuyoshi Nakada <nobu.nokada@softhome.net>
2530
+
2531
+ * src/rbgobject.c (rbgobj_define_property_accessors): ditto
2532
+
2533
+ 2003-02-15 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
2534
+
2535
+ * src/rbgobject.c: make id_relatives be static variable.
2536
+
2537
+ 2003-02-14 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
2538
+
2539
+ * src/rbglib.c, src/rbgutil.[ch]: code cleanups
2540
+
2541
+ * src/rbgobj_boxed.c: make some functions to be static.
2542
+
2543
+ * src/rbgobj_boxed.c: implement GLib::Boxed#{copy,clone}
2544
+ Suggested by KATO Kazuyoshi <kadu@zb.wakwak.com>
2545
+
2546
+ 2003-02-13 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
2547
+
2548
+ * extconf.rb: follow changes of ../mkmf-gnome2.rb
2549
+
2550
+ 2003-02-13 Masao Mutoh <mutoh@highway.ne.jp>
2551
+
2552
+ * src/rbgobj_boxed.c: Don't free boxed object when it's not copied boxed object.
2553
+ * src/rbglib.c: Call setlocale() in Init_glib2().
2554
+
2555
+ 2003-02-12 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
2556
+
2557
+ * extconf.rb: use ../mkmf-gnome2.rb
2558
+
2559
+ 2003-02-11 KUBO Takehiro <kubo@jiubao.org>
2560
+
2561
+ * src/rbglib_convert.c: Add a file. Support string character set conversion.
2562
+ * src/rbglib.c: Follow above changes.
2563
+
2564
+ 2003-02-09 Masao Mutoh <mutoh@highway.ne.jp>
2565
+
2566
+ * src/rbgobj_object.c, rbgobject.h: Add rbgobj_add_abstract_but_create_instance_class()
2567
+ for the classes which can create instance itself but define as an abstract
2568
+ class in GTK+-2.2. (e.g. GdkGC).
2569
+
2570
+ 2003-02-03 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
2571
+
2572
+ * src/rbglib.[ch]: change CSTR2RVAL's body to be a new function
2573
+ rbg_cstr2rval() to avoid unexprected side-effect of macro.
2574
+
2575
+ 2003-02-03 Geoff Youngs <g@intersect-uk.co.uk>
2576
+
2577
+ * src/rbglib.h: a check for NULL strings in the CSTR2RVAL macro so that
2578
+ a NULL string translates to nil rather than raising an ArgumentError.
2579
+
2580
+ 2003-02-02 Masao Mutoh <mutoh@highway.ne.jp>
2581
+
2582
+ * src/*[ch], README: Update Copyright.
2583
+
2584
+ 2003-01-31 Masao Mutoh <mutoh@highway.ne.jp>
2585
+
2586
+ * src/rbgobj_boxed.c, rbgobject.h: Add rbgobj_boxed_not_copy_obj().
2587
+ Some boxed object shouldn't copy when gpoint convert to VALUE.
2588
+
2589
+ 2002-12-28 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
2590
+
2591
+ * src/rbgobj_type.c (type_is_value_type): fix typo
2592
+
2593
+ 2002-12-28 Masao Mutoh <mutoh@highway.ne.jp>
2594
+
2595
+ * src/rbgobj_value.c rbgobj_gvalue_to_rvalue(), rbgobj_rvalue_to_gvalue():
2596
+ Change behavior of G_TYPE_INTERFACE(same as G_TYPE_OBJECT).
2597
+
2598
+ 2002-12-26 Masao Mutoh <mutoh@highway.ne.jp>
2599
+
2600
+ * src/rbgobj_boxed.c, rbgobj_type.c, rbgobj_param.c, rbgobj_object.c:
2601
+ Apply rb_define_alloc_func() of ruby-1.8.x.
2602
+
2603
+ 2002-12-21 Masao Mutoh <mutoh@highway.ne.jp>
2604
+
2605
+ * src/rbgutil.c: Check 2nd argument is hash.
2606
+
2607
+ 2002-12-10 Masao Mutoh <mutoh@highway.ne.jp>
2608
+
2609
+ * src/rbgutil.[ch]: Add G_SET_SYMBOL_PROPERTY(gtype, name).
2610
+
2611
+ 2002-12-06 Masao Mutoh <mutoh@highway.ne.jp>
2612
+
2613
+ * src/rbgobj_type.c: Add rb_cSymbol as G_TYPE_STRING.
2614
+
2615
+ 2002-11-27 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
2616
+
2617
+ * rbgobj_closure.c (rclosure_marshal): check if return_value's type
2618
+ is valid. Reported by Joshua Keith <joshuakeith@linuxmail.org>.
2619
+
2620
+ 2002-11-24 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
2621
+
2622
+ * src/rbgutil.c: remove rbgutil_val2cstr().
2623
+
2624
+ * src/rbglib.h: change StringValuePtr() definition to the same as
2625
+ ruby-1.7. and change RVAL2CSTR() to use the StringValuePtr().
2626
+
2627
+ 2002-11-23 Masao Mutoh <mutoh@highway.ne.jp>
2628
+
2629
+ * src/rbgobj_value.c: rbgobj_rvalue_to_gvalue() support Symbol value
2630
+ when G_TYPE_STRING is required.
2631
+
2632
+ 2002-11-22 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
2633
+
2634
+ * src/rbgobj_object.c, src/rbgobj_signal.c: change
2635
+ GLib::Instantiatable.signals and GLib::Object.properties to return
2636
+ array of strings. (instead of array of specific objects)
2637
+ * rbgobj_signal.c: disable some experimental code.
2638
+
2639
+ 2002-11-20 Masao Mutoh <mutoh@highway.ne.jp>
2640
+
2641
+ * src/rbgobject.c: Fix typos in error messages(GLib::GObject to GLib::Object).
2642
+
2643
+ 2002-11-11 Masao Mutoh <mutoh@highway.ne.jp>
2644
+
2645
+ * src/rbgobj_signal.c: BugFix of rbgobj_set/get_signal_func.
2646
+
2647
+ 2002-11-10 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
2648
+
2649
+ * extconf.rb: stop appending '-g' to $CFLAGS.
2650
+
2651
+ 2002-11-10 Masao Mutoh <mutoh@highway.ne.jp>
2652
+
2653
+ * README: Add file.
2654
+
2655
+ 2002-11-09 Masao Mutoh <mutoh@highway.ne.jp>
2656
+
2657
+ * src/rbglib_message.c: add file(Sorry I forgot it....)
2658
+
2659
+ 2002-11-08 Masao Mutoh <mutoh@highway.ne.jp>
2660
+
2661
+ * src/rbglib_messages.c: add file(methods are moved from Ruby/GTK).
2662
+ * src/rbgobj_signal.c, rbgobj_closure.c, rbgobj_object.c, rbgobject.h:
2663
+ add G_DEF_SIGNAL_FUNC.
2664
+
2665
+ 2002-11-06 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
2666
+
2667
+ * src/rbglib.c (G_DEF_SETTERS): don't override existent methods.
2668
+
2669
+ 2002-11-02 KUBO Takehiro <kubo@jiubao.org>
2670
+
2671
+ * src/rbgutil.c, src/rbgutil.h: re-implement rbgutil_raise_gerror as
2672
+ macro and rename to RAISE_GERROR.
2673
+ add a new function rbgutil_gerror2exception()
2674
+
2675
+ 2002-11-01 Masao Mutoh <mutoh@highway.ne.jp>
2676
+
2677
+ * src/rbgobject.c, rbgobj_type.c: Remove rbgobj_define_signal_constants().
2678
+
2679
+ 2002-10-30 KUBO Takehiro <kubo@jiubao.org>
2680
+
2681
+ * src/rbgutil.c, src/rbgutil.h: add rbgutil_raise_gerror().
2682
+
2683
+ 2002-10-24 KUBO Takehiro <kubo@jiubao.org>
2684
+
2685
+ * src/rbgobj_signal.c (GLib::Instantiatable#signal_conect,
2686
+ #signal_connect_after): accept detailed signal.
2687
+
2688
+ 2002-10-20 Masahro Sakai <sakai@tom.sfc.keio.ac.jp>
2689
+
2690
+ * src/rbgobj_object.c: use canonical property name as hash key for the
2691
+ hash for a special getter and setter of the property.
2692
+
2693
+ 2002-10-18 Masahro Sakai <sakai@tom.sfc.keio.ac.jp>
2694
+
2695
+ * src/rbgobj_closure.c, src/rbgobj_valuetypes.c: use Hash#delete
2696
+ instead of assigning nil.
2697
+
2698
+ 2002-10-17 KUBO Takehiro <kubo@jiubao.org>
2699
+
2700
+ * rbgobj_object.c (gobj_set_property, gobj_get_property): fix a bug.
2701
+
2702
+ 2002-10-14 Masahro Sakai <sakai@tom.sfc.keio.ac.jp>
2703
+
2704
+ * src/rbgobj_object.c (GLib::Object.property): raise exception if the
2705
+ property doesn't exist.
2706
+ * src/rbgobj_param.c: rename GLib::ParamSpec to GLib::Param
2707
+ * src/rbgobj_signal.c (GLib::Instantiatable#signal_conect): accept
2708
+ symbol as signal name.
2709
+ * src/rbgobj_signal.c: rename
2710
+ GLib::Signal::Query to GLIb::Signal and
2711
+ GLib::Object.signal_list to GLIb::Object.signals and
2712
+ GLib::Object.signal_lookup to GLIb::Object.signal
2713
+ * src/rbgobj_object.c: rename
2714
+ GLib::Object.list_properties to GLIb::Object.properties and
2715
+ GLib::Object.find_property to GLIb::Object.property
2716
+
2717
+ 2002-10-13 Masahro Sakai <sakai@tom.sfc.keio.ac.jp>
2718
+
2719
+ * src/rbgobj_valuetypes.c (rbgobj_ptr2cptr): check argument type
2720
+ * src/rbgobj_valuetypes.c: don't register some transformation function
2721
+ which may raise exception
2722
+ * src/rbgobj_object.c: add rbgobj_register_property_getter() and
2723
+ rbgobj_register_property_setter() for overwriting VALUE<=>GValue
2724
+ converter for property.
2725
+
2726
+ 2002-10-10 Masao Mutoh <mutoh@highway.ne.jp>
2727
+
2728
+ * src/rbgutil.[ch], src/rbglib.c: add G_DEF_SETTERS macro.
2729
+
2730
+ 2002-10-07 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
2731
+
2732
+ * src/rbgobj_value.c (rbgobj_gvalue_to_rvalue): return Qnil when the
2733
+ type of GValue is G_TYPE_STRING and the content is NULL.
2734
+
2735
+ 2002-10-05 KUBO Takehiro <kubo@jiubao.org>
2736
+
2737
+ * src/rbgutil.h: add G_DEF_SETTER macro.
2738
+
2739
+ 2002-10-02 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
2740
+
2741
+ * src/rbgobj_boxed: implement GLib::Boxed::gtype & GLib::Boxed#gtype
2742
+
2743
+ 2002-10-02 Masao Mutoh <mutoh@highway.ne.jp>
2744
+
2745
+ * src/rbgobj_type.c: Add _register_fundamental_gtype_to_klass()/
2746
+ _register_fundamental_klass_to_gtype().
2747
+
2748
+ 2002-10-02 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
2749
+
2750
+ * src/rbglib.h: define LONG2NUM and ULONG2NUM unless already defined.
2751
+
2752
+ 2002-09-30 Masao Mutoh <mutoh@highway.ne.jp>
2753
+
2754
+ * src/rbgutil.[ch]: File added.
2755
+ * src/rbgobject.h, src/rbglib.[ch]: Support rbgutil.c.
2756
+
2757
+ 2002-09-29 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
2758
+
2759
+ * src/rbgobj_param.c (inspect): change format: including value type and
2760
+ owner type. excluding nick and blurb.
2761
+ * src/rbgobj_param.c (get_nick, get_blurb): return nil if the string
2762
+ is NULL.
2763
+ * src/rbgobj_signal.c: introduce GLIb::Signal::Query to wrap
2764
+ GSignalQuery.
2765
+ * src/rbgobj_type.c: define GLib::Interface and include it to each
2766
+ interface. This inclusion is intended to represent that interfaces
2767
+ are subtypes of GLib::Inteface.
2768
+ * src/rbgobj_object.c (gobj_s_find_property, gobj_set_property,
2769
+ gobj_get_property): accept Symbol as property name.
2770
+ * src/rbgobj_object.c: fix parameter number of GLib::Object.find_property
2771
+
2772
+ 2002-09-29 Masao Mutoh <mutoh@highway.ne.jp>
2773
+
2774
+ * src/rbgobj_closure.c, src/rbgobj_boxed.c, src/rbgobject.h:
2775
+ Change RVAL2BOXED(obj) to RVAL2BOXED(obj, gtype).
2776
+
2777
+ 2002-09-25 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
2778
+
2779
+ * src/rbgobj_closure.c (marker_remove): fix a bug which can cause
2780
+ segmentation fault on following rb_gc_mark().
2781
+
2782
+ 2002-09-24 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
2783
+
2784
+ * src/rbgobj_object.c: allow GLib::Object#freeze_notify to take block.
2785
+ * src/rbgobj_param.c (rbgobj_get_value_from_param_spec): fixed
2786
+ * src/rbgobj_param.c: implement GLib::ParamSpec#inspect
2787
+ * src/rbgobj_object.c: implement GLib::Object.list_properties and
2788
+ GLib::Object.find_property
2789
+ * src/rbgobj_signal.c: implement signal_handler_is_connected?
2790
+ * src/*.c: untabify
2791
+ * src/rbgobj_boxed.c (boxed_free): don't call g_boxed_free() if not
2792
+ initilized.
2793
+ * src/rbgobj_closure.c: implement GLib::Closure
2794
+
2795
+ 2002-09-23 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
2796
+
2797
+ * src/*.c: introduce GLib::Instantiatable as a common superclass of
2798
+ GLib::Object and GLib::ParamSpec. GLib:Instantiatable corresponds to
2799
+ GTypeInstance structure in C.
2800
+ * src/*.c: arrange APIs
2801
+ * src/rbgobject.c (rbgobj_define_signal_constants): stop calling
2802
+ g_class_ref(). Now caller must ensure that the class is initialized.
2803
+
2804
+ 2002-09-23 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
2805
+
2806
+ * src/*.c: introduce macro "RBGLIB_ENABLE_EXPERIMENTAL" to indicate
2807
+ experimental API.
2808
+ * src/rbgobj_signal.c: define constants
2809
+ * src/rbgobj_signal.c (signal_emit, signal_emit_stop): handles detail
2810
+ parameter.
2811
+ * src/rbgobject.c (rbgobj_gobject_new): check actual parameter size.
2812
+
2813
+ 2002-09-21 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
2814
+
2815
+ * src/rbgobject.c (rbgobj_define_property_accessors): when property
2816
+ name begins with 'is_', remove 'is_' from getter/setter name.
2817
+ * src/rbgobject.c (rbgobj_define_property_accessors): append '?' to
2818
+ the name of getter method of gboolean valued property.
2819
+
2820
+ 2002-09-21 KUBO Takehiro <kubo@jiubao.org>
2821
+
2822
+ * src/rbgobj_object.c (gobj_set_property, gobj_get_property):
2823
+ accept nil as an argument of val. raise more kindly exception when
2824
+ property name was not found.
2825
+
2826
+ 2002-09-18 KUBO Takehiro <kubo@jiubao.org>
2827
+
2828
+ * src/rbgobject.c (rbgobj_gobject_new): fix size parameter of memset()
2829
+ * src/rbgobj_value.c (rbgobj_rvalue_to_gvalue): don't use
2830
+ g2r_func_table but r2g_func_table
2831
+
2832
+ 2002-09-17 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
2833
+
2834
+ * src/rbgobject.c (rbgobj_define_property_accessors): optimize a bit
2835
+ by accumulating source string and call module_eval at once.
2836
+
2837
+ 2002-09-16 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
2838
+
2839
+ * src/rbgobject.c (rbgobj_define_property_accessors):
2840
+ - Define not only 'hogehoge=' but alse 'set_hogehoge'
2841
+ - Exclude properties which name is conflict with method of 'Object'
2842
+ - Stop passing second and third argument of module_eval
2843
+
2844
+ 2002-09-14 Masao Mutoh <mutoh@highway.ne.jp>
2845
+
2846
+ * src/global.h, src/rbglib.h: Move StringValue, StringValuePtr
2847
+ to src/rbglib.h(Because it'll be used by other Ruby-GNOME libraries).
2848
+ Add RVAL2CSTR, CSTR2RVAL macro.
2849
+
2850
+ 2002-09-14 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
2851
+
2852
+ * extconf.rb: Append -fnative-struct to $CFLAGS when G_OS_WIN32 is defined
2853
+
2854
+ 2002-09-13 Masao Mutoh <mutoh@highway.ne.jp>
2855
+
2856
+ * src/rbgobject.h, src/rbgobj_object.c: Rename RBGOBJ_INITIALIZE to G_INITIALIZE.
2857
+ * src/rbgobject.h: Add G_RELATIVE, G_RELATIVE2, G_REMOVE_RELATIVE.
2858
+
2859
+ 2002-09-13 Masao Mutoh <mutoh@highway.ne.jp>
2860
+
2861
+ * src/rbobjmanager.[ch]: remove files.
2862
+ * src/rbglib.[ch]: remove Init_objmanager().
2863
+
2864
+ 2002-09-03 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
2865
+
2866
+ * src/rbgobj_signal.c: implement GLib::Object#signal_emit_by_name
2867
+
2868
+ 2002-09-01 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
2869
+
2870
+ * src/rbgobj_signal.c: fix GLib::Object#signal_emit.
2871
+ * src/rbgobj_signal.c: implement GLib::Object.signal_lookup and
2872
+ GLib::Object.signal_list
2873
+ * src/rbgobj_signal.c: implement GLib::Object.signal_new.
2874
+ This is an experimental interface.
2875
+ * src/rbgobj_value.c (rbgobj_gvalue_to_rvalue, rbgobj_rvalue_to_gvalue):
2876
+ fix error messsage and use g_warning().
2877
+ * src/utils_int64.c: use 0xffffffffL instead of G_MAXUINT
2878
+ * src/utils_int64.c, src/global.h, src/rbgobj_paramspecs.c,
2879
+ src/rbgobj_value.c: change prefix of int64 functions from 'rbgobj_' to
2880
+ 'rbglib_'.
2881
+ * src/*.[ch]: add 'indent-tabs-mode: nil' to header
2882
+
2883
+ 2002-08-29 Masao Mutoh <mutoh@highway.ne.jp>
2884
+
2885
+ * src/rbgobj_boxed.c: Add GLib::Boxed.new, GLib::Boxed#allocate.
2886
+
2887
+ 2002-08-20 Masao Mutoh <mutoh@highway.ne.jp>
2888
+
2889
+ * src/rbgobj_boxed.c: Add rbgobj_boxed_initialize(), rbgobj_boxed_create().
2890
+ Modify rbgobj_boxed_get().
2891
+
2892
+ * src/rbgobject.[ch]: Support Boxed type in rbgobj_create_object(),
2893
+ rbgobj_initialize_object().
2894
+
2895
+ 2002-08-20 Masahiro Sakai <s01397ms@sfc.keio.ac.jp>
2896
+
2897
+ * src/utils_int64.c: rb_global_variable(&max_PRUint32)
2898
+ * src/rbgobj_param.c: rename rbgobj_get_value_from_paramspec to
2899
+ rbgobj_get_value_from_param_spec
2900
+ * src/rbgobj_param.c (gobj_get_gtype): use rbgobj_param_spec_get_struct
2901
+ instead of RVAL2GOBJ
2902
+
2903
+ 2002-08-18 Masao Mutoh <mutoh@highway.ne.jp>
2904
+
2905
+ * src/rbobjmanager.[ch]: Add file. Support RB_DEF_CLASS system.
2906
+
2907
+ 2002-08-14 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
2908
+
2909
+ * extconf.rb: use $libs instead of $LDFLAGS
2910
+ * src/rbglib.c: define GLib::VERSION, GLib::(MAJOR|MINOR|MICRO)_VERSION
2911
+ * src/rbgobj_param.c: define GParamFlags constants
2912
+ * src/rbgobj_value.c (rbgobj_register_r2g_func): change argument.
2913
+ it now take GType as key instead of Ruby class.
2914
+ * src/rbgobject.c (rbgobj_add_relative, rbgobj_add_relative_removable,
2915
+ rbgobj_remove_relative): call rb_ivar_defined() before calling rb_ivar_get()
2916
+ * rbgobj_valuetypes.c, rbgobj_value.c: improve G_TYPE_POINTER handling
2917
+
2918
+ 2002-08-10 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
2919
+
2920
+ * src/rbgobject.[ch]: move id_relative_callbacks to gtk
2921
+ * src/rbgobj_closure.c, src/rbgobj_object.c, src/rbgobj_signal.c:
2922
+ use GVAL2RVAL
2923
+ * src/rbgobj_valuetypes.c: add file. implement RBGOBJ_TYPE_RUBY_VALUE
2924
+ to box Ruby object into GValue.
2925
+ * src/rbgobj_type.c, src/rbgobj_value.c, src/rbgobj_valuetypes.c:
2926
+ support G_TYPE_POINTER. This is a tentative implementation.
2927
+ * src/global.h: move "extern void Init_hoge();" stuff to where these
2928
+ functions are actually called.
2929
+
2930
+ 2002-08-09 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
2931
+
2932
+ * src/utils_int64.c (LL_L2UI): cast argument to guint32
2933
+ * src/utils_int64.c (RubyTo64BitInt): oops. convert max_PRUint32 to VALUE.
2934
+ * src/utils_int64.c: optimize
2935
+
2936
+ 2002-08-09 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
2937
+
2938
+ * src/rbgobject.c: use GQuark
2939
+ * src/rbgobj_type.c: fix allocation problem in ruby-1.7
2940
+ rb_obj_alloc() was used though GLib::Type#allocate wasn't implemented.
2941
+ this problem is pointed out by Masao Mutoh <mutoh@highway.ne.jp>.
2942
+ * src/rbgobj_object.c: rename GLib::GObject to GLib::Object
2943
+ * src/utils_int64.c: add file. support gint64/guint64.
2944
+ code is ripped from rbXPCOM-0.0.3.
2945
+ <URL:http://www.ruby-lang.org/en/raa-list.rhtml?name=rbXPCOM>
2946
+ Thanks to Kenichi Komiya <kom@mail1.accsnet.ne.jp>
2947
+ * src/rbgobj_param.c (value_set_default): initialize GValue with {0,}.
2948
+ * src/rbgobj_param.c (ParamSpec#value_type): returns GLib::Type
2949
+ * src/rbgobj_param.c (ParamSpec#owner_type): ditto
2950
+ * src/rbgobj_paramspecs.c: implement more functions
2951
+ * src/rbgobj_boxed.c: use rbgobj_type.c for class managiment
2952
+ * src/rbgobj_value.c: hardcode most converters.
2953
+ Now table-lookup is used only for G_TYPE_POINTER and G_TYPE_BOXED.
2954
+ * src/rbgobj_object.c, src/rbgobj_enum.c, src/rbgobj_param.c: ditto
2955
+
2956
+ 2002-08-08 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
2957
+
2958
+ * src/rbgobj_type.c: more ruby-ish method naming.
2959
+ ie: "hoge?" rather than "is_hoge"?
2960
+ * src/rbgobj_type.c (rbgobj_lookup_class_by_gtype): enhancement for
2961
+ G_TYPE_PARAM
2962
+ * src/rbgobj_param.c, src/rbgobj_paramspec.c: rewrite for using above
2963
+ enhancement.
2964
+
2965
+ 2002-08-07 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
2966
+
2967
+ * src/rbgobject.c (rbgobj_gobject_new): take type argument as GType
2968
+ instead of VALUE.
2969
+ * src/rbgobject.c (rbgobj_gobject_new): allow nil for construct parameter
2970
+ * src/rbgobj_object.c (is_gtkobject): add function
2971
+ * src/rbgobj_object.c (GObject.allocate): check abstract class
2972
+ * src/rbgobj_object.c (GObject#initialize): rewrite
2973
+ * src/rbgobj_type.c (rbgobj_lookup_class): use independent hash instead
2974
+ of instance variable. and abolish id_class_info.
2975
+ * src/rbgobj_type.c (rbgobj_lookup_class): search ancestor classes.
2976
+ * src/rbgobj_type.c: implement GLib::Type.
2977
+
2978
+ 2002-08-06 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
2979
+
2980
+ * src/rbgobj_type.c: extend rbgobj_lookup_class_by_gtype() to deal
2981
+ interfaces
2982
+ * src/rbgobject.h: define macros: G_DEF_INTERFACE and G_DEF_INTERFACE2
2983
+ * src/rbgobj_typeplugin.c: file added
2984
+ * extconf.rb: use --msvc-syntax option for pkg-config if the compiler
2985
+ is MSVC++.
2986
+
2987
+ 2002-08-06 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
2988
+
2989
+ * src/rbgobject.h: remove declaration of id_class_info and id_delete
2990
+ * src/rbgobject.h, src/rbgobj_object.c, src/rbgobj_signal.c:
2991
+ remove global variable rbgobj_cGObject.
2992
+
2993
+ 2002-08-03 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
2994
+
2995
+ * src/rbglib.[ch]: fix mGLib declaration and definition
2996
+
2997
+ 2002-08-02 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
2998
+
2999
+ * src/rbgobj_type.c (rbgobj_lookup_class_by_gtype):
3000
+ enable calling of rbgobj_define_property_accessors() and
3001
+ rbgobj_define_signal_constants().
3002
+
3003
+ 2002-08-02 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
3004
+
3005
+ * src/rbgobj_type.c: abolish rbgobj_register_class()
3006
+ * src/rbgobj_type.c (rbgobj_lookup_class_by_gtype):
3007
+ now this function create a new class on demand.
3008
+ * src/rbgobj_type.c: abolish rbgobj_lookup_rbclass()
3009
+ * src/rbgobject.c: fix typo
3010
+ * src/rbgobject.c: add rbgobj_define_signal_constants()
3011
+ which define constants for signal names.
3012
+
3013
+ 2002-08-01 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
3014
+
3015
+ * src/rbgobj_object.c (_gobject_to_ruby): check NULL before calling
3016
+ GOBJ2RVAL().
3017
+ * src/rbgobj_signal.c (gobj_sig_connect): remove unused variable 'id'.
3018
+ * src/rbgobj_signal.c (gobj_sig_connect_after): ditto
3019
+ * src/rbgobj_object.c (gobj_smethod_added): fix bugs
3020
+
3021
+ 2002-07-31 Masao Mutoh <mutoh@highway.ne.jp>
3022
+
3023
+ * src/rbgobject.c: devide from rbgobj_objectc[ch].
3024
+ * src/rbgobj_object.c, src/rbgobject.h: abolish rbgobj_force_get_gobject().
3025
+ * src/rbgobject.h: add G_DEF_CLASS(), G_DEF_CLASS2(), GTYPE2CLASS().
3026
+ * src/rbgobj_type.c: add rbgobj_define_class()
3027
+
3028
+ 2002-07-31 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
3029
+
3030
+ * src/rbgobj_closure.c: use g_closure_add_invalidate_notifier()
3031
+ instead of g_closure_add_finalize_notifier()
3032
+ * src/rbgobj_closure.c: fix g_closure_add_invalidate_notifier()'s
3033
+ argument order
3034
+ * src/rbgobj_signal.c: GObject#signal_connect now accept extra argument
3035
+ as Ruby/Gtk 1.
3036
+ * src/rbgobj_signal.c: implement GObject#signal_connect_after
3037
+
3038
+ 2002-07-28 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
3039
+
3040
+ * src/rbgobj_object.c (gobj_s_gobject_new): refine GtkObject-specific
3041
+ stuff
3042
+ * src/rbgobj_object.c: implement GObject#freeze_notify, GObject#notify,
3043
+ GObject#thaw_notify
3044
+ * src/rbgobj_object.c (gobj_inspect): use g_strdup_printf() instead of
3045
+ ALLOCA_N() and sprintf()
3046
+ * src/rbgobj_type.c (rbgobj_register_class): add some check
3047
+ * src/*.c: replace rbgobj_get_value_from_gobject() with GOBJ2RVAL()
3048
+ * src/*.c: replace rbgobj_get_gobject() with RVAL2GOBJ()
3049
+ * src/rbgobj_object.c:
3050
+ void rbgobj_define_property_acccessors(VALUE klass);
3051
+ is added. This function defines accessor methods for properties.
3052
+ * src/rbgobj_signal.c (gobj_sig_emit): call g_value_init()
3053
+
3054
+ 2002-07-27 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
3055
+
3056
+ * src/rbgobj_object.c: abolish rbgobj_make_gobject_auto_type() and
3057
+ rbgobj_make_gobject()
3058
+ * src/rbgobj_boxed.c, src/rbgobj_enums.c, src/rbgobj_typemodule.c,
3059
+ src/rbgobj_signal.c: created
3060
+ * src/rbgobj_object.c: move signal stuff to src/rbgobj_signal.c
3061
+
3062
+ 2002-07-27 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
3063
+
3064
+ * src/rbgobj_object.c: implement GObject.gobject_new experimentaly.
3065
+ example:
3066
+ w = GLib::GObject.gobject_new("GtkWindow", "title" => "Hello World")
3067
+
3068
+ 2002-07-26 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
3069
+
3070
+ * extconf.rb: check allocation framework
3071
+ * src/rbgobj_object.c: introduce intermediate data structure (gobj_holder)
3072
+ for managing not only GObject*, but also class_info and ruby object itself.
3073
+ * src/rbgobj_object.c: abolish gobject_object_list_v and
3074
+ gobject_object_list
3075
+ * src/rbgobj_object.c: use gobject_weak_ref() to observe an explicit
3076
+ disposition. (e.g. by gtk_object_destroy())
3077
+ * src/rbgobj_object.c: implement GObject#set_property and
3078
+ GObject#get_property
3079
+ * src/rbgobj_paramspecs.c: created
3080
+
3081
+ 2002-06-23 Masahiro Sakai <s01397ms@sfc.keio.ac.jp>
3082
+
3083
+ * src/rbgobj_type.c (Init_gobject_gtype): call g_type_init().
3084
+ * src/rbgobj_object.c, src/gclosure.c: zero-fill GValue before
3085
+ using it.
3086
+
3087
+ 2002-06-23 Masao Mutoh <mutoh@highway.ne.jp>
3088
+
3089
+ * src/rbgobject.h: Fix parameter number of RBGOBJ_INITIALIZE().
3090
+
3091
+ 2002-06-23 Masao Mutoh <mutoh@highway.ne.jp>
3092
+
3093
+ * src/rbgobject.c: change rbgobj_set_gobject() to rbgobj_initialize_gobject().
3094
+ * src/rbgobject.h: create RBGOBJ_INITIALIZE().
3095
+
3096
+ 2002-06-22 Masahiro Sakai <s01397ms@sfc.keio.ac.jp>
3097
+
3098
+ * src/rbgobject.h: create two macros; RVAL2GOBJ() and GOBJ2RVAL().
3099
+ * src/rbgobject.h, rbgobj_object.c: make rbgobj_make_gobject() and
3100
+ rbgobj_make_gobject_auto_type() be private.
3101
+ * src/rbgobj_object.c: remove gobj_mark() and clear_gobject().
3102
+ * src/rbglib.c: remove gError.
3103
+
3104
+ 2002-06-20 Masahiro Sakai <s01397ms@sfc.keio.ac.jp>
3105
+
3106
+ * src/rbgobj_object.c, src/rbgobj_type.c, src/rbgobject.h:
3107
+ rename rbgobj_class_info to RGObjClassInfo.
3108
+
3109
+ 2002-06-18 Masahiro Sakai <s01397ms@sfc.keio.ac.jp>
3110
+
3111
+ * src/*.c: conform to Ruby/GNOME2 coding-style.
3112
+
3113
+ 2002-06-18 Masahiro Sakai <s01397ms@sfc.keio.ac.jp>
3114
+
3115
+ * extconf.rb: check whether package exists or not.