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
@@ -521,17 +521,19 @@ SWIGIMPORT(void) SWIG_Ruby_ConvertPacked(VALUE obj, void *ptr, int sz, swig_ty
521
521
  #define SWIGTYPE_p_FXScrollArea swig_types[2]
522
522
  #define SWIGTYPE_p_FXWindow swig_types[3]
523
523
  #define SWIGTYPE_p_FXComposite swig_types[4]
524
- #define SWIGTYPE_p_FXId swig_types[5]
525
- #define SWIGTYPE_p_FXFont swig_types[6]
526
- #define SWIGTYPE_p_FXTable swig_types[7]
527
- #define SWIGTYPE_p_FXStream swig_types[8]
528
- #define SWIGTYPE_p_FXDrawable swig_types[9]
529
- #define SWIGTYPE_p_FXTableRange swig_types[10]
530
- #define SWIGTYPE_p_FXIcon swig_types[11]
531
- #define SWIGTYPE_p_FXHeader swig_types[12]
532
- #define SWIGTYPE_p_FXTableItem swig_types[13]
533
- #define SWIGTYPE_p_FXTablePos swig_types[14]
534
- static swig_type_info *swig_types[16];
524
+ #define SWIGTYPE_p_FXBitmap swig_types[5]
525
+ #define SWIGTYPE_p_FXId swig_types[6]
526
+ #define SWIGTYPE_p_FXFont swig_types[7]
527
+ #define SWIGTYPE_p_FXTable swig_types[8]
528
+ #define SWIGTYPE_p_FXStream swig_types[9]
529
+ #define SWIGTYPE_p_FXDrawable swig_types[10]
530
+ #define SWIGTYPE_p_FXTableRange swig_types[11]
531
+ #define SWIGTYPE_p_FXIcon swig_types[12]
532
+ #define SWIGTYPE_p_FXHeader swig_types[13]
533
+ #define SWIGTYPE_p_FXTableItem swig_types[14]
534
+ #define SWIGTYPE_p_FXRegion swig_types[15]
535
+ #define SWIGTYPE_p_FXTablePos swig_types[16]
536
+ static swig_type_info *swig_types[18];
535
537
 
536
538
  /* -------- TYPES TABLE (END) -------- */
537
539
 
@@ -779,19 +781,6 @@ static VALUE _wrap_new_FXTableItem(int argc, VALUE *argv, VALUE self) { FXString
779
781
  SWIG_ConvertPtr(argv[2], (void **) &arg3, 0, 1); } {
780
782
  result = (FXTableItem *)new_FXTableItem((FXString const &)*arg1,arg2,arg3);
781
783
  DATA_PTR(self) = result; FXRbRegisterRubyObj(self, result); if(rb_block_given_p()){ rb_yield(self); } } return self; }
782
- static VALUE _wrap_FXTableItem_getText(int argc, VALUE *argv, VALUE self) { FXTableItem *arg1 = (FXTableItem *) 0 ;
783
- FXString *result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
784
- rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
785
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTableItem, 1); {
786
- FXString const &_result_ref = ((FXTableItem const *)arg1)->getText(); result = (FXString *) &_result_ref; }
787
- vresult = rb_str_new2(result->text()); return vresult; }
788
- static VALUE _wrap_FXTableItem_getIcon(int argc, VALUE *argv, VALUE self) { FXTableItem *arg1 = (FXTableItem *) 0 ;
789
- FXIcon *result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
790
- rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
791
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTableItem, 1);
792
- result = (FXIcon *)((FXTableItem const *)arg1)->getIcon(); {
793
- swig_type_info *ty = SWIG_TypeDynamicCast(SWIGTYPE_p_FXIcon, (void **) &result); vresult = FXRbGetRubyObj(result, ty); }
794
- return vresult; }
795
784
  static VALUE _wrap_FXTableItem_setData(int argc, VALUE *argv, VALUE self) { FXTableItem *arg1 = (FXTableItem *) 0 ; VALUE arg2 ;
796
785
  if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
797
786
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTableItem, 1); arg2 = argv[0]; FXTableItem_setData(arg1,arg2);
@@ -821,47 +810,26 @@ static VALUE _wrap_FXTableItem_isDraggable(int argc, VALUE *argv, VALUE self) {
821
810
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
822
811
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTableItem, 1);
823
812
  result = (FXbool)((FXTableItem const *)arg1)->isDraggable(); vresult = result ? Qtrue : Qfalse; return vresult; }
824
- static VALUE _wrap_FXTableItem_setJustify(int argc, VALUE *argv, VALUE self) { FXTableItem *arg1 = (FXTableItem *) 0 ;
825
- FXuint arg2 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
826
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTableItem, 1); arg2 = NUM2UINT(argv[0]); (arg1)->setJustify(arg2);
827
- return Qnil; }
828
813
  static VALUE _wrap_FXTableItem_getJustify(int argc, VALUE *argv, VALUE self) { FXTableItem *arg1 = (FXTableItem *) 0 ;
829
814
  FXuint result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
830
815
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
831
816
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTableItem, 1);
832
817
  result = (FXuint)((FXTableItem const *)arg1)->getJustify(); vresult = UINT2NUM(result); return vresult; }
833
- static VALUE _wrap_FXTableItem_setIconPosition(int argc, VALUE *argv, VALUE self) { FXTableItem *arg1 = (FXTableItem *) 0 ;
834
- FXuint arg2 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
835
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTableItem, 1); arg2 = NUM2UINT(argv[0]); (arg1)->setIconPosition(arg2);
836
- return Qnil; }
837
818
  static VALUE _wrap_FXTableItem_getIconPosition(int argc, VALUE *argv, VALUE self) { FXTableItem *arg1 = (FXTableItem *) 0 ;
838
819
  FXuint result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
839
820
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
840
821
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTableItem, 1);
841
822
  result = (FXuint)((FXTableItem const *)arg1)->getIconPosition(); vresult = UINT2NUM(result); return vresult; }
842
- static VALUE _wrap_FXTableItem_setBorders(int argc, VALUE *argv, VALUE self) { FXTableItem *arg1 = (FXTableItem *) 0 ;
843
- FXuint arg2 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
844
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTableItem, 1); arg2 = NUM2UINT(argv[0]); (arg1)->setBorders(arg2);
845
- return Qnil; }
846
823
  static VALUE _wrap_FXTableItem_getBorders(int argc, VALUE *argv, VALUE self) { FXTableItem *arg1 = (FXTableItem *) 0 ;
847
824
  FXuint result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
848
825
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
849
826
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTableItem, 1);
850
827
  result = (FXuint)((FXTableItem const *)arg1)->getBorders(); vresult = UINT2NUM(result); return vresult; }
851
- static VALUE _wrap_FXTableItem_setStipple(int argc, VALUE *argv, VALUE self) { FXTableItem *arg1 = (FXTableItem *) 0 ;
852
- int arg2 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
853
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTableItem, 1); arg2 = (int) NUM2INT(argv[0]);
854
- (arg1)->setStipple((FXStipplePattern )arg2); return Qnil; }
855
828
  static VALUE _wrap_FXTableItem_getStipple(int argc, VALUE *argv, VALUE self) { FXTableItem *arg1 = (FXTableItem *) 0 ;
856
829
  int result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
857
830
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
858
831
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTableItem, 1); result = (int)((FXTableItem const *)arg1)->getStipple();
859
832
  vresult = INT2NUM(result); return vresult; }
860
- static VALUE _wrap_FXTableItem_isIconOwned(int argc, VALUE *argv, VALUE self) { FXTableItem *arg1 = (FXTableItem *) 0 ;
861
- FXuint result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
862
- rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
863
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTableItem, 1);
864
- result = (FXuint)((FXTableItem const *)arg1)->isIconOwned(); vresult = UINT2NUM(result); return vresult; }
865
833
  static void
866
834
  free_FXTableItem(FXTableItem *arg1) {
867
835
  delete arg1;
@@ -921,10 +889,24 @@ static VALUE _wrap_FXTableItem_setText(int argc, VALUE *argv, VALUE self) { FXTa
921
889
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
922
890
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTableItem, 1); p2 = to_FXString(argv[0]); arg2 = &p2;
923
891
  FXTableItem_setText(arg1,(FXString const &)*arg2); return Qnil; }
892
+ static VALUE _wrap_FXTableItem_getText(int argc, VALUE *argv, VALUE self) { FXTableItem *arg1 = (FXTableItem *) 0 ;
893
+ FXString result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
894
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
895
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTableItem, 1); result = FXTableItem_getText((FXTableItem const *)arg1);
896
+ vresult = rb_str_new2((&result)->text()); return vresult; }
924
897
  static VALUE _wrap_FXTableItem_setIcon(int argc, VALUE *argv, VALUE self) { FXTableItem *arg1 = (FXTableItem *) 0 ;
925
- FXIcon *arg2 = (FXIcon *) 0 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
898
+ FXIcon *arg2 = (FXIcon *) 0 ; FXbool arg3 = (FXbool) 0 ; if ((argc < 1) || (argc > 2))
899
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
900
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTableItem, 1);
901
+ SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXIcon, 1); if (argc > 1) { arg3 = to_FXbool(argv[1]); }
902
+ FXTableItem_setIcon(arg1,arg2,arg3); return Qnil; }
903
+ static VALUE _wrap_FXTableItem_getIcon(int argc, VALUE *argv, VALUE self) { FXTableItem *arg1 = (FXTableItem *) 0 ;
904
+ FXIcon *result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
905
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
926
906
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTableItem, 1);
927
- SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXIcon, 1); FXTableItem_setIcon(arg1,arg2); return Qnil; }
907
+ result = (FXIcon *)FXTableItem_getIcon((FXTableItem const *)arg1); {
908
+ swig_type_info *ty = SWIG_TypeDynamicCast(SWIGTYPE_p_FXIcon, (void **) &result); vresult = FXRbGetRubyObj(result, ty); }
909
+ return vresult; }
928
910
  static VALUE _wrap_FXTableItem_setFocus(int argc, VALUE *argv, VALUE self) { FXTableItem *arg1 = (FXTableItem *) 0 ;
929
911
  FXbool arg2 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
930
912
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTableItem, 1); arg2 = to_FXbool(argv[0]);
@@ -941,11 +923,35 @@ static VALUE _wrap_FXTableItem_setDraggable(int argc, VALUE *argv, VALUE self) {
941
923
  FXbool arg2 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
942
924
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTableItem, 1); arg2 = to_FXbool(argv[0]);
943
925
  FXTableItem_setDraggable(arg1,arg2); return Qnil; }
944
- static VALUE _wrap_FXTableItem_setIconOwned(int argc, VALUE *argv, VALUE self) { FXTableItem *arg1 = (FXTableItem *) 0 ;
945
- FXuint arg2 = (FXuint) 0x00000040 ; if ((argc < 0) || (argc > 1))
926
+ static VALUE _wrap_FXTableItem_setJustify(int argc, VALUE *argv, VALUE self) { FXTableItem *arg1 = (FXTableItem *) 0 ;
927
+ FXuint arg2 = (FXuint) FXTableItem::RIGHT|FXTableItem::CENTER_Y ; if ((argc < 0) || (argc > 1))
946
928
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
947
929
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTableItem, 1); if (argc > 0) { arg2 = NUM2UINT(argv[0]); }
948
- FXTableItem_setIconOwned(arg1,arg2); return Qnil; }
930
+ FXTableItem_setJustify(arg1,arg2); return Qnil; }
931
+ static VALUE _wrap_FXTableItem_setIconPosition(int argc, VALUE *argv, VALUE self) { FXTableItem *arg1 = (FXTableItem *) 0 ;
932
+ FXuint arg2 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
933
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTableItem, 1); arg2 = NUM2UINT(argv[0]);
934
+ FXTableItem_setIconPosition(arg1,arg2); return Qnil; }
935
+ static VALUE _wrap_FXTableItem_setBorders(int argc, VALUE *argv, VALUE self) { FXTableItem *arg1 = (FXTableItem *) 0 ;
936
+ FXuint arg2 = (FXuint) 0 ; if ((argc < 0) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
937
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTableItem, 1); if (argc > 0) { arg2 = NUM2UINT(argv[0]); }
938
+ FXTableItem_setBorders(arg1,arg2); return Qnil; }
939
+ static VALUE _wrap_FXTableItem_setStipple(int argc, VALUE *argv, VALUE self) { FXTableItem *arg1 = (FXTableItem *) 0 ;
940
+ int arg2 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
941
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTableItem, 1); arg2 = (int) NUM2INT(argv[0]);
942
+ FXTableItem_setStipple(arg1,(FXStipplePattern )arg2); return Qnil; }
943
+ static VALUE _wrap_FXTableItem_getControlFor(int argc, VALUE *argv, VALUE self) { FXTableItem *arg1 = (FXTableItem *) 0 ;
944
+ FXTable *arg2 = (FXTable *) 0 ; FXWindow *result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 1))
945
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
946
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTableItem, 1);
947
+ SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXTable, 1); result = (FXWindow *)FXTableItem_getControlFor(arg1,arg2);
948
+ { swig_type_info *ty = SWIG_TypeDynamicCast(SWIGTYPE_p_FXWindow, (void **) &result); vresult = FXRbGetRubyObj(result, ty); }
949
+ return vresult; }
950
+ static VALUE _wrap_FXTableItem_setFromControl(int argc, VALUE *argv, VALUE self) { FXTableItem *arg1 = (FXTableItem *) 0 ;
951
+ FXWindow *arg2 = (FXWindow *) 0 ; if ((argc < 1) || (argc > 1))
952
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
953
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTableItem, 1);
954
+ SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXWindow, 1); FXTableItem_setFromControl(arg1,arg2); return Qnil; }
949
955
  static VALUE _wrap_FXTableItem_getWidth(int argc, VALUE *argv, VALUE self) { FXTableItem *arg1 = (FXTableItem *) 0 ;
950
956
  FXTable *arg2 = (FXTable *) 0 ; FXint result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 1))
951
957
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
@@ -1104,6 +1110,18 @@ static VALUE _wrap_FXTable_onTripleClicked(int argc, VALUE *argv, VALUE self) {
1104
1110
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTable, 1);
1105
1111
  SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXObject, 1); arg3 = NUM2UINT(argv[1]); arg4 = to_FXEvent(argv[2]);
1106
1112
  result = (long)(arg1)->onTripleClicked(arg2,arg3,arg4); vresult = INT2NUM(result); return vresult; }
1113
+ static VALUE _wrap_FXTable_onCmdToggleEditable(int argc, VALUE *argv, VALUE self) { FXTable *arg1 = (FXTable *) 0 ;
1114
+ FXObject *arg2 = (FXObject *) 0 ; FXSelector arg3 ; void *arg4 = (void *) 0 ; long result; VALUE vresult = Qnil;
1115
+ if ((argc < 3) || (argc > 3)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 3)",argc);
1116
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTable, 1);
1117
+ SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXObject, 1); arg3 = NUM2UINT(argv[1]); arg4 = 0;
1118
+ result = (long)(arg1)->onCmdToggleEditable(arg2,arg3,arg4); vresult = INT2NUM(result); return vresult; }
1119
+ static VALUE _wrap_FXTable_onUpdToggleEditable(int argc, VALUE *argv, VALUE self) { FXTable *arg1 = (FXTable *) 0 ;
1120
+ FXObject *arg2 = (FXObject *) 0 ; FXSelector arg3 ; void *arg4 = (void *) 0 ; long result; VALUE vresult = Qnil;
1121
+ if ((argc < 3) || (argc > 3)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 3)",argc);
1122
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTable, 1);
1123
+ SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXObject, 1); arg3 = NUM2UINT(argv[1]); arg4 = 0;
1124
+ result = (long)(arg1)->onUpdToggleEditable(arg2,arg3,arg4); vresult = INT2NUM(result); return vresult; }
1107
1125
  static VALUE _wrap_FXTable_onCmdHorzGrid(int argc, VALUE *argv, VALUE self) { FXTable *arg1 = (FXTable *) 0 ;
1108
1126
  FXObject *arg2 = (FXObject *) 0 ; FXSelector arg3 ; void *arg4 = (void *) 0 ; long result; VALUE vresult = Qnil;
1109
1127
  if ((argc < 3) || (argc > 3)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 3)",argc);
@@ -1158,12 +1176,24 @@ static VALUE _wrap_FXTable_onCmdInsertColumn(int argc, VALUE *argv, VALUE self)
1158
1176
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTable, 1);
1159
1177
  SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXObject, 1); arg3 = NUM2UINT(argv[1]); arg4 = 0;
1160
1178
  result = (long)(arg1)->onCmdInsertColumn(arg2,arg3,arg4); vresult = INT2NUM(result); return vresult; }
1179
+ static VALUE _wrap_FXTable_onUpdInsertColumn(int argc, VALUE *argv, VALUE self) { FXTable *arg1 = (FXTable *) 0 ;
1180
+ FXObject *arg2 = (FXObject *) 0 ; FXSelector arg3 ; void *arg4 = (void *) 0 ; long result; VALUE vresult = Qnil;
1181
+ if ((argc < 3) || (argc > 3)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 3)",argc);
1182
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTable, 1);
1183
+ SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXObject, 1); arg3 = NUM2UINT(argv[1]); arg4 = 0;
1184
+ result = (long)(arg1)->onUpdInsertColumn(arg2,arg3,arg4); vresult = INT2NUM(result); return vresult; }
1161
1185
  static VALUE _wrap_FXTable_onCmdInsertRow(int argc, VALUE *argv, VALUE self) { FXTable *arg1 = (FXTable *) 0 ;
1162
1186
  FXObject *arg2 = (FXObject *) 0 ; FXSelector arg3 ; void *arg4 = (void *) 0 ; long result; VALUE vresult = Qnil;
1163
1187
  if ((argc < 3) || (argc > 3)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 3)",argc);
1164
1188
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTable, 1);
1165
1189
  SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXObject, 1); arg3 = NUM2UINT(argv[1]); arg4 = 0;
1166
1190
  result = (long)(arg1)->onCmdInsertRow(arg2,arg3,arg4); vresult = INT2NUM(result); return vresult; }
1191
+ static VALUE _wrap_FXTable_onUpdInsertRow(int argc, VALUE *argv, VALUE self) { FXTable *arg1 = (FXTable *) 0 ;
1192
+ FXObject *arg2 = (FXObject *) 0 ; FXSelector arg3 ; void *arg4 = (void *) 0 ; long result; VALUE vresult = Qnil;
1193
+ if ((argc < 3) || (argc > 3)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 3)",argc);
1194
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTable, 1);
1195
+ SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXObject, 1); arg3 = NUM2UINT(argv[1]); arg4 = 0;
1196
+ result = (long)(arg1)->onUpdInsertRow(arg2,arg3,arg4); vresult = INT2NUM(result); return vresult; }
1167
1197
  static VALUE _wrap_FXTable_onCmdMoveRight(int argc, VALUE *argv, VALUE self) { FXTable *arg1 = (FXTable *) 0 ;
1168
1198
  FXObject *arg2 = (FXObject *) 0 ; FXSelector arg3 ; void *arg4 = (void *) 0 ; long result; VALUE vresult = Qnil;
1169
1199
  if ((argc < 3) || (argc > 3)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 3)",argc);
@@ -1282,37 +1312,62 @@ static VALUE _wrap_FXTable_onCmdCutSel(int argc, VALUE *argv, VALUE self) { FXTa
1282
1312
  FXObject *arg2 = (FXObject *) 0 ; FXSelector arg3 ; void *arg4 = (void *) 0 ; long result; VALUE vresult = Qnil;
1283
1313
  if ((argc < 3) || (argc > 3)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 3)",argc);
1284
1314
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTable, 1);
1285
- SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXObject, 1); arg3 = NUM2UINT(argv[1]);
1286
- SWIG_ConvertPtr(argv[2], (void **) &arg4, 0, 1); result = (long)(arg1)->onCmdCutSel(arg2,arg3,arg4);
1287
- vresult = INT2NUM(result); return vresult; }
1315
+ SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXObject, 1); arg3 = NUM2UINT(argv[1]); arg4 = 0;
1316
+ result = (long)(arg1)->onCmdCutSel(arg2,arg3,arg4); vresult = INT2NUM(result); return vresult; }
1288
1317
  static VALUE _wrap_FXTable_onCmdCopySel(int argc, VALUE *argv, VALUE self) { FXTable *arg1 = (FXTable *) 0 ;
1289
1318
  FXObject *arg2 = (FXObject *) 0 ; FXSelector arg3 ; void *arg4 = (void *) 0 ; long result; VALUE vresult = Qnil;
1290
1319
  if ((argc < 3) || (argc > 3)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 3)",argc);
1291
1320
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTable, 1);
1292
- SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXObject, 1); arg3 = NUM2UINT(argv[1]);
1293
- SWIG_ConvertPtr(argv[2], (void **) &arg4, 0, 1); result = (long)(arg1)->onCmdCopySel(arg2,arg3,arg4);
1294
- vresult = INT2NUM(result); return vresult; }
1321
+ SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXObject, 1); arg3 = NUM2UINT(argv[1]); arg4 = 0;
1322
+ result = (long)(arg1)->onCmdCopySel(arg2,arg3,arg4); vresult = INT2NUM(result); return vresult; }
1295
1323
  static VALUE _wrap_FXTable_onCmdDeleteSel(int argc, VALUE *argv, VALUE self) { FXTable *arg1 = (FXTable *) 0 ;
1296
1324
  FXObject *arg2 = (FXObject *) 0 ; FXSelector arg3 ; void *arg4 = (void *) 0 ; long result; VALUE vresult = Qnil;
1297
1325
  if ((argc < 3) || (argc > 3)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 3)",argc);
1298
1326
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTable, 1);
1299
- SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXObject, 1); arg3 = NUM2UINT(argv[1]);
1300
- SWIG_ConvertPtr(argv[2], (void **) &arg4, 0, 1); result = (long)(arg1)->onCmdDeleteSel(arg2,arg3,arg4);
1301
- vresult = INT2NUM(result); return vresult; }
1327
+ SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXObject, 1); arg3 = NUM2UINT(argv[1]); arg4 = 0;
1328
+ result = (long)(arg1)->onCmdDeleteSel(arg2,arg3,arg4); vresult = INT2NUM(result); return vresult; }
1302
1329
  static VALUE _wrap_FXTable_onCmdPasteSel(int argc, VALUE *argv, VALUE self) { FXTable *arg1 = (FXTable *) 0 ;
1303
1330
  FXObject *arg2 = (FXObject *) 0 ; FXSelector arg3 ; void *arg4 = (void *) 0 ; long result; VALUE vresult = Qnil;
1304
1331
  if ((argc < 3) || (argc > 3)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 3)",argc);
1305
1332
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTable, 1);
1306
- SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXObject, 1); arg3 = NUM2UINT(argv[1]);
1307
- SWIG_ConvertPtr(argv[2], (void **) &arg4, 0, 1); result = (long)(arg1)->onCmdPasteSel(arg2,arg3,arg4);
1308
- vresult = INT2NUM(result); return vresult; }
1333
+ SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXObject, 1); arg3 = NUM2UINT(argv[1]); arg4 = 0;
1334
+ result = (long)(arg1)->onCmdPasteSel(arg2,arg3,arg4); vresult = INT2NUM(result); return vresult; }
1309
1335
  static VALUE _wrap_FXTable_onUpdHaveSelection(int argc, VALUE *argv, VALUE self) { FXTable *arg1 = (FXTable *) 0 ;
1310
1336
  FXObject *arg2 = (FXObject *) 0 ; FXSelector arg3 ; void *arg4 = (void *) 0 ; long result; VALUE vresult = Qnil;
1311
1337
  if ((argc < 3) || (argc > 3)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 3)",argc);
1312
1338
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTable, 1);
1313
- SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXObject, 1); arg3 = NUM2UINT(argv[1]);
1314
- SWIG_ConvertPtr(argv[2], (void **) &arg4, 0, 1); result = (long)(arg1)->onUpdHaveSelection(arg2,arg3,arg4);
1315
- vresult = INT2NUM(result); return vresult; }
1339
+ SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXObject, 1); arg3 = NUM2UINT(argv[1]); arg4 = 0;
1340
+ result = (long)(arg1)->onUpdHaveSelection(arg2,arg3,arg4); vresult = INT2NUM(result); return vresult; }
1341
+ static VALUE _wrap_FXTable_onCmdStartInput(int argc, VALUE *argv, VALUE self) { FXTable *arg1 = (FXTable *) 0 ;
1342
+ FXObject *arg2 = (FXObject *) 0 ; FXSelector arg3 ; void *arg4 = (void *) 0 ; long result; VALUE vresult = Qnil;
1343
+ if ((argc < 3) || (argc > 3)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 3)",argc);
1344
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTable, 1);
1345
+ SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXObject, 1); arg3 = NUM2UINT(argv[1]); arg4 = 0;
1346
+ result = (long)(arg1)->onCmdStartInput(arg2,arg3,arg4); vresult = INT2NUM(result); return vresult; }
1347
+ static VALUE _wrap_FXTable_onUpdStartInput(int argc, VALUE *argv, VALUE self) { FXTable *arg1 = (FXTable *) 0 ;
1348
+ FXObject *arg2 = (FXObject *) 0 ; FXSelector arg3 ; void *arg4 = (void *) 0 ; long result; VALUE vresult = Qnil;
1349
+ if ((argc < 3) || (argc > 3)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 3)",argc);
1350
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTable, 1);
1351
+ SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXObject, 1); arg3 = NUM2UINT(argv[1]); arg4 = 0;
1352
+ result = (long)(arg1)->onUpdStartInput(arg2,arg3,arg4); vresult = INT2NUM(result); return vresult; }
1353
+ static VALUE _wrap_FXTable_onCmdAcceptInput(int argc, VALUE *argv, VALUE self) { FXTable *arg1 = (FXTable *) 0 ;
1354
+ FXObject *arg2 = (FXObject *) 0 ; FXSelector arg3 ; void *arg4 = (void *) 0 ; long result; VALUE vresult = Qnil;
1355
+ if ((argc < 3) || (argc > 3)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 3)",argc);
1356
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTable, 1);
1357
+ SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXObject, 1); arg3 = NUM2UINT(argv[1]); arg4 = 0;
1358
+ result = (long)(arg1)->onCmdAcceptInput(arg2,arg3,arg4); vresult = INT2NUM(result); return vresult; }
1359
+ static VALUE _wrap_FXTable_onUpdAcceptInput(int argc, VALUE *argv, VALUE self) { FXTable *arg1 = (FXTable *) 0 ;
1360
+ FXObject *arg2 = (FXObject *) 0 ; FXSelector arg3 ; void *arg4 = (void *) 0 ; long result; VALUE vresult = Qnil;
1361
+ if ((argc < 3) || (argc > 3)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 3)",argc);
1362
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTable, 1);
1363
+ SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXObject, 1); arg3 = NUM2UINT(argv[1]); arg4 = 0;
1364
+ result = (long)(arg1)->onUpdAcceptInput(arg2,arg3,arg4); vresult = INT2NUM(result); return vresult; }
1365
+ static VALUE _wrap_FXTable_onCmdCancelInput(int argc, VALUE *argv, VALUE self) { FXTable *arg1 = (FXTable *) 0 ;
1366
+ FXObject *arg2 = (FXObject *) 0 ; FXSelector arg3 ; void *arg4 = (void *) 0 ; long result; VALUE vresult = Qnil;
1367
+ if ((argc < 3) || (argc > 3)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 3)",argc);
1368
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTable, 1);
1369
+ SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXObject, 1); arg3 = NUM2UINT(argv[1]); arg4 = 0;
1370
+ result = (long)(arg1)->onCmdCancelInput(arg2,arg3,arg4); vresult = INT2NUM(result); return vresult; }
1316
1371
  #ifdef HAVE_RB_DEFINE_ALLOC_FUNC
1317
1372
  static VALUE _wrap_FXTable_allocate(VALUE self) {
1318
1373
  #else
@@ -1364,6 +1419,14 @@ static VALUE _wrap_FXTable_getVisibleColumns(int argc, VALUE *argv, VALUE self)
1364
1419
  VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1365
1420
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTable, 1); result = (FXint)((FXTable const *)arg1)->getVisibleColumns();
1366
1421
  vresult = INT2NUM(result); return vresult; }
1422
+ static VALUE _wrap_FXTable_editableq___(int argc, VALUE *argv, VALUE self) { FXTable *arg1 = (FXTable *) 0 ; FXbool result;
1423
+ VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1424
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTable, 1); result = (FXbool)((FXTable const *)arg1)->isEditable();
1425
+ vresult = result ? Qtrue : Qfalse; return vresult; }
1426
+ static VALUE _wrap_FXTable_editablee___(int argc, VALUE *argv, VALUE self) { FXTable *arg1 = (FXTable *) 0 ;
1427
+ FXbool arg2 = (FXbool) 1 ; if ((argc < 0) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1428
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTable, 1); if (argc > 0) { arg2 = to_FXbool(argv[0]); }
1429
+ (arg1)->setEditable(arg2); return Qnil; }
1367
1430
  static VALUE _wrap_FXTable_showHorzGrid(int argc, VALUE *argv, VALUE self) { FXTable *arg1 = (FXTable *) 0 ;
1368
1431
  FXbool arg2 = (FXbool) 1 ; if ((argc < 0) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1369
1432
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTable, 1); if (argc > 0) { arg2 = to_FXbool(argv[0]); }
@@ -1420,16 +1483,16 @@ static VALUE _wrap_FXTable_getMarginRight(int argc, VALUE *argv, VALUE self) { F
1420
1483
  VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1421
1484
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTable, 1); result = (FXint)((FXTable const *)arg1)->getMarginRight();
1422
1485
  vresult = INT2NUM(result); return vresult; }
1423
- static VALUE _wrap_FXTable_rowAtY(int argc, VALUE *argv, VALUE self) { FXTable *arg1 = (FXTable *) 0 ; FXint arg2 ;
1486
+ static VALUE _wrap_FXTable_colAtX(int argc, VALUE *argv, VALUE self) { FXTable *arg1 = (FXTable *) 0 ; FXint arg2 ;
1424
1487
  FXint result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 1))
1425
1488
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1426
1489
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTable, 1); arg2 = NUM2INT(argv[0]);
1427
- result = (FXint)((FXTable const *)arg1)->rowAtY(arg2); vresult = INT2NUM(result); return vresult; }
1428
- static VALUE _wrap_FXTable_colAtX(int argc, VALUE *argv, VALUE self) { FXTable *arg1 = (FXTable *) 0 ; FXint arg2 ;
1490
+ result = (FXint)((FXTable const *)arg1)->colAtX(arg2); vresult = INT2NUM(result); return vresult; }
1491
+ static VALUE _wrap_FXTable_rowAtY(int argc, VALUE *argv, VALUE self) { FXTable *arg1 = (FXTable *) 0 ; FXint arg2 ;
1429
1492
  FXint result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 1))
1430
1493
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1431
1494
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTable, 1); arg2 = NUM2INT(argv[0]);
1432
- result = (FXint)((FXTable const *)arg1)->colAtX(arg2); vresult = INT2NUM(result); return vresult; }
1495
+ result = (FXint)((FXTable const *)arg1)->rowAtY(arg2); vresult = INT2NUM(result); return vresult; }
1433
1496
  static VALUE _wrap_FXTable_getItem(int argc, VALUE *argv, VALUE self) { FXTable *arg1 = (FXTable *) 0 ; FXint arg2 ;
1434
1497
  FXint arg3 ; FXTableItem *result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
1435
1498
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
@@ -1447,12 +1510,6 @@ static VALUE _wrap_FXTable_setItem(int argc, VALUE *argv, VALUE self) { FXTable
1447
1510
  if (arg2 < 0 || arg2 >= arg1->getNumRows()) { rb_raise(rb_eIndexError, "table row out of bounds"); } } {
1448
1511
  if (arg3 < 0 || arg3 >= arg1->getNumColumns()) { rb_raise(rb_eIndexError, "table column out of bounds"); } }
1449
1512
  FXTable_setItem(arg1,arg2,arg3,arg4,arg5); return Qnil; }
1450
- static VALUE _wrap_FXTable_makePositionVisible(int argc, VALUE *argv, VALUE self) { FXTable *arg1 = (FXTable *) 0 ; FXint arg2 ;
1451
- FXint arg3 ; if ((argc < 2) || (argc > 2)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
1452
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTable, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]); {
1453
- if (arg2 < 0 || arg2 >= arg1->getNumRows()) { rb_raise(rb_eIndexError, "table row out of bounds"); } } {
1454
- if (arg3 < 0 || arg3 >= arg1->getNumColumns()) { rb_raise(rb_eIndexError, "table column out of bounds"); } }
1455
- (arg1)->makePositionVisible(arg2,arg3); return Qnil; }
1456
1513
  static VALUE _wrap_FXTable_isItemVisible(int argc, VALUE *argv, VALUE self) { FXTable *arg1 = (FXTable *) 0 ; FXint arg2 ;
1457
1514
  FXint arg3 ; FXbool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
1458
1515
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
@@ -1496,6 +1553,16 @@ static VALUE _wrap_FXTable_getRowHeaderWidth(int argc, VALUE *argv, VALUE self)
1496
1553
  VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1497
1554
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTable, 1); result = (FXint)((FXTable const *)arg1)->getRowHeaderWidth();
1498
1555
  vresult = INT2NUM(result); return vresult; }
1556
+ static VALUE _wrap_FXTable_getColumnX(int argc, VALUE *argv, VALUE self) { FXTable *arg1 = (FXTable *) 0 ; FXint arg2 ;
1557
+ FXint result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 1))
1558
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1559
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTable, 1); arg2 = NUM2INT(argv[0]);
1560
+ result = (FXint)FXTable_getColumnX((FXTable const *)arg1,arg2); vresult = INT2NUM(result); return vresult; }
1561
+ static VALUE _wrap_FXTable_getRowY(int argc, VALUE *argv, VALUE self) { FXTable *arg1 = (FXTable *) 0 ; FXint arg2 ;
1562
+ FXint result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 1))
1563
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1564
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTable, 1); arg2 = NUM2INT(argv[0]);
1565
+ result = (FXint)FXTable_getRowY((FXTable const *)arg1,arg2); vresult = INT2NUM(result); return vresult; }
1499
1566
  static VALUE _wrap_FXTable_getColumnWidth(int argc, VALUE *argv, VALUE self) { FXTable *arg1 = (FXTable *) 0 ; FXint arg2 ;
1500
1567
  FXint result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 1))
1501
1568
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
@@ -1508,16 +1575,6 @@ static VALUE _wrap_FXTable_getRowHeight(int argc, VALUE *argv, VALUE self) { FXT
1508
1575
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTable, 1); arg2 = NUM2INT(argv[0]); {
1509
1576
  if (arg2 < 0 || arg2 >= arg1->getNumRows()) { rb_raise(rb_eIndexError, "table row out of bounds"); } }
1510
1577
  result = (FXint)((FXTable const *)arg1)->getRowHeight(arg2); vresult = INT2NUM(result); return vresult; }
1511
- static VALUE _wrap_FXTable_getColumnX(int argc, VALUE *argv, VALUE self) { FXTable *arg1 = (FXTable *) 0 ; FXint arg2 ;
1512
- FXint result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 1))
1513
- rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1514
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTable, 1); arg2 = NUM2INT(argv[0]);
1515
- result = (FXint)FXTable_getColumnX((FXTable const *)arg1,arg2); vresult = INT2NUM(result); return vresult; }
1516
- static VALUE _wrap_FXTable_getRowY(int argc, VALUE *argv, VALUE self) { FXTable *arg1 = (FXTable *) 0 ; FXint arg2 ;
1517
- FXint result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 1))
1518
- rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1519
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTable, 1); arg2 = NUM2INT(argv[0]);
1520
- result = (FXint)FXTable_getRowY((FXTable const *)arg1,arg2); vresult = INT2NUM(result); return vresult; }
1521
1578
  static VALUE _wrap_FXTable_setDefColumnWidth(int argc, VALUE *argv, VALUE self) { FXTable *arg1 = (FXTable *) 0 ; FXint arg2 ;
1522
1579
  if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1523
1580
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTable, 1); arg2 = NUM2INT(argv[0]); (arg1)->setDefColumnWidth(arg2);
@@ -1546,6 +1603,17 @@ static VALUE _wrap_FXTable_getMinColumnWidth(int argc, VALUE *argv, VALUE self)
1546
1603
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTable, 1); arg2 = NUM2INT(argv[0]); {
1547
1604
  if (arg2 < 0 || arg2 >= arg1->getNumColumns()) { rb_raise(rb_eIndexError, "table column out of bounds"); } }
1548
1605
  result = (FXint)((FXTable const *)arg1)->getMinColumnWidth(arg2); vresult = INT2NUM(result); return vresult; }
1606
+ static VALUE _wrap_FXTable_fitRowsToContents(int argc, VALUE *argv, VALUE self) { FXTable *arg1 = (FXTable *) 0 ; FXint arg2 ;
1607
+ FXint arg3 = (FXint) 1 ; if ((argc < 1) || (argc > 2)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1608
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTable, 1); arg2 = NUM2INT(argv[0]); if (argc > 1) {
1609
+ arg3 = NUM2INT(argv[1]); } { if (arg2 < 0 || arg2 + arg3 > arg1->getNumRows()) {
1610
+ rb_raise(rb_eIndexError,"table row out of bounds"); } } (arg1)->fitRowsToContents(arg2,arg3); return Qnil; }
1611
+ static VALUE _wrap_FXTable_fitColumnsToContents(int argc, VALUE *argv, VALUE self) { FXTable *arg1 = (FXTable *) 0 ;
1612
+ FXint arg2 ; FXint arg3 = (FXint) 1 ; if ((argc < 1) || (argc > 2))
1613
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1614
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTable, 1); arg2 = NUM2INT(argv[0]); if (argc > 1) {
1615
+ arg3 = NUM2INT(argv[1]); } { if (arg2 < 0 || arg2 + arg3 > arg1->getNumColumns()) {
1616
+ rb_raise(rb_eIndexError,"table column out of bounds"); } } (arg1)->fitColumnsToContents(arg2,arg3); return Qnil; }
1549
1617
  static VALUE _wrap_FXTable_setColumnText(int argc, VALUE *argv, VALUE self) { FXTable *arg1 = (FXTable *) 0 ; FXint arg2 ;
1550
1618
  FXString *arg3 = 0 ; SwigValueWrapper<FXString > p3 ; if ((argc < 2) || (argc > 2))
1551
1619
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
@@ -1643,20 +1711,6 @@ static VALUE _wrap_FXTable_updateItem(int argc, VALUE *argv, VALUE self) { FXTab
1643
1711
  if (arg2 < 0 || arg2 >= arg1->getNumRows()) { rb_raise(rb_eIndexError, "table row out of bounds"); } } {
1644
1712
  if (arg3 < 0 || arg3 >= arg1->getNumColumns()) { rb_raise(rb_eIndexError, "table column out of bounds"); } }
1645
1713
  ((FXTable const *)arg1)->updateItem(arg2,arg3); return Qnil; }
1646
- static VALUE _wrap_FXTable_enableItem(int argc, VALUE *argv, VALUE self) { FXTable *arg1 = (FXTable *) 0 ; FXint arg2 ;
1647
- FXint arg3 ; FXbool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
1648
- rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
1649
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTable, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]); {
1650
- if (arg2 < 0 || arg2 >= arg1->getNumRows()) { rb_raise(rb_eIndexError, "table row out of bounds"); } } {
1651
- if (arg3 < 0 || arg3 >= arg1->getNumColumns()) { rb_raise(rb_eIndexError, "table column out of bounds"); } }
1652
- result = (FXbool)(arg1)->enableItem(arg2,arg3); vresult = result ? Qtrue : Qfalse; return vresult; }
1653
- static VALUE _wrap_FXTable_disableItem(int argc, VALUE *argv, VALUE self) { FXTable *arg1 = (FXTable *) 0 ; FXint arg2 ;
1654
- FXint arg3 ; FXbool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
1655
- rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
1656
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTable, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]); {
1657
- if (arg2 < 0 || arg2 >= arg1->getNumRows()) { rb_raise(rb_eIndexError, "table row out of bounds"); } } {
1658
- if (arg3 < 0 || arg3 >= arg1->getNumColumns()) { rb_raise(rb_eIndexError, "table column out of bounds"); } }
1659
- result = (FXbool)(arg1)->disableItem(arg2,arg3); vresult = result ? Qtrue : Qfalse; return vresult; }
1660
1714
  static VALUE _wrap_FXTable_isItemEnabled(int argc, VALUE *argv, VALUE self) { FXTable *arg1 = (FXTable *) 0 ; FXint arg2 ;
1661
1715
  FXint arg3 ; FXbool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
1662
1716
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
@@ -1911,10 +1965,11 @@ static VALUE _wrap_FXTable_setHelpText(int argc, VALUE *argv, VALUE self) { FXTa
1911
1965
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1912
1966
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTable, 1); p2 = to_FXString(argv[0]); arg2 = &p2;
1913
1967
  (arg1)->setHelpText((FXString const &)*arg2); return Qnil; }
1914
- static VALUE _wrap_FXTable_getHelpText(int argc, VALUE *argv, VALUE self) { FXTable *arg1 = (FXTable *) 0 ; FXString result;
1968
+ static VALUE _wrap_FXTable_getHelpText(int argc, VALUE *argv, VALUE self) { FXTable *arg1 = (FXTable *) 0 ; FXString *result;
1915
1969
  VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1916
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTable, 1); result = ((FXTable const *)arg1)->getHelpText();
1917
- vresult = rb_str_new2((&result)->text()); return vresult; }
1970
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTable, 1); {
1971
+ FXString const &_result_ref = ((FXTable const *)arg1)->getHelpText(); result = (FXString *) &_result_ref; }
1972
+ vresult = rb_str_new2(result->text()); return vresult; }
1918
1973
  static void
1919
1974
  free_FXTable(FXTable *arg1) {
1920
1975
  delete arg1;
@@ -1970,6 +2025,11 @@ static VALUE _wrap_FXTable_setFocus(int argc, VALUE *argv, VALUE self) { FXTable
1970
2025
  static VALUE _wrap_FXTable_killFocus(int argc, VALUE *argv, VALUE self) { FXTable *arg1 = (FXTable *) 0 ;
1971
2026
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1972
2027
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTable, 1); FXTable_killFocus(arg1); return Qnil; }
2028
+ static VALUE _wrap_FXTable_changeFocus(int argc, VALUE *argv, VALUE self) { FXTable *arg1 = (FXTable *) 0 ;
2029
+ FXWindow *arg2 = (FXWindow *) 0 ; if ((argc < 1) || (argc > 1))
2030
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
2031
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTable, 1);
2032
+ SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXWindow, 1); FXTable_changeFocus(arg1,arg2); return Qnil; }
1973
2033
  static VALUE _wrap_FXTable_setDefault(int argc, VALUE *argv, VALUE self) { FXTable *arg1 = (FXTable *) 0 ;
1974
2034
  FXbool arg2 = (FXbool) 1 ; if ((argc < 0) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1975
2035
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTable, 1); if (argc > 0) { arg2 = to_FXbool(argv[0]); }
@@ -2002,10 +2062,11 @@ static VALUE _wrap_FXTable_recalc(int argc, VALUE *argv, VALUE self) { FXTable *
2002
2062
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2003
2063
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTable, 1); FXTable_recalc(arg1); return Qnil; }
2004
2064
  static VALUE _wrap_FXTable_reparent(int argc, VALUE *argv, VALUE self) { FXTable *arg1 = (FXTable *) 0 ;
2005
- FXComposite *arg2 = (FXComposite *) 0 ; if ((argc < 1) || (argc > 1))
2006
- rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
2065
+ FXWindow *arg2 = (FXWindow *) 0 ; FXWindow *arg3 = (FXWindow *) 0 ; if ((argc < 2) || (argc > 2))
2066
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
2007
2067
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTable, 1);
2008
- SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXComposite, 1); FXTable_reparent(arg1,arg2); return Qnil; }
2068
+ SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXWindow, 1);
2069
+ SWIG_ConvertPtr(argv[1], (void **) &arg3, SWIGTYPE_p_FXWindow, 1); FXTable_reparent(arg1,arg2,arg3); return Qnil; }
2009
2070
  static VALUE _wrap_FXTable_show(int argc, VALUE *argv, VALUE self) { FXTable *arg1 = (FXTable *) 0 ;
2010
2071
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2011
2072
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTable, 1); FXTable_show(arg1); return Qnil; }
@@ -2029,6 +2090,39 @@ static VALUE _wrap_FXTable_setBackColor(int argc, VALUE *argv, VALUE self) { FXT
2029
2090
  if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
2030
2091
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTable, 1); arg2 = to_FXColor(argv[0]); FXTable_setBackColor(arg1,arg2);
2031
2092
  return Qnil; }
2093
+ static VALUE _wrap_FXTable_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) { FXTable *arg1 = (FXTable *) 0 ;
2094
+ FXRegion *arg2 = 0 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
2095
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTable, 1);
2096
+ SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXRegion, 1); if (arg2 == NULL) rb_raise(rb_eTypeError, "null reference");
2097
+ FXTable_setShape(arg1,(FXRegion const &)*arg2); return Qnil; }
2098
+ static VALUE _wrap_FXTable_setShape__SWIG_1(int argc, VALUE *argv, VALUE self) { FXTable *arg1 = (FXTable *) 0 ;
2099
+ FXBitmap *arg2 = (FXBitmap *) 0 ; if ((argc < 1) || (argc > 1))
2100
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
2101
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTable, 1);
2102
+ SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXBitmap, 1); FXTable_setShape(arg1,arg2); return Qnil; }
2103
+ static VALUE _wrap_FXTable_setShape__SWIG_2(int argc, VALUE *argv, VALUE self) { FXTable *arg1 = (FXTable *) 0 ;
2104
+ FXIcon *arg2 = (FXIcon *) 0 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
2105
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTable, 1);
2106
+ SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXIcon, 1); FXTable_setShape(arg1,arg2); return Qnil; }
2107
+ static VALUE _wrap_FXTable_setShape(int nargs, VALUE *args, VALUE self) { int argc; VALUE argv[3]; int ii; argc = nargs + 1;
2108
+ argv[0] = self; for (ii = 1; (ii < argc) && (ii < 2); ii++) { argv[ii] = args[ii-1]; } if (argc == 2) { int _v; {
2109
+ void *ptr;
2110
+ _v = (NIL_P(argv[0]) || (TYPE(argv[0]) == T_DATA && SWIG_ConvertPtr(argv[0], &ptr, SWIGTYPE_p_FXTable, 0) != -1)) ? 1 : 0; }
2111
+ if (_v) { { void *ptr;
2112
+ _v = (NIL_P(argv[1]) || (TYPE(argv[1]) == T_DATA && SWIG_ConvertPtr(argv[1], &ptr, SWIGTYPE_p_FXRegion, 0) != -1)) ? 1 : 0; }
2113
+ if (_v) { return _wrap_FXTable_setShape__SWIG_0(nargs, args, self);} } } if (argc == 2) { int _v; { void *ptr;
2114
+ _v = (NIL_P(argv[0]) || (TYPE(argv[0]) == T_DATA && SWIG_ConvertPtr(argv[0], &ptr, SWIGTYPE_p_FXTable, 0) != -1)) ? 1 : 0; }
2115
+ if (_v) { { void *ptr;
2116
+ _v = (NIL_P(argv[1]) || (TYPE(argv[1]) == T_DATA && SWIG_ConvertPtr(argv[1], &ptr, SWIGTYPE_p_FXBitmap, 0) != -1)) ? 1 : 0; }
2117
+ if (_v) { return _wrap_FXTable_setShape__SWIG_1(nargs, args, self);} } } if (argc == 2) { int _v; { void *ptr;
2118
+ _v = (NIL_P(argv[0]) || (TYPE(argv[0]) == T_DATA && SWIG_ConvertPtr(argv[0], &ptr, SWIGTYPE_p_FXTable, 0) != -1)) ? 1 : 0; }
2119
+ if (_v) { { void *ptr;
2120
+ _v = (NIL_P(argv[1]) || (TYPE(argv[1]) == T_DATA && SWIG_ConvertPtr(argv[1], &ptr, SWIGTYPE_p_FXIcon, 0) != -1)) ? 1 : 0; }
2121
+ if (_v) { return _wrap_FXTable_setShape__SWIG_2(nargs, args, self);} } }
2122
+ rb_raise(rb_eArgError, "No matching function for overloaded 'FXTable_setShape'"); return Qnil; }
2123
+ static VALUE _wrap_FXTable_clearShape(int argc, VALUE *argv, VALUE self) { FXTable *arg1 = (FXTable *) 0 ;
2124
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2125
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTable, 1); FXTable_clearShape(arg1); return Qnil; }
2032
2126
  static VALUE _wrap_FXTable_getViewportHeight(int argc, VALUE *argv, VALUE self) { FXTable *arg1 = (FXTable *) 0 ; FXint result;
2033
2127
  VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2034
2128
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTable, 1); result = (FXint)FXTable_getViewportHeight(arg1);
@@ -2163,14 +2257,6 @@ static VALUE _wrap_FXTable_setRowHeight(int argc, VALUE *argv, VALUE self) { FXT
2163
2257
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTable, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]); {
2164
2258
  if (arg2 < 0 || arg2 >= arg1->getNumRows()) { rb_raise(rb_eIndexError, "table row out of bounds"); } }
2165
2259
  FXTable_setRowHeight(arg1,arg2,arg3); return Qnil; }
2166
- static VALUE _wrap_FXTable_setColumnX(int argc, VALUE *argv, VALUE self) { FXTable *arg1 = (FXTable *) 0 ; FXint arg2 ;
2167
- FXint arg3 ; if ((argc < 2) || (argc > 2)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
2168
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTable, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]);
2169
- FXTable_setColumnX(arg1,arg2,arg3); return Qnil; }
2170
- static VALUE _wrap_FXTable_setRowY(int argc, VALUE *argv, VALUE self) { FXTable *arg1 = (FXTable *) 0 ; FXint arg2 ;
2171
- FXint arg3 ; if ((argc < 2) || (argc > 2)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
2172
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTable, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]);
2173
- FXTable_setRowY(arg1,arg2,arg3); return Qnil; }
2174
2260
  static VALUE _wrap_FXTable_setCurrentItem(int argc, VALUE *argv, VALUE self) { FXTable *arg1 = (FXTable *) 0 ; FXint arg2 ;
2175
2261
  FXint arg3 ; FXbool arg4 = (FXbool) 0 ; if ((argc < 2) || (argc > 3))
2176
2262
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
@@ -2212,216 +2298,264 @@ static VALUE _wrap_FXTable_killSelection(int argc, VALUE *argv, VALUE self) { FX
2212
2298
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2213
2299
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTable, 1); if (argc > 0) { arg2 = to_FXbool(argv[0]); }
2214
2300
  result = (FXbool)FXTable_killSelection(arg1,arg2); vresult = result ? Qtrue : Qfalse; return vresult; }
2301
+ static VALUE _wrap_FXTable_startInput(int argc, VALUE *argv, VALUE self) { FXTable *arg1 = (FXTable *) 0 ; FXint arg2 ;
2302
+ FXint arg3 ; if ((argc < 2) || (argc > 2)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
2303
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTable, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]); {
2304
+ if (arg2 < 0 || arg2 >= arg1->getNumRows()) { rb_raise(rb_eIndexError, "table row out of bounds"); } } {
2305
+ if (arg3 < 0 || arg3 >= arg1->getNumColumns()) { rb_raise(rb_eIndexError, "table column out of bounds"); } }
2306
+ FXTable_startInput(arg1,arg2,arg3); return Qnil; }
2307
+ static VALUE _wrap_FXTable_cancelInput(int argc, VALUE *argv, VALUE self) { FXTable *arg1 = (FXTable *) 0 ;
2308
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2309
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTable, 1); FXTable_cancelInput(arg1); return Qnil; }
2310
+ static VALUE _wrap_FXTable_acceptInput(int argc, VALUE *argv, VALUE self) { FXTable *arg1 = (FXTable *) 0 ;
2311
+ FXbool arg2 = (FXbool) 0 ; if ((argc < 0) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2312
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTable, 1); if (argc > 0) { arg2 = to_FXbool(argv[0]); }
2313
+ FXTable_acceptInput(arg1,arg2); return Qnil; }
2314
+ static VALUE _wrap_FXTable_makePositionVisible(int argc, VALUE *argv, VALUE self) { FXTable *arg1 = (FXTable *) 0 ; FXint arg2 ;
2315
+ FXint arg3 ; if ((argc < 2) || (argc > 2)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
2316
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTable, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]); {
2317
+ if (arg2 < 0 || arg2 >= arg1->getNumRows()) { rb_raise(rb_eIndexError, "table row out of bounds"); } } {
2318
+ if (arg3 < 0 || arg3 >= arg1->getNumColumns()) { rb_raise(rb_eIndexError, "table column out of bounds"); } }
2319
+ FXTable_makePositionVisible(arg1,arg2,arg3); return Qnil; }
2320
+ static VALUE _wrap_FXTable_enableItem(int argc, VALUE *argv, VALUE self) { FXTable *arg1 = (FXTable *) 0 ; FXint arg2 ;
2321
+ FXint arg3 ; FXbool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
2322
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
2323
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTable, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]); {
2324
+ if (arg2 < 0 || arg2 >= arg1->getNumRows()) { rb_raise(rb_eIndexError, "table row out of bounds"); } } {
2325
+ if (arg3 < 0 || arg3 >= arg1->getNumColumns()) { rb_raise(rb_eIndexError, "table column out of bounds"); } }
2326
+ result = (FXbool)FXTable_enableItem(arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse; return vresult; }
2327
+ static VALUE _wrap_FXTable_disableItem(int argc, VALUE *argv, VALUE self) { FXTable *arg1 = (FXTable *) 0 ; FXint arg2 ;
2328
+ FXint arg3 ; FXbool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
2329
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
2330
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTable, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]); {
2331
+ if (arg2 < 0 || arg2 >= arg1->getNumRows()) { rb_raise(rb_eIndexError, "table row out of bounds"); } } {
2332
+ if (arg3 < 0 || arg3 >= arg1->getNumColumns()) { rb_raise(rb_eIndexError, "table column out of bounds"); } }
2333
+ result = (FXbool)FXTable_disableItem(arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse; return vresult; }
2215
2334
 
2216
2335
  /* -------- TYPE CONVERSION AND EQUIVALENCE RULES (BEGIN) -------- */
2217
2336
 
2218
- static void *_p_FXDriveBoxTo_p_FXId(void *x) {
2219
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXListBox *) ((FXDriveBox *) x));
2337
+ static void *_p_FXShutterItemTo_p_FXId(void *x) {
2338
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXVerticalFrame *) ((FXShutterItem *) x));
2220
2339
  }
2221
- static void *_p_FXToolBarTo_p_FXId(void *x) {
2222
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXToolBar *) x));
2340
+ static void *_p_FXColorBarTo_p_FXId(void *x) {
2341
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXColorBar *) x));
2223
2342
  }
2224
- static void *_p_FXCompositeTo_p_FXId(void *x) {
2225
- return (void *)((FXId *) (FXDrawable *)(FXWindow *) ((FXComposite *) x));
2343
+ static void *_p_FXTabBarTo_p_FXId(void *x) {
2344
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXTabBar *) x));
2226
2345
  }
2227
- static void *_p_FXToolTipTo_p_FXId(void *x) {
2228
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *) ((FXToolTip *) x));
2346
+ static void *_p_FXSwitcherTo_p_FXId(void *x) {
2347
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXSwitcher *) x));
2229
2348
  }
2230
2349
  static void *_p_FXTextFieldTo_p_FXId(void *x) {
2231
2350
  return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXTextField *) x));
2232
2351
  }
2233
- static void *_p_FXTabBookTo_p_FXId(void *x) {
2234
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXTabBar *) ((FXTabBook *) x));
2235
- }
2236
- static void *_p_FXArrowButtonTo_p_FXId(void *x) {
2237
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXArrowButton *) x));
2352
+ static void *_p_FXToolBarTabTo_p_FXId(void *x) {
2353
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXToolBarTab *) x));
2238
2354
  }
2239
- static void *_p_FXGroupBoxTo_p_FXId(void *x) {
2240
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXGroupBox *) x));
2355
+ static void *_p_FXDriveBoxTo_p_FXId(void *x) {
2356
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXListBox *) ((FXDriveBox *) x));
2241
2357
  }
2242
- static void *_p_FXShellTo_p_FXId(void *x) {
2243
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *) ((FXShell *) x));
2358
+ static void *_p_FXMatrixTo_p_FXId(void *x) {
2359
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXMatrix *) x));
2244
2360
  }
2245
- static void *_p_FXStatusBarTo_p_FXId(void *x) {
2246
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXHorizontalFrame *) ((FXStatusBar *) x));
2361
+ static void *_p_FXScrollCornerTo_p_FXId(void *x) {
2362
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *) ((FXScrollCorner *) x));
2247
2363
  }
2248
- static void *_p_FXScrollAreaTo_p_FXId(void *x) {
2249
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *) ((FXScrollArea *) x));
2364
+ static void *_p_FXArrowButtonTo_p_FXId(void *x) {
2365
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXArrowButton *) x));
2250
2366
  }
2251
2367
  static void *_p_FXPopupTo_p_FXId(void *x) {
2252
2368
  return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *) ((FXPopup *) x));
2253
2369
  }
2254
- static void *_p_FXScrollWindowTo_p_FXId(void *x) {
2255
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXScrollArea *) ((FXScrollWindow *) x));
2370
+ static void *_p_FXDrawableTo_p_FXId(void *x) {
2371
+ return (void *)((FXId *) ((FXDrawable *) x));
2256
2372
  }
2257
- static void *_p_FXWindowTo_p_FXId(void *x) {
2258
- return (void *)((FXId *) (FXDrawable *) ((FXWindow *) x));
2373
+ static void *_p_FXHeaderTo_p_FXId(void *x) {
2374
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXHeader *) x));
2259
2375
  }
2260
- static void *_p_FXRootWindowTo_p_FXId(void *x) {
2261
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *) ((FXRootWindow *) x));
2376
+ static void *_p_FXSplitterTo_p_FXId(void *x) {
2377
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *) ((FXSplitter *) x));
2262
2378
  }
2263
- static void *_p_FXTopWindowTo_p_FXId(void *x) {
2264
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *) ((FXTopWindow *) x));
2379
+ static void *_p_FX4SplitterTo_p_FXId(void *x) {
2380
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *) ((FX4Splitter *) x));
2265
2381
  }
2266
- static void *_p_FXMainWindowTo_p_FXId(void *x) {
2267
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXMainWindow *) x));
2382
+ static void *_p_FXSpringTo_p_FXId(void *x) {
2383
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXSpring *) x));
2268
2384
  }
2269
- static void *_p_FXRulerTo_p_FXId(void *x) {
2270
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXRuler *) x));
2385
+ static void *_p_FXPackerTo_p_FXId(void *x) {
2386
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *) ((FXPacker *) x));
2271
2387
  }
2272
- static void *_p_FXCanvasTo_p_FXId(void *x) {
2273
- return (void *)((FXId *) (FXDrawable *)(FXWindow *) ((FXCanvas *) x));
2388
+ static void *_p_FXTabBookTo_p_FXId(void *x) {
2389
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXTabBar *) ((FXTabBook *) x));
2274
2390
  }
2275
- static void *_p_FXScrollCornerTo_p_FXId(void *x) {
2276
- return (void *)((FXId *) (FXDrawable *)(FXWindow *) ((FXScrollCorner *) x));
2391
+ static void *_p_FXImageFrameTo_p_FXId(void *x) {
2392
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXImageFrame *) x));
2277
2393
  }
2278
- static void *_p_FXSeparatorTo_p_FXId(void *x) {
2279
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXSeparator *) x));
2394
+ static void *_p_FXVerticalSeparatorTo_p_FXId(void *x) {
2395
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *)(FXSeparator *) ((FXVerticalSeparator *) x));
2280
2396
  }
2281
2397
  static void *_p_FXHorizontalSeparatorTo_p_FXId(void *x) {
2282
2398
  return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *)(FXSeparator *) ((FXHorizontalSeparator *) x));
2283
2399
  }
2284
- static void *_p_FXVerticalSeparatorTo_p_FXId(void *x) {
2285
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *)(FXSeparator *) ((FXVerticalSeparator *) x));
2400
+ static void *_p_FXSeparatorTo_p_FXId(void *x) {
2401
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXSeparator *) x));
2286
2402
  }
2287
- static void *_p_FXStatusLineTo_p_FXId(void *x) {
2288
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXStatusLine *) x));
2403
+ static void *_p_FXProgressBarTo_p_FXId(void *x) {
2404
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXProgressBar *) x));
2289
2405
  }
2290
- static void *_p_FXComboBoxTo_p_FXId(void *x) {
2291
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXComboBox *) x));
2406
+ static void *_p_FXShutterTo_p_FXId(void *x) {
2407
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXVerticalFrame *) ((FXShutter *) x));
2292
2408
  }
2293
- static void *_p_FXVerticalFrameTo_p_FXId(void *x) {
2294
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXVerticalFrame *) x));
2409
+ static void *_p_FXTableTo_p_FXId(void *x) {
2410
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXScrollArea *) ((FXTable *) x));
2295
2411
  }
2296
- static void *_p_FXHorizontalFrameTo_p_FXId(void *x) {
2297
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXHorizontalFrame *) x));
2412
+ static void *_p_FXToolTipTo_p_FXId(void *x) {
2413
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *) ((FXToolTip *) x));
2298
2414
  }
2299
- static void *_p_FX4SplitterTo_p_FXId(void *x) {
2300
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *) ((FX4Splitter *) x));
2415
+ static void *_p_FXCompositeTo_p_FXId(void *x) {
2416
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *) ((FXComposite *) x));
2301
2417
  }
2302
- static void *_p_FXSplitterTo_p_FXId(void *x) {
2303
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *) ((FXSplitter *) x));
2418
+ static void *_p_FXBitmapFrameTo_p_FXId(void *x) {
2419
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXBitmapFrame *) x));
2304
2420
  }
2305
- static void *_p_FXPackerTo_p_FXId(void *x) {
2306
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *) ((FXPacker *) x));
2421
+ static void *_p_FXRealSliderTo_p_FXId(void *x) {
2422
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXRealSlider *) x));
2307
2423
  }
2308
- static void *_p_FXSpinnerTo_p_FXId(void *x) {
2309
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXSpinner *) x));
2424
+ static void *_p_FXSliderTo_p_FXId(void *x) {
2425
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXSlider *) x));
2310
2426
  }
2311
- static void *_p_FXRealSpinnerTo_p_FXId(void *x) {
2312
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXRealSpinner *) x));
2427
+ static void *_p_FXDockSiteTo_p_FXId(void *x) {
2428
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXDockSite *) x));
2313
2429
  }
2314
- static void *_p_FXScrollBarTo_p_FXId(void *x) {
2315
- return (void *)((FXId *) (FXDrawable *)(FXWindow *) ((FXScrollBar *) x));
2430
+ static void *_p_FXGroupBoxTo_p_FXId(void *x) {
2431
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXGroupBox *) x));
2432
+ }
2433
+ static void *_p_FXDockHandlerTo_p_FXId(void *x) {
2434
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXDockHandler *) x));
2435
+ }
2436
+ static void *_p_FXTreeListBoxTo_p_FXId(void *x) {
2437
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXTreeListBox *) x));
2438
+ }
2439
+ static void *_p_FXListBoxTo_p_FXId(void *x) {
2440
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXListBox *) x));
2441
+ }
2442
+ static void *_p_FXCanvasTo_p_FXId(void *x) {
2443
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *) ((FXCanvas *) x));
2316
2444
  }
2317
2445
  static void *_p_FXColorWheelTo_p_FXId(void *x) {
2318
2446
  return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXColorWheel *) x));
2319
2447
  }
2320
- static void *_p_FXBitmapFrameTo_p_FXId(void *x) {
2321
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXBitmapFrame *) x));
2448
+ static void *_p_FXVisualTo_p_FXId(void *x) {
2449
+ return (void *)((FXId *) ((FXVisual *) x));
2450
+ }
2451
+ static void *_p_FXToolBarGripTo_p_FXId(void *x) {
2452
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *)(FXDockHandler *) ((FXToolBarGrip *) x));
2453
+ }
2454
+ static void *_p_FXScrollBarTo_p_FXId(void *x) {
2455
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *) ((FXScrollBar *) x));
2322
2456
  }
2323
2457
  static void *_p_FXFontTo_p_FXId(void *x) {
2324
2458
  return (void *)((FXId *) ((FXFont *) x));
2325
2459
  }
2326
- static void *_p_FXDirBoxTo_p_FXId(void *x) {
2327
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXTreeListBox *) ((FXDirBox *) x));
2328
- }
2329
- static void *_p_FXToolBarGripTo_p_FXId(void *x) {
2330
- return (void *)((FXId *) (FXDrawable *)(FXWindow *) ((FXToolBarGrip *) x));
2460
+ static void *_p_FXComboBoxTo_p_FXId(void *x) {
2461
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXComboBox *) x));
2331
2462
  }
2332
- static void *_p_FXImageFrameTo_p_FXId(void *x) {
2333
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXImageFrame *) x));
2463
+ static void *_p_FXFrameTo_p_FXId(void *x) {
2464
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *) ((FXFrame *) x));
2334
2465
  }
2335
- static void *_p_FXDragCornerTo_p_FXId(void *x) {
2336
- return (void *)((FXId *) (FXDrawable *)(FXWindow *) ((FXDragCorner *) x));
2466
+ static void *_p_FX7SegmentTo_p_FXId(void *x) {
2467
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FX7Segment *) x));
2337
2468
  }
2338
- static void *_p_FXTableTo_p_FXId(void *x) {
2339
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXScrollArea *) ((FXTable *) x));
2469
+ static void *_p_FXStatusBarTo_p_FXId(void *x) {
2470
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXHorizontalFrame *) ((FXStatusBar *) x));
2340
2471
  }
2341
- static void *_p_FXSwitcherTo_p_FXId(void *x) {
2342
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXSwitcher *) x));
2472
+ static void *_p_FXGIFCursorTo_p_FXId(void *x) {
2473
+ return (void *)((FXId *) (FXCursor *) ((FXGIFCursor *) x));
2343
2474
  }
2344
- static void *_p_FXDirSelectorTo_p_FXId(void *x) {
2345
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXDirSelector *) x));
2475
+ static void *_p_FXCURCursorTo_p_FXId(void *x) {
2476
+ return (void *)((FXId *) (FXCursor *) ((FXCURCursor *) x));
2346
2477
  }
2347
- static void *_p_FXFileSelectorTo_p_FXId(void *x) {
2348
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXFileSelector *) x));
2478
+ static void *_p_FXCursorTo_p_FXId(void *x) {
2479
+ return (void *)((FXId *) ((FXCursor *) x));
2349
2480
  }
2350
- static void *_p_FXColorSelectorTo_p_FXId(void *x) {
2351
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXColorSelector *) x));
2481
+ static void *_p_FXRealSpinnerTo_p_FXId(void *x) {
2482
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXRealSpinner *) x));
2352
2483
  }
2353
- static void *_p_FXFontSelectorTo_p_FXId(void *x) {
2354
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXFontSelector *) x));
2484
+ static void *_p_FXSpinnerTo_p_FXId(void *x) {
2485
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXSpinner *) x));
2355
2486
  }
2356
- static void *_p_FXShutterTo_p_FXId(void *x) {
2357
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXVerticalFrame *) ((FXShutter *) x));
2487
+ static void *_p_FXStatusLineTo_p_FXId(void *x) {
2488
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXStatusLine *) x));
2358
2489
  }
2359
- static void *_p_FXDrawableTo_p_FXId(void *x) {
2360
- return (void *)((FXId *) ((FXDrawable *) x));
2490
+ static void *_p_FXMainWindowTo_p_FXId(void *x) {
2491
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXMainWindow *) x));
2361
2492
  }
2362
- static void *_p_FXCursorTo_p_FXId(void *x) {
2363
- return (void *)((FXId *) ((FXCursor *) x));
2493
+ static void *_p_FXTopWindowTo_p_FXId(void *x) {
2494
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *) ((FXTopWindow *) x));
2364
2495
  }
2365
- static void *_p_FXCURCursorTo_p_FXId(void *x) {
2366
- return (void *)((FXId *) (FXCursor *) ((FXCURCursor *) x));
2496
+ static void *_p_FXRootWindowTo_p_FXId(void *x) {
2497
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *) ((FXRootWindow *) x));
2367
2498
  }
2368
- static void *_p_FXGIFCursorTo_p_FXId(void *x) {
2369
- return (void *)((FXId *) (FXCursor *) ((FXGIFCursor *) x));
2499
+ static void *_p_FXWindowTo_p_FXId(void *x) {
2500
+ return (void *)((FXId *) (FXDrawable *) ((FXWindow *) x));
2370
2501
  }
2371
- static void *_p_FXProgressBarTo_p_FXId(void *x) {
2372
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXProgressBar *) x));
2502
+ static void *_p_FXSplashWindowTo_p_FXId(void *x) {
2503
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXSplashWindow *) x));
2373
2504
  }
2374
- static void *_p_FXListBoxTo_p_FXId(void *x) {
2375
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXListBox *) x));
2505
+ static void *_p_FXScrollWindowTo_p_FXId(void *x) {
2506
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXScrollArea *) ((FXScrollWindow *) x));
2376
2507
  }
2377
- static void *_p_FXTreeListBoxTo_p_FXId(void *x) {
2378
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXTreeListBox *) x));
2508
+ static void *_p_FXDockBarTo_p_FXId(void *x) {
2509
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXDockBar *) x));
2379
2510
  }
2380
- static void *_p_FXHeaderTo_p_FXId(void *x) {
2381
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXHeader *) x));
2511
+ static void *_p_FXShellTo_p_FXId(void *x) {
2512
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *) ((FXShell *) x));
2382
2513
  }
2383
- static void *_p_FXMatrixTo_p_FXId(void *x) {
2384
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXMatrix *) x));
2514
+ static void *_p_FXScrollAreaTo_p_FXId(void *x) {
2515
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *) ((FXScrollArea *) x));
2385
2516
  }
2386
2517
  static void *_p_FXColorWellTo_p_FXId(void *x) {
2387
2518
  return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXColorWell *) x));
2388
2519
  }
2389
- static void *_p_FXShutterItemTo_p_FXId(void *x) {
2390
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXVerticalFrame *) ((FXShutterItem *) x));
2520
+ static void *_p_FXDragCornerTo_p_FXId(void *x) {
2521
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *) ((FXDragCorner *) x));
2522
+ }
2523
+ static void *_p_FXRulerTo_p_FXId(void *x) {
2524
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXRuler *) x));
2391
2525
  }
2392
2526
  static void *_p_FXDialTo_p_FXId(void *x) {
2393
2527
  return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXDial *) x));
2394
2528
  }
2395
- static void *_p_FXToolBarTabTo_p_FXId(void *x) {
2396
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXToolBarTab *) x));
2397
- }
2398
- static void *_p_FXFrameTo_p_FXId(void *x) {
2399
- return (void *)((FXId *) (FXDrawable *)(FXWindow *) ((FXFrame *) x));
2529
+ static void *_p_FXHorizontalFrameTo_p_FXId(void *x) {
2530
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXHorizontalFrame *) x));
2400
2531
  }
2401
- static void *_p_FXTabBarTo_p_FXId(void *x) {
2402
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXTabBar *) x));
2532
+ static void *_p_FXVerticalFrameTo_p_FXId(void *x) {
2533
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXVerticalFrame *) x));
2403
2534
  }
2404
2535
  static void *_p_FXImageViewTo_p_FXId(void *x) {
2405
2536
  return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXScrollArea *) ((FXImageView *) x));
2406
2537
  }
2407
- static void *_p_FXSliderTo_p_FXId(void *x) {
2408
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXSlider *) x));
2409
- }
2410
- static void *_p_FXRealSliderTo_p_FXId(void *x) {
2411
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXRealSlider *) x));
2538
+ static void *_p_FXFontSelectorTo_p_FXId(void *x) {
2539
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXFontSelector *) x));
2412
2540
  }
2413
- static void *_p_FXSpringTo_p_FXId(void *x) {
2414
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXSpring *) x));
2541
+ static void *_p_FXColorSelectorTo_p_FXId(void *x) {
2542
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXColorSelector *) x));
2415
2543
  }
2416
- static void *_p_FXVisualTo_p_FXId(void *x) {
2417
- return (void *)((FXId *) ((FXVisual *) x));
2544
+ static void *_p_FXFileSelectorTo_p_FXId(void *x) {
2545
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXFileSelector *) x));
2418
2546
  }
2419
- static void *_p_FXColorBarTo_p_FXId(void *x) {
2420
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXColorBar *) x));
2547
+ static void *_p_FXDirSelectorTo_p_FXId(void *x) {
2548
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXDirSelector *) x));
2421
2549
  }
2422
2550
  static void *_p_FXToolBarShellTo_p_FXId(void *x) {
2423
2551
  return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXToolBarShell *) x));
2424
2552
  }
2553
+ static void *_p_FXToolBarTo_p_FXId(void *x) {
2554
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXDockBar *) ((FXToolBar *) x));
2555
+ }
2556
+ static void *_p_FXDirBoxTo_p_FXId(void *x) {
2557
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXTreeListBox *) ((FXDirBox *) x));
2558
+ }
2425
2559
  static void *_p_FXDocumentTo_p_FXObject(void *x) {
2426
2560
  return (void *)((FXObject *) ((FXDocument *) x));
2427
2561
  }
@@ -2455,9 +2589,6 @@ static void *_p_FXToolBarTabTo_p_FXObject(void *x) {
2455
2589
  static void *_p_FXDriveBoxTo_p_FXObject(void *x) {
2456
2590
  return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXListBox *) ((FXDriveBox *) x));
2457
2591
  }
2458
- static void *_p_FXIconDictTo_p_FXObject(void *x) {
2459
- return (void *)((FXObject *) (FXDict *) ((FXIconDict *) x));
2460
- }
2461
2592
  static void *_p_FXMatrixTo_p_FXObject(void *x) {
2462
2593
  return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXMatrix *) x));
2463
2594
  }
@@ -2542,6 +2673,9 @@ static void *_p_FXSliderTo_p_FXObject(void *x) {
2542
2673
  static void *_p_FXSettingsTo_p_FXObject(void *x) {
2543
2674
  return (void *)((FXObject *) (FXDict *) ((FXSettings *) x));
2544
2675
  }
2676
+ static void *_p_FXDockSiteTo_p_FXObject(void *x) {
2677
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXDockSite *) x));
2678
+ }
2545
2679
  static void *_p_FXGroupBoxTo_p_FXObject(void *x) {
2546
2680
  return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXGroupBox *) x));
2547
2681
  }
@@ -2551,14 +2685,17 @@ static void *_p_FXDebugTargetTo_p_FXObject(void *x) {
2551
2685
  static void *_p_FXDataTargetTo_p_FXObject(void *x) {
2552
2686
  return (void *)((FXObject *) ((FXDataTarget *) x));
2553
2687
  }
2554
- static void *_p_FXTreeListBoxTo_p_FXObject(void *x) {
2555
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXTreeListBox *) x));
2688
+ static void *_p_FXDockHandlerTo_p_FXObject(void *x) {
2689
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXDockHandler *) x));
2690
+ }
2691
+ static void *_p_FXCanvasTo_p_FXObject(void *x) {
2692
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *) ((FXCanvas *) x));
2556
2693
  }
2557
2694
  static void *_p_FXListBoxTo_p_FXObject(void *x) {
2558
2695
  return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXListBox *) x));
2559
2696
  }
2560
- static void *_p_FXCanvasTo_p_FXObject(void *x) {
2561
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *) ((FXCanvas *) x));
2697
+ static void *_p_FXTreeListBoxTo_p_FXObject(void *x) {
2698
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXTreeListBox *) x));
2562
2699
  }
2563
2700
  static void *_p_FXColorWheelTo_p_FXObject(void *x) {
2564
2701
  return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXColorWheel *) x));
@@ -2570,7 +2707,7 @@ static void *_p_FXScrollBarTo_p_FXObject(void *x) {
2570
2707
  return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *) ((FXScrollBar *) x));
2571
2708
  }
2572
2709
  static void *_p_FXToolBarGripTo_p_FXObject(void *x) {
2573
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *) ((FXToolBarGrip *) x));
2710
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *)(FXDockHandler *) ((FXToolBarGrip *) x));
2574
2711
  }
2575
2712
  static void *_p_FXFontTo_p_FXObject(void *x) {
2576
2713
  return (void *)((FXObject *) (FXId *) ((FXFont *) x));
@@ -2581,6 +2718,9 @@ static void *_p_FXComboBoxTo_p_FXObject(void *x) {
2581
2718
  static void *_p_FXFrameTo_p_FXObject(void *x) {
2582
2719
  return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *) ((FXFrame *) x));
2583
2720
  }
2721
+ static void *_p_FX7SegmentTo_p_FXObject(void *x) {
2722
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FX7Segment *) x));
2723
+ }
2584
2724
  static void *_p_FXStringDictTo_p_FXObject(void *x) {
2585
2725
  return (void *)((FXObject *) (FXDict *) ((FXStringDict *) x));
2586
2726
  }
@@ -2626,6 +2766,12 @@ static void *_p_FXTopWindowTo_p_FXObject(void *x) {
2626
2766
  static void *_p_FXMainWindowTo_p_FXObject(void *x) {
2627
2767
  return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXMainWindow *) x));
2628
2768
  }
2769
+ static void *_p_FXSplashWindowTo_p_FXObject(void *x) {
2770
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXSplashWindow *) x));
2771
+ }
2772
+ static void *_p_FXDockBarTo_p_FXObject(void *x) {
2773
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXDockBar *) x));
2774
+ }
2629
2775
  static void *_p_FXDictTo_p_FXObject(void *x) {
2630
2776
  return (void *)((FXObject *) ((FXDict *) x));
2631
2777
  }
@@ -2669,7 +2815,7 @@ static void *_p_FXFontSelectorTo_p_FXObject(void *x) {
2669
2815
  return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXFontSelector *) x));
2670
2816
  }
2671
2817
  static void *_p_FXToolBarTo_p_FXObject(void *x) {
2672
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXToolBar *) x));
2818
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXDockBar *) ((FXToolBar *) x));
2673
2819
  }
2674
2820
  static void *_p_FXToolBarShellTo_p_FXObject(void *x) {
2675
2821
  return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXToolBarShell *) x));
@@ -2690,7 +2836,7 @@ static void *_p_FXDriveBoxTo_p_FXWindow(void *x) {
2690
2836
  return (void *)((FXWindow *) (FXComposite *)(FXPacker *)(FXListBox *) ((FXDriveBox *) x));
2691
2837
  }
2692
2838
  static void *_p_FXToolBarTo_p_FXWindow(void *x) {
2693
- return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXToolBar *) x));
2839
+ return (void *)((FXWindow *) (FXComposite *)(FXPacker *)(FXDockBar *) ((FXToolBar *) x));
2694
2840
  }
2695
2841
  static void *_p_FXCompositeTo_p_FXWindow(void *x) {
2696
2842
  return (void *)((FXWindow *) ((FXComposite *) x));
@@ -2734,6 +2880,9 @@ static void *_p_FXTopWindowTo_p_FXWindow(void *x) {
2734
2880
  static void *_p_FXMainWindowTo_p_FXWindow(void *x) {
2735
2881
  return (void *)((FXWindow *) (FXComposite *)(FXShell *)(FXTopWindow *) ((FXMainWindow *) x));
2736
2882
  }
2883
+ static void *_p_FXSplashWindowTo_p_FXWindow(void *x) {
2884
+ return (void *)((FXWindow *) (FXComposite *)(FXShell *)(FXTopWindow *) ((FXSplashWindow *) x));
2885
+ }
2737
2886
  static void *_p_FXRulerTo_p_FXWindow(void *x) {
2738
2887
  return (void *)((FXWindow *) (FXFrame *) ((FXRuler *) x));
2739
2888
  }
@@ -2743,14 +2892,14 @@ static void *_p_FXCanvasTo_p_FXWindow(void *x) {
2743
2892
  static void *_p_FXScrollCornerTo_p_FXWindow(void *x) {
2744
2893
  return (void *)((FXWindow *) ((FXScrollCorner *) x));
2745
2894
  }
2746
- static void *_p_FXVerticalSeparatorTo_p_FXWindow(void *x) {
2747
- return (void *)((FXWindow *) (FXFrame *)(FXSeparator *) ((FXVerticalSeparator *) x));
2895
+ static void *_p_FXSeparatorTo_p_FXWindow(void *x) {
2896
+ return (void *)((FXWindow *) (FXFrame *) ((FXSeparator *) x));
2748
2897
  }
2749
2898
  static void *_p_FXHorizontalSeparatorTo_p_FXWindow(void *x) {
2750
2899
  return (void *)((FXWindow *) (FXFrame *)(FXSeparator *) ((FXHorizontalSeparator *) x));
2751
2900
  }
2752
- static void *_p_FXSeparatorTo_p_FXWindow(void *x) {
2753
- return (void *)((FXWindow *) (FXFrame *) ((FXSeparator *) x));
2901
+ static void *_p_FXVerticalSeparatorTo_p_FXWindow(void *x) {
2902
+ return (void *)((FXWindow *) (FXFrame *)(FXSeparator *) ((FXVerticalSeparator *) x));
2754
2903
  }
2755
2904
  static void *_p_FXStatusLineTo_p_FXWindow(void *x) {
2756
2905
  return (void *)((FXWindow *) (FXFrame *) ((FXStatusLine *) x));
@@ -2791,8 +2940,11 @@ static void *_p_FXBitmapFrameTo_p_FXWindow(void *x) {
2791
2940
  static void *_p_FXDirBoxTo_p_FXWindow(void *x) {
2792
2941
  return (void *)((FXWindow *) (FXComposite *)(FXPacker *)(FXTreeListBox *) ((FXDirBox *) x));
2793
2942
  }
2943
+ static void *_p_FXDockHandlerTo_p_FXWindow(void *x) {
2944
+ return (void *)((FXWindow *) (FXFrame *) ((FXDockHandler *) x));
2945
+ }
2794
2946
  static void *_p_FXToolBarGripTo_p_FXWindow(void *x) {
2795
- return (void *)((FXWindow *) ((FXToolBarGrip *) x));
2947
+ return (void *)((FXWindow *) (FXFrame *)(FXDockHandler *) ((FXToolBarGrip *) x));
2796
2948
  }
2797
2949
  static void *_p_FXImageFrameTo_p_FXWindow(void *x) {
2798
2950
  return (void *)((FXWindow *) (FXFrame *) ((FXImageFrame *) x));
@@ -2824,6 +2976,9 @@ static void *_p_FXShutterTo_p_FXWindow(void *x) {
2824
2976
  static void *_p_FXProgressBarTo_p_FXWindow(void *x) {
2825
2977
  return (void *)((FXWindow *) (FXFrame *) ((FXProgressBar *) x));
2826
2978
  }
2979
+ static void *_p_FXDockSiteTo_p_FXWindow(void *x) {
2980
+ return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXDockSite *) x));
2981
+ }
2827
2982
  static void *_p_FXListBoxTo_p_FXWindow(void *x) {
2828
2983
  return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXListBox *) x));
2829
2984
  }
@@ -2848,12 +3003,18 @@ static void *_p_FXDialTo_p_FXWindow(void *x) {
2848
3003
  static void *_p_FXToolBarTabTo_p_FXWindow(void *x) {
2849
3004
  return (void *)((FXWindow *) (FXFrame *) ((FXToolBarTab *) x));
2850
3005
  }
3006
+ static void *_p_FXDockBarTo_p_FXWindow(void *x) {
3007
+ return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXDockBar *) x));
3008
+ }
2851
3009
  static void *_p_FXFrameTo_p_FXWindow(void *x) {
2852
3010
  return (void *)((FXWindow *) ((FXFrame *) x));
2853
3011
  }
2854
3012
  static void *_p_FXTabBarTo_p_FXWindow(void *x) {
2855
3013
  return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXTabBar *) x));
2856
3014
  }
3015
+ static void *_p_FX7SegmentTo_p_FXWindow(void *x) {
3016
+ return (void *)((FXWindow *) (FXFrame *) ((FX7Segment *) x));
3017
+ }
2857
3018
  static void *_p_FXImageViewTo_p_FXWindow(void *x) {
2858
3019
  return (void *)((FXWindow *) (FXComposite *)(FXScrollArea *) ((FXImageView *) x));
2859
3020
  }
@@ -2876,7 +3037,7 @@ static void *_p_FXDriveBoxTo_p_FXComposite(void *x) {
2876
3037
  return (void *)((FXComposite *) (FXPacker *)(FXListBox *) ((FXDriveBox *) x));
2877
3038
  }
2878
3039
  static void *_p_FXToolBarTo_p_FXComposite(void *x) {
2879
- return (void *)((FXComposite *) (FXPacker *) ((FXToolBar *) x));
3040
+ return (void *)((FXComposite *) (FXPacker *)(FXDockBar *) ((FXToolBar *) x));
2880
3041
  }
2881
3042
  static void *_p_FXToolTipTo_p_FXComposite(void *x) {
2882
3043
  return (void *)((FXComposite *) (FXShell *) ((FXToolTip *) x));
@@ -2911,6 +3072,9 @@ static void *_p_FXTopWindowTo_p_FXComposite(void *x) {
2911
3072
  static void *_p_FXMainWindowTo_p_FXComposite(void *x) {
2912
3073
  return (void *)((FXComposite *) (FXShell *)(FXTopWindow *) ((FXMainWindow *) x));
2913
3074
  }
3075
+ static void *_p_FXSplashWindowTo_p_FXComposite(void *x) {
3076
+ return (void *)((FXComposite *) (FXShell *)(FXTopWindow *) ((FXSplashWindow *) x));
3077
+ }
2914
3078
  static void *_p_FXComboBoxTo_p_FXComposite(void *x) {
2915
3079
  return (void *)((FXComposite *) (FXPacker *) ((FXComboBox *) x));
2916
3080
  }
@@ -2944,14 +3108,14 @@ static void *_p_FXTableTo_p_FXComposite(void *x) {
2944
3108
  static void *_p_FXSwitcherTo_p_FXComposite(void *x) {
2945
3109
  return (void *)((FXComposite *) (FXPacker *) ((FXSwitcher *) x));
2946
3110
  }
2947
- static void *_p_FXColorSelectorTo_p_FXComposite(void *x) {
2948
- return (void *)((FXComposite *) (FXPacker *) ((FXColorSelector *) x));
3111
+ static void *_p_FXDirSelectorTo_p_FXComposite(void *x) {
3112
+ return (void *)((FXComposite *) (FXPacker *) ((FXDirSelector *) x));
2949
3113
  }
2950
3114
  static void *_p_FXFileSelectorTo_p_FXComposite(void *x) {
2951
3115
  return (void *)((FXComposite *) (FXPacker *) ((FXFileSelector *) x));
2952
3116
  }
2953
- static void *_p_FXDirSelectorTo_p_FXComposite(void *x) {
2954
- return (void *)((FXComposite *) (FXPacker *) ((FXDirSelector *) x));
3117
+ static void *_p_FXColorSelectorTo_p_FXComposite(void *x) {
3118
+ return (void *)((FXComposite *) (FXPacker *) ((FXColorSelector *) x));
2955
3119
  }
2956
3120
  static void *_p_FXFontSelectorTo_p_FXComposite(void *x) {
2957
3121
  return (void *)((FXComposite *) (FXPacker *) ((FXFontSelector *) x));
@@ -2959,6 +3123,9 @@ static void *_p_FXFontSelectorTo_p_FXComposite(void *x) {
2959
3123
  static void *_p_FXShutterTo_p_FXComposite(void *x) {
2960
3124
  return (void *)((FXComposite *) (FXPacker *)(FXVerticalFrame *) ((FXShutter *) x));
2961
3125
  }
3126
+ static void *_p_FXDockSiteTo_p_FXComposite(void *x) {
3127
+ return (void *)((FXComposite *) (FXPacker *) ((FXDockSite *) x));
3128
+ }
2962
3129
  static void *_p_FXTreeListBoxTo_p_FXComposite(void *x) {
2963
3130
  return (void *)((FXComposite *) (FXPacker *) ((FXTreeListBox *) x));
2964
3131
  }
@@ -2971,6 +3138,9 @@ static void *_p_FXMatrixTo_p_FXComposite(void *x) {
2971
3138
  static void *_p_FXShutterItemTo_p_FXComposite(void *x) {
2972
3139
  return (void *)((FXComposite *) (FXPacker *)(FXVerticalFrame *) ((FXShutterItem *) x));
2973
3140
  }
3141
+ static void *_p_FXDockBarTo_p_FXComposite(void *x) {
3142
+ return (void *)((FXComposite *) (FXPacker *) ((FXDockBar *) x));
3143
+ }
2974
3144
  static void *_p_FXTabBarTo_p_FXComposite(void *x) {
2975
3145
  return (void *)((FXComposite *) (FXPacker *) ((FXTabBar *) x));
2976
3146
  }
@@ -2993,7 +3163,7 @@ static void *_p_FXDriveBoxTo_p_FXDrawable(void *x) {
2993
3163
  return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *)(FXListBox *) ((FXDriveBox *) x));
2994
3164
  }
2995
3165
  static void *_p_FXToolBarTo_p_FXDrawable(void *x) {
2996
- return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXToolBar *) x));
3166
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *)(FXDockBar *) ((FXToolBar *) x));
2997
3167
  }
2998
3168
  static void *_p_FXCompositeTo_p_FXDrawable(void *x) {
2999
3169
  return (void *)((FXDrawable *) (FXWindow *) ((FXComposite *) x));
@@ -3040,6 +3210,9 @@ static void *_p_FXTopWindowTo_p_FXDrawable(void *x) {
3040
3210
  static void *_p_FXMainWindowTo_p_FXDrawable(void *x) {
3041
3211
  return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXMainWindow *) x));
3042
3212
  }
3213
+ static void *_p_FXSplashWindowTo_p_FXDrawable(void *x) {
3214
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXSplashWindow *) x));
3215
+ }
3043
3216
  static void *_p_FXRulerTo_p_FXDrawable(void *x) {
3044
3217
  return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXRuler *) x));
3045
3218
  }
@@ -3049,12 +3222,12 @@ static void *_p_FXCanvasTo_p_FXDrawable(void *x) {
3049
3222
  static void *_p_FXScrollCornerTo_p_FXDrawable(void *x) {
3050
3223
  return (void *)((FXDrawable *) (FXWindow *) ((FXScrollCorner *) x));
3051
3224
  }
3052
- static void *_p_FXHorizontalSeparatorTo_p_FXDrawable(void *x) {
3053
- return (void *)((FXDrawable *) (FXWindow *)(FXFrame *)(FXSeparator *) ((FXHorizontalSeparator *) x));
3054
- }
3055
3225
  static void *_p_FXSeparatorTo_p_FXDrawable(void *x) {
3056
3226
  return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXSeparator *) x));
3057
3227
  }
3228
+ static void *_p_FXHorizontalSeparatorTo_p_FXDrawable(void *x) {
3229
+ return (void *)((FXDrawable *) (FXWindow *)(FXFrame *)(FXSeparator *) ((FXHorizontalSeparator *) x));
3230
+ }
3058
3231
  static void *_p_FXVerticalSeparatorTo_p_FXDrawable(void *x) {
3059
3232
  return (void *)((FXDrawable *) (FXWindow *)(FXFrame *)(FXSeparator *) ((FXVerticalSeparator *) x));
3060
3233
  }
@@ -3097,8 +3270,11 @@ static void *_p_FXBitmapFrameTo_p_FXDrawable(void *x) {
3097
3270
  static void *_p_FXDirBoxTo_p_FXDrawable(void *x) {
3098
3271
  return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *)(FXTreeListBox *) ((FXDirBox *) x));
3099
3272
  }
3273
+ static void *_p_FXDockHandlerTo_p_FXDrawable(void *x) {
3274
+ return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXDockHandler *) x));
3275
+ }
3100
3276
  static void *_p_FXToolBarGripTo_p_FXDrawable(void *x) {
3101
- return (void *)((FXDrawable *) (FXWindow *) ((FXToolBarGrip *) x));
3277
+ return (void *)((FXDrawable *) (FXWindow *)(FXFrame *)(FXDockHandler *) ((FXToolBarGrip *) x));
3102
3278
  }
3103
3279
  static void *_p_FXImageFrameTo_p_FXDrawable(void *x) {
3104
3280
  return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXImageFrame *) x));
@@ -3130,6 +3306,9 @@ static void *_p_FXShutterTo_p_FXDrawable(void *x) {
3130
3306
  static void *_p_FXProgressBarTo_p_FXDrawable(void *x) {
3131
3307
  return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXProgressBar *) x));
3132
3308
  }
3309
+ static void *_p_FXDockSiteTo_p_FXDrawable(void *x) {
3310
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXDockSite *) x));
3311
+ }
3133
3312
  static void *_p_FXListBoxTo_p_FXDrawable(void *x) {
3134
3313
  return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXListBox *) x));
3135
3314
  }
@@ -3154,12 +3333,18 @@ static void *_p_FXDialTo_p_FXDrawable(void *x) {
3154
3333
  static void *_p_FXToolBarTabTo_p_FXDrawable(void *x) {
3155
3334
  return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXToolBarTab *) x));
3156
3335
  }
3336
+ static void *_p_FXDockBarTo_p_FXDrawable(void *x) {
3337
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXDockBar *) x));
3338
+ }
3157
3339
  static void *_p_FXFrameTo_p_FXDrawable(void *x) {
3158
3340
  return (void *)((FXDrawable *) (FXWindow *) ((FXFrame *) x));
3159
3341
  }
3160
3342
  static void *_p_FXTabBarTo_p_FXDrawable(void *x) {
3161
3343
  return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXTabBar *) x));
3162
3344
  }
3345
+ static void *_p_FX7SegmentTo_p_FXDrawable(void *x) {
3346
+ return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FX7Segment *) x));
3347
+ }
3163
3348
  static void *_p_FXImageViewTo_p_FXDrawable(void *x) {
3164
3349
  return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXScrollArea *) ((FXImageView *) x));
3165
3350
  }
@@ -3185,19 +3370,21 @@ static void *_p_FXDCWindowTo_p_FXDC(void *x) {
3185
3370
  return (void *)((FXDC *) ((FXDCWindow *) x));
3186
3371
  }
3187
3372
  static swig_type_info _swigt__p_FXDC[] = {{"_p_FXDC", 0, "FXDC *", 0, 0, 0, 0},{"_p_FXDCPrint", _p_FXDCPrintTo_p_FXDC, 0, 0, 0, 0, 0},{"_p_FXDC", 0, 0, 0, 0, 0, 0},{"_p_FXDCWindow", _p_FXDCWindowTo_p_FXDC, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
3188
- static swig_type_info _swigt__p_FXObject[] = {{"_p_FXObject", 0, "FXObject *", 0, 0, 0, 0},{"_p_FXDocument", _p_FXDocumentTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXRegistry", _p_FXRegistryTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXHeaderItem", _p_FXHeaderItemTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXShutterItem", _p_FXShutterItemTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXColorBar", _p_FXColorBarTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXTableItem", _p_FXTableItemTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXTabBar", _p_FXTabBarTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXSwitcher", _p_FXSwitcherTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXTextField", _p_FXTextFieldTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXToolBarTab", _p_FXToolBarTabTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXDriveBox", _p_FXDriveBoxTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXIconDict", _p_FXIconDictTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXMatrix", _p_FXMatrixTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXFileDict", _p_FXFileDictTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXRecentFiles", _p_FXRecentFilesTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXScrollCorner", _p_FXScrollCornerTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXArrowButton", _p_FXArrowButtonTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXPopup", _p_FXPopupTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXDrawable", _p_FXDrawableTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXFont", _p_FXFontTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXHeader", _p_FXHeaderTo_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_FXSpring", _p_FXSpringTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXApp", _p_FXAppTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXPacker", _p_FXPackerTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXTabBook", _p_FXTabBookTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXImageFrame", _p_FXImageFrameTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXVerticalSeparator", _p_FXVerticalSeparatorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXHorizontalSeparator", _p_FXHorizontalSeparatorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXSeparator", _p_FXSeparatorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXProgressBar", _p_FXProgressBarTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXShutter", _p_FXShutterTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXTable", _p_FXTableTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXToolTip", _p_FXToolTipTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXComposite", _p_FXCompositeTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXDict", _p_FXDictTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXBitmapFrame", _p_FXBitmapFrameTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXRealSlider", _p_FXRealSliderTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXSlider", _p_FXSliderTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXSettings", _p_FXSettingsTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXGroupBox", _p_FXGroupBoxTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXDataTarget", _p_FXDataTargetTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXDebugTarget", _p_FXDebugTargetTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXTreeListBox", _p_FXTreeListBoxTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXListBox", _p_FXListBoxTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXCanvas", _p_FXCanvasTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXId", _p_FXIdTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXColorWheel", _p_FXColorWheelTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXDial", _p_FXDialTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXToolBarGrip", _p_FXToolBarGripTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXScrollBar", _p_FXScrollBarTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXVisual", _p_FXVisualTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXComboBox", _p_FXComboBoxTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXFrame", _p_FXFrameTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXStatusBar", _p_FXStatusBarTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXStringDict", _p_FXStringDictTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXDelegator", _p_FXDelegatorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXAccelTable", _p_FXAccelTableTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXObject", 0, 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_FXRealSpinner", _p_FXRealSpinnerTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXSpinner", _p_FXSpinnerTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXStatusLine", _p_FXStatusLineTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXWindow", _p_FXWindowTo_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_FXShell", _p_FXShellTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXScrollArea", _p_FXScrollAreaTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXColorWell", _p_FXColorWellTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXDragCorner", _p_FXDragCornerTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXRuler", _p_FXRulerTo_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_FXImageView", _p_FXImageViewTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXColorSelector", _p_FXColorSelectorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXFileSelector", _p_FXFileSelectorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXDirSelector", _p_FXDirSelectorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXFontSelector", _p_FXFontSelectorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXToolBarShell", _p_FXToolBarShellTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXToolBar", _p_FXToolBarTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXDirBox", _p_FXDirBoxTo_p_FXObject, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
3373
+ static swig_type_info _swigt__p_FXObject[] = {{"_p_FXObject", 0, "FXObject *", 0, 0, 0, 0},{"_p_FXDocument", _p_FXDocumentTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXRegistry", _p_FXRegistryTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXHeaderItem", _p_FXHeaderItemTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXShutterItem", _p_FXShutterItemTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXColorBar", _p_FXColorBarTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXTableItem", _p_FXTableItemTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXTabBar", _p_FXTabBarTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXSwitcher", _p_FXSwitcherTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXTextField", _p_FXTextFieldTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXToolBarTab", _p_FXToolBarTabTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXDriveBox", _p_FXDriveBoxTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXMatrix", _p_FXMatrixTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXFileDict", _p_FXFileDictTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXRecentFiles", _p_FXRecentFilesTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXScrollCorner", _p_FXScrollCornerTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXArrowButton", _p_FXArrowButtonTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXPopup", _p_FXPopupTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXDrawable", _p_FXDrawableTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXFont", _p_FXFontTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXHeader", _p_FXHeaderTo_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_FXSpring", _p_FXSpringTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXPacker", _p_FXPackerTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXTabBook", _p_FXTabBookTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXApp", _p_FXAppTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXImageFrame", _p_FXImageFrameTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXSeparator", _p_FXSeparatorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXHorizontalSeparator", _p_FXHorizontalSeparatorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXVerticalSeparator", _p_FXVerticalSeparatorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXProgressBar", _p_FXProgressBarTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXShutter", _p_FXShutterTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXTable", _p_FXTableTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXToolTip", _p_FXToolTipTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXComposite", _p_FXCompositeTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXDict", _p_FXDictTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXBitmapFrame", _p_FXBitmapFrameTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXSlider", _p_FXSliderTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXRealSlider", _p_FXRealSliderTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXSettings", _p_FXSettingsTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXDockSite", _p_FXDockSiteTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXGroupBox", _p_FXGroupBoxTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXDataTarget", _p_FXDataTargetTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXDebugTarget", _p_FXDebugTargetTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXDockHandler", _p_FXDockHandlerTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXTreeListBox", _p_FXTreeListBoxTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXListBox", _p_FXListBoxTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXCanvas", _p_FXCanvasTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXId", _p_FXIdTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXColorWheel", _p_FXColorWheelTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXDial", _p_FXDialTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXToolBarGrip", _p_FXToolBarGripTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXScrollBar", _p_FXScrollBarTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXVisual", _p_FXVisualTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXComboBox", _p_FXComboBoxTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXFrame", _p_FXFrameTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FX7Segment", _p_FX7SegmentTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXStatusBar", _p_FXStatusBarTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXStringDict", _p_FXStringDictTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXDelegator", _p_FXDelegatorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXAccelTable", _p_FXAccelTableTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXObject", 0, 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_FXRealSpinner", _p_FXRealSpinnerTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXSpinner", _p_FXSpinnerTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXStatusLine", _p_FXStatusLineTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXWindow", _p_FXWindowTo_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_FXSplashWindow", _p_FXSplashWindowTo_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_FXDockBar", _p_FXDockBarTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXShell", _p_FXShellTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXScrollArea", _p_FXScrollAreaTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXColorWell", _p_FXColorWellTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXDragCorner", _p_FXDragCornerTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXRuler", _p_FXRulerTo_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_FXImageView", _p_FXImageViewTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXDirSelector", _p_FXDirSelectorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXFileSelector", _p_FXFileSelectorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXColorSelector", _p_FXColorSelectorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXFontSelector", _p_FXFontSelectorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXToolBarShell", _p_FXToolBarShellTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXToolBar", _p_FXToolBarTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXDirBox", _p_FXDirBoxTo_p_FXObject, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
3189
3374
  static swig_type_info _swigt__p_FXScrollArea[] = {{"_p_FXScrollArea", 0, "FXScrollArea *", 0, 0, 0, 0},{"_p_FXScrollWindow", _p_FXScrollWindowTo_p_FXScrollArea, 0, 0, 0, 0, 0},{"_p_FXScrollArea", 0, 0, 0, 0, 0, 0},{"_p_FXImageView", _p_FXImageViewTo_p_FXScrollArea, 0, 0, 0, 0, 0},{"_p_FXTable", _p_FXTableTo_p_FXScrollArea, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
3190
- static swig_type_info _swigt__p_FXWindow[] = {{"_p_FXWindow", 0, "FXWindow *", 0, 0, 0, 0},{"_p_FXDriveBox", _p_FXDriveBoxTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXDial", _p_FXDialTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXToolBar", _p_FXToolBarTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXComposite", _p_FXCompositeTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXToolTip", _p_FXToolTipTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXTabBook", _p_FXTabBookTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXTextField", _p_FXTextFieldTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXArrowButton", _p_FXArrowButtonTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXGroupBox", _p_FXGroupBoxTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXShell", _p_FXShellTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXStatusBar", _p_FXStatusBarTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXScrollArea", _p_FXScrollAreaTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXPopup", _p_FXPopupTo_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_FXWindow", 0, 0, 0, 0, 0, 0},{"_p_FXScrollWindow", _p_FXScrollWindowTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXScrollCorner", _p_FXScrollCornerTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXRuler", _p_FXRulerTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXCanvas", _p_FXCanvasTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXComboBox", _p_FXComboBoxTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXSeparator", _p_FXSeparatorTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXHorizontalSeparator", _p_FXHorizontalSeparatorTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXVerticalSeparator", _p_FXVerticalSeparatorTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXStatusLine", _p_FXStatusLineTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXHorizontalFrame", _p_FXHorizontalFrameTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXVerticalFrame", _p_FXVerticalFrameTo_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_FXRealSpinner", _p_FXRealSpinnerTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXSpinner", _p_FXSpinnerTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXPacker", _p_FXPackerTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXScrollBar", _p_FXScrollBarTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXColorWheel", _p_FXColorWheelTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXBitmapFrame", _p_FXBitmapFrameTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXDirBox", _p_FXDirBoxTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXToolBarGrip", _p_FXToolBarGripTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXTable", _p_FXTableTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXImageFrame", _p_FXImageFrameTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXDragCorner", _p_FXDragCornerTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXSwitcher", _p_FXSwitcherTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXColorSelector", _p_FXColorSelectorTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXFileSelector", _p_FXFileSelectorTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXDirSelector", _p_FXDirSelectorTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXFontSelector", _p_FXFontSelectorTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXShutter", _p_FXShutterTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXProgressBar", _p_FXProgressBarTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXListBox", _p_FXListBoxTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXTreeListBox", _p_FXTreeListBoxTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXHeader", _p_FXHeaderTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXMatrix", _p_FXMatrixTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXShutterItem", _p_FXShutterItemTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXColorWell", _p_FXColorWellTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXToolBarTab", _p_FXToolBarTabTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXTabBar", _p_FXTabBarTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXFrame", _p_FXFrameTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXImageView", _p_FXImageViewTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXSlider", _p_FXSliderTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXRealSlider", _p_FXRealSliderTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXSpring", _p_FXSpringTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXColorBar", _p_FXColorBarTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXToolBarShell", _p_FXToolBarShellTo_p_FXWindow, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
3191
- static swig_type_info _swigt__p_FXComposite[] = {{"_p_FXComposite", 0, "FXComposite *", 0, 0, 0, 0},{"_p_FXDriveBox", _p_FXDriveBoxTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXToolBar", _p_FXToolBarTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXComposite", 0, 0, 0, 0, 0, 0},{"_p_FXToolTip", _p_FXToolTipTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXTabBook", _p_FXTabBookTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXGroupBox", _p_FXGroupBoxTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXShell", _p_FXShellTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXStatusBar", _p_FXStatusBarTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXScrollArea", _p_FXScrollAreaTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXPopup", _p_FXPopupTo_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_FXScrollWindow", _p_FXScrollWindowTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXRootWindow", _p_FXRootWindowTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXComboBox", _p_FXComboBoxTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXHorizontalFrame", _p_FXHorizontalFrameTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXVerticalFrame", _p_FXVerticalFrameTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FX4Splitter", _p_FX4SplitterTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXSplitter", _p_FXSplitterTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXRealSpinner", _p_FXRealSpinnerTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXSpinner", _p_FXSpinnerTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXPacker", _p_FXPackerTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXDirBox", _p_FXDirBoxTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXTable", _p_FXTableTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXSwitcher", _p_FXSwitcherTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXColorSelector", _p_FXColorSelectorTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXFileSelector", _p_FXFileSelectorTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXDirSelector", _p_FXDirSelectorTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXFontSelector", _p_FXFontSelectorTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXShutter", _p_FXShutterTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXTreeListBox", _p_FXTreeListBoxTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXListBox", _p_FXListBoxTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXMatrix", _p_FXMatrixTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXShutterItem", _p_FXShutterItemTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXTabBar", _p_FXTabBarTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXImageView", _p_FXImageViewTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXSpring", _p_FXSpringTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXToolBarShell", _p_FXToolBarShellTo_p_FXComposite, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
3192
- static swig_type_info _swigt__p_FXId[] = {{"_p_FXId", 0, "FXId *", 0, 0, 0, 0},{"_p_FXDriveBox", _p_FXDriveBoxTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXDial", _p_FXDialTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXToolBar", _p_FXToolBarTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXComposite", _p_FXCompositeTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXToolTip", _p_FXToolTipTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXTabBook", _p_FXTabBookTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXTextField", _p_FXTextFieldTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXId", 0, 0, 0, 0, 0, 0},{"_p_FXArrowButton", _p_FXArrowButtonTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXGroupBox", _p_FXGroupBoxTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXShell", _p_FXShellTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXStatusBar", _p_FXStatusBarTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXScrollArea", _p_FXScrollAreaTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXPopup", _p_FXPopupTo_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_FXScrollWindow", _p_FXScrollWindowTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXScrollCorner", _p_FXScrollCornerTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXWindow", _p_FXWindowTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXRuler", _p_FXRulerTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXCanvas", _p_FXCanvasTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXComboBox", _p_FXComboBoxTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXSeparator", _p_FXSeparatorTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXHorizontalSeparator", _p_FXHorizontalSeparatorTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXVerticalSeparator", _p_FXVerticalSeparatorTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXStatusLine", _p_FXStatusLineTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXHorizontalFrame", _p_FXHorizontalFrameTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXVerticalFrame", _p_FXVerticalFrameTo_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_FXRealSpinner", _p_FXRealSpinnerTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXSpinner", _p_FXSpinnerTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXPacker", _p_FXPackerTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXScrollBar", _p_FXScrollBarTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXColorWheel", _p_FXColorWheelTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXBitmapFrame", _p_FXBitmapFrameTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXDirBox", _p_FXDirBoxTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXToolBarGrip", _p_FXToolBarGripTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXTable", _p_FXTableTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXImageFrame", _p_FXImageFrameTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXDragCorner", _p_FXDragCornerTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXSwitcher", _p_FXSwitcherTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXColorSelector", _p_FXColorSelectorTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXFileSelector", _p_FXFileSelectorTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXDirSelector", _p_FXDirSelectorTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXFontSelector", _p_FXFontSelectorTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXShutter", _p_FXShutterTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXProgressBar", _p_FXProgressBarTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXDrawable", _p_FXDrawableTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXCursor", _p_FXCursorTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXCURCursor", _p_FXCURCursorTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXGIFCursor", _p_FXGIFCursorTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXListBox", _p_FXListBoxTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXTreeListBox", _p_FXTreeListBoxTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXHeader", _p_FXHeaderTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXMatrix", _p_FXMatrixTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXShutterItem", _p_FXShutterItemTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXColorWell", _p_FXColorWellTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXToolBarTab", _p_FXToolBarTabTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXTabBar", _p_FXTabBarTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXFrame", _p_FXFrameTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXFont", _p_FXFontTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXImageView", _p_FXImageViewTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXSlider", _p_FXSliderTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXRealSlider", _p_FXRealSliderTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXSpring", _p_FXSpringTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXVisual", _p_FXVisualTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXColorBar", _p_FXColorBarTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXToolBarShell", _p_FXToolBarShellTo_p_FXId, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
3375
+ static swig_type_info _swigt__p_FXWindow[] = {{"_p_FXWindow", 0, "FXWindow *", 0, 0, 0, 0},{"_p_FXDriveBox", _p_FXDriveBoxTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXDial", _p_FXDialTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXToolBar", _p_FXToolBarTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXComposite", _p_FXCompositeTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXToolTip", _p_FXToolTipTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXTabBook", _p_FXTabBookTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXTextField", _p_FXTextFieldTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXArrowButton", _p_FXArrowButtonTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXGroupBox", _p_FXGroupBoxTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXShell", _p_FXShellTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXStatusBar", _p_FXStatusBarTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXScrollArea", _p_FXScrollAreaTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXPopup", _p_FXPopupTo_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_FXSplashWindow", _p_FXSplashWindowTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXWindow", 0, 0, 0, 0, 0, 0},{"_p_FXScrollWindow", _p_FXScrollWindowTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXScrollCorner", _p_FXScrollCornerTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXRuler", _p_FXRulerTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXCanvas", _p_FXCanvasTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXComboBox", _p_FXComboBoxTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXVerticalSeparator", _p_FXVerticalSeparatorTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXHorizontalSeparator", _p_FXHorizontalSeparatorTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXSeparator", _p_FXSeparatorTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXStatusLine", _p_FXStatusLineTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXHorizontalFrame", _p_FXHorizontalFrameTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXVerticalFrame", _p_FXVerticalFrameTo_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_FXRealSpinner", _p_FXRealSpinnerTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXSpinner", _p_FXSpinnerTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXPacker", _p_FXPackerTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXScrollBar", _p_FXScrollBarTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXColorWheel", _p_FXColorWheelTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXBitmapFrame", _p_FXBitmapFrameTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXDirBox", _p_FXDirBoxTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXDockHandler", _p_FXDockHandlerTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXToolBarGrip", _p_FXToolBarGripTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXTable", _p_FXTableTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXImageFrame", _p_FXImageFrameTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXDragCorner", _p_FXDragCornerTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXSwitcher", _p_FXSwitcherTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXDirSelector", _p_FXDirSelectorTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXFileSelector", _p_FXFileSelectorTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXColorSelector", _p_FXColorSelectorTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXFontSelector", _p_FXFontSelectorTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXShutter", _p_FXShutterTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXProgressBar", _p_FXProgressBarTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXDockSite", _p_FXDockSiteTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXListBox", _p_FXListBoxTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXTreeListBox", _p_FXTreeListBoxTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXHeader", _p_FXHeaderTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXMatrix", _p_FXMatrixTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXShutterItem", _p_FXShutterItemTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXColorWell", _p_FXColorWellTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXToolBarTab", _p_FXToolBarTabTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXDockBar", _p_FXDockBarTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXTabBar", _p_FXTabBarTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXFrame", _p_FXFrameTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXImageView", _p_FXImageViewTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FX7Segment", _p_FX7SegmentTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXSlider", _p_FXSliderTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXRealSlider", _p_FXRealSliderTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXSpring", _p_FXSpringTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXColorBar", _p_FXColorBarTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXToolBarShell", _p_FXToolBarShellTo_p_FXWindow, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
3376
+ static swig_type_info _swigt__p_FXComposite[] = {{"_p_FXComposite", 0, "FXComposite *", 0, 0, 0, 0},{"_p_FXDriveBox", _p_FXDriveBoxTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXToolBar", _p_FXToolBarTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXComposite", 0, 0, 0, 0, 0, 0},{"_p_FXToolTip", _p_FXToolTipTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXTabBook", _p_FXTabBookTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXGroupBox", _p_FXGroupBoxTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXShell", _p_FXShellTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXStatusBar", _p_FXStatusBarTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXScrollArea", _p_FXScrollAreaTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXPopup", _p_FXPopupTo_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_FXSplashWindow", _p_FXSplashWindowTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXComboBox", _p_FXComboBoxTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXHorizontalFrame", _p_FXHorizontalFrameTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXVerticalFrame", _p_FXVerticalFrameTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FX4Splitter", _p_FX4SplitterTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXSplitter", _p_FXSplitterTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXRealSpinner", _p_FXRealSpinnerTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXSpinner", _p_FXSpinnerTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXPacker", _p_FXPackerTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXDirBox", _p_FXDirBoxTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXTable", _p_FXTableTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXSwitcher", _p_FXSwitcherTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXDirSelector", _p_FXDirSelectorTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXFileSelector", _p_FXFileSelectorTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXColorSelector", _p_FXColorSelectorTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXFontSelector", _p_FXFontSelectorTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXShutter", _p_FXShutterTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXDockSite", _p_FXDockSiteTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXListBox", _p_FXListBoxTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXTreeListBox", _p_FXTreeListBoxTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXMatrix", _p_FXMatrixTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXShutterItem", _p_FXShutterItemTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXDockBar", _p_FXDockBarTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXTabBar", _p_FXTabBarTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXImageView", _p_FXImageViewTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXSpring", _p_FXSpringTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXToolBarShell", _p_FXToolBarShellTo_p_FXComposite, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
3377
+ 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}};
3378
+ static swig_type_info _swigt__p_FXId[] = {{"_p_FXId", 0, "FXId *", 0, 0, 0, 0},{"_p_FXShutterItem", _p_FXShutterItemTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXColorBar", _p_FXColorBarTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXTabBar", _p_FXTabBarTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXSwitcher", _p_FXSwitcherTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXTextField", _p_FXTextFieldTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXToolBarTab", _p_FXToolBarTabTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXDriveBox", _p_FXDriveBoxTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXMatrix", _p_FXMatrixTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXScrollCorner", _p_FXScrollCornerTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXArrowButton", _p_FXArrowButtonTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXPopup", _p_FXPopupTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXDrawable", _p_FXDrawableTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXFont", _p_FXFontTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXHeader", _p_FXHeaderTo_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_FXSpring", _p_FXSpringTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXPacker", _p_FXPackerTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXTabBook", _p_FXTabBookTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXImageFrame", _p_FXImageFrameTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXSeparator", _p_FXSeparatorTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXHorizontalSeparator", _p_FXHorizontalSeparatorTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXVerticalSeparator", _p_FXVerticalSeparatorTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXProgressBar", _p_FXProgressBarTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXShutter", _p_FXShutterTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXTable", _p_FXTableTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXToolTip", _p_FXToolTipTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXComposite", _p_FXCompositeTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXBitmapFrame", _p_FXBitmapFrameTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXRealSlider", _p_FXRealSliderTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXSlider", _p_FXSliderTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXDockSite", _p_FXDockSiteTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXGroupBox", _p_FXGroupBoxTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXDockHandler", _p_FXDockHandlerTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXTreeListBox", _p_FXTreeListBoxTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXListBox", _p_FXListBoxTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXCanvas", _p_FXCanvasTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXId", 0, 0, 0, 0, 0, 0},{"_p_FXColorWheel", _p_FXColorWheelTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXDial", _p_FXDialTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXVisual", _p_FXVisualTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXToolBarGrip", _p_FXToolBarGripTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXScrollBar", _p_FXScrollBarTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXComboBox", _p_FXComboBoxTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXFrame", _p_FXFrameTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FX7Segment", _p_FX7SegmentTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXStatusBar", _p_FXStatusBarTo_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_FXGIFCursor", _p_FXGIFCursorTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXRealSpinner", _p_FXRealSpinnerTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXSpinner", _p_FXSpinnerTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXStatusLine", _p_FXStatusLineTo_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_FXSplashWindow", _p_FXSplashWindowTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXRootWindow", _p_FXRootWindowTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXTopWindow", _p_FXTopWindowTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXMainWindow", _p_FXMainWindowTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXDockBar", _p_FXDockBarTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXShell", _p_FXShellTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXScrollArea", _p_FXScrollAreaTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXColorWell", _p_FXColorWellTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXDragCorner", _p_FXDragCornerTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXRuler", _p_FXRulerTo_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_FXImageView", _p_FXImageViewTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXDirSelector", _p_FXDirSelectorTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXFileSelector", _p_FXFileSelectorTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXColorSelector", _p_FXColorSelectorTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXFontSelector", _p_FXFontSelectorTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXToolBarShell", _p_FXToolBarShellTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXToolBar", _p_FXToolBarTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXDirBox", _p_FXDirBoxTo_p_FXId, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
3193
3379
  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}};
3194
3380
  static swig_type_info _swigt__p_FXTable[] = {{"_p_FXTable", 0, "FXTable *", 0, 0, 0, 0},{"_p_FXTable", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
3195
3381
  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}};
3196
- static swig_type_info _swigt__p_FXDrawable[] = {{"_p_FXDrawable", 0, "FXDrawable *", 0, 0, 0, 0},{"_p_FXDriveBox", _p_FXDriveBoxTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXDial", _p_FXDialTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXToolBar", _p_FXToolBarTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXComposite", _p_FXCompositeTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXToolTip", _p_FXToolTipTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXTabBook", _p_FXTabBookTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXTextField", _p_FXTextFieldTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXArrowButton", _p_FXArrowButtonTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXGroupBox", _p_FXGroupBoxTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXShell", _p_FXShellTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXStatusBar", _p_FXStatusBarTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXScrollArea", _p_FXScrollAreaTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXPopup", _p_FXPopupTo_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_FXScrollWindow", _p_FXScrollWindowTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXScrollCorner", _p_FXScrollCornerTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXWindow", _p_FXWindowTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXRuler", _p_FXRulerTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXCanvas", _p_FXCanvasTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXComboBox", _p_FXComboBoxTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXSeparator", _p_FXSeparatorTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXHorizontalSeparator", _p_FXHorizontalSeparatorTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXVerticalSeparator", _p_FXVerticalSeparatorTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXStatusLine", _p_FXStatusLineTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXHorizontalFrame", _p_FXHorizontalFrameTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXVerticalFrame", _p_FXVerticalFrameTo_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_FXRealSpinner", _p_FXRealSpinnerTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXSpinner", _p_FXSpinnerTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXPacker", _p_FXPackerTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXScrollBar", _p_FXScrollBarTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXColorWheel", _p_FXColorWheelTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXBitmapFrame", _p_FXBitmapFrameTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXDirBox", _p_FXDirBoxTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXToolBarGrip", _p_FXToolBarGripTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXTable", _p_FXTableTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXImageFrame", _p_FXImageFrameTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXDragCorner", _p_FXDragCornerTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXSwitcher", _p_FXSwitcherTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXColorSelector", _p_FXColorSelectorTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXFileSelector", _p_FXFileSelectorTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXDirSelector", _p_FXDirSelectorTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXFontSelector", _p_FXFontSelectorTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXShutter", _p_FXShutterTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXDrawable", 0, 0, 0, 0, 0, 0},{"_p_FXProgressBar", _p_FXProgressBarTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXListBox", _p_FXListBoxTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXTreeListBox", _p_FXTreeListBoxTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXHeader", _p_FXHeaderTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXMatrix", _p_FXMatrixTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXShutterItem", _p_FXShutterItemTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXColorWell", _p_FXColorWellTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXToolBarTab", _p_FXToolBarTabTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXTabBar", _p_FXTabBarTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXFrame", _p_FXFrameTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXImageView", _p_FXImageViewTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXSlider", _p_FXSliderTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXRealSlider", _p_FXRealSliderTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXSpring", _p_FXSpringTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXColorBar", _p_FXColorBarTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXToolBarShell", _p_FXToolBarShellTo_p_FXDrawable, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
3382
+ static swig_type_info _swigt__p_FXDrawable[] = {{"_p_FXDrawable", 0, "FXDrawable *", 0, 0, 0, 0},{"_p_FXDriveBox", _p_FXDriveBoxTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXDial", _p_FXDialTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXToolBar", _p_FXToolBarTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXComposite", _p_FXCompositeTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXToolTip", _p_FXToolTipTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXTabBook", _p_FXTabBookTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXTextField", _p_FXTextFieldTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXArrowButton", _p_FXArrowButtonTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXGroupBox", _p_FXGroupBoxTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXShell", _p_FXShellTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXStatusBar", _p_FXStatusBarTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXScrollArea", _p_FXScrollAreaTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXPopup", _p_FXPopupTo_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_FXSplashWindow", _p_FXSplashWindowTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXScrollWindow", _p_FXScrollWindowTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXScrollCorner", _p_FXScrollCornerTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXWindow", _p_FXWindowTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXRuler", _p_FXRulerTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXCanvas", _p_FXCanvasTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXComboBox", _p_FXComboBoxTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXVerticalSeparator", _p_FXVerticalSeparatorTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXHorizontalSeparator", _p_FXHorizontalSeparatorTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXSeparator", _p_FXSeparatorTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXStatusLine", _p_FXStatusLineTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXHorizontalFrame", _p_FXHorizontalFrameTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXVerticalFrame", _p_FXVerticalFrameTo_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_FXRealSpinner", _p_FXRealSpinnerTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXSpinner", _p_FXSpinnerTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXPacker", _p_FXPackerTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXScrollBar", _p_FXScrollBarTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXColorWheel", _p_FXColorWheelTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXBitmapFrame", _p_FXBitmapFrameTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXDirBox", _p_FXDirBoxTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXDockHandler", _p_FXDockHandlerTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXToolBarGrip", _p_FXToolBarGripTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXTable", _p_FXTableTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXImageFrame", _p_FXImageFrameTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXDragCorner", _p_FXDragCornerTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXSwitcher", _p_FXSwitcherTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXDirSelector", _p_FXDirSelectorTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXFileSelector", _p_FXFileSelectorTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXColorSelector", _p_FXColorSelectorTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXFontSelector", _p_FXFontSelectorTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXShutter", _p_FXShutterTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXDrawable", 0, 0, 0, 0, 0, 0},{"_p_FXProgressBar", _p_FXProgressBarTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXDockSite", _p_FXDockSiteTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXListBox", _p_FXListBoxTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXTreeListBox", _p_FXTreeListBoxTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXHeader", _p_FXHeaderTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXMatrix", _p_FXMatrixTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXShutterItem", _p_FXShutterItemTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXColorWell", _p_FXColorWellTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXToolBarTab", _p_FXToolBarTabTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXDockBar", _p_FXDockBarTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXTabBar", _p_FXTabBarTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXFrame", _p_FXFrameTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXImageView", _p_FXImageViewTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FX7Segment", _p_FX7SegmentTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXSlider", _p_FXSliderTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXRealSlider", _p_FXRealSliderTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXSpring", _p_FXSpringTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXColorBar", _p_FXColorBarTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXToolBarShell", _p_FXToolBarShellTo_p_FXDrawable, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
3197
3383
  static swig_type_info _swigt__p_FXTableRange[] = {{"_p_FXTableRange", 0, "FXTableRange *", 0, 0, 0, 0},{"_p_FXTableRange", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
3198
3384
  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}};
3199
3385
  static swig_type_info _swigt__p_FXHeader[] = {{"_p_FXHeader", 0, "FXHeader *", 0, 0, 0, 0},{"_p_FXHeader", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
3200
3386
  static swig_type_info _swigt__p_FXTableItem[] = {{"_p_FXTableItem", 0, "FXTableItem *", 0, 0, 0, 0},{"_p_FXTableItem", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
3387
+ 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}};
3201
3388
  static swig_type_info _swigt__p_FXTablePos[] = {{"_p_FXTablePos", 0, "FXTablePos *", 0, 0, 0, 0},{"_p_FXTablePos", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
3202
3389
 
3203
3390
  static swig_type_info *swig_types_initial[] = {
@@ -3206,6 +3393,7 @@ _swigt__p_FXObject,
3206
3393
  _swigt__p_FXScrollArea,
3207
3394
  _swigt__p_FXWindow,
3208
3395
  _swigt__p_FXComposite,
3396
+ _swigt__p_FXBitmap,
3209
3397
  _swigt__p_FXId,
3210
3398
  _swigt__p_FXFont,
3211
3399
  _swigt__p_FXTable,
@@ -3215,6 +3403,7 @@ _swigt__p_FXTableRange,
3215
3403
  _swigt__p_FXIcon,
3216
3404
  _swigt__p_FXHeader,
3217
3405
  _swigt__p_FXTableItem,
3406
+ _swigt__p_FXRegion,
3218
3407
  _swigt__p_FXTablePos,
3219
3408
  0
3220
3409
  };
@@ -3239,9 +3428,9 @@ SWIGEXPORT(void) Init_table(void) {
3239
3428
  rb_define_const(mFox,"DEFAULT_MARGIN", INT2NUM(DEFAULT_MARGIN));
3240
3429
  rb_define_const(mFox,"TABLE_COL_SIZABLE", INT2NUM(TABLE_COL_SIZABLE));
3241
3430
  rb_define_const(mFox,"TABLE_ROW_SIZABLE", INT2NUM(TABLE_ROW_SIZABLE));
3242
- rb_define_const(mFox,"TABLE_HEADERS_SIZABLE", INT2NUM(TABLE_HEADERS_SIZABLE));
3243
3431
  rb_define_const(mFox,"TABLE_NO_COLSELECT", INT2NUM(TABLE_NO_COLSELECT));
3244
3432
  rb_define_const(mFox,"TABLE_NO_ROWSELECT", INT2NUM(TABLE_NO_ROWSELECT));
3433
+ rb_define_const(mFox,"TABLE_READONLY", INT2NUM(TABLE_READONLY));
3245
3434
 
3246
3435
  cFXTablePos.klass = rb_define_class_under(mFox, "FXTablePos", rb_cObject);
3247
3436
  SWIG_TypeClientData(SWIGTYPE_p_FXTablePos, (void *) &cFXTablePos);
@@ -3269,6 +3458,13 @@ SWIGEXPORT(void) Init_table(void) {
3269
3458
  SWIG_TypeClientData(SWIGTYPE_p_FXTableItem, (void *) &cFXTableItem);
3270
3459
  rb_define_alloc_func(cFXTableItem.klass, _wrap_FXTableItem_allocate);
3271
3460
  rb_define_method(cFXTableItem.klass, "initialize", VALUEFUNC(_wrap_new_FXTableItem), -1);
3461
+ rb_define_const(cFXTableItem.klass,"SELECTED", INT2NUM(FXTableItem::SELECTED));
3462
+ rb_define_const(cFXTableItem.klass,"FOCUS", INT2NUM(FXTableItem::FOCUS));
3463
+ rb_define_const(cFXTableItem.klass,"DISABLED", INT2NUM(FXTableItem::DISABLED));
3464
+ rb_define_const(cFXTableItem.klass,"DRAGGABLE", INT2NUM(FXTableItem::DRAGGABLE));
3465
+ rb_define_const(cFXTableItem.klass,"RESERVED1", INT2NUM(FXTableItem::RESERVED1));
3466
+ rb_define_const(cFXTableItem.klass,"RESERVED2", INT2NUM(FXTableItem::RESERVED2));
3467
+ rb_define_const(cFXTableItem.klass,"ICONOWNED", INT2NUM(FXTableItem::ICONOWNED));
3272
3468
  rb_define_const(cFXTableItem.klass,"RIGHT", INT2NUM(FXTableItem::RIGHT));
3273
3469
  rb_define_const(cFXTableItem.klass,"LEFT", INT2NUM(FXTableItem::LEFT));
3274
3470
  rb_define_const(cFXTableItem.klass,"CENTER_X", INT2NUM(FXTableItem::CENTER_X));
@@ -3283,23 +3479,16 @@ SWIGEXPORT(void) Init_table(void) {
3283
3479
  rb_define_const(cFXTableItem.klass,"RBORDER", INT2NUM(FXTableItem::RBORDER));
3284
3480
  rb_define_const(cFXTableItem.klass,"TBORDER", INT2NUM(FXTableItem::TBORDER));
3285
3481
  rb_define_const(cFXTableItem.klass,"BBORDER", INT2NUM(FXTableItem::BBORDER));
3286
- rb_define_method(cFXTableItem.klass, "getText", VALUEFUNC(_wrap_FXTableItem_getText), -1);
3287
- rb_define_method(cFXTableItem.klass, "getIcon", VALUEFUNC(_wrap_FXTableItem_getIcon), -1);
3288
3482
  rb_define_method(cFXTableItem.klass, "setData", VALUEFUNC(_wrap_FXTableItem_setData), -1);
3289
3483
  rb_define_method(cFXTableItem.klass, "getData", VALUEFUNC(_wrap_FXTableItem_getData), -1);
3290
3484
  rb_define_method(cFXTableItem.klass, "hasFocus", VALUEFUNC(_wrap_FXTableItem_hasFocus), -1);
3291
3485
  rb_define_method(cFXTableItem.klass, "isSelected", VALUEFUNC(_wrap_FXTableItem_isSelected), -1);
3292
3486
  rb_define_method(cFXTableItem.klass, "isEnabled", VALUEFUNC(_wrap_FXTableItem_isEnabled), -1);
3293
3487
  rb_define_method(cFXTableItem.klass, "isDraggable", VALUEFUNC(_wrap_FXTableItem_isDraggable), -1);
3294
- rb_define_method(cFXTableItem.klass, "setJustify", VALUEFUNC(_wrap_FXTableItem_setJustify), -1);
3295
3488
  rb_define_method(cFXTableItem.klass, "getJustify", VALUEFUNC(_wrap_FXTableItem_getJustify), -1);
3296
- rb_define_method(cFXTableItem.klass, "setIconPosition", VALUEFUNC(_wrap_FXTableItem_setIconPosition), -1);
3297
3489
  rb_define_method(cFXTableItem.klass, "getIconPosition", VALUEFUNC(_wrap_FXTableItem_getIconPosition), -1);
3298
- rb_define_method(cFXTableItem.klass, "setBorders", VALUEFUNC(_wrap_FXTableItem_setBorders), -1);
3299
3490
  rb_define_method(cFXTableItem.klass, "getBorders", VALUEFUNC(_wrap_FXTableItem_getBorders), -1);
3300
- rb_define_method(cFXTableItem.klass, "setStipple", VALUEFUNC(_wrap_FXTableItem_setStipple), -1);
3301
3491
  rb_define_method(cFXTableItem.klass, "getStipple", VALUEFUNC(_wrap_FXTableItem_getStipple), -1);
3302
- rb_define_method(cFXTableItem.klass, "isIconOwned", VALUEFUNC(_wrap_FXTableItem_isIconOwned), -1);
3303
3492
  rb_define_method(cFXTableItem.klass, "save", VALUEFUNC(_wrap_FXTableItem_save), -1);
3304
3493
  rb_define_method(cFXTableItem.klass, "load", VALUEFUNC(_wrap_FXTableItem_load), -1);
3305
3494
  rb_define_method(cFXTableItem.klass, "draw", VALUEFUNC(_wrap_FXTableItem_draw), -1);
@@ -3308,12 +3497,19 @@ SWIGEXPORT(void) Init_table(void) {
3308
3497
  rb_define_method(cFXTableItem.klass, "drawPattern", VALUEFUNC(_wrap_FXTableItem_drawPattern), -1);
3309
3498
  rb_define_method(cFXTableItem.klass, "drawBackground", VALUEFUNC(_wrap_FXTableItem_drawBackground), -1);
3310
3499
  rb_define_method(cFXTableItem.klass, "setText", VALUEFUNC(_wrap_FXTableItem_setText), -1);
3500
+ rb_define_method(cFXTableItem.klass, "getText", VALUEFUNC(_wrap_FXTableItem_getText), -1);
3311
3501
  rb_define_method(cFXTableItem.klass, "setIcon", VALUEFUNC(_wrap_FXTableItem_setIcon), -1);
3502
+ rb_define_method(cFXTableItem.klass, "getIcon", VALUEFUNC(_wrap_FXTableItem_getIcon), -1);
3312
3503
  rb_define_method(cFXTableItem.klass, "setFocus", VALUEFUNC(_wrap_FXTableItem_setFocus), -1);
3313
3504
  rb_define_method(cFXTableItem.klass, "setSelected", VALUEFUNC(_wrap_FXTableItem_setSelected), -1);
3314
3505
  rb_define_method(cFXTableItem.klass, "setEnabled", VALUEFUNC(_wrap_FXTableItem_setEnabled), -1);
3315
3506
  rb_define_method(cFXTableItem.klass, "setDraggable", VALUEFUNC(_wrap_FXTableItem_setDraggable), -1);
3316
- rb_define_method(cFXTableItem.klass, "setIconOwned", VALUEFUNC(_wrap_FXTableItem_setIconOwned), -1);
3507
+ rb_define_method(cFXTableItem.klass, "setJustify", VALUEFUNC(_wrap_FXTableItem_setJustify), -1);
3508
+ rb_define_method(cFXTableItem.klass, "setIconPosition", VALUEFUNC(_wrap_FXTableItem_setIconPosition), -1);
3509
+ rb_define_method(cFXTableItem.klass, "setBorders", VALUEFUNC(_wrap_FXTableItem_setBorders), -1);
3510
+ rb_define_method(cFXTableItem.klass, "setStipple", VALUEFUNC(_wrap_FXTableItem_setStipple), -1);
3511
+ rb_define_method(cFXTableItem.klass, "getControlFor", VALUEFUNC(_wrap_FXTableItem_getControlFor), -1);
3512
+ rb_define_method(cFXTableItem.klass, "setFromControl", VALUEFUNC(_wrap_FXTableItem_setFromControl), -1);
3317
3513
  rb_define_method(cFXTableItem.klass, "getWidth", VALUEFUNC(_wrap_FXTableItem_getWidth), -1);
3318
3514
  rb_define_method(cFXTableItem.klass, "getHeight", VALUEFUNC(_wrap_FXTableItem_getHeight), -1);
3319
3515
  rb_define_method(cFXTableItem.klass, "create", VALUEFUNC(_wrap_FXTableItem_create), -1);
@@ -3351,6 +3547,8 @@ SWIGEXPORT(void) Init_table(void) {
3351
3547
  rb_define_method(cFXTable.klass, "onClicked", VALUEFUNC(_wrap_FXTable_onClicked), -1);
3352
3548
  rb_define_method(cFXTable.klass, "onDoubleClicked", VALUEFUNC(_wrap_FXTable_onDoubleClicked), -1);
3353
3549
  rb_define_method(cFXTable.klass, "onTripleClicked", VALUEFUNC(_wrap_FXTable_onTripleClicked), -1);
3550
+ rb_define_method(cFXTable.klass, "onCmdToggleEditable", VALUEFUNC(_wrap_FXTable_onCmdToggleEditable), -1);
3551
+ rb_define_method(cFXTable.klass, "onUpdToggleEditable", VALUEFUNC(_wrap_FXTable_onUpdToggleEditable), -1);
3354
3552
  rb_define_method(cFXTable.klass, "onCmdHorzGrid", VALUEFUNC(_wrap_FXTable_onCmdHorzGrid), -1);
3355
3553
  rb_define_method(cFXTable.klass, "onUpdHorzGrid", VALUEFUNC(_wrap_FXTable_onUpdHorzGrid), -1);
3356
3554
  rb_define_method(cFXTable.klass, "onCmdVertGrid", VALUEFUNC(_wrap_FXTable_onCmdVertGrid), -1);
@@ -3360,7 +3558,9 @@ SWIGEXPORT(void) Init_table(void) {
3360
3558
  rb_define_method(cFXTable.klass, "onCmdDeleteRow", VALUEFUNC(_wrap_FXTable_onCmdDeleteRow), -1);
3361
3559
  rb_define_method(cFXTable.klass, "onUpdDeleteRow", VALUEFUNC(_wrap_FXTable_onUpdDeleteRow), -1);
3362
3560
  rb_define_method(cFXTable.klass, "onCmdInsertColumn", VALUEFUNC(_wrap_FXTable_onCmdInsertColumn), -1);
3561
+ rb_define_method(cFXTable.klass, "onUpdInsertColumn", VALUEFUNC(_wrap_FXTable_onUpdInsertColumn), -1);
3363
3562
  rb_define_method(cFXTable.klass, "onCmdInsertRow", VALUEFUNC(_wrap_FXTable_onCmdInsertRow), -1);
3563
+ rb_define_method(cFXTable.klass, "onUpdInsertRow", VALUEFUNC(_wrap_FXTable_onUpdInsertRow), -1);
3364
3564
  rb_define_method(cFXTable.klass, "onCmdMoveRight", VALUEFUNC(_wrap_FXTable_onCmdMoveRight), -1);
3365
3565
  rb_define_method(cFXTable.klass, "onCmdMoveLeft", VALUEFUNC(_wrap_FXTable_onCmdMoveLeft), -1);
3366
3566
  rb_define_method(cFXTable.klass, "onCmdMoveUp", VALUEFUNC(_wrap_FXTable_onCmdMoveUp), -1);
@@ -3385,8 +3585,14 @@ SWIGEXPORT(void) Init_table(void) {
3385
3585
  rb_define_method(cFXTable.klass, "onCmdDeleteSel", VALUEFUNC(_wrap_FXTable_onCmdDeleteSel), -1);
3386
3586
  rb_define_method(cFXTable.klass, "onCmdPasteSel", VALUEFUNC(_wrap_FXTable_onCmdPasteSel), -1);
3387
3587
  rb_define_method(cFXTable.klass, "onUpdHaveSelection", VALUEFUNC(_wrap_FXTable_onUpdHaveSelection), -1);
3588
+ rb_define_method(cFXTable.klass, "onCmdStartInput", VALUEFUNC(_wrap_FXTable_onCmdStartInput), -1);
3589
+ rb_define_method(cFXTable.klass, "onUpdStartInput", VALUEFUNC(_wrap_FXTable_onUpdStartInput), -1);
3590
+ rb_define_method(cFXTable.klass, "onCmdAcceptInput", VALUEFUNC(_wrap_FXTable_onCmdAcceptInput), -1);
3591
+ rb_define_method(cFXTable.klass, "onUpdAcceptInput", VALUEFUNC(_wrap_FXTable_onUpdAcceptInput), -1);
3592
+ rb_define_method(cFXTable.klass, "onCmdCancelInput", VALUEFUNC(_wrap_FXTable_onCmdCancelInput), -1);
3388
3593
  rb_define_const(cFXTable.klass,"ID_HORZ_GRID", INT2NUM(FXTable::ID_HORZ_GRID));
3389
3594
  rb_define_const(cFXTable.klass,"ID_VERT_GRID", INT2NUM(FXTable::ID_VERT_GRID));
3595
+ rb_define_const(cFXTable.klass,"ID_TOGGLE_EDITABLE", INT2NUM(FXTable::ID_TOGGLE_EDITABLE));
3390
3596
  rb_define_const(cFXTable.klass,"ID_DELETE_COLUMN", INT2NUM(FXTable::ID_DELETE_COLUMN));
3391
3597
  rb_define_const(cFXTable.klass,"ID_DELETE_ROW", INT2NUM(FXTable::ID_DELETE_ROW));
3392
3598
  rb_define_const(cFXTable.klass,"ID_INSERT_COLUMN", INT2NUM(FXTable::ID_INSERT_COLUMN));
@@ -3408,6 +3614,9 @@ SWIGEXPORT(void) Init_table(void) {
3408
3614
  rb_define_const(cFXTable.klass,"ID_MOVE_BOTTOM", INT2NUM(FXTable::ID_MOVE_BOTTOM));
3409
3615
  rb_define_const(cFXTable.klass,"ID_MOVE_PAGEDOWN", INT2NUM(FXTable::ID_MOVE_PAGEDOWN));
3410
3616
  rb_define_const(cFXTable.klass,"ID_MOVE_PAGEUP", INT2NUM(FXTable::ID_MOVE_PAGEUP));
3617
+ rb_define_const(cFXTable.klass,"ID_START_INPUT", INT2NUM(FXTable::ID_START_INPUT));
3618
+ rb_define_const(cFXTable.klass,"ID_CANCEL_INPUT", INT2NUM(FXTable::ID_CANCEL_INPUT));
3619
+ rb_define_const(cFXTable.klass,"ID_ACCEPT_INPUT", INT2NUM(FXTable::ID_ACCEPT_INPUT));
3411
3620
  rb_define_const(cFXTable.klass,"ID_MARK", INT2NUM(FXTable::ID_MARK));
3412
3621
  rb_define_const(cFXTable.klass,"ID_EXTEND", INT2NUM(FXTable::ID_EXTEND));
3413
3622
  rb_define_const(cFXTable.klass,"ID_CUT_SEL", INT2NUM(FXTable::ID_CUT_SEL));
@@ -3421,6 +3630,8 @@ SWIGEXPORT(void) Init_table(void) {
3421
3630
  rb_define_method(cFXTable.klass, "getVisibleRows", VALUEFUNC(_wrap_FXTable_getVisibleRows), -1);
3422
3631
  rb_define_method(cFXTable.klass, "setVisibleColumns", VALUEFUNC(_wrap_FXTable_setVisibleColumns), -1);
3423
3632
  rb_define_method(cFXTable.klass, "getVisibleColumns", VALUEFUNC(_wrap_FXTable_getVisibleColumns), -1);
3633
+ rb_define_method(cFXTable.klass, "editable?", VALUEFUNC(_wrap_FXTable_editableq___), -1);
3634
+ rb_define_method(cFXTable.klass, "editable=", VALUEFUNC(_wrap_FXTable_editablee___), -1);
3424
3635
  rb_define_method(cFXTable.klass, "showHorzGrid", VALUEFUNC(_wrap_FXTable_showHorzGrid), -1);
3425
3636
  rb_define_method(cFXTable.klass, "isHorzGridShown", VALUEFUNC(_wrap_FXTable_isHorzGridShown), -1);
3426
3637
  rb_define_method(cFXTable.klass, "showVertGrid", VALUEFUNC(_wrap_FXTable_showVertGrid), -1);
@@ -3435,11 +3646,10 @@ SWIGEXPORT(void) Init_table(void) {
3435
3646
  rb_define_method(cFXTable.klass, "getMarginLeft", VALUEFUNC(_wrap_FXTable_getMarginLeft), -1);
3436
3647
  rb_define_method(cFXTable.klass, "setMarginRight", VALUEFUNC(_wrap_FXTable_setMarginRight), -1);
3437
3648
  rb_define_method(cFXTable.klass, "getMarginRight", VALUEFUNC(_wrap_FXTable_getMarginRight), -1);
3438
- rb_define_method(cFXTable.klass, "rowAtY", VALUEFUNC(_wrap_FXTable_rowAtY), -1);
3439
3649
  rb_define_method(cFXTable.klass, "colAtX", VALUEFUNC(_wrap_FXTable_colAtX), -1);
3650
+ rb_define_method(cFXTable.klass, "rowAtY", VALUEFUNC(_wrap_FXTable_rowAtY), -1);
3440
3651
  rb_define_method(cFXTable.klass, "getItem", VALUEFUNC(_wrap_FXTable_getItem), -1);
3441
3652
  rb_define_method(cFXTable.klass, "setItem", VALUEFUNC(_wrap_FXTable_setItem), -1);
3442
- rb_define_method(cFXTable.klass, "makePositionVisible", VALUEFUNC(_wrap_FXTable_makePositionVisible), -1);
3443
3653
  rb_define_method(cFXTable.klass, "isItemVisible", VALUEFUNC(_wrap_FXTable_isItemVisible), -1);
3444
3654
  rb_define_method(cFXTable.klass, "setColumnHeaderMode", VALUEFUNC(_wrap_FXTable_setColumnHeaderMode), -1);
3445
3655
  rb_define_method(cFXTable.klass, "getColumnHeaderMode", VALUEFUNC(_wrap_FXTable_getColumnHeaderMode), -1);
@@ -3449,16 +3659,18 @@ SWIGEXPORT(void) Init_table(void) {
3449
3659
  rb_define_method(cFXTable.klass, "getColumnHeaderHeight", VALUEFUNC(_wrap_FXTable_getColumnHeaderHeight), -1);
3450
3660
  rb_define_method(cFXTable.klass, "setRowHeaderWidth", VALUEFUNC(_wrap_FXTable_setRowHeaderWidth), -1);
3451
3661
  rb_define_method(cFXTable.klass, "getRowHeaderWidth", VALUEFUNC(_wrap_FXTable_getRowHeaderWidth), -1);
3452
- rb_define_method(cFXTable.klass, "getColumnWidth", VALUEFUNC(_wrap_FXTable_getColumnWidth), -1);
3453
- rb_define_method(cFXTable.klass, "getRowHeight", VALUEFUNC(_wrap_FXTable_getRowHeight), -1);
3454
3662
  rb_define_method(cFXTable.klass, "getColumnX", VALUEFUNC(_wrap_FXTable_getColumnX), -1);
3455
3663
  rb_define_method(cFXTable.klass, "getRowY", VALUEFUNC(_wrap_FXTable_getRowY), -1);
3664
+ rb_define_method(cFXTable.klass, "getColumnWidth", VALUEFUNC(_wrap_FXTable_getColumnWidth), -1);
3665
+ rb_define_method(cFXTable.klass, "getRowHeight", VALUEFUNC(_wrap_FXTable_getRowHeight), -1);
3456
3666
  rb_define_method(cFXTable.klass, "setDefColumnWidth", VALUEFUNC(_wrap_FXTable_setDefColumnWidth), -1);
3457
3667
  rb_define_method(cFXTable.klass, "getDefColumnWidth", VALUEFUNC(_wrap_FXTable_getDefColumnWidth), -1);
3458
3668
  rb_define_method(cFXTable.klass, "setDefRowHeight", VALUEFUNC(_wrap_FXTable_setDefRowHeight), -1);
3459
3669
  rb_define_method(cFXTable.klass, "getDefRowHeight", VALUEFUNC(_wrap_FXTable_getDefRowHeight), -1);
3460
3670
  rb_define_method(cFXTable.klass, "getMinRowHeight", VALUEFUNC(_wrap_FXTable_getMinRowHeight), -1);
3461
3671
  rb_define_method(cFXTable.klass, "getMinColumnWidth", VALUEFUNC(_wrap_FXTable_getMinColumnWidth), -1);
3672
+ rb_define_method(cFXTable.klass, "fitRowsToContents", VALUEFUNC(_wrap_FXTable_fitRowsToContents), -1);
3673
+ rb_define_method(cFXTable.klass, "fitColumnsToContents", VALUEFUNC(_wrap_FXTable_fitColumnsToContents), -1);
3462
3674
  rb_define_method(cFXTable.klass, "setColumnText", VALUEFUNC(_wrap_FXTable_setColumnText), -1);
3463
3675
  rb_define_method(cFXTable.klass, "getColumnText", VALUEFUNC(_wrap_FXTable_getColumnText), -1);
3464
3676
  rb_define_method(cFXTable.klass, "setRowText", VALUEFUNC(_wrap_FXTable_setRowText), -1);
@@ -3474,8 +3686,6 @@ SWIGEXPORT(void) Init_table(void) {
3474
3686
  rb_define_method(cFXTable.klass, "isItemSpanning", VALUEFUNC(_wrap_FXTable_isItemSpanning), -1);
3475
3687
  rb_define_method(cFXTable.klass, "updateRange", VALUEFUNC(_wrap_FXTable_updateRange), -1);
3476
3688
  rb_define_method(cFXTable.klass, "updateItem", VALUEFUNC(_wrap_FXTable_updateItem), -1);
3477
- rb_define_method(cFXTable.klass, "enableItem", VALUEFUNC(_wrap_FXTable_enableItem), -1);
3478
- rb_define_method(cFXTable.klass, "disableItem", VALUEFUNC(_wrap_FXTable_disableItem), -1);
3479
3689
  rb_define_method(cFXTable.klass, "isItemEnabled", VALUEFUNC(_wrap_FXTable_isItemEnabled), -1);
3480
3690
  rb_define_method(cFXTable.klass, "setItemJustify", VALUEFUNC(_wrap_FXTable_setItemJustify), -1);
3481
3691
  rb_define_method(cFXTable.klass, "getItemJustify", VALUEFUNC(_wrap_FXTable_getItemJustify), -1);
@@ -3542,6 +3752,7 @@ SWIGEXPORT(void) Init_table(void) {
3542
3752
  rb_define_method(cFXTable.klass, "canFocus", VALUEFUNC(_wrap_FXTable_canFocus), -1);
3543
3753
  rb_define_method(cFXTable.klass, "setFocus", VALUEFUNC(_wrap_FXTable_setFocus), -1);
3544
3754
  rb_define_method(cFXTable.klass, "killFocus", VALUEFUNC(_wrap_FXTable_killFocus), -1);
3755
+ rb_define_method(cFXTable.klass, "changeFocus", VALUEFUNC(_wrap_FXTable_changeFocus), -1);
3545
3756
  rb_define_method(cFXTable.klass, "setDefault", VALUEFUNC(_wrap_FXTable_setDefault), -1);
3546
3757
  rb_define_method(cFXTable.klass, "enable", VALUEFUNC(_wrap_FXTable_enable), -1);
3547
3758
  rb_define_method(cFXTable.klass, "disable", VALUEFUNC(_wrap_FXTable_disable), -1);
@@ -3557,6 +3768,8 @@ SWIGEXPORT(void) Init_table(void) {
3557
3768
  rb_define_method(cFXTable.klass, "contains", VALUEFUNC(_wrap_FXTable_contains), -1);
3558
3769
  rb_define_method(cFXTable.klass, "doesSaveUnder", VALUEFUNC(_wrap_FXTable_doesSaveUnder), -1);
3559
3770
  rb_define_method(cFXTable.klass, "setBackColor", VALUEFUNC(_wrap_FXTable_setBackColor), -1);
3771
+ rb_define_method(cFXTable.klass, "setShape", VALUEFUNC(_wrap_FXTable_setShape), -1);
3772
+ rb_define_method(cFXTable.klass, "clearShape", VALUEFUNC(_wrap_FXTable_clearShape), -1);
3560
3773
  rb_define_method(cFXTable.klass, "getViewportHeight", VALUEFUNC(_wrap_FXTable_getViewportHeight), -1);
3561
3774
  rb_define_method(cFXTable.klass, "getViewportWidth", VALUEFUNC(_wrap_FXTable_getViewportWidth), -1);
3562
3775
  rb_define_method(cFXTable.klass, "getContentHeight", VALUEFUNC(_wrap_FXTable_getContentHeight), -1);
@@ -3578,14 +3791,18 @@ SWIGEXPORT(void) Init_table(void) {
3578
3791
  rb_define_method(cFXTable.klass, "clearItems", VALUEFUNC(_wrap_FXTable_clearItems), -1);
3579
3792
  rb_define_method(cFXTable.klass, "setColumnWidth", VALUEFUNC(_wrap_FXTable_setColumnWidth), -1);
3580
3793
  rb_define_method(cFXTable.klass, "setRowHeight", VALUEFUNC(_wrap_FXTable_setRowHeight), -1);
3581
- rb_define_method(cFXTable.klass, "setColumnX", VALUEFUNC(_wrap_FXTable_setColumnX), -1);
3582
- rb_define_method(cFXTable.klass, "setRowY", VALUEFUNC(_wrap_FXTable_setRowY), -1);
3583
3794
  rb_define_method(cFXTable.klass, "setCurrentItem", VALUEFUNC(_wrap_FXTable_setCurrentItem), -1);
3584
3795
  rb_define_method(cFXTable.klass, "selectRow", VALUEFUNC(_wrap_FXTable_selectRow), -1);
3585
3796
  rb_define_method(cFXTable.klass, "selectColumn", VALUEFUNC(_wrap_FXTable_selectColumn), -1);
3586
3797
  rb_define_method(cFXTable.klass, "selectRange", VALUEFUNC(_wrap_FXTable_selectRange), -1);
3587
3798
  rb_define_method(cFXTable.klass, "extendSelection", VALUEFUNC(_wrap_FXTable_extendSelection), -1);
3588
3799
  rb_define_method(cFXTable.klass, "killSelection", VALUEFUNC(_wrap_FXTable_killSelection), -1);
3800
+ rb_define_method(cFXTable.klass, "startInput", VALUEFUNC(_wrap_FXTable_startInput), -1);
3801
+ rb_define_method(cFXTable.klass, "cancelInput", VALUEFUNC(_wrap_FXTable_cancelInput), -1);
3802
+ rb_define_method(cFXTable.klass, "acceptInput", VALUEFUNC(_wrap_FXTable_acceptInput), -1);
3803
+ rb_define_method(cFXTable.klass, "makePositionVisible", VALUEFUNC(_wrap_FXTable_makePositionVisible), -1);
3804
+ rb_define_method(cFXTable.klass, "enableItem", VALUEFUNC(_wrap_FXTable_enableItem), -1);
3805
+ rb_define_method(cFXTable.klass, "disableItem", VALUEFUNC(_wrap_FXTable_disableItem), -1);
3589
3806
  cFXTable.mark = (void (*)(void *)) FXRbTable::markfunc;
3590
3807
  cFXTable.destroy = (void (*)(void *)) FXRbObject::freefunc;
3591
3808
  }