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
@@ -526,34 +526,38 @@ SWIGIMPORT(void) SWIG_Ruby_ConvertPacked(VALUE obj, void *ptr, int sz, swig_ty
526
526
  #define SWIGTYPE_p_FXVec3d swig_types[7]
527
527
  #define SWIGTYPE_p_FXGLViewer swig_types[8]
528
528
  #define SWIGTYPE_p_FXMat3f swig_types[9]
529
- #define SWIGTYPE_p_FXViewport swig_types[10]
530
- #define SWIGTYPE_p_FXId swig_types[11]
529
+ #define SWIGTYPE_p_FXId swig_types[10]
530
+ #define SWIGTYPE_p_FXViewport swig_types[11]
531
531
  #define SWIGTYPE_p_FXVec3f swig_types[12]
532
532
  #define SWIGTYPE_p_FXWindow swig_types[13]
533
533
  #define SWIGTYPE_p_FXCanvas swig_types[14]
534
534
  #define SWIGTYPE_p_FXGLCanvas swig_types[15]
535
535
  #define SWIGTYPE_p_FXRanged swig_types[16]
536
536
  #define SWIGTYPE_p_FXSphered swig_types[17]
537
- #define SWIGTYPE_p_FXVec2d swig_types[18]
538
- #define SWIGTYPE_p_FXSpheref swig_types[19]
539
- #define SWIGTYPE_p_FXRangef swig_types[20]
540
- #define SWIGTYPE_p_FXVec2f swig_types[21]
541
- #define SWIGTYPE_p_FXObject swig_types[22]
542
- #define SWIGTYPE_p_FXGLObject swig_types[23]
543
- #define SWIGTYPE_p_FXGLContext swig_types[24]
544
- #define SWIGTYPE_p_FXMaterial swig_types[25]
545
- #define SWIGTYPE_p_FXQuatd swig_types[26]
546
- #define SWIGTYPE_p_FXQuatf swig_types[27]
547
- #define SWIGTYPE_p_FXGLShape swig_types[28]
548
- #define SWIGTYPE_p_FXDrawable swig_types[29]
549
- #define SWIGTYPE_p_FXStream swig_types[30]
550
- #define SWIGTYPE_p_FXApp swig_types[31]
551
- #define SWIGTYPE_p_FXLight swig_types[32]
552
- #define SWIGTYPE_p_FXFont swig_types[33]
553
- #define SWIGTYPE_p_FXGLVisual swig_types[34]
554
- #define SWIGTYPE_p_FXVisual swig_types[35]
555
- #define SWIGTYPE_p_FXuint swig_types[36]
556
- static swig_type_info *swig_types[38];
537
+ #define SWIGTYPE_p_FXIcon swig_types[18]
538
+ #define SWIGTYPE_p_FXVec2d swig_types[19]
539
+ #define SWIGTYPE_p_FXSpheref swig_types[20]
540
+ #define SWIGTYPE_p_FXRangef swig_types[21]
541
+ #define SWIGTYPE_p_FXVec2f swig_types[22]
542
+ #define SWIGTYPE_p_FXBitmap swig_types[23]
543
+ #define SWIGTYPE_p_FXObject swig_types[24]
544
+ #define SWIGTYPE_p_FXGLObject swig_types[25]
545
+ #define SWIGTYPE_p_FXGLContext swig_types[26]
546
+ #define SWIGTYPE_p_FXQuatd swig_types[27]
547
+ #define SWIGTYPE_p_FXMaterial swig_types[28]
548
+ #define SWIGTYPE_p_FXdouble swig_types[29]
549
+ #define SWIGTYPE_p_FXQuatf swig_types[30]
550
+ #define SWIGTYPE_p_FXGLShape swig_types[31]
551
+ #define SWIGTYPE_p_FXDrawable swig_types[32]
552
+ #define SWIGTYPE_p_FXStream swig_types[33]
553
+ #define SWIGTYPE_p_FXApp swig_types[34]
554
+ #define SWIGTYPE_p_FXLight swig_types[35]
555
+ #define SWIGTYPE_p_FXRegion swig_types[36]
556
+ #define SWIGTYPE_p_FXFont swig_types[37]
557
+ #define SWIGTYPE_p_FXGLVisual swig_types[38]
558
+ #define SWIGTYPE_p_FXVisual swig_types[39]
559
+ #define SWIGTYPE_p_FXuint swig_types[40]
560
+ static swig_type_info *swig_types[42];
557
561
 
558
562
  /* -------- TYPES TABLE (END) -------- */
559
563
 
@@ -641,8 +645,6 @@ FXfloat FXVec2f_len(FXVec2f const *self){ return len(*self); }
641
645
  FXVec2f FXVec2f_normalize(FXVec2f const *self){ return normalize(*self); }
642
646
  FXVec2f FXVec2f_lo(FXVec2f const *self,FXVec2f const &other){ return lo(*self,other); }
643
647
  FXVec2f FXVec2f_hi(FXVec2f const *self,FXVec2f const &other){ return hi(*self,other); }
644
- VALUE FXVec2f_to_a(FXVec2f const *self){ return rb_ary_new3(2,rb_float_new(self->x),rb_float_new(self->y)); }
645
- FXString FXVec2f_to_s(FXVec2f const *self){ return FXStringFormat("[%g, %g]",self->x,self->y); }
646
648
 
647
649
  swig_class cFXVec2f;
648
650
  FXdouble FXVec2d___getitem__(FXVec2d const *self,FXint i){
@@ -670,8 +672,6 @@ FXdouble FXVec2d_len(FXVec2d const *self){ return len(*self); }
670
672
  FXVec2d FXVec2d_normalize(FXVec2d const *self){ return normalize(*self); }
671
673
  FXVec2d FXVec2d_lo(FXVec2d const *self,FXVec2d const &other){ return lo(*self,other); }
672
674
  FXVec2d FXVec2d_hi(FXVec2d const *self,FXVec2d const &other){ return hi(*self,other); }
673
- VALUE FXVec2d_to_a(FXVec2d const *self){ return rb_ary_new3(2,rb_float_new(self->x),rb_float_new(self->y)); }
674
- FXString FXVec2d_to_s(FXVec2d const *self){ return FXStringFormat("[%g, %g]",self->x,self->y); }
675
675
 
676
676
  swig_class cFXVec2d;
677
677
  FXfloat FXVec3f___getitem__(FXVec3f const *self,FXint i){
@@ -701,8 +701,12 @@ FXfloat FXVec3f_len(FXVec3f const *self){ return len(*self); }
701
701
  FXVec3f FXVec3f_normalize(FXVec3f const *self){ return normalize(*self); }
702
702
  FXVec3f FXVec3f_lo(FXVec3f const *self,FXVec3f const &other){ return lo(*self,other); }
703
703
  FXVec3f FXVec3f_hi(FXVec3f const *self,FXVec3f const &other){ return hi(*self,other); }
704
- VALUE FXVec3f_to_a(FXVec3f const *self){ return rb_ary_new3(3,rb_float_new(self->x),rb_float_new(self->y),rb_float_new(self->z)); }
705
- FXString FXVec3f_to_s(FXVec3f const *self){ return FXStringFormat("[%g, %g, %g]",self->x,self->y,self->z); }
704
+ FXVec3f FXVec3f_normal(FXVec3f const &a,FXVec3f const &b,FXVec3f const &c){
705
+ return FX::normal(a,b,c);
706
+ }
707
+ FXVec3f FXVec3f_normal(FXVec3f const &a,FXVec3f const &b,FXVec3f const &c,FXVec3f const &d){
708
+ return FX::normal(a,b,c,d);
709
+ }
706
710
 
707
711
  swig_class cFXVec3f;
708
712
  FXdouble FXVec3d___getitem__(FXVec3d const *self,FXint i){
@@ -732,8 +736,12 @@ FXdouble FXVec3d_len(FXVec3d const *self){ return len(*self); }
732
736
  FXVec3d FXVec3d_normalize(FXVec3d const *self){ return normalize(*self); }
733
737
  FXVec3d FXVec3d_lo(FXVec3d const *self,FXVec3d const &other){ return lo(*self,other); }
734
738
  FXVec3d FXVec3d_hi(FXVec3d const *self,FXVec3d const &other){ return hi(*self,other); }
735
- VALUE FXVec3d_to_a(FXVec3d const *self){ return rb_ary_new3(3,rb_float_new(self->x),rb_float_new(self->y),rb_float_new(self->z)); }
736
- FXString FXVec3d_to_s(FXVec3d const *self){ return FXStringFormat("[%g, %g, %g]",self->x,self->y,self->z); }
739
+ FXVec3d FXVec3d_normal(FXVec3d const &a,FXVec3d const &b,FXVec3d const &c){
740
+ return FX::normal(a,b,c);
741
+ }
742
+ FXVec3d FXVec3d_normal(FXVec3d const &a,FXVec3d const &b,FXVec3d const &c,FXVec3d const &d){
743
+ return FX::normal(a,b,c,d);
744
+ }
737
745
 
738
746
  swig_class cFXVec3d;
739
747
  FXfloat FXVec4f___getitem__(FXVec4f const *self,FXint i){
@@ -762,8 +770,12 @@ FXfloat FXVec4f_len2(FXVec4f const *self){ return len2(*self); }
762
770
  FXVec4f FXVec4f_normalize(FXVec4f const *self){ return normalize(*self); }
763
771
  FXVec4f FXVec4f_lo(FXVec4f const *self,FXVec4f const &other){ return lo(*self,other); }
764
772
  FXVec4f FXVec4f_hi(FXVec4f const *self,FXVec4f const &other){ return hi(*self,other); }
765
- VALUE FXVec4f_to_a(FXVec4f const *self){ return rb_ary_new3(4,rb_float_new(self->x),rb_float_new(self->y),rb_float_new(self->z),rb_float_new(self->w)); }
766
- FXString FXVec4f_to_s(FXVec4f const *self){ return FXStringFormat("[%g, %g, %g, %g]",self->x,self->y,self->z,self->w); }
773
+ FXVec4f FXVec4f_plane(FXVec4f const &vec){ return FX::plane(vec); }
774
+ FXVec4f FXVec4f_plane(FXVec3f const &vec,FXfloat dist){ return FX::plane(vec,dist); }
775
+ FXVec4f FXVec4f_plane(FXVec3f const &vec,FXVec3f const &p){ return FX::plane(vec,p); }
776
+ FXVec4f FXVec4f_plane(FXVec3f const &a,FXVec3f const &b,FXVec3f const &c){ return FX::plane(a,b,c); }
777
+ FXfloat FXVec4f_distance(FXVec4f const &plane,FXVec3f const &p){ return FX::distance(plane,p); }
778
+ FXbool FXVec4f_crosses(FXVec4f const &plane,FXVec3f const &a,FXVec3f const &b){ return FX::crosses(plane,a,b); }
767
779
 
768
780
  swig_class cFXVec4f;
769
781
  FXdouble FXVec4d___getitem__(FXVec4d const *self,FXint i){
@@ -791,8 +803,12 @@ FXdouble FXVec4d_len(FXVec4d const *self){ return len(*self); }
791
803
  FXVec4d FXVec4d_normalize(FXVec4d const *self){ return normalize(*self); }
792
804
  FXVec4d FXVec4d_lo(FXVec4d const *self,FXVec4d const &other){ return lo(*self,other); }
793
805
  FXVec4d FXVec4d_hi(FXVec4d const *self,FXVec4d const &other){ return hi(*self,other); }
794
- VALUE FXVec4d_to_a(FXVec4d const *self){ return rb_ary_new3(4,rb_float_new(self->x),rb_float_new(self->y),rb_float_new(self->z),rb_float_new(self->w)); }
795
- FXString FXVec4d_to_s(FXVec4d const *self){ return FXStringFormat("[%g, %g, %g, %g]",self->x,self->y,self->z,self->w); }
806
+ FXVec4d FXVec4d_plane(FXVec4d const &vec){ return FX::plane(vec); }
807
+ FXVec4d FXVec4d_plane(FXVec3d const &vec,FXdouble dist){ return FX::plane(vec,dist); }
808
+ FXVec4d FXVec4d_plane(FXVec3d const &vec,FXVec3d const &p){ return FX::plane(vec,p); }
809
+ FXVec4d FXVec4d_plane(FXVec3d const &a,FXVec3d const &b,FXVec3d const &c){ return FX::plane(a,b,c); }
810
+ FXdouble FXVec4d_distance(FXVec4d const &plane,FXVec3d const &p){ return FX::distance(plane,p); }
811
+ FXbool FXVec4d_crosses(FXVec4d const &plane,FXVec3d const &a,FXVec3d const &b){ return FX::crosses(plane,a,b); }
796
812
 
797
813
  swig_class cFXVec4d;
798
814
  VALUE FXQuatf_getAxisAngle(FXQuatf const *self){
@@ -806,6 +822,11 @@ VALUE FXQuatf_getRollPitchYaw(FXQuatf const *self){
806
822
  self->getRollPitchYaw(roll,pitch,yaw);
807
823
  return rb_ary_new3(3,rb_float_new(roll),rb_float_new(pitch),rb_float_new(yaw));
808
824
  }
825
+ VALUE FXQuatf_getAxes(FXQuatf const *self){
826
+ FXVec3f ex,ey,ez;
827
+ self->getAxes(ex,ey,ez);
828
+ return rb_ary_new3(3,Qnil,Qnil,Qnil); // FIXME
829
+ }
809
830
  FXQuatf FXQuatf_exp(FXQuatf const *self){ return exp(*self); }
810
831
  FXQuatf FXQuatf_log(FXQuatf const *self){ return log(*self); }
811
832
  FXQuatf FXQuatf_invert(FXQuatf const *self){ return invert(*self); }
@@ -815,8 +836,10 @@ FXQuatf FXQuatf_operator_Sm___SWIG_0(FXQuatf const *self,FXQuatf const &other){
815
836
  FXVec3f FXQuatf_operator_Sm___SWIG_1(FXQuatf const *self,FXVec3f const &vec){ return (*self)*vec; }
816
837
  FXQuatf FXQuatf_arc(FXVec3f const &a,FXVec3f const &b){ return arc(a,b); }
817
838
  FXQuatf FXQuatf_lerp(FXQuatf const &u,FXQuatf const &v,FXfloat f){ return lerp(u,v,f); }
839
+ FXMat3f FXQuatf_toMatrix(FXQuatf const *self){ return toMatrix(*self); }
818
840
 
819
841
  swig_class cFXQuatf;
842
+ FXQuatd FXQuatd_fromMatrix(FXMat3d const &mat){ return fromMatrix(mat); }
820
843
  VALUE FXQuatd_getAxisAngle(FXQuatd const *self){
821
844
  FXVec3d axis;
822
845
  FXdouble phi;
@@ -837,6 +860,12 @@ FXQuatd FXQuatd_operator_Sm___SWIG_0(FXQuatd const *self,FXQuatd const &other){
837
860
  FXVec3d FXQuatd_operator_Sm___SWIG_1(FXQuatd const *self,FXVec3d const &vec){ return (*self)*vec; }
838
861
  FXQuatd FXQuatd_arc(FXVec3d const &a,FXVec3d const &b){ return arc(a,b); }
839
862
  FXQuatd FXQuatd_lerp(FXQuatd const &u,FXQuatd const &v,FXdouble f){ return lerp(u,v,f); }
863
+ FXMat3d FXQuatd_toMatrix(FXQuatd const *self){ return toMatrix(*self); }
864
+ VALUE FXQuatd_getAxes(FXQuatd const *self){
865
+ FXVec3d ex,ey,ez;
866
+ self->getAxes(ex,ey,ez);
867
+ return rb_ary_new3(3,Qnil,Qnil,Qnil);
868
+ }
840
869
 
841
870
  swig_class cFXQuatd;
842
871
  FXVec3f const &FXMat3f___getitem__(FXMat3f const *self,FXint i){
@@ -1382,14 +1411,6 @@ static VALUE _wrap_FXVec2f_hi(int argc, VALUE *argv, VALUE self) { FXVec2f *arg1
1382
1411
  result = FXVec2f_hi((FXVec2f const *)arg1,(FXVec2f const &)*arg2); { FXVec2f * resultptr;
1383
1412
  resultptr = new FXVec2f((FXVec2f &)result); vresult = SWIG_NewPointerObj((void *) resultptr, SWIGTYPE_p_FXVec2f, 1); }
1384
1413
  return vresult; }
1385
- static VALUE _wrap_FXVec2f_to_a(int argc, VALUE *argv, VALUE self) { FXVec2f *arg1 = (FXVec2f *) 0 ; VALUE result;
1386
- VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1387
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXVec2f, 1); result = (VALUE)FXVec2f_to_a((FXVec2f const *)arg1);
1388
- vresult = result; return vresult; }
1389
- static VALUE _wrap_FXVec2f_to_s(int argc, VALUE *argv, VALUE self) { FXVec2f *arg1 = (FXVec2f *) 0 ; FXString result;
1390
- VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1391
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXVec2f, 1); result = FXVec2f_to_s((FXVec2f const *)arg1);
1392
- vresult = rb_str_new2((&result)->text()); return vresult; }
1393
1414
  static VALUE _wrap_FXVec2d_x_set(int argc, VALUE *argv, VALUE self) { FXVec2d *arg1 = (FXVec2d *) 0 ; FXdouble arg2 ;
1394
1415
  if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1395
1416
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXVec2d, 1); arg2 = (FXdouble) NUM2DBL(argv[0]);
@@ -1543,14 +1564,6 @@ static VALUE _wrap_FXVec2d_hi(int argc, VALUE *argv, VALUE self) { FXVec2d *arg1
1543
1564
  result = FXVec2d_hi((FXVec2d const *)arg1,(FXVec2d const &)*arg2); { FXVec2d * resultptr;
1544
1565
  resultptr = new FXVec2d((FXVec2d &)result); vresult = SWIG_NewPointerObj((void *) resultptr, SWIGTYPE_p_FXVec2d, 1); }
1545
1566
  return vresult; }
1546
- static VALUE _wrap_FXVec2d_to_a(int argc, VALUE *argv, VALUE self) { FXVec2d *arg1 = (FXVec2d *) 0 ; VALUE result;
1547
- VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1548
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXVec2d, 1); result = (VALUE)FXVec2d_to_a((FXVec2d const *)arg1);
1549
- vresult = result; return vresult; }
1550
- static VALUE _wrap_FXVec2d_to_s(int argc, VALUE *argv, VALUE self) { FXVec2d *arg1 = (FXVec2d *) 0 ; FXString result;
1551
- VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1552
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXVec2d, 1); result = FXVec2d_to_s((FXVec2d const *)arg1);
1553
- vresult = rb_str_new2((&result)->text()); return vresult; }
1554
1567
  static VALUE _wrap_FXVec3f_x_set(int argc, VALUE *argv, VALUE self) { FXVec3f *arg1 = (FXVec3f *) 0 ; FXfloat arg2 ;
1555
1568
  FXVec3f tmp1 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc); {
1556
1569
  if (TYPE(self) == T_ARRAY) {
@@ -1785,18 +1798,55 @@ static VALUE _wrap_FXVec3f_hi(int argc, VALUE *argv, VALUE self) { FXVec3f *arg1
1785
1798
  else { FXVec3f *p; SWIG_ConvertPtr(argv[0], (void **)&p, SWIGTYPE_p_FXVec3f, 1); arg2 = new FXVec3f(*p); } }
1786
1799
  result = FXVec3f_hi((FXVec3f const *)arg1,(FXVec3f const &)*arg2); { FXVec3f* resultptr = new FXVec3f(result);
1787
1800
  vresult = FXRbGetRubyObj(resultptr, "FXVec3f *"); } delete arg2; return vresult; }
1788
- static VALUE _wrap_FXVec3f_to_a(int argc, VALUE *argv, VALUE self) { FXVec3f *arg1 = (FXVec3f *) 0 ; VALUE result;
1789
- FXVec3f tmp1 ; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
1790
- rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc); { if (TYPE(self) == T_ARRAY) {
1791
- tmp1 = FXVec3f(NUM2DBL(rb_ary_entry(self, 0)), NUM2DBL(rb_ary_entry(self, 1)), NUM2DBL(rb_ary_entry(self, 2)));
1792
- arg1 = &tmp1; } else { SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXVec3f, 1); } }
1793
- result = (VALUE)FXVec3f_to_a((FXVec3f const *)arg1); vresult = result; return vresult; }
1794
- static VALUE _wrap_FXVec3f_to_s(int argc, VALUE *argv, VALUE self) { FXVec3f *arg1 = (FXVec3f *) 0 ; FXString result;
1795
- FXVec3f tmp1 ; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
1796
- rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc); { if (TYPE(self) == T_ARRAY) {
1797
- tmp1 = FXVec3f(NUM2DBL(rb_ary_entry(self, 0)), NUM2DBL(rb_ary_entry(self, 1)), NUM2DBL(rb_ary_entry(self, 2)));
1798
- arg1 = &tmp1; } else { SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXVec3f, 1); } }
1799
- result = FXVec3f_to_s((FXVec3f const *)arg1); vresult = rb_str_new2((&result)->text()); return vresult; }
1801
+ static VALUE _wrap_FXVec3f_normal__SWIG_0(int argc, VALUE *argv, VALUE self) { FXVec3f *arg1 = 0 ; FXVec3f *arg2 = 0 ;
1802
+ FXVec3f *arg3 = 0 ; FXVec3f result; VALUE vresult = Qnil; if ((argc < 3) || (argc > 3))
1803
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 3)",argc); { if (TYPE(argv[0]) == T_ARRAY) {
1804
+ arg1 = new FXVec3f(NUM2DBL(rb_ary_entry(argv[0], 0)), NUM2DBL(rb_ary_entry(argv[0], 1)), NUM2DBL(rb_ary_entry(argv[0], 2))); }
1805
+ else { FXVec3f *p; SWIG_ConvertPtr(argv[0], (void **)&p, SWIGTYPE_p_FXVec3f, 1); arg1 = new FXVec3f(*p); } } {
1806
+ if (TYPE(argv[1]) == T_ARRAY) {
1807
+ arg2 = new FXVec3f(NUM2DBL(rb_ary_entry(argv[1], 0)), NUM2DBL(rb_ary_entry(argv[1], 1)), NUM2DBL(rb_ary_entry(argv[1], 2))); }
1808
+ else { FXVec3f *p; SWIG_ConvertPtr(argv[1], (void **)&p, SWIGTYPE_p_FXVec3f, 1); arg2 = new FXVec3f(*p); } } {
1809
+ if (TYPE(argv[2]) == T_ARRAY) {
1810
+ arg3 = new FXVec3f(NUM2DBL(rb_ary_entry(argv[2], 0)), NUM2DBL(rb_ary_entry(argv[2], 1)), NUM2DBL(rb_ary_entry(argv[2], 2))); }
1811
+ else { FXVec3f *p; SWIG_ConvertPtr(argv[2], (void **)&p, SWIGTYPE_p_FXVec3f, 1); arg3 = new FXVec3f(*p); } }
1812
+ result = FXVec3f_normal((FXVec3f const &)*arg1,(FXVec3f const &)*arg2,(FXVec3f const &)*arg3); {
1813
+ FXVec3f* resultptr = new FXVec3f(result); vresult = FXRbGetRubyObj(resultptr, "FXVec3f *"); } delete arg1; delete arg2;
1814
+ delete arg3; return vresult; }
1815
+ static VALUE _wrap_FXVec3f_normal__SWIG_1(int argc, VALUE *argv, VALUE self) { FXVec3f *arg1 = 0 ; FXVec3f *arg2 = 0 ;
1816
+ FXVec3f *arg3 = 0 ; FXVec3f *arg4 = 0 ; FXVec3f result; VALUE vresult = Qnil; if ((argc < 4) || (argc > 4))
1817
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 4)",argc); { if (TYPE(argv[0]) == T_ARRAY) {
1818
+ arg1 = new FXVec3f(NUM2DBL(rb_ary_entry(argv[0], 0)), NUM2DBL(rb_ary_entry(argv[0], 1)), NUM2DBL(rb_ary_entry(argv[0], 2))); }
1819
+ else { FXVec3f *p; SWIG_ConvertPtr(argv[0], (void **)&p, SWIGTYPE_p_FXVec3f, 1); arg1 = new FXVec3f(*p); } } {
1820
+ if (TYPE(argv[1]) == T_ARRAY) {
1821
+ arg2 = new FXVec3f(NUM2DBL(rb_ary_entry(argv[1], 0)), NUM2DBL(rb_ary_entry(argv[1], 1)), NUM2DBL(rb_ary_entry(argv[1], 2))); }
1822
+ else { FXVec3f *p; SWIG_ConvertPtr(argv[1], (void **)&p, SWIGTYPE_p_FXVec3f, 1); arg2 = new FXVec3f(*p); } } {
1823
+ if (TYPE(argv[2]) == T_ARRAY) {
1824
+ arg3 = new FXVec3f(NUM2DBL(rb_ary_entry(argv[2], 0)), NUM2DBL(rb_ary_entry(argv[2], 1)), NUM2DBL(rb_ary_entry(argv[2], 2))); }
1825
+ else { FXVec3f *p; SWIG_ConvertPtr(argv[2], (void **)&p, SWIGTYPE_p_FXVec3f, 1); arg3 = new FXVec3f(*p); } } {
1826
+ if (TYPE(argv[3]) == T_ARRAY) {
1827
+ arg4 = new FXVec3f(NUM2DBL(rb_ary_entry(argv[3], 0)), NUM2DBL(rb_ary_entry(argv[3], 1)), NUM2DBL(rb_ary_entry(argv[3], 2))); }
1828
+ else { FXVec3f *p; SWIG_ConvertPtr(argv[3], (void **)&p, SWIGTYPE_p_FXVec3f, 1); arg4 = new FXVec3f(*p); } }
1829
+ result = FXVec3f_normal((FXVec3f const &)*arg1,(FXVec3f const &)*arg2,(FXVec3f const &)*arg3,(FXVec3f const &)*arg4); {
1830
+ FXVec3f* resultptr = new FXVec3f(result); vresult = FXRbGetRubyObj(resultptr, "FXVec3f *"); } delete arg1; delete arg2;
1831
+ delete arg3; delete arg4; return vresult; }
1832
+ static VALUE _wrap_FXVec3f_normal(int nargs, VALUE *args, VALUE self) { int argc; VALUE argv[4]; int ii; argc = nargs;
1833
+ for (ii = 0; (ii < argc) && (ii < 4); ii++) { argv[ii] = args[ii]; } if (argc == 3) { int _v; { void *ptr;
1834
+ _v = (NIL_P(argv[0]) || (TYPE(argv[0]) == T_DATA && SWIG_ConvertPtr(argv[0], &ptr, SWIGTYPE_p_FXVec3f, 0) != -1)) ? 1 : 0; }
1835
+ if (_v) { { void *ptr;
1836
+ _v = (NIL_P(argv[1]) || (TYPE(argv[1]) == T_DATA && SWIG_ConvertPtr(argv[1], &ptr, SWIGTYPE_p_FXVec3f, 0) != -1)) ? 1 : 0; }
1837
+ if (_v) { { void *ptr;
1838
+ _v = (NIL_P(argv[2]) || (TYPE(argv[2]) == T_DATA && SWIG_ConvertPtr(argv[2], &ptr, SWIGTYPE_p_FXVec3f, 0) != -1)) ? 1 : 0; }
1839
+ if (_v) { return _wrap_FXVec3f_normal__SWIG_0(nargs, args, self);} } } } if (argc == 4) { int _v; {
1840
+ void *ptr;
1841
+ _v = (NIL_P(argv[0]) || (TYPE(argv[0]) == T_DATA && SWIG_ConvertPtr(argv[0], &ptr, SWIGTYPE_p_FXVec3f, 0) != -1)) ? 1 : 0; }
1842
+ if (_v) { { void *ptr;
1843
+ _v = (NIL_P(argv[1]) || (TYPE(argv[1]) == T_DATA && SWIG_ConvertPtr(argv[1], &ptr, SWIGTYPE_p_FXVec3f, 0) != -1)) ? 1 : 0; }
1844
+ if (_v) { { void *ptr;
1845
+ _v = (NIL_P(argv[2]) || (TYPE(argv[2]) == T_DATA && SWIG_ConvertPtr(argv[2], &ptr, SWIGTYPE_p_FXVec3f, 0) != -1)) ? 1 : 0; }
1846
+ if (_v) { { void *ptr;
1847
+ _v = (NIL_P(argv[3]) || (TYPE(argv[3]) == T_DATA && SWIG_ConvertPtr(argv[3], &ptr, SWIGTYPE_p_FXVec3f, 0) != -1)) ? 1 : 0; }
1848
+ if (_v) { return _wrap_FXVec3f_normal__SWIG_1(nargs, args, self);} } } } }
1849
+ rb_raise(rb_eArgError, "No matching function for overloaded 'FXVec3f_normal'"); return Qnil; }
1800
1850
  static VALUE _wrap_FXVec3d_x_set(int argc, VALUE *argv, VALUE self) { FXVec3d *arg1 = (FXVec3d *) 0 ; FXdouble arg2 ;
1801
1851
  if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1802
1852
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXVec3d, 1); arg2 = (FXdouble) NUM2DBL(argv[0]);
@@ -1984,14 +2034,43 @@ static VALUE _wrap_FXVec3d_hi(int argc, VALUE *argv, VALUE self) { FXVec3d *arg1
1984
2034
  result = FXVec3d_hi((FXVec3d const *)arg1,(FXVec3d const &)*arg2); { FXVec3d * resultptr;
1985
2035
  resultptr = new FXVec3d((FXVec3d &)result); vresult = SWIG_NewPointerObj((void *) resultptr, SWIGTYPE_p_FXVec3d, 1); }
1986
2036
  return vresult; }
1987
- static VALUE _wrap_FXVec3d_to_a(int argc, VALUE *argv, VALUE self) { FXVec3d *arg1 = (FXVec3d *) 0 ; VALUE result;
1988
- VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1989
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXVec3d, 1); result = (VALUE)FXVec3d_to_a((FXVec3d const *)arg1);
1990
- vresult = result; return vresult; }
1991
- static VALUE _wrap_FXVec3d_to_s(int argc, VALUE *argv, VALUE self) { FXVec3d *arg1 = (FXVec3d *) 0 ; FXString result;
1992
- VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1993
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXVec3d, 1); result = FXVec3d_to_s((FXVec3d const *)arg1);
1994
- vresult = rb_str_new2((&result)->text()); return vresult; }
2037
+ static VALUE _wrap_FXVec3d_normal__SWIG_0(int argc, VALUE *argv, VALUE self) { FXVec3d *arg1 = 0 ; FXVec3d *arg2 = 0 ;
2038
+ FXVec3d *arg3 = 0 ; FXVec3d result; VALUE vresult = Qnil; if ((argc < 3) || (argc > 3))
2039
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 3)",argc);
2040
+ SWIG_ConvertPtr(argv[0], (void **) &arg1, SWIGTYPE_p_FXVec3d, 1); if (arg1 == NULL) rb_raise(rb_eTypeError, "null reference");
2041
+ SWIG_ConvertPtr(argv[1], (void **) &arg2, SWIGTYPE_p_FXVec3d, 1); if (arg2 == NULL) rb_raise(rb_eTypeError, "null reference");
2042
+ SWIG_ConvertPtr(argv[2], (void **) &arg3, SWIGTYPE_p_FXVec3d, 1); if (arg3 == NULL) rb_raise(rb_eTypeError, "null reference");
2043
+ result = FXVec3d_normal((FXVec3d const &)*arg1,(FXVec3d const &)*arg2,(FXVec3d const &)*arg3); { FXVec3d * resultptr;
2044
+ resultptr = new FXVec3d((FXVec3d &)result); vresult = SWIG_NewPointerObj((void *) resultptr, SWIGTYPE_p_FXVec3d, 1); }
2045
+ return vresult; }
2046
+ static VALUE _wrap_FXVec3d_normal__SWIG_1(int argc, VALUE *argv, VALUE self) { FXVec3d *arg1 = 0 ; FXVec3d *arg2 = 0 ;
2047
+ FXVec3d *arg3 = 0 ; FXVec3d *arg4 = 0 ; FXVec3d result; VALUE vresult = Qnil; if ((argc < 4) || (argc > 4))
2048
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 4)",argc);
2049
+ SWIG_ConvertPtr(argv[0], (void **) &arg1, SWIGTYPE_p_FXVec3d, 1); if (arg1 == NULL) rb_raise(rb_eTypeError, "null reference");
2050
+ SWIG_ConvertPtr(argv[1], (void **) &arg2, SWIGTYPE_p_FXVec3d, 1); if (arg2 == NULL) rb_raise(rb_eTypeError, "null reference");
2051
+ SWIG_ConvertPtr(argv[2], (void **) &arg3, SWIGTYPE_p_FXVec3d, 1); if (arg3 == NULL) rb_raise(rb_eTypeError, "null reference");
2052
+ SWIG_ConvertPtr(argv[3], (void **) &arg4, SWIGTYPE_p_FXVec3d, 1); if (arg4 == NULL) rb_raise(rb_eTypeError, "null reference");
2053
+ result = FXVec3d_normal((FXVec3d const &)*arg1,(FXVec3d const &)*arg2,(FXVec3d const &)*arg3,(FXVec3d const &)*arg4); {
2054
+ FXVec3d * resultptr; resultptr = new FXVec3d((FXVec3d &)result);
2055
+ vresult = SWIG_NewPointerObj((void *) resultptr, SWIGTYPE_p_FXVec3d, 1); } return vresult; }
2056
+ static VALUE _wrap_FXVec3d_normal(int nargs, VALUE *args, VALUE self) { int argc; VALUE argv[4]; int ii; argc = nargs;
2057
+ for (ii = 0; (ii < argc) && (ii < 4); ii++) { argv[ii] = args[ii]; } if (argc == 3) { int _v; { void *ptr;
2058
+ _v = (NIL_P(argv[0]) || (TYPE(argv[0]) == T_DATA && SWIG_ConvertPtr(argv[0], &ptr, SWIGTYPE_p_FXVec3d, 0) != -1)) ? 1 : 0; }
2059
+ if (_v) { { void *ptr;
2060
+ _v = (NIL_P(argv[1]) || (TYPE(argv[1]) == T_DATA && SWIG_ConvertPtr(argv[1], &ptr, SWIGTYPE_p_FXVec3d, 0) != -1)) ? 1 : 0; }
2061
+ if (_v) { { void *ptr;
2062
+ _v = (NIL_P(argv[2]) || (TYPE(argv[2]) == T_DATA && SWIG_ConvertPtr(argv[2], &ptr, SWIGTYPE_p_FXVec3d, 0) != -1)) ? 1 : 0; }
2063
+ if (_v) { return _wrap_FXVec3d_normal__SWIG_0(nargs, args, self);} } } } if (argc == 4) { int _v; {
2064
+ void *ptr;
2065
+ _v = (NIL_P(argv[0]) || (TYPE(argv[0]) == T_DATA && SWIG_ConvertPtr(argv[0], &ptr, SWIGTYPE_p_FXVec3d, 0) != -1)) ? 1 : 0; }
2066
+ if (_v) { { void *ptr;
2067
+ _v = (NIL_P(argv[1]) || (TYPE(argv[1]) == T_DATA && SWIG_ConvertPtr(argv[1], &ptr, SWIGTYPE_p_FXVec3d, 0) != -1)) ? 1 : 0; }
2068
+ if (_v) { { void *ptr;
2069
+ _v = (NIL_P(argv[2]) || (TYPE(argv[2]) == T_DATA && SWIG_ConvertPtr(argv[2], &ptr, SWIGTYPE_p_FXVec3d, 0) != -1)) ? 1 : 0; }
2070
+ if (_v) { { void *ptr;
2071
+ _v = (NIL_P(argv[3]) || (TYPE(argv[3]) == T_DATA && SWIG_ConvertPtr(argv[3], &ptr, SWIGTYPE_p_FXVec3d, 0) != -1)) ? 1 : 0; }
2072
+ if (_v) { return _wrap_FXVec3d_normal__SWIG_1(nargs, args, self);} } } } }
2073
+ rb_raise(rb_eArgError, "No matching function for overloaded 'FXVec3d_normal'"); return Qnil; }
1995
2074
  static VALUE _wrap_FXVec4f_x_set(int argc, VALUE *argv, VALUE self) { FXVec4f *arg1 = (FXVec4f *) 0 ; FXfloat arg2 ;
1996
2075
  FXVec4f tmp1 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc); {
1997
2076
  if (TYPE(self) == T_ARRAY) {
@@ -2050,13 +2129,14 @@ static VALUE _wrap_new_FXVec4f__SWIG_1(int argc, VALUE *argv, VALUE self) { FXVe
2050
2129
  else { FXVec4f *p; SWIG_ConvertPtr(argv[0],(void **)&p,SWIGTYPE_p_FXVec4f,1); arg1 = new FXVec4f(*p); } } {
2051
2130
  result = (FXVec4f *)new FXVec4f((FXVec4f const &)*arg1); DATA_PTR(self) = result; FXRbRegisterRubyObj(self, result);
2052
2131
  if(rb_block_given_p()){ rb_yield(self); } } delete arg1; return self; }
2053
- static VALUE _wrap_new_FXVec4f__SWIG_2(int argc, VALUE *argv, VALUE self) { FXVec3f *arg1 = 0 ; FXVec4f *result;
2054
- if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc); {
2132
+ static VALUE _wrap_new_FXVec4f__SWIG_2(int argc, VALUE *argv, VALUE self) { FXVec3f *arg1 = 0 ; FXfloat arg2 = (FXfloat) 1.0f ;
2133
+ FXVec4f *result; if ((argc < 1) || (argc > 2)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc); {
2055
2134
  if (TYPE(argv[0]) == T_ARRAY) {
2056
2135
  arg1 = new FXVec3f(NUM2DBL(rb_ary_entry(argv[0], 0)), NUM2DBL(rb_ary_entry(argv[0], 1)), NUM2DBL(rb_ary_entry(argv[0], 2))); }
2057
- else { FXVec3f *p; SWIG_ConvertPtr(argv[0], (void **)&p, SWIGTYPE_p_FXVec3f, 1); arg1 = new FXVec3f(*p); } } {
2058
- result = (FXVec4f *)new FXVec4f((FXVec3f const &)*arg1); DATA_PTR(self) = result; FXRbRegisterRubyObj(self, result);
2059
- if(rb_block_given_p()){ rb_yield(self); } } delete arg1; return self; }
2136
+ else { FXVec3f *p; SWIG_ConvertPtr(argv[0], (void **)&p, SWIGTYPE_p_FXVec3f, 1); arg1 = new FXVec3f(*p); } }
2137
+ if (argc > 1) { arg2 = (FXfloat) NUM2DBL(argv[1]); } { result = (FXVec4f *)new FXVec4f((FXVec3f const &)*arg1,arg2);
2138
+ DATA_PTR(self) = result; FXRbRegisterRubyObj(self, result); if(rb_block_given_p()){ rb_yield(self); } } delete arg1;
2139
+ return self; }
2060
2140
  static VALUE _wrap_new_FXVec4f__SWIG_3(int argc, VALUE *argv, VALUE self) { FXfloat arg1 ; FXfloat arg2 ; FXfloat arg3 ;
2061
2141
  FXfloat arg4 = (FXfloat) 1.0f ; FXVec4f *result; if ((argc < 3) || (argc > 4))
2062
2142
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 3)",argc); arg1 = (FXfloat) NUM2DBL(argv[0]);
@@ -2081,9 +2161,12 @@ static VALUE _wrap_new_FXVec4f(int nargs, VALUE *args, VALUE self) { int argc; V
2081
2161
  for (ii = 0; (ii < argc) && (ii < 4); ii++) { argv[ii] = args[ii]; } if (argc == 0) {
2082
2162
  return _wrap_new_FXVec4f__SWIG_0(nargs, args, self);} if (argc == 1) { int _v; { void *ptr;
2083
2163
  _v = (NIL_P(argv[0]) || (TYPE(argv[0]) == T_DATA && SWIG_ConvertPtr(argv[0], &ptr, SWIGTYPE_p_FXVec4f, 0) != -1)) ? 1 : 0; }
2084
- if (_v) { return _wrap_new_FXVec4f__SWIG_1(nargs, args, self);} } if (argc == 1) { int _v; { void *ptr;
2164
+ if (_v) { return _wrap_new_FXVec4f__SWIG_1(nargs, args, self);} } if ((argc >= 1) && (argc <= 2)) { int _v; {
2165
+ void *ptr;
2085
2166
  _v = (NIL_P(argv[0]) || (TYPE(argv[0]) == T_DATA && SWIG_ConvertPtr(argv[0], &ptr, SWIGTYPE_p_FXVec3f, 0) != -1)) ? 1 : 0; }
2086
- if (_v) { return _wrap_new_FXVec4f__SWIG_2(nargs, args, self);} } if (argc == 1) { int _v; {
2167
+ if (_v) { if (argc <= 1) { return _wrap_new_FXVec4f__SWIG_2(nargs, args, self);} {
2168
+ _v = ((TYPE(argv[1]) == T_FLOAT) || (TYPE(argv[1]) == T_FIXNUM) || (TYPE(argv[1]) == T_BIGNUM)) ? 1 : 0; }
2169
+ if (_v) { return _wrap_new_FXVec4f__SWIG_2(nargs, args, self);} } } if (argc == 1) { int _v; {
2087
2170
  _v = ((TYPE(argv[0]) == T_FIXNUM) || (TYPE(argv[0]) == T_BIGNUM)) ? 1 : 0; } if (_v) {
2088
2171
  return _wrap_new_FXVec4f__SWIG_4(nargs, args, self);} } if ((argc >= 3) && (argc <= 4)) { int _v; {
2089
2172
  _v = ((TYPE(argv[0]) == T_FLOAT) || (TYPE(argv[0]) == T_FIXNUM) || (TYPE(argv[0]) == T_BIGNUM)) ? 1 : 0; }
@@ -2247,18 +2330,86 @@ static VALUE _wrap_FXVec4f_hi(int argc, VALUE *argv, VALUE self) { FXVec4f *arg1
2247
2330
  else { FXVec4f *p; SWIG_ConvertPtr(argv[0],(void **)&p,SWIGTYPE_p_FXVec4f,1); arg2 = new FXVec4f(*p); } }
2248
2331
  result = FXVec4f_hi((FXVec4f const *)arg1,(FXVec4f const &)*arg2); { FXVec4f* resultptr = new FXVec4f(result);
2249
2332
  vresult = FXRbGetRubyObj(resultptr, "FXVec4f *"); } delete arg2; return vresult; }
2250
- static VALUE _wrap_FXVec4f_to_a(int argc, VALUE *argv, VALUE self) { FXVec4f *arg1 = (FXVec4f *) 0 ; VALUE result;
2251
- FXVec4f tmp1 ; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
2252
- rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc); { if (TYPE(self) == T_ARRAY) {
2253
- tmp1 = FXVec4f(NUM2DBL(rb_ary_entry(self, 0)), NUM2DBL(rb_ary_entry(self, 1)), NUM2DBL(rb_ary_entry(self, 2)), NUM2DBL(rb_ary_entry(self, 3)));
2254
- arg1 = &tmp1; } else { SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXVec4f, 1); } }
2255
- result = (VALUE)FXVec4f_to_a((FXVec4f const *)arg1); vresult = result; return vresult; }
2256
- static VALUE _wrap_FXVec4f_to_s(int argc, VALUE *argv, VALUE self) { FXVec4f *arg1 = (FXVec4f *) 0 ; FXString result;
2257
- FXVec4f tmp1 ; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
2258
- rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc); { if (TYPE(self) == T_ARRAY) {
2259
- tmp1 = FXVec4f(NUM2DBL(rb_ary_entry(self, 0)), NUM2DBL(rb_ary_entry(self, 1)), NUM2DBL(rb_ary_entry(self, 2)), NUM2DBL(rb_ary_entry(self, 3)));
2260
- arg1 = &tmp1; } else { SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXVec4f, 1); } }
2261
- result = FXVec4f_to_s((FXVec4f const *)arg1); vresult = rb_str_new2((&result)->text()); return vresult; }
2333
+ static VALUE _wrap_FXVec4f_plane__SWIG_0(int argc, VALUE *argv, VALUE self) { FXVec4f *arg1 = 0 ; FXVec4f result;
2334
+ VALUE vresult = Qnil; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc); {
2335
+ if (TYPE(argv[0]) == T_ARRAY) {
2336
+ arg1 = new FXVec4f(NUM2DBL(rb_ary_entry(argv[0], 0)), NUM2DBL(rb_ary_entry(argv[0], 1)), NUM2DBL(rb_ary_entry(argv[0], 2)), NUM2DBL(rb_ary_entry(argv[0], 3))); }
2337
+ else { FXVec4f *p; SWIG_ConvertPtr(argv[0],(void **)&p,SWIGTYPE_p_FXVec4f,1); arg1 = new FXVec4f(*p); } }
2338
+ result = FXVec4f_plane((FXVec4f const &)*arg1); { FXVec4f* resultptr = new FXVec4f(result);
2339
+ vresult = FXRbGetRubyObj(resultptr, "FXVec4f *"); } delete arg1; return vresult; }
2340
+ static VALUE _wrap_FXVec4f_plane__SWIG_1(int argc, VALUE *argv, VALUE self) { FXVec3f *arg1 = 0 ; FXfloat arg2 ; FXVec4f result;
2341
+ VALUE vresult = Qnil; if ((argc < 2) || (argc > 2)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc); {
2342
+ if (TYPE(argv[0]) == T_ARRAY) {
2343
+ arg1 = new FXVec3f(NUM2DBL(rb_ary_entry(argv[0], 0)), NUM2DBL(rb_ary_entry(argv[0], 1)), NUM2DBL(rb_ary_entry(argv[0], 2))); }
2344
+ else { FXVec3f *p; SWIG_ConvertPtr(argv[0], (void **)&p, SWIGTYPE_p_FXVec3f, 1); arg1 = new FXVec3f(*p); } }
2345
+ arg2 = (FXfloat) NUM2DBL(argv[1]); result = FXVec4f_plane((FXVec3f const &)*arg1,arg2); {
2346
+ FXVec4f* resultptr = new FXVec4f(result); vresult = FXRbGetRubyObj(resultptr, "FXVec4f *"); } delete arg1;
2347
+ return vresult; }
2348
+ static VALUE _wrap_FXVec4f_plane__SWIG_2(int argc, VALUE *argv, VALUE self) { FXVec3f *arg1 = 0 ; FXVec3f *arg2 = 0 ;
2349
+ FXVec4f result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
2350
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc); { if (TYPE(argv[0]) == T_ARRAY) {
2351
+ arg1 = new FXVec3f(NUM2DBL(rb_ary_entry(argv[0], 0)), NUM2DBL(rb_ary_entry(argv[0], 1)), NUM2DBL(rb_ary_entry(argv[0], 2))); }
2352
+ else { FXVec3f *p; SWIG_ConvertPtr(argv[0], (void **)&p, SWIGTYPE_p_FXVec3f, 1); arg1 = new FXVec3f(*p); } } {
2353
+ if (TYPE(argv[1]) == T_ARRAY) {
2354
+ arg2 = new FXVec3f(NUM2DBL(rb_ary_entry(argv[1], 0)), NUM2DBL(rb_ary_entry(argv[1], 1)), NUM2DBL(rb_ary_entry(argv[1], 2))); }
2355
+ else { FXVec3f *p; SWIG_ConvertPtr(argv[1], (void **)&p, SWIGTYPE_p_FXVec3f, 1); arg2 = new FXVec3f(*p); } }
2356
+ result = FXVec4f_plane((FXVec3f const &)*arg1,(FXVec3f const &)*arg2); { FXVec4f* resultptr = new FXVec4f(result);
2357
+ vresult = FXRbGetRubyObj(resultptr, "FXVec4f *"); } delete arg1; delete arg2; return vresult; }
2358
+ static VALUE _wrap_FXVec4f_plane__SWIG_3(int argc, VALUE *argv, VALUE self) { FXVec3f *arg1 = 0 ; FXVec3f *arg2 = 0 ;
2359
+ FXVec3f *arg3 = 0 ; FXVec4f result; VALUE vresult = Qnil; if ((argc < 3) || (argc > 3))
2360
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 3)",argc); { if (TYPE(argv[0]) == T_ARRAY) {
2361
+ arg1 = new FXVec3f(NUM2DBL(rb_ary_entry(argv[0], 0)), NUM2DBL(rb_ary_entry(argv[0], 1)), NUM2DBL(rb_ary_entry(argv[0], 2))); }
2362
+ else { FXVec3f *p; SWIG_ConvertPtr(argv[0], (void **)&p, SWIGTYPE_p_FXVec3f, 1); arg1 = new FXVec3f(*p); } } {
2363
+ if (TYPE(argv[1]) == T_ARRAY) {
2364
+ arg2 = new FXVec3f(NUM2DBL(rb_ary_entry(argv[1], 0)), NUM2DBL(rb_ary_entry(argv[1], 1)), NUM2DBL(rb_ary_entry(argv[1], 2))); }
2365
+ else { FXVec3f *p; SWIG_ConvertPtr(argv[1], (void **)&p, SWIGTYPE_p_FXVec3f, 1); arg2 = new FXVec3f(*p); } } {
2366
+ if (TYPE(argv[2]) == T_ARRAY) {
2367
+ arg3 = new FXVec3f(NUM2DBL(rb_ary_entry(argv[2], 0)), NUM2DBL(rb_ary_entry(argv[2], 1)), NUM2DBL(rb_ary_entry(argv[2], 2))); }
2368
+ else { FXVec3f *p; SWIG_ConvertPtr(argv[2], (void **)&p, SWIGTYPE_p_FXVec3f, 1); arg3 = new FXVec3f(*p); } }
2369
+ result = FXVec4f_plane((FXVec3f const &)*arg1,(FXVec3f const &)*arg2,(FXVec3f const &)*arg3); {
2370
+ FXVec4f* resultptr = new FXVec4f(result); vresult = FXRbGetRubyObj(resultptr, "FXVec4f *"); } delete arg1; delete arg2;
2371
+ delete arg3; return vresult; }
2372
+ static VALUE _wrap_FXVec4f_plane(int nargs, VALUE *args, VALUE self) { int argc; VALUE argv[3]; int ii; argc = nargs;
2373
+ for (ii = 0; (ii < argc) && (ii < 3); ii++) { argv[ii] = args[ii]; } if (argc == 1) { int _v; { void *ptr;
2374
+ _v = (NIL_P(argv[0]) || (TYPE(argv[0]) == T_DATA && SWIG_ConvertPtr(argv[0], &ptr, SWIGTYPE_p_FXVec4f, 0) != -1)) ? 1 : 0; }
2375
+ if (_v) { return _wrap_FXVec4f_plane__SWIG_0(nargs, args, self);} } if (argc == 2) { int _v; { void *ptr;
2376
+ _v = (NIL_P(argv[0]) || (TYPE(argv[0]) == T_DATA && SWIG_ConvertPtr(argv[0], &ptr, SWIGTYPE_p_FXVec3f, 0) != -1)) ? 1 : 0; }
2377
+ if (_v) { { void *ptr;
2378
+ _v = (NIL_P(argv[1]) || (TYPE(argv[1]) == T_DATA && SWIG_ConvertPtr(argv[1], &ptr, SWIGTYPE_p_FXVec3f, 0) != -1)) ? 1 : 0; }
2379
+ if (_v) { return _wrap_FXVec4f_plane__SWIG_2(nargs, args, self);} } } if (argc == 2) { int _v; { void *ptr;
2380
+ _v = (NIL_P(argv[0]) || (TYPE(argv[0]) == T_DATA && SWIG_ConvertPtr(argv[0], &ptr, SWIGTYPE_p_FXVec3f, 0) != -1)) ? 1 : 0; }
2381
+ if (_v) { { _v = ((TYPE(argv[1]) == T_FLOAT) || (TYPE(argv[1]) == T_FIXNUM) || (TYPE(argv[1]) == T_BIGNUM)) ? 1 : 0; }
2382
+ if (_v) { return _wrap_FXVec4f_plane__SWIG_1(nargs, args, self);} } } if (argc == 3) { int _v; { void *ptr;
2383
+ _v = (NIL_P(argv[0]) || (TYPE(argv[0]) == T_DATA && SWIG_ConvertPtr(argv[0], &ptr, SWIGTYPE_p_FXVec3f, 0) != -1)) ? 1 : 0; }
2384
+ if (_v) { { void *ptr;
2385
+ _v = (NIL_P(argv[1]) || (TYPE(argv[1]) == T_DATA && SWIG_ConvertPtr(argv[1], &ptr, SWIGTYPE_p_FXVec3f, 0) != -1)) ? 1 : 0; }
2386
+ if (_v) { { void *ptr;
2387
+ _v = (NIL_P(argv[2]) || (TYPE(argv[2]) == T_DATA && SWIG_ConvertPtr(argv[2], &ptr, SWIGTYPE_p_FXVec3f, 0) != -1)) ? 1 : 0; }
2388
+ if (_v) { return _wrap_FXVec4f_plane__SWIG_3(nargs, args, self);} } } }
2389
+ rb_raise(rb_eArgError, "No matching function for overloaded 'FXVec4f_plane'"); return Qnil; }
2390
+ static VALUE _wrap_FXVec4f_distance(int argc, VALUE *argv, VALUE self) { FXVec4f *arg1 = 0 ; FXVec3f *arg2 = 0 ; FXfloat result;
2391
+ VALUE vresult = Qnil; if ((argc < 2) || (argc > 2)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc); {
2392
+ if (TYPE(argv[0]) == T_ARRAY) {
2393
+ arg1 = new FXVec4f(NUM2DBL(rb_ary_entry(argv[0], 0)), NUM2DBL(rb_ary_entry(argv[0], 1)), NUM2DBL(rb_ary_entry(argv[0], 2)), NUM2DBL(rb_ary_entry(argv[0], 3))); }
2394
+ else { FXVec4f *p; SWIG_ConvertPtr(argv[0],(void **)&p,SWIGTYPE_p_FXVec4f,1); arg1 = new FXVec4f(*p); } } {
2395
+ if (TYPE(argv[1]) == T_ARRAY) {
2396
+ arg2 = new FXVec3f(NUM2DBL(rb_ary_entry(argv[1], 0)), NUM2DBL(rb_ary_entry(argv[1], 1)), NUM2DBL(rb_ary_entry(argv[1], 2))); }
2397
+ else { FXVec3f *p; SWIG_ConvertPtr(argv[1], (void **)&p, SWIGTYPE_p_FXVec3f, 1); arg2 = new FXVec3f(*p); } }
2398
+ result = (FXfloat)FXVec4f_distance((FXVec4f const &)*arg1,(FXVec3f const &)*arg2); vresult = rb_float_new(result);
2399
+ delete arg1; delete arg2; return vresult; }
2400
+ static VALUE _wrap_FXVec4f_crosses(int argc, VALUE *argv, VALUE self) { FXVec4f *arg1 = 0 ; FXVec3f *arg2 = 0 ;
2401
+ FXVec3f *arg3 = 0 ; FXbool result; VALUE vresult = Qnil; if ((argc < 3) || (argc > 3))
2402
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 3)",argc); { if (TYPE(argv[0]) == T_ARRAY) {
2403
+ arg1 = new FXVec4f(NUM2DBL(rb_ary_entry(argv[0], 0)), NUM2DBL(rb_ary_entry(argv[0], 1)), NUM2DBL(rb_ary_entry(argv[0], 2)), NUM2DBL(rb_ary_entry(argv[0], 3))); }
2404
+ else { FXVec4f *p; SWIG_ConvertPtr(argv[0],(void **)&p,SWIGTYPE_p_FXVec4f,1); arg1 = new FXVec4f(*p); } } {
2405
+ if (TYPE(argv[1]) == T_ARRAY) {
2406
+ arg2 = new FXVec3f(NUM2DBL(rb_ary_entry(argv[1], 0)), NUM2DBL(rb_ary_entry(argv[1], 1)), NUM2DBL(rb_ary_entry(argv[1], 2))); }
2407
+ else { FXVec3f *p; SWIG_ConvertPtr(argv[1], (void **)&p, SWIGTYPE_p_FXVec3f, 1); arg2 = new FXVec3f(*p); } } {
2408
+ if (TYPE(argv[2]) == T_ARRAY) {
2409
+ arg3 = new FXVec3f(NUM2DBL(rb_ary_entry(argv[2], 0)), NUM2DBL(rb_ary_entry(argv[2], 1)), NUM2DBL(rb_ary_entry(argv[2], 2))); }
2410
+ else { FXVec3f *p; SWIG_ConvertPtr(argv[2], (void **)&p, SWIGTYPE_p_FXVec3f, 1); arg3 = new FXVec3f(*p); } }
2411
+ result = (FXbool)FXVec4f_crosses((FXVec4f const &)*arg1,(FXVec3f const &)*arg2,(FXVec3f const &)*arg3);
2412
+ vresult = result ? Qtrue : Qfalse; delete arg1; delete arg2; delete arg3; return vresult; }
2262
2413
  static VALUE _wrap_FXVec4d_x_set(int argc, VALUE *argv, VALUE self) { FXVec4d *arg1 = (FXVec4d *) 0 ; FXdouble arg2 ;
2263
2414
  if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
2264
2415
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXVec4d, 1); arg2 = (FXdouble) NUM2DBL(argv[0]);
@@ -2299,11 +2450,11 @@ static VALUE _wrap_new_FXVec4d__SWIG_1(int argc, VALUE *argv, VALUE self) { FXVe
2299
2450
  SWIG_ConvertPtr(argv[0], (void **) &arg1, SWIGTYPE_p_FXVec4d, 1); if (arg1 == NULL) rb_raise(rb_eTypeError, "null reference");
2300
2451
  { result = (FXVec4d *)new FXVec4d((FXVec4d const &)*arg1); DATA_PTR(self) = result; FXRbRegisterRubyObj(self, result);
2301
2452
  if(rb_block_given_p()){ rb_yield(self); } } return self; }
2302
- static VALUE _wrap_new_FXVec4d__SWIG_2(int argc, VALUE *argv, VALUE self) { FXVec3d *arg1 = 0 ; FXVec4d *result;
2303
- if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
2453
+ static VALUE _wrap_new_FXVec4d__SWIG_2(int argc, VALUE *argv, VALUE self) { FXVec3d *arg1 = 0 ; FXdouble arg2 = (FXdouble) 1.0 ;
2454
+ FXVec4d *result; if ((argc < 1) || (argc > 2)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
2304
2455
  SWIG_ConvertPtr(argv[0], (void **) &arg1, SWIGTYPE_p_FXVec3d, 1); if (arg1 == NULL) rb_raise(rb_eTypeError, "null reference");
2305
- { result = (FXVec4d *)new FXVec4d((FXVec3d const &)*arg1); DATA_PTR(self) = result; FXRbRegisterRubyObj(self, result);
2306
- if(rb_block_given_p()){ rb_yield(self); } } return self; }
2456
+ if (argc > 1) { arg2 = (FXdouble) NUM2DBL(argv[1]); } { result = (FXVec4d *)new FXVec4d((FXVec3d const &)*arg1,arg2);
2457
+ DATA_PTR(self) = result; FXRbRegisterRubyObj(self, result); if(rb_block_given_p()){ rb_yield(self); } } return self; }
2307
2458
  static VALUE _wrap_new_FXVec4d__SWIG_3(int argc, VALUE *argv, VALUE self) { FXdouble arg1 ; FXdouble arg2 ; FXdouble arg3 ;
2308
2459
  FXdouble arg4 = (FXdouble) 1.0 ; FXVec4d *result; if ((argc < 3) || (argc > 4))
2309
2460
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 3)",argc); arg1 = (FXdouble) NUM2DBL(argv[0]);
@@ -2328,9 +2479,12 @@ static VALUE _wrap_new_FXVec4d(int nargs, VALUE *args, VALUE self) { int argc; V
2328
2479
  for (ii = 0; (ii < argc) && (ii < 4); ii++) { argv[ii] = args[ii]; } if (argc == 0) {
2329
2480
  return _wrap_new_FXVec4d__SWIG_0(nargs, args, self);} if (argc == 1) { int _v; { void *ptr;
2330
2481
  _v = (NIL_P(argv[0]) || (TYPE(argv[0]) == T_DATA && SWIG_ConvertPtr(argv[0], &ptr, SWIGTYPE_p_FXVec4d, 0) != -1)) ? 1 : 0; }
2331
- if (_v) { return _wrap_new_FXVec4d__SWIG_1(nargs, args, self);} } if (argc == 1) { int _v; { void *ptr;
2482
+ if (_v) { return _wrap_new_FXVec4d__SWIG_1(nargs, args, self);} } if ((argc >= 1) && (argc <= 2)) { int _v; {
2483
+ void *ptr;
2332
2484
  _v = (NIL_P(argv[0]) || (TYPE(argv[0]) == T_DATA && SWIG_ConvertPtr(argv[0], &ptr, SWIGTYPE_p_FXVec3d, 0) != -1)) ? 1 : 0; }
2333
- if (_v) { return _wrap_new_FXVec4d__SWIG_2(nargs, args, self);} } if (argc == 1) { int _v; {
2485
+ if (_v) { if (argc <= 1) { return _wrap_new_FXVec4d__SWIG_2(nargs, args, self);} {
2486
+ _v = ((TYPE(argv[1]) == T_FLOAT) || (TYPE(argv[1]) == T_FIXNUM) || (TYPE(argv[1]) == T_BIGNUM)) ? 1 : 0; }
2487
+ if (_v) { return _wrap_new_FXVec4d__SWIG_2(nargs, args, self);} } } if (argc == 1) { int _v; {
2334
2488
  _v = ((TYPE(argv[0]) == T_FIXNUM) || (TYPE(argv[0]) == T_BIGNUM)) ? 1 : 0; } if (_v) {
2335
2489
  return _wrap_new_FXVec4d__SWIG_4(nargs, args, self);} } if ((argc >= 3) && (argc <= 4)) { int _v; {
2336
2490
  _v = ((TYPE(argv[0]) == T_FLOAT) || (TYPE(argv[0]) == T_FIXNUM) || (TYPE(argv[0]) == T_BIGNUM)) ? 1 : 0; }
@@ -2447,14 +2601,68 @@ static VALUE _wrap_FXVec4d_hi(int argc, VALUE *argv, VALUE self) { FXVec4d *arg1
2447
2601
  result = FXVec4d_hi((FXVec4d const *)arg1,(FXVec4d const &)*arg2); { FXVec4d * resultptr;
2448
2602
  resultptr = new FXVec4d((FXVec4d &)result); vresult = SWIG_NewPointerObj((void *) resultptr, SWIGTYPE_p_FXVec4d, 1); }
2449
2603
  return vresult; }
2450
- static VALUE _wrap_FXVec4d_to_a(int argc, VALUE *argv, VALUE self) { FXVec4d *arg1 = (FXVec4d *) 0 ; VALUE result;
2451
- VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2452
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXVec4d, 1); result = (VALUE)FXVec4d_to_a((FXVec4d const *)arg1);
2453
- vresult = result; return vresult; }
2454
- static VALUE _wrap_FXVec4d_to_s(int argc, VALUE *argv, VALUE self) { FXVec4d *arg1 = (FXVec4d *) 0 ; FXString result;
2455
- VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2456
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXVec4d, 1); result = FXVec4d_to_s((FXVec4d const *)arg1);
2457
- vresult = rb_str_new2((&result)->text()); return vresult; }
2604
+ static VALUE _wrap_FXVec4d_plane__SWIG_0(int argc, VALUE *argv, VALUE self) { FXVec4d *arg1 = 0 ; FXVec4d result;
2605
+ VALUE vresult = Qnil; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
2606
+ SWIG_ConvertPtr(argv[0], (void **) &arg1, SWIGTYPE_p_FXVec4d, 1); if (arg1 == NULL) rb_raise(rb_eTypeError, "null reference");
2607
+ result = FXVec4d_plane((FXVec4d const &)*arg1); { FXVec4d * resultptr; resultptr = new FXVec4d((FXVec4d &)result);
2608
+ vresult = SWIG_NewPointerObj((void *) resultptr, SWIGTYPE_p_FXVec4d, 1); } return vresult; }
2609
+ static VALUE _wrap_FXVec4d_plane__SWIG_1(int argc, VALUE *argv, VALUE self) { FXVec3d *arg1 = 0 ; FXdouble arg2 ;
2610
+ FXVec4d result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
2611
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
2612
+ SWIG_ConvertPtr(argv[0], (void **) &arg1, SWIGTYPE_p_FXVec3d, 1); if (arg1 == NULL) rb_raise(rb_eTypeError, "null reference");
2613
+ arg2 = (FXdouble) NUM2DBL(argv[1]); result = FXVec4d_plane((FXVec3d const &)*arg1,arg2); { FXVec4d * resultptr;
2614
+ resultptr = new FXVec4d((FXVec4d &)result); vresult = SWIG_NewPointerObj((void *) resultptr, SWIGTYPE_p_FXVec4d, 1); }
2615
+ return vresult; }
2616
+ static VALUE _wrap_FXVec4d_plane__SWIG_2(int argc, VALUE *argv, VALUE self) { FXVec3d *arg1 = 0 ; FXVec3d *arg2 = 0 ;
2617
+ FXVec4d result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
2618
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
2619
+ SWIG_ConvertPtr(argv[0], (void **) &arg1, SWIGTYPE_p_FXVec3d, 1); if (arg1 == NULL) rb_raise(rb_eTypeError, "null reference");
2620
+ SWIG_ConvertPtr(argv[1], (void **) &arg2, SWIGTYPE_p_FXVec3d, 1); if (arg2 == NULL) rb_raise(rb_eTypeError, "null reference");
2621
+ result = FXVec4d_plane((FXVec3d const &)*arg1,(FXVec3d const &)*arg2); { FXVec4d * resultptr;
2622
+ resultptr = new FXVec4d((FXVec4d &)result); vresult = SWIG_NewPointerObj((void *) resultptr, SWIGTYPE_p_FXVec4d, 1); }
2623
+ return vresult; }
2624
+ static VALUE _wrap_FXVec4d_plane__SWIG_3(int argc, VALUE *argv, VALUE self) { FXVec3d *arg1 = 0 ; FXVec3d *arg2 = 0 ;
2625
+ FXVec3d *arg3 = 0 ; FXVec4d result; VALUE vresult = Qnil; if ((argc < 3) || (argc > 3))
2626
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 3)",argc);
2627
+ SWIG_ConvertPtr(argv[0], (void **) &arg1, SWIGTYPE_p_FXVec3d, 1); if (arg1 == NULL) rb_raise(rb_eTypeError, "null reference");
2628
+ SWIG_ConvertPtr(argv[1], (void **) &arg2, SWIGTYPE_p_FXVec3d, 1); if (arg2 == NULL) rb_raise(rb_eTypeError, "null reference");
2629
+ SWIG_ConvertPtr(argv[2], (void **) &arg3, SWIGTYPE_p_FXVec3d, 1); if (arg3 == NULL) rb_raise(rb_eTypeError, "null reference");
2630
+ result = FXVec4d_plane((FXVec3d const &)*arg1,(FXVec3d const &)*arg2,(FXVec3d const &)*arg3); { FXVec4d * resultptr;
2631
+ resultptr = new FXVec4d((FXVec4d &)result); vresult = SWIG_NewPointerObj((void *) resultptr, SWIGTYPE_p_FXVec4d, 1); }
2632
+ return vresult; }
2633
+ static VALUE _wrap_FXVec4d_plane(int nargs, VALUE *args, VALUE self) { int argc; VALUE argv[3]; int ii; argc = nargs;
2634
+ for (ii = 0; (ii < argc) && (ii < 3); ii++) { argv[ii] = args[ii]; } if (argc == 1) { int _v; { void *ptr;
2635
+ _v = (NIL_P(argv[0]) || (TYPE(argv[0]) == T_DATA && SWIG_ConvertPtr(argv[0], &ptr, SWIGTYPE_p_FXVec4d, 0) != -1)) ? 1 : 0; }
2636
+ if (_v) { return _wrap_FXVec4d_plane__SWIG_0(nargs, args, self);} } if (argc == 2) { int _v; { void *ptr;
2637
+ _v = (NIL_P(argv[0]) || (TYPE(argv[0]) == T_DATA && SWIG_ConvertPtr(argv[0], &ptr, SWIGTYPE_p_FXVec3d, 0) != -1)) ? 1 : 0; }
2638
+ if (_v) { { void *ptr;
2639
+ _v = (NIL_P(argv[1]) || (TYPE(argv[1]) == T_DATA && SWIG_ConvertPtr(argv[1], &ptr, SWIGTYPE_p_FXVec3d, 0) != -1)) ? 1 : 0; }
2640
+ if (_v) { return _wrap_FXVec4d_plane__SWIG_2(nargs, args, self);} } } if (argc == 2) { int _v; { void *ptr;
2641
+ _v = (NIL_P(argv[0]) || (TYPE(argv[0]) == T_DATA && SWIG_ConvertPtr(argv[0], &ptr, SWIGTYPE_p_FXVec3d, 0) != -1)) ? 1 : 0; }
2642
+ if (_v) { { _v = ((TYPE(argv[1]) == T_FLOAT) || (TYPE(argv[1]) == T_FIXNUM) || (TYPE(argv[1]) == T_BIGNUM)) ? 1 : 0; }
2643
+ if (_v) { return _wrap_FXVec4d_plane__SWIG_1(nargs, args, self);} } } if (argc == 3) { int _v; { void *ptr;
2644
+ _v = (NIL_P(argv[0]) || (TYPE(argv[0]) == T_DATA && SWIG_ConvertPtr(argv[0], &ptr, SWIGTYPE_p_FXVec3d, 0) != -1)) ? 1 : 0; }
2645
+ if (_v) { { void *ptr;
2646
+ _v = (NIL_P(argv[1]) || (TYPE(argv[1]) == T_DATA && SWIG_ConvertPtr(argv[1], &ptr, SWIGTYPE_p_FXVec3d, 0) != -1)) ? 1 : 0; }
2647
+ if (_v) { { void *ptr;
2648
+ _v = (NIL_P(argv[2]) || (TYPE(argv[2]) == T_DATA && SWIG_ConvertPtr(argv[2], &ptr, SWIGTYPE_p_FXVec3d, 0) != -1)) ? 1 : 0; }
2649
+ if (_v) { return _wrap_FXVec4d_plane__SWIG_3(nargs, args, self);} } } }
2650
+ rb_raise(rb_eArgError, "No matching function for overloaded 'FXVec4d_plane'"); return Qnil; }
2651
+ static VALUE _wrap_FXVec4d_distance(int argc, VALUE *argv, VALUE self) { FXVec4d *arg1 = 0 ; FXVec3d *arg2 = 0 ;
2652
+ FXdouble result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
2653
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
2654
+ SWIG_ConvertPtr(argv[0], (void **) &arg1, SWIGTYPE_p_FXVec4d, 1); if (arg1 == NULL) rb_raise(rb_eTypeError, "null reference");
2655
+ SWIG_ConvertPtr(argv[1], (void **) &arg2, SWIGTYPE_p_FXVec3d, 1); if (arg2 == NULL) rb_raise(rb_eTypeError, "null reference");
2656
+ result = (FXdouble)FXVec4d_distance((FXVec4d const &)*arg1,(FXVec3d const &)*arg2); vresult = rb_float_new(result);
2657
+ return vresult; }
2658
+ static VALUE _wrap_FXVec4d_crosses(int argc, VALUE *argv, VALUE self) { FXVec4d *arg1 = 0 ; FXVec3d *arg2 = 0 ;
2659
+ FXVec3d *arg3 = 0 ; FXbool result; VALUE vresult = Qnil; if ((argc < 3) || (argc > 3))
2660
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 3)",argc);
2661
+ SWIG_ConvertPtr(argv[0], (void **) &arg1, SWIGTYPE_p_FXVec4d, 1); if (arg1 == NULL) rb_raise(rb_eTypeError, "null reference");
2662
+ SWIG_ConvertPtr(argv[1], (void **) &arg2, SWIGTYPE_p_FXVec3d, 1); if (arg2 == NULL) rb_raise(rb_eTypeError, "null reference");
2663
+ SWIG_ConvertPtr(argv[2], (void **) &arg3, SWIGTYPE_p_FXVec3d, 1); if (arg3 == NULL) rb_raise(rb_eTypeError, "null reference");
2664
+ result = (FXbool)FXVec4d_crosses((FXVec4d const &)*arg1,(FXVec3d const &)*arg2,(FXVec3d const &)*arg3);
2665
+ vresult = result ? Qtrue : Qfalse; return vresult; }
2458
2666
  static VALUE _wrap_new_FXQuatf__SWIG_0(int argc, VALUE *argv, VALUE self) { FXQuatf *result; if ((argc < 0) || (argc > 0))
2459
2667
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc); { result = (FXQuatf *)new FXQuatf();
2460
2668
  DATA_PTR(self) = result; FXRbRegisterRubyObj(self, result); if(rb_block_given_p()){ rb_yield(self); } } return self; }
@@ -2471,6 +2679,25 @@ static VALUE _wrap_new_FXQuatf__SWIG_2(int argc, VALUE *argv, VALUE self) { FXfl
2471
2679
  arg1 = (FXfloat) NUM2DBL(argv[0]); arg2 = (FXfloat) NUM2DBL(argv[1]); arg3 = (FXfloat) NUM2DBL(argv[2]); {
2472
2680
  result = (FXQuatf *)new FXQuatf(arg1,arg2,arg3); DATA_PTR(self) = result; FXRbRegisterRubyObj(self, result);
2473
2681
  if(rb_block_given_p()){ rb_yield(self); } } return self; }
2682
+ static VALUE _wrap_new_FXQuatf__SWIG_3(int argc, VALUE *argv, VALUE self) { FXVec3f *arg1 = 0 ; FXVec3f *arg2 = 0 ;
2683
+ FXVec3f *arg3 = 0 ; FXQuatf *result; if ((argc < 3) || (argc > 3))
2684
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 3)",argc); { if (TYPE(argv[0]) == T_ARRAY) {
2685
+ arg1 = new FXVec3f(NUM2DBL(rb_ary_entry(argv[0], 0)), NUM2DBL(rb_ary_entry(argv[0], 1)), NUM2DBL(rb_ary_entry(argv[0], 2))); }
2686
+ else { FXVec3f *p; SWIG_ConvertPtr(argv[0], (void **)&p, SWIGTYPE_p_FXVec3f, 1); arg1 = new FXVec3f(*p); } } {
2687
+ if (TYPE(argv[1]) == T_ARRAY) {
2688
+ arg2 = new FXVec3f(NUM2DBL(rb_ary_entry(argv[1], 0)), NUM2DBL(rb_ary_entry(argv[1], 1)), NUM2DBL(rb_ary_entry(argv[1], 2))); }
2689
+ else { FXVec3f *p; SWIG_ConvertPtr(argv[1], (void **)&p, SWIGTYPE_p_FXVec3f, 1); arg2 = new FXVec3f(*p); } } {
2690
+ if (TYPE(argv[2]) == T_ARRAY) {
2691
+ arg3 = new FXVec3f(NUM2DBL(rb_ary_entry(argv[2], 0)), NUM2DBL(rb_ary_entry(argv[2], 1)), NUM2DBL(rb_ary_entry(argv[2], 2))); }
2692
+ else { FXVec3f *p; SWIG_ConvertPtr(argv[2], (void **)&p, SWIGTYPE_p_FXVec3f, 1); arg3 = new FXVec3f(*p); } } {
2693
+ result = (FXQuatf *)new FXQuatf((FXVec3f const &)*arg1,(FXVec3f const &)*arg2,(FXVec3f const &)*arg3);
2694
+ DATA_PTR(self) = result; FXRbRegisterRubyObj(self, result); if(rb_block_given_p()){ rb_yield(self); } } delete arg1;
2695
+ delete arg2; delete arg3; return self; }
2696
+ static VALUE _wrap_new_FXQuatf__SWIG_4(int argc, VALUE *argv, VALUE self) { FXMat3f *arg1 = 0 ; FXQuatf *result;
2697
+ if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
2698
+ SWIG_ConvertPtr(argv[0], (void **) &arg1, SWIGTYPE_p_FXMat3f, 1); if (arg1 == NULL) rb_raise(rb_eTypeError, "null reference");
2699
+ { result = (FXQuatf *)new FXQuatf((FXMat3f const &)*arg1); DATA_PTR(self) = result; FXRbRegisterRubyObj(self, result);
2700
+ if(rb_block_given_p()){ rb_yield(self); } } return self; }
2474
2701
  #ifdef HAVE_RB_DEFINE_ALLOC_FUNC
2475
2702
  static VALUE _wrap_FXQuatf_allocate(VALUE self) {
2476
2703
  #else
@@ -2481,7 +2708,7 @@ static VALUE _wrap_FXQuatf_allocate(VALUE self) {
2481
2708
  rb_obj_call_init(vresult, argc, argv);
2482
2709
  #endif
2483
2710
  return vresult; }
2484
- static VALUE _wrap_new_FXQuatf__SWIG_3(int argc, VALUE *argv, VALUE self) { FXfloat arg1 ; FXfloat arg2 ; FXfloat arg3 ;
2711
+ static VALUE _wrap_new_FXQuatf__SWIG_5(int argc, VALUE *argv, VALUE self) { FXfloat arg1 ; FXfloat arg2 ; FXfloat arg3 ;
2485
2712
  FXfloat arg4 ; FXQuatf *result; if ((argc < 4) || (argc > 4)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 4)",argc);
2486
2713
  arg1 = (FXfloat) NUM2DBL(argv[0]); arg2 = (FXfloat) NUM2DBL(argv[1]); arg3 = (FXfloat) NUM2DBL(argv[2]);
2487
2714
  arg4 = (FXfloat) NUM2DBL(argv[3]); { result = (FXQuatf *)new FXQuatf(arg1,arg2,arg3,arg4);
@@ -2492,7 +2719,15 @@ static VALUE _wrap_new_FXQuatf(int nargs, VALUE *args, VALUE self) { int argc; V
2492
2719
  _v = (NIL_P(argv[0]) || (TYPE(argv[0]) == T_DATA && SWIG_ConvertPtr(argv[0], &ptr, SWIGTYPE_p_FXVec3f, 0) != -1)) ? 1 : 0; }
2493
2720
  if (_v) { if (argc <= 1) { return _wrap_new_FXQuatf__SWIG_1(nargs, args, self);} {
2494
2721
  _v = ((TYPE(argv[1]) == T_FLOAT) || (TYPE(argv[1]) == T_FIXNUM) || (TYPE(argv[1]) == T_BIGNUM)) ? 1 : 0; }
2495
- if (_v) { return _wrap_new_FXQuatf__SWIG_1(nargs, args, self);} } } if (argc == 3) { int _v; {
2722
+ if (_v) { return _wrap_new_FXQuatf__SWIG_1(nargs, args, self);} } } if (argc == 1) { int _v; { void *ptr;
2723
+ _v = (NIL_P(argv[0]) || (TYPE(argv[0]) == T_DATA && SWIG_ConvertPtr(argv[0], &ptr, SWIGTYPE_p_FXMat3f, 0) != -1)) ? 1 : 0; }
2724
+ if (_v) { return _wrap_new_FXQuatf__SWIG_4(nargs, args, self);} } if (argc == 3) { int _v; { void *ptr;
2725
+ _v = (NIL_P(argv[0]) || (TYPE(argv[0]) == T_DATA && SWIG_ConvertPtr(argv[0], &ptr, SWIGTYPE_p_FXVec3f, 0) != -1)) ? 1 : 0; }
2726
+ if (_v) { { void *ptr;
2727
+ _v = (NIL_P(argv[1]) || (TYPE(argv[1]) == T_DATA && SWIG_ConvertPtr(argv[1], &ptr, SWIGTYPE_p_FXVec3f, 0) != -1)) ? 1 : 0; }
2728
+ if (_v) { { void *ptr;
2729
+ _v = (NIL_P(argv[2]) || (TYPE(argv[2]) == T_DATA && SWIG_ConvertPtr(argv[2], &ptr, SWIGTYPE_p_FXVec3f, 0) != -1)) ? 1 : 0; }
2730
+ if (_v) { return _wrap_new_FXQuatf__SWIG_3(nargs, args, self);} } } } if (argc == 3) { int _v; {
2496
2731
  _v = ((TYPE(argv[0]) == T_FLOAT) || (TYPE(argv[0]) == T_FIXNUM) || (TYPE(argv[0]) == T_BIGNUM)) ? 1 : 0; }
2497
2732
  if (_v) { { _v = ((TYPE(argv[1]) == T_FLOAT) || (TYPE(argv[1]) == T_FIXNUM) || (TYPE(argv[1]) == T_BIGNUM)) ? 1 : 0; }
2498
2733
  if (_v) { {
@@ -2504,7 +2739,7 @@ static VALUE _wrap_new_FXQuatf(int nargs, VALUE *args, VALUE self) { int argc; V
2504
2739
  _v = ((TYPE(argv[2]) == T_FLOAT) || (TYPE(argv[2]) == T_FIXNUM) || (TYPE(argv[2]) == T_BIGNUM)) ? 1 : 0; }
2505
2740
  if (_v) { {
2506
2741
  _v = ((TYPE(argv[3]) == T_FLOAT) || (TYPE(argv[3]) == T_FIXNUM) || (TYPE(argv[3]) == T_BIGNUM)) ? 1 : 0; }
2507
- if (_v) { return _wrap_new_FXQuatf__SWIG_3(nargs, args, self);} } } } }
2742
+ if (_v) { return _wrap_new_FXQuatf__SWIG_5(nargs, args, self);} } } } }
2508
2743
  rb_raise(rb_eArgError, "No matching function for overloaded 'new_FXQuatf'"); return Qnil; }
2509
2744
  static VALUE _wrap_FXQuatf_adjustN___(int argc, VALUE *argv, VALUE self) { FXQuatf *arg1 = (FXQuatf *) 0 ; FXQuatf *result;
2510
2745
  VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
@@ -2525,10 +2760,40 @@ static VALUE _wrap_FXQuatf_setRollPitchYaw(int argc, VALUE *argv, VALUE self) {
2525
2760
  FXfloat arg3 ; FXfloat arg4 ; if ((argc < 3) || (argc > 3)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 3)",argc);
2526
2761
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXQuatf, 1); arg2 = (FXfloat) NUM2DBL(argv[0]);
2527
2762
  arg3 = (FXfloat) NUM2DBL(argv[1]); arg4 = (FXfloat) NUM2DBL(argv[2]); (arg1)->setRollPitchYaw(arg2,arg3,arg4); return Qnil; }
2763
+ static VALUE _wrap_FXQuatf_setAxes(int argc, VALUE *argv, VALUE self) { FXQuatf *arg1 = (FXQuatf *) 0 ; FXVec3f *arg2 = 0 ;
2764
+ FXVec3f *arg3 = 0 ; FXVec3f *arg4 = 0 ; if ((argc < 3) || (argc > 3))
2765
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 3)",argc);
2766
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXQuatf, 1); { if (TYPE(argv[0]) == T_ARRAY) {
2767
+ arg2 = new FXVec3f(NUM2DBL(rb_ary_entry(argv[0], 0)), NUM2DBL(rb_ary_entry(argv[0], 1)), NUM2DBL(rb_ary_entry(argv[0], 2))); }
2768
+ else { FXVec3f *p; SWIG_ConvertPtr(argv[0], (void **)&p, SWIGTYPE_p_FXVec3f, 1); arg2 = new FXVec3f(*p); } } {
2769
+ if (TYPE(argv[1]) == T_ARRAY) {
2770
+ arg3 = new FXVec3f(NUM2DBL(rb_ary_entry(argv[1], 0)), NUM2DBL(rb_ary_entry(argv[1], 1)), NUM2DBL(rb_ary_entry(argv[1], 2))); }
2771
+ else { FXVec3f *p; SWIG_ConvertPtr(argv[1], (void **)&p, SWIGTYPE_p_FXVec3f, 1); arg3 = new FXVec3f(*p); } } {
2772
+ if (TYPE(argv[2]) == T_ARRAY) {
2773
+ arg4 = new FXVec3f(NUM2DBL(rb_ary_entry(argv[2], 0)), NUM2DBL(rb_ary_entry(argv[2], 1)), NUM2DBL(rb_ary_entry(argv[2], 2))); }
2774
+ else { FXVec3f *p; SWIG_ConvertPtr(argv[2], (void **)&p, SWIGTYPE_p_FXVec3f, 1); arg4 = new FXVec3f(*p); } }
2775
+ (arg1)->setAxes((FXVec3f const &)*arg2,(FXVec3f const &)*arg3,(FXVec3f const &)*arg4); delete arg2; delete arg3;
2776
+ delete arg4; return Qnil; }
2777
+ static VALUE _wrap_FXQuatf_getXAxis(int argc, VALUE *argv, VALUE self) { FXQuatf *arg1 = (FXQuatf *) 0 ; FXVec3f result;
2778
+ VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2779
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXQuatf, 1); result = ((FXQuatf const *)arg1)->getXAxis(); {
2780
+ FXVec3f* resultptr = new FXVec3f(result); vresult = FXRbGetRubyObj(resultptr, "FXVec3f *"); } return vresult; }
2781
+ static VALUE _wrap_FXQuatf_getYAxis(int argc, VALUE *argv, VALUE self) { FXQuatf *arg1 = (FXQuatf *) 0 ; FXVec3f result;
2782
+ VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2783
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXQuatf, 1); result = ((FXQuatf const *)arg1)->getYAxis(); {
2784
+ FXVec3f* resultptr = new FXVec3f(result); vresult = FXRbGetRubyObj(resultptr, "FXVec3f *"); } return vresult; }
2785
+ static VALUE _wrap_FXQuatf_getZAxis(int argc, VALUE *argv, VALUE self) { FXQuatf *arg1 = (FXQuatf *) 0 ; FXVec3f result;
2786
+ VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2787
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXQuatf, 1); result = ((FXQuatf const *)arg1)->getZAxis(); {
2788
+ FXVec3f* resultptr = new FXVec3f(result); vresult = FXRbGetRubyObj(resultptr, "FXVec3f *"); } return vresult; }
2528
2789
  static VALUE _wrap_FXQuatf_getRollPitchYaw(int argc, VALUE *argv, VALUE self) { FXQuatf *arg1 = (FXQuatf *) 0 ; VALUE result;
2529
2790
  VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2530
2791
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXQuatf, 1);
2531
2792
  result = (VALUE)FXQuatf_getRollPitchYaw((FXQuatf const *)arg1); vresult = result; return vresult; }
2793
+ static VALUE _wrap_FXQuatf_getAxes(int argc, VALUE *argv, VALUE self) { FXQuatf *arg1 = (FXQuatf *) 0 ; VALUE result;
2794
+ VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2795
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXQuatf, 1); result = (VALUE)FXQuatf_getAxes((FXQuatf const *)arg1);
2796
+ vresult = result; return vresult; }
2532
2797
  static VALUE _wrap_FXQuatf_exp(int argc, VALUE *argv, VALUE self) { FXQuatf *arg1 = (FXQuatf *) 0 ; FXQuatf result;
2533
2798
  VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2534
2799
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXQuatf, 1); result = FXQuatf_exp((FXQuatf const *)arg1); {
@@ -2594,6 +2859,11 @@ static VALUE _wrap_FXQuatf_lerp(int argc, VALUE *argv, VALUE self) { FXQuatf *ar
2594
2859
  SWIG_ConvertPtr(argv[1], (void **) &arg2, SWIGTYPE_p_FXQuatf, 1); if (arg2 == NULL) rb_raise(rb_eTypeError, "null reference");
2595
2860
  arg3 = (FXfloat) NUM2DBL(argv[2]); result = FXQuatf_lerp((FXQuatf const &)*arg1,(FXQuatf const &)*arg2,arg3); {
2596
2861
  FXQuatf *resultptr = new FXQuatf(result); vresult = FXRbGetRubyObj(resultptr, "FXQuatf *"); } return vresult; }
2862
+ static VALUE _wrap_FXQuatf_toMatrix(int argc, VALUE *argv, VALUE self) { FXQuatf *arg1 = (FXQuatf *) 0 ; FXMat3f result;
2863
+ VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2864
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXQuatf, 1); result = FXQuatf_toMatrix((FXQuatf const *)arg1); {
2865
+ FXMat3f * resultptr; resultptr = new FXMat3f((FXMat3f &)result);
2866
+ vresult = SWIG_NewPointerObj((void *) resultptr, SWIGTYPE_p_FXMat3f, 1); } return vresult; }
2597
2867
  static VALUE _wrap_new_FXQuatd__SWIG_0(int argc, VALUE *argv, VALUE self) { FXQuatd *result; if ((argc < 0) || (argc > 0))
2598
2868
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc); { result = (FXQuatd *)new FXQuatd();
2599
2869
  DATA_PTR(self) = result; FXRbRegisterRubyObj(self, result); if(rb_block_given_p()){ rb_yield(self); } } return self; }
@@ -2608,11 +2878,21 @@ static VALUE _wrap_new_FXQuatd__SWIG_2(int argc, VALUE *argv, VALUE self) { FXdo
2608
2878
  arg2 = (FXdouble) NUM2DBL(argv[1]); arg3 = (FXdouble) NUM2DBL(argv[2]); arg4 = (FXdouble) NUM2DBL(argv[3]); {
2609
2879
  result = (FXQuatd *)new FXQuatd(arg1,arg2,arg3,arg4); DATA_PTR(self) = result; FXRbRegisterRubyObj(self, result);
2610
2880
  if(rb_block_given_p()){ rb_yield(self); } } return self; }
2611
- static VALUE _wrap_new_FXQuatd__SWIG_3(int argc, VALUE *argv, VALUE self) { FXVec3d *arg1 = 0 ; FXdouble arg2 = (FXdouble) 0.0 ;
2881
+ static VALUE _wrap_new_FXQuatd__SWIG_3(int argc, VALUE *argv, VALUE self) { FXdouble *arg1 ; FXQuatd *result;
2882
+ if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
2883
+ SWIG_ConvertPtr(argv[0], (void **) &arg1, SWIGTYPE_p_FXdouble, 1); {
2884
+ result = (FXQuatd *)new FXQuatd((FXdouble const (*))arg1); DATA_PTR(self) = result; FXRbRegisterRubyObj(self, result);
2885
+ if(rb_block_given_p()){ rb_yield(self); } } return self; }
2886
+ static VALUE _wrap_new_FXQuatd__SWIG_4(int argc, VALUE *argv, VALUE self) { FXVec3d *arg1 = 0 ; FXdouble arg2 = (FXdouble) 0.0 ;
2612
2887
  FXQuatd *result; if ((argc < 1) || (argc > 2)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
2613
2888
  SWIG_ConvertPtr(argv[0], (void **) &arg1, SWIGTYPE_p_FXVec3d, 1); if (arg1 == NULL) rb_raise(rb_eTypeError, "null reference");
2614
2889
  if (argc > 1) { arg2 = (FXdouble) NUM2DBL(argv[1]); } { result = (FXQuatd *)new FXQuatd((FXVec3d const &)*arg1,arg2);
2615
2890
  DATA_PTR(self) = result; FXRbRegisterRubyObj(self, result); if(rb_block_given_p()){ rb_yield(self); } } return self; }
2891
+ static VALUE _wrap_new_FXQuatd__SWIG_5(int argc, VALUE *argv, VALUE self) { FXdouble arg1 ; FXdouble arg2 ; FXdouble arg3 ;
2892
+ FXQuatd *result; if ((argc < 3) || (argc > 3)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 3)",argc);
2893
+ arg1 = (FXdouble) NUM2DBL(argv[0]); arg2 = (FXdouble) NUM2DBL(argv[1]); arg3 = (FXdouble) NUM2DBL(argv[2]); {
2894
+ result = (FXQuatd *)new FXQuatd(arg1,arg2,arg3); DATA_PTR(self) = result; FXRbRegisterRubyObj(self, result);
2895
+ if(rb_block_given_p()){ rb_yield(self); } } return self; }
2616
2896
  #ifdef HAVE_RB_DEFINE_ALLOC_FUNC
2617
2897
  static VALUE _wrap_FXQuatd_allocate(VALUE self) {
2618
2898
  #else
@@ -2623,26 +2903,37 @@ static VALUE _wrap_FXQuatd_allocate(VALUE self) {
2623
2903
  rb_obj_call_init(vresult, argc, argv);
2624
2904
  #endif
2625
2905
  return vresult; }
2626
- static VALUE _wrap_new_FXQuatd__SWIG_4(int argc, VALUE *argv, VALUE self) { FXdouble arg1 ; FXdouble arg2 ; FXdouble arg3 ;
2627
- FXQuatd *result; if ((argc < 3) || (argc > 3)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 3)",argc);
2628
- arg1 = (FXdouble) NUM2DBL(argv[0]); arg2 = (FXdouble) NUM2DBL(argv[1]); arg3 = (FXdouble) NUM2DBL(argv[2]); {
2629
- result = (FXQuatd *)new FXQuatd(arg1,arg2,arg3); DATA_PTR(self) = result; FXRbRegisterRubyObj(self, result);
2630
- if(rb_block_given_p()){ rb_yield(self); } } return self; }
2906
+ static VALUE _wrap_new_FXQuatd__SWIG_6(int argc, VALUE *argv, VALUE self) { FXVec3d *arg1 = 0 ; FXVec3d *arg2 = 0 ;
2907
+ FXVec3d *arg3 = 0 ; FXQuatd *result; if ((argc < 3) || (argc > 3))
2908
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 3)",argc);
2909
+ SWIG_ConvertPtr(argv[0], (void **) &arg1, SWIGTYPE_p_FXVec3d, 1); if (arg1 == NULL) rb_raise(rb_eTypeError, "null reference");
2910
+ SWIG_ConvertPtr(argv[1], (void **) &arg2, SWIGTYPE_p_FXVec3d, 1); if (arg2 == NULL) rb_raise(rb_eTypeError, "null reference");
2911
+ SWIG_ConvertPtr(argv[2], (void **) &arg3, SWIGTYPE_p_FXVec3d, 1); if (arg3 == NULL) rb_raise(rb_eTypeError, "null reference");
2912
+ { result = (FXQuatd *)new FXQuatd((FXVec3d const &)*arg1,(FXVec3d const &)*arg2,(FXVec3d const &)*arg3);
2913
+ DATA_PTR(self) = result; FXRbRegisterRubyObj(self, result); if(rb_block_given_p()){ rb_yield(self); } } return self; }
2631
2914
  static VALUE _wrap_new_FXQuatd(int nargs, VALUE *args, VALUE self) { int argc; VALUE argv[4]; int ii; argc = nargs;
2632
2915
  for (ii = 0; (ii < argc) && (ii < 4); ii++) { argv[ii] = args[ii]; } if (argc == 0) {
2633
2916
  return _wrap_new_FXQuatd__SWIG_0(nargs, args, self);} if (argc == 1) { int _v; { void *ptr;
2634
2917
  _v = (NIL_P(argv[0]) || (TYPE(argv[0]) == T_DATA && SWIG_ConvertPtr(argv[0], &ptr, SWIGTYPE_p_FXQuatd, 0) != -1)) ? 1 : 0; }
2635
- if (_v) { return _wrap_new_FXQuatd__SWIG_1(nargs, args, self);} } if ((argc >= 1) && (argc <= 2)) { int _v; {
2918
+ if (_v) { return _wrap_new_FXQuatd__SWIG_1(nargs, args, self);} } if (argc == 1) { int _v; { void *ptr;
2919
+ _v = (NIL_P(argv[0]) || (TYPE(argv[0]) == T_DATA && SWIG_ConvertPtr(argv[0], &ptr, SWIGTYPE_p_FXdouble, 0) != -1)) ? 1 : 0; }
2920
+ if (_v) { return _wrap_new_FXQuatd__SWIG_3(nargs, args, self);} } if ((argc >= 1) && (argc <= 2)) { int _v; {
2636
2921
  void *ptr;
2637
2922
  _v = (NIL_P(argv[0]) || (TYPE(argv[0]) == T_DATA && SWIG_ConvertPtr(argv[0], &ptr, SWIGTYPE_p_FXVec3d, 0) != -1)) ? 1 : 0; }
2638
- if (_v) { if (argc <= 1) { return _wrap_new_FXQuatd__SWIG_3(nargs, args, self);} {
2923
+ if (_v) { if (argc <= 1) { return _wrap_new_FXQuatd__SWIG_4(nargs, args, self);} {
2639
2924
  _v = ((TYPE(argv[1]) == T_FLOAT) || (TYPE(argv[1]) == T_FIXNUM) || (TYPE(argv[1]) == T_BIGNUM)) ? 1 : 0; }
2640
- if (_v) { return _wrap_new_FXQuatd__SWIG_3(nargs, args, self);} } } if (argc == 3) { int _v; {
2925
+ if (_v) { return _wrap_new_FXQuatd__SWIG_4(nargs, args, self);} } } if (argc == 3) { int _v; { void *ptr;
2926
+ _v = (NIL_P(argv[0]) || (TYPE(argv[0]) == T_DATA && SWIG_ConvertPtr(argv[0], &ptr, SWIGTYPE_p_FXVec3d, 0) != -1)) ? 1 : 0; }
2927
+ if (_v) { { void *ptr;
2928
+ _v = (NIL_P(argv[1]) || (TYPE(argv[1]) == T_DATA && SWIG_ConvertPtr(argv[1], &ptr, SWIGTYPE_p_FXVec3d, 0) != -1)) ? 1 : 0; }
2929
+ if (_v) { { void *ptr;
2930
+ _v = (NIL_P(argv[2]) || (TYPE(argv[2]) == T_DATA && SWIG_ConvertPtr(argv[2], &ptr, SWIGTYPE_p_FXVec3d, 0) != -1)) ? 1 : 0; }
2931
+ if (_v) { return _wrap_new_FXQuatd__SWIG_6(nargs, args, self);} } } } if (argc == 3) { int _v; {
2641
2932
  _v = ((TYPE(argv[0]) == T_FLOAT) || (TYPE(argv[0]) == T_FIXNUM) || (TYPE(argv[0]) == T_BIGNUM)) ? 1 : 0; }
2642
2933
  if (_v) { { _v = ((TYPE(argv[1]) == T_FLOAT) || (TYPE(argv[1]) == T_FIXNUM) || (TYPE(argv[1]) == T_BIGNUM)) ? 1 : 0; }
2643
2934
  if (_v) { {
2644
2935
  _v = ((TYPE(argv[2]) == T_FLOAT) || (TYPE(argv[2]) == T_FIXNUM) || (TYPE(argv[2]) == T_BIGNUM)) ? 1 : 0; }
2645
- if (_v) { return _wrap_new_FXQuatd__SWIG_4(nargs, args, self);} } } } if (argc == 4) { int _v; {
2936
+ if (_v) { return _wrap_new_FXQuatd__SWIG_5(nargs, args, self);} } } } if (argc == 4) { int _v; {
2646
2937
  _v = ((TYPE(argv[0]) == T_FLOAT) || (TYPE(argv[0]) == T_FIXNUM) || (TYPE(argv[0]) == T_BIGNUM)) ? 1 : 0; }
2647
2938
  if (_v) { { _v = ((TYPE(argv[1]) == T_FLOAT) || (TYPE(argv[1]) == T_FIXNUM) || (TYPE(argv[1]) == T_BIGNUM)) ? 1 : 0; }
2648
2939
  if (_v) { {
@@ -2651,6 +2942,11 @@ static VALUE _wrap_new_FXQuatd(int nargs, VALUE *args, VALUE self) { int argc; V
2651
2942
  _v = ((TYPE(argv[3]) == T_FLOAT) || (TYPE(argv[3]) == T_FIXNUM) || (TYPE(argv[3]) == T_BIGNUM)) ? 1 : 0; }
2652
2943
  if (_v) { return _wrap_new_FXQuatd__SWIG_2(nargs, args, self);} } } } }
2653
2944
  rb_raise(rb_eArgError, "No matching function for overloaded 'new_FXQuatd'"); return Qnil; }
2945
+ static VALUE _wrap_FXQuatd_fromMatrix(int argc, VALUE *argv, VALUE self) { FXMat3d *arg1 = 0 ; FXQuatd result;
2946
+ VALUE vresult = Qnil; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
2947
+ SWIG_ConvertPtr(argv[0], (void **) &arg1, SWIGTYPE_p_FXMat3d, 1); if (arg1 == NULL) rb_raise(rb_eTypeError, "null reference");
2948
+ result = FXQuatd_fromMatrix((FXMat3d const &)*arg1); { FXQuatd * resultptr; resultptr = new FXQuatd((FXQuatd &)result);
2949
+ vresult = SWIG_NewPointerObj((void *) resultptr, SWIGTYPE_p_FXQuatd, 1); } return vresult; }
2654
2950
  static VALUE _wrap_FXQuatd_adjust(int argc, VALUE *argv, VALUE self) { FXQuatd *arg1 = (FXQuatd *) 0 ; FXQuatd *result;
2655
2951
  VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2656
2952
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXQuatd, 1); { FXQuatd &_result_ref = (arg1)->adjust();
@@ -2743,14 +3039,51 @@ static VALUE _wrap_FXQuatd_lerp(int argc, VALUE *argv, VALUE self) { FXQuatd *ar
2743
3039
  arg3 = (FXdouble) NUM2DBL(argv[2]); result = FXQuatd_lerp((FXQuatd const &)*arg1,(FXQuatd const &)*arg2,arg3); {
2744
3040
  FXQuatd * resultptr; resultptr = new FXQuatd((FXQuatd &)result);
2745
3041
  vresult = SWIG_NewPointerObj((void *) resultptr, SWIGTYPE_p_FXQuatd, 1); } return vresult; }
2746
- static VALUE _wrap_new_FXMat3f__SWIG_0(int argc, VALUE *argv, VALUE self) { FXMat3f *result; if ((argc < 0) || (argc > 0))
2747
- rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc); { result = (FXMat3f *)new FXMat3f();
2748
- DATA_PTR(self) = result; FXRbRegisterRubyObj(self, result); if(rb_block_given_p()){ rb_yield(self); } } return self; }
2749
- static VALUE _wrap_new_FXMat3f__SWIG_1(int argc, VALUE *argv, VALUE self) { FXfloat arg1 ; FXMat3f *result;
2750
- if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
3042
+ static VALUE _wrap_FXQuatd_toMatrix(int argc, VALUE *argv, VALUE self) { FXQuatd *arg1 = (FXQuatd *) 0 ; FXMat3d result;
3043
+ VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3044
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXQuatd, 1); result = FXQuatd_toMatrix((FXQuatd const *)arg1); {
3045
+ FXMat3d * resultptr; resultptr = new FXMat3d((FXMat3d &)result);
3046
+ vresult = SWIG_NewPointerObj((void *) resultptr, SWIGTYPE_p_FXMat3d, 1); } return vresult; }
3047
+ static VALUE _wrap_FXQuatd_setAxes(int argc, VALUE *argv, VALUE self) { FXQuatd *arg1 = (FXQuatd *) 0 ; FXVec3d *arg2 = 0 ;
3048
+ FXVec3d *arg3 = 0 ; FXVec3d *arg4 = 0 ; if ((argc < 3) || (argc > 3))
3049
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 3)",argc);
3050
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXQuatd, 1);
3051
+ SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXVec3d, 1); if (arg2 == NULL) rb_raise(rb_eTypeError, "null reference");
3052
+ SWIG_ConvertPtr(argv[1], (void **) &arg3, SWIGTYPE_p_FXVec3d, 1); if (arg3 == NULL) rb_raise(rb_eTypeError, "null reference");
3053
+ SWIG_ConvertPtr(argv[2], (void **) &arg4, SWIGTYPE_p_FXVec3d, 1); if (arg4 == NULL) rb_raise(rb_eTypeError, "null reference");
3054
+ (arg1)->setAxes((FXVec3d const &)*arg2,(FXVec3d const &)*arg3,(FXVec3d const &)*arg4); return Qnil; }
3055
+ static VALUE _wrap_FXQuatd_getAxes(int argc, VALUE *argv, VALUE self) { FXQuatd *arg1 = (FXQuatd *) 0 ; VALUE result;
3056
+ VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3057
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXQuatd, 1); result = (VALUE)FXQuatd_getAxes((FXQuatd const *)arg1);
3058
+ vresult = result; return vresult; }
3059
+ static VALUE _wrap_FXQuatd_getXAxis(int argc, VALUE *argv, VALUE self) { FXQuatd *arg1 = (FXQuatd *) 0 ; FXVec3d result;
3060
+ VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3061
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXQuatd, 1); result = ((FXQuatd const *)arg1)->getXAxis(); {
3062
+ FXVec3d * resultptr; resultptr = new FXVec3d((FXVec3d &)result);
3063
+ vresult = SWIG_NewPointerObj((void *) resultptr, SWIGTYPE_p_FXVec3d, 1); } return vresult; }
3064
+ static VALUE _wrap_FXQuatd_getYAxis(int argc, VALUE *argv, VALUE self) { FXQuatd *arg1 = (FXQuatd *) 0 ; FXVec3d result;
3065
+ VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3066
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXQuatd, 1); result = ((FXQuatd const *)arg1)->getYAxis(); {
3067
+ FXVec3d * resultptr; resultptr = new FXVec3d((FXVec3d &)result);
3068
+ vresult = SWIG_NewPointerObj((void *) resultptr, SWIGTYPE_p_FXVec3d, 1); } return vresult; }
3069
+ static VALUE _wrap_FXQuatd_getZAxis(int argc, VALUE *argv, VALUE self) { FXQuatd *arg1 = (FXQuatd *) 0 ; FXVec3d result;
3070
+ VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3071
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXQuatd, 1); result = ((FXQuatd const *)arg1)->getZAxis(); {
3072
+ FXVec3d * resultptr; resultptr = new FXVec3d((FXVec3d &)result);
3073
+ vresult = SWIG_NewPointerObj((void *) resultptr, SWIGTYPE_p_FXVec3d, 1); } return vresult; }
3074
+ static VALUE _wrap_new_FXMat3f__SWIG_0(int argc, VALUE *argv, VALUE self) { FXMat3f *result; if ((argc < 0) || (argc > 0))
3075
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc); { result = (FXMat3f *)new FXMat3f();
3076
+ DATA_PTR(self) = result; FXRbRegisterRubyObj(self, result); if(rb_block_given_p()){ rb_yield(self); } } return self; }
3077
+ static VALUE _wrap_new_FXMat3f__SWIG_1(int argc, VALUE *argv, VALUE self) { FXMat3f *arg1 = 0 ; FXMat3f *result;
3078
+ if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
3079
+ SWIG_ConvertPtr(argv[0], (void **) &arg1, SWIGTYPE_p_FXMat3f, 1); if (arg1 == NULL) rb_raise(rb_eTypeError, "null reference");
3080
+ { result = (FXMat3f *)new FXMat3f((FXMat3f const &)*arg1); DATA_PTR(self) = result; FXRbRegisterRubyObj(self, result);
3081
+ if(rb_block_given_p()){ rb_yield(self); } } return self; }
3082
+ static VALUE _wrap_new_FXMat3f__SWIG_2(int argc, VALUE *argv, VALUE self) { FXfloat arg1 ; FXMat3f *result;
3083
+ if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
2751
3084
  arg1 = (FXfloat) NUM2DBL(argv[0]); { result = (FXMat3f *)new FXMat3f(arg1);
2752
3085
  DATA_PTR(self) = result; FXRbRegisterRubyObj(self, result); if(rb_block_given_p()){ rb_yield(self); } } return self; }
2753
- static VALUE _wrap_new_FXMat3f__SWIG_2(int argc, VALUE *argv, VALUE self) { FXfloat arg1 ; FXfloat arg2 ; FXfloat arg3 ;
3086
+ static VALUE _wrap_new_FXMat3f__SWIG_3(int argc, VALUE *argv, VALUE self) { FXfloat arg1 ; FXfloat arg2 ; FXfloat arg3 ;
2754
3087
  FXfloat arg4 ; FXfloat arg5 ; FXfloat arg6 ; FXfloat arg7 ; FXfloat arg8 ; FXfloat arg9 ; FXMat3f *result;
2755
3088
  if ((argc < 9) || (argc > 9)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 9)",argc);
2756
3089
  arg1 = (FXfloat) NUM2DBL(argv[0]); arg2 = (FXfloat) NUM2DBL(argv[1]); arg3 = (FXfloat) NUM2DBL(argv[2]);
@@ -2758,7 +3091,7 @@ static VALUE _wrap_new_FXMat3f__SWIG_2(int argc, VALUE *argv, VALUE self) { FXfl
2758
3091
  arg7 = (FXfloat) NUM2DBL(argv[6]); arg8 = (FXfloat) NUM2DBL(argv[7]); arg9 = (FXfloat) NUM2DBL(argv[8]); {
2759
3092
  result = (FXMat3f *)new FXMat3f(arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8,arg9);
2760
3093
  DATA_PTR(self) = result; FXRbRegisterRubyObj(self, result); if(rb_block_given_p()){ rb_yield(self); } } return self; }
2761
- static VALUE _wrap_new_FXMat3f__SWIG_3(int argc, VALUE *argv, VALUE self) { FXVec3f *arg1 = 0 ; FXVec3f *arg2 = 0 ;
3094
+ static VALUE _wrap_new_FXMat3f__SWIG_4(int argc, VALUE *argv, VALUE self) { FXVec3f *arg1 = 0 ; FXVec3f *arg2 = 0 ;
2762
3095
  FXVec3f *arg3 = 0 ; FXMat3f *result; if ((argc < 3) || (argc > 3))
2763
3096
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 3)",argc); { if (TYPE(argv[0]) == T_ARRAY) {
2764
3097
  arg1 = new FXVec3f(NUM2DBL(rb_ary_entry(argv[0], 0)), NUM2DBL(rb_ary_entry(argv[0], 1)), NUM2DBL(rb_ary_entry(argv[0], 2))); }
@@ -2782,24 +3115,26 @@ static VALUE _wrap_FXMat3f_allocate(VALUE self) {
2782
3115
  rb_obj_call_init(vresult, argc, argv);
2783
3116
  #endif
2784
3117
  return vresult; }
2785
- static VALUE _wrap_new_FXMat3f__SWIG_4(int argc, VALUE *argv, VALUE self) { FXMat3f *arg1 = 0 ; FXMat3f *result;
3118
+ static VALUE _wrap_new_FXMat3f__SWIG_5(int argc, VALUE *argv, VALUE self) { FXQuatf *arg1 = 0 ; FXMat3f *result;
2786
3119
  if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
2787
- SWIG_ConvertPtr(argv[0], (void **) &arg1, SWIGTYPE_p_FXMat3f, 1); if (arg1 == NULL) rb_raise(rb_eTypeError, "null reference");
2788
- { result = (FXMat3f *)new FXMat3f((FXMat3f const &)*arg1); DATA_PTR(self) = result; FXRbRegisterRubyObj(self, result);
3120
+ SWIG_ConvertPtr(argv[0], (void **) &arg1, SWIGTYPE_p_FXQuatf, 1); if (arg1 == NULL) rb_raise(rb_eTypeError, "null reference");
3121
+ { result = (FXMat3f *)new FXMat3f((FXQuatf const &)*arg1); DATA_PTR(self) = result; FXRbRegisterRubyObj(self, result);
2789
3122
  if(rb_block_given_p()){ rb_yield(self); } } return self; }
2790
3123
  static VALUE _wrap_new_FXMat3f(int nargs, VALUE *args, VALUE self) { int argc; VALUE argv[9]; int ii; argc = nargs;
2791
3124
  for (ii = 0; (ii < argc) && (ii < 9); ii++) { argv[ii] = args[ii]; } if (argc == 0) {
2792
3125
  return _wrap_new_FXMat3f__SWIG_0(nargs, args, self);} if (argc == 1) { int _v; { void *ptr;
2793
3126
  _v = (NIL_P(argv[0]) || (TYPE(argv[0]) == T_DATA && SWIG_ConvertPtr(argv[0], &ptr, SWIGTYPE_p_FXMat3f, 0) != -1)) ? 1 : 0; }
2794
- if (_v) { return _wrap_new_FXMat3f__SWIG_4(nargs, args, self);} } if (argc == 1) { int _v; {
3127
+ if (_v) { return _wrap_new_FXMat3f__SWIG_1(nargs, args, self);} } if (argc == 1) { int _v; { void *ptr;
3128
+ _v = (NIL_P(argv[0]) || (TYPE(argv[0]) == T_DATA && SWIG_ConvertPtr(argv[0], &ptr, SWIGTYPE_p_FXQuatf, 0) != -1)) ? 1 : 0; }
3129
+ if (_v) { return _wrap_new_FXMat3f__SWIG_5(nargs, args, self);} } if (argc == 1) { int _v; {
2795
3130
  _v = ((TYPE(argv[0]) == T_FLOAT) || (TYPE(argv[0]) == T_FIXNUM) || (TYPE(argv[0]) == T_BIGNUM)) ? 1 : 0; }
2796
- if (_v) { return _wrap_new_FXMat3f__SWIG_1(nargs, args, self);} } if (argc == 3) { int _v; { void *ptr;
3131
+ if (_v) { return _wrap_new_FXMat3f__SWIG_2(nargs, args, self);} } if (argc == 3) { int _v; { void *ptr;
2797
3132
  _v = (NIL_P(argv[0]) || (TYPE(argv[0]) == T_DATA && SWIG_ConvertPtr(argv[0], &ptr, SWIGTYPE_p_FXVec3f, 0) != -1)) ? 1 : 0; }
2798
3133
  if (_v) { { void *ptr;
2799
3134
  _v = (NIL_P(argv[1]) || (TYPE(argv[1]) == T_DATA && SWIG_ConvertPtr(argv[1], &ptr, SWIGTYPE_p_FXVec3f, 0) != -1)) ? 1 : 0; }
2800
3135
  if (_v) { { void *ptr;
2801
3136
  _v = (NIL_P(argv[2]) || (TYPE(argv[2]) == T_DATA && SWIG_ConvertPtr(argv[2], &ptr, SWIGTYPE_p_FXVec3f, 0) != -1)) ? 1 : 0; }
2802
- if (_v) { return _wrap_new_FXMat3f__SWIG_3(nargs, args, self);} } } } if (argc == 9) { int _v; {
3137
+ if (_v) { return _wrap_new_FXMat3f__SWIG_4(nargs, args, self);} } } } if (argc == 9) { int _v; {
2803
3138
  _v = ((TYPE(argv[0]) == T_FLOAT) || (TYPE(argv[0]) == T_FIXNUM) || (TYPE(argv[0]) == T_BIGNUM)) ? 1 : 0; }
2804
3139
  if (_v) { { _v = ((TYPE(argv[1]) == T_FLOAT) || (TYPE(argv[1]) == T_FIXNUM) || (TYPE(argv[1]) == T_BIGNUM)) ? 1 : 0; }
2805
3140
  if (_v) { {
@@ -2816,7 +3151,7 @@ static VALUE _wrap_new_FXMat3f(int nargs, VALUE *args, VALUE self) { int argc; V
2816
3151
  _v = ((TYPE(argv[7]) == T_FLOAT) || (TYPE(argv[7]) == T_FIXNUM) || (TYPE(argv[7]) == T_BIGNUM)) ? 1 : 0; }
2817
3152
  if (_v) { {
2818
3153
  _v = ((TYPE(argv[8]) == T_FLOAT) || (TYPE(argv[8]) == T_FIXNUM) || (TYPE(argv[8]) == T_BIGNUM)) ? 1 : 0; }
2819
- if (_v) { return _wrap_new_FXMat3f__SWIG_2(nargs, args, self);} } } } } } } } }
3154
+ if (_v) { return _wrap_new_FXMat3f__SWIG_3(nargs, args, self);} } } } } } } } }
2820
3155
  } rb_raise(rb_eArgError, "No matching function for overloaded 'new_FXMat3f'"); return Qnil; }
2821
3156
  static VALUE _wrap_FXMat3f___getitem__(int argc, VALUE *argv, VALUE self) { FXMat3f *arg1 = (FXMat3f *) 0 ; FXint arg2 ;
2822
3157
  FXVec3f *result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 1))
@@ -2986,11 +3321,16 @@ static VALUE _wrap_FXMat3f_invert(int argc, VALUE *argv, VALUE self) { FXMat3f *
2986
3321
  static VALUE _wrap_new_FXMat3d__SWIG_0(int argc, VALUE *argv, VALUE self) { FXMat3d *result; if ((argc < 0) || (argc > 0))
2987
3322
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc); { result = (FXMat3d *)new FXMat3d();
2988
3323
  DATA_PTR(self) = result; FXRbRegisterRubyObj(self, result); if(rb_block_given_p()){ rb_yield(self); } } return self; }
2989
- static VALUE _wrap_new_FXMat3d__SWIG_1(int argc, VALUE *argv, VALUE self) { FXdouble arg1 ; FXMat3d *result;
3324
+ static VALUE _wrap_new_FXMat3d__SWIG_1(int argc, VALUE *argv, VALUE self) { FXMat3d *arg1 = 0 ; FXMat3d *result;
3325
+ if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
3326
+ SWIG_ConvertPtr(argv[0], (void **) &arg1, SWIGTYPE_p_FXMat3d, 1); if (arg1 == NULL) rb_raise(rb_eTypeError, "null reference");
3327
+ { result = (FXMat3d *)new FXMat3d((FXMat3d const &)*arg1); DATA_PTR(self) = result; FXRbRegisterRubyObj(self, result);
3328
+ if(rb_block_given_p()){ rb_yield(self); } } return self; }
3329
+ static VALUE _wrap_new_FXMat3d__SWIG_2(int argc, VALUE *argv, VALUE self) { FXdouble arg1 ; FXMat3d *result;
2990
3330
  if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
2991
3331
  arg1 = (FXdouble) NUM2DBL(argv[0]); { result = (FXMat3d *)new FXMat3d(arg1);
2992
3332
  DATA_PTR(self) = result; FXRbRegisterRubyObj(self, result); if(rb_block_given_p()){ rb_yield(self); } } return self; }
2993
- static VALUE _wrap_new_FXMat3d__SWIG_2(int argc, VALUE *argv, VALUE self) { FXdouble arg1 ; FXdouble arg2 ; FXdouble arg3 ;
3333
+ static VALUE _wrap_new_FXMat3d__SWIG_3(int argc, VALUE *argv, VALUE self) { FXdouble arg1 ; FXdouble arg2 ; FXdouble arg3 ;
2994
3334
  FXdouble arg4 ; FXdouble arg5 ; FXdouble arg6 ; FXdouble arg7 ; FXdouble arg8 ; FXdouble arg9 ; FXMat3d *result;
2995
3335
  if ((argc < 9) || (argc > 9)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 9)",argc);
2996
3336
  arg1 = (FXdouble) NUM2DBL(argv[0]); arg2 = (FXdouble) NUM2DBL(argv[1]); arg3 = (FXdouble) NUM2DBL(argv[2]);
@@ -2998,7 +3338,7 @@ static VALUE _wrap_new_FXMat3d__SWIG_2(int argc, VALUE *argv, VALUE self) { FXdo
2998
3338
  arg7 = (FXdouble) NUM2DBL(argv[6]); arg8 = (FXdouble) NUM2DBL(argv[7]); arg9 = (FXdouble) NUM2DBL(argv[8]); {
2999
3339
  result = (FXMat3d *)new FXMat3d(arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8,arg9);
3000
3340
  DATA_PTR(self) = result; FXRbRegisterRubyObj(self, result); if(rb_block_given_p()){ rb_yield(self); } } return self; }
3001
- static VALUE _wrap_new_FXMat3d__SWIG_3(int argc, VALUE *argv, VALUE self) { FXVec3d *arg1 = 0 ; FXVec3d *arg2 = 0 ;
3341
+ static VALUE _wrap_new_FXMat3d__SWIG_4(int argc, VALUE *argv, VALUE self) { FXVec3d *arg1 = 0 ; FXVec3d *arg2 = 0 ;
3002
3342
  FXVec3d *arg3 = 0 ; FXMat3d *result; if ((argc < 3) || (argc > 3))
3003
3343
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 3)",argc);
3004
3344
  SWIG_ConvertPtr(argv[0], (void **) &arg1, SWIGTYPE_p_FXVec3d, 1); if (arg1 == NULL) rb_raise(rb_eTypeError, "null reference");
@@ -3016,24 +3356,26 @@ static VALUE _wrap_FXMat3d_allocate(VALUE self) {
3016
3356
  rb_obj_call_init(vresult, argc, argv);
3017
3357
  #endif
3018
3358
  return vresult; }
3019
- static VALUE _wrap_new_FXMat3d__SWIG_4(int argc, VALUE *argv, VALUE self) { FXMat3d *arg1 = 0 ; FXMat3d *result;
3359
+ static VALUE _wrap_new_FXMat3d__SWIG_5(int argc, VALUE *argv, VALUE self) { FXQuatd *arg1 = 0 ; FXMat3d *result;
3020
3360
  if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
3021
- SWIG_ConvertPtr(argv[0], (void **) &arg1, SWIGTYPE_p_FXMat3d, 1); if (arg1 == NULL) rb_raise(rb_eTypeError, "null reference");
3022
- { result = (FXMat3d *)new FXMat3d((FXMat3d const &)*arg1); DATA_PTR(self) = result; FXRbRegisterRubyObj(self, result);
3361
+ SWIG_ConvertPtr(argv[0], (void **) &arg1, SWIGTYPE_p_FXQuatd, 1); if (arg1 == NULL) rb_raise(rb_eTypeError, "null reference");
3362
+ { result = (FXMat3d *)new FXMat3d((FXQuatd const &)*arg1); DATA_PTR(self) = result; FXRbRegisterRubyObj(self, result);
3023
3363
  if(rb_block_given_p()){ rb_yield(self); } } return self; }
3024
3364
  static VALUE _wrap_new_FXMat3d(int nargs, VALUE *args, VALUE self) { int argc; VALUE argv[9]; int ii; argc = nargs;
3025
3365
  for (ii = 0; (ii < argc) && (ii < 9); ii++) { argv[ii] = args[ii]; } if (argc == 0) {
3026
3366
  return _wrap_new_FXMat3d__SWIG_0(nargs, args, self);} if (argc == 1) { int _v; { void *ptr;
3027
3367
  _v = (NIL_P(argv[0]) || (TYPE(argv[0]) == T_DATA && SWIG_ConvertPtr(argv[0], &ptr, SWIGTYPE_p_FXMat3d, 0) != -1)) ? 1 : 0; }
3028
- if (_v) { return _wrap_new_FXMat3d__SWIG_4(nargs, args, self);} } if (argc == 1) { int _v; {
3368
+ if (_v) { return _wrap_new_FXMat3d__SWIG_1(nargs, args, self);} } if (argc == 1) { int _v; { void *ptr;
3369
+ _v = (NIL_P(argv[0]) || (TYPE(argv[0]) == T_DATA && SWIG_ConvertPtr(argv[0], &ptr, SWIGTYPE_p_FXQuatd, 0) != -1)) ? 1 : 0; }
3370
+ if (_v) { return _wrap_new_FXMat3d__SWIG_5(nargs, args, self);} } if (argc == 1) { int _v; {
3029
3371
  _v = ((TYPE(argv[0]) == T_FLOAT) || (TYPE(argv[0]) == T_FIXNUM) || (TYPE(argv[0]) == T_BIGNUM)) ? 1 : 0; }
3030
- if (_v) { return _wrap_new_FXMat3d__SWIG_1(nargs, args, self);} } if (argc == 3) { int _v; { void *ptr;
3372
+ if (_v) { return _wrap_new_FXMat3d__SWIG_2(nargs, args, self);} } if (argc == 3) { int _v; { void *ptr;
3031
3373
  _v = (NIL_P(argv[0]) || (TYPE(argv[0]) == T_DATA && SWIG_ConvertPtr(argv[0], &ptr, SWIGTYPE_p_FXVec3d, 0) != -1)) ? 1 : 0; }
3032
3374
  if (_v) { { void *ptr;
3033
3375
  _v = (NIL_P(argv[1]) || (TYPE(argv[1]) == T_DATA && SWIG_ConvertPtr(argv[1], &ptr, SWIGTYPE_p_FXVec3d, 0) != -1)) ? 1 : 0; }
3034
3376
  if (_v) { { void *ptr;
3035
3377
  _v = (NIL_P(argv[2]) || (TYPE(argv[2]) == T_DATA && SWIG_ConvertPtr(argv[2], &ptr, SWIGTYPE_p_FXVec3d, 0) != -1)) ? 1 : 0; }
3036
- if (_v) { return _wrap_new_FXMat3d__SWIG_3(nargs, args, self);} } } } if (argc == 9) { int _v; {
3378
+ if (_v) { return _wrap_new_FXMat3d__SWIG_4(nargs, args, self);} } } } if (argc == 9) { int _v; {
3037
3379
  _v = ((TYPE(argv[0]) == T_FLOAT) || (TYPE(argv[0]) == T_FIXNUM) || (TYPE(argv[0]) == T_BIGNUM)) ? 1 : 0; }
3038
3380
  if (_v) { { _v = ((TYPE(argv[1]) == T_FLOAT) || (TYPE(argv[1]) == T_FIXNUM) || (TYPE(argv[1]) == T_BIGNUM)) ? 1 : 0; }
3039
3381
  if (_v) { {
@@ -3050,7 +3392,7 @@ static VALUE _wrap_new_FXMat3d(int nargs, VALUE *args, VALUE self) { int argc; V
3050
3392
  _v = ((TYPE(argv[7]) == T_FLOAT) || (TYPE(argv[7]) == T_FIXNUM) || (TYPE(argv[7]) == T_BIGNUM)) ? 1 : 0; }
3051
3393
  if (_v) { {
3052
3394
  _v = ((TYPE(argv[8]) == T_FLOAT) || (TYPE(argv[8]) == T_FIXNUM) || (TYPE(argv[8]) == T_BIGNUM)) ? 1 : 0; }
3053
- if (_v) { return _wrap_new_FXMat3d__SWIG_2(nargs, args, self);} } } } } } } } }
3395
+ if (_v) { return _wrap_new_FXMat3d__SWIG_3(nargs, args, self);} } } } } } } } }
3054
3396
  } rb_raise(rb_eArgError, "No matching function for overloaded 'new_FXMat3d'"); return Qnil; }
3055
3397
  static VALUE _wrap_FXMat3d___getitem__(int argc, VALUE *argv, VALUE self) { FXMat3d *arg1 = (FXMat3d *) 0 ; FXint arg2 ;
3056
3398
  FXVec3d *result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 1))
@@ -4644,17 +4986,17 @@ static VALUE _wrap_new_FXSpheref__SWIG_1(int argc, VALUE *argv, VALUE self) { FX
4644
4986
  if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
4645
4987
  SWIG_ConvertPtr(argv[0], (void **) &arg1, SWIGTYPE_p_FXSpheref, 1); if (arg1 == NULL) rb_raise(rb_eTypeError, "null reference");
4646
4988
  result = (FXSpheref *)new FXSpheref((FXSpheref const &)*arg1); DATA_PTR(self) = result; return self; }
4647
- static VALUE _wrap_new_FXSpheref__SWIG_2(int argc, VALUE *argv, VALUE self) { FXVec3f *arg1 = 0 ; FXfloat arg2 ;
4648
- FXSpheref *result; if ((argc < 2) || (argc > 2)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc); {
4649
- if (TYPE(argv[0]) == T_ARRAY) {
4989
+ static VALUE _wrap_new_FXSpheref__SWIG_2(int argc, VALUE *argv, VALUE self) { FXVec3f *arg1 = 0 ;
4990
+ FXfloat arg2 = (FXfloat) 0.0f ; FXSpheref *result; if ((argc < 1) || (argc > 2))
4991
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc); { if (TYPE(argv[0]) == T_ARRAY) {
4650
4992
  arg1 = new FXVec3f(NUM2DBL(rb_ary_entry(argv[0], 0)), NUM2DBL(rb_ary_entry(argv[0], 1)), NUM2DBL(rb_ary_entry(argv[0], 2))); }
4651
4993
  else { FXVec3f *p; SWIG_ConvertPtr(argv[0], (void **)&p, SWIGTYPE_p_FXVec3f, 1); arg1 = new FXVec3f(*p); } }
4652
- arg2 = (FXfloat) NUM2DBL(argv[1]); result = (FXSpheref *)new FXSpheref((FXVec3f const &)*arg1,arg2);
4994
+ if (argc > 1) { arg2 = (FXfloat) NUM2DBL(argv[1]); } result = (FXSpheref *)new FXSpheref((FXVec3f const &)*arg1,arg2);
4653
4995
  DATA_PTR(self) = result; delete arg1; return self; }
4654
4996
  static VALUE _wrap_new_FXSpheref__SWIG_3(int argc, VALUE *argv, VALUE self) { FXfloat arg1 ; FXfloat arg2 ; FXfloat arg3 ;
4655
- FXfloat arg4 ; FXSpheref *result; if ((argc < 4) || (argc > 4))
4656
- rb_raise(rb_eArgError, "wrong # of arguments(%d for 4)",argc); arg1 = (FXfloat) NUM2DBL(argv[0]);
4657
- arg2 = (FXfloat) NUM2DBL(argv[1]); arg3 = (FXfloat) NUM2DBL(argv[2]); arg4 = (FXfloat) NUM2DBL(argv[3]);
4997
+ FXfloat arg4 = (FXfloat) 0.0f ; FXSpheref *result; if ((argc < 3) || (argc > 4))
4998
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 3)",argc); arg1 = (FXfloat) NUM2DBL(argv[0]);
4999
+ arg2 = (FXfloat) NUM2DBL(argv[1]); arg3 = (FXfloat) NUM2DBL(argv[2]); if (argc > 3) { arg4 = (FXfloat) NUM2DBL(argv[3]); }
4658
5000
  result = (FXSpheref *)new FXSpheref(arg1,arg2,arg3,arg4); DATA_PTR(self) = result; return self; }
4659
5001
  #ifdef HAVE_RB_DEFINE_ALLOC_FUNC
4660
5002
  static VALUE _wrap_FXSpheref_allocate(VALUE self) {
@@ -4674,17 +5016,19 @@ static VALUE _wrap_new_FXSpheref(int nargs, VALUE *args, VALUE self) { int argc;
4674
5016
  for (ii = 0; (ii < argc) && (ii < 4); ii++) { argv[ii] = args[ii]; } if (argc == 0) {
4675
5017
  return _wrap_new_FXSpheref__SWIG_0(nargs, args, self);} if (argc == 1) { int _v; { void *ptr;
4676
5018
  _v = (NIL_P(argv[0]) || (TYPE(argv[0]) == T_DATA && SWIG_ConvertPtr(argv[0], &ptr, SWIGTYPE_p_FXSpheref, 0) != -1)) ? 1 : 0; }
4677
- if (_v) { return _wrap_new_FXSpheref__SWIG_1(nargs, args, self);} } if (argc == 1) { int _v; { void *ptr;
4678
- _v = (NIL_P(argv[0]) || (TYPE(argv[0]) == T_DATA && SWIG_ConvertPtr(argv[0], &ptr, SWIGTYPE_p_FXRangef, 0) != -1)) ? 1 : 0; }
4679
- if (_v) { return _wrap_new_FXSpheref__SWIG_4(nargs, args, self);} } if (argc == 2) { int _v; { void *ptr;
5019
+ if (_v) { return _wrap_new_FXSpheref__SWIG_1(nargs, args, self);} } if ((argc >= 1) && (argc <= 2)) { int _v; {
5020
+ void *ptr;
4680
5021
  _v = (NIL_P(argv[0]) || (TYPE(argv[0]) == T_DATA && SWIG_ConvertPtr(argv[0], &ptr, SWIGTYPE_p_FXVec3f, 0) != -1)) ? 1 : 0; }
4681
- if (_v) { { _v = ((TYPE(argv[1]) == T_FLOAT) || (TYPE(argv[1]) == T_FIXNUM) || (TYPE(argv[1]) == T_BIGNUM)) ? 1 : 0; }
4682
- if (_v) { return _wrap_new_FXSpheref__SWIG_2(nargs, args, self);} } } if (argc == 4) { int _v; {
5022
+ if (_v) { if (argc <= 1) { return _wrap_new_FXSpheref__SWIG_2(nargs, args, self);} {
5023
+ _v = ((TYPE(argv[1]) == T_FLOAT) || (TYPE(argv[1]) == T_FIXNUM) || (TYPE(argv[1]) == T_BIGNUM)) ? 1 : 0; }
5024
+ if (_v) { return _wrap_new_FXSpheref__SWIG_2(nargs, args, self);} } } if (argc == 1) { int _v; { void *ptr;
5025
+ _v = (NIL_P(argv[0]) || (TYPE(argv[0]) == T_DATA && SWIG_ConvertPtr(argv[0], &ptr, SWIGTYPE_p_FXRangef, 0) != -1)) ? 1 : 0; }
5026
+ if (_v) { return _wrap_new_FXSpheref__SWIG_4(nargs, args, self);} } if ((argc >= 3) && (argc <= 4)) { int _v; {
4683
5027
  _v = ((TYPE(argv[0]) == T_FLOAT) || (TYPE(argv[0]) == T_FIXNUM) || (TYPE(argv[0]) == T_BIGNUM)) ? 1 : 0; }
4684
5028
  if (_v) { { _v = ((TYPE(argv[1]) == T_FLOAT) || (TYPE(argv[1]) == T_FIXNUM) || (TYPE(argv[1]) == T_BIGNUM)) ? 1 : 0; }
4685
5029
  if (_v) { {
4686
5030
  _v = ((TYPE(argv[2]) == T_FLOAT) || (TYPE(argv[2]) == T_FIXNUM) || (TYPE(argv[2]) == T_BIGNUM)) ? 1 : 0; }
4687
- if (_v) { {
5031
+ if (_v) { if (argc <= 3) { return _wrap_new_FXSpheref__SWIG_3(nargs, args, self);} {
4688
5032
  _v = ((TYPE(argv[3]) == T_FLOAT) || (TYPE(argv[3]) == T_FIXNUM) || (TYPE(argv[3]) == T_BIGNUM)) ? 1 : 0; }
4689
5033
  if (_v) { return _wrap_new_FXSpheref__SWIG_3(nargs, args, self);} } } } }
4690
5034
  rb_raise(rb_eArgError, "No matching function for overloaded 'new_FXSpheref'"); return Qnil; }
@@ -4876,16 +5220,17 @@ static VALUE _wrap_new_FXSphered__SWIG_1(int argc, VALUE *argv, VALUE self) { FX
4876
5220
  if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
4877
5221
  SWIG_ConvertPtr(argv[0], (void **) &arg1, SWIGTYPE_p_FXSphered, 1); if (arg1 == NULL) rb_raise(rb_eTypeError, "null reference");
4878
5222
  result = (FXSphered *)new FXSphered((FXSphered const &)*arg1); DATA_PTR(self) = result; return self; }
4879
- static VALUE _wrap_new_FXSphered__SWIG_2(int argc, VALUE *argv, VALUE self) { FXVec3d *arg1 = 0 ; FXdouble arg2 ;
4880
- FXSphered *result; if ((argc < 2) || (argc > 2)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
5223
+ static VALUE _wrap_new_FXSphered__SWIG_2(int argc, VALUE *argv, VALUE self) { FXVec3d *arg1 = 0 ;
5224
+ FXdouble arg2 = (FXdouble) 0.0 ; FXSphered *result; if ((argc < 1) || (argc > 2))
5225
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
4881
5226
  SWIG_ConvertPtr(argv[0], (void **) &arg1, SWIGTYPE_p_FXVec3d, 1); if (arg1 == NULL) rb_raise(rb_eTypeError, "null reference");
4882
- arg2 = (FXdouble) NUM2DBL(argv[1]); result = (FXSphered *)new FXSphered((FXVec3d const &)*arg1,arg2);
5227
+ if (argc > 1) { arg2 = (FXdouble) NUM2DBL(argv[1]); } result = (FXSphered *)new FXSphered((FXVec3d const &)*arg1,arg2);
4883
5228
  DATA_PTR(self) = result; return self; }
4884
5229
  static VALUE _wrap_new_FXSphered__SWIG_3(int argc, VALUE *argv, VALUE self) { FXdouble arg1 ; FXdouble arg2 ; FXdouble arg3 ;
4885
- FXdouble arg4 ; FXSphered *result; if ((argc < 4) || (argc > 4))
4886
- rb_raise(rb_eArgError, "wrong # of arguments(%d for 4)",argc); arg1 = (FXdouble) NUM2DBL(argv[0]);
4887
- arg2 = (FXdouble) NUM2DBL(argv[1]); arg3 = (FXdouble) NUM2DBL(argv[2]); arg4 = (FXdouble) NUM2DBL(argv[3]);
4888
- result = (FXSphered *)new FXSphered(arg1,arg2,arg3,arg4); DATA_PTR(self) = result; return self; }
5230
+ FXdouble arg4 = (FXdouble) 0.0 ; FXSphered *result; if ((argc < 3) || (argc > 4))
5231
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 3)",argc); arg1 = (FXdouble) NUM2DBL(argv[0]);
5232
+ arg2 = (FXdouble) NUM2DBL(argv[1]); arg3 = (FXdouble) NUM2DBL(argv[2]); if (argc > 3) { arg4 = (FXdouble) NUM2DBL(argv[3]); }
5233
+ result = (FXSphered *)new FXSphered(arg1,arg2,arg3,arg4); DATA_PTR(self) = result; return self; }
4889
5234
  #ifdef HAVE_RB_DEFINE_ALLOC_FUNC
4890
5235
  static VALUE _wrap_FXSphered_allocate(VALUE self) {
4891
5236
  #else
@@ -4904,17 +5249,19 @@ static VALUE _wrap_new_FXSphered(int nargs, VALUE *args, VALUE self) { int argc;
4904
5249
  for (ii = 0; (ii < argc) && (ii < 4); ii++) { argv[ii] = args[ii]; } if (argc == 0) {
4905
5250
  return _wrap_new_FXSphered__SWIG_0(nargs, args, self);} if (argc == 1) { int _v; { void *ptr;
4906
5251
  _v = (NIL_P(argv[0]) || (TYPE(argv[0]) == T_DATA && SWIG_ConvertPtr(argv[0], &ptr, SWIGTYPE_p_FXSphered, 0) != -1)) ? 1 : 0; }
4907
- if (_v) { return _wrap_new_FXSphered__SWIG_1(nargs, args, self);} } if (argc == 1) { int _v; { void *ptr;
4908
- _v = (NIL_P(argv[0]) || (TYPE(argv[0]) == T_DATA && SWIG_ConvertPtr(argv[0], &ptr, SWIGTYPE_p_FXRanged, 0) != -1)) ? 1 : 0; }
4909
- if (_v) { return _wrap_new_FXSphered__SWIG_4(nargs, args, self);} } if (argc == 2) { int _v; { void *ptr;
5252
+ if (_v) { return _wrap_new_FXSphered__SWIG_1(nargs, args, self);} } if ((argc >= 1) && (argc <= 2)) { int _v; {
5253
+ void *ptr;
4910
5254
  _v = (NIL_P(argv[0]) || (TYPE(argv[0]) == T_DATA && SWIG_ConvertPtr(argv[0], &ptr, SWIGTYPE_p_FXVec3d, 0) != -1)) ? 1 : 0; }
4911
- if (_v) { { _v = ((TYPE(argv[1]) == T_FLOAT) || (TYPE(argv[1]) == T_FIXNUM) || (TYPE(argv[1]) == T_BIGNUM)) ? 1 : 0; }
4912
- if (_v) { return _wrap_new_FXSphered__SWIG_2(nargs, args, self);} } } if (argc == 4) { int _v; {
5255
+ if (_v) { if (argc <= 1) { return _wrap_new_FXSphered__SWIG_2(nargs, args, self);} {
5256
+ _v = ((TYPE(argv[1]) == T_FLOAT) || (TYPE(argv[1]) == T_FIXNUM) || (TYPE(argv[1]) == T_BIGNUM)) ? 1 : 0; }
5257
+ if (_v) { return _wrap_new_FXSphered__SWIG_2(nargs, args, self);} } } if (argc == 1) { int _v; { void *ptr;
5258
+ _v = (NIL_P(argv[0]) || (TYPE(argv[0]) == T_DATA && SWIG_ConvertPtr(argv[0], &ptr, SWIGTYPE_p_FXRanged, 0) != -1)) ? 1 : 0; }
5259
+ if (_v) { return _wrap_new_FXSphered__SWIG_4(nargs, args, self);} } if ((argc >= 3) && (argc <= 4)) { int _v; {
4913
5260
  _v = ((TYPE(argv[0]) == T_FLOAT) || (TYPE(argv[0]) == T_FIXNUM) || (TYPE(argv[0]) == T_BIGNUM)) ? 1 : 0; }
4914
5261
  if (_v) { { _v = ((TYPE(argv[1]) == T_FLOAT) || (TYPE(argv[1]) == T_FIXNUM) || (TYPE(argv[1]) == T_BIGNUM)) ? 1 : 0; }
4915
5262
  if (_v) { {
4916
5263
  _v = ((TYPE(argv[2]) == T_FLOAT) || (TYPE(argv[2]) == T_FIXNUM) || (TYPE(argv[2]) == T_BIGNUM)) ? 1 : 0; }
4917
- if (_v) { {
5264
+ if (_v) { if (argc <= 3) { return _wrap_new_FXSphered__SWIG_3(nargs, args, self);} {
4918
5265
  _v = ((TYPE(argv[3]) == T_FLOAT) || (TYPE(argv[3]) == T_FIXNUM) || (TYPE(argv[3]) == T_BIGNUM)) ? 1 : 0; }
4919
5266
  if (_v) { return _wrap_new_FXSphered__SWIG_3(nargs, args, self);} } } } }
4920
5267
  rb_raise(rb_eArgError, "No matching function for overloaded 'new_FXSphered'"); return Qnil; }
@@ -5517,6 +5864,11 @@ static VALUE _wrap_FXGLCanvas_setFocus(int argc, VALUE *argv, VALUE self) { FXGL
5517
5864
  static VALUE _wrap_FXGLCanvas_killFocus(int argc, VALUE *argv, VALUE self) { FXGLCanvas *arg1 = (FXGLCanvas *) 0 ;
5518
5865
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
5519
5866
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXGLCanvas, 1); FXGLCanvas_killFocus(arg1); return Qnil; }
5867
+ static VALUE _wrap_FXGLCanvas_changeFocus(int argc, VALUE *argv, VALUE self) { FXGLCanvas *arg1 = (FXGLCanvas *) 0 ;
5868
+ FXWindow *arg2 = (FXWindow *) 0 ; if ((argc < 1) || (argc > 1))
5869
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
5870
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXGLCanvas, 1);
5871
+ SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXWindow, 1); FXGLCanvas_changeFocus(arg1,arg2); return Qnil; }
5520
5872
  static VALUE _wrap_FXGLCanvas_setDefault(int argc, VALUE *argv, VALUE self) { FXGLCanvas *arg1 = (FXGLCanvas *) 0 ;
5521
5873
  FXbool arg2 = (FXbool) 1 ; if ((argc < 0) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
5522
5874
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXGLCanvas, 1); if (argc > 0) { arg2 = to_FXbool(argv[0]); }
@@ -5549,10 +5901,11 @@ static VALUE _wrap_FXGLCanvas_recalc(int argc, VALUE *argv, VALUE self) { FXGLCa
5549
5901
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
5550
5902
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXGLCanvas, 1); FXGLCanvas_recalc(arg1); return Qnil; }
5551
5903
  static VALUE _wrap_FXGLCanvas_reparent(int argc, VALUE *argv, VALUE self) { FXGLCanvas *arg1 = (FXGLCanvas *) 0 ;
5552
- FXComposite *arg2 = (FXComposite *) 0 ; if ((argc < 1) || (argc > 1))
5553
- rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
5904
+ FXWindow *arg2 = (FXWindow *) 0 ; FXWindow *arg3 = (FXWindow *) 0 ; if ((argc < 2) || (argc > 2))
5905
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
5554
5906
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXGLCanvas, 1);
5555
- SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXComposite, 1); FXGLCanvas_reparent(arg1,arg2); return Qnil; }
5907
+ SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXWindow, 1);
5908
+ SWIG_ConvertPtr(argv[1], (void **) &arg3, SWIGTYPE_p_FXWindow, 1); FXGLCanvas_reparent(arg1,arg2,arg3); return Qnil; }
5556
5909
  static VALUE _wrap_FXGLCanvas_show(int argc, VALUE *argv, VALUE self) { FXGLCanvas *arg1 = (FXGLCanvas *) 0 ;
5557
5910
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
5558
5911
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXGLCanvas, 1); FXGLCanvas_show(arg1); return Qnil; }
@@ -5579,6 +5932,41 @@ static VALUE _wrap_FXGLCanvas_setBackColor(int argc, VALUE *argv, VALUE self) {
5579
5932
  FXColor arg2 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
5580
5933
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXGLCanvas, 1); arg2 = to_FXColor(argv[0]);
5581
5934
  FXGLCanvas_setBackColor(arg1,arg2); return Qnil; }
5935
+ static VALUE _wrap_FXGLCanvas_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) { FXGLCanvas *arg1 = (FXGLCanvas *) 0 ;
5936
+ FXRegion *arg2 = 0 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
5937
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXGLCanvas, 1);
5938
+ SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXRegion, 1); if (arg2 == NULL) rb_raise(rb_eTypeError, "null reference");
5939
+ FXGLCanvas_setShape(arg1,(FXRegion const &)*arg2); return Qnil; }
5940
+ static VALUE _wrap_FXGLCanvas_setShape__SWIG_1(int argc, VALUE *argv, VALUE self) { FXGLCanvas *arg1 = (FXGLCanvas *) 0 ;
5941
+ FXBitmap *arg2 = (FXBitmap *) 0 ; if ((argc < 1) || (argc > 1))
5942
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
5943
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXGLCanvas, 1);
5944
+ SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXBitmap, 1); FXGLCanvas_setShape(arg1,arg2); return Qnil; }
5945
+ static VALUE _wrap_FXGLCanvas_setShape__SWIG_2(int argc, VALUE *argv, VALUE self) { FXGLCanvas *arg1 = (FXGLCanvas *) 0 ;
5946
+ FXIcon *arg2 = (FXIcon *) 0 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
5947
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXGLCanvas, 1);
5948
+ SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXIcon, 1); FXGLCanvas_setShape(arg1,arg2); return Qnil; }
5949
+ static VALUE _wrap_FXGLCanvas_setShape(int nargs, VALUE *args, VALUE self) { int argc; VALUE argv[3]; int ii; argc = nargs + 1;
5950
+ argv[0] = self; for (ii = 1; (ii < argc) && (ii < 2); ii++) { argv[ii] = args[ii-1]; } if (argc == 2) { int _v; {
5951
+ void *ptr;
5952
+ _v = (NIL_P(argv[0]) || (TYPE(argv[0]) == T_DATA && SWIG_ConvertPtr(argv[0], &ptr, SWIGTYPE_p_FXGLCanvas, 0) != -1)) ? 1 : 0; }
5953
+ if (_v) { { void *ptr;
5954
+ _v = (NIL_P(argv[1]) || (TYPE(argv[1]) == T_DATA && SWIG_ConvertPtr(argv[1], &ptr, SWIGTYPE_p_FXRegion, 0) != -1)) ? 1 : 0; }
5955
+ if (_v) { return _wrap_FXGLCanvas_setShape__SWIG_0(nargs, args, self);} } } if (argc == 2) { int _v; {
5956
+ void *ptr;
5957
+ _v = (NIL_P(argv[0]) || (TYPE(argv[0]) == T_DATA && SWIG_ConvertPtr(argv[0], &ptr, SWIGTYPE_p_FXGLCanvas, 0) != -1)) ? 1 : 0; }
5958
+ if (_v) { { void *ptr;
5959
+ _v = (NIL_P(argv[1]) || (TYPE(argv[1]) == T_DATA && SWIG_ConvertPtr(argv[1], &ptr, SWIGTYPE_p_FXBitmap, 0) != -1)) ? 1 : 0; }
5960
+ if (_v) { return _wrap_FXGLCanvas_setShape__SWIG_1(nargs, args, self);} } } if (argc == 2) { int _v; {
5961
+ void *ptr;
5962
+ _v = (NIL_P(argv[0]) || (TYPE(argv[0]) == T_DATA && SWIG_ConvertPtr(argv[0], &ptr, SWIGTYPE_p_FXGLCanvas, 0) != -1)) ? 1 : 0; }
5963
+ if (_v) { { void *ptr;
5964
+ _v = (NIL_P(argv[1]) || (TYPE(argv[1]) == T_DATA && SWIG_ConvertPtr(argv[1], &ptr, SWIGTYPE_p_FXIcon, 0) != -1)) ? 1 : 0; }
5965
+ if (_v) { return _wrap_FXGLCanvas_setShape__SWIG_2(nargs, args, self);} } }
5966
+ rb_raise(rb_eArgError, "No matching function for overloaded 'FXGLCanvas_setShape'"); return Qnil; }
5967
+ static VALUE _wrap_FXGLCanvas_clearShape(int argc, VALUE *argv, VALUE self) { FXGLCanvas *arg1 = (FXGLCanvas *) 0 ;
5968
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
5969
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXGLCanvas, 1); FXGLCanvas_clearShape(arg1); return Qnil; }
5582
5970
  static VALUE _wrap_FXGLCanvas_makeCurrent(int argc, VALUE *argv, VALUE self) { FXGLCanvas *arg1 = (FXGLCanvas *) 0 ;
5583
5971
  FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
5584
5972
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
@@ -6545,12 +6933,6 @@ static VALUE _wrap_FXGLViewer_lasso(int argc, VALUE *argv, VALUE self) { FXGLVie
6545
6933
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXGLViewer, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]);
6546
6934
  arg4 = NUM2INT(argv[2]); arg5 = NUM2INT(argv[3]); result = (VALUE)FXGLViewer_lasso(arg1,arg2,arg3,arg4,arg5);
6547
6935
  vresult = result; return vresult; }
6548
- static VALUE _wrap_FXGLViewer_setBounds(int argc, VALUE *argv, VALUE self) { FXGLViewer *arg1 = (FXGLViewer *) 0 ;
6549
- FXRangef *arg2 = 0 ; FXbool result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 1))
6550
- rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
6551
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXGLViewer, 1);
6552
- SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXRangef, 1); if (arg2 == NULL) rb_raise(rb_eTypeError, "null reference");
6553
- result = (FXbool)(arg1)->setBounds((FXRangef const &)*arg2); vresult = result ? Qtrue : Qfalse; return vresult; }
6554
6936
  static VALUE _wrap_FXGLViewer_fitToBounds(int argc, VALUE *argv, VALUE self) { FXGLViewer *arg1 = (FXGLViewer *) 0 ;
6555
6937
  FXRangef *arg2 = 0 ; FXbool result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 1))
6556
6938
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
@@ -6702,20 +7084,22 @@ static VALUE _wrap_FXGLViewer_setHelpText(int argc, VALUE *argv, VALUE self) { F
6702
7084
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXGLViewer, 1); p2 = to_FXString(argv[0]); arg2 = &p2;
6703
7085
  (arg1)->setHelpText((FXString const &)*arg2); return Qnil; }
6704
7086
  static VALUE _wrap_FXGLViewer_getHelpText(int argc, VALUE *argv, VALUE self) { FXGLViewer *arg1 = (FXGLViewer *) 0 ;
6705
- FXString result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
7087
+ FXString *result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
6706
7088
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
6707
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXGLViewer, 1); result = ((FXGLViewer const *)arg1)->getHelpText();
6708
- vresult = rb_str_new2((&result)->text()); return vresult; }
7089
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXGLViewer, 1); {
7090
+ FXString const &_result_ref = ((FXGLViewer const *)arg1)->getHelpText(); result = (FXString *) &_result_ref; }
7091
+ vresult = rb_str_new2(result->text()); return vresult; }
6709
7092
  static VALUE _wrap_FXGLViewer_setTipText(int argc, VALUE *argv, VALUE self) { FXGLViewer *arg1 = (FXGLViewer *) 0 ;
6710
7093
  FXString *arg2 = 0 ; SwigValueWrapper<FXString > p2 ; if ((argc < 1) || (argc > 1))
6711
7094
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
6712
7095
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXGLViewer, 1); p2 = to_FXString(argv[0]); arg2 = &p2;
6713
7096
  (arg1)->setTipText((FXString const &)*arg2); return Qnil; }
6714
7097
  static VALUE _wrap_FXGLViewer_getTipText(int argc, VALUE *argv, VALUE self) { FXGLViewer *arg1 = (FXGLViewer *) 0 ;
6715
- FXString result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
7098
+ FXString *result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
6716
7099
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
6717
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXGLViewer, 1); result = ((FXGLViewer const *)arg1)->getTipText();
6718
- vresult = rb_str_new2((&result)->text()); return vresult; }
7100
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXGLViewer, 1); {
7101
+ FXString const &_result_ref = ((FXGLViewer const *)arg1)->getTipText(); result = (FXString *) &_result_ref; }
7102
+ vresult = rb_str_new2(result->text()); return vresult; }
6719
7103
  static VALUE _wrap_FXGLViewer_getTransform(int argc, VALUE *argv, VALUE self) { FXGLViewer *arg1 = (FXGLViewer *) 0 ;
6720
7104
  FXMat4f *result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
6721
7105
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
@@ -6898,6 +7282,11 @@ static VALUE _wrap_FXGLViewer_setFocus(int argc, VALUE *argv, VALUE self) { FXGL
6898
7282
  static VALUE _wrap_FXGLViewer_killFocus(int argc, VALUE *argv, VALUE self) { FXGLViewer *arg1 = (FXGLViewer *) 0 ;
6899
7283
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
6900
7284
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXGLViewer, 1); FXGLViewer_killFocus(arg1); return Qnil; }
7285
+ static VALUE _wrap_FXGLViewer_changeFocus(int argc, VALUE *argv, VALUE self) { FXGLViewer *arg1 = (FXGLViewer *) 0 ;
7286
+ FXWindow *arg2 = (FXWindow *) 0 ; if ((argc < 1) || (argc > 1))
7287
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
7288
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXGLViewer, 1);
7289
+ SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXWindow, 1); FXGLViewer_changeFocus(arg1,arg2); return Qnil; }
6901
7290
  static VALUE _wrap_FXGLViewer_setDefault(int argc, VALUE *argv, VALUE self) { FXGLViewer *arg1 = (FXGLViewer *) 0 ;
6902
7291
  FXbool arg2 = (FXbool) 1 ; if ((argc < 0) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
6903
7292
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXGLViewer, 1); if (argc > 0) { arg2 = to_FXbool(argv[0]); }
@@ -6930,10 +7319,11 @@ static VALUE _wrap_FXGLViewer_recalc(int argc, VALUE *argv, VALUE self) { FXGLVi
6930
7319
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
6931
7320
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXGLViewer, 1); FXGLViewer_recalc(arg1); return Qnil; }
6932
7321
  static VALUE _wrap_FXGLViewer_reparent(int argc, VALUE *argv, VALUE self) { FXGLViewer *arg1 = (FXGLViewer *) 0 ;
6933
- FXComposite *arg2 = (FXComposite *) 0 ; if ((argc < 1) || (argc > 1))
6934
- rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
7322
+ FXWindow *arg2 = (FXWindow *) 0 ; FXWindow *arg3 = (FXWindow *) 0 ; if ((argc < 2) || (argc > 2))
7323
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
6935
7324
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXGLViewer, 1);
6936
- SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXComposite, 1); FXGLViewer_reparent(arg1,arg2); return Qnil; }
7325
+ SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXWindow, 1);
7326
+ SWIG_ConvertPtr(argv[1], (void **) &arg3, SWIGTYPE_p_FXWindow, 1); FXGLViewer_reparent(arg1,arg2,arg3); return Qnil; }
6937
7327
  static VALUE _wrap_FXGLViewer_show(int argc, VALUE *argv, VALUE self) { FXGLViewer *arg1 = (FXGLViewer *) 0 ;
6938
7328
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
6939
7329
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXGLViewer, 1); FXGLViewer_show(arg1); return Qnil; }
@@ -6960,6 +7350,41 @@ static VALUE _wrap_FXGLViewer_setBackColor(int argc, VALUE *argv, VALUE self) {
6960
7350
  FXColor arg2 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
6961
7351
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXGLViewer, 1); arg2 = to_FXColor(argv[0]);
6962
7352
  FXGLViewer_setBackColor(arg1,arg2); return Qnil; }
7353
+ static VALUE _wrap_FXGLViewer_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) { FXGLViewer *arg1 = (FXGLViewer *) 0 ;
7354
+ FXRegion *arg2 = 0 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
7355
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXGLViewer, 1);
7356
+ SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXRegion, 1); if (arg2 == NULL) rb_raise(rb_eTypeError, "null reference");
7357
+ FXGLViewer_setShape(arg1,(FXRegion const &)*arg2); return Qnil; }
7358
+ static VALUE _wrap_FXGLViewer_setShape__SWIG_1(int argc, VALUE *argv, VALUE self) { FXGLViewer *arg1 = (FXGLViewer *) 0 ;
7359
+ FXBitmap *arg2 = (FXBitmap *) 0 ; if ((argc < 1) || (argc > 1))
7360
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
7361
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXGLViewer, 1);
7362
+ SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXBitmap, 1); FXGLViewer_setShape(arg1,arg2); return Qnil; }
7363
+ static VALUE _wrap_FXGLViewer_setShape__SWIG_2(int argc, VALUE *argv, VALUE self) { FXGLViewer *arg1 = (FXGLViewer *) 0 ;
7364
+ FXIcon *arg2 = (FXIcon *) 0 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
7365
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXGLViewer, 1);
7366
+ SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXIcon, 1); FXGLViewer_setShape(arg1,arg2); return Qnil; }
7367
+ static VALUE _wrap_FXGLViewer_setShape(int nargs, VALUE *args, VALUE self) { int argc; VALUE argv[3]; int ii; argc = nargs + 1;
7368
+ argv[0] = self; for (ii = 1; (ii < argc) && (ii < 2); ii++) { argv[ii] = args[ii-1]; } if (argc == 2) { int _v; {
7369
+ void *ptr;
7370
+ _v = (NIL_P(argv[0]) || (TYPE(argv[0]) == T_DATA && SWIG_ConvertPtr(argv[0], &ptr, SWIGTYPE_p_FXGLViewer, 0) != -1)) ? 1 : 0; }
7371
+ if (_v) { { void *ptr;
7372
+ _v = (NIL_P(argv[1]) || (TYPE(argv[1]) == T_DATA && SWIG_ConvertPtr(argv[1], &ptr, SWIGTYPE_p_FXRegion, 0) != -1)) ? 1 : 0; }
7373
+ if (_v) { return _wrap_FXGLViewer_setShape__SWIG_0(nargs, args, self);} } } if (argc == 2) { int _v; {
7374
+ void *ptr;
7375
+ _v = (NIL_P(argv[0]) || (TYPE(argv[0]) == T_DATA && SWIG_ConvertPtr(argv[0], &ptr, SWIGTYPE_p_FXGLViewer, 0) != -1)) ? 1 : 0; }
7376
+ if (_v) { { void *ptr;
7377
+ _v = (NIL_P(argv[1]) || (TYPE(argv[1]) == T_DATA && SWIG_ConvertPtr(argv[1], &ptr, SWIGTYPE_p_FXBitmap, 0) != -1)) ? 1 : 0; }
7378
+ if (_v) { return _wrap_FXGLViewer_setShape__SWIG_1(nargs, args, self);} } } if (argc == 2) { int _v; {
7379
+ void *ptr;
7380
+ _v = (NIL_P(argv[0]) || (TYPE(argv[0]) == T_DATA && SWIG_ConvertPtr(argv[0], &ptr, SWIGTYPE_p_FXGLViewer, 0) != -1)) ? 1 : 0; }
7381
+ if (_v) { { void *ptr;
7382
+ _v = (NIL_P(argv[1]) || (TYPE(argv[1]) == T_DATA && SWIG_ConvertPtr(argv[1], &ptr, SWIGTYPE_p_FXIcon, 0) != -1)) ? 1 : 0; }
7383
+ if (_v) { return _wrap_FXGLViewer_setShape__SWIG_2(nargs, args, self);} } }
7384
+ rb_raise(rb_eArgError, "No matching function for overloaded 'FXGLViewer_setShape'"); return Qnil; }
7385
+ static VALUE _wrap_FXGLViewer_clearShape(int argc, VALUE *argv, VALUE self) { FXGLViewer *arg1 = (FXGLViewer *) 0 ;
7386
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
7387
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXGLViewer, 1); FXGLViewer_clearShape(arg1); return Qnil; }
6963
7388
  static VALUE _wrap_FXGLViewer_makeCurrent(int argc, VALUE *argv, VALUE self) { FXGLViewer *arg1 = (FXGLViewer *) 0 ;
6964
7389
  FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
6965
7390
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
@@ -6992,6 +7417,12 @@ static VALUE _wrap_FXGLViewer_pick(int argc, VALUE *argv, VALUE self) { FXGLView
6992
7417
  result = (FXGLObject *)FXGLViewer_pick(arg1,arg2,arg3); {
6993
7418
  swig_type_info *ty = SWIG_TypeDynamicCast(SWIGTYPE_p_FXGLObject, (void **) &result);
6994
7419
  vresult = FXRbGetRubyObj(result, ty); } return vresult; }
7420
+ static VALUE _wrap_FXGLViewer_setBounds(int argc, VALUE *argv, VALUE self) { FXGLViewer *arg1 = (FXGLViewer *) 0 ;
7421
+ FXRangef *arg2 = 0 ; FXbool result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 1))
7422
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
7423
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXGLViewer, 1);
7424
+ SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXRangef, 1); if (arg2 == NULL) rb_raise(rb_eTypeError, "null reference");
7425
+ result = (FXbool)FXGLViewer_setBounds(arg1,(FXRangef const &)*arg2); vresult = result ? Qtrue : Qfalse; return vresult; }
6995
7426
  #ifdef HAVE_RB_DEFINE_ALLOC_FUNC
6996
7427
  static VALUE _wrap_FXGLObject_allocate(VALUE self) {
6997
7428
  #else
@@ -7223,10 +7654,11 @@ static VALUE _wrap_FXGLShape_setTipText(int argc, VALUE *argv, VALUE self) { FXG
7223
7654
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXGLShape, 1); p2 = to_FXString(argv[0]); arg2 = &p2;
7224
7655
  (arg1)->setTipText((FXString const &)*arg2); return Qnil; }
7225
7656
  static VALUE _wrap_FXGLShape_getTipText(int argc, VALUE *argv, VALUE self) { FXGLShape *arg1 = (FXGLShape *) 0 ;
7226
- FXString result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
7657
+ FXString *result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
7227
7658
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
7228
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXGLShape, 1); result = ((FXGLShape const *)arg1)->getTipText();
7229
- vresult = rb_str_new2((&result)->text()); return vresult; }
7659
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXGLShape, 1); {
7660
+ FXString const &_result_ref = ((FXGLShape const *)arg1)->getTipText(); result = (FXString *) &_result_ref; }
7661
+ vresult = rb_str_new2(result->text()); return vresult; }
7230
7662
  static VALUE _wrap_FXGLShape_setMaterial(int argc, VALUE *argv, VALUE self) { FXGLShape *arg1 = (FXGLShape *) 0 ; FXint arg2 ;
7231
7663
  FXMaterial *arg3 = 0 ; if ((argc < 2) || (argc > 2)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
7232
7664
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXGLShape, 1); arg2 = NUM2INT(argv[0]);
@@ -7320,7 +7752,7 @@ static void *_p_FXDriveBoxTo_p_FXComposite(void *x) {
7320
7752
  return (void *)((FXComposite *) (FXPacker *)(FXListBox *) ((FXDriveBox *) x));
7321
7753
  }
7322
7754
  static void *_p_FXToolBarTo_p_FXComposite(void *x) {
7323
- return (void *)((FXComposite *) (FXPacker *) ((FXToolBar *) x));
7755
+ return (void *)((FXComposite *) (FXPacker *)(FXDockBar *) ((FXToolBar *) x));
7324
7756
  }
7325
7757
  static void *_p_FXToolTipTo_p_FXComposite(void *x) {
7326
7758
  return (void *)((FXComposite *) (FXShell *) ((FXToolTip *) x));
@@ -7355,6 +7787,9 @@ static void *_p_FXTopWindowTo_p_FXComposite(void *x) {
7355
7787
  static void *_p_FXMainWindowTo_p_FXComposite(void *x) {
7356
7788
  return (void *)((FXComposite *) (FXShell *)(FXTopWindow *) ((FXMainWindow *) x));
7357
7789
  }
7790
+ static void *_p_FXSplashWindowTo_p_FXComposite(void *x) {
7791
+ return (void *)((FXComposite *) (FXShell *)(FXTopWindow *) ((FXSplashWindow *) x));
7792
+ }
7358
7793
  static void *_p_FXComboBoxTo_p_FXComposite(void *x) {
7359
7794
  return (void *)((FXComposite *) (FXPacker *) ((FXComboBox *) x));
7360
7795
  }
@@ -7385,14 +7820,14 @@ static void *_p_FXDirBoxTo_p_FXComposite(void *x) {
7385
7820
  static void *_p_FXSwitcherTo_p_FXComposite(void *x) {
7386
7821
  return (void *)((FXComposite *) (FXPacker *) ((FXSwitcher *) x));
7387
7822
  }
7388
- static void *_p_FXColorSelectorTo_p_FXComposite(void *x) {
7389
- return (void *)((FXComposite *) (FXPacker *) ((FXColorSelector *) x));
7823
+ static void *_p_FXDirSelectorTo_p_FXComposite(void *x) {
7824
+ return (void *)((FXComposite *) (FXPacker *) ((FXDirSelector *) x));
7390
7825
  }
7391
7826
  static void *_p_FXFileSelectorTo_p_FXComposite(void *x) {
7392
7827
  return (void *)((FXComposite *) (FXPacker *) ((FXFileSelector *) x));
7393
7828
  }
7394
- static void *_p_FXDirSelectorTo_p_FXComposite(void *x) {
7395
- return (void *)((FXComposite *) (FXPacker *) ((FXDirSelector *) x));
7829
+ static void *_p_FXColorSelectorTo_p_FXComposite(void *x) {
7830
+ return (void *)((FXComposite *) (FXPacker *) ((FXColorSelector *) x));
7396
7831
  }
7397
7832
  static void *_p_FXFontSelectorTo_p_FXComposite(void *x) {
7398
7833
  return (void *)((FXComposite *) (FXPacker *) ((FXFontSelector *) x));
@@ -7400,6 +7835,9 @@ static void *_p_FXFontSelectorTo_p_FXComposite(void *x) {
7400
7835
  static void *_p_FXShutterTo_p_FXComposite(void *x) {
7401
7836
  return (void *)((FXComposite *) (FXPacker *)(FXVerticalFrame *) ((FXShutter *) x));
7402
7837
  }
7838
+ static void *_p_FXDockSiteTo_p_FXComposite(void *x) {
7839
+ return (void *)((FXComposite *) (FXPacker *) ((FXDockSite *) x));
7840
+ }
7403
7841
  static void *_p_FXTreeListBoxTo_p_FXComposite(void *x) {
7404
7842
  return (void *)((FXComposite *) (FXPacker *) ((FXTreeListBox *) x));
7405
7843
  }
@@ -7412,6 +7850,9 @@ static void *_p_FXMatrixTo_p_FXComposite(void *x) {
7412
7850
  static void *_p_FXShutterItemTo_p_FXComposite(void *x) {
7413
7851
  return (void *)((FXComposite *) (FXPacker *)(FXVerticalFrame *) ((FXShutterItem *) x));
7414
7852
  }
7853
+ static void *_p_FXDockBarTo_p_FXComposite(void *x) {
7854
+ return (void *)((FXComposite *) (FXPacker *) ((FXDockBar *) x));
7855
+ }
7415
7856
  static void *_p_FXTabBarTo_p_FXComposite(void *x) {
7416
7857
  return (void *)((FXComposite *) (FXPacker *) ((FXTabBar *) x));
7417
7858
  }
@@ -7428,7 +7869,7 @@ static void *_p_FXDriveBoxTo_p_FXWindow(void *x) {
7428
7869
  return (void *)((FXWindow *) (FXComposite *)(FXPacker *)(FXListBox *) ((FXDriveBox *) x));
7429
7870
  }
7430
7871
  static void *_p_FXToolBarTo_p_FXWindow(void *x) {
7431
- return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXToolBar *) x));
7872
+ return (void *)((FXWindow *) (FXComposite *)(FXPacker *)(FXDockBar *) ((FXToolBar *) x));
7432
7873
  }
7433
7874
  static void *_p_FXCompositeTo_p_FXWindow(void *x) {
7434
7875
  return (void *)((FXWindow *) ((FXComposite *) x));
@@ -7475,6 +7916,9 @@ static void *_p_FXTopWindowTo_p_FXWindow(void *x) {
7475
7916
  static void *_p_FXMainWindowTo_p_FXWindow(void *x) {
7476
7917
  return (void *)((FXWindow *) (FXComposite *)(FXShell *)(FXTopWindow *) ((FXMainWindow *) x));
7477
7918
  }
7919
+ static void *_p_FXSplashWindowTo_p_FXWindow(void *x) {
7920
+ return (void *)((FXWindow *) (FXComposite *)(FXShell *)(FXTopWindow *) ((FXSplashWindow *) x));
7921
+ }
7478
7922
  static void *_p_FXRulerTo_p_FXWindow(void *x) {
7479
7923
  return (void *)((FXWindow *) (FXFrame *) ((FXRuler *) x));
7480
7924
  }
@@ -7487,14 +7931,14 @@ static void *_p_FXScrollCornerTo_p_FXWindow(void *x) {
7487
7931
  static void *_p_FXGLCanvasTo_p_FXWindow(void *x) {
7488
7932
  return (void *)((FXWindow *) (FXCanvas *) ((FXGLCanvas *) x));
7489
7933
  }
7490
- static void *_p_FXVerticalSeparatorTo_p_FXWindow(void *x) {
7491
- return (void *)((FXWindow *) (FXFrame *)(FXSeparator *) ((FXVerticalSeparator *) x));
7934
+ static void *_p_FXSeparatorTo_p_FXWindow(void *x) {
7935
+ return (void *)((FXWindow *) (FXFrame *) ((FXSeparator *) x));
7492
7936
  }
7493
7937
  static void *_p_FXHorizontalSeparatorTo_p_FXWindow(void *x) {
7494
7938
  return (void *)((FXWindow *) (FXFrame *)(FXSeparator *) ((FXHorizontalSeparator *) x));
7495
7939
  }
7496
- static void *_p_FXSeparatorTo_p_FXWindow(void *x) {
7497
- return (void *)((FXWindow *) (FXFrame *) ((FXSeparator *) x));
7940
+ static void *_p_FXVerticalSeparatorTo_p_FXWindow(void *x) {
7941
+ return (void *)((FXWindow *) (FXFrame *)(FXSeparator *) ((FXVerticalSeparator *) x));
7498
7942
  }
7499
7943
  static void *_p_FXStatusLineTo_p_FXWindow(void *x) {
7500
7944
  return (void *)((FXWindow *) (FXFrame *) ((FXStatusLine *) x));
@@ -7535,8 +7979,11 @@ static void *_p_FXBitmapFrameTo_p_FXWindow(void *x) {
7535
7979
  static void *_p_FXDirBoxTo_p_FXWindow(void *x) {
7536
7980
  return (void *)((FXWindow *) (FXComposite *)(FXPacker *)(FXTreeListBox *) ((FXDirBox *) x));
7537
7981
  }
7982
+ static void *_p_FXDockHandlerTo_p_FXWindow(void *x) {
7983
+ return (void *)((FXWindow *) (FXFrame *) ((FXDockHandler *) x));
7984
+ }
7538
7985
  static void *_p_FXToolBarGripTo_p_FXWindow(void *x) {
7539
- return (void *)((FXWindow *) ((FXToolBarGrip *) x));
7986
+ return (void *)((FXWindow *) (FXFrame *)(FXDockHandler *) ((FXToolBarGrip *) x));
7540
7987
  }
7541
7988
  static void *_p_FXImageFrameTo_p_FXWindow(void *x) {
7542
7989
  return (void *)((FXWindow *) (FXFrame *) ((FXImageFrame *) x));
@@ -7565,6 +8012,9 @@ static void *_p_FXShutterTo_p_FXWindow(void *x) {
7565
8012
  static void *_p_FXProgressBarTo_p_FXWindow(void *x) {
7566
8013
  return (void *)((FXWindow *) (FXFrame *) ((FXProgressBar *) x));
7567
8014
  }
8015
+ static void *_p_FXDockSiteTo_p_FXWindow(void *x) {
8016
+ return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXDockSite *) x));
8017
+ }
7568
8018
  static void *_p_FXListBoxTo_p_FXWindow(void *x) {
7569
8019
  return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXListBox *) x));
7570
8020
  }
@@ -7589,12 +8039,18 @@ static void *_p_FXDialTo_p_FXWindow(void *x) {
7589
8039
  static void *_p_FXToolBarTabTo_p_FXWindow(void *x) {
7590
8040
  return (void *)((FXWindow *) (FXFrame *) ((FXToolBarTab *) x));
7591
8041
  }
8042
+ static void *_p_FXDockBarTo_p_FXWindow(void *x) {
8043
+ return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXDockBar *) x));
8044
+ }
7592
8045
  static void *_p_FXFrameTo_p_FXWindow(void *x) {
7593
8046
  return (void *)((FXWindow *) ((FXFrame *) x));
7594
8047
  }
7595
8048
  static void *_p_FXTabBarTo_p_FXWindow(void *x) {
7596
8049
  return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXTabBar *) x));
7597
8050
  }
8051
+ static void *_p_FX7SegmentTo_p_FXWindow(void *x) {
8052
+ return (void *)((FXWindow *) (FXFrame *) ((FX7Segment *) x));
8053
+ }
7598
8054
  static void *_p_FXImageViewTo_p_FXWindow(void *x) {
7599
8055
  return (void *)((FXWindow *) (FXComposite *)(FXScrollArea *) ((FXImageView *) x));
7600
8056
  }
@@ -7652,9 +8108,6 @@ static void *_p_FXToolBarTabTo_p_FXObject(void *x) {
7652
8108
  static void *_p_FXDriveBoxTo_p_FXObject(void *x) {
7653
8109
  return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXListBox *) ((FXDriveBox *) x));
7654
8110
  }
7655
- static void *_p_FXIconDictTo_p_FXObject(void *x) {
7656
- return (void *)((FXObject *) (FXDict *) ((FXIconDict *) x));
7657
- }
7658
8111
  static void *_p_FXMatrixTo_p_FXObject(void *x) {
7659
8112
  return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXMatrix *) x));
7660
8113
  }
@@ -7745,6 +8198,9 @@ static void *_p_FXSliderTo_p_FXObject(void *x) {
7745
8198
  static void *_p_FXSettingsTo_p_FXObject(void *x) {
7746
8199
  return (void *)((FXObject *) (FXDict *) ((FXSettings *) x));
7747
8200
  }
8201
+ static void *_p_FXDockSiteTo_p_FXObject(void *x) {
8202
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXDockSite *) x));
8203
+ }
7748
8204
  static void *_p_FXGroupBoxTo_p_FXObject(void *x) {
7749
8205
  return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXGroupBox *) x));
7750
8206
  }
@@ -7754,14 +8210,17 @@ static void *_p_FXDebugTargetTo_p_FXObject(void *x) {
7754
8210
  static void *_p_FXDataTargetTo_p_FXObject(void *x) {
7755
8211
  return (void *)((FXObject *) ((FXDataTarget *) x));
7756
8212
  }
7757
- static void *_p_FXTreeListBoxTo_p_FXObject(void *x) {
7758
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXTreeListBox *) x));
8213
+ static void *_p_FXDockHandlerTo_p_FXObject(void *x) {
8214
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXDockHandler *) x));
8215
+ }
8216
+ static void *_p_FXCanvasTo_p_FXObject(void *x) {
8217
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *) ((FXCanvas *) x));
7759
8218
  }
7760
8219
  static void *_p_FXListBoxTo_p_FXObject(void *x) {
7761
8220
  return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXListBox *) x));
7762
8221
  }
7763
- static void *_p_FXCanvasTo_p_FXObject(void *x) {
7764
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *) ((FXCanvas *) x));
8222
+ static void *_p_FXTreeListBoxTo_p_FXObject(void *x) {
8223
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXTreeListBox *) x));
7765
8224
  }
7766
8225
  static void *_p_FXGLCanvasTo_p_FXObject(void *x) {
7767
8226
  return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXCanvas *) ((FXGLCanvas *) x));
@@ -7776,7 +8235,7 @@ static void *_p_FXScrollBarTo_p_FXObject(void *x) {
7776
8235
  return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *) ((FXScrollBar *) x));
7777
8236
  }
7778
8237
  static void *_p_FXToolBarGripTo_p_FXObject(void *x) {
7779
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *) ((FXToolBarGrip *) x));
8238
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *)(FXDockHandler *) ((FXToolBarGrip *) x));
7780
8239
  }
7781
8240
  static void *_p_FXGLVisualTo_p_FXObject(void *x) {
7782
8241
  return (void *)((FXObject *) (FXId *)(FXVisual *) ((FXGLVisual *) x));
@@ -7790,6 +8249,9 @@ static void *_p_FXComboBoxTo_p_FXObject(void *x) {
7790
8249
  static void *_p_FXFrameTo_p_FXObject(void *x) {
7791
8250
  return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *) ((FXFrame *) x));
7792
8251
  }
8252
+ static void *_p_FX7SegmentTo_p_FXObject(void *x) {
8253
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FX7Segment *) x));
8254
+ }
7793
8255
  static void *_p_FXStringDictTo_p_FXObject(void *x) {
7794
8256
  return (void *)((FXObject *) (FXDict *) ((FXStringDict *) x));
7795
8257
  }
@@ -7838,6 +8300,12 @@ static void *_p_FXTopWindowTo_p_FXObject(void *x) {
7838
8300
  static void *_p_FXMainWindowTo_p_FXObject(void *x) {
7839
8301
  return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXMainWindow *) x));
7840
8302
  }
8303
+ static void *_p_FXSplashWindowTo_p_FXObject(void *x) {
8304
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXSplashWindow *) x));
8305
+ }
8306
+ static void *_p_FXDockBarTo_p_FXObject(void *x) {
8307
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXDockBar *) x));
8308
+ }
7841
8309
  static void *_p_FXDictTo_p_FXObject(void *x) {
7842
8310
  return (void *)((FXObject *) ((FXDict *) x));
7843
8311
  }
@@ -7881,7 +8349,7 @@ static void *_p_FXFontSelectorTo_p_FXObject(void *x) {
7881
8349
  return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXFontSelector *) x));
7882
8350
  }
7883
8351
  static void *_p_FXToolBarTo_p_FXObject(void *x) {
7884
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXToolBar *) x));
8352
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXDockBar *) ((FXToolBar *) x));
7885
8353
  }
7886
8354
  static void *_p_FXToolBarShellTo_p_FXObject(void *x) {
7887
8355
  return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXToolBarShell *) x));
@@ -7896,7 +8364,7 @@ static void *_p_FXDriveBoxTo_p_FXDrawable(void *x) {
7896
8364
  return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *)(FXListBox *) ((FXDriveBox *) x));
7897
8365
  }
7898
8366
  static void *_p_FXToolBarTo_p_FXDrawable(void *x) {
7899
- return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXToolBar *) x));
8367
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *)(FXDockBar *) ((FXToolBar *) x));
7900
8368
  }
7901
8369
  static void *_p_FXCompositeTo_p_FXDrawable(void *x) {
7902
8370
  return (void *)((FXDrawable *) (FXWindow *) ((FXComposite *) x));
@@ -7946,6 +8414,9 @@ static void *_p_FXTopWindowTo_p_FXDrawable(void *x) {
7946
8414
  static void *_p_FXMainWindowTo_p_FXDrawable(void *x) {
7947
8415
  return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXMainWindow *) x));
7948
8416
  }
8417
+ static void *_p_FXSplashWindowTo_p_FXDrawable(void *x) {
8418
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXSplashWindow *) x));
8419
+ }
7949
8420
  static void *_p_FXRulerTo_p_FXDrawable(void *x) {
7950
8421
  return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXRuler *) x));
7951
8422
  }
@@ -7958,12 +8429,12 @@ static void *_p_FXScrollCornerTo_p_FXDrawable(void *x) {
7958
8429
  static void *_p_FXGLCanvasTo_p_FXDrawable(void *x) {
7959
8430
  return (void *)((FXDrawable *) (FXWindow *)(FXCanvas *) ((FXGLCanvas *) x));
7960
8431
  }
7961
- static void *_p_FXHorizontalSeparatorTo_p_FXDrawable(void *x) {
7962
- return (void *)((FXDrawable *) (FXWindow *)(FXFrame *)(FXSeparator *) ((FXHorizontalSeparator *) x));
7963
- }
7964
8432
  static void *_p_FXSeparatorTo_p_FXDrawable(void *x) {
7965
8433
  return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXSeparator *) x));
7966
8434
  }
8435
+ static void *_p_FXHorizontalSeparatorTo_p_FXDrawable(void *x) {
8436
+ return (void *)((FXDrawable *) (FXWindow *)(FXFrame *)(FXSeparator *) ((FXHorizontalSeparator *) x));
8437
+ }
7967
8438
  static void *_p_FXVerticalSeparatorTo_p_FXDrawable(void *x) {
7968
8439
  return (void *)((FXDrawable *) (FXWindow *)(FXFrame *)(FXSeparator *) ((FXVerticalSeparator *) x));
7969
8440
  }
@@ -8006,8 +8477,11 @@ static void *_p_FXBitmapFrameTo_p_FXDrawable(void *x) {
8006
8477
  static void *_p_FXDirBoxTo_p_FXDrawable(void *x) {
8007
8478
  return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *)(FXTreeListBox *) ((FXDirBox *) x));
8008
8479
  }
8480
+ static void *_p_FXDockHandlerTo_p_FXDrawable(void *x) {
8481
+ return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXDockHandler *) x));
8482
+ }
8009
8483
  static void *_p_FXToolBarGripTo_p_FXDrawable(void *x) {
8010
- return (void *)((FXDrawable *) (FXWindow *) ((FXToolBarGrip *) x));
8484
+ return (void *)((FXDrawable *) (FXWindow *)(FXFrame *)(FXDockHandler *) ((FXToolBarGrip *) x));
8011
8485
  }
8012
8486
  static void *_p_FXImageFrameTo_p_FXDrawable(void *x) {
8013
8487
  return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXImageFrame *) x));
@@ -8036,6 +8510,9 @@ static void *_p_FXShutterTo_p_FXDrawable(void *x) {
8036
8510
  static void *_p_FXProgressBarTo_p_FXDrawable(void *x) {
8037
8511
  return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXProgressBar *) x));
8038
8512
  }
8513
+ static void *_p_FXDockSiteTo_p_FXDrawable(void *x) {
8514
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXDockSite *) x));
8515
+ }
8039
8516
  static void *_p_FXListBoxTo_p_FXDrawable(void *x) {
8040
8517
  return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXListBox *) x));
8041
8518
  }
@@ -8060,12 +8537,18 @@ static void *_p_FXDialTo_p_FXDrawable(void *x) {
8060
8537
  static void *_p_FXToolBarTabTo_p_FXDrawable(void *x) {
8061
8538
  return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXToolBarTab *) x));
8062
8539
  }
8540
+ static void *_p_FXDockBarTo_p_FXDrawable(void *x) {
8541
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXDockBar *) x));
8542
+ }
8063
8543
  static void *_p_FXFrameTo_p_FXDrawable(void *x) {
8064
8544
  return (void *)((FXDrawable *) (FXWindow *) ((FXFrame *) x));
8065
8545
  }
8066
8546
  static void *_p_FXTabBarTo_p_FXDrawable(void *x) {
8067
8547
  return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXTabBar *) x));
8068
8548
  }
8549
+ static void *_p_FX7SegmentTo_p_FXDrawable(void *x) {
8550
+ return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FX7Segment *) x));
8551
+ }
8069
8552
  static void *_p_FXImageViewTo_p_FXDrawable(void *x) {
8070
8553
  return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXScrollArea *) ((FXImageView *) x));
8071
8554
  }
@@ -8090,222 +8573,237 @@ static void *_p_FXFileStreamTo_p_FXStream(void *x) {
8090
8573
  static void *_p_FXMemoryStreamTo_p_FXStream(void *x) {
8091
8574
  return (void *)((FXStream *) ((FXMemoryStream *) x));
8092
8575
  }
8093
- static void *_p_FXDriveBoxTo_p_FXId(void *x) {
8094
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXListBox *) ((FXDriveBox *) x));
8576
+ static void *_p_FXShutterItemTo_p_FXId(void *x) {
8577
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXVerticalFrame *) ((FXShutterItem *) x));
8095
8578
  }
8096
- static void *_p_FXToolBarTo_p_FXId(void *x) {
8097
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXToolBar *) x));
8579
+ static void *_p_FXColorBarTo_p_FXId(void *x) {
8580
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXColorBar *) x));
8098
8581
  }
8099
- static void *_p_FXCompositeTo_p_FXId(void *x) {
8100
- return (void *)((FXId *) (FXDrawable *)(FXWindow *) ((FXComposite *) x));
8582
+ static void *_p_FXTabBarTo_p_FXId(void *x) {
8583
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXTabBar *) x));
8101
8584
  }
8102
- static void *_p_FXToolTipTo_p_FXId(void *x) {
8103
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *) ((FXToolTip *) x));
8585
+ static void *_p_FXSwitcherTo_p_FXId(void *x) {
8586
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXSwitcher *) x));
8104
8587
  }
8105
8588
  static void *_p_FXTextFieldTo_p_FXId(void *x) {
8106
8589
  return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXTextField *) x));
8107
8590
  }
8108
- static void *_p_FXTabBookTo_p_FXId(void *x) {
8109
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXTabBar *) ((FXTabBook *) x));
8110
- }
8111
- static void *_p_FXGLViewerTo_p_FXId(void *x) {
8112
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXCanvas *)(FXGLCanvas *) ((FXGLViewer *) x));
8591
+ static void *_p_FXToolBarTabTo_p_FXId(void *x) {
8592
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXToolBarTab *) x));
8113
8593
  }
8114
- static void *_p_FXArrowButtonTo_p_FXId(void *x) {
8115
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXArrowButton *) x));
8594
+ static void *_p_FXDriveBoxTo_p_FXId(void *x) {
8595
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXListBox *) ((FXDriveBox *) x));
8116
8596
  }
8117
- static void *_p_FXGroupBoxTo_p_FXId(void *x) {
8118
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXGroupBox *) x));
8597
+ static void *_p_FXMatrixTo_p_FXId(void *x) {
8598
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXMatrix *) x));
8119
8599
  }
8120
- static void *_p_FXShellTo_p_FXId(void *x) {
8121
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *) ((FXShell *) x));
8600
+ static void *_p_FXScrollCornerTo_p_FXId(void *x) {
8601
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *) ((FXScrollCorner *) x));
8122
8602
  }
8123
- static void *_p_FXStatusBarTo_p_FXId(void *x) {
8124
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXHorizontalFrame *) ((FXStatusBar *) x));
8603
+ static void *_p_FXArrowButtonTo_p_FXId(void *x) {
8604
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXArrowButton *) x));
8125
8605
  }
8126
- static void *_p_FXScrollAreaTo_p_FXId(void *x) {
8127
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *) ((FXScrollArea *) x));
8606
+ static void *_p_FXGLViewerTo_p_FXId(void *x) {
8607
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXCanvas *)(FXGLCanvas *) ((FXGLViewer *) x));
8128
8608
  }
8129
8609
  static void *_p_FXPopupTo_p_FXId(void *x) {
8130
8610
  return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *) ((FXPopup *) x));
8131
8611
  }
8132
- static void *_p_FXScrollWindowTo_p_FXId(void *x) {
8133
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXScrollArea *) ((FXScrollWindow *) x));
8612
+ static void *_p_FXDrawableTo_p_FXId(void *x) {
8613
+ return (void *)((FXId *) ((FXDrawable *) x));
8134
8614
  }
8135
- static void *_p_FXWindowTo_p_FXId(void *x) {
8136
- return (void *)((FXId *) (FXDrawable *) ((FXWindow *) x));
8615
+ static void *_p_FXHeaderTo_p_FXId(void *x) {
8616
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXHeader *) x));
8137
8617
  }
8138
- static void *_p_FXRootWindowTo_p_FXId(void *x) {
8139
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *) ((FXRootWindow *) x));
8618
+ static void *_p_FXSplitterTo_p_FXId(void *x) {
8619
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *) ((FXSplitter *) x));
8140
8620
  }
8141
- static void *_p_FXTopWindowTo_p_FXId(void *x) {
8142
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *) ((FXTopWindow *) x));
8621
+ static void *_p_FX4SplitterTo_p_FXId(void *x) {
8622
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *) ((FX4Splitter *) x));
8143
8623
  }
8144
- static void *_p_FXMainWindowTo_p_FXId(void *x) {
8145
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXMainWindow *) x));
8624
+ static void *_p_FXSpringTo_p_FXId(void *x) {
8625
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXSpring *) x));
8146
8626
  }
8147
- static void *_p_FXRulerTo_p_FXId(void *x) {
8148
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXRuler *) x));
8627
+ static void *_p_FXPackerTo_p_FXId(void *x) {
8628
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *) ((FXPacker *) x));
8149
8629
  }
8150
- static void *_p_FXCanvasTo_p_FXId(void *x) {
8151
- return (void *)((FXId *) (FXDrawable *)(FXWindow *) ((FXCanvas *) x));
8630
+ static void *_p_FXTabBookTo_p_FXId(void *x) {
8631
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXTabBar *) ((FXTabBook *) x));
8152
8632
  }
8153
- static void *_p_FXScrollCornerTo_p_FXId(void *x) {
8154
- return (void *)((FXId *) (FXDrawable *)(FXWindow *) ((FXScrollCorner *) x));
8633
+ static void *_p_FXImageFrameTo_p_FXId(void *x) {
8634
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXImageFrame *) x));
8155
8635
  }
8156
- static void *_p_FXGLCanvasTo_p_FXId(void *x) {
8157
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXCanvas *) ((FXGLCanvas *) x));
8636
+ static void *_p_FXVerticalSeparatorTo_p_FXId(void *x) {
8637
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *)(FXSeparator *) ((FXVerticalSeparator *) x));
8638
+ }
8639
+ static void *_p_FXHorizontalSeparatorTo_p_FXId(void *x) {
8640
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *)(FXSeparator *) ((FXHorizontalSeparator *) x));
8158
8641
  }
8159
8642
  static void *_p_FXSeparatorTo_p_FXId(void *x) {
8160
8643
  return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXSeparator *) x));
8161
8644
  }
8162
- static void *_p_FXHorizontalSeparatorTo_p_FXId(void *x) {
8163
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *)(FXSeparator *) ((FXHorizontalSeparator *) x));
8645
+ static void *_p_FXProgressBarTo_p_FXId(void *x) {
8646
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXProgressBar *) x));
8164
8647
  }
8165
- static void *_p_FXVerticalSeparatorTo_p_FXId(void *x) {
8166
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *)(FXSeparator *) ((FXVerticalSeparator *) x));
8648
+ static void *_p_FXShutterTo_p_FXId(void *x) {
8649
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXVerticalFrame *) ((FXShutter *) x));
8167
8650
  }
8168
- static void *_p_FXStatusLineTo_p_FXId(void *x) {
8169
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXStatusLine *) x));
8651
+ static void *_p_FXGLContextTo_p_FXId(void *x) {
8652
+ return (void *)((FXId *) ((FXGLContext *) x));
8170
8653
  }
8171
- static void *_p_FXComboBoxTo_p_FXId(void *x) {
8172
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXComboBox *) x));
8654
+ static void *_p_FXToolTipTo_p_FXId(void *x) {
8655
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *) ((FXToolTip *) x));
8173
8656
  }
8174
- static void *_p_FXVerticalFrameTo_p_FXId(void *x) {
8175
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXVerticalFrame *) x));
8657
+ static void *_p_FXCompositeTo_p_FXId(void *x) {
8658
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *) ((FXComposite *) x));
8176
8659
  }
8177
- static void *_p_FXHorizontalFrameTo_p_FXId(void *x) {
8178
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXHorizontalFrame *) x));
8660
+ static void *_p_FXBitmapFrameTo_p_FXId(void *x) {
8661
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXBitmapFrame *) x));
8179
8662
  }
8180
- static void *_p_FX4SplitterTo_p_FXId(void *x) {
8181
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *) ((FX4Splitter *) x));
8663
+ static void *_p_FXRealSliderTo_p_FXId(void *x) {
8664
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXRealSlider *) x));
8182
8665
  }
8183
- static void *_p_FXSplitterTo_p_FXId(void *x) {
8184
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *) ((FXSplitter *) x));
8666
+ static void *_p_FXSliderTo_p_FXId(void *x) {
8667
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXSlider *) x));
8185
8668
  }
8186
- static void *_p_FXPackerTo_p_FXId(void *x) {
8187
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *) ((FXPacker *) x));
8669
+ static void *_p_FXDockSiteTo_p_FXId(void *x) {
8670
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXDockSite *) x));
8188
8671
  }
8189
- static void *_p_FXSpinnerTo_p_FXId(void *x) {
8190
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXSpinner *) x));
8672
+ static void *_p_FXGroupBoxTo_p_FXId(void *x) {
8673
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXGroupBox *) x));
8191
8674
  }
8192
- static void *_p_FXRealSpinnerTo_p_FXId(void *x) {
8193
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXRealSpinner *) x));
8675
+ static void *_p_FXDockHandlerTo_p_FXId(void *x) {
8676
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXDockHandler *) x));
8194
8677
  }
8195
- static void *_p_FXScrollBarTo_p_FXId(void *x) {
8196
- return (void *)((FXId *) (FXDrawable *)(FXWindow *) ((FXScrollBar *) x));
8678
+ static void *_p_FXTreeListBoxTo_p_FXId(void *x) {
8679
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXTreeListBox *) x));
8680
+ }
8681
+ static void *_p_FXListBoxTo_p_FXId(void *x) {
8682
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXListBox *) x));
8683
+ }
8684
+ static void *_p_FXCanvasTo_p_FXId(void *x) {
8685
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *) ((FXCanvas *) x));
8686
+ }
8687
+ static void *_p_FXGLCanvasTo_p_FXId(void *x) {
8688
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXCanvas *) ((FXGLCanvas *) x));
8197
8689
  }
8198
8690
  static void *_p_FXColorWheelTo_p_FXId(void *x) {
8199
8691
  return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXColorWheel *) x));
8200
8692
  }
8201
- static void *_p_FXBitmapFrameTo_p_FXId(void *x) {
8202
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXBitmapFrame *) x));
8693
+ static void *_p_FXGLVisualTo_p_FXId(void *x) {
8694
+ return (void *)((FXId *) (FXVisual *) ((FXGLVisual *) x));
8203
8695
  }
8204
- static void *_p_FXGLContextTo_p_FXId(void *x) {
8205
- return (void *)((FXId *) ((FXGLContext *) x));
8696
+ static void *_p_FXVisualTo_p_FXId(void *x) {
8697
+ return (void *)((FXId *) ((FXVisual *) x));
8698
+ }
8699
+ static void *_p_FXToolBarGripTo_p_FXId(void *x) {
8700
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *)(FXDockHandler *) ((FXToolBarGrip *) x));
8701
+ }
8702
+ static void *_p_FXScrollBarTo_p_FXId(void *x) {
8703
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *) ((FXScrollBar *) x));
8206
8704
  }
8207
8705
  static void *_p_FXFontTo_p_FXId(void *x) {
8208
8706
  return (void *)((FXId *) ((FXFont *) x));
8209
8707
  }
8210
- static void *_p_FXDirBoxTo_p_FXId(void *x) {
8211
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXTreeListBox *) ((FXDirBox *) x));
8708
+ static void *_p_FXComboBoxTo_p_FXId(void *x) {
8709
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXComboBox *) x));
8212
8710
  }
8213
- static void *_p_FXToolBarGripTo_p_FXId(void *x) {
8214
- return (void *)((FXId *) (FXDrawable *)(FXWindow *) ((FXToolBarGrip *) x));
8711
+ static void *_p_FXFrameTo_p_FXId(void *x) {
8712
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *) ((FXFrame *) x));
8215
8713
  }
8216
- static void *_p_FXImageFrameTo_p_FXId(void *x) {
8217
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXImageFrame *) x));
8714
+ static void *_p_FX7SegmentTo_p_FXId(void *x) {
8715
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FX7Segment *) x));
8218
8716
  }
8219
- static void *_p_FXDragCornerTo_p_FXId(void *x) {
8220
- return (void *)((FXId *) (FXDrawable *)(FXWindow *) ((FXDragCorner *) x));
8717
+ static void *_p_FXStatusBarTo_p_FXId(void *x) {
8718
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXHorizontalFrame *) ((FXStatusBar *) x));
8221
8719
  }
8222
- static void *_p_FXSwitcherTo_p_FXId(void *x) {
8223
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXSwitcher *) x));
8720
+ static void *_p_FXGIFCursorTo_p_FXId(void *x) {
8721
+ return (void *)((FXId *) (FXCursor *) ((FXGIFCursor *) x));
8224
8722
  }
8225
- static void *_p_FXDirSelectorTo_p_FXId(void *x) {
8226
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXDirSelector *) x));
8723
+ static void *_p_FXCURCursorTo_p_FXId(void *x) {
8724
+ return (void *)((FXId *) (FXCursor *) ((FXCURCursor *) x));
8227
8725
  }
8228
- static void *_p_FXFileSelectorTo_p_FXId(void *x) {
8229
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXFileSelector *) x));
8726
+ static void *_p_FXCursorTo_p_FXId(void *x) {
8727
+ return (void *)((FXId *) ((FXCursor *) x));
8230
8728
  }
8231
- static void *_p_FXColorSelectorTo_p_FXId(void *x) {
8232
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXColorSelector *) x));
8729
+ static void *_p_FXRealSpinnerTo_p_FXId(void *x) {
8730
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXRealSpinner *) x));
8233
8731
  }
8234
- static void *_p_FXFontSelectorTo_p_FXId(void *x) {
8235
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXFontSelector *) x));
8732
+ static void *_p_FXSpinnerTo_p_FXId(void *x) {
8733
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXSpinner *) x));
8236
8734
  }
8237
- static void *_p_FXShutterTo_p_FXId(void *x) {
8238
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXVerticalFrame *) ((FXShutter *) x));
8735
+ static void *_p_FXStatusLineTo_p_FXId(void *x) {
8736
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXStatusLine *) x));
8239
8737
  }
8240
- static void *_p_FXDrawableTo_p_FXId(void *x) {
8241
- return (void *)((FXId *) ((FXDrawable *) x));
8738
+ static void *_p_FXMainWindowTo_p_FXId(void *x) {
8739
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXMainWindow *) x));
8242
8740
  }
8243
- static void *_p_FXCursorTo_p_FXId(void *x) {
8244
- return (void *)((FXId *) ((FXCursor *) x));
8741
+ static void *_p_FXTopWindowTo_p_FXId(void *x) {
8742
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *) ((FXTopWindow *) x));
8245
8743
  }
8246
- static void *_p_FXCURCursorTo_p_FXId(void *x) {
8247
- return (void *)((FXId *) (FXCursor *) ((FXCURCursor *) x));
8744
+ static void *_p_FXRootWindowTo_p_FXId(void *x) {
8745
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *) ((FXRootWindow *) x));
8248
8746
  }
8249
- static void *_p_FXGIFCursorTo_p_FXId(void *x) {
8250
- return (void *)((FXId *) (FXCursor *) ((FXGIFCursor *) x));
8747
+ static void *_p_FXWindowTo_p_FXId(void *x) {
8748
+ return (void *)((FXId *) (FXDrawable *) ((FXWindow *) x));
8251
8749
  }
8252
- static void *_p_FXProgressBarTo_p_FXId(void *x) {
8253
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXProgressBar *) x));
8750
+ static void *_p_FXSplashWindowTo_p_FXId(void *x) {
8751
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXSplashWindow *) x));
8254
8752
  }
8255
- static void *_p_FXListBoxTo_p_FXId(void *x) {
8256
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXListBox *) x));
8753
+ static void *_p_FXScrollWindowTo_p_FXId(void *x) {
8754
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXScrollArea *) ((FXScrollWindow *) x));
8257
8755
  }
8258
- static void *_p_FXTreeListBoxTo_p_FXId(void *x) {
8259
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXTreeListBox *) x));
8756
+ static void *_p_FXDockBarTo_p_FXId(void *x) {
8757
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXDockBar *) x));
8260
8758
  }
8261
- static void *_p_FXHeaderTo_p_FXId(void *x) {
8262
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXHeader *) x));
8759
+ static void *_p_FXShellTo_p_FXId(void *x) {
8760
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *) ((FXShell *) x));
8263
8761
  }
8264
- static void *_p_FXMatrixTo_p_FXId(void *x) {
8265
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXMatrix *) x));
8762
+ static void *_p_FXScrollAreaTo_p_FXId(void *x) {
8763
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *) ((FXScrollArea *) x));
8266
8764
  }
8267
8765
  static void *_p_FXColorWellTo_p_FXId(void *x) {
8268
8766
  return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXColorWell *) x));
8269
8767
  }
8270
- static void *_p_FXShutterItemTo_p_FXId(void *x) {
8271
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXVerticalFrame *) ((FXShutterItem *) x));
8768
+ static void *_p_FXDragCornerTo_p_FXId(void *x) {
8769
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *) ((FXDragCorner *) x));
8770
+ }
8771
+ static void *_p_FXRulerTo_p_FXId(void *x) {
8772
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXRuler *) x));
8272
8773
  }
8273
8774
  static void *_p_FXDialTo_p_FXId(void *x) {
8274
8775
  return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXDial *) x));
8275
8776
  }
8276
- static void *_p_FXToolBarTabTo_p_FXId(void *x) {
8277
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXToolBarTab *) x));
8278
- }
8279
- static void *_p_FXFrameTo_p_FXId(void *x) {
8280
- return (void *)((FXId *) (FXDrawable *)(FXWindow *) ((FXFrame *) x));
8777
+ static void *_p_FXHorizontalFrameTo_p_FXId(void *x) {
8778
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXHorizontalFrame *) x));
8281
8779
  }
8282
- static void *_p_FXTabBarTo_p_FXId(void *x) {
8283
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXTabBar *) x));
8780
+ static void *_p_FXVerticalFrameTo_p_FXId(void *x) {
8781
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXVerticalFrame *) x));
8284
8782
  }
8285
8783
  static void *_p_FXImageViewTo_p_FXId(void *x) {
8286
8784
  return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXScrollArea *) ((FXImageView *) x));
8287
8785
  }
8288
- static void *_p_FXSliderTo_p_FXId(void *x) {
8289
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXSlider *) x));
8290
- }
8291
- static void *_p_FXRealSliderTo_p_FXId(void *x) {
8292
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXRealSlider *) x));
8293
- }
8294
- static void *_p_FXSpringTo_p_FXId(void *x) {
8295
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXSpring *) x));
8786
+ static void *_p_FXFontSelectorTo_p_FXId(void *x) {
8787
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXFontSelector *) x));
8296
8788
  }
8297
- static void *_p_FXVisualTo_p_FXId(void *x) {
8298
- return (void *)((FXId *) ((FXVisual *) x));
8789
+ static void *_p_FXColorSelectorTo_p_FXId(void *x) {
8790
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXColorSelector *) x));
8299
8791
  }
8300
- static void *_p_FXGLVisualTo_p_FXId(void *x) {
8301
- return (void *)((FXId *) (FXVisual *) ((FXGLVisual *) x));
8792
+ static void *_p_FXFileSelectorTo_p_FXId(void *x) {
8793
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXFileSelector *) x));
8302
8794
  }
8303
- static void *_p_FXColorBarTo_p_FXId(void *x) {
8304
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXColorBar *) x));
8795
+ static void *_p_FXDirSelectorTo_p_FXId(void *x) {
8796
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXDirSelector *) x));
8305
8797
  }
8306
8798
  static void *_p_FXToolBarShellTo_p_FXId(void *x) {
8307
8799
  return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *)(FXTopWindow *) ((FXToolBarShell *) x));
8308
8800
  }
8801
+ static void *_p_FXToolBarTo_p_FXId(void *x) {
8802
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXDockBar *) ((FXToolBar *) x));
8803
+ }
8804
+ static void *_p_FXDirBoxTo_p_FXId(void *x) {
8805
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXTreeListBox *) ((FXDirBox *) x));
8806
+ }
8309
8807
  static void *_p_FXGLVisualTo_p_FXVisual(void *x) {
8310
8808
  return (void *)((FXVisual *) ((FXGLVisual *) x));
8311
8809
  }
@@ -8315,33 +8813,37 @@ static swig_type_info _swigt__p_FXMat4f[] = {{"_p_FXMat4f", 0, "FXMat4f *", 0, 0
8315
8813
  static swig_type_info _swigt__p_FXVec4f[] = {{"_p_FXVec4f", 0, "FXVec4f *", 0, 0, 0, 0},{"_p_FXVec4f", 0, 0, 0, 0, 0, 0},{"_p_FXQuatf", _p_FXQuatfTo_p_FXVec4f, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
8316
8814
  static swig_type_info _swigt__p_FXfloat[] = {{"_p_FXfloat", 0, "float const []|FXfloat const []", 0, 0, 0, 0},{"_p_FXfloat", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
8317
8815
  static swig_type_info _swigt__p_FXMat3d[] = {{"_p_FXMat3d", 0, "FXMat3d *", 0, 0, 0, 0},{"_p_FXMat3d", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
8318
- 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_FXScrollWindow", _p_FXScrollWindowTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXRootWindow", _p_FXRootWindowTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXTopWindow", _p_FXTopWindowTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXMainWindow", _p_FXMainWindowTo_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_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}};
8816
+ 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_FXSplashWindow", _p_FXSplashWindowTo_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_FXTopWindow", _p_FXTopWindowTo_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_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_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_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}};
8319
8817
  static swig_type_info _swigt__p_FXVec3d[] = {{"_p_FXVec3d", 0, "FXVec3d *", 0, 0, 0, 0},{"_p_FXVec3d", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
8320
8818
  static swig_type_info _swigt__p_FXGLViewer[] = {{"_p_FXGLViewer", 0, "FXGLViewer *", 0, 0, 0, 0},{"_p_FXGLViewer", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
8321
8819
  static swig_type_info _swigt__p_FXMat3f[] = {{"_p_FXMat3f", 0, "FXMat3f *", 0, 0, 0, 0},{"_p_FXMat3f", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
8820
+ 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_FXGLViewer", _p_FXGLViewerTo_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_FXGLContext", _p_FXGLContextTo_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_FXGLCanvas", _p_FXGLCanvasTo_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_FXGLVisual", _p_FXGLVisualTo_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_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_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_FXSplashWindow", _p_FXSplashWindowTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXScrollWindow", _p_FXScrollWindowTo_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}};
8322
8821
  static swig_type_info _swigt__p_FXViewport[] = {{"_p_FXViewport", 0, "FXViewport *", 0, 0, 0, 0},{"_p_FXViewport", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
8323
- 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_FXGLViewer", _p_FXGLViewerTo_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_FXScrollWindow", _p_FXScrollWindowTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXRootWindow", _p_FXRootWindowTo_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_FXGLCanvas", _p_FXGLCanvasTo_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_FXGLContext", _p_FXGLContextTo_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_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_FXTreeListBox", _p_FXTreeListBoxTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXListBox", _p_FXListBoxTo_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_FXGLVisual", _p_FXGLVisualTo_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}};
8324
8822
  static swig_type_info _swigt__p_FXVec3f[] = {{"_p_FXVec3f", 0, "FXVec3f *", 0, 0, 0, 0},{"_p_FXVec3f", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
8325
- 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_FXGLViewer", _p_FXGLViewerTo_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_FXWindow", 0, 0, 0, 0, 0, 0},{"_p_FXScrollWindow", _p_FXScrollWindowTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXRootWindow", _p_FXRootWindowTo_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_FXGLCanvas", _p_FXGLCanvasTo_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_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_FXTreeListBox", _p_FXTreeListBoxTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXListBox", _p_FXListBoxTo_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}};
8823
+ 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_FXGLViewer", _p_FXGLViewerTo_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_FXSplashWindow", _p_FXSplashWindowTo_p_FXWindow, 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_FXGLCanvas", _p_FXGLCanvasTo_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_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}};
8326
8824
  static swig_type_info _swigt__p_FXCanvas[] = {{"_p_FXCanvas", 0, "FXCanvas *", 0, 0, 0, 0},{"_p_FXCanvas", 0, 0, 0, 0, 0, 0},{"_p_FXGLCanvas", _p_FXGLCanvasTo_p_FXCanvas, 0, 0, 0, 0, 0},{"_p_FXGLViewer", _p_FXGLViewerTo_p_FXCanvas, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
8327
8825
  static swig_type_info _swigt__p_FXGLCanvas[] = {{"_p_FXGLCanvas", 0, "FXGLCanvas *", 0, 0, 0, 0},{"_p_FXGLCanvas", 0, 0, 0, 0, 0, 0},{"_p_FXGLViewer", _p_FXGLViewerTo_p_FXGLCanvas, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
8328
8826
  static swig_type_info _swigt__p_FXRanged[] = {{"_p_FXRanged", 0, "FXRanged *", 0, 0, 0, 0},{"_p_FXRanged", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
8329
8827
  static swig_type_info _swigt__p_FXSphered[] = {{"_p_FXSphered", 0, "FXSphered *", 0, 0, 0, 0},{"_p_FXSphered", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
8828
+ 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}};
8330
8829
  static swig_type_info _swigt__p_FXVec2d[] = {{"_p_FXVec2d", 0, "FXVec2d *", 0, 0, 0, 0},{"_p_FXVec2d", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
8331
8830
  static swig_type_info _swigt__p_FXSpheref[] = {{"_p_FXSpheref", 0, "FXSpheref *", 0, 0, 0, 0},{"_p_FXSpheref", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
8332
8831
  static swig_type_info _swigt__p_FXRangef[] = {{"_p_FXRangef", 0, "FXRangef *", 0, 0, 0, 0},{"_p_FXRangef", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
8333
8832
  static swig_type_info _swigt__p_FXVec2f[] = {{"_p_FXVec2f", 0, "FXVec2f *", 0, 0, 0, 0},{"_p_FXVec2f", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
8334
- 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_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_FXGLViewer", _p_FXGLViewerTo_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_FXGLShape", _p_FXGLShapeTo_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_FXGLContext", _p_FXGLContextTo_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_FXGLCanvas", _p_FXGLCanvasTo_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_FXGLVisual", _p_FXGLVisualTo_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_FXGLObject", _p_FXGLObjectTo_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_FXScrollWindow", _p_FXScrollWindowTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXRootWindow", _p_FXRootWindowTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXTopWindow", _p_FXTopWindowTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXMainWindow", _p_FXMainWindowTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_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}};
8833
+ 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}};
8834
+ 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_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_FXGLViewer", _p_FXGLViewerTo_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_FXGLShape", _p_FXGLShapeTo_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_FXGLContext", _p_FXGLContextTo_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_FXGLCanvas", _p_FXGLCanvasTo_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_FXGLVisual", _p_FXGLVisualTo_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_FXGLObject", _p_FXGLObjectTo_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_FXSplashWindow", _p_FXSplashWindowTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXScrollWindow", _p_FXScrollWindowTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXRootWindow", _p_FXRootWindowTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXTopWindow", _p_FXTopWindowTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXMainWindow", _p_FXMainWindowTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_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}};
8335
8835
  static swig_type_info _swigt__p_FXGLObject[] = {{"_p_FXGLObject", 0, "FXGLObject *", 0, 0, 0, 0},{"_p_FXGLShape", _p_FXGLShapeTo_p_FXGLObject, 0, 0, 0, 0, 0},{"_p_FXGLObject", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
8336
8836
  static swig_type_info _swigt__p_FXGLContext[] = {{"_p_FXGLContext", 0, "FXGLContext *", 0, 0, 0, 0},{"_p_FXGLContext", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
8337
- static swig_type_info _swigt__p_FXMaterial[] = {{"_p_FXMaterial", 0, "FXMaterial *", 0, 0, 0, 0},{"_p_FXMaterial", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
8338
8837
  static swig_type_info _swigt__p_FXQuatd[] = {{"_p_FXQuatd", 0, "FXQuatd *", 0, 0, 0, 0},{"_p_FXQuatd", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
8838
+ static swig_type_info _swigt__p_FXMaterial[] = {{"_p_FXMaterial", 0, "FXMaterial *", 0, 0, 0, 0},{"_p_FXMaterial", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
8839
+ static swig_type_info _swigt__p_FXdouble[] = {{"_p_FXdouble", 0, "double const []|FXdouble const []", 0, 0, 0, 0},{"_p_FXdouble", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
8339
8840
  static swig_type_info _swigt__p_FXQuatf[] = {{"_p_FXQuatf", 0, "FXQuatf *", 0, 0, 0, 0},{"_p_FXQuatf", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
8340
8841
  static swig_type_info _swigt__p_FXGLShape[] = {{"_p_FXGLShape", 0, "FXGLShape *", 0, 0, 0, 0},{"_p_FXGLShape", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
8341
- 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_FXGLViewer", _p_FXGLViewerTo_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_FXScrollWindow", _p_FXScrollWindowTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXRootWindow", _p_FXRootWindowTo_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_FXGLCanvas", _p_FXGLCanvasTo_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_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_FXTreeListBox", _p_FXTreeListBoxTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXListBox", _p_FXListBoxTo_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}};
8842
+ 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_FXGLViewer", _p_FXGLViewerTo_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_FXGLCanvas", _p_FXGLCanvasTo_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_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}};
8342
8843
  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}};
8343
8844
  static swig_type_info _swigt__p_FXApp[] = {{"_p_FXApp", 0, "FXApp *", 0, 0, 0, 0},{"_p_FXApp", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
8344
8845
  static swig_type_info _swigt__p_FXLight[] = {{"_p_FXLight", 0, "FXLight *", 0, 0, 0, 0},{"_p_FXLight", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
8846
+ 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}};
8345
8847
  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}};
8346
8848
  static swig_type_info _swigt__p_FXGLVisual[] = {{"_p_FXGLVisual", 0, "FXGLVisual *", 0, 0, 0, 0},{"_p_FXGLVisual", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
8347
8849
  static swig_type_info _swigt__p_FXVisual[] = {{"_p_FXVisual", 0, "FXVisual *", 0, 0, 0, 0},{"_p_FXVisual", 0, 0, 0, 0, 0, 0},{"_p_FXGLVisual", _p_FXGLVisualTo_p_FXVisual, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
@@ -8358,29 +8860,33 @@ _swigt__p_FXComposite,
8358
8860
  _swigt__p_FXVec3d,
8359
8861
  _swigt__p_FXGLViewer,
8360
8862
  _swigt__p_FXMat3f,
8361
- _swigt__p_FXViewport,
8362
8863
  _swigt__p_FXId,
8864
+ _swigt__p_FXViewport,
8363
8865
  _swigt__p_FXVec3f,
8364
8866
  _swigt__p_FXWindow,
8365
8867
  _swigt__p_FXCanvas,
8366
8868
  _swigt__p_FXGLCanvas,
8367
8869
  _swigt__p_FXRanged,
8368
8870
  _swigt__p_FXSphered,
8871
+ _swigt__p_FXIcon,
8369
8872
  _swigt__p_FXVec2d,
8370
8873
  _swigt__p_FXSpheref,
8371
8874
  _swigt__p_FXRangef,
8372
8875
  _swigt__p_FXVec2f,
8876
+ _swigt__p_FXBitmap,
8373
8877
  _swigt__p_FXObject,
8374
8878
  _swigt__p_FXGLObject,
8375
8879
  _swigt__p_FXGLContext,
8376
- _swigt__p_FXMaterial,
8377
8880
  _swigt__p_FXQuatd,
8881
+ _swigt__p_FXMaterial,
8882
+ _swigt__p_FXdouble,
8378
8883
  _swigt__p_FXQuatf,
8379
8884
  _swigt__p_FXGLShape,
8380
8885
  _swigt__p_FXDrawable,
8381
8886
  _swigt__p_FXStream,
8382
8887
  _swigt__p_FXApp,
8383
8888
  _swigt__p_FXLight,
8889
+ _swigt__p_FXRegion,
8384
8890
  _swigt__p_FXFont,
8385
8891
  _swigt__p_FXGLVisual,
8386
8892
  _swigt__p_FXVisual,
@@ -8428,8 +8934,6 @@ SWIGEXPORT(void) Init_fx3d(void) {
8428
8934
  rb_define_method(cFXVec2f.klass, "normalize", VALUEFUNC(_wrap_FXVec2f_normalize), -1);
8429
8935
  rb_define_method(cFXVec2f.klass, "lo", VALUEFUNC(_wrap_FXVec2f_lo), -1);
8430
8936
  rb_define_method(cFXVec2f.klass, "hi", VALUEFUNC(_wrap_FXVec2f_hi), -1);
8431
- rb_define_method(cFXVec2f.klass, "to_a", VALUEFUNC(_wrap_FXVec2f_to_a), -1);
8432
- rb_define_method(cFXVec2f.klass, "to_s", VALUEFUNC(_wrap_FXVec2f_to_s), -1);
8433
8937
  cFXVec2f.mark = 0;
8434
8938
  cFXVec2f.destroy = (void (*)(void *)) FXRbUnregisterRubyObj;
8435
8939
 
@@ -8455,8 +8959,6 @@ SWIGEXPORT(void) Init_fx3d(void) {
8455
8959
  rb_define_method(cFXVec2d.klass, "normalize", VALUEFUNC(_wrap_FXVec2d_normalize), -1);
8456
8960
  rb_define_method(cFXVec2d.klass, "lo", VALUEFUNC(_wrap_FXVec2d_lo), -1);
8457
8961
  rb_define_method(cFXVec2d.klass, "hi", VALUEFUNC(_wrap_FXVec2d_hi), -1);
8458
- rb_define_method(cFXVec2d.klass, "to_a", VALUEFUNC(_wrap_FXVec2d_to_a), -1);
8459
- rb_define_method(cFXVec2d.klass, "to_s", VALUEFUNC(_wrap_FXVec2d_to_s), -1);
8460
8962
  cFXVec2d.mark = 0;
8461
8963
  cFXVec2d.destroy = (void (*)(void *)) FXRbUnregisterRubyObj;
8462
8964
 
@@ -8486,8 +8988,7 @@ SWIGEXPORT(void) Init_fx3d(void) {
8486
8988
  rb_define_method(cFXVec3f.klass, "normalize", VALUEFUNC(_wrap_FXVec3f_normalize), -1);
8487
8989
  rb_define_method(cFXVec3f.klass, "lo", VALUEFUNC(_wrap_FXVec3f_lo), -1);
8488
8990
  rb_define_method(cFXVec3f.klass, "hi", VALUEFUNC(_wrap_FXVec3f_hi), -1);
8489
- rb_define_method(cFXVec3f.klass, "to_a", VALUEFUNC(_wrap_FXVec3f_to_a), -1);
8490
- rb_define_method(cFXVec3f.klass, "to_s", VALUEFUNC(_wrap_FXVec3f_to_s), -1);
8991
+ rb_define_singleton_method(cFXVec3f.klass, "normal", VALUEFUNC(_wrap_FXVec3f_normal), -1);
8491
8992
  cFXVec3f.mark = 0;
8492
8993
  cFXVec3f.destroy = (void (*)(void *)) FXRbUnregisterRubyObj;
8493
8994
 
@@ -8517,8 +9018,7 @@ SWIGEXPORT(void) Init_fx3d(void) {
8517
9018
  rb_define_method(cFXVec3d.klass, "normalize", VALUEFUNC(_wrap_FXVec3d_normalize), -1);
8518
9019
  rb_define_method(cFXVec3d.klass, "lo", VALUEFUNC(_wrap_FXVec3d_lo), -1);
8519
9020
  rb_define_method(cFXVec3d.klass, "hi", VALUEFUNC(_wrap_FXVec3d_hi), -1);
8520
- rb_define_method(cFXVec3d.klass, "to_a", VALUEFUNC(_wrap_FXVec3d_to_a), -1);
8521
- rb_define_method(cFXVec3d.klass, "to_s", VALUEFUNC(_wrap_FXVec3d_to_s), -1);
9021
+ rb_define_singleton_method(cFXVec3d.klass, "normal", VALUEFUNC(_wrap_FXVec3d_normal), -1);
8522
9022
  cFXVec3d.mark = 0;
8523
9023
  cFXVec3d.destroy = (void (*)(void *)) FXRbUnregisterRubyObj;
8524
9024
 
@@ -8548,8 +9048,9 @@ SWIGEXPORT(void) Init_fx3d(void) {
8548
9048
  rb_define_method(cFXVec4f.klass, "normalize", VALUEFUNC(_wrap_FXVec4f_normalize), -1);
8549
9049
  rb_define_method(cFXVec4f.klass, "lo", VALUEFUNC(_wrap_FXVec4f_lo), -1);
8550
9050
  rb_define_method(cFXVec4f.klass, "hi", VALUEFUNC(_wrap_FXVec4f_hi), -1);
8551
- rb_define_method(cFXVec4f.klass, "to_a", VALUEFUNC(_wrap_FXVec4f_to_a), -1);
8552
- rb_define_method(cFXVec4f.klass, "to_s", VALUEFUNC(_wrap_FXVec4f_to_s), -1);
9051
+ rb_define_singleton_method(cFXVec4f.klass, "plane", VALUEFUNC(_wrap_FXVec4f_plane), -1);
9052
+ rb_define_singleton_method(cFXVec4f.klass, "distance", VALUEFUNC(_wrap_FXVec4f_distance), -1);
9053
+ rb_define_singleton_method(cFXVec4f.klass, "crosses", VALUEFUNC(_wrap_FXVec4f_crosses), -1);
8553
9054
  cFXVec4f.mark = 0;
8554
9055
  cFXVec4f.destroy = (void (*)(void *)) FXRbUnregisterRubyObj;
8555
9056
 
@@ -8579,8 +9080,9 @@ SWIGEXPORT(void) Init_fx3d(void) {
8579
9080
  rb_define_method(cFXVec4d.klass, "normalize", VALUEFUNC(_wrap_FXVec4d_normalize), -1);
8580
9081
  rb_define_method(cFXVec4d.klass, "lo", VALUEFUNC(_wrap_FXVec4d_lo), -1);
8581
9082
  rb_define_method(cFXVec4d.klass, "hi", VALUEFUNC(_wrap_FXVec4d_hi), -1);
8582
- rb_define_method(cFXVec4d.klass, "to_a", VALUEFUNC(_wrap_FXVec4d_to_a), -1);
8583
- rb_define_method(cFXVec4d.klass, "to_s", VALUEFUNC(_wrap_FXVec4d_to_s), -1);
9083
+ rb_define_singleton_method(cFXVec4d.klass, "plane", VALUEFUNC(_wrap_FXVec4d_plane), -1);
9084
+ rb_define_singleton_method(cFXVec4d.klass, "distance", VALUEFUNC(_wrap_FXVec4d_distance), -1);
9085
+ rb_define_singleton_method(cFXVec4d.klass, "crosses", VALUEFUNC(_wrap_FXVec4d_crosses), -1);
8584
9086
  cFXVec4d.mark = 0;
8585
9087
  cFXVec4d.destroy = (void (*)(void *)) FXRbUnregisterRubyObj;
8586
9088
 
@@ -8592,7 +9094,12 @@ SWIGEXPORT(void) Init_fx3d(void) {
8592
9094
  rb_define_method(cFXQuatf.klass, "setAxisAngle", VALUEFUNC(_wrap_FXQuatf_setAxisAngle), -1);
8593
9095
  rb_define_method(cFXQuatf.klass, "getAxisAngle", VALUEFUNC(_wrap_FXQuatf_getAxisAngle), -1);
8594
9096
  rb_define_method(cFXQuatf.klass, "setRollPitchYaw", VALUEFUNC(_wrap_FXQuatf_setRollPitchYaw), -1);
9097
+ rb_define_method(cFXQuatf.klass, "setAxes", VALUEFUNC(_wrap_FXQuatf_setAxes), -1);
9098
+ rb_define_method(cFXQuatf.klass, "getXAxis", VALUEFUNC(_wrap_FXQuatf_getXAxis), -1);
9099
+ rb_define_method(cFXQuatf.klass, "getYAxis", VALUEFUNC(_wrap_FXQuatf_getYAxis), -1);
9100
+ rb_define_method(cFXQuatf.klass, "getZAxis", VALUEFUNC(_wrap_FXQuatf_getZAxis), -1);
8595
9101
  rb_define_method(cFXQuatf.klass, "getRollPitchYaw", VALUEFUNC(_wrap_FXQuatf_getRollPitchYaw), -1);
9102
+ rb_define_method(cFXQuatf.klass, "getAxes", VALUEFUNC(_wrap_FXQuatf_getAxes), -1);
8596
9103
  rb_define_method(cFXQuatf.klass, "exp", VALUEFUNC(_wrap_FXQuatf_exp), -1);
8597
9104
  rb_define_method(cFXQuatf.klass, "log", VALUEFUNC(_wrap_FXQuatf_log), -1);
8598
9105
  rb_define_method(cFXQuatf.klass, "invert", VALUEFUNC(_wrap_FXQuatf_invert), -1);
@@ -8601,6 +9108,7 @@ SWIGEXPORT(void) Init_fx3d(void) {
8601
9108
  rb_define_method(cFXQuatf.klass, "*", VALUEFUNC(_wrap_FXQuatf___mul__), -1);
8602
9109
  rb_define_singleton_method(cFXQuatf.klass, "arc", VALUEFUNC(_wrap_FXQuatf_arc), -1);
8603
9110
  rb_define_singleton_method(cFXQuatf.klass, "lerp", VALUEFUNC(_wrap_FXQuatf_lerp), -1);
9111
+ rb_define_method(cFXQuatf.klass, "toMatrix", VALUEFUNC(_wrap_FXQuatf_toMatrix), -1);
8604
9112
  cFXQuatf.mark = 0;
8605
9113
  cFXQuatf.destroy = (void (*)(void *)) FXRbUnregisterRubyObj;
8606
9114
 
@@ -8608,6 +9116,7 @@ SWIGEXPORT(void) Init_fx3d(void) {
8608
9116
  SWIG_TypeClientData(SWIGTYPE_p_FXQuatd, (void *) &cFXQuatd);
8609
9117
  rb_define_alloc_func(cFXQuatd.klass, _wrap_FXQuatd_allocate);
8610
9118
  rb_define_method(cFXQuatd.klass, "initialize", VALUEFUNC(_wrap_new_FXQuatd), -1);
9119
+ rb_define_singleton_method(cFXQuatd.klass, "fromMatrix", VALUEFUNC(_wrap_FXQuatd_fromMatrix), -1);
8611
9120
  rb_define_method(cFXQuatd.klass, "adjust", VALUEFUNC(_wrap_FXQuatd_adjust), -1);
8612
9121
  rb_define_method(cFXQuatd.klass, "setAxisAngle", VALUEFUNC(_wrap_FXQuatd_setAxisAngle), -1);
8613
9122
  rb_define_method(cFXQuatd.klass, "getAxisAngle", VALUEFUNC(_wrap_FXQuatd_getAxisAngle), -1);
@@ -8621,6 +9130,12 @@ SWIGEXPORT(void) Init_fx3d(void) {
8621
9130
  rb_define_method(cFXQuatd.klass, "*", VALUEFUNC(_wrap_FXQuatd___mul__), -1);
8622
9131
  rb_define_singleton_method(cFXQuatd.klass, "arc", VALUEFUNC(_wrap_FXQuatd_arc), -1);
8623
9132
  rb_define_singleton_method(cFXQuatd.klass, "lerp", VALUEFUNC(_wrap_FXQuatd_lerp), -1);
9133
+ rb_define_method(cFXQuatd.klass, "toMatrix", VALUEFUNC(_wrap_FXQuatd_toMatrix), -1);
9134
+ rb_define_method(cFXQuatd.klass, "setAxes", VALUEFUNC(_wrap_FXQuatd_setAxes), -1);
9135
+ rb_define_method(cFXQuatd.klass, "getAxes", VALUEFUNC(_wrap_FXQuatd_getAxes), -1);
9136
+ rb_define_method(cFXQuatd.klass, "getXAxis", VALUEFUNC(_wrap_FXQuatd_getXAxis), -1);
9137
+ rb_define_method(cFXQuatd.klass, "getYAxis", VALUEFUNC(_wrap_FXQuatd_getYAxis), -1);
9138
+ rb_define_method(cFXQuatd.klass, "getZAxis", VALUEFUNC(_wrap_FXQuatd_getZAxis), -1);
8624
9139
  cFXQuatd.mark = 0;
8625
9140
  cFXQuatd.destroy = (void (*)(void *)) FXRbUnregisterRubyObj;
8626
9141
 
@@ -8902,6 +9417,7 @@ SWIGEXPORT(void) Init_fx3d(void) {
8902
9417
  rb_define_method(cFXGLCanvas.klass, "canFocus", VALUEFUNC(_wrap_FXGLCanvas_canFocus), -1);
8903
9418
  rb_define_method(cFXGLCanvas.klass, "setFocus", VALUEFUNC(_wrap_FXGLCanvas_setFocus), -1);
8904
9419
  rb_define_method(cFXGLCanvas.klass, "killFocus", VALUEFUNC(_wrap_FXGLCanvas_killFocus), -1);
9420
+ rb_define_method(cFXGLCanvas.klass, "changeFocus", VALUEFUNC(_wrap_FXGLCanvas_changeFocus), -1);
8905
9421
  rb_define_method(cFXGLCanvas.klass, "setDefault", VALUEFUNC(_wrap_FXGLCanvas_setDefault), -1);
8906
9422
  rb_define_method(cFXGLCanvas.klass, "enable", VALUEFUNC(_wrap_FXGLCanvas_enable), -1);
8907
9423
  rb_define_method(cFXGLCanvas.klass, "disable", VALUEFUNC(_wrap_FXGLCanvas_disable), -1);
@@ -8918,6 +9434,8 @@ SWIGEXPORT(void) Init_fx3d(void) {
8918
9434
  rb_define_method(cFXGLCanvas.klass, "contains", VALUEFUNC(_wrap_FXGLCanvas_contains), -1);
8919
9435
  rb_define_method(cFXGLCanvas.klass, "doesSaveUnder", VALUEFUNC(_wrap_FXGLCanvas_doesSaveUnder), -1);
8920
9436
  rb_define_method(cFXGLCanvas.klass, "setBackColor", VALUEFUNC(_wrap_FXGLCanvas_setBackColor), -1);
9437
+ rb_define_method(cFXGLCanvas.klass, "setShape", VALUEFUNC(_wrap_FXGLCanvas_setShape), -1);
9438
+ rb_define_method(cFXGLCanvas.klass, "clearShape", VALUEFUNC(_wrap_FXGLCanvas_clearShape), -1);
8921
9439
  rb_define_method(cFXGLCanvas.klass, "makeCurrent", VALUEFUNC(_wrap_FXGLCanvas_makeCurrent), -1);
8922
9440
  rb_define_method(cFXGLCanvas.klass, "makeNonCurrent", VALUEFUNC(_wrap_FXGLCanvas_makeNonCurrent), -1);
8923
9441
  rb_define_method(cFXGLCanvas.klass, "isCurrent", VALUEFUNC(_wrap_FXGLCanvas_isCurrent), -1);
@@ -9145,7 +9663,6 @@ SWIGEXPORT(void) Init_fx3d(void) {
9145
9663
  rb_define_method(cFXGLViewer.klass, "worldPix", VALUEFUNC(_wrap_FXGLViewer_worldPix), -1);
9146
9664
  rb_define_method(cFXGLViewer.klass, "modelPix", VALUEFUNC(_wrap_FXGLViewer_modelPix), -1);
9147
9665
  rb_define_method(cFXGLViewer.klass, "lasso", VALUEFUNC(_wrap_FXGLViewer_lasso), -1);
9148
- rb_define_method(cFXGLViewer.klass, "setBounds", VALUEFUNC(_wrap_FXGLViewer_setBounds), -1);
9149
9666
  rb_define_method(cFXGLViewer.klass, "fitToBounds", VALUEFUNC(_wrap_FXGLViewer_fitToBounds), -1);
9150
9667
  rb_define_method(cFXGLViewer.klass, "getViewport", VALUEFUNC(_wrap_FXGLViewer_getViewport), -1);
9151
9668
  rb_define_method(cFXGLViewer.klass, "eyeToScreen", VALUEFUNC(_wrap_FXGLViewer_eyeToScreen), -1);
@@ -9213,6 +9730,7 @@ SWIGEXPORT(void) Init_fx3d(void) {
9213
9730
  rb_define_method(cFXGLViewer.klass, "canFocus", VALUEFUNC(_wrap_FXGLViewer_canFocus), -1);
9214
9731
  rb_define_method(cFXGLViewer.klass, "setFocus", VALUEFUNC(_wrap_FXGLViewer_setFocus), -1);
9215
9732
  rb_define_method(cFXGLViewer.klass, "killFocus", VALUEFUNC(_wrap_FXGLViewer_killFocus), -1);
9733
+ rb_define_method(cFXGLViewer.klass, "changeFocus", VALUEFUNC(_wrap_FXGLViewer_changeFocus), -1);
9216
9734
  rb_define_method(cFXGLViewer.klass, "setDefault", VALUEFUNC(_wrap_FXGLViewer_setDefault), -1);
9217
9735
  rb_define_method(cFXGLViewer.klass, "enable", VALUEFUNC(_wrap_FXGLViewer_enable), -1);
9218
9736
  rb_define_method(cFXGLViewer.klass, "disable", VALUEFUNC(_wrap_FXGLViewer_disable), -1);
@@ -9229,12 +9747,15 @@ SWIGEXPORT(void) Init_fx3d(void) {
9229
9747
  rb_define_method(cFXGLViewer.klass, "contains", VALUEFUNC(_wrap_FXGLViewer_contains), -1);
9230
9748
  rb_define_method(cFXGLViewer.klass, "doesSaveUnder", VALUEFUNC(_wrap_FXGLViewer_doesSaveUnder), -1);
9231
9749
  rb_define_method(cFXGLViewer.klass, "setBackColor", VALUEFUNC(_wrap_FXGLViewer_setBackColor), -1);
9750
+ rb_define_method(cFXGLViewer.klass, "setShape", VALUEFUNC(_wrap_FXGLViewer_setShape), -1);
9751
+ rb_define_method(cFXGLViewer.klass, "clearShape", VALUEFUNC(_wrap_FXGLViewer_clearShape), -1);
9232
9752
  rb_define_method(cFXGLViewer.klass, "makeCurrent", VALUEFUNC(_wrap_FXGLViewer_makeCurrent), -1);
9233
9753
  rb_define_method(cFXGLViewer.klass, "makeNonCurrent", VALUEFUNC(_wrap_FXGLViewer_makeNonCurrent), -1);
9234
9754
  rb_define_method(cFXGLViewer.klass, "isCurrent", VALUEFUNC(_wrap_FXGLViewer_isCurrent), -1);
9235
9755
  rb_define_method(cFXGLViewer.klass, "swapBuffers", VALUEFUNC(_wrap_FXGLViewer_swapBuffers), -1);
9236
9756
  rb_define_method(cFXGLViewer.klass, "select", VALUEFUNC(_wrap_FXGLViewer_select), -1);
9237
9757
  rb_define_method(cFXGLViewer.klass, "pick", VALUEFUNC(_wrap_FXGLViewer_pick), -1);
9758
+ rb_define_method(cFXGLViewer.klass, "setBounds", VALUEFUNC(_wrap_FXGLViewer_setBounds), -1);
9238
9759
  cFXGLViewer.mark = (void (*)(void *)) FXRbGLViewer::markfunc;
9239
9760
  cFXGLViewer.destroy = (void (*)(void *)) FXRbObject::freefunc;
9240
9761