fxruby 1.6.22.pre2-x86-mingw32 → 1.6.22.pre3-x86-mingw32

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (477) hide show
  1. data/History.txt +1 -1
  2. data/README.txt +10 -10
  3. data/Rakefile +3 -2
  4. data/doap.rdf +2 -2
  5. data/examples/babelfish.rb +2 -2
  6. data/examples/bounce.rb +20 -20
  7. data/examples/charts.rb +2 -2
  8. data/examples/custom_table_item.rb +3 -3
  9. data/examples/datatarget.rb +2 -2
  10. data/examples/dctest.rb +51 -51
  11. data/examples/dialog.rb +14 -14
  12. data/examples/dilbert.rb +4 -4
  13. data/examples/dirlist.rb +6 -6
  14. data/examples/dragdrop.rb +7 -7
  15. data/examples/dragsource.rb +6 -6
  16. data/examples/dropsite.rb +5 -5
  17. data/examples/foursplit.rb +6 -6
  18. data/examples/gltest.rb +40 -40
  19. data/examples/glviewer.rb +16 -16
  20. data/examples/groupbox.rb +41 -41
  21. data/examples/header.rb +6 -6
  22. data/examples/hello2.rb +2 -2
  23. data/examples/iconlist.rb +10 -10
  24. data/examples/image.rb +26 -26
  25. data/examples/imageviewer.rb +31 -31
  26. data/examples/inputs.rb +2 -2
  27. data/examples/mditest.rb +12 -12
  28. data/examples/pig.rb +8 -8
  29. data/examples/raabrowser.rb +5 -5
  30. data/examples/ratio.rb +9 -9
  31. data/examples/rulerview.rb +2 -2
  32. data/examples/scintilla-test.rb +6 -6
  33. data/examples/scribble-orig.rb +3 -3
  34. data/examples/scribble.rb +3 -3
  35. data/examples/shutter.rb +6 -6
  36. data/examples/splitter.rb +15 -15
  37. data/examples/styledtext.rb +10 -10
  38. data/examples/tabbook.rb +14 -14
  39. data/examples/table.rb +21 -21
  40. data/examples/textedit/helpwindow.rb +6 -6
  41. data/examples/textedit/textedit.rb +72 -72
  42. data/ext/fox16/FXRuby.cpp +48 -5
  43. data/ext/fox16/core_wrap.cpp +1 -1
  44. data/ext/fox16/iconlist_wrap.cpp +1 -1
  45. data/ext/fox16/icons_wrap.cpp +1 -1
  46. data/ext/fox16/include/FXMemoryBuffer.h +3 -3
  47. data/ext/fox16/include/FXRbApp.h +1 -1
  48. data/ext/fox16/include/FXRbBitmap.h +1 -1
  49. data/ext/fox16/include/FXRbBitmapFrame.h +2 -2
  50. data/ext/fox16/include/FXRbBitmapVirtuals.h +2 -2
  51. data/ext/fox16/include/FXRbDCPrint.h +1 -1
  52. data/ext/fox16/include/FXRbDCVirtuals.h +24 -24
  53. data/ext/fox16/include/FXRbDCWindow.h +1 -1
  54. data/ext/fox16/include/FXRbDockBar.h +1 -1
  55. data/ext/fox16/include/FXRbFileDict.h +2 -2
  56. data/ext/fox16/include/FXRbFoldingList.h +1 -1
  57. data/ext/fox16/include/FXRbFontVirtuals.h +9 -9
  58. data/ext/fox16/include/FXRbGLViewerVirtuals.h +2 -2
  59. data/ext/fox16/include/FXRbIconItemVirtuals.h +8 -8
  60. data/ext/fox16/include/FXRbIconListVirtuals.h +7 -7
  61. data/ext/fox16/include/FXRbIconSourceVirtuals.h +1 -1
  62. data/ext/fox16/include/FXRbImageFrame.h +2 -2
  63. data/ext/fox16/include/FXRbImageVirtuals.h +1 -1
  64. data/ext/fox16/include/FXRbListVirtuals.h +4 -4
  65. data/ext/fox16/include/FXRbMenuBar.h +1 -1
  66. data/ext/fox16/include/FXRbPopupVirtuals.h +1 -1
  67. data/ext/fox16/include/FXRbRecentFiles.h +1 -1
  68. data/ext/fox16/include/FXRbRuler.h +3 -3
  69. data/ext/fox16/include/FXRbRulerView.h +3 -3
  70. data/ext/fox16/include/FXRbScintilla.h +1 -1
  71. data/ext/fox16/include/FXRbSeparator.h +2 -2
  72. data/ext/fox16/include/FXRbTableItemVirtuals.h +8 -8
  73. data/ext/fox16/include/FXRbTableVirtuals.h +13 -13
  74. data/ext/fox16/include/FXRbText.h +2 -2
  75. data/ext/fox16/include/FXRbTextVirtuals.h +3 -3
  76. data/ext/fox16/include/FXRbToolBar.h +1 -1
  77. data/ext/fox16/include/FXRbToolBarGrip.h +1 -1
  78. data/ext/fox16/include/FXRbToolBarTab.h +1 -1
  79. data/ext/fox16/include/FXRbTreeList.h +1 -1
  80. data/ext/fox16/include/FXRbTreeListVirtuals.h +4 -4
  81. data/ext/fox16/include/FXRbWindow.h +3 -3
  82. data/ext/fox16/include/FXRbWizard.h +2 -2
  83. data/ext/fox16/include/FXRuby.h +8 -4
  84. data/ext/fox16/librb.c +12 -12
  85. data/ext/fox16/list_wrap.cpp +1 -1
  86. data/ext/fox16/make_impl.rb +5 -5
  87. data/ext/fox16/markfuncs.cpp +228 -220
  88. data/ext/fox16/scintilla_wrap.cpp +1 -1
  89. data/ext/fox16/treelist_wrap.cpp +4 -4
  90. data/ext/fox16/ui_wrap.cpp +2 -2
  91. data/ext/fox16/unregisterOwnedObjects.cpp +3 -3
  92. data/lib/1.8/fox16.so +0 -0
  93. data/lib/1.9/fox16.so +0 -0
  94. data/lib/fox16/accel_table.rb +1 -1
  95. data/lib/fox16/aliases.rb +3 -3
  96. data/lib/fox16/calendar.rb +21 -21
  97. data/lib/fox16/chore.rb +2 -2
  98. data/lib/fox16/core.rb +70 -70
  99. data/lib/fox16/dict.rb +1 -1
  100. data/lib/fox16/execute_nonmodal.rb +1 -1
  101. data/lib/fox16/glgroup.rb +16 -16
  102. data/lib/fox16/glshapes.rb +26 -26
  103. data/lib/fox16/input.rb +4 -4
  104. data/lib/fox16/irb.rb +2 -2
  105. data/lib/fox16/iterators.rb +2 -2
  106. data/lib/fox16/keys.rb +34 -34
  107. data/lib/fox16/kwargs.rb +927 -927
  108. data/lib/fox16/pseudokeyboard.rb +1 -1
  109. data/lib/fox16/pseudomouse.rb +1 -1
  110. data/lib/fox16/responder2.rb +4 -4
  111. data/lib/fox16/scintilla.rb +2 -2
  112. data/lib/fox16/signal.rb +4 -4
  113. data/lib/fox16/splashscreen.rb +3 -3
  114. data/lib/fox16/timeout.rb +3 -3
  115. data/lib/fox16/undolist.rb +9 -9
  116. data/lib/fox16/version.rb +1 -1
  117. data/rdoc-sources/FX4Splitter.rb +9 -9
  118. data/rdoc-sources/FX7Segment.rb +9 -9
  119. data/rdoc-sources/FXAccelTable.rb +1 -1
  120. data/rdoc-sources/FXApp.rb +50 -50
  121. data/rdoc-sources/FXBMPIcon.rb +3 -3
  122. data/rdoc-sources/FXBMPImage.rb +2 -2
  123. data/rdoc-sources/FXBitmap.rb +11 -11
  124. data/rdoc-sources/FXBitmapFrame.rb +5 -5
  125. data/rdoc-sources/FXBitmapView.rb +2 -2
  126. data/rdoc-sources/FXButton.rb +2 -2
  127. data/rdoc-sources/FXCheckButton.rb +5 -5
  128. data/rdoc-sources/FXColorBar.rb +5 -5
  129. data/rdoc-sources/FXColorDialog.rb +2 -2
  130. data/rdoc-sources/FXColorList.rb +2 -2
  131. data/rdoc-sources/FXColorRing.rb +8 -8
  132. data/rdoc-sources/FXColorSelector.rb +4 -4
  133. data/rdoc-sources/FXColorWell.rb +4 -4
  134. data/rdoc-sources/FXColorWheel.rb +6 -6
  135. data/rdoc-sources/FXComboBox.rb +17 -17
  136. data/rdoc-sources/FXComposite.rb +2 -2
  137. data/rdoc-sources/FXCursor.rb +7 -7
  138. data/rdoc-sources/FXDC.rb +67 -67
  139. data/rdoc-sources/FXDCPrint.rb +22 -22
  140. data/rdoc-sources/FXDCWindow.rb +1 -1
  141. data/rdoc-sources/FXDataTarget.rb +2 -2
  142. data/rdoc-sources/FXDebugTarget.rb +1 -1
  143. data/rdoc-sources/FXDelegator.rb +1 -1
  144. data/rdoc-sources/FXDial.rb +8 -8
  145. data/rdoc-sources/FXDict.rb +7 -7
  146. data/rdoc-sources/FXDirBox.rb +3 -3
  147. data/rdoc-sources/FXDirDialog.rb +7 -7
  148. data/rdoc-sources/FXDirList.rb +21 -21
  149. data/rdoc-sources/FXDirSelector.rb +8 -8
  150. data/rdoc-sources/FXDockBar.rb +5 -5
  151. data/rdoc-sources/FXDockHandler.rb +3 -3
  152. data/rdoc-sources/FXDockSite.rb +2 -2
  153. data/rdoc-sources/FXDockTitle.rb +3 -3
  154. data/rdoc-sources/FXDocument.rb +3 -3
  155. data/rdoc-sources/FXDragCorner.rb +3 -3
  156. data/rdoc-sources/FXDrawable.rb +3 -3
  157. data/rdoc-sources/FXDriveBox.rb +4 -4
  158. data/rdoc-sources/FXExtentd.rb +2 -2
  159. data/rdoc-sources/FXExtentf.rb +2 -2
  160. data/rdoc-sources/FXFileDialog.rb +21 -21
  161. data/rdoc-sources/FXFileDict.rb +17 -17
  162. data/rdoc-sources/FXFileList.rb +32 -32
  163. data/rdoc-sources/FXFileSelector.rb +20 -20
  164. data/rdoc-sources/FXFileStream.rb +1 -1
  165. data/rdoc-sources/FXFoldingList.rb +53 -53
  166. data/rdoc-sources/FXFont.rb +38 -38
  167. data/rdoc-sources/FXFrame.rb +11 -11
  168. data/rdoc-sources/FXGIFCursor.rb +3 -3
  169. data/rdoc-sources/FXGLCanvas.rb +2 -2
  170. data/rdoc-sources/FXGLContext.rb +6 -6
  171. data/rdoc-sources/FXGLObject.rb +6 -6
  172. data/rdoc-sources/FXGLShape.rb +3 -3
  173. data/rdoc-sources/FXGLViewer.rb +54 -54
  174. data/rdoc-sources/FXGLVisual.rb +13 -13
  175. data/rdoc-sources/FXGradientBar.rb +15 -15
  176. data/rdoc-sources/FXGroupBox.rb +4 -4
  177. data/rdoc-sources/FXHeader.rb +44 -44
  178. data/rdoc-sources/FXICOIcon.rb +1 -1
  179. data/rdoc-sources/FXICOImage.rb +1 -1
  180. data/rdoc-sources/FXIconDict.rb +1 -1
  181. data/rdoc-sources/FXIconList.rb +69 -69
  182. data/rdoc-sources/FXIconSource.rb +2 -2
  183. data/rdoc-sources/FXId.rb +1 -1
  184. data/rdoc-sources/FXImage.rb +11 -11
  185. data/rdoc-sources/FXImageFrame.rb +3 -3
  186. data/rdoc-sources/FXImageView.rb +2 -2
  187. data/rdoc-sources/FXInputDialog.rb +6 -6
  188. data/rdoc-sources/FXJPGIcon.rb +3 -3
  189. data/rdoc-sources/FXJPGImage.rb +2 -2
  190. data/rdoc-sources/FXKnob.rb +9 -9
  191. data/rdoc-sources/FXLabel.rb +8 -8
  192. data/rdoc-sources/FXList.rb +28 -28
  193. data/rdoc-sources/FXListBox.rb +21 -21
  194. data/rdoc-sources/FXMDIChild.rb +11 -11
  195. data/rdoc-sources/FXMDIClient.rb +5 -5
  196. data/rdoc-sources/FXMatrix.rb +6 -6
  197. data/rdoc-sources/FXMemoryBuffer.rb +1 -1
  198. data/rdoc-sources/FXMemoryStream.rb +3 -3
  199. data/rdoc-sources/FXMenuBar.rb +1 -1
  200. data/rdoc-sources/FXMenuButton.rb +7 -7
  201. data/rdoc-sources/FXMenuCaption.rb +10 -10
  202. data/rdoc-sources/FXMenuCheck.rb +1 -1
  203. data/rdoc-sources/FXMenuRadio.rb +1 -1
  204. data/rdoc-sources/FXMenuSeparator.rb +1 -1
  205. data/rdoc-sources/FXMessageBox.rb +3 -3
  206. data/rdoc-sources/FXOptionMenu.rb +9 -9
  207. data/rdoc-sources/FXPCXIcon.rb +2 -2
  208. data/rdoc-sources/FXPCXImage.rb +1 -1
  209. data/rdoc-sources/FXPNGIcon.rb +3 -3
  210. data/rdoc-sources/FXPNGImage.rb +1 -1
  211. data/rdoc-sources/FXPPMIcon.rb +2 -2
  212. data/rdoc-sources/FXPPMImage.rb +1 -1
  213. data/rdoc-sources/FXPacker.rb +13 -13
  214. data/rdoc-sources/FXPopup.rb +11 -11
  215. data/rdoc-sources/FXProgressBar.rb +7 -7
  216. data/rdoc-sources/FXProgressDialog.rb +3 -3
  217. data/rdoc-sources/FXQuatd.rb +17 -17
  218. data/rdoc-sources/FXQuatf.rb +18 -18
  219. data/rdoc-sources/FXRGBIcon.rb +3 -3
  220. data/rdoc-sources/FXRGBImage.rb +1 -1
  221. data/rdoc-sources/FXRadioButton.rb +4 -4
  222. data/rdoc-sources/FXRanged.rb +1 -1
  223. data/rdoc-sources/FXRangef.rb +1 -1
  224. data/rdoc-sources/FXRealSlider.rb +7 -7
  225. data/rdoc-sources/FXRealSpinner.rb +11 -11
  226. data/rdoc-sources/FXRecentFiles.rb +8 -8
  227. data/rdoc-sources/FXRectangle.rb +12 -12
  228. data/rdoc-sources/FXRegion.rb +15 -15
  229. data/rdoc-sources/FXRegistry.rb +4 -4
  230. data/rdoc-sources/FXReplaceDialog.rb +3 -3
  231. data/rdoc-sources/FXRuler.rb +18 -18
  232. data/rdoc-sources/FXRulerView.rb +38 -38
  233. data/rdoc-sources/FXScintilla.rb +16 -16
  234. data/rdoc-sources/FXScrollArea.rb +9 -9
  235. data/rdoc-sources/FXScrollBar.rb +8 -8
  236. data/rdoc-sources/FXScrollPane.rb +1 -1
  237. data/rdoc-sources/FXScrollWindow.rb +5 -5
  238. data/rdoc-sources/FXSeparator.rb +1 -1
  239. data/rdoc-sources/FXSettings.rb +1 -1
  240. data/rdoc-sources/FXShutter.rb +3 -3
  241. data/rdoc-sources/FXSize.rb +4 -4
  242. data/rdoc-sources/FXSlider.rb +7 -7
  243. data/rdoc-sources/FXSphered.rb +21 -21
  244. data/rdoc-sources/FXSpheref.rb +20 -20
  245. data/rdoc-sources/FXSpinner.rb +12 -12
  246. data/rdoc-sources/FXSplashWindow.rb +1 -1
  247. data/rdoc-sources/FXSplitter.rb +6 -6
  248. data/rdoc-sources/FXSpring.rb +2 -2
  249. data/rdoc-sources/FXStatusBar.rb +4 -4
  250. data/rdoc-sources/FXStatusLine.rb +5 -5
  251. data/rdoc-sources/FXStream.rb +8 -8
  252. data/rdoc-sources/FXStringDict.rb +5 -5
  253. data/rdoc-sources/FXSwitcher.rb +2 -2
  254. data/rdoc-sources/FXTGAIcon.rb +3 -3
  255. data/rdoc-sources/FXTGAImage.rb +1 -1
  256. data/rdoc-sources/FXTIFIcon.rb +2 -2
  257. data/rdoc-sources/FXTIFImage.rb +2 -2
  258. data/rdoc-sources/FXTabBar.rb +2 -2
  259. data/rdoc-sources/FXTable.rb +131 -131
  260. data/rdoc-sources/FXText.rb +48 -48
  261. data/rdoc-sources/FXTextField.rb +9 -9
  262. data/rdoc-sources/FXToolBar.rb +1 -1
  263. data/rdoc-sources/FXToolBarGrip.rb +1 -1
  264. data/rdoc-sources/FXToolBarShell.rb +7 -7
  265. data/rdoc-sources/FXToolBarTab.rb +3 -3
  266. data/rdoc-sources/FXToolTip.rb +1 -1
  267. data/rdoc-sources/FXTopWindow.rb +17 -17
  268. data/rdoc-sources/FXTranslator.rb +5 -5
  269. data/rdoc-sources/FXTreeList.rb +50 -50
  270. data/rdoc-sources/FXTreeListBox.rb +16 -16
  271. data/rdoc-sources/FXVec2d.rb +5 -5
  272. data/rdoc-sources/FXVec2f.rb +5 -5
  273. data/rdoc-sources/FXVec3d.rb +8 -8
  274. data/rdoc-sources/FXVec3f.rb +8 -8
  275. data/rdoc-sources/FXVec4d.rb +8 -8
  276. data/rdoc-sources/FXVec4f.rb +8 -8
  277. data/rdoc-sources/FXVisual.rb +3 -3
  278. data/rdoc-sources/FXWindow.rb +99 -99
  279. data/rdoc-sources/FXWizard.rb +8 -8
  280. data/rdoc-sources/FXXBMIcon.rb +2 -2
  281. data/rdoc-sources/FXXBMImage.rb +1 -1
  282. data/rdoc-sources/FXXPMIcon.rb +2 -2
  283. data/rdoc-sources/FXXPMImage.rb +1 -1
  284. data/rdoc-sources/fxdefs.rb +17 -17
  285. data/scripts/generate_kwargs_lib.rb +22 -22
  286. data/scripts/iface.rb +1 -1
  287. data/swig-interfaces/FX4Splitter.i +5 -5
  288. data/swig-interfaces/FX7Segment.i +5 -5
  289. data/swig-interfaces/FXApp.i +10 -10
  290. data/swig-interfaces/FXBMPIcon.i +2 -2
  291. data/swig-interfaces/FXBitmap.i +3 -3
  292. data/swig-interfaces/FXBitmapFrame.i +1 -1
  293. data/swig-interfaces/FXBitmapView.i +1 -1
  294. data/swig-interfaces/FXCanvas.i +1 -1
  295. data/swig-interfaces/FXCheckButton.i +2 -2
  296. data/swig-interfaces/FXChoiceBox.i +2 -2
  297. data/swig-interfaces/FXColorBar.i +7 -7
  298. data/swig-interfaces/FXColorList.i +5 -5
  299. data/swig-interfaces/FXColorWell.i +1 -1
  300. data/swig-interfaces/FXColorWheel.i +6 -6
  301. data/swig-interfaces/FXComboBox.i +4 -4
  302. data/swig-interfaces/FXCursor.i +4 -4
  303. data/swig-interfaces/FXDC.i +23 -23
  304. data/swig-interfaces/FXDCPrint.i +5 -5
  305. data/swig-interfaces/FXDCWindow.i +8 -8
  306. data/swig-interfaces/FXDataTarget.i +5 -5
  307. data/swig-interfaces/FXDebugTarget.i +1 -1
  308. data/swig-interfaces/FXDelegator.i +3 -3
  309. data/swig-interfaces/FXDial.i +8 -8
  310. data/swig-interfaces/FXDialogBox.i +3 -3
  311. data/swig-interfaces/FXDict.i +14 -14
  312. data/swig-interfaces/FXDirBox.i +1 -1
  313. data/swig-interfaces/FXDirDialog.i +2 -2
  314. data/swig-interfaces/FXDirList.i +16 -16
  315. data/swig-interfaces/FXDirSelector.i +2 -2
  316. data/swig-interfaces/FXDockBar.i +1 -1
  317. data/swig-interfaces/FXDockHandler.i +1 -1
  318. data/swig-interfaces/FXDockSite.i +1 -1
  319. data/swig-interfaces/FXDockTitle.i +1 -1
  320. data/swig-interfaces/FXDocument.i +1 -1
  321. data/swig-interfaces/FXDragCorner.i +3 -3
  322. data/swig-interfaces/FXDriveBox.i +1 -1
  323. data/swig-interfaces/FXFileDialog.i +8 -8
  324. data/swig-interfaces/FXFileDict.i +2 -2
  325. data/swig-interfaces/FXFileList.i +11 -11
  326. data/swig-interfaces/FXFileSelector.i +4 -4
  327. data/swig-interfaces/FXFoldingList.i +7 -7
  328. data/swig-interfaces/FXFont.i +20 -20
  329. data/swig-interfaces/FXFrame.i +3 -3
  330. data/swig-interfaces/FXGLCanvas.i +3 -3
  331. data/swig-interfaces/FXGLContext.i +7 -7
  332. data/swig-interfaces/FXGLObject.i +1 -1
  333. data/swig-interfaces/FXGLShape.i +6 -6
  334. data/swig-interfaces/FXGLViewer.i +40 -40
  335. data/swig-interfaces/FXGLVisual.i +2 -2
  336. data/swig-interfaces/FXGradientBar.i +4 -4
  337. data/swig-interfaces/FXGroupBox.i +3 -3
  338. data/swig-interfaces/FXHeader.i +7 -7
  339. data/swig-interfaces/FXIcon.i +4 -4
  340. data/swig-interfaces/FXIconDict.i +1 -1
  341. data/swig-interfaces/FXIconList.i +46 -46
  342. data/swig-interfaces/FXImage.i +2 -2
  343. data/swig-interfaces/FXImageView.i +1 -1
  344. data/swig-interfaces/FXInputDialog.i +3 -3
  345. data/swig-interfaces/FXJPGIcon.i +3 -3
  346. data/swig-interfaces/FXJPGImage.i +2 -2
  347. data/swig-interfaces/FXKnob.i +2 -2
  348. data/swig-interfaces/FXLabel.i +2 -2
  349. data/swig-interfaces/FXList.i +35 -35
  350. data/swig-interfaces/FXListBox.i +5 -5
  351. data/swig-interfaces/FXMDIButton.i +5 -5
  352. data/swig-interfaces/FXMDIChild.i +12 -12
  353. data/swig-interfaces/FXMDIClient.i +2 -2
  354. data/swig-interfaces/FXMat4d.i +2 -2
  355. data/swig-interfaces/FXMat4f.i +5 -5
  356. data/swig-interfaces/FXMatrix.i +12 -12
  357. data/swig-interfaces/FXMemoryBuffer.i +4 -4
  358. data/swig-interfaces/FXMenuBar.i +3 -3
  359. data/swig-interfaces/FXMenuButton.i +7 -7
  360. data/swig-interfaces/FXMenuCaption.i +4 -4
  361. data/swig-interfaces/FXMenuCommand.i +1 -1
  362. data/swig-interfaces/FXMenuPane.i +1 -1
  363. data/swig-interfaces/FXMenuRadio.i +1 -1
  364. data/swig-interfaces/FXMenuSeparator.i +1 -1
  365. data/swig-interfaces/FXMessageBox.i +1 -1
  366. data/swig-interfaces/FXOptionMenu.i +6 -6
  367. data/swig-interfaces/FXPNGIcon.i +2 -2
  368. data/swig-interfaces/FXPPMIcon.i +2 -2
  369. data/swig-interfaces/FXPacker.i +6 -6
  370. data/swig-interfaces/FXPopup.i +13 -13
  371. data/swig-interfaces/FXProgressBar.i +12 -12
  372. data/swig-interfaces/FXProgressDialog.i +5 -5
  373. data/swig-interfaces/FXQuatd.i +7 -7
  374. data/swig-interfaces/FXQuatf.i +1 -1
  375. data/swig-interfaces/FXRadioButton.i +4 -4
  376. data/swig-interfaces/FXRanged.i +4 -4
  377. data/swig-interfaces/FXRangef.i +5 -5
  378. data/swig-interfaces/FXRealSlider.i +10 -10
  379. data/swig-interfaces/FXRealSpinner.i +17 -17
  380. data/swig-interfaces/FXRecentFiles.i +1 -1
  381. data/swig-interfaces/FXRegion.i +4 -4
  382. data/swig-interfaces/FXRegistry.i +3 -3
  383. data/swig-interfaces/FXReplaceDialog.i +1 -1
  384. data/swig-interfaces/FXScintilla.i +3 -3
  385. data/swig-interfaces/FXScrollArea.i +7 -7
  386. data/swig-interfaces/FXScrollBar.i +3 -3
  387. data/swig-interfaces/FXScrollWindow.i +6 -6
  388. data/swig-interfaces/FXSearchDialog.i +1 -1
  389. data/swig-interfaces/FXSeparator.i +3 -3
  390. data/swig-interfaces/FXSettings.i +3 -3
  391. data/swig-interfaces/FXShell.i +1 -1
  392. data/swig-interfaces/FXSlider.i +11 -11
  393. data/swig-interfaces/FXSphered.i +1 -1
  394. data/swig-interfaces/FXSpheref.i +1 -1
  395. data/swig-interfaces/FXSpinner.i +15 -15
  396. data/swig-interfaces/FXSplitter.i +6 -6
  397. data/swig-interfaces/FXStatusBar.i +4 -4
  398. data/swig-interfaces/FXStatusLine.i +5 -5
  399. data/swig-interfaces/FXStream.i +1 -1
  400. data/swig-interfaces/FXSwitcher.i +5 -5
  401. data/swig-interfaces/FXTabBar.i +2 -2
  402. data/swig-interfaces/FXTabBook.i +1 -1
  403. data/swig-interfaces/FXTabItem.i +4 -4
  404. data/swig-interfaces/FXTable.i +37 -37
  405. data/swig-interfaces/FXText.i +13 -13
  406. data/swig-interfaces/FXTextField.i +1 -1
  407. data/swig-interfaces/FXToggleButton.i +6 -6
  408. data/swig-interfaces/FXToolBar.i +4 -4
  409. data/swig-interfaces/FXToolBarGrip.i +3 -3
  410. data/swig-interfaces/FXToolBarShell.i +3 -3
  411. data/swig-interfaces/FXToolBarTab.i +5 -5
  412. data/swig-interfaces/FXToolTip.i +1 -1
  413. data/swig-interfaces/FXTopWindow.i +10 -10
  414. data/swig-interfaces/FXTreeList.i +28 -28
  415. data/swig-interfaces/FXTreeListBox.i +36 -36
  416. data/swig-interfaces/FXVec3d.i +2 -2
  417. data/swig-interfaces/FXVec3f.i +2 -2
  418. data/swig-interfaces/FXVec4d.i +1 -1
  419. data/swig-interfaces/FXVec4f.i +9 -9
  420. data/swig-interfaces/FXVerticalFrame.i +1 -1
  421. data/swig-interfaces/FXVisual.i +1 -1
  422. data/swig-interfaces/FXWindow.i +46 -46
  423. data/swig-interfaces/FXXPMIcon.i +1 -1
  424. data/swig-interfaces/FXXPMImage.i +1 -1
  425. data/swig-interfaces/exceptions.i +1 -1
  426. data/swig-interfaces/freefuncs.i +1 -1
  427. data/swig-interfaces/fxdefs.i +13 -13
  428. data/swig-interfaces/macros.i +79 -79
  429. data/test/TC_FXAccelTable.rb +3 -3
  430. data/test/TC_FXButton.rb +9 -9
  431. data/test/TC_FXCheckButton.rb +4 -4
  432. data/test/TC_FXComboBox.rb +1 -1
  433. data/test/TC_FXDC.rb +42 -42
  434. data/test/TC_FXDialogBox.rb +1 -1
  435. data/test/TC_FXExtentd.rb +2 -2
  436. data/test/TC_FXExtentf.rb +2 -2
  437. data/test/TC_FXFileAssoc.rb +5 -5
  438. data/test/TC_FXFileStream.rb +5 -5
  439. data/test/TC_FXFoldingList.rb +3 -3
  440. data/test/TC_FXFont.rb +3 -3
  441. data/test/TC_FXGLGroup.rb +1 -1
  442. data/test/TC_FXHeader.rb +3 -3
  443. data/test/TC_FXIconDict.rb +5 -5
  444. data/test/TC_FXIconList.rb +12 -12
  445. data/test/TC_FXImage.rb +16 -16
  446. data/test/TC_FXList.rb +5 -5
  447. data/test/TC_FXListBox.rb +1 -1
  448. data/test/TC_FXMainWindow.rb +2 -2
  449. data/test/TC_FXMat4f.rb +33 -33
  450. data/test/TC_FXMaterial.rb +5 -5
  451. data/test/TC_FXMemoryStream.rb +2 -2
  452. data/test/TC_FXMenuCheck.rb +5 -5
  453. data/test/TC_FXMessageBox.rb +3 -3
  454. data/test/TC_FXPoint.rb +1 -1
  455. data/test/TC_FXRadioButton.rb +4 -4
  456. data/test/TC_FXRanged.rb +3 -3
  457. data/test/TC_FXRangef.rb +3 -3
  458. data/test/TC_FXRegion.rb +1 -1
  459. data/test/TC_FXScrollArea.rb +1 -1
  460. data/test/TC_FXScrollWindow.rb +1 -1
  461. data/test/TC_FXSettings.rb +2 -2
  462. data/test/TC_FXShell.rb +2 -2
  463. data/test/TC_FXTopWindow.rb +2 -2
  464. data/test/TC_FXTreeList.rb +4 -4
  465. data/test/TC_FXTreeListBox.rb +3 -3
  466. data/test/TC_FXVec2d.rb +3 -3
  467. data/test/TC_FXVec2f.rb +3 -3
  468. data/test/TC_FXVec3d.rb +5 -5
  469. data/test/TC_FXVec3f.rb +5 -5
  470. data/test/TC_FXVec4f.rb +6 -6
  471. data/test/TC_Misc.rb +6 -2
  472. data/test/TS_All.rb +1 -17
  473. data/test/stress1.rb +5 -5
  474. data/test/stress2.rb +3 -3
  475. data/test/stress3.rb +12 -12
  476. data/test/testcase.rb +4 -4
  477. metadata +76 -76
data/ext/fox16/FXRuby.cpp CHANGED
@@ -85,11 +85,15 @@ static st_table * FXRuby_Objects;
85
85
  * struct. It identifies the Ruby instance associated with a C++ object.
86
86
  * It also indicates whether this is merely a "borrowed" reference to
87
87
  * some C++ object (i.e. it's not one we need to destroy later).
88
+ *
89
+ * in_gc is set for FXWindows that are in garbage collection and must
90
+ * not call ruby code anymore.
88
91
  */
89
92
 
90
93
  struct FXRubyObjDesc {
91
94
  VALUE obj;
92
95
  bool borrowed;
96
+ bool in_gc;
93
97
  };
94
98
 
95
99
 
@@ -108,9 +112,12 @@ VALUE FXRbNewPointerObj(void *ptr,swig_type_info* ty){
108
112
  FXRubyObjDesc *desc;
109
113
  if(FXMALLOC(&desc,FXRubyObjDesc,1)){
110
114
  obj=SWIG_Ruby_NewPointerObj(ptr,ty,1);
115
+ FXTRACE((1,"FXRbNewPointerObj(rubyObj=%d,foxObj=%p)\n",static_cast<int>(obj),ptr));
111
116
  desc->obj=obj;
112
117
  desc->borrowed=true;
113
- st_insert(FXRuby_Objects,reinterpret_cast<st_data_t>(ptr),reinterpret_cast<st_data_t>(desc));
118
+ desc->in_gc=false;
119
+ int overwritten = st_insert(FXRuby_Objects,reinterpret_cast<st_data_t>(ptr),reinterpret_cast<st_data_t>(desc));
120
+ FXASSERT(!overwritten);
114
121
  return obj;
115
122
  }
116
123
  else{
@@ -140,6 +147,25 @@ bool FXRbIsBorrowed(void* ptr){
140
147
  }
141
148
  }
142
149
 
150
+ bool FXRbSetInGC(const void* ptr, bool enabled){
151
+ FXASSERT(ptr!=0);
152
+ FXRubyObjDesc *desc;
153
+ if(st_lookup(FXRuby_Objects,reinterpret_cast<st_data_t>(ptr),reinterpret_cast<st_data_t *>(&desc))!=0){
154
+ desc->in_gc=enabled;
155
+ return enabled;
156
+ }
157
+ return false;
158
+ }
159
+
160
+ bool FXRbIsInGC(const void* ptr){
161
+ FXASSERT(ptr!=0);
162
+ FXRubyObjDesc *desc;
163
+ if(st_lookup(FXRuby_Objects,reinterpret_cast<st_data_t>(ptr),reinterpret_cast<st_data_t *>(&desc))!=0){
164
+ return desc->in_gc;
165
+ }
166
+ return false;
167
+ }
168
+
143
169
 
144
170
  /**
145
171
  * FXRbConvertPtr() is just a wrapper around SWIG_Ruby_ConvertPtr().
@@ -208,18 +234,34 @@ void FXRbRegisterRubyObj(VALUE rubyObj,const void* foxObj) {
208
234
  FXASSERT(foxObj!=0);
209
235
  FXRubyObjDesc* desc;
210
236
  FXTRACE((1,"FXRbRegisterRubyObj(rubyObj=%d,foxObj=%p)\n",static_cast<int>(rubyObj),foxObj));
211
- if(FXMALLOC(&desc,FXRubyObjDesc,1)){
237
+ if(st_lookup(FXRuby_Objects,reinterpret_cast<st_data_t>(const_cast<void*>(foxObj)),reinterpret_cast<st_data_t *>(&desc))!=0){
238
+ FXASSERT(desc->borrowed);
239
+ /* There is already a Ruby object registered for this foxObj.
240
+ * This can happen, if libfox calls methods out of the C++ object constructor,
241
+ * that can be overwritten in Ruby (like changeFocus) with the object as
242
+ * parameter. FXFileSelector is one example.
243
+ * To avoid double references to the same foxObj from different Ruby objects,
244
+ * we decouple the foxObj from previoius ruby object and point to the new one.
245
+ */
246
+ DATA_PTR(desc->obj) = 0;
212
247
  desc->obj=rubyObj;
213
248
  desc->borrowed=false;
214
- st_insert(FXRuby_Objects,reinterpret_cast<st_data_t>(const_cast<void*>(foxObj)),reinterpret_cast<st_data_t>(desc));
215
249
  }
216
250
  else{
217
- FXASSERT(FALSE);
251
+ if(FXMALLOC(&desc,FXRubyObjDesc,1)){
252
+ desc->obj=rubyObj;
253
+ desc->borrowed=false;
254
+ desc->in_gc=false;
255
+ int overwritten = st_insert(FXRuby_Objects,reinterpret_cast<st_data_t>(const_cast<void*>(foxObj)),reinterpret_cast<st_data_t>(desc));
256
+ FXASSERT(!overwritten);
257
+ }
258
+ else{
259
+ FXASSERT(FALSE);
260
+ }
218
261
  }
219
262
  FXASSERT(FXRbGetRubyObj(foxObj,false)==rubyObj);
220
263
  }
221
264
 
222
-
223
265
  /**
224
266
  * Remove this mapping between a Ruby instance and a C++ object
225
267
  */
@@ -1301,6 +1343,7 @@ void FXRbRange2LoHi(VALUE range,FXdouble& lo,FXdouble& hi){
1301
1343
  void FXRbCallVoidMethod(FXObject* recv, ID func) {
1302
1344
  VALUE obj=FXRbGetRubyObj(recv,false);
1303
1345
  FXASSERT(!NIL_P(obj));
1346
+ FXASSERT(!FXRbIsInGC(recv));
1304
1347
  rb_funcall(obj,func,0,NULL);
1305
1348
  }
1306
1349
 
@@ -712,7 +712,7 @@ static FXuint _MKUINT(FXushort l,FXushort h){
712
712
  static FXuint _FXSEL(FXushort type,FXushort id){
713
713
  return FXSEL(type,id);
714
714
  }
715
-
715
+
716
716
  static FXushort _FXSELTYPE(FXuint s){
717
717
  return FXSELTYPE(s);
718
718
  }
@@ -703,7 +703,7 @@ FXint FXIconList_setItem__SWIG_1(FXIconList *self,FXint index,FXString const &te
703
703
 
704
704
  // Do the deed
705
705
  FXint result=self->setItem(index,text,big,mini,ITEMDATA,notify);
706
-
706
+
707
707
  // Now zero-out pointers held by still-alive Ruby objects
708
708
  FXRbUnregisterRubyObj(oldItem);
709
709
 
@@ -1098,7 +1098,7 @@ static void free_FXXPMIcon(FXXPMIcon *);
1098
1098
  FXint width;
1099
1099
  FXint height;
1100
1100
  VALUE ary=Qnil;
1101
-
1101
+
1102
1102
  // Confirm that the input is an array of strings
1103
1103
  Check_Type(strArray,T_ARRAY);
1104
1104
  len=RARRAY_LEN(strArray);
@@ -38,13 +38,13 @@ private:
38
38
  public:
39
39
  // Create an memory buffer object
40
40
  FXMemoryBuffer(FXColor *data,FXuint sz) : buffer(data),size(sz){}
41
-
41
+
42
42
  // Returns a pointer to the data
43
43
  FXColor* getData() const { return buffer; }
44
-
44
+
45
45
  // Returns the size (in bytes)
46
46
  FXuint getSize() const { return size; }
47
-
47
+
48
48
  // Destructor
49
49
  ~FXMemoryBuffer(){}
50
50
  };
@@ -129,7 +129,7 @@ public:
129
129
  public:
130
130
  // Constructor
131
131
  FXRbApp(const FXchar* name,const FXchar* vendor);
132
-
132
+
133
133
  // Construct and call init()
134
134
  static FXRbApp* constructAndInit(const FXchar* name,const FXchar* vendor);
135
135
 
@@ -103,7 +103,7 @@ inline void cls ## _setData(cls* self,FXuchar* pix,FXuint opts,FXint w,FXint h){
103
103
  void cls::setData(FXuchar* pix,FXuint opts,FXint w,FXint h){ \
104
104
  FXRbCallVoidMethod(this,rb_intern("setData"),pix,opts,w,h); \
105
105
  }
106
-
106
+
107
107
 
108
108
 
109
109
  class FXRbBitmap : public FXBitmap {
@@ -23,7 +23,7 @@
23
23
  /***********************************************************************
24
24
  * $Id: FXRbBitmapFrame.h 2190 2005-08-24 07:58:47Z lyle $
25
25
  ***********************************************************************/
26
-
26
+
27
27
  #ifndef FXRBBITMAPFRAME_H
28
28
  #define FXRBBITMAPFRAME_H
29
29
 
@@ -46,7 +46,7 @@ public:
46
46
 
47
47
  // Mark dependencies for the GC
48
48
  static void markfunc(FXBitmapFrame* self);
49
-
49
+
50
50
  /// Destroy the widget, but do not destroy the bitmap
51
51
  virtual ~FXRbBitmapFrame(){
52
52
  FXRbUnregisterRubyObj(this);
@@ -4,7 +4,7 @@ public:
4
4
 
5
5
  // Overrides the base class version of render()
6
6
  virtual void render();
7
-
7
+
8
8
  // Overrides the base class version of release()
9
9
  virtual void release();
10
10
 
@@ -28,7 +28,7 @@ public:
28
28
 
29
29
  /// Fill bitmap with uniform value
30
30
  virtual void fill(FXbool color);
31
-
31
+
32
32
  // Overrides the base class version of setData()
33
33
  virtual void setData(FXuchar *pix,FXuint opts=0);
34
34
 
@@ -45,5 +45,5 @@ public:
45
45
  FXRbUnregisterAppSensitiveObject(this);
46
46
  }
47
47
  };
48
-
48
+
49
49
  #endif
@@ -22,7 +22,7 @@ public:
22
22
 
23
23
  // Overrides the base class version of drawLineSegments()
24
24
  virtual void drawLineSegments(const FXSegment* segments,FXuint nsegments);
25
-
25
+
26
26
  // Overrides the base class version of drawRectangle()
27
27
  virtual void drawRectangle(FXint x,FXint y,FXint w,FXint h);
28
28
 
@@ -85,10 +85,10 @@ public:
85
85
 
86
86
  // Overrides the base class version of drawHashBox()
87
87
  virtual void drawHashBox(FXint x,FXint y,FXint w,FXint h,FXint b=1);
88
-
88
+
89
89
  // Overrides the base class version of drawFocusRectangle()
90
90
  virtual void drawFocusRectangle(FXint x,FXint y,FXint w,FXint h);
91
-
91
+
92
92
  // Overrides the base class version of drawArea()
93
93
  virtual void drawArea(const FXDrawable* source,FXint sx,FXint sy,FXint sw,FXint sh,FXint dx,FXint dy);
94
94
 
@@ -100,7 +100,7 @@ public:
100
100
 
101
101
  // Overrides the base class version of drawBitmap()
102
102
  virtual void drawBitmap(const FXBitmap* bitmap,FXint dx,FXint dy);
103
-
103
+
104
104
  // Overrides the base class version of drawIcon()
105
105
  virtual void drawIcon(const FXIcon* icon,FXint dx,FXint dy);
106
106
 
@@ -124,64 +124,64 @@ public:
124
124
 
125
125
  // Overrides the base class version of setForeground()
126
126
  virtual void setForeground(FXColor clr);
127
-
127
+
128
128
  // Overrides the base class version of setBackground()
129
129
  virtual void setBackground(FXColor clr);
130
-
130
+
131
131
  // Overrides the base class version of setDashes()
132
132
  virtual void setDashes(FXuint dashoffset,const FXchar *dashpattern,FXuint dashlength);
133
-
133
+
134
134
  // Overrides the base class version of setLineWidth()
135
135
  virtual void setLineWidth(FXuint linewidth=0);
136
-
136
+
137
137
  // Overrides the base class version of setLineCap()
138
138
  virtual void setLineCap(FXCapStyle capstyle=CAP_BUTT);
139
-
139
+
140
140
  // Overrides the base class version of setLineJoin()
141
141
  virtual void setLineJoin(FXJoinStyle joinstyle=JOIN_MITER);
142
-
142
+
143
143
  // Overrides the base class version of setLineStyle()
144
144
  virtual void setLineStyle(FXLineStyle linestyle=LINE_SOLID);
145
-
145
+
146
146
  // Overrides the base class version of setFillStyle()
147
147
  virtual void setFillStyle(FXFillStyle fillstyle=FILL_SOLID);
148
-
148
+
149
149
  // Overrides the base class version of setFillRule()
150
150
  virtual void setFillRule(FXFillRule fillrule=RULE_EVEN_ODD);
151
-
151
+
152
152
  // Overrides the base class version of setFunction()
153
153
  virtual void setFunction(FXFunction func=BLT_SRC);
154
-
154
+
155
155
  // Overrides the base class version of setTile()
156
156
  virtual void setTile(FXImage* image,FXint dx=0,FXint dy=0);
157
-
157
+
158
158
  // Overrides the base class version of setStipple()
159
159
  virtual void setStipple(FXBitmap *bitmap,FXint dx=0,FXint dy=0);
160
-
160
+
161
161
  // Overrides the base class version of setStipple()
162
162
  virtual void setStipple(FXStipplePattern pat,FXint dx=0,FXint dy=0);
163
-
163
+
164
164
  // Overrides the base class version of setClipRegion()
165
165
  virtual void setClipRegion(const FXRegion& region);
166
-
166
+
167
167
  // Overrides the base class version of setClipRectangle()
168
168
  virtual void setClipRectangle(FXint x,FXint y,FXint w,FXint h);
169
-
169
+
170
170
  // Overrides the base class version of setClipRectangle()
171
171
  virtual void setClipRectangle(const FXRectangle& rectangle);
172
-
172
+
173
173
  // Overrides the base class version of clearClipRectangle()
174
174
  virtual void clearClipRectangle();
175
-
175
+
176
176
  // Overrides the base class version of setClipMask()
177
177
  virtual void setClipMask(FXBitmap* bitmap,FXint dx=0,FXint dy=0);
178
-
178
+
179
179
  // Overrides the base class version of clearClipMask()
180
180
  virtual void clearClipMask();
181
-
181
+
182
182
  // Overrides the base class version of setFont()
183
183
  virtual void setFont(FXFont *fnt);
184
-
184
+
185
185
  // Overrides the base class version of clipChildren()
186
186
  virtual void clipChildren(FXbool yes);
187
187
 
@@ -36,7 +36,7 @@ public:
36
36
  FXRbRegisterAppSensitiveObject(this);
37
37
  }
38
38
 
39
- /// Construct for normal drawing;
39
+ /// Construct for normal drawing;
40
40
  /// This sets clip rectangle to the whole drawable
41
41
  FXRbDCWindow(FXDrawable* drawable) : FXDCWindow(drawable){
42
42
  FXRbRegisterAppSensitiveObject(this);
@@ -61,7 +61,7 @@ protected:
61
61
  #include "FXRbDockBarVirtuals.h"
62
62
  public:
63
63
  /**
64
- * Construct a floatable Dockbar
64
+ * Construct a floatable Dockbar
65
65
  * Normally, the Dockbar is docked under window p.
66
66
  * When floated, the Dockbar can be docked under window q, which is
67
67
  * typically an FXToolBarShell window.
@@ -70,7 +70,7 @@ inline FXFileAssoc* klass ## _findExecBinding(klass* self,const FXchar* pathname
70
70
  return FXRbCallFileAssocMethod(this,rb_intern("findExecBinding"),pathname); \
71
71
  }
72
72
 
73
-
73
+
74
74
  /// File Association dictionary
75
75
  class FXRbFileDict : public FXFileDict {
76
76
  FXDECLARE(FXRbFileDict)
@@ -99,6 +99,6 @@ public:
99
99
  FXRbUnregisterRubyObj(this);
100
100
  }
101
101
  };
102
-
102
+
103
103
 
104
104
  #endif
@@ -259,7 +259,7 @@ public:
259
259
  // Enumerate items
260
260
  static void enumerateItem(FXFoldingItem* item,FXObjectListOf<FXFoldingItem>& items);
261
261
  static void enumerateItems(FXFoldingItem* fm,FXFoldingItem* to,FXObjectListOf<FXFoldingItem>& items);
262
-
262
+
263
263
  // Destructor
264
264
  virtual ~FXRbFoldingList(){
265
265
  FXRbFoldingList::unregisterOwnedObjects(this);
@@ -10,37 +10,37 @@ public:
10
10
 
11
11
  // Overrides the base class version of isFontMono()
12
12
  virtual FXbool isFontMono() const;
13
-
13
+
14
14
  // Overrides the base class version of hasChar()
15
15
  virtual FXbool hasChar(FXwchar ch) const;
16
16
 
17
17
  // Overrides the base class version of getMinChar()
18
18
  virtual FXwchar getMinChar() const;
19
-
19
+
20
20
  // Overrides the base class version of getMaxChar()
21
21
  virtual FXwchar getMaxChar() const;
22
22
 
23
23
  // Overrides the base class version of leftBearing()
24
24
  virtual FXint leftBearing(FXwchar ch) const;
25
-
25
+
26
26
  // Overrides the base class version of rightBearing()
27
27
  virtual FXint rightBearing(FXwchar ch) const;
28
-
28
+
29
29
  // Overrides the base class version of getFontWidth()
30
30
  virtual FXint getFontWidth() const;
31
-
31
+
32
32
  // Overrides the base class version of getFontHeight()
33
33
  virtual FXint getFontHeight() const;
34
-
34
+
35
35
  // Overrides the base class version of getFontAscent()
36
36
  virtual FXint getFontAscent() const;
37
-
37
+
38
38
  // Overrides the base class version of getFontDescent()
39
39
  virtual FXint getFontDescent() const;
40
-
40
+
41
41
  // Overrides the base class version of getFontLeading()
42
42
  virtual FXint getFontLeading() const;
43
-
43
+
44
44
  // Overrides the base class version of getFontSpacing()
45
45
  virtual FXint getFontSpacing() const;
46
46
 
@@ -1,10 +1,10 @@
1
1
  public:
2
2
  // Overrides the base class version of select()
3
3
  virtual FXGLObject** select(FXint x,FXint y,FXint w,FXint h);
4
-
4
+
5
5
  // Overrides the base class version of pick()
6
6
  virtual FXGLObject* pick(FXint x,FXint y);
7
-
7
+
8
8
  // Overrides the base class version of setBounds()
9
9
  virtual FXbool setBounds(const FXRangef& box);
10
10
 
@@ -1,32 +1,32 @@
1
1
  protected:
2
2
  // Overrides the base class version of draw()
3
3
  virtual void draw(const FXIconList* list,FXDC& dc,FXint x,FXint y,FXint w,FXint h) const;
4
-
4
+
5
5
  // Overrides the base class version of hitItem()
6
6
  virtual FXint hitItem(const FXIconList* list,FXint rx,FXint ry,FXint rw=1,FXint rh=1) const;
7
-
7
+
8
8
  // Overrides the base class version of drawBigIcon()
9
9
  virtual void drawBigIcon(const FXIconList* list,FXDC& dc,FXint x,FXint y,FXint w,FXint h) const;
10
-
10
+
11
11
  // Overrides the base class version of drawMiniIcon()
12
12
  virtual void drawMiniIcon(const FXIconList* list,FXDC& dc,FXint x,FXint y,FXint w,FXint h) const;
13
-
13
+
14
14
  // Overrides the base class version of drawDetails()
15
15
  virtual void drawDetails(const FXIconList* list,FXDC& dc,FXint x,FXint y,FXint w,FXint h) const;
16
16
 
17
17
  public:
18
18
  // Publically accessible version of draw()
19
19
  void public_draw(const FXIconList* list,FXDC& dc,FXint x,FXint y,FXint w,FXint h) const;
20
-
20
+
21
21
  // Publically accessible version of hitItem()
22
22
  FXint public_hitItem(const FXIconList* list,FXint rx,FXint ry,FXint rw=1,FXint rh=1) const;
23
-
23
+
24
24
  // Publically accessible version of drawBigIcon()
25
25
  void public_drawBigIcon(const FXIconList* list,FXDC& dc,FXint x,FXint y,FXint w,FXint h) const;
26
-
26
+
27
27
  // Publically accessible version of drawMiniIcon()
28
28
  void public_drawMiniIcon(const FXIconList* list,FXDC& dc,FXint x,FXint y,FXint w,FXint h) const;
29
-
29
+
30
30
  // Publically accessible version of drawDetails()
31
31
  void public_drawDetails(const FXIconList* list,FXDC& dc,FXint x,FXint y,FXint w,FXint h) const;
32
32