fxruby 1.2.6 → 1.4.0

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 (437) hide show
  1. data/ChangeLog +0 -90
  2. data/doc/apes02.html +2 -2
  3. data/doc/apes03.html +1 -1
  4. data/doc/book.html +1 -1
  5. data/doc/build.html +26 -26
  6. data/doc/ch03s02.html +1 -2
  7. data/doc/ch03s03.html +1 -2
  8. data/doc/ch03s04.html +1 -2
  9. data/doc/ch03s05.html +1 -2
  10. data/doc/changes.html +12 -7
  11. data/doc/cvs.html +2 -2
  12. data/doc/differences.html +3 -3
  13. data/doc/gems.html +44 -44
  14. data/doc/implementation.html +1 -1
  15. data/doc/library.html +5 -5
  16. data/doc/opengl.html +5 -5
  17. data/doc/pt02.html +1 -1
  18. data/doc/scintilla.html +6 -6
  19. data/doc/tutorial1.html +8 -15
  20. data/examples/babelfish.rb +6 -16
  21. data/examples/bounce.rb +1 -1
  22. data/examples/browser.rb +1 -1
  23. data/examples/button.rb +1 -1
  24. data/examples/datatarget.rb +2 -2
  25. data/examples/dctest.rb +1 -1
  26. data/examples/dialog.rb +1 -1
  27. data/examples/dilbert.rb +2 -2
  28. data/examples/dirlist.rb +1 -1
  29. data/examples/dragdrop.rb +1 -1
  30. data/examples/dragsource.rb +1 -1
  31. data/examples/dropsite.rb +1 -1
  32. data/examples/foursplit.rb +1 -1
  33. data/examples/gltest.rb +2 -2
  34. data/examples/glviewer.rb +4 -4
  35. data/examples/groupbox.rb +2 -2
  36. data/examples/header.rb +3 -3
  37. data/examples/hello.rb +1 -1
  38. data/examples/hello2.rb +1 -1
  39. data/examples/iconlist.rb +16 -1
  40. data/examples/image.rb +2 -2
  41. data/examples/imageviewer.rb +1 -1
  42. data/examples/inputs.rb +1 -1
  43. data/examples/mditest.rb +2 -2
  44. data/examples/pig.rb +1 -1
  45. data/examples/raabrowser.rb +2 -2
  46. data/examples/ratio.rb +2 -2
  47. data/examples/scintilla-test.rb +2 -2
  48. data/examples/scribble-orig.rb +3 -3
  49. data/examples/scribble.rb +1 -1
  50. data/examples/shutter.rb +1 -1
  51. data/examples/splitter.rb +1 -1
  52. data/examples/styledtext.rb +2 -2
  53. data/examples/tabbook.rb +1 -1
  54. data/examples/table.rb +1 -1
  55. data/ext/{fox12 → fox14}/FXRbApp.cpp +7 -13
  56. data/ext/{fox12 → fox14}/FXRbDataTarget.cpp +5 -1
  57. data/ext/{fox12 → fox14}/FXRbGLViewer.cpp +1 -1
  58. data/ext/{fox12 → fox14}/FXRuby.cpp +49 -14
  59. data/ext/{fox12 → fox14}/MANIFEST +0 -0
  60. data/ext/{fox12 → fox14}/core_wrap.cpp +1098 -390
  61. data/ext/{fox12 → fox14}/dc_wrap.cpp +61 -1
  62. data/ext/{fox12 → fox14}/dialogs_wrap.cpp +2293 -939
  63. data/ext/{fox12 → fox14}/extconf.rb +8 -8
  64. data/ext/{fox12 → fox14}/frames_wrap.cpp +1396 -395
  65. data/ext/{fox12 → fox14}/fx3d_wrap.cpp +884 -363
  66. data/ext/{fox12 → fox14}/iconlist_wrap.cpp +338 -117
  67. data/ext/{fox12 → fox14}/icons_wrap.cpp +668 -61
  68. data/ext/{fox12 → fox14}/image_wrap.cpp +245 -164
  69. data/ext/{fox12 → fox14}/impl.cpp +58 -2
  70. data/ext/{fox12 → fox14}/include/FXMemoryBuffer.h +1 -1
  71. data/ext/{fox12 → fox14}/include/FXRb4Splitter.h +1 -1
  72. data/ext/fox14/include/FXRb7Segment.h +51 -0
  73. data/ext/{fox12 → fox14}/include/FXRbAccelTable.h +1 -1
  74. data/ext/{fox12 → fox14}/include/FXRbApp.h +1 -2
  75. data/ext/{fox12 → fox14}/include/FXRbAppVirtuals.h +0 -0
  76. data/ext/{fox12 → fox14}/include/FXRbArrowButton.h +1 -1
  77. data/ext/{fox12 → fox14}/include/FXRbBMPIcon.h +1 -1
  78. data/ext/{fox12 → fox14}/include/FXRbBMPImage.h +1 -1
  79. data/ext/{fox12 → fox14}/include/FXRbBitmap.h +5 -5
  80. data/ext/{fox12 → fox14}/include/FXRbBitmapFrame.h +1 -1
  81. data/ext/{fox12 → fox14}/include/FXRbBitmapView.h +1 -1
  82. data/ext/{fox12 → fox14}/include/FXRbBitmapVirtuals.h +1 -1
  83. data/ext/{fox12 → fox14}/include/FXRbButton.h +1 -1
  84. data/ext/{fox12 → fox14}/include/FXRbCURCursor.h +1 -1
  85. data/ext/{fox12 → fox14}/include/FXRbCanvas.h +1 -1
  86. data/ext/{fox12 → fox14}/include/FXRbCheckButton.h +1 -1
  87. data/ext/fox14/include/FXRbChoiceBox.h +56 -0
  88. data/ext/{fox12 → fox14}/include/FXRbColorBar.h +1 -1
  89. data/ext/{fox12 → fox14}/include/FXRbColorDialog.h +1 -1
  90. data/ext/{fox12 → fox14}/include/FXRbColorSelector.h +1 -1
  91. data/ext/{fox12 → fox14}/include/FXRbColorWell.h +1 -1
  92. data/ext/{fox12 → fox14}/include/FXRbColorWheel.h +1 -1
  93. data/ext/{fox12 → fox14}/include/FXRbComboBox.h +1 -1
  94. data/ext/{fox12 → fox14}/include/FXRbCommon.h +1 -1
  95. data/ext/{fox12 → fox14}/include/FXRbComposite.h +1 -1
  96. data/ext/{fox12 → fox14}/include/FXRbCursor.h +1 -1
  97. data/ext/{fox12 → fox14}/include/FXRbCursorVirtuals.h +0 -0
  98. data/ext/{fox12 → fox14}/include/FXRbDC.h +25 -1
  99. data/ext/{fox12 → fox14}/include/FXRbDCPrint.h +1 -1
  100. data/ext/{fox12 → fox14}/include/FXRbDCVirtuals.h +12 -0
  101. data/ext/{fox12 → fox14}/include/FXRbDCWindow.h +1 -1
  102. data/ext/{fox12 → fox14}/include/FXRbDataTarget.h +1 -1
  103. data/ext/{fox12 → fox14}/include/FXRbDebugTarget.h +1 -1
  104. data/ext/{fox12 → fox14}/include/FXRbDelegator.h +1 -1
  105. data/ext/{fox12 → fox14}/include/FXRbDial.h +1 -1
  106. data/ext/{fox12 → fox14}/include/FXRbDialogBox.h +1 -1
  107. data/ext/{fox12 → fox14}/include/FXRbDialogBoxVirtuals.h +0 -0
  108. data/ext/{fox12 → fox14}/include/FXRbDict.h +1 -1
  109. data/ext/{fox12 → fox14}/include/FXRbDirBox.h +2 -1
  110. data/ext/{fox12 → fox14}/include/FXRbDirDialog.h +4 -1
  111. data/ext/{fox12 → fox14}/include/FXRbDirList.h +1 -1
  112. data/ext/{fox12 → fox14}/include/FXRbDirSelector.h +1 -1
  113. data/ext/fox14/include/FXRbDockBar.h +86 -0
  114. data/ext/fox14/include/FXRbDockBarVirtuals.h +10 -0
  115. data/ext/fox14/include/FXRbDockHandler.h +51 -0
  116. data/ext/fox14/include/FXRbDockSite.h +85 -0
  117. data/ext/fox14/include/FXRbDockSiteVirtuals.h +13 -0
  118. data/ext/fox14/include/FXRbDockTitle.h +51 -0
  119. data/ext/{fox12 → fox14}/include/FXRbDocument.h +1 -1
  120. data/ext/{fox12 → fox14}/include/FXRbDragCorner.h +1 -1
  121. data/ext/{fox12 → fox14}/include/FXRbDrawable.h +1 -1
  122. data/ext/{fox12 → fox14}/include/FXRbDrawableVirtuals.h +0 -0
  123. data/ext/{fox12 → fox14}/include/FXRbDriveBox.h +2 -1
  124. data/ext/{fox12 → fox14}/include/FXRbFileDialog.h +1 -1
  125. data/ext/{fox12 → fox14}/include/FXRbFileDict.h +1 -1
  126. data/ext/{fox12 → fox14}/include/FXRbFileDictVirtuals.h +0 -0
  127. data/ext/{fox12 → fox14}/include/FXRbFileList.h +1 -1
  128. data/ext/{fox12 → fox14}/include/FXRbFileSelector.h +1 -1
  129. data/ext/{fox12 → fox14}/include/FXRbFoldingItemVirtuals.h +2 -5
  130. data/ext/{fox12 → fox14}/include/FXRbFoldingList.h +98 -15
  131. data/ext/fox14/include/FXRbFoldingListVirtuals.h +43 -0
  132. data/ext/{fox12 → fox14}/include/FXRbFont.h +1 -1
  133. data/ext/{fox12 → fox14}/include/FXRbFontDialog.h +1 -1
  134. data/ext/{fox12 → fox14}/include/FXRbFontSelector.h +1 -1
  135. data/ext/{fox12 → fox14}/include/FXRbFrame.h +1 -1
  136. data/ext/{fox12 → fox14}/include/FXRbGIFCursor.h +1 -1
  137. data/ext/{fox12 → fox14}/include/FXRbGIFIcon.h +1 -1
  138. data/ext/{fox12 → fox14}/include/FXRbGIFImage.h +1 -1
  139. data/ext/{fox12 → fox14}/include/FXRbGLCanvas.h +1 -1
  140. data/ext/{fox12 → fox14}/include/FXRbGLCanvasVirtuals.h +0 -0
  141. data/ext/{fox12 → fox14}/include/FXRbGLContext.h +1 -1
  142. data/ext/{fox12 → fox14}/include/FXRbGLObject.h +1 -1
  143. data/ext/{fox12 → fox14}/include/FXRbGLObjectVirtuals.h +0 -0
  144. data/ext/{fox12 → fox14}/include/FXRbGLShape.h +1 -1
  145. data/ext/{fox12 → fox14}/include/FXRbGLShapeVirtuals.h +0 -0
  146. data/ext/{fox12 → fox14}/include/FXRbGLViewer.h +7 -1
  147. data/ext/{fox12 → fox14}/include/FXRbGLViewerVirtuals.h +4 -0
  148. data/ext/{fox12 → fox14}/include/FXRbGLVisual.h +1 -1
  149. data/ext/{fox12 → fox14}/include/FXRbGradientBar.h +1 -1
  150. data/ext/{fox12 → fox14}/include/FXRbGroupBox.h +1 -1
  151. data/ext/{fox12 → fox14}/include/FXRbHeader.h +1 -1
  152. data/ext/{fox12 → fox14}/include/FXRbHeaderItemVirtuals.h +0 -0
  153. data/ext/{fox12 → fox14}/include/FXRbHorizontalFrame.h +1 -1
  154. data/ext/{fox12 → fox14}/include/FXRbICOIcon.h +1 -1
  155. data/ext/{fox12 → fox14}/include/FXRbICOImage.h +1 -1
  156. data/ext/{fox12 → fox14}/include/FXRbIcon.h +1 -1
  157. data/ext/{fox12 → fox14}/include/FXRbIconItemVirtuals.h +2 -5
  158. data/ext/{fox12 → fox14}/include/FXRbIconList.h +33 -15
  159. data/ext/{fox12 → fox14}/include/FXRbIconListVirtuals.h +14 -0
  160. data/ext/fox14/include/FXRbIconSource.h +127 -0
  161. data/ext/fox14/include/FXRbIconSourceVirtuals.h +37 -0
  162. data/ext/{fox12 → fox14}/include/FXRbId.h +1 -1
  163. data/ext/{fox12 → fox14}/include/FXRbIdVirtuals.h +0 -0
  164. data/ext/{fox12 → fox14}/include/FXRbImage.h +5 -5
  165. data/ext/{fox12 → fox14}/include/FXRbImageFrame.h +1 -1
  166. data/ext/{fox12 → fox14}/include/FXRbImageView.h +1 -1
  167. data/ext/{fox12 → fox14}/include/FXRbImageVirtuals.h +1 -1
  168. data/ext/{fox12 → fox14}/include/FXRbInputDialog.h +4 -1
  169. data/ext/{fox12 → fox14}/include/FXRbJPGIcon.h +1 -1
  170. data/ext/{fox12 → fox14}/include/FXRbJPGImage.h +1 -1
  171. data/ext/{fox12 → fox14}/include/FXRbLabel.h +1 -1
  172. data/ext/{fox12 → fox14}/include/FXRbList.h +29 -11
  173. data/ext/{fox12 → fox14}/include/FXRbListBox.h +12 -1
  174. data/ext/fox14/include/FXRbListBoxVirtuals.h +4 -0
  175. data/ext/{fox12 → fox14}/include/FXRbListItemVirtuals.h +1 -4
  176. data/ext/{fox12 → fox14}/include/FXRbListVirtuals.h +12 -0
  177. data/ext/{fox12 → fox14}/include/FXRbMDIButton.h +1 -1
  178. data/ext/{fox12 → fox14}/include/FXRbMDIChild.h +1 -1
  179. data/ext/{fox12 → fox14}/include/FXRbMDIChildVirtuals.h +0 -0
  180. data/ext/{fox12 → fox14}/include/FXRbMDIClient.h +1 -1
  181. data/ext/{fox12 → fox14}/include/FXRbMDIClientVirtuals.h +0 -0
  182. data/ext/{fox12 → fox14}/include/FXRbMainWindow.h +1 -1
  183. data/ext/{fox12 → fox14}/include/FXRbMatrix.h +1 -1
  184. data/ext/{fox12 → fox14}/include/FXRbMenuBar.h +2 -2
  185. data/ext/{fox12 → fox14}/include/FXRbMenuButton.h +1 -1
  186. data/ext/{fox12 → fox14}/include/FXRbMenuCaption.h +1 -1
  187. data/ext/{fox12 → fox14}/include/FXRbMenuCascade.h +1 -1
  188. data/ext/{fox12 → fox14}/include/FXRbMenuCheck.h +1 -1
  189. data/ext/{fox12 → fox14}/include/FXRbMenuCommand.h +1 -1
  190. data/ext/{fox12 → fox14}/include/FXRbMenuPane.h +1 -1
  191. data/ext/{fox12 → fox14}/include/FXRbMenuRadio.h +1 -1
  192. data/ext/{fox12 → fox14}/include/FXRbMenuSeparator.h +1 -1
  193. data/ext/{fox12 → fox14}/include/FXRbMenuTitle.h +1 -1
  194. data/ext/{fox12 → fox14}/include/FXRbMessageBox.h +1 -1
  195. data/ext/{fox12 → fox14}/include/FXRbObject.h +1 -1
  196. data/ext/{fox12 → fox14}/include/FXRbObjectVirtuals.h +0 -0
  197. data/ext/{fox12 → fox14}/include/FXRbOptionMenu.h +1 -1
  198. data/ext/{fox12 → fox14}/include/FXRbPCXIcon.h +1 -1
  199. data/ext/{fox12 → fox14}/include/FXRbPCXImage.h +1 -1
  200. data/ext/{fox12 → fox14}/include/FXRbPNGIcon.h +1 -1
  201. data/ext/{fox12 → fox14}/include/FXRbPNGImage.h +1 -1
  202. data/ext/{fox12 → fox14}/include/FXRbPPMIcon.h +1 -1
  203. data/ext/{fox12 → fox14}/include/FXRbPPMImage.h +1 -1
  204. data/ext/{fox12 → fox14}/include/FXRbPacker.h +1 -1
  205. data/ext/{fox12 → fox14}/include/FXRbPicker.h +1 -1
  206. data/ext/{fox12 → fox14}/include/FXRbPopup.h +1 -1
  207. data/ext/{fox12 → fox14}/include/FXRbPopupVirtuals.h +0 -0
  208. data/ext/{fox12 → fox14}/include/FXRbPrintDialog.h +1 -1
  209. data/ext/{fox12 → fox14}/include/FXRbProgressBar.h +1 -1
  210. data/ext/{fox12 → fox14}/include/FXRbProgressDialog.h +1 -1
  211. data/ext/{fox12 → fox14}/include/FXRbRGBIcon.h +1 -1
  212. data/ext/{fox12 → fox14}/include/FXRbRGBImage.h +1 -1
  213. data/ext/{fox12 → fox14}/include/FXRbRadioButton.h +1 -1
  214. data/ext/{fox12 → fox14}/include/FXRbRealSlider.h +1 -1
  215. data/ext/{fox12 → fox14}/include/FXRbRealSpinner.h +1 -1
  216. data/ext/{fox12 → fox14}/include/FXRbRealSpinnerVirtuals.h +0 -0
  217. data/ext/{fox12 → fox14}/include/FXRbRecentFiles.h +1 -1
  218. data/ext/{fox12 → fox14}/include/FXRbRegistry.h +1 -1
  219. data/ext/{fox12 → fox14}/include/FXRbReplaceDialog.h +1 -1
  220. data/ext/{fox12 → fox14}/include/FXRbRootWindow.h +1 -1
  221. data/ext/{fox12 → fox14}/include/FXRbRuler.h +1 -1
  222. data/ext/{fox12 → fox14}/include/FXRbScintilla.h +1 -1
  223. data/ext/{fox12 → fox14}/include/FXRbScrollArea.h +1 -1
  224. data/ext/{fox12 → fox14}/include/FXRbScrollAreaVirtuals.h +0 -0
  225. data/ext/{fox12 → fox14}/include/FXRbScrollBar.h +1 -1
  226. data/ext/{fox12 → fox14}/include/FXRbScrollPane.h +1 -1
  227. data/ext/{fox12 → fox14}/include/FXRbScrollWindow.h +1 -1
  228. data/ext/{fox12 → fox14}/include/FXRbSearchDialog.h +1 -1
  229. data/ext/{fox12 → fox14}/include/FXRbSeparator.h +1 -1
  230. data/ext/{fox12 → fox14}/include/FXRbSettings.h +1 -1
  231. data/ext/{fox12 → fox14}/include/FXRbShell.h +1 -1
  232. data/ext/{fox12 → fox14}/include/FXRbShutter.h +1 -1
  233. data/ext/{fox12 → fox14}/include/FXRbShutterVirtuals.h +0 -0
  234. data/ext/{fox12 → fox14}/include/FXRbSlider.h +1 -1
  235. data/ext/{fox12 → fox14}/include/FXRbSpinner.h +1 -1
  236. data/ext/{fox12 → fox14}/include/FXRbSpinnerVirtuals.h +0 -0
  237. data/ext/fox14/include/FXRbSplashWindow.h +57 -0
  238. data/ext/{fox12 → fox14}/include/FXRbSplitter.h +1 -1
  239. data/ext/{fox12 → fox14}/include/FXRbSpring.h +1 -1
  240. data/ext/{fox12 → fox14}/include/FXRbStatusBar.h +1 -1
  241. data/ext/{fox12 → fox14}/include/FXRbStatusLine.h +1 -1
  242. data/ext/{fox12 → fox14}/include/FXRbStream.h +3 -3
  243. data/ext/{fox12 → fox14}/include/FXRbStreamVirtuals.h +1 -1
  244. data/ext/{fox12 → fox14}/include/FXRbStringDict.h +1 -1
  245. data/ext/{fox12 → fox14}/include/FXRbSwitcher.h +1 -1
  246. data/ext/{fox12 → fox14}/include/FXRbTGAIcon.h +1 -1
  247. data/ext/{fox12 → fox14}/include/FXRbTGAImage.h +1 -1
  248. data/ext/{fox12 → fox14}/include/FXRbTIFIcon.h +1 -1
  249. data/ext/{fox12 → fox14}/include/FXRbTIFImage.h +1 -1
  250. data/ext/{fox12 → fox14}/include/FXRbTabBar.h +1 -1
  251. data/ext/{fox12 → fox14}/include/FXRbTabBarVirtuals.h +0 -0
  252. data/ext/{fox12 → fox14}/include/FXRbTabBook.h +1 -1
  253. data/ext/{fox12 → fox14}/include/FXRbTabItem.h +1 -1
  254. data/ext/{fox12 → fox14}/include/FXRbTable.h +96 -36
  255. data/ext/{fox12 → fox14}/include/FXRbTableItemVirtuals.h +24 -3
  256. data/ext/{fox12 → fox14}/include/FXRbTableVirtuals.h +19 -6
  257. data/ext/{fox12 → fox14}/include/FXRbText.h +2 -2
  258. data/ext/{fox12 → fox14}/include/FXRbTextField.h +1 -1
  259. data/ext/{fox12 → fox14}/include/FXRbTextVirtuals.h +0 -0
  260. data/ext/{fox12 → fox14}/include/FXRbToggleButton.h +1 -1
  261. data/ext/{fox12 → fox14}/include/FXRbToolBar.h +2 -19
  262. data/ext/{fox12 → fox14}/include/FXRbToolBarGrip.h +1 -1
  263. data/ext/{fox12 → fox14}/include/FXRbToolBarShell.h +1 -1
  264. data/ext/{fox12 → fox14}/include/FXRbToolBarTab.h +1 -1
  265. data/ext/{fox12 → fox14}/include/FXRbToolTip.h +1 -1
  266. data/ext/{fox12 → fox14}/include/FXRbTopWindow.h +1 -1
  267. data/ext/{fox12 → fox14}/include/FXRbTopWindowVirtuals.h +0 -0
  268. data/ext/{fox12 → fox14}/include/FXRbTreeItemVirtuals.h +2 -2
  269. data/ext/{fox12 → fox14}/include/FXRbTreeList.h +33 -9
  270. data/ext/{fox12 → fox14}/include/FXRbTreeListBox.h +12 -1
  271. data/ext/fox14/include/FXRbTreeListBoxVirtuals.h +4 -0
  272. data/ext/{fox12 → fox14}/include/FXRbTreeListVirtuals.h +12 -0
  273. data/ext/{fox12 → fox14}/include/FXRbTriStateButton.h +1 -1
  274. data/ext/{fox12 → fox14}/include/FXRbVerticalFrame.h +1 -1
  275. data/ext/{fox12 → fox14}/include/FXRbVisual.h +1 -1
  276. data/ext/{fox12 → fox14}/include/FXRbWindow.h +35 -5
  277. data/ext/{fox12 → fox14}/include/FXRbWindowVirtuals.h +17 -1
  278. data/ext/{fox12 → fox14}/include/FXRbWizard.h +1 -1
  279. data/ext/{fox12 → fox14}/include/FXRbXBMIcon.h +1 -1
  280. data/ext/{fox12 → fox14}/include/FXRbXBMImage.h +1 -1
  281. data/ext/{fox12 → fox14}/include/FXRbXPMIcon.h +1 -1
  282. data/ext/{fox12 → fox14}/include/FXRbXPMImage.h +1 -1
  283. data/ext/{fox12 → fox14}/include/FXRuby.h +78 -7
  284. data/ext/{fox12 → fox14}/include/impl.h +7 -0
  285. data/ext/{fox12 → fox14}/include/inlinestubs.h +58 -2
  286. data/ext/{fox12 → fox14}/label_wrap.cpp +524 -68
  287. data/ext/{fox12 → fox14}/layout_wrap.cpp +1025 -90
  288. data/ext/{fox12 → fox14}/librb.c +0 -0
  289. data/ext/{fox12 → fox14}/list_wrap.cpp +328 -234
  290. data/ext/{fox12 → fox14}/markfuncs.cpp +29 -4
  291. data/ext/{fox12 → fox14}/mdi_wrap.cpp +553 -99
  292. data/ext/{fox12 → fox14}/menu_wrap.cpp +967 -404
  293. data/ext/{fox12 → fox14}/scintilla_wrap.cpp +754 -635
  294. data/ext/{fox12 → fox14}/table_wrap.cpp +501 -284
  295. data/ext/{fox12 → fox14}/text_wrap.cpp +765 -629
  296. data/ext/{fox12 → fox14}/treelist_wrap.cpp +859 -661
  297. data/ext/{fox12 → fox14}/ui_wrap.cpp +3025 -627
  298. data/ext/{fox12 → fox14}/unregisterOwnedObjects.cpp +1 -1
  299. data/lib/{fox12 → fox14}/aliases.rb +252 -45
  300. data/lib/{fox12 → fox14}/calendar.rb +2 -2
  301. data/lib/{fox12 → fox14}/chore.rb +1 -1
  302. data/lib/{fox12 → fox14}/colors.rb +1 -1
  303. data/lib/{fox12 → fox14}/core.rb +126 -52
  304. data/lib/{fox12 → fox14}/dict.rb +0 -0
  305. data/lib/{fox12 → fox14}/execute_nonmodal.rb +0 -0
  306. data/lib/{fox12 → fox14}/glgroup.rb +1 -1
  307. data/lib/{fox12 → fox14}/glshapes.rb +1 -1
  308. data/lib/{fox12 → fox14}/input.rb +1 -1
  309. data/lib/{fox12 → fox14}/irb.rb +1 -1
  310. data/lib/{fox12 → fox14}/iterators.rb +1 -1
  311. data/lib/{fox12 → fox14}/keys.rb +1 -1
  312. data/lib/{fox12 → fox14}/missingdep.rb +1 -1
  313. data/lib/{fox12 → fox14}/pseudokeyboard.rb +1 -1
  314. data/lib/{fox12 → fox14}/pseudomouse.rb +1 -1
  315. data/lib/{fox12 → fox14}/responder.rb +1 -1
  316. data/lib/{fox12 → fox14}/responder2.rb +5 -5
  317. data/lib/{fox12 → fox14}/scintilla.rb +0 -0
  318. data/lib/{fox12 → fox14}/settings.rb +0 -0
  319. data/lib/{fox12 → fox14}/signal.rb +1 -1
  320. data/lib/{fox12 → fox14}/splashscreen.rb +2 -2
  321. data/lib/{fox12 → fox14}/timeout.rb +1 -1
  322. data/lib/{fox12 → fox14}/undolist.rb +2 -2
  323. data/lib/{fox12 → fox14}/version.rb +2 -2
  324. data/rdoc-sources/FX7Segment.rb +48 -0
  325. data/rdoc-sources/FXApp.rb +51 -31
  326. data/rdoc-sources/FXBMPIcon.rb +18 -1
  327. data/rdoc-sources/FXBMPImage.rb +5 -0
  328. data/rdoc-sources/FXBitmap.rb +18 -3
  329. data/rdoc-sources/FXBitmapFrame.rb +3 -1
  330. data/rdoc-sources/FXBitmapView.rb +4 -1
  331. data/rdoc-sources/FXButton.rb +16 -0
  332. data/rdoc-sources/FXCheckButton.rb +25 -1
  333. data/rdoc-sources/FXChoiceBox.rb +82 -0
  334. data/rdoc-sources/FXColorBar.rb +6 -1
  335. data/rdoc-sources/FXColorDialog.rb +1 -0
  336. data/rdoc-sources/FXColorWell.rb +14 -6
  337. data/rdoc-sources/FXColorWheel.rb +6 -4
  338. data/rdoc-sources/FXComboBox.rb +53 -5
  339. data/rdoc-sources/FXCursor.rb +2 -2
  340. data/rdoc-sources/FXDC.rb +36 -2
  341. data/rdoc-sources/FXDial.rb +10 -4
  342. data/rdoc-sources/FXDirBox.rb +7 -1
  343. data/rdoc-sources/FXDirDialog.rb +33 -0
  344. data/rdoc-sources/FXDirList.rb +8 -3
  345. data/rdoc-sources/FXDirSelector.rb +36 -2
  346. data/rdoc-sources/FXDockBar.rb +136 -0
  347. data/rdoc-sources/FXDockHandler.rb +19 -0
  348. data/rdoc-sources/FXDockSite.rb +86 -0
  349. data/rdoc-sources/FXDockTitle.rb +26 -0
  350. data/rdoc-sources/FXFileDialog.rb +33 -0
  351. data/rdoc-sources/FXFileDict.rb +29 -56
  352. data/rdoc-sources/FXFileList.rb +39 -16
  353. data/rdoc-sources/FXFileSelector.rb +28 -2
  354. data/rdoc-sources/FXFileStream.rb +3 -0
  355. data/rdoc-sources/FXFoldingList.rb +104 -62
  356. data/rdoc-sources/FXFont.rb +2 -9
  357. data/rdoc-sources/FXFrame.rb +7 -1
  358. data/rdoc-sources/FXGIFCursor.rb +17 -5
  359. data/rdoc-sources/FXGIFIcon.rb +5 -0
  360. data/rdoc-sources/FXGIFImage.rb +5 -0
  361. data/rdoc-sources/FXHeader.rb +24 -4
  362. data/rdoc-sources/FXICOIcon.rb +10 -0
  363. data/rdoc-sources/FXICOImage.rb +5 -0
  364. data/rdoc-sources/FXIconList.rb +37 -13
  365. data/rdoc-sources/FXIconSource.rb +100 -0
  366. data/rdoc-sources/FXImage.rb +8 -2
  367. data/rdoc-sources/FXInputDialog.rb +6 -0
  368. data/rdoc-sources/FXJPGIcon.rb +13 -0
  369. data/rdoc-sources/FXJPGImage.rb +8 -0
  370. data/rdoc-sources/FXLabel.rb +4 -1
  371. data/rdoc-sources/FXList.rb +19 -9
  372. data/rdoc-sources/FXListBox.rb +22 -4
  373. data/rdoc-sources/FXMDIChild.rb +21 -2
  374. data/rdoc-sources/FXMDIClient.rb +15 -11
  375. data/rdoc-sources/FXMainWindow.rb +7 -1
  376. data/rdoc-sources/FXMemoryStream.rb +2 -0
  377. data/rdoc-sources/FXMenuBar.rb +1 -1
  378. data/rdoc-sources/FXMessageBox.rb +17 -7
  379. data/rdoc-sources/FXObject.rb +7 -1
  380. data/rdoc-sources/FXPCXIcon.rb +10 -0
  381. data/rdoc-sources/FXPCXImage.rb +5 -0
  382. data/rdoc-sources/FXPNGIcon.rb +15 -2
  383. data/rdoc-sources/FXPNGImage.rb +8 -0
  384. data/rdoc-sources/FXPPMIcon.rb +10 -0
  385. data/rdoc-sources/FXPPMImage.rb +5 -0
  386. data/rdoc-sources/FXQuatd.rb +1 -1
  387. data/rdoc-sources/FXQuatf.rb +1 -1
  388. data/rdoc-sources/FXRGBIcon.rb +12 -2
  389. data/rdoc-sources/FXRGBImage.rb +5 -0
  390. data/rdoc-sources/FXRegistry.rb +19 -2
  391. data/rdoc-sources/FXRuler.rb +47 -5
  392. data/rdoc-sources/FXScrollArea.rb +4 -4
  393. data/rdoc-sources/FXScrollPane.rb +3 -1
  394. data/rdoc-sources/FXSeparator.rb +20 -10
  395. data/rdoc-sources/FXSettings.rb +3 -3
  396. data/rdoc-sources/FXShell.rb +2 -1
  397. data/rdoc-sources/FXShutter.rb +7 -2
  398. data/rdoc-sources/FXSphered.rb +5 -2
  399. data/rdoc-sources/FXSpheref.rb +5 -2
  400. data/rdoc-sources/FXSplashWindow.rb +31 -0
  401. data/rdoc-sources/FXSplitter.rb +2 -1
  402. data/rdoc-sources/FXStream.rb +11 -2
  403. data/rdoc-sources/FXTGAIcon.rb +12 -2
  404. data/rdoc-sources/FXTGAImage.rb +5 -0
  405. data/rdoc-sources/FXTIFIcon.rb +15 -2
  406. data/rdoc-sources/FXTIFImage.rb +8 -0
  407. data/rdoc-sources/FXTable.rb +92 -15
  408. data/rdoc-sources/FXText.rb +11 -2
  409. data/rdoc-sources/FXTextField.rb +6 -2
  410. data/rdoc-sources/FXToolBar.rb +5 -65
  411. data/rdoc-sources/FXToolBarGrip.rb +5 -10
  412. data/rdoc-sources/FXToolBarTab.rb +8 -3
  413. data/rdoc-sources/FXTopWindow.rb +4 -0
  414. data/rdoc-sources/FXTreeList.rb +56 -50
  415. data/rdoc-sources/FXTreeListBox.rb +49 -30
  416. data/rdoc-sources/FXWindow.rb +30 -11
  417. data/rdoc-sources/FXXBMIcon.rb +10 -0
  418. data/rdoc-sources/FXXBMImage.rb +5 -0
  419. data/rdoc-sources/FXXPMIcon.rb +11 -1
  420. data/rdoc-sources/FXXPMImage.rb +5 -0
  421. data/rdoc-sources/README.rdoc +1 -1
  422. data/tests/TC_FXBMPIcon.rb +15 -0
  423. data/tests/TC_FXBMPImage.rb +15 -0
  424. data/tests/TC_FXFont.rb +0 -10
  425. data/tests/TC_FXXBMIcon.rb +15 -0
  426. data/tests/TC_FXXBMImage.rb +15 -0
  427. data/tests/TC_FXXPMIcon.rb +15 -0
  428. data/tests/TC_FXXPMImage.rb +15 -0
  429. data/web/downloads.html +3 -1
  430. data/web/home.html +3 -1
  431. metadata +290 -268
  432. data/ANNOUNCE +0 -25
  433. data/examples/mditest2.rb +0 -195
  434. data/ext/fox12/include/FXRbToolBarVirtuals.h +0 -6
  435. data/lib/fox12/dialogs.rb +0 -72
  436. data/tests/TC_FXSettings.rb +0 -34
  437. data/tests/doit.rb +0 -5
File without changes
@@ -516,18 +516,21 @@ SWIGIMPORT(void) SWIG_Ruby_ConvertPacked(VALUE obj, void *ptr, int sz, swig_ty
516
516
 
517
517
  /* -------- TYPES TABLE (BEGIN) -------- */
518
518
 
519
- #define SWIGTYPE_p_FXId swig_types[0]
520
- #define SWIGTYPE_p_FXIcon swig_types[1]
521
- #define SWIGTYPE_p_FXComposite swig_types[2]
522
- #define SWIGTYPE_p_FXWindow swig_types[3]
523
- #define SWIGTYPE_p_FXList swig_types[4]
519
+ #define SWIGTYPE_p_FXObject swig_types[0]
520
+ #define SWIGTYPE_p_FXScrollArea swig_types[1]
521
+ #define SWIGTYPE_p_FXWindow swig_types[2]
522
+ #define SWIGTYPE_p_FXComposite swig_types[3]
523
+ #define SWIGTYPE_p_FXBitmap swig_types[4]
524
524
  #define SWIGTYPE_p_FXFont swig_types[5]
525
- #define SWIGTYPE_p_FXObject swig_types[6]
526
- #define SWIGTYPE_p_FXDrawable swig_types[7]
527
- #define SWIGTYPE_p_FXScrollArea swig_types[8]
528
- #define SWIGTYPE_p_FXListItem swig_types[9]
529
- #define SWIGTYPE_p_FXStream swig_types[10]
530
- static swig_type_info *swig_types[12];
525
+ #define SWIGTYPE_p_FXId swig_types[6]
526
+ #define SWIGTYPE_p_p_FXchar swig_types[7]
527
+ #define SWIGTYPE_p_FXStream swig_types[8]
528
+ #define SWIGTYPE_p_FXDrawable swig_types[9]
529
+ #define SWIGTYPE_p_FXList swig_types[10]
530
+ #define SWIGTYPE_p_FXIcon swig_types[11]
531
+ #define SWIGTYPE_p_FXRegion swig_types[12]
532
+ #define SWIGTYPE_p_FXListItem swig_types[13]
533
+ static swig_type_info *swig_types[15];
531
534
 
532
535
  /* -------- TYPES TABLE (END) -------- */
533
536
 
@@ -669,7 +672,7 @@ void FXList_clearItems(FXList *self,FXbool notify){
669
672
  // Now zero-out pointers held by still-alive Ruby objects
670
673
  for(FXint j=0; j<items.no(); j++) FXRbUnregisterRubyObj(items[j]);
671
674
  }
672
- void FXList_makeItemVisible__SWIG_1(FXList *self,FXListItem *item){
675
+ void FXList_makeItemVisible__SWIG_0(FXList *self,FXListItem *item){
673
676
  FXint numItems=self->getNumItems();
674
677
  for(FXint i=0; i<numItems; i++){
675
678
  if(self->getItem(i)==item){
@@ -750,11 +753,6 @@ static VALUE _wrap_FXListItem_isDraggable(int argc, VALUE *argv, VALUE self) { F
750
753
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
751
754
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXListItem, 1);
752
755
  result = (FXbool)((FXListItem const *)arg1)->isDraggable(); vresult = result ? Qtrue : Qfalse; return vresult; }
753
- static VALUE _wrap_FXListItem_isIconOwned(int argc, VALUE *argv, VALUE self) { FXListItem *arg1 = (FXListItem *) 0 ;
754
- FXuint result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
755
- rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
756
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXListItem, 1);
757
- result = (FXuint)((FXListItem const *)arg1)->isIconOwned(); vresult = UINT2NUM(result); return vresult; }
758
756
  static void
759
757
  free_FXListItem(FXListItem *arg1) {
760
758
  delete arg1;
@@ -775,9 +773,11 @@ static VALUE _wrap_FXListItem_setText(int argc, VALUE *argv, VALUE self) { FXLis
775
773
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXListItem, 1); p2 = to_FXString(argv[0]); arg2 = &p2;
776
774
  FXListItem_setText(arg1,(FXString const &)*arg2); return Qnil; }
777
775
  static VALUE _wrap_FXListItem_setIcon(int argc, VALUE *argv, VALUE self) { FXListItem *arg1 = (FXListItem *) 0 ;
778
- FXIcon *arg2 = (FXIcon *) 0 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
776
+ FXIcon *arg2 = (FXIcon *) 0 ; FXbool arg3 = (FXbool) 0 ; if ((argc < 1) || (argc > 2))
777
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
779
778
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXListItem, 1);
780
- SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXIcon, 1); FXListItem_setIcon(arg1,arg2); return Qnil; }
779
+ SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXIcon, 1); if (argc > 1) { arg3 = to_FXbool(argv[1]); }
780
+ FXListItem_setIcon(arg1,arg2,arg3); return Qnil; }
781
781
  static VALUE _wrap_FXListItem_setFocus(int argc, VALUE *argv, VALUE self) { FXListItem *arg1 = (FXListItem *) 0 ; FXbool arg2 ;
782
782
  if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
783
783
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXListItem, 1); arg2 = to_FXbool(argv[0]); FXListItem_setFocus(arg1,arg2);
@@ -794,10 +794,6 @@ static VALUE _wrap_FXListItem_setDraggable(int argc, VALUE *argv, VALUE self) {
794
794
  FXbool arg2 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
795
795
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXListItem, 1); arg2 = to_FXbool(argv[0]);
796
796
  FXListItem_setDraggable(arg1,arg2); return Qnil; }
797
- static VALUE _wrap_FXListItem_setIconOwned(int argc, VALUE *argv, VALUE self) { FXListItem *arg1 = (FXListItem *) 0 ;
798
- FXuint arg2 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
799
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXListItem, 1); arg2 = NUM2UINT(argv[0]);
800
- FXListItem_setIconOwned(arg1,arg2); return Qnil; }
801
797
  static VALUE _wrap_FXListItem_getWidth(int argc, VALUE *argv, VALUE self) { FXListItem *arg1 = (FXListItem *) 0 ;
802
798
  FXList *arg2 = (FXList *) 0 ; FXint result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 1))
803
799
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
@@ -1082,6 +1078,17 @@ static VALUE _wrap_FXList_setItem(int nargs, VALUE *args, VALUE self) { int argc
1082
1078
  _v = (argv[5] == Qtrue || argv[5] == Qfalse) ? 1 : 0; } if (_v) {
1083
1079
  return _wrap_FXList_setItem__SWIG_1(nargs, args, self);} } } } } } }
1084
1080
  rb_raise(rb_eArgError, "No matching function for overloaded 'FXList_setItem'"); return Qnil; }
1081
+ static VALUE _wrap_FXList_fillItems(int argc, VALUE *argv, VALUE self) { FXList *arg1 = (FXList *) 0 ;
1082
+ FXchar **arg2 = (FXchar **) 0 ; FXIcon *arg3 = (FXIcon *) 0 ; void *arg4 = (void *) 0 ; FXbool arg5 = (FXbool) 0 ;
1083
+ FXint result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 4))
1084
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc); SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXList, 1);
1085
+ { arg2 = NULL; if(!NIL_P(argv[0])){ Check_Type(argv[0], T_ARRAY); if (FXMALLOC(&arg2, FXchar *, RARRAY(argv[0])->len)+1) {
1086
+ for (long i = 0; i < RARRAY(argv[0])->len; i++) { arg2[i] = (FXchar *) STR2CSTR(rb_ary_entry(argv[0], i)); }
1087
+ arg2[RARRAY(argv[0])->len] = 0; } } } if (argc > 1) {
1088
+ SWIG_ConvertPtr(argv[1], (void **) &arg3, SWIGTYPE_p_FXIcon, 1); } if (argc > 2) {
1089
+ SWIG_ConvertPtr(argv[2], (void **) &arg4, 0, 1); } if (argc > 3) { arg5 = to_FXbool(argv[3]); }
1090
+ result = (FXint)(arg1)->fillItems((FXchar const **)arg2,arg3,arg4,arg5); vresult = INT2NUM(result); FXFREE(&arg2);
1091
+ return vresult; }
1085
1092
  static VALUE _wrap_FXList_insertItem__SWIG_0(int argc, VALUE *argv, VALUE self) { FXList *arg1 = (FXList *) 0 ; FXint arg2 ;
1086
1093
  FXListItem *arg3 = (FXListItem *) 0 ; FXbool arg4 = (FXbool) 0 ; FXint result; VALUE vresult = Qnil;
1087
1094
  if ((argc < 2) || (argc > 3)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
@@ -1210,11 +1217,6 @@ static VALUE _wrap_FXList_getItemHeight(int argc, VALUE *argv, VALUE self) { FXL
1210
1217
  arg2 = NUM2INT(argv[0]); { if (arg2 < 0 || arg2 >= arg1->getNumItems()) {
1211
1218
  rb_raise(rb_eIndexError, "list item index out of bounds"); } }
1212
1219
  result = (FXint)((FXList const *)arg1)->getItemHeight(arg2); vresult = INT2NUM(result); return vresult; }
1213
- static VALUE _wrap_FXList_getItemAt(int argc, VALUE *argv, VALUE self) { FXList *arg1 = (FXList *) 0 ; FXint arg2 ; FXint arg3 ;
1214
- FXint result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
1215
- rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc); SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXList, 1);
1216
- arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]); result = (FXint)((FXList const *)arg1)->getItemAt(arg2,arg3);
1217
- vresult = INT2NUM(result); return vresult; }
1218
1220
  static VALUE _wrap_FXList_hitItem(int argc, VALUE *argv, VALUE self) { FXList *arg1 = (FXList *) 0 ; FXint arg2 ; FXint arg3 ;
1219
1221
  FXint arg4 ; FXint result; VALUE vresult = Qnil; if ((argc < 3) || (argc > 3))
1220
1222
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 3)",argc); SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXList, 1);
@@ -1228,28 +1230,18 @@ static VALUE _wrap_FXList_findItem(int argc, VALUE *argv, VALUE self) { FXList *
1228
1230
  arg3 = NUM2INT(argv[1]); } if (argc > 2) { arg4 = NUM2UINT(argv[2]); }
1229
1231
  result = (FXint)((FXList const *)arg1)->findItem((FXString const &)*arg2,arg3,arg4); vresult = INT2NUM(result);
1230
1232
  return vresult; }
1233
+ static VALUE _wrap_FXList_findItemByData(int argc, VALUE *argv, VALUE self) { FXList *arg1 = (FXList *) 0 ;
1234
+ void *arg2 = (void *) 0 ; FXint arg3 = (FXint) -1 ; FXuint arg4 = (FXuint) SEARCH_FORWARD|SEARCH_WRAP ; FXint result;
1235
+ VALUE vresult = Qnil; if ((argc < 1) || (argc > 3)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1236
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXList, 1); SWIG_ConvertPtr(argv[0], (void **) &arg2, 0, 1);
1237
+ if (argc > 1) { arg3 = NUM2INT(argv[1]); } if (argc > 2) { arg4 = NUM2UINT(argv[2]); }
1238
+ result = (FXint)((FXList const *)arg1)->findItemByData((void const *)arg2,arg3,arg4); vresult = INT2NUM(result);
1239
+ return vresult; }
1231
1240
  static VALUE _wrap_FXList_makeItemVisible__SWIG_0(int argc, VALUE *argv, VALUE self) { FXList *arg1 = (FXList *) 0 ;
1232
- FXint arg2 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1233
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXList, 1); arg2 = NUM2INT(argv[0]); {
1234
- if (arg2 < 0 || arg2 >= arg1->getNumItems()) { rb_raise(rb_eIndexError, "list item index out of bounds"); } }
1235
- (arg1)->makeItemVisible(arg2); return Qnil; }
1236
- static VALUE _wrap_FXList_makeItemVisible__SWIG_1(int argc, VALUE *argv, VALUE self) { FXList *arg1 = (FXList *) 0 ;
1237
1241
  FXListItem *arg2 = (FXListItem *) 0 ; if ((argc < 1) || (argc > 1))
1238
1242
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc); SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXList, 1);
1239
- SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXListItem, 1); FXList_makeItemVisible__SWIG_1(arg1,arg2);
1243
+ SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXListItem, 1); FXList_makeItemVisible__SWIG_0(arg1,arg2);
1240
1244
  return Qnil; }
1241
- static VALUE _wrap_FXList_makeItemVisible(int nargs, VALUE *args, VALUE self) { int argc; VALUE argv[3]; int ii;
1242
- argc = nargs + 1; argv[0] = self; for (ii = 1; (ii < argc) && (ii < 2); ii++) { argv[ii] = args[ii-1]; } if (argc == 2) {
1243
- int _v; { void *ptr;
1244
- _v = (NIL_P(argv[0]) || (TYPE(argv[0]) == T_DATA && SWIG_ConvertPtr(argv[0], &ptr, SWIGTYPE_p_FXList, 0) != -1)) ? 1 : 0; }
1245
- if (_v) { { void *ptr;
1246
- _v = (NIL_P(argv[1]) || (TYPE(argv[1]) == T_DATA && SWIG_ConvertPtr(argv[1], &ptr, SWIGTYPE_p_FXListItem, 0) != -1)) ? 1 : 0; }
1247
- if (_v) { return _wrap_FXList_makeItemVisible__SWIG_1(nargs, args, self);} } } if (argc == 2) { int _v; {
1248
- void *ptr;
1249
- _v = (NIL_P(argv[0]) || (TYPE(argv[0]) == T_DATA && SWIG_ConvertPtr(argv[0], &ptr, SWIGTYPE_p_FXList, 0) != -1)) ? 1 : 0; }
1250
- if (_v) { { _v = ((TYPE(argv[1]) == T_FIXNUM) || (TYPE(argv[1]) == T_BIGNUM)) ? 1 : 0; } if (_v) {
1251
- return _wrap_FXList_makeItemVisible__SWIG_0(nargs, args, self);} } }
1252
- rb_raise(rb_eArgError, "No matching function for overloaded 'FXList_makeItemVisible'"); return Qnil; }
1253
1245
  static VALUE _wrap_FXList_setItemText(int argc, VALUE *argv, VALUE self) { FXList *arg1 = (FXList *) 0 ; FXint arg2 ;
1254
1246
  FXString *arg3 = 0 ; SwigValueWrapper<FXString > p3 ; if ((argc < 2) || (argc > 2))
1255
1247
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc); SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXList, 1);
@@ -1263,10 +1255,11 @@ static VALUE _wrap_FXList_getItemText(int argc, VALUE *argv, VALUE self) { FXLis
1263
1255
  rb_raise(rb_eIndexError, "list item index out of bounds"); } } result = ((FXList const *)arg1)->getItemText(arg2);
1264
1256
  vresult = rb_str_new2((&result)->text()); return vresult; }
1265
1257
  static VALUE _wrap_FXList_setItemIcon(int argc, VALUE *argv, VALUE self) { FXList *arg1 = (FXList *) 0 ; FXint arg2 ;
1266
- FXIcon *arg3 = (FXIcon *) 0 ; if ((argc < 2) || (argc > 2)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
1267
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXList, 1); arg2 = NUM2INT(argv[0]);
1268
- SWIG_ConvertPtr(argv[1], (void **) &arg3, SWIGTYPE_p_FXIcon, 1); { if (arg2 < 0 || arg2 >= arg1->getNumItems()) {
1269
- rb_raise(rb_eIndexError, "list item index out of bounds"); } } (arg1)->setItemIcon(arg2,arg3); return Qnil; }
1258
+ FXIcon *arg3 = (FXIcon *) 0 ; FXbool arg4 = (FXbool) 0 ; if ((argc < 2) || (argc > 3))
1259
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc); SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXList, 1);
1260
+ arg2 = NUM2INT(argv[0]); SWIG_ConvertPtr(argv[1], (void **) &arg3, SWIGTYPE_p_FXIcon, 1); if (argc > 2) {
1261
+ arg4 = to_FXbool(argv[2]); } { if (arg2 < 0 || arg2 >= arg1->getNumItems()) {
1262
+ rb_raise(rb_eIndexError, "list item index out of bounds"); } } (arg1)->setItemIcon(arg2,arg3,arg4); return Qnil; }
1270
1263
  static VALUE _wrap_FXList_getItemIcon(int argc, VALUE *argv, VALUE self) { FXList *arg1 = (FXList *) 0 ; FXint arg2 ;
1271
1264
  FXIcon *result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 1))
1272
1265
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc); SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXList, 1);
@@ -1315,18 +1308,6 @@ static VALUE _wrap_FXList_updateItem(int argc, VALUE *argv, VALUE self) { FXList
1315
1308
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXList, 1); arg2 = NUM2INT(argv[0]); {
1316
1309
  if (arg2 < 0 || arg2 >= arg1->getNumItems()) { rb_raise(rb_eIndexError, "list item index out of bounds"); } }
1317
1310
  ((FXList const *)arg1)->updateItem(arg2); return Qnil; }
1318
- static VALUE _wrap_FXList_enableItem(int argc, VALUE *argv, VALUE self) { FXList *arg1 = (FXList *) 0 ; FXint arg2 ;
1319
- FXbool result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 1))
1320
- rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc); SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXList, 1);
1321
- arg2 = NUM2INT(argv[0]); { if (arg2 < 0 || arg2 >= arg1->getNumItems()) {
1322
- rb_raise(rb_eIndexError, "list item index out of bounds"); } } result = (FXbool)(arg1)->enableItem(arg2);
1323
- vresult = result ? Qtrue : Qfalse; return vresult; }
1324
- static VALUE _wrap_FXList_disableItem(int argc, VALUE *argv, VALUE self) { FXList *arg1 = (FXList *) 0 ; FXint arg2 ;
1325
- FXbool result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 1))
1326
- rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc); SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXList, 1);
1327
- arg2 = NUM2INT(argv[0]); { if (arg2 < 0 || arg2 >= arg1->getNumItems()) {
1328
- rb_raise(rb_eIndexError, "list item index out of bounds"); } } result = (FXbool)(arg1)->disableItem(arg2);
1329
- vresult = result ? Qtrue : Qfalse; return vresult; }
1330
1311
  static VALUE _wrap_FXList_getCurrentItem(int argc, VALUE *argv, VALUE self) { FXList *arg1 = (FXList *) 0 ; FXint result;
1331
1312
  VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1332
1313
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXList, 1); result = (FXint)((FXList const *)arg1)->getCurrentItem();
@@ -1392,10 +1373,11 @@ static VALUE _wrap_FXList_setHelpText(int argc, VALUE *argv, VALUE self) { FXLis
1392
1373
  SwigValueWrapper<FXString > p2 ; if ((argc < 1) || (argc > 1))
1393
1374
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc); SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXList, 1);
1394
1375
  p2 = to_FXString(argv[0]); arg2 = &p2; (arg1)->setHelpText((FXString const &)*arg2); return Qnil; }
1395
- static VALUE _wrap_FXList_getHelpText(int argc, VALUE *argv, VALUE self) { FXList *arg1 = (FXList *) 0 ; FXString result;
1376
+ static VALUE _wrap_FXList_getHelpText(int argc, VALUE *argv, VALUE self) { FXList *arg1 = (FXList *) 0 ; FXString *result;
1396
1377
  VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1397
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXList, 1); result = ((FXList const *)arg1)->getHelpText();
1398
- vresult = rb_str_new2((&result)->text()); return vresult; }
1378
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXList, 1); {
1379
+ FXString const &_result_ref = ((FXList const *)arg1)->getHelpText(); result = (FXString *) &_result_ref; }
1380
+ vresult = rb_str_new2(result->text()); return vresult; }
1399
1381
  static void
1400
1382
  free_FXList(FXList *arg1) {
1401
1383
  delete arg1;
@@ -1449,6 +1431,10 @@ static VALUE _wrap_FXList_setFocus(int argc, VALUE *argv, VALUE self) { FXList *
1449
1431
  static VALUE _wrap_FXList_killFocus(int argc, VALUE *argv, VALUE self) { FXList *arg1 = (FXList *) 0 ;
1450
1432
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1451
1433
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXList, 1); FXList_killFocus(arg1); return Qnil; }
1434
+ static VALUE _wrap_FXList_changeFocus(int argc, VALUE *argv, VALUE self) { FXList *arg1 = (FXList *) 0 ;
1435
+ FXWindow *arg2 = (FXWindow *) 0 ; if ((argc < 1) || (argc > 1))
1436
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc); SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXList, 1);
1437
+ SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXWindow, 1); FXList_changeFocus(arg1,arg2); return Qnil; }
1452
1438
  static VALUE _wrap_FXList_setDefault(int argc, VALUE *argv, VALUE self) { FXList *arg1 = (FXList *) 0 ;
1453
1439
  FXbool arg2 = (FXbool) 1 ; if ((argc < 0) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1454
1440
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXList, 1); if (argc > 0) { arg2 = to_FXbool(argv[0]); }
@@ -1481,9 +1467,10 @@ static VALUE _wrap_FXList_recalc(int argc, VALUE *argv, VALUE self) { FXList *ar
1481
1467
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1482
1468
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXList, 1); FXList_recalc(arg1); return Qnil; }
1483
1469
  static VALUE _wrap_FXList_reparent(int argc, VALUE *argv, VALUE self) { FXList *arg1 = (FXList *) 0 ;
1484
- FXComposite *arg2 = (FXComposite *) 0 ; if ((argc < 1) || (argc > 1))
1485
- rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc); SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXList, 1);
1486
- SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXComposite, 1); FXList_reparent(arg1,arg2); return Qnil; }
1470
+ FXWindow *arg2 = (FXWindow *) 0 ; FXWindow *arg3 = (FXWindow *) 0 ; if ((argc < 2) || (argc > 2))
1471
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc); SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXList, 1);
1472
+ SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXWindow, 1);
1473
+ SWIG_ConvertPtr(argv[1], (void **) &arg3, SWIGTYPE_p_FXWindow, 1); FXList_reparent(arg1,arg2,arg3); return Qnil; }
1487
1474
  static VALUE _wrap_FXList_show(int argc, VALUE *argv, VALUE self) { FXList *arg1 = (FXList *) 0 ; if ((argc < 0) || (argc > 0))
1488
1475
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc); SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXList, 1);
1489
1476
  FXList_show(arg1); return Qnil; }
@@ -1507,6 +1494,38 @@ static VALUE _wrap_FXList_setBackColor(int argc, VALUE *argv, VALUE self) { FXLi
1507
1494
  if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1508
1495
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXList, 1); arg2 = to_FXColor(argv[0]); FXList_setBackColor(arg1,arg2);
1509
1496
  return Qnil; }
1497
+ static VALUE _wrap_FXList_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) { FXList *arg1 = (FXList *) 0 ;
1498
+ FXRegion *arg2 = 0 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1499
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXList, 1);
1500
+ SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXRegion, 1); if (arg2 == NULL) rb_raise(rb_eTypeError, "null reference");
1501
+ FXList_setShape(arg1,(FXRegion const &)*arg2); return Qnil; }
1502
+ static VALUE _wrap_FXList_setShape__SWIG_1(int argc, VALUE *argv, VALUE self) { FXList *arg1 = (FXList *) 0 ;
1503
+ FXBitmap *arg2 = (FXBitmap *) 0 ; if ((argc < 1) || (argc > 1))
1504
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc); SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXList, 1);
1505
+ SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXBitmap, 1); FXList_setShape(arg1,arg2); return Qnil; }
1506
+ static VALUE _wrap_FXList_setShape__SWIG_2(int argc, VALUE *argv, VALUE self) { FXList *arg1 = (FXList *) 0 ;
1507
+ FXIcon *arg2 = (FXIcon *) 0 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1508
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXList, 1);
1509
+ SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXIcon, 1); FXList_setShape(arg1,arg2); return Qnil; }
1510
+ static VALUE _wrap_FXList_setShape(int nargs, VALUE *args, VALUE self) { int argc; VALUE argv[3]; int ii; argc = nargs + 1;
1511
+ argv[0] = self; for (ii = 1; (ii < argc) && (ii < 2); ii++) { argv[ii] = args[ii-1]; } if (argc == 2) { int _v; {
1512
+ void *ptr;
1513
+ _v = (NIL_P(argv[0]) || (TYPE(argv[0]) == T_DATA && SWIG_ConvertPtr(argv[0], &ptr, SWIGTYPE_p_FXList, 0) != -1)) ? 1 : 0; }
1514
+ if (_v) { { void *ptr;
1515
+ _v = (NIL_P(argv[1]) || (TYPE(argv[1]) == T_DATA && SWIG_ConvertPtr(argv[1], &ptr, SWIGTYPE_p_FXRegion, 0) != -1)) ? 1 : 0; }
1516
+ if (_v) { return _wrap_FXList_setShape__SWIG_0(nargs, args, self);} } } if (argc == 2) { int _v; { void *ptr;
1517
+ _v = (NIL_P(argv[0]) || (TYPE(argv[0]) == T_DATA && SWIG_ConvertPtr(argv[0], &ptr, SWIGTYPE_p_FXList, 0) != -1)) ? 1 : 0; }
1518
+ if (_v) { { void *ptr;
1519
+ _v = (NIL_P(argv[1]) || (TYPE(argv[1]) == T_DATA && SWIG_ConvertPtr(argv[1], &ptr, SWIGTYPE_p_FXBitmap, 0) != -1)) ? 1 : 0; }
1520
+ if (_v) { return _wrap_FXList_setShape__SWIG_1(nargs, args, self);} } } if (argc == 2) { int _v; { void *ptr;
1521
+ _v = (NIL_P(argv[0]) || (TYPE(argv[0]) == T_DATA && SWIG_ConvertPtr(argv[0], &ptr, SWIGTYPE_p_FXList, 0) != -1)) ? 1 : 0; }
1522
+ if (_v) { { void *ptr;
1523
+ _v = (NIL_P(argv[1]) || (TYPE(argv[1]) == T_DATA && SWIG_ConvertPtr(argv[1], &ptr, SWIGTYPE_p_FXIcon, 0) != -1)) ? 1 : 0; }
1524
+ if (_v) { return _wrap_FXList_setShape__SWIG_2(nargs, args, self);} } }
1525
+ rb_raise(rb_eArgError, "No matching function for overloaded 'FXList_setShape'"); return Qnil; }
1526
+ static VALUE _wrap_FXList_clearShape(int argc, VALUE *argv, VALUE self) { FXList *arg1 = (FXList *) 0 ;
1527
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1528
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXList, 1); FXList_clearShape(arg1); return Qnil; }
1510
1529
  static VALUE _wrap_FXList_getViewportHeight(int argc, VALUE *argv, VALUE self) { FXList *arg1 = (FXList *) 0 ; FXint result;
1511
1530
  VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1512
1531
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXList, 1); result = (FXint)FXList_getViewportHeight(arg1);
@@ -1539,6 +1558,40 @@ static VALUE _wrap_FXList_position(int nargs, VALUE *args, VALUE self) { int arg
1539
1558
  _v = ((TYPE(argv[4]) == T_FIXNUM) || (TYPE(argv[4]) == T_BIGNUM)) ? 1 : 0; } if (_v) {
1540
1559
  return _wrap_FXList_position__SWIG_0(nargs, args, self);} } } } } }
1541
1560
  rb_raise(rb_eArgError, "No matching function for overloaded 'FXList_position'"); return Qnil; }
1561
+ static VALUE _wrap_FXList_enableItem(int argc, VALUE *argv, VALUE self) { FXList *arg1 = (FXList *) 0 ; FXint arg2 ;
1562
+ FXbool result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 1))
1563
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc); SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXList, 1);
1564
+ arg2 = NUM2INT(argv[0]); { if (arg2 < 0 || arg2 >= arg1->getNumItems()) {
1565
+ rb_raise(rb_eIndexError, "list item index out of bounds"); } } result = (FXbool)FXList_enableItem(arg1,arg2);
1566
+ vresult = result ? Qtrue : Qfalse; return vresult; }
1567
+ static VALUE _wrap_FXList_disableItem(int argc, VALUE *argv, VALUE self) { FXList *arg1 = (FXList *) 0 ; FXint arg2 ;
1568
+ FXbool result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 1))
1569
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc); SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXList, 1);
1570
+ arg2 = NUM2INT(argv[0]); { if (arg2 < 0 || arg2 >= arg1->getNumItems()) {
1571
+ rb_raise(rb_eIndexError, "list item index out of bounds"); } } result = (FXbool)FXList_disableItem(arg1,arg2);
1572
+ vresult = result ? Qtrue : Qfalse; return vresult; }
1573
+ static VALUE _wrap_FXList_makeItemVisible__SWIG_1(int argc, VALUE *argv, VALUE self) { FXList *arg1 = (FXList *) 0 ;
1574
+ FXint arg2 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1575
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXList, 1); arg2 = NUM2INT(argv[0]); {
1576
+ if (arg2 < 0 || arg2 >= arg1->getNumItems()) { rb_raise(rb_eIndexError, "list item index out of bounds"); } }
1577
+ FXList_makeItemVisible(arg1,arg2); return Qnil; }
1578
+ static VALUE _wrap_FXList_makeItemVisible(int nargs, VALUE *args, VALUE self) { int argc; VALUE argv[3]; int ii;
1579
+ argc = nargs + 1; argv[0] = self; for (ii = 1; (ii < argc) && (ii < 2); ii++) { argv[ii] = args[ii-1]; } if (argc == 2) {
1580
+ int _v; { void *ptr;
1581
+ _v = (NIL_P(argv[0]) || (TYPE(argv[0]) == T_DATA && SWIG_ConvertPtr(argv[0], &ptr, SWIGTYPE_p_FXList, 0) != -1)) ? 1 : 0; }
1582
+ if (_v) { { void *ptr;
1583
+ _v = (NIL_P(argv[1]) || (TYPE(argv[1]) == T_DATA && SWIG_ConvertPtr(argv[1], &ptr, SWIGTYPE_p_FXListItem, 0) != -1)) ? 1 : 0; }
1584
+ if (_v) { return _wrap_FXList_makeItemVisible__SWIG_0(nargs, args, self);} } } if (argc == 2) { int _v; {
1585
+ void *ptr;
1586
+ _v = (NIL_P(argv[0]) || (TYPE(argv[0]) == T_DATA && SWIG_ConvertPtr(argv[0], &ptr, SWIGTYPE_p_FXList, 0) != -1)) ? 1 : 0; }
1587
+ if (_v) { { _v = ((TYPE(argv[1]) == T_FIXNUM) || (TYPE(argv[1]) == T_BIGNUM)) ? 1 : 0; } if (_v) {
1588
+ return _wrap_FXList_makeItemVisible__SWIG_1(nargs, args, self);} } }
1589
+ rb_raise(rb_eArgError, "No matching function for overloaded 'FXList_makeItemVisible'"); return Qnil; }
1590
+ static VALUE _wrap_FXList_getItemAt(int argc, VALUE *argv, VALUE self) { FXList *arg1 = (FXList *) 0 ; FXint arg2 ; FXint arg3 ;
1591
+ FXint result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
1592
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc); SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXList, 1);
1593
+ arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]); result = (FXint)FXList_getItemAt((FXList const *)arg1,arg2,arg3);
1594
+ vresult = INT2NUM(result); return vresult; }
1542
1595
  static VALUE _wrap_FXList_selectItem(int argc, VALUE *argv, VALUE self) { FXList *arg1 = (FXList *) 0 ; FXint arg2 ;
1543
1596
  FXbool arg3 = (FXbool) 0 ; FXbool result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 2))
1544
1597
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc); SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXList, 1);
@@ -1577,69 +1630,12 @@ static VALUE _wrap_FXList_setCurrentItem(int argc, VALUE *argv, VALUE self) { FX
1577
1630
 
1578
1631
  /* -------- TYPE CONVERSION AND EQUIVALENCE RULES (BEGIN) -------- */
1579
1632
 
1580
- static void *_p_FXPopupTo_p_FXComposite(void *x) {
1581
- return (void *)((FXComposite *) (FXShell *) ((FXPopup *) x));
1582
- }
1583
- static void *_p_FXShutterItemTo_p_FXComposite(void *x) {
1584
- return (void *)((FXComposite *) (FXPacker *)(FXVerticalFrame *) ((FXShutterItem *) x));
1585
- }
1586
- static void *_p_FXScrollAreaTo_p_FXComposite(void *x) {
1587
- return (void *)((FXComposite *) ((FXScrollArea *) x));
1588
- }
1589
- static void *_p_FXStatusBarTo_p_FXComposite(void *x) {
1590
- return (void *)((FXComposite *) (FXPacker *)(FXHorizontalFrame *) ((FXStatusBar *) x));
1591
- }
1592
- static void *_p_FXMainWindowTo_p_FXComposite(void *x) {
1593
- return (void *)((FXComposite *) (FXShell *)(FXTopWindow *) ((FXMainWindow *) x));
1594
- }
1595
- static void *_p_FXTopWindowTo_p_FXComposite(void *x) {
1596
- return (void *)((FXComposite *) (FXShell *) ((FXTopWindow *) x));
1597
- }
1598
- static void *_p_FXRootWindowTo_p_FXComposite(void *x) {
1599
- return (void *)((FXComposite *) ((FXRootWindow *) x));
1600
- }
1601
- static void *_p_FXScrollWindowTo_p_FXComposite(void *x) {
1602
- return (void *)((FXComposite *) (FXScrollArea *) ((FXScrollWindow *) x));
1603
- }
1604
- static void *_p_FXShellTo_p_FXComposite(void *x) {
1605
- return (void *)((FXComposite *) ((FXShell *) x));
1606
- }
1607
- static void *_p_FXGroupBoxTo_p_FXComposite(void *x) {
1608
- return (void *)((FXComposite *) (FXPacker *) ((FXGroupBox *) x));
1609
- }
1610
- static void *_p_FXSplitterTo_p_FXComposite(void *x) {
1611
- return (void *)((FXComposite *) ((FXSplitter *) x));
1612
- }
1613
- static void *_p_FX4SplitterTo_p_FXComposite(void *x) {
1614
- return (void *)((FXComposite *) ((FX4Splitter *) x));
1615
- }
1616
- static void *_p_FXShutterTo_p_FXComposite(void *x) {
1617
- return (void *)((FXComposite *) (FXPacker *)(FXVerticalFrame *) ((FXShutter *) x));
1618
- }
1619
- static void *_p_FXPackerTo_p_FXComposite(void *x) {
1620
- return (void *)((FXComposite *) ((FXPacker *) x));
1621
- }
1622
- static void *_p_FXVerticalFrameTo_p_FXComposite(void *x) {
1623
- return (void *)((FXComposite *) (FXPacker *) ((FXVerticalFrame *) x));
1624
- }
1625
- static void *_p_FXHorizontalFrameTo_p_FXComposite(void *x) {
1626
- return (void *)((FXComposite *) (FXPacker *) ((FXHorizontalFrame *) x));
1627
- }
1628
- static void *_p_FXMatrixTo_p_FXComposite(void *x) {
1629
- return (void *)((FXComposite *) (FXPacker *) ((FXMatrix *) x));
1630
- }
1631
- static void *_p_FXListTo_p_FXComposite(void *x) {
1632
- return (void *)((FXComposite *) (FXScrollArea *) ((FXList *) x));
1633
- }
1634
- static void *_p_FXSpringTo_p_FXComposite(void *x) {
1635
- return (void *)((FXComposite *) (FXPacker *) ((FXSpring *) x));
1636
- }
1637
- static void *_p_FXSwitcherTo_p_FXComposite(void *x) {
1638
- return (void *)((FXComposite *) (FXPacker *) ((FXSwitcher *) x));
1639
- }
1640
1633
  static void *_p_FXFrameTo_p_FXId(void *x) {
1641
1634
  return (void *)((FXId *) (FXDrawable *)(FXWindow *) ((FXFrame *) x));
1642
1635
  }
1636
+ static void *_p_FXDockSiteTo_p_FXId(void *x) {
1637
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXDockSite *) x));
1638
+ }
1643
1639
  static void *_p_FXPopupTo_p_FXId(void *x) {
1644
1640
  return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *) ((FXPopup *) x));
1645
1641
  }
@@ -1667,6 +1663,9 @@ static void *_p_FXWindowTo_p_FXId(void *x) {
1667
1663
  static void *_p_FXCompositeTo_p_FXId(void *x) {
1668
1664
  return (void *)((FXId *) (FXDrawable *)(FXWindow *) ((FXComposite *) x));
1669
1665
  }
1666
+ static void *_p_FXSplashWindowTo_p_FXId(void *x) {
1667
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXSplashWindow *) x));
1668
+ }
1670
1669
  static void *_p_FXScrollWindowTo_p_FXId(void *x) {
1671
1670
  return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXScrollArea *) ((FXScrollWindow *) x));
1672
1671
  }
@@ -1724,72 +1723,6 @@ static void *_p_FXSpringTo_p_FXId(void *x) {
1724
1723
  static void *_p_FXSwitcherTo_p_FXId(void *x) {
1725
1724
  return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXSwitcher *) x));
1726
1725
  }
1727
- static void *_p_FXFrameTo_p_FXWindow(void *x) {
1728
- return (void *)((FXWindow *) ((FXFrame *) x));
1729
- }
1730
- static void *_p_FXPopupTo_p_FXWindow(void *x) {
1731
- return (void *)((FXWindow *) (FXComposite *)(FXShell *) ((FXPopup *) x));
1732
- }
1733
- static void *_p_FXShutterItemTo_p_FXWindow(void *x) {
1734
- return (void *)((FXWindow *) (FXComposite *)(FXPacker *)(FXVerticalFrame *) ((FXShutterItem *) x));
1735
- }
1736
- static void *_p_FXScrollAreaTo_p_FXWindow(void *x) {
1737
- return (void *)((FXWindow *) (FXComposite *) ((FXScrollArea *) x));
1738
- }
1739
- static void *_p_FXStatusBarTo_p_FXWindow(void *x) {
1740
- return (void *)((FXWindow *) (FXComposite *)(FXPacker *)(FXHorizontalFrame *) ((FXStatusBar *) x));
1741
- }
1742
- static void *_p_FXMainWindowTo_p_FXWindow(void *x) {
1743
- return (void *)((FXWindow *) (FXComposite *)(FXShell *)(FXTopWindow *) ((FXMainWindow *) x));
1744
- }
1745
- static void *_p_FXTopWindowTo_p_FXWindow(void *x) {
1746
- return (void *)((FXWindow *) (FXComposite *)(FXShell *) ((FXTopWindow *) x));
1747
- }
1748
- static void *_p_FXRootWindowTo_p_FXWindow(void *x) {
1749
- return (void *)((FXWindow *) (FXComposite *) ((FXRootWindow *) x));
1750
- }
1751
- static void *_p_FXCompositeTo_p_FXWindow(void *x) {
1752
- return (void *)((FXWindow *) ((FXComposite *) x));
1753
- }
1754
- static void *_p_FXScrollWindowTo_p_FXWindow(void *x) {
1755
- return (void *)((FXWindow *) (FXComposite *)(FXScrollArea *) ((FXScrollWindow *) x));
1756
- }
1757
- static void *_p_FXShellTo_p_FXWindow(void *x) {
1758
- return (void *)((FXWindow *) (FXComposite *) ((FXShell *) x));
1759
- }
1760
- static void *_p_FXGroupBoxTo_p_FXWindow(void *x) {
1761
- return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXGroupBox *) x));
1762
- }
1763
- static void *_p_FXSplitterTo_p_FXWindow(void *x) {
1764
- return (void *)((FXWindow *) (FXComposite *) ((FXSplitter *) x));
1765
- }
1766
- static void *_p_FX4SplitterTo_p_FXWindow(void *x) {
1767
- return (void *)((FXWindow *) (FXComposite *) ((FX4Splitter *) x));
1768
- }
1769
- static void *_p_FXPackerTo_p_FXWindow(void *x) {
1770
- return (void *)((FXWindow *) (FXComposite *) ((FXPacker *) x));
1771
- }
1772
- static void *_p_FXVerticalFrameTo_p_FXWindow(void *x) {
1773
- return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXVerticalFrame *) x));
1774
- }
1775
- static void *_p_FXHorizontalFrameTo_p_FXWindow(void *x) {
1776
- return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXHorizontalFrame *) x));
1777
- }
1778
- static void *_p_FXShutterTo_p_FXWindow(void *x) {
1779
- return (void *)((FXWindow *) (FXComposite *)(FXPacker *)(FXVerticalFrame *) ((FXShutter *) x));
1780
- }
1781
- static void *_p_FXMatrixTo_p_FXWindow(void *x) {
1782
- return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXMatrix *) x));
1783
- }
1784
- static void *_p_FXListTo_p_FXWindow(void *x) {
1785
- return (void *)((FXWindow *) (FXComposite *)(FXScrollArea *) ((FXList *) x));
1786
- }
1787
- static void *_p_FXSpringTo_p_FXWindow(void *x) {
1788
- return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXSpring *) x));
1789
- }
1790
- static void *_p_FXSwitcherTo_p_FXWindow(void *x) {
1791
- return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXSwitcher *) x));
1792
- }
1793
1726
  static void *_p_FXSettingsTo_p_FXObject(void *x) {
1794
1727
  return (void *)((FXObject *) (FXDict *) ((FXSettings *) x));
1795
1728
  }
@@ -1802,18 +1735,15 @@ static void *_p_FXCompositeTo_p_FXObject(void *x) {
1802
1735
  static void *_p_FXRegistryTo_p_FXObject(void *x) {
1803
1736
  return (void *)((FXObject *) (FXDict *)(FXSettings *) ((FXRegistry *) x));
1804
1737
  }
1805
- static void *_p_FXIconDictTo_p_FXObject(void *x) {
1806
- return (void *)((FXObject *) (FXDict *) ((FXIconDict *) x));
1807
- }
1808
- static void *_p_FXGroupBoxTo_p_FXObject(void *x) {
1809
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXGroupBox *) x));
1810
- }
1811
1738
  static void *_p_FXShellTo_p_FXObject(void *x) {
1812
1739
  return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *) ((FXShell *) x));
1813
1740
  }
1814
1741
  static void *_p_FXPopupTo_p_FXObject(void *x) {
1815
1742
  return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *) ((FXPopup *) x));
1816
1743
  }
1744
+ static void *_p_FXGroupBoxTo_p_FXObject(void *x) {
1745
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXGroupBox *) x));
1746
+ }
1817
1747
  static void *_p_FXStatusBarTo_p_FXObject(void *x) {
1818
1748
  return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXHorizontalFrame *) ((FXStatusBar *) x));
1819
1749
  }
@@ -1826,6 +1756,9 @@ static void *_p_FXRecentFilesTo_p_FXObject(void *x) {
1826
1756
  static void *_p_FXDocumentTo_p_FXObject(void *x) {
1827
1757
  return (void *)((FXObject *) ((FXDocument *) x));
1828
1758
  }
1759
+ static void *_p_FXSplashWindowTo_p_FXObject(void *x) {
1760
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXSplashWindow *) x));
1761
+ }
1829
1762
  static void *_p_FXMainWindowTo_p_FXObject(void *x) {
1830
1763
  return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXMainWindow *) x));
1831
1764
  }
@@ -1895,6 +1828,9 @@ static void *_p_FXCURCursorTo_p_FXObject(void *x) {
1895
1828
  static void *_p_FXCursorTo_p_FXObject(void *x) {
1896
1829
  return (void *)((FXObject *) (FXId *) ((FXCursor *) x));
1897
1830
  }
1831
+ static void *_p_FXDockSiteTo_p_FXObject(void *x) {
1832
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXDockSite *) x));
1833
+ }
1898
1834
  static void *_p_FXDictTo_p_FXObject(void *x) {
1899
1835
  return (void *)((FXObject *) ((FXDict *) x));
1900
1836
  }
@@ -1922,6 +1858,159 @@ static void *_p_FXVisualTo_p_FXObject(void *x) {
1922
1858
  static void *_p_FXAppTo_p_FXObject(void *x) {
1923
1859
  return (void *)((FXObject *) ((FXApp *) x));
1924
1860
  }
1861
+ static void *_p_FXListTo_p_FXScrollArea(void *x) {
1862
+ return (void *)((FXScrollArea *) ((FXList *) x));
1863
+ }
1864
+ static void *_p_FXScrollWindowTo_p_FXScrollArea(void *x) {
1865
+ return (void *)((FXScrollArea *) ((FXScrollWindow *) x));
1866
+ }
1867
+ static void *_p_FXDockSiteTo_p_FXWindow(void *x) {
1868
+ return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXDockSite *) x));
1869
+ }
1870
+ static void *_p_FXFrameTo_p_FXWindow(void *x) {
1871
+ return (void *)((FXWindow *) ((FXFrame *) x));
1872
+ }
1873
+ static void *_p_FXPopupTo_p_FXWindow(void *x) {
1874
+ return (void *)((FXWindow *) (FXComposite *)(FXShell *) ((FXPopup *) x));
1875
+ }
1876
+ static void *_p_FXShutterItemTo_p_FXWindow(void *x) {
1877
+ return (void *)((FXWindow *) (FXComposite *)(FXPacker *)(FXVerticalFrame *) ((FXShutterItem *) x));
1878
+ }
1879
+ static void *_p_FXScrollAreaTo_p_FXWindow(void *x) {
1880
+ return (void *)((FXWindow *) (FXComposite *) ((FXScrollArea *) x));
1881
+ }
1882
+ static void *_p_FXStatusBarTo_p_FXWindow(void *x) {
1883
+ return (void *)((FXWindow *) (FXComposite *)(FXPacker *)(FXHorizontalFrame *) ((FXStatusBar *) x));
1884
+ }
1885
+ static void *_p_FXSplashWindowTo_p_FXWindow(void *x) {
1886
+ return (void *)((FXWindow *) (FXComposite *)(FXShell *)(FXTopWindow *) ((FXSplashWindow *) x));
1887
+ }
1888
+ static void *_p_FXMainWindowTo_p_FXWindow(void *x) {
1889
+ return (void *)((FXWindow *) (FXComposite *)(FXShell *)(FXTopWindow *) ((FXMainWindow *) x));
1890
+ }
1891
+ static void *_p_FXTopWindowTo_p_FXWindow(void *x) {
1892
+ return (void *)((FXWindow *) (FXComposite *)(FXShell *) ((FXTopWindow *) x));
1893
+ }
1894
+ static void *_p_FXRootWindowTo_p_FXWindow(void *x) {
1895
+ return (void *)((FXWindow *) (FXComposite *) ((FXRootWindow *) x));
1896
+ }
1897
+ static void *_p_FXCompositeTo_p_FXWindow(void *x) {
1898
+ return (void *)((FXWindow *) ((FXComposite *) x));
1899
+ }
1900
+ static void *_p_FXScrollWindowTo_p_FXWindow(void *x) {
1901
+ return (void *)((FXWindow *) (FXComposite *)(FXScrollArea *) ((FXScrollWindow *) x));
1902
+ }
1903
+ static void *_p_FXShellTo_p_FXWindow(void *x) {
1904
+ return (void *)((FXWindow *) (FXComposite *) ((FXShell *) x));
1905
+ }
1906
+ static void *_p_FXGroupBoxTo_p_FXWindow(void *x) {
1907
+ return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXGroupBox *) x));
1908
+ }
1909
+ static void *_p_FXSplitterTo_p_FXWindow(void *x) {
1910
+ return (void *)((FXWindow *) (FXComposite *) ((FXSplitter *) x));
1911
+ }
1912
+ static void *_p_FX4SplitterTo_p_FXWindow(void *x) {
1913
+ return (void *)((FXWindow *) (FXComposite *) ((FX4Splitter *) x));
1914
+ }
1915
+ static void *_p_FXPackerTo_p_FXWindow(void *x) {
1916
+ return (void *)((FXWindow *) (FXComposite *) ((FXPacker *) x));
1917
+ }
1918
+ static void *_p_FXVerticalFrameTo_p_FXWindow(void *x) {
1919
+ return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXVerticalFrame *) x));
1920
+ }
1921
+ static void *_p_FXHorizontalFrameTo_p_FXWindow(void *x) {
1922
+ return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXHorizontalFrame *) x));
1923
+ }
1924
+ static void *_p_FXShutterTo_p_FXWindow(void *x) {
1925
+ return (void *)((FXWindow *) (FXComposite *)(FXPacker *)(FXVerticalFrame *) ((FXShutter *) x));
1926
+ }
1927
+ static void *_p_FXMatrixTo_p_FXWindow(void *x) {
1928
+ return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXMatrix *) x));
1929
+ }
1930
+ static void *_p_FXListTo_p_FXWindow(void *x) {
1931
+ return (void *)((FXWindow *) (FXComposite *)(FXScrollArea *) ((FXList *) x));
1932
+ }
1933
+ static void *_p_FXSpringTo_p_FXWindow(void *x) {
1934
+ return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXSpring *) x));
1935
+ }
1936
+ static void *_p_FXSwitcherTo_p_FXWindow(void *x) {
1937
+ return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXSwitcher *) x));
1938
+ }
1939
+ static void *_p_FXDockSiteTo_p_FXComposite(void *x) {
1940
+ return (void *)((FXComposite *) (FXPacker *) ((FXDockSite *) x));
1941
+ }
1942
+ static void *_p_FXPopupTo_p_FXComposite(void *x) {
1943
+ return (void *)((FXComposite *) (FXShell *) ((FXPopup *) x));
1944
+ }
1945
+ static void *_p_FXShutterItemTo_p_FXComposite(void *x) {
1946
+ return (void *)((FXComposite *) (FXPacker *)(FXVerticalFrame *) ((FXShutterItem *) x));
1947
+ }
1948
+ static void *_p_FXScrollAreaTo_p_FXComposite(void *x) {
1949
+ return (void *)((FXComposite *) ((FXScrollArea *) x));
1950
+ }
1951
+ static void *_p_FXStatusBarTo_p_FXComposite(void *x) {
1952
+ return (void *)((FXComposite *) (FXPacker *)(FXHorizontalFrame *) ((FXStatusBar *) x));
1953
+ }
1954
+ static void *_p_FXSplashWindowTo_p_FXComposite(void *x) {
1955
+ return (void *)((FXComposite *) (FXShell *)(FXTopWindow *) ((FXSplashWindow *) x));
1956
+ }
1957
+ static void *_p_FXMainWindowTo_p_FXComposite(void *x) {
1958
+ return (void *)((FXComposite *) (FXShell *)(FXTopWindow *) ((FXMainWindow *) x));
1959
+ }
1960
+ static void *_p_FXTopWindowTo_p_FXComposite(void *x) {
1961
+ return (void *)((FXComposite *) (FXShell *) ((FXTopWindow *) x));
1962
+ }
1963
+ static void *_p_FXRootWindowTo_p_FXComposite(void *x) {
1964
+ return (void *)((FXComposite *) ((FXRootWindow *) x));
1965
+ }
1966
+ static void *_p_FXScrollWindowTo_p_FXComposite(void *x) {
1967
+ return (void *)((FXComposite *) (FXScrollArea *) ((FXScrollWindow *) x));
1968
+ }
1969
+ static void *_p_FXShellTo_p_FXComposite(void *x) {
1970
+ return (void *)((FXComposite *) ((FXShell *) x));
1971
+ }
1972
+ static void *_p_FXGroupBoxTo_p_FXComposite(void *x) {
1973
+ return (void *)((FXComposite *) (FXPacker *) ((FXGroupBox *) x));
1974
+ }
1975
+ static void *_p_FXSplitterTo_p_FXComposite(void *x) {
1976
+ return (void *)((FXComposite *) ((FXSplitter *) x));
1977
+ }
1978
+ static void *_p_FX4SplitterTo_p_FXComposite(void *x) {
1979
+ return (void *)((FXComposite *) ((FX4Splitter *) x));
1980
+ }
1981
+ static void *_p_FXPackerTo_p_FXComposite(void *x) {
1982
+ return (void *)((FXComposite *) ((FXPacker *) x));
1983
+ }
1984
+ static void *_p_FXVerticalFrameTo_p_FXComposite(void *x) {
1985
+ return (void *)((FXComposite *) (FXPacker *) ((FXVerticalFrame *) x));
1986
+ }
1987
+ static void *_p_FXHorizontalFrameTo_p_FXComposite(void *x) {
1988
+ return (void *)((FXComposite *) (FXPacker *) ((FXHorizontalFrame *) x));
1989
+ }
1990
+ static void *_p_FXShutterTo_p_FXComposite(void *x) {
1991
+ return (void *)((FXComposite *) (FXPacker *)(FXVerticalFrame *) ((FXShutter *) x));
1992
+ }
1993
+ static void *_p_FXMatrixTo_p_FXComposite(void *x) {
1994
+ return (void *)((FXComposite *) (FXPacker *) ((FXMatrix *) x));
1995
+ }
1996
+ static void *_p_FXListTo_p_FXComposite(void *x) {
1997
+ return (void *)((FXComposite *) (FXScrollArea *) ((FXList *) x));
1998
+ }
1999
+ static void *_p_FXSpringTo_p_FXComposite(void *x) {
2000
+ return (void *)((FXComposite *) (FXPacker *) ((FXSpring *) x));
2001
+ }
2002
+ static void *_p_FXSwitcherTo_p_FXComposite(void *x) {
2003
+ return (void *)((FXComposite *) (FXPacker *) ((FXSwitcher *) x));
2004
+ }
2005
+ static void *_p_FXFileStreamTo_p_FXStream(void *x) {
2006
+ return (void *)((FXStream *) ((FXFileStream *) x));
2007
+ }
2008
+ static void *_p_FXMemoryStreamTo_p_FXStream(void *x) {
2009
+ return (void *)((FXStream *) ((FXMemoryStream *) x));
2010
+ }
2011
+ static void *_p_FXDockSiteTo_p_FXDrawable(void *x) {
2012
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXDockSite *) x));
2013
+ }
1925
2014
  static void *_p_FXFrameTo_p_FXDrawable(void *x) {
1926
2015
  return (void *)((FXDrawable *) (FXWindow *) ((FXFrame *) x));
1927
2016
  }
@@ -1937,6 +2026,9 @@ static void *_p_FXScrollAreaTo_p_FXDrawable(void *x) {
1937
2026
  static void *_p_FXStatusBarTo_p_FXDrawable(void *x) {
1938
2027
  return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *)(FXHorizontalFrame *) ((FXStatusBar *) x));
1939
2028
  }
2029
+ static void *_p_FXSplashWindowTo_p_FXDrawable(void *x) {
2030
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXSplashWindow *) x));
2031
+ }
1940
2032
  static void *_p_FXMainWindowTo_p_FXDrawable(void *x) {
1941
2033
  return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXMainWindow *) x));
1942
2034
  }
@@ -1991,42 +2083,36 @@ static void *_p_FXSpringTo_p_FXDrawable(void *x) {
1991
2083
  static void *_p_FXSwitcherTo_p_FXDrawable(void *x) {
1992
2084
  return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXSwitcher *) x));
1993
2085
  }
1994
- static void *_p_FXListTo_p_FXScrollArea(void *x) {
1995
- return (void *)((FXScrollArea *) ((FXList *) x));
1996
- }
1997
- static void *_p_FXScrollWindowTo_p_FXScrollArea(void *x) {
1998
- return (void *)((FXScrollArea *) ((FXScrollWindow *) x));
1999
- }
2000
- static void *_p_FXFileStreamTo_p_FXStream(void *x) {
2001
- return (void *)((FXStream *) ((FXFileStream *) x));
2002
- }
2003
- static void *_p_FXMemoryStreamTo_p_FXStream(void *x) {
2004
- return (void *)((FXStream *) ((FXMemoryStream *) x));
2005
- }
2006
- static swig_type_info _swigt__p_FXId[] = {{"_p_FXId", 0, "FXId *", 0, 0, 0, 0},{"_p_FXFrame", _p_FXFrameTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXPopup", _p_FXPopupTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXShutterItem", _p_FXShutterItemTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXScrollArea", _p_FXScrollAreaTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXStatusBar", _p_FXStatusBarTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXMainWindow", _p_FXMainWindowTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXTopWindow", _p_FXTopWindowTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXRootWindow", _p_FXRootWindowTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXWindow", _p_FXWindowTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXScrollWindow", _p_FXScrollWindowTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXComposite", _p_FXCompositeTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXId", 0, 0, 0, 0, 0, 0},{"_p_FXFont", _p_FXFontTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXShell", _p_FXShellTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXGroupBox", _p_FXGroupBoxTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXList", _p_FXListTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FX4Splitter", _p_FX4SplitterTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXSplitter", _p_FXSplitterTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXGIFCursor", _p_FXGIFCursorTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXCURCursor", _p_FXCURCursorTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXCursor", _p_FXCursorTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXDrawable", _p_FXDrawableTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXShutter", _p_FXShutterTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXPacker", _p_FXPackerTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXVerticalFrame", _p_FXVerticalFrameTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXHorizontalFrame", _p_FXHorizontalFrameTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXMatrix", _p_FXMatrixTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXVisual", _p_FXVisualTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXSpring", _p_FXSpringTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXSwitcher", _p_FXSwitcherTo_p_FXId, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
2007
- static swig_type_info _swigt__p_FXIcon[] = {{"_p_FXIcon", 0, "FXIcon *", 0, 0, 0, 0},{"_p_FXIcon", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
2008
- static swig_type_info _swigt__p_FXComposite[] = {{"_p_FXComposite", 0, "FXComposite *", 0, 0, 0, 0},{"_p_FXPopup", _p_FXPopupTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXShutterItem", _p_FXShutterItemTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXScrollArea", _p_FXScrollAreaTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXStatusBar", _p_FXStatusBarTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXMainWindow", _p_FXMainWindowTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXTopWindow", _p_FXTopWindowTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXRootWindow", _p_FXRootWindowTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXScrollWindow", _p_FXScrollWindowTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXComposite", 0, 0, 0, 0, 0, 0},{"_p_FXShell", _p_FXShellTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXGroupBox", _p_FXGroupBoxTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXSplitter", _p_FXSplitterTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FX4Splitter", _p_FX4SplitterTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXList", _p_FXListTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXShutter", _p_FXShutterTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXPacker", _p_FXPackerTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXVerticalFrame", _p_FXVerticalFrameTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXHorizontalFrame", _p_FXHorizontalFrameTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXMatrix", _p_FXMatrixTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXSpring", _p_FXSpringTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXSwitcher", _p_FXSwitcherTo_p_FXComposite, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
2009
- static swig_type_info _swigt__p_FXWindow[] = {{"_p_FXWindow", 0, "FXWindow *", 0, 0, 0, 0},{"_p_FXFrame", _p_FXFrameTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXPopup", _p_FXPopupTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXShutterItem", _p_FXShutterItemTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXScrollArea", _p_FXScrollAreaTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXStatusBar", _p_FXStatusBarTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXMainWindow", _p_FXMainWindowTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXTopWindow", _p_FXTopWindowTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXRootWindow", _p_FXRootWindowTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXScrollWindow", _p_FXScrollWindowTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXWindow", 0, 0, 0, 0, 0, 0},{"_p_FXComposite", _p_FXCompositeTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXShell", _p_FXShellTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXGroupBox", _p_FXGroupBoxTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXList", _p_FXListTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FX4Splitter", _p_FX4SplitterTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXSplitter", _p_FXSplitterTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXShutter", _p_FXShutterTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXPacker", _p_FXPackerTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXVerticalFrame", _p_FXVerticalFrameTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXHorizontalFrame", _p_FXHorizontalFrameTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXMatrix", _p_FXMatrixTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXSpring", _p_FXSpringTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXSwitcher", _p_FXSwitcherTo_p_FXWindow, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
2010
- static swig_type_info _swigt__p_FXList[] = {{"_p_FXList", 0, "FXList *", 0, 0, 0, 0},{"_p_FXList", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
2011
- static swig_type_info _swigt__p_FXFont[] = {{"_p_FXFont", 0, "FXFont *", 0, 0, 0, 0},{"_p_FXFont", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
2012
- static swig_type_info _swigt__p_FXObject[] = {{"_p_FXObject", 0, "FXObject *", 0, 0, 0, 0},{"_p_FXDict", _p_FXDictTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXSettings", _p_FXSettingsTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXAccelTable", _p_FXAccelTableTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXComposite", _p_FXCompositeTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXRegistry", _p_FXRegistryTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXId", _p_FXIdTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXIconDict", _p_FXIconDictTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXGroupBox", _p_FXGroupBoxTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXShell", _p_FXShellTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXStatusBar", _p_FXStatusBarTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXScrollArea", _p_FXScrollAreaTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXPopup", _p_FXPopupTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXWindow", _p_FXWindowTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXScrollWindow", _p_FXScrollWindowTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXRootWindow", _p_FXRootWindowTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXTopWindow", _p_FXTopWindowTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXMainWindow", _p_FXMainWindowTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXRecentFiles", _p_FXRecentFilesTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXDocument", _p_FXDocumentTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXHorizontalFrame", _p_FXHorizontalFrameTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXVerticalFrame", _p_FXVerticalFrameTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXSplitter", _p_FXSplitterTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FX4Splitter", _p_FX4SplitterTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXObject", 0, 0, 0, 0, 0, 0},{"_p_FXStringDict", _p_FXStringDictTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXPacker", _p_FXPackerTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXFileDict", _p_FXFileDictTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXSwitcher", _p_FXSwitcherTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXDebugTarget", _p_FXDebugTargetTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXDataTarget", _p_FXDataTargetTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXShutter", _p_FXShutterTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXCursor", _p_FXCursorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXCURCursor", _p_FXCURCursorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXGIFCursor", _p_FXGIFCursorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXDrawable", _p_FXDrawableTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXDelegator", _p_FXDelegatorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXApp", _p_FXAppTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXMatrix", _p_FXMatrixTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXShutterItem", _p_FXShutterItemTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXListItem", _p_FXListItemTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXList", _p_FXListTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXFont", _p_FXFontTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXFrame", _p_FXFrameTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXSpring", _p_FXSpringTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXVisual", _p_FXVisualTo_p_FXObject, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
2013
- static swig_type_info _swigt__p_FXDrawable[] = {{"_p_FXDrawable", 0, "FXDrawable *", 0, 0, 0, 0},{"_p_FXFrame", _p_FXFrameTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXPopup", _p_FXPopupTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXShutterItem", _p_FXShutterItemTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXScrollArea", _p_FXScrollAreaTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXStatusBar", _p_FXStatusBarTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXMainWindow", _p_FXMainWindowTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXTopWindow", _p_FXTopWindowTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXRootWindow", _p_FXRootWindowTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXWindow", _p_FXWindowTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXScrollWindow", _p_FXScrollWindowTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXComposite", _p_FXCompositeTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXShell", _p_FXShellTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXGroupBox", _p_FXGroupBoxTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXDrawable", 0, 0, 0, 0, 0, 0},{"_p_FXList", _p_FXListTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FX4Splitter", _p_FX4SplitterTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXSplitter", _p_FXSplitterTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXShutter", _p_FXShutterTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXPacker", _p_FXPackerTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXVerticalFrame", _p_FXVerticalFrameTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXHorizontalFrame", _p_FXHorizontalFrameTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXMatrix", _p_FXMatrixTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXSpring", _p_FXSpringTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXSwitcher", _p_FXSwitcherTo_p_FXDrawable, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
2086
+ static swig_type_info _swigt__p_FXObject[] = {{"_p_FXObject", 0, "FXObject *", 0, 0, 0, 0},{"_p_FXDict", _p_FXDictTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXSettings", _p_FXSettingsTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXAccelTable", _p_FXAccelTableTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXComposite", _p_FXCompositeTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXRegistry", _p_FXRegistryTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXId", _p_FXIdTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXGroupBox", _p_FXGroupBoxTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXShell", _p_FXShellTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXStatusBar", _p_FXStatusBarTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXScrollArea", _p_FXScrollAreaTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXPopup", _p_FXPopupTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXWindow", _p_FXWindowTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXSplashWindow", _p_FXSplashWindowTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXMainWindow", _p_FXMainWindowTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXScrollWindow", _p_FXScrollWindowTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXRootWindow", _p_FXRootWindowTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXTopWindow", _p_FXTopWindowTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXRecentFiles", _p_FXRecentFilesTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXDocument", _p_FXDocumentTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXHorizontalFrame", _p_FXHorizontalFrameTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXVerticalFrame", _p_FXVerticalFrameTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FX4Splitter", _p_FX4SplitterTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXSplitter", _p_FXSplitterTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXObject", 0, 0, 0, 0, 0, 0},{"_p_FXStringDict", _p_FXStringDictTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXPacker", _p_FXPackerTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXFileDict", _p_FXFileDictTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXSwitcher", _p_FXSwitcherTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXDebugTarget", _p_FXDebugTargetTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXDataTarget", _p_FXDataTargetTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXShutter", _p_FXShutterTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXCURCursor", _p_FXCURCursorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXGIFCursor", _p_FXGIFCursorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXCursor", _p_FXCursorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXDrawable", _p_FXDrawableTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXDelegator", _p_FXDelegatorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXDockSite", _p_FXDockSiteTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXApp", _p_FXAppTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXMatrix", _p_FXMatrixTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXShutterItem", _p_FXShutterItemTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXListItem", _p_FXListItemTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXList", _p_FXListTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXFont", _p_FXFontTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXFrame", _p_FXFrameTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXSpring", _p_FXSpringTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXVisual", _p_FXVisualTo_p_FXObject, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
2014
2087
  static swig_type_info _swigt__p_FXScrollArea[] = {{"_p_FXScrollArea", 0, "FXScrollArea *", 0, 0, 0, 0},{"_p_FXList", _p_FXListTo_p_FXScrollArea, 0, 0, 0, 0, 0},{"_p_FXScrollWindow", _p_FXScrollWindowTo_p_FXScrollArea, 0, 0, 0, 0, 0},{"_p_FXScrollArea", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
2015
- static swig_type_info _swigt__p_FXListItem[] = {{"_p_FXListItem", 0, "FXListItem *", 0, 0, 0, 0},{"_p_FXListItem", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
2088
+ static swig_type_info _swigt__p_FXWindow[] = {{"_p_FXWindow", 0, "FXWindow *", 0, 0, 0, 0},{"_p_FXDockSite", _p_FXDockSiteTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXFrame", _p_FXFrameTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXPopup", _p_FXPopupTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXShutterItem", _p_FXShutterItemTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXScrollArea", _p_FXScrollAreaTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXStatusBar", _p_FXStatusBarTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXSplashWindow", _p_FXSplashWindowTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXMainWindow", _p_FXMainWindowTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXTopWindow", _p_FXTopWindowTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXRootWindow", _p_FXRootWindowTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXScrollWindow", _p_FXScrollWindowTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXWindow", 0, 0, 0, 0, 0, 0},{"_p_FXComposite", _p_FXCompositeTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXShell", _p_FXShellTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXGroupBox", _p_FXGroupBoxTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXList", _p_FXListTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXSplitter", _p_FXSplitterTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FX4Splitter", _p_FX4SplitterTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXPacker", _p_FXPackerTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXVerticalFrame", _p_FXVerticalFrameTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXHorizontalFrame", _p_FXHorizontalFrameTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXShutter", _p_FXShutterTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXMatrix", _p_FXMatrixTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXSpring", _p_FXSpringTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXSwitcher", _p_FXSwitcherTo_p_FXWindow, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
2089
+ static swig_type_info _swigt__p_FXComposite[] = {{"_p_FXComposite", 0, "FXComposite *", 0, 0, 0, 0},{"_p_FXDockSite", _p_FXDockSiteTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXPopup", _p_FXPopupTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXShutterItem", _p_FXShutterItemTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXScrollArea", _p_FXScrollAreaTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXStatusBar", _p_FXStatusBarTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXSplashWindow", _p_FXSplashWindowTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXMainWindow", _p_FXMainWindowTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXTopWindow", _p_FXTopWindowTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXRootWindow", _p_FXRootWindowTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXScrollWindow", _p_FXScrollWindowTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXComposite", 0, 0, 0, 0, 0, 0},{"_p_FXShell", _p_FXShellTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXGroupBox", _p_FXGroupBoxTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXList", _p_FXListTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXSplitter", _p_FXSplitterTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FX4Splitter", _p_FX4SplitterTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXPacker", _p_FXPackerTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXVerticalFrame", _p_FXVerticalFrameTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXHorizontalFrame", _p_FXHorizontalFrameTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXShutter", _p_FXShutterTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXMatrix", _p_FXMatrixTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXSpring", _p_FXSpringTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXSwitcher", _p_FXSwitcherTo_p_FXComposite, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
2090
+ static swig_type_info _swigt__p_FXBitmap[] = {{"_p_FXBitmap", 0, "FXBitmap *", 0, 0, 0, 0},{"_p_FXBitmap", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
2091
+ static swig_type_info _swigt__p_FXFont[] = {{"_p_FXFont", 0, "FXFont *", 0, 0, 0, 0},{"_p_FXFont", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
2092
+ static swig_type_info _swigt__p_FXId[] = {{"_p_FXId", 0, "FXId *", 0, 0, 0, 0},{"_p_FXFrame", _p_FXFrameTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXDockSite", _p_FXDockSiteTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXPopup", _p_FXPopupTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXShutterItem", _p_FXShutterItemTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXScrollArea", _p_FXScrollAreaTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXStatusBar", _p_FXStatusBarTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXMainWindow", _p_FXMainWindowTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXTopWindow", _p_FXTopWindowTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXRootWindow", _p_FXRootWindowTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXWindow", _p_FXWindowTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXSplashWindow", _p_FXSplashWindowTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXScrollWindow", _p_FXScrollWindowTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXComposite", _p_FXCompositeTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXId", 0, 0, 0, 0, 0, 0},{"_p_FXFont", _p_FXFontTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXShell", _p_FXShellTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXGroupBox", _p_FXGroupBoxTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXList", _p_FXListTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXSplitter", _p_FXSplitterTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FX4Splitter", _p_FX4SplitterTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXGIFCursor", _p_FXGIFCursorTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXCURCursor", _p_FXCURCursorTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXCursor", _p_FXCursorTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXDrawable", _p_FXDrawableTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXPacker", _p_FXPackerTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXVerticalFrame", _p_FXVerticalFrameTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXHorizontalFrame", _p_FXHorizontalFrameTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXShutter", _p_FXShutterTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXMatrix", _p_FXMatrixTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXVisual", _p_FXVisualTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXSpring", _p_FXSpringTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXSwitcher", _p_FXSwitcherTo_p_FXId, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
2093
+ static swig_type_info _swigt__p_p_FXchar[] = {{"_p_p_FXchar", 0, "char const **|FXchar const **", 0, 0, 0, 0},{"_p_p_FXchar", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
2016
2094
  static swig_type_info _swigt__p_FXStream[] = {{"_p_FXStream", 0, "FXStream *", 0, 0, 0, 0},{"_p_FXFileStream", _p_FXFileStreamTo_p_FXStream, 0, 0, 0, 0, 0},{"_p_FXMemoryStream", _p_FXMemoryStreamTo_p_FXStream, 0, 0, 0, 0, 0},{"_p_FXStream", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
2095
+ static swig_type_info _swigt__p_FXDrawable[] = {{"_p_FXDrawable", 0, "FXDrawable *", 0, 0, 0, 0},{"_p_FXDockSite", _p_FXDockSiteTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXFrame", _p_FXFrameTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXPopup", _p_FXPopupTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXShutterItem", _p_FXShutterItemTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXScrollArea", _p_FXScrollAreaTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXStatusBar", _p_FXStatusBarTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXSplashWindow", _p_FXSplashWindowTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXMainWindow", _p_FXMainWindowTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXTopWindow", _p_FXTopWindowTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXRootWindow", _p_FXRootWindowTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXWindow", _p_FXWindowTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXScrollWindow", _p_FXScrollWindowTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXComposite", _p_FXCompositeTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXShell", _p_FXShellTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXGroupBox", _p_FXGroupBoxTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXDrawable", 0, 0, 0, 0, 0, 0},{"_p_FXList", _p_FXListTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXSplitter", _p_FXSplitterTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FX4Splitter", _p_FX4SplitterTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXPacker", _p_FXPackerTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXVerticalFrame", _p_FXVerticalFrameTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXHorizontalFrame", _p_FXHorizontalFrameTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXShutter", _p_FXShutterTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXMatrix", _p_FXMatrixTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXSpring", _p_FXSpringTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXSwitcher", _p_FXSwitcherTo_p_FXDrawable, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
2096
+ static swig_type_info _swigt__p_FXList[] = {{"_p_FXList", 0, "FXList *", 0, 0, 0, 0},{"_p_FXList", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
2097
+ static swig_type_info _swigt__p_FXIcon[] = {{"_p_FXIcon", 0, "FXIcon *", 0, 0, 0, 0},{"_p_FXIcon", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
2098
+ static swig_type_info _swigt__p_FXRegion[] = {{"_p_FXRegion", 0, "FXRegion *", 0, 0, 0, 0},{"_p_FXRegion", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
2099
+ static swig_type_info _swigt__p_FXListItem[] = {{"_p_FXListItem", 0, "FXListItem *", 0, 0, 0, 0},{"_p_FXListItem", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
2017
2100
 
2018
2101
  static swig_type_info *swig_types_initial[] = {
2019
- _swigt__p_FXId,
2020
- _swigt__p_FXIcon,
2021
- _swigt__p_FXComposite,
2102
+ _swigt__p_FXObject,
2103
+ _swigt__p_FXScrollArea,
2022
2104
  _swigt__p_FXWindow,
2023
- _swigt__p_FXList,
2105
+ _swigt__p_FXComposite,
2106
+ _swigt__p_FXBitmap,
2024
2107
  _swigt__p_FXFont,
2025
- _swigt__p_FXObject,
2108
+ _swigt__p_FXId,
2109
+ _swigt__p_p_FXchar,
2110
+ _swigt__p_FXStream,
2026
2111
  _swigt__p_FXDrawable,
2027
- _swigt__p_FXScrollArea,
2112
+ _swigt__p_FXList,
2113
+ _swigt__p_FXIcon,
2114
+ _swigt__p_FXRegion,
2028
2115
  _swigt__p_FXListItem,
2029
- _swigt__p_FXStream,
2030
2116
  0
2031
2117
  };
2032
2118
 
@@ -2058,6 +2144,11 @@ SWIGEXPORT(void) Init_list(void) {
2058
2144
  SWIG_TypeClientData(SWIGTYPE_p_FXListItem, (void *) &cFXListItem);
2059
2145
  rb_define_alloc_func(cFXListItem.klass, _wrap_FXListItem_allocate);
2060
2146
  rb_define_method(cFXListItem.klass, "initialize", VALUEFUNC(_wrap_new_FXListItem), -1);
2147
+ rb_define_const(cFXListItem.klass,"SELECTED", INT2NUM(FXListItem::SELECTED));
2148
+ rb_define_const(cFXListItem.klass,"FOCUS", INT2NUM(FXListItem::FOCUS));
2149
+ rb_define_const(cFXListItem.klass,"DISABLED", INT2NUM(FXListItem::DISABLED));
2150
+ rb_define_const(cFXListItem.klass,"DRAGGABLE", INT2NUM(FXListItem::DRAGGABLE));
2151
+ rb_define_const(cFXListItem.klass,"ICONOWNED", INT2NUM(FXListItem::ICONOWNED));
2061
2152
  rb_define_method(cFXListItem.klass, "getText", VALUEFUNC(_wrap_FXListItem_getText), -1);
2062
2153
  rb_define_method(cFXListItem.klass, "getIcon", VALUEFUNC(_wrap_FXListItem_getIcon), -1);
2063
2154
  rb_define_method(cFXListItem.klass, "setData", VALUEFUNC(_wrap_FXListItem_setData), -1);
@@ -2066,7 +2157,6 @@ SWIGEXPORT(void) Init_list(void) {
2066
2157
  rb_define_method(cFXListItem.klass, "isSelected", VALUEFUNC(_wrap_FXListItem_isSelected), -1);
2067
2158
  rb_define_method(cFXListItem.klass, "isEnabled", VALUEFUNC(_wrap_FXListItem_isEnabled), -1);
2068
2159
  rb_define_method(cFXListItem.klass, "isDraggable", VALUEFUNC(_wrap_FXListItem_isDraggable), -1);
2069
- rb_define_method(cFXListItem.klass, "isIconOwned", VALUEFUNC(_wrap_FXListItem_isIconOwned), -1);
2070
2160
  rb_define_method(cFXListItem.klass, "save", VALUEFUNC(_wrap_FXListItem_save), -1);
2071
2161
  rb_define_method(cFXListItem.klass, "load", VALUEFUNC(_wrap_FXListItem_load), -1);
2072
2162
  rb_define_method(cFXListItem.klass, "setText", VALUEFUNC(_wrap_FXListItem_setText), -1);
@@ -2075,7 +2165,6 @@ SWIGEXPORT(void) Init_list(void) {
2075
2165
  rb_define_method(cFXListItem.klass, "setSelected", VALUEFUNC(_wrap_FXListItem_setSelected), -1);
2076
2166
  rb_define_method(cFXListItem.klass, "setEnabled", VALUEFUNC(_wrap_FXListItem_setEnabled), -1);
2077
2167
  rb_define_method(cFXListItem.klass, "setDraggable", VALUEFUNC(_wrap_FXListItem_setDraggable), -1);
2078
- rb_define_method(cFXListItem.klass, "setIconOwned", VALUEFUNC(_wrap_FXListItem_setIconOwned), -1);
2079
2168
  rb_define_method(cFXListItem.klass, "getWidth", VALUEFUNC(_wrap_FXListItem_getWidth), -1);
2080
2169
  rb_define_method(cFXListItem.klass, "getHeight", VALUEFUNC(_wrap_FXListItem_getHeight), -1);
2081
2170
  rb_define_method(cFXListItem.klass, "create", VALUEFUNC(_wrap_FXListItem_create), -1);
@@ -2124,6 +2213,7 @@ SWIGEXPORT(void) Init_list(void) {
2124
2213
  rb_define_method(cFXList.klass, "setNumVisible", VALUEFUNC(_wrap_FXList_setNumVisible), -1);
2125
2214
  rb_define_method(cFXList.klass, "getItem", VALUEFUNC(_wrap_FXList_getItem), -1);
2126
2215
  rb_define_method(cFXList.klass, "setItem", VALUEFUNC(_wrap_FXList_setItem), -1);
2216
+ rb_define_method(cFXList.klass, "fillItems", VALUEFUNC(_wrap_FXList_fillItems), -1);
2127
2217
  rb_define_method(cFXList.klass, "insertItem", VALUEFUNC(_wrap_FXList_insertItem), -1);
2128
2218
  rb_define_method(cFXList.klass, "appendItem", VALUEFUNC(_wrap_FXList_appendItem), -1);
2129
2219
  rb_define_alias(cFXList.klass, "<<", "appendItem");
@@ -2133,10 +2223,9 @@ SWIGEXPORT(void) Init_list(void) {
2133
2223
  rb_define_method(cFXList.klass, "clearItems", VALUEFUNC(_wrap_FXList_clearItems), -1);
2134
2224
  rb_define_method(cFXList.klass, "getItemWidth", VALUEFUNC(_wrap_FXList_getItemWidth), -1);
2135
2225
  rb_define_method(cFXList.klass, "getItemHeight", VALUEFUNC(_wrap_FXList_getItemHeight), -1);
2136
- rb_define_method(cFXList.klass, "getItemAt", VALUEFUNC(_wrap_FXList_getItemAt), -1);
2137
2226
  rb_define_method(cFXList.klass, "hitItem", VALUEFUNC(_wrap_FXList_hitItem), -1);
2138
2227
  rb_define_method(cFXList.klass, "findItem", VALUEFUNC(_wrap_FXList_findItem), -1);
2139
- rb_define_method(cFXList.klass, "makeItemVisible", VALUEFUNC(_wrap_FXList_makeItemVisible), -1);
2228
+ rb_define_method(cFXList.klass, "findItemByData", VALUEFUNC(_wrap_FXList_findItemByData), -1);
2140
2229
  rb_define_method(cFXList.klass, "setItemText", VALUEFUNC(_wrap_FXList_setItemText), -1);
2141
2230
  rb_define_method(cFXList.klass, "getItemText", VALUEFUNC(_wrap_FXList_getItemText), -1);
2142
2231
  rb_define_method(cFXList.klass, "setItemIcon", VALUEFUNC(_wrap_FXList_setItemIcon), -1);
@@ -2148,8 +2237,6 @@ SWIGEXPORT(void) Init_list(void) {
2148
2237
  rb_define_method(cFXList.klass, "isItemVisible", VALUEFUNC(_wrap_FXList_isItemVisible), -1);
2149
2238
  rb_define_method(cFXList.klass, "isItemEnabled", VALUEFUNC(_wrap_FXList_isItemEnabled), -1);
2150
2239
  rb_define_method(cFXList.klass, "updateItem", VALUEFUNC(_wrap_FXList_updateItem), -1);
2151
- rb_define_method(cFXList.klass, "enableItem", VALUEFUNC(_wrap_FXList_enableItem), -1);
2152
- rb_define_method(cFXList.klass, "disableItem", VALUEFUNC(_wrap_FXList_disableItem), -1);
2153
2240
  rb_define_method(cFXList.klass, "getCurrentItem", VALUEFUNC(_wrap_FXList_getCurrentItem), -1);
2154
2241
  rb_define_method(cFXList.klass, "setAnchorItem", VALUEFUNC(_wrap_FXList_setAnchorItem), -1);
2155
2242
  rb_define_method(cFXList.klass, "getAnchorItem", VALUEFUNC(_wrap_FXList_getAnchorItem), -1);
@@ -2180,6 +2267,7 @@ SWIGEXPORT(void) Init_list(void) {
2180
2267
  rb_define_method(cFXList.klass, "canFocus", VALUEFUNC(_wrap_FXList_canFocus), -1);
2181
2268
  rb_define_method(cFXList.klass, "setFocus", VALUEFUNC(_wrap_FXList_setFocus), -1);
2182
2269
  rb_define_method(cFXList.klass, "killFocus", VALUEFUNC(_wrap_FXList_killFocus), -1);
2270
+ rb_define_method(cFXList.klass, "changeFocus", VALUEFUNC(_wrap_FXList_changeFocus), -1);
2183
2271
  rb_define_method(cFXList.klass, "setDefault", VALUEFUNC(_wrap_FXList_setDefault), -1);
2184
2272
  rb_define_method(cFXList.klass, "enable", VALUEFUNC(_wrap_FXList_enable), -1);
2185
2273
  rb_define_method(cFXList.klass, "disable", VALUEFUNC(_wrap_FXList_disable), -1);
@@ -2195,11 +2283,17 @@ SWIGEXPORT(void) Init_list(void) {
2195
2283
  rb_define_method(cFXList.klass, "contains", VALUEFUNC(_wrap_FXList_contains), -1);
2196
2284
  rb_define_method(cFXList.klass, "doesSaveUnder", VALUEFUNC(_wrap_FXList_doesSaveUnder), -1);
2197
2285
  rb_define_method(cFXList.klass, "setBackColor", VALUEFUNC(_wrap_FXList_setBackColor), -1);
2286
+ rb_define_method(cFXList.klass, "setShape", VALUEFUNC(_wrap_FXList_setShape), -1);
2287
+ rb_define_method(cFXList.klass, "clearShape", VALUEFUNC(_wrap_FXList_clearShape), -1);
2198
2288
  rb_define_method(cFXList.klass, "getViewportHeight", VALUEFUNC(_wrap_FXList_getViewportHeight), -1);
2199
2289
  rb_define_method(cFXList.klass, "getViewportWidth", VALUEFUNC(_wrap_FXList_getViewportWidth), -1);
2200
2290
  rb_define_method(cFXList.klass, "getContentHeight", VALUEFUNC(_wrap_FXList_getContentHeight), -1);
2201
2291
  rb_define_method(cFXList.klass, "getContentWidth", VALUEFUNC(_wrap_FXList_getContentWidth), -1);
2202
2292
  rb_define_method(cFXList.klass, "position", VALUEFUNC(_wrap_FXList_position), -1);
2293
+ rb_define_method(cFXList.klass, "enableItem", VALUEFUNC(_wrap_FXList_enableItem), -1);
2294
+ rb_define_method(cFXList.klass, "disableItem", VALUEFUNC(_wrap_FXList_disableItem), -1);
2295
+ rb_define_method(cFXList.klass, "makeItemVisible", VALUEFUNC(_wrap_FXList_makeItemVisible), -1);
2296
+ rb_define_method(cFXList.klass, "getItemAt", VALUEFUNC(_wrap_FXList_getItemAt), -1);
2203
2297
  rb_define_method(cFXList.klass, "selectItem", VALUEFUNC(_wrap_FXList_selectItem), -1);
2204
2298
  rb_define_method(cFXList.klass, "deselectItem", VALUEFUNC(_wrap_FXList_deselectItem), -1);
2205
2299
  rb_define_method(cFXList.klass, "toggleItem", VALUEFUNC(_wrap_FXList_toggleItem), -1);