fxruby 1.4.7 → 1.6.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 (527) hide show
  1. data/doc/apes02.html +6 -6
  2. data/doc/apes03.html +11 -11
  3. data/doc/book.html +1 -1
  4. data/doc/build.html +65 -67
  5. data/doc/ch03s02.html +7 -7
  6. data/doc/ch03s03.html +18 -18
  7. data/doc/ch03s04.html +11 -11
  8. data/doc/ch03s05.html +14 -14
  9. data/doc/ch04s02.html +14 -14
  10. data/doc/ch04s03.html +15 -15
  11. data/doc/ch04s04.html +28 -28
  12. data/doc/ch05s02.html +49 -49
  13. data/doc/ch05s03.html +8 -8
  14. data/doc/clipboardtut.html +45 -57
  15. data/doc/cvs.html +10 -10
  16. data/doc/differences.html +4 -4
  17. data/doc/dragdroptut.html +50 -50
  18. data/doc/events.html +11 -11
  19. data/doc/examples.html +48 -48
  20. data/doc/gems.html +38 -38
  21. data/doc/goals.html +4 -4
  22. data/doc/implementation.html +4 -4
  23. data/doc/infosources.html +9 -9
  24. data/doc/library.html +19 -19
  25. data/doc/opengl.html +31 -31
  26. data/doc/pt01.html +1 -1
  27. data/doc/pt02.html +1 -1
  28. data/doc/scintilla.html +15 -15
  29. data/doc/todo.html +6 -6
  30. data/doc/tutorial1.html +34 -34
  31. data/examples/babelfish.rb +1 -1
  32. data/examples/bounce.rb +1 -1
  33. data/examples/browser.rb +2 -2
  34. data/examples/button.rb +1 -1
  35. data/examples/datatarget.rb +2 -2
  36. data/examples/dctest.rb +12 -12
  37. data/examples/dialog.rb +1 -1
  38. data/examples/dilbert.rb +2 -2
  39. data/examples/dirlist.rb +1 -1
  40. data/examples/dragdrop.rb +1 -1
  41. data/examples/dragsource.rb +1 -1
  42. data/examples/dropsite.rb +1 -1
  43. data/examples/foursplit.rb +1 -1
  44. data/examples/gltest.rb +2 -2
  45. data/examples/glviewer.rb +4 -4
  46. data/examples/groupbox.rb +22 -22
  47. data/examples/header.rb +1 -1
  48. data/examples/hello.rb +1 -1
  49. data/examples/hello2.rb +1 -1
  50. data/examples/iconlist.rb +1 -1
  51. data/examples/image.rb +2 -2
  52. data/examples/imageviewer.rb +1 -1
  53. data/examples/inputs.rb +1 -1
  54. data/examples/mditest.rb +2 -2
  55. data/examples/pig.rb +1 -1
  56. data/examples/raabrowser.rb +2 -2
  57. data/examples/ratio.rb +2 -2
  58. data/examples/scintilla-test.rb +2 -2
  59. data/examples/scribble-orig.rb +3 -3
  60. data/examples/scribble.rb +1 -1
  61. data/examples/shutter.rb +1 -1
  62. data/examples/splitter.rb +36 -36
  63. data/examples/styledtext.rb +2 -2
  64. data/examples/tabbook.rb +1 -1
  65. data/examples/table.rb +1 -1
  66. data/examples/textedit/commands.rb +2 -2
  67. data/examples/textedit/helpwindow.rb +1 -1
  68. data/examples/textedit/prefdialog.rb +1 -1
  69. data/examples/textedit/textedit.rb +5 -3
  70. data/ext/{fox14 → fox16}/FXRbApp.cpp +1 -1
  71. data/ext/{fox14 → fox16}/FXRbDataTarget.cpp +1 -1
  72. data/ext/{fox14 → fox16}/FXRbGLViewer.cpp +1 -1
  73. data/ext/{fox14 → fox16}/FXRuby.cpp +137 -39
  74. data/ext/{fox14 → fox16}/MANIFEST +0 -0
  75. data/ext/{fox14 → fox16}/core_wrap.cpp +1177 -659
  76. data/ext/{fox14 → fox16}/dc_wrap.cpp +110 -3
  77. data/ext/{fox14 → fox16}/dialogs_wrap.cpp +381 -153
  78. data/ext/{fox14 → fox16}/extconf.rb +8 -8
  79. data/ext/{fox14 → fox16}/frames_wrap.cpp +1590 -1219
  80. data/ext/{fox14 → fox16}/fx3d_wrap.cpp +1060 -403
  81. data/ext/{fox14 → fox16}/iconlist_wrap.cpp +80 -25
  82. data/ext/{fox14 → fox16}/icons_wrap.cpp +296 -316
  83. data/ext/{fox14 → fox16}/image_wrap.cpp +267 -153
  84. data/ext/{fox14 → fox16}/impl.cpp +29 -0
  85. data/ext/{fox14 → fox16}/include/FXMemoryBuffer.h +1 -1
  86. data/ext/{fox14 → fox16}/include/FXRb4Splitter.h +1 -1
  87. data/ext/{fox14 → fox16}/include/FXRb7Segment.h +1 -1
  88. data/ext/{fox14 → fox16}/include/FXRbAccelTable.h +1 -1
  89. data/ext/{fox14 → fox16}/include/FXRbApp.h +3 -3
  90. data/ext/{fox14 → fox16}/include/FXRbAppVirtuals.h +1 -1
  91. data/ext/{fox14 → fox16}/include/FXRbArrowButton.h +1 -1
  92. data/ext/{fox14 → fox16}/include/FXRbBMPIcon.h +1 -1
  93. data/ext/{fox14 → fox16}/include/FXRbBMPImage.h +1 -1
  94. data/ext/{fox14 → fox16}/include/FXRbBitmap.h +23 -5
  95. data/ext/{fox14 → fox16}/include/FXRbBitmapFrame.h +1 -1
  96. data/ext/{fox14 → fox16}/include/FXRbBitmapView.h +1 -1
  97. data/ext/{fox14 → fox16}/include/FXRbBitmapVirtuals.h +12 -2
  98. data/ext/{fox14 → fox16}/include/FXRbButton.h +1 -1
  99. data/ext/{fox14 → fox16}/include/FXRbCURCursor.h +1 -1
  100. data/ext/{fox14 → fox16}/include/FXRbCanvas.h +1 -1
  101. data/ext/{fox14 → fox16}/include/FXRbCheckButton.h +1 -1
  102. data/ext/{fox14 → fox16}/include/FXRbChoiceBox.h +1 -1
  103. data/ext/{fox14 → fox16}/include/FXRbColorBar.h +1 -1
  104. data/ext/{fox14 → fox16}/include/FXRbColorDialog.h +1 -1
  105. data/ext/fox16/include/FXRbColorList.h +84 -0
  106. data/ext/fox16/include/FXRbColorRing.h +51 -0
  107. data/ext/{fox14 → fox16}/include/FXRbColorSelector.h +1 -1
  108. data/ext/{fox14 → fox16}/include/FXRbColorWell.h +1 -1
  109. data/ext/{fox14 → fox16}/include/FXRbColorWheel.h +1 -1
  110. data/ext/{fox14 → fox16}/include/FXRbComboBox.h +1 -1
  111. data/ext/{fox14 → fox16}/include/FXRbCommon.h +4 -1
  112. data/ext/{fox14 → fox16}/include/FXRbComposite.h +1 -1
  113. data/ext/{fox14 → fox16}/include/FXRbCursor.h +5 -5
  114. data/ext/{fox14 → fox16}/include/FXRbCursorVirtuals.h +2 -2
  115. data/ext/{fox14 → fox16}/include/FXRbDC.h +18 -0
  116. data/ext/{fox14 → fox16}/include/FXRbDCPrint.h +0 -0
  117. data/ext/{fox14 → fox16}/include/FXRbDCVirtuals.h +9 -0
  118. data/ext/{fox14 → fox16}/include/FXRbDCWindow.h +0 -0
  119. data/ext/{fox14 → fox16}/include/FXRbDataTarget.h +1 -1
  120. data/ext/{fox14 → fox16}/include/FXRbDebugTarget.h +1 -1
  121. data/ext/{fox14 → fox16}/include/FXRbDelegator.h +1 -1
  122. data/ext/{fox14 → fox16}/include/FXRbDial.h +1 -1
  123. data/ext/{fox14 → fox16}/include/FXRbDialogBox.h +1 -1
  124. data/ext/{fox14 → fox16}/include/FXRbDialogBoxVirtuals.h +0 -0
  125. data/ext/{fox14 → fox16}/include/FXRbDict.h +1 -1
  126. data/ext/{fox14 → fox16}/include/FXRbDirBox.h +1 -1
  127. data/ext/{fox14 → fox16}/include/FXRbDirDialog.h +1 -1
  128. data/ext/{fox14 → fox16}/include/FXRbDirList.h +1 -1
  129. data/ext/{fox14 → fox16}/include/FXRbDirSelector.h +1 -1
  130. data/ext/{fox14 → fox16}/include/FXRbDockBar.h +13 -13
  131. data/ext/{fox14 → fox16}/include/FXRbDockBarVirtuals.h +3 -3
  132. data/ext/{fox14 → fox16}/include/FXRbDockHandler.h +1 -1
  133. data/ext/{fox14 → fox16}/include/FXRbDockSite.h +1 -1
  134. data/ext/{fox14 → fox16}/include/FXRbDockSiteVirtuals.h +0 -0
  135. data/ext/{fox14 → fox16}/include/FXRbDockTitle.h +1 -1
  136. data/ext/{fox14 → fox16}/include/FXRbDocument.h +1 -1
  137. data/ext/{fox14 → fox16}/include/FXRbDragCorner.h +1 -1
  138. data/ext/{fox14 → fox16}/include/FXRbDrawable.h +1 -1
  139. data/ext/{fox14 → fox16}/include/FXRbDrawableVirtuals.h +0 -0
  140. data/ext/{fox14 → fox16}/include/FXRbDriveBox.h +1 -1
  141. data/ext/{fox14 → fox16}/include/FXRbFileDialog.h +1 -1
  142. data/ext/{fox14 → fox16}/include/FXRbFileDict.h +1 -1
  143. data/ext/{fox14 → fox16}/include/FXRbFileDictVirtuals.h +0 -0
  144. data/ext/{fox14 → fox16}/include/FXRbFileList.h +1 -1
  145. data/ext/{fox14 → fox16}/include/FXRbFileSelector.h +1 -1
  146. data/ext/{fox14 → fox16}/include/FXRbFoldingItemVirtuals.h +0 -0
  147. data/ext/{fox14 → fox16}/include/FXRbFoldingList.h +1 -1
  148. data/ext/{fox14 → fox16}/include/FXRbFoldingListVirtuals.h +0 -0
  149. data/ext/fox16/include/FXRbFont.h +183 -0
  150. data/ext/{fox14 → fox16}/include/FXRbFontDialog.h +1 -1
  151. data/ext/{fox14 → fox16}/include/FXRbFontSelector.h +1 -1
  152. data/ext/fox16/include/FXRbFontVirtuals.h +55 -0
  153. data/ext/{fox14 → fox16}/include/FXRbFrame.h +1 -1
  154. data/ext/{fox14 → fox16}/include/FXRbGIFCursor.h +1 -1
  155. data/ext/{fox14 → fox16}/include/FXRbGIFIcon.h +1 -1
  156. data/ext/{fox14 → fox16}/include/FXRbGIFImage.h +1 -1
  157. data/ext/{fox14 → fox16}/include/FXRbGLCanvas.h +1 -1
  158. data/ext/{fox14 → fox16}/include/FXRbGLCanvasVirtuals.h +0 -0
  159. data/ext/{fox14 → fox16}/include/FXRbGLContext.h +1 -1
  160. data/ext/{fox14 → fox16}/include/FXRbGLObject.h +1 -1
  161. data/ext/{fox14 → fox16}/include/FXRbGLObjectVirtuals.h +0 -0
  162. data/ext/{fox14 → fox16}/include/FXRbGLShape.h +1 -1
  163. data/ext/{fox14 → fox16}/include/FXRbGLShapeVirtuals.h +0 -0
  164. data/ext/{fox14 → fox16}/include/FXRbGLViewer.h +1 -1
  165. data/ext/{fox14 → fox16}/include/FXRbGLViewerVirtuals.h +0 -0
  166. data/ext/{fox14 → fox16}/include/FXRbGLVisual.h +1 -1
  167. data/ext/{fox14 → fox16}/include/FXRbGradientBar.h +1 -1
  168. data/ext/{fox14 → fox16}/include/FXRbGroupBox.h +1 -1
  169. data/ext/{fox14 → fox16}/include/FXRbHeader.h +1 -1
  170. data/ext/{fox14 → fox16}/include/FXRbHeaderItemVirtuals.h +0 -0
  171. data/ext/{fox14 → fox16}/include/FXRbHorizontalFrame.h +1 -1
  172. data/ext/{fox14 → fox16}/include/FXRbICOIcon.h +1 -1
  173. data/ext/{fox14 → fox16}/include/FXRbICOImage.h +1 -1
  174. data/ext/{fox14 → fox16}/include/FXRbIcon.h +1 -1
  175. data/ext/{fox14 → fox16}/include/FXRbIconItemVirtuals.h +0 -0
  176. data/ext/{fox14 → fox16}/include/FXRbIconList.h +1 -1
  177. data/ext/{fox14 → fox16}/include/FXRbIconListVirtuals.h +0 -0
  178. data/ext/fox16/include/FXRbIconSource.h +127 -0
  179. data/ext/fox16/include/FXRbIconSourceVirtuals.h +37 -0
  180. data/ext/{fox14 → fox16}/include/FXRbId.h +1 -1
  181. data/ext/{fox14 → fox16}/include/FXRbIdVirtuals.h +0 -0
  182. data/ext/{fox14 → fox16}/include/FXRbImage.h +7 -7
  183. data/ext/{fox14 → fox16}/include/FXRbImageFrame.h +1 -1
  184. data/ext/{fox14 → fox16}/include/FXRbImageView.h +1 -1
  185. data/ext/{fox14 → fox16}/include/FXRbImageVirtuals.h +3 -3
  186. data/ext/{fox14 → fox16}/include/FXRbInputDialog.h +1 -1
  187. data/ext/{fox14 → fox16}/include/FXRbJPGIcon.h +2 -2
  188. data/ext/{fox14 → fox16}/include/FXRbJPGImage.h +2 -2
  189. data/ext/fox16/include/FXRbKnob.h +51 -0
  190. data/ext/{fox14 → fox16}/include/FXRbLabel.h +1 -1
  191. data/ext/{fox14 → fox16}/include/FXRbList.h +1 -1
  192. data/ext/{fox14 → fox16}/include/FXRbListBox.h +5 -5
  193. data/ext/{fox14 → fox16}/include/FXRbListBoxVirtuals.h +1 -1
  194. data/ext/{fox14 → fox16}/include/FXRbListItemVirtuals.h +0 -0
  195. data/ext/{fox14 → fox16}/include/FXRbListVirtuals.h +0 -0
  196. data/ext/{fox14 → fox16}/include/FXRbMDIButton.h +1 -1
  197. data/ext/{fox14 → fox16}/include/FXRbMDIChild.h +1 -1
  198. data/ext/{fox14 → fox16}/include/FXRbMDIChildVirtuals.h +0 -0
  199. data/ext/{fox14 → fox16}/include/FXRbMDIClient.h +1 -1
  200. data/ext/{fox14 → fox16}/include/FXRbMDIClientVirtuals.h +0 -0
  201. data/ext/{fox14 → fox16}/include/FXRbMainWindow.h +1 -1
  202. data/ext/{fox14 → fox16}/include/FXRbMatrix.h +1 -1
  203. data/ext/{fox14 → fox16}/include/FXRbMenuBar.h +1 -1
  204. data/ext/{fox14 → fox16}/include/FXRbMenuButton.h +1 -1
  205. data/ext/{fox14 → fox16}/include/FXRbMenuCaption.h +1 -1
  206. data/ext/{fox14 → fox16}/include/FXRbMenuCascade.h +1 -1
  207. data/ext/{fox14 → fox16}/include/FXRbMenuCheck.h +1 -1
  208. data/ext/{fox14 → fox16}/include/FXRbMenuCommand.h +1 -1
  209. data/ext/{fox14 → fox16}/include/FXRbMenuPane.h +1 -1
  210. data/ext/{fox14 → fox16}/include/FXRbMenuRadio.h +1 -1
  211. data/ext/{fox14 → fox16}/include/FXRbMenuSeparator.h +1 -1
  212. data/ext/{fox14 → fox16}/include/FXRbMenuTitle.h +1 -1
  213. data/ext/{fox14 → fox16}/include/FXRbMessageBox.h +1 -1
  214. data/ext/{fox14 → fox16}/include/FXRbObject.h +1 -1
  215. data/ext/{fox14 → fox16}/include/FXRbObjectVirtuals.h +0 -0
  216. data/ext/{fox14 → fox16}/include/FXRbOptionMenu.h +1 -1
  217. data/ext/{fox14 → fox16}/include/FXRbPCXIcon.h +1 -1
  218. data/ext/{fox14 → fox16}/include/FXRbPCXImage.h +1 -1
  219. data/ext/{fox14 → fox16}/include/FXRbPNGIcon.h +1 -1
  220. data/ext/{fox14 → fox16}/include/FXRbPNGImage.h +1 -1
  221. data/ext/{fox14 → fox16}/include/FXRbPPMIcon.h +1 -1
  222. data/ext/{fox14 → fox16}/include/FXRbPPMImage.h +1 -1
  223. data/ext/{fox14 → fox16}/include/FXRbPacker.h +1 -1
  224. data/ext/{fox14 → fox16}/include/FXRbPicker.h +1 -1
  225. data/ext/{fox14 → fox16}/include/FXRbPopup.h +1 -1
  226. data/ext/{fox14 → fox16}/include/FXRbPopupVirtuals.h +0 -0
  227. data/ext/{fox14 → fox16}/include/FXRbPrintDialog.h +1 -1
  228. data/ext/{fox14 → fox16}/include/FXRbProgressBar.h +1 -1
  229. data/ext/{fox14 → fox16}/include/FXRbProgressDialog.h +1 -1
  230. data/ext/{fox14 → fox16}/include/FXRbRGBIcon.h +1 -1
  231. data/ext/{fox14 → fox16}/include/FXRbRGBImage.h +1 -1
  232. data/ext/{fox14 → fox16}/include/FXRbRadioButton.h +1 -1
  233. data/ext/{fox14 → fox16}/include/FXRbRealSlider.h +1 -1
  234. data/ext/{fox14 → fox16}/include/FXRbRealSpinner.h +5 -5
  235. data/ext/fox16/include/FXRbRealSpinnerVirtuals.h +3 -0
  236. data/ext/{fox14 → fox16}/include/FXRbRecentFiles.h +6 -3
  237. data/ext/{fox14 → fox16}/include/FXRbRegistry.h +1 -1
  238. data/ext/{fox14 → fox16}/include/FXRbReplaceDialog.h +1 -1
  239. data/ext/{fox14 → fox16}/include/FXRbRootWindow.h +1 -1
  240. data/ext/{fox14 → fox16}/include/FXRbRuler.h +1 -1
  241. data/ext/{fox14 → fox16}/include/FXRbScintilla.h +1 -1
  242. data/ext/{fox14 → fox16}/include/FXRbScrollArea.h +1 -1
  243. data/ext/{fox14 → fox16}/include/FXRbScrollAreaVirtuals.h +0 -0
  244. data/ext/{fox14 → fox16}/include/FXRbScrollBar.h +1 -1
  245. data/ext/{fox14 → fox16}/include/FXRbScrollPane.h +1 -1
  246. data/ext/{fox14 → fox16}/include/FXRbScrollWindow.h +1 -1
  247. data/ext/{fox14 → fox16}/include/FXRbSearchDialog.h +1 -1
  248. data/ext/{fox14 → fox16}/include/FXRbSeparator.h +1 -1
  249. data/ext/{fox14 → fox16}/include/FXRbSettings.h +1 -1
  250. data/ext/{fox14 → fox16}/include/FXRbShell.h +1 -1
  251. data/ext/{fox14 → fox16}/include/FXRbShutter.h +1 -1
  252. data/ext/{fox14 → fox16}/include/FXRbShutterVirtuals.h +0 -0
  253. data/ext/{fox14 → fox16}/include/FXRbSlider.h +1 -1
  254. data/ext/{fox14 → fox16}/include/FXRbSpinner.h +5 -5
  255. data/ext/{fox14 → fox16}/include/FXRbSpinnerVirtuals.h +1 -1
  256. data/ext/{fox14 → fox16}/include/FXRbSplashWindow.h +1 -1
  257. data/ext/{fox14 → fox16}/include/FXRbSplitter.h +1 -1
  258. data/ext/{fox14 → fox16}/include/FXRbSpring.h +1 -1
  259. data/ext/{fox14 → fox16}/include/FXRbStatusBar.h +1 -1
  260. data/ext/{fox14 → fox16}/include/FXRbStatusLine.h +1 -1
  261. data/ext/{fox14 → fox16}/include/FXRbStream.h +7 -7
  262. data/ext/{fox14 → fox16}/include/FXRbStreamVirtuals.h +3 -3
  263. data/ext/{fox14 → fox16}/include/FXRbStringDict.h +1 -1
  264. data/ext/{fox14 → fox16}/include/FXRbSwitcher.h +1 -1
  265. data/ext/{fox14 → fox16}/include/FXRbTGAIcon.h +1 -1
  266. data/ext/{fox14 → fox16}/include/FXRbTGAImage.h +1 -1
  267. data/ext/{fox14 → fox16}/include/FXRbTIFIcon.h +1 -1
  268. data/ext/{fox14 → fox16}/include/FXRbTIFImage.h +1 -1
  269. data/ext/{fox14 → fox16}/include/FXRbTabBar.h +1 -1
  270. data/ext/{fox14 → fox16}/include/FXRbTabBarVirtuals.h +0 -0
  271. data/ext/{fox14 → fox16}/include/FXRbTabBook.h +1 -1
  272. data/ext/{fox14 → fox16}/include/FXRbTabItem.h +1 -1
  273. data/ext/{fox14 → fox16}/include/FXRbTable.h +9 -3
  274. data/ext/{fox14 → fox16}/include/FXRbTableItemVirtuals.h +0 -0
  275. data/ext/{fox14 → fox16}/include/FXRbTableVirtuals.h +3 -0
  276. data/ext/fox16/include/FXRbText.h +187 -0
  277. data/ext/{fox14 → fox16}/include/FXRbTextField.h +1 -1
  278. data/ext/fox16/include/FXRbTextVirtuals.h +52 -0
  279. data/ext/{fox14 → fox16}/include/FXRbToggleButton.h +1 -1
  280. data/ext/{fox14 → fox16}/include/FXRbToolBar.h +1 -1
  281. data/ext/{fox14 → fox16}/include/FXRbToolBarGrip.h +1 -1
  282. data/ext/{fox14 → fox16}/include/FXRbToolBarShell.h +1 -1
  283. data/ext/{fox14 → fox16}/include/FXRbToolBarTab.h +1 -1
  284. data/ext/{fox14 → fox16}/include/FXRbToolTip.h +1 -1
  285. data/ext/{fox14 → fox16}/include/FXRbTopWindow.h +1 -1
  286. data/ext/{fox14 → fox16}/include/FXRbTopWindowVirtuals.h +0 -0
  287. data/ext/fox16/include/FXRbTranslator.h +61 -0
  288. data/ext/fox16/include/FXRbTranslatorVirtuals.h +4 -0
  289. data/ext/{fox14 → fox16}/include/FXRbTreeItemVirtuals.h +0 -0
  290. data/ext/{fox14 → fox16}/include/FXRbTreeList.h +1 -1
  291. data/ext/{fox14 → fox16}/include/FXRbTreeListBox.h +1 -1
  292. data/ext/{fox14 → fox16}/include/FXRbTreeListBoxVirtuals.h +0 -0
  293. data/ext/{fox14 → fox16}/include/FXRbTreeListVirtuals.h +0 -0
  294. data/ext/{fox14 → fox16}/include/FXRbTriStateButton.h +1 -1
  295. data/ext/{fox14 → fox16}/include/FXRbVerticalFrame.h +1 -1
  296. data/ext/{fox14 → fox16}/include/FXRbVisual.h +1 -1
  297. data/ext/{fox14 → fox16}/include/FXRbWindow.h +27 -9
  298. data/ext/{fox14 → fox16}/include/FXRbWindowVirtuals.h +13 -4
  299. data/ext/{fox14 → fox16}/include/FXRbWizard.h +1 -1
  300. data/ext/{fox14 → fox16}/include/FXRbXBMIcon.h +1 -1
  301. data/ext/{fox14 → fox16}/include/FXRbXBMImage.h +1 -1
  302. data/ext/{fox14 → fox16}/include/FXRbXPMIcon.h +1 -1
  303. data/ext/{fox14 → fox16}/include/FXRbXPMImage.h +1 -1
  304. data/ext/{fox14 → fox16}/include/FXRuby.h +43 -18
  305. data/ext/{fox14 → fox16}/include/impl.h +5 -0
  306. data/ext/{fox14 → fox16}/include/inlinestubs.h +29 -0
  307. data/ext/{fox14 → fox16}/label_wrap.cpp +319 -122
  308. data/ext/{fox14 → fox16}/layout_wrap.cpp +443 -153
  309. data/ext/{fox14 → fox16}/librb.c +0 -0
  310. data/ext/{fox14 → fox16}/list_wrap.cpp +660 -44
  311. data/ext/{fox14 → fox16}/markfuncs.cpp +38 -8
  312. data/ext/{fox14 → fox16}/mdi_wrap.cpp +253 -109
  313. data/ext/{fox14 → fox16}/menu_wrap.cpp +342 -146
  314. data/ext/{fox14 → fox16}/scintilla_wrap.cpp +58 -39
  315. data/ext/{fox14 → fox16}/table_wrap.cpp +294 -82
  316. data/ext/{fox14 → fox16}/text_wrap.cpp +203 -193
  317. data/ext/{fox14 → fox16}/treelist_wrap.cpp +125 -60
  318. data/ext/{fox14 → fox16}/ui_wrap.cpp +993 -714
  319. data/ext/{fox14 → fox16}/unregisterOwnedObjects.cpp +6 -1
  320. data/lib/{fox14 → fox16}/aliases.rb +119 -46
  321. data/lib/{fox14 → fox16}/calendar.rb +2 -2
  322. data/lib/{fox14 → fox16}/chore.rb +6 -22
  323. data/lib/{fox14 → fox16}/colors.rb +1 -1
  324. data/lib/{fox14 → fox16}/core.rb +122 -4
  325. data/lib/{fox14 → fox16}/dict.rb +0 -0
  326. data/lib/{fox14 → fox16}/execute_nonmodal.rb +0 -0
  327. data/lib/{fox14 → fox16}/glgroup.rb +4 -2
  328. data/lib/{fox14 → fox16}/glshapes.rb +1 -1
  329. data/lib/{fox14 → fox16}/input.rb +1 -1
  330. data/lib/{fox14 → fox16}/irb.rb +1 -1
  331. data/lib/{fox14 → fox16}/iterators.rb +1 -1
  332. data/lib/{fox14 → fox16}/keys.rb +2 -2
  333. data/lib/{fox14 → fox16}/missingdep.rb +1 -1
  334. data/lib/{fox14 → fox16}/pseudokeyboard.rb +1 -1
  335. data/lib/{fox14 → fox16}/pseudomouse.rb +1 -1
  336. data/lib/{fox14 → fox16}/responder.rb +1 -1
  337. data/lib/{fox14 → fox16}/responder2.rb +5 -5
  338. data/lib/{fox14 → fox16}/scintilla.rb +249 -12
  339. data/lib/{fox14 → fox16}/settings.rb +0 -0
  340. data/lib/{fox14 → fox16}/signal.rb +1 -1
  341. data/lib/{fox14 → fox16}/splashscreen.rb +2 -2
  342. data/lib/{fox14 → fox16}/timeout.rb +10 -37
  343. data/lib/{fox14 → fox16}/undolist.rb +2 -2
  344. data/lib/{fox14 → fox16}/version.rb +2 -2
  345. data/rdoc-sources/FX4Splitter.rb +24 -6
  346. data/rdoc-sources/FX7Segment.rb +6 -0
  347. data/rdoc-sources/FXAccelTable.rb +35 -0
  348. data/rdoc-sources/FXApp.rb +113 -1
  349. data/rdoc-sources/FXBMPIcon.rb +5 -0
  350. data/rdoc-sources/FXBMPImage.rb +5 -0
  351. data/rdoc-sources/FXBitmap.rb +23 -1
  352. data/rdoc-sources/FXCheckButton.rb +7 -0
  353. data/rdoc-sources/FXColorList.rb +55 -0
  354. data/rdoc-sources/FXColorRing.rb +49 -0
  355. data/rdoc-sources/FXColorWheel.rb +22 -2
  356. data/rdoc-sources/FXComboBox.rb +10 -0
  357. data/rdoc-sources/FXDC.rb +18 -0
  358. data/rdoc-sources/FXDial.rb +34 -1
  359. data/rdoc-sources/FXDirList.rb +1 -0
  360. data/rdoc-sources/FXDockBar.rb +21 -6
  361. data/rdoc-sources/FXDockHandler.rb +7 -0
  362. data/rdoc-sources/FXDockSite.rb +18 -0
  363. data/rdoc-sources/FXExtentd.rb +85 -0
  364. data/rdoc-sources/FXExtentf.rb +85 -0
  365. data/rdoc-sources/FXFileDialog.rb +11 -0
  366. data/rdoc-sources/FXFileDict.rb +7 -7
  367. data/rdoc-sources/FXFileList.rb +22 -0
  368. data/rdoc-sources/FXFileSelector.rb +10 -0
  369. data/rdoc-sources/FXFoldingList.rb +13 -2
  370. data/rdoc-sources/FXFont.rb +68 -62
  371. data/rdoc-sources/FXGIFIcon.rb +5 -0
  372. data/rdoc-sources/FXGIFImage.rb +5 -0
  373. data/rdoc-sources/FXGLViewer.rb +23 -0
  374. data/rdoc-sources/FXGradientBar.rb +10 -0
  375. data/rdoc-sources/FXHeader.rb +11 -0
  376. data/rdoc-sources/FXICOIcon.rb +5 -0
  377. data/rdoc-sources/FXICOImage.rb +5 -0
  378. data/rdoc-sources/FXIconList.rb +8 -0
  379. data/rdoc-sources/FXIconSource.rb +12 -12
  380. data/rdoc-sources/FXImage.rb +0 -4
  381. data/rdoc-sources/FXInputDialog.rb +19 -6
  382. data/rdoc-sources/FXJPGIcon.rb +5 -0
  383. data/rdoc-sources/FXJPGImage.rb +5 -0
  384. data/rdoc-sources/FXKnob.rb +76 -0
  385. data/rdoc-sources/FXList.rb +8 -0
  386. data/rdoc-sources/FXListBox.rb +7 -1
  387. data/rdoc-sources/FXMenuCaption.rb +3 -0
  388. data/rdoc-sources/FXMenuCheck.rb +2 -2
  389. data/rdoc-sources/FXMenuCommand.rb +1 -2
  390. data/rdoc-sources/FXMenuRadio.rb +5 -2
  391. data/rdoc-sources/FXOptionMenu.rb +7 -0
  392. data/rdoc-sources/FXPCXIcon.rb +5 -0
  393. data/rdoc-sources/FXPCXImage.rb +5 -0
  394. data/rdoc-sources/FXPNGIcon.rb +5 -0
  395. data/rdoc-sources/FXPNGImage.rb +5 -0
  396. data/rdoc-sources/FXPPMIcon.rb +5 -0
  397. data/rdoc-sources/FXPPMImage.rb +5 -0
  398. data/rdoc-sources/FXQuatd.rb +5 -12
  399. data/rdoc-sources/FXQuatf.rb +5 -7
  400. data/rdoc-sources/FXRGBIcon.rb +5 -0
  401. data/rdoc-sources/FXRGBImage.rb +5 -0
  402. data/rdoc-sources/FXRadioButton.rb +6 -0
  403. data/rdoc-sources/FXRanged.rb +3 -0
  404. data/rdoc-sources/FXRangef.rb +3 -0
  405. data/rdoc-sources/FXRealSlider.rb +3 -1
  406. data/rdoc-sources/FXRealSpinner.rb +11 -4
  407. data/rdoc-sources/FXRecentFiles.rb +10 -6
  408. data/rdoc-sources/FXRectangle.rb +12 -0
  409. data/rdoc-sources/FXRuler.rb +28 -0
  410. data/rdoc-sources/FXScrollBar.rb +9 -3
  411. data/rdoc-sources/FXScrollPane.rb +3 -0
  412. data/rdoc-sources/FXSettings.rb +26 -0
  413. data/rdoc-sources/FXSize.rb +65 -0
  414. data/rdoc-sources/FXSlider.rb +2 -0
  415. data/rdoc-sources/FXSphered.rb +12 -0
  416. data/rdoc-sources/FXSpheref.rb +12 -0
  417. data/rdoc-sources/FXSpinner.rb +8 -4
  418. data/rdoc-sources/FXTGAIcon.rb +5 -0
  419. data/rdoc-sources/FXTGAImage.rb +5 -0
  420. data/rdoc-sources/FXTIFIcon.rb +5 -0
  421. data/rdoc-sources/FXTIFImage.rb +5 -0
  422. data/rdoc-sources/FXTabBar.rb +5 -1
  423. data/rdoc-sources/FXTabBook.rb +3 -0
  424. data/rdoc-sources/FXTabItem.rb +7 -0
  425. data/rdoc-sources/FXTable.rb +96 -18
  426. data/rdoc-sources/FXText.rb +47 -12
  427. data/rdoc-sources/FXTextField.rb +6 -0
  428. data/rdoc-sources/FXToggleButton.rb +0 -1
  429. data/rdoc-sources/FXTopWindow.rb +44 -2
  430. data/rdoc-sources/FXTranslator.rb +32 -0
  431. data/rdoc-sources/FXTreeList.rb +8 -0
  432. data/rdoc-sources/FXTreeListBox.rb +20 -0
  433. data/rdoc-sources/{FXVec.rb → FXVec2d.rb} +28 -29
  434. data/rdoc-sources/FXVec2f.rb +96 -0
  435. data/rdoc-sources/FXVec3d.rb +113 -0
  436. data/rdoc-sources/FXVec3f.rb +113 -0
  437. data/rdoc-sources/FXVec4d.rb +129 -0
  438. data/rdoc-sources/FXVec4f.rb +129 -0
  439. data/rdoc-sources/FXWindow.rb +89 -14
  440. data/rdoc-sources/FXXBMIcon.rb +5 -0
  441. data/rdoc-sources/FXXBMImage.rb +5 -0
  442. data/rdoc-sources/FXXPMIcon.rb +5 -0
  443. data/rdoc-sources/FXXPMImage.rb +5 -0
  444. data/rdoc-sources/README.rdoc +1 -1
  445. data/tests/TC_FXAccelTable.rb +1 -1
  446. data/tests/TC_FXApp.rb +1 -1
  447. data/tests/TC_FXArc.rb +1 -1
  448. data/tests/TC_FXBMPIcon.rb +1 -1
  449. data/tests/TC_FXBMPImage.rb +1 -1
  450. data/tests/TC_FXButton.rb +1 -1
  451. data/tests/TC_FXCheckButton.rb +1 -1
  452. data/tests/TC_FXComboBox.rb +2 -1
  453. data/tests/TC_FXDC.rb +1 -1
  454. data/tests/TC_FXDCPrint.rb +1 -1
  455. data/tests/TC_FXDCWindow.rb +1 -1
  456. data/tests/TC_FXDataTarget.rb +1 -1
  457. data/tests/TC_FXDirList.rb +2 -2
  458. data/tests/TC_FXFileAssoc.rb +1 -1
  459. data/tests/TC_FXFileStream.rb +1 -1
  460. data/tests/TC_FXFont.rb +2 -2
  461. data/tests/TC_FXFontDesc.rb +15 -19
  462. data/tests/TC_FXGLGroup.rb +1 -1
  463. data/tests/TC_FXGLShape.rb +1 -1
  464. data/tests/TC_FXGLViewer.rb +1 -3
  465. data/tests/TC_FXGradientBar.rb +1 -1
  466. data/tests/TC_FXHeader.rb +2 -2
  467. data/tests/TC_FXIconDict.rb +1 -1
  468. data/tests/TC_FXIconList.rb +2 -2
  469. data/tests/TC_FXId.rb +2 -2
  470. data/tests/TC_FXImage.rb +1 -1
  471. data/tests/TC_FXLight.rb +1 -1
  472. data/tests/TC_FXList.rb +2 -12
  473. data/tests/TC_FXListBox.rb +2 -2
  474. data/tests/TC_FXMat4f.rb +1 -1
  475. data/tests/TC_FXMaterial.rb +2 -2
  476. data/tests/TC_FXMemoryStream.rb +1 -1
  477. data/tests/TC_FXMenuCheck.rb +1 -1
  478. data/tests/TC_FXMenuCommand.rb +15 -1
  479. data/tests/TC_FXMenuRadio.rb +1 -1
  480. data/tests/TC_FXPoint.rb +1 -1
  481. data/tests/TC_FXQuatf.rb +1 -1
  482. data/tests/TC_FXRadioButton.rb +1 -1
  483. data/tests/TC_FXRangef.rb +1 -1
  484. data/tests/TC_FXRectangle.rb +1 -1
  485. data/tests/TC_FXRegion.rb +1 -1
  486. data/tests/TC_FXRegistry.rb +1 -1
  487. data/tests/TC_FXScrollArea.rb +1 -1
  488. data/tests/TC_FXScrollWindow.rb +1 -1
  489. data/tests/TC_FXSegment.rb +1 -1
  490. data/tests/TC_FXSettings.rb +1 -1
  491. data/tests/TC_FXShell.rb +1 -1
  492. data/tests/TC_FXSize.rb +1 -1
  493. data/tests/TC_FXStream.rb +1 -1
  494. data/tests/TC_FXTable.rb +33 -1
  495. data/tests/TC_FXTableItem.rb +2 -2
  496. data/tests/TC_FXText.rb +2 -2
  497. data/tests/TC_FXTopWindow.rb +1 -1
  498. data/tests/TC_FXTreeList.rb +2 -2
  499. data/tests/TC_FXTreeListBox.rb +2 -2
  500. data/tests/TC_FXUndoList.rb +2 -2
  501. data/tests/TC_FXVec2d.rb +6 -6
  502. data/tests/TC_FXVec2f.rb +5 -5
  503. data/tests/TC_FXVec3d.rb +5 -5
  504. data/tests/TC_FXVec3f.rb +5 -5
  505. data/tests/TC_FXVec4f.rb +3 -3
  506. data/tests/TC_FXViewport.rb +1 -1
  507. data/tests/TC_FXXBMIcon.rb +1 -1
  508. data/tests/TC_FXXBMImage.rb +1 -1
  509. data/tests/TC_FXXPMIcon.rb +1 -1
  510. data/tests/TC_FXXPMImage.rb +1 -1
  511. data/tests/TC_Misc.rb +1 -1
  512. data/tests/TC_downcast.rb +1 -1
  513. data/tests/TS_All.rb +1 -2
  514. data/tests/stress1.rb +5 -5
  515. data/tests/stress2.rb +1 -1
  516. data/tests/stress3.rb +1 -1
  517. data/tests/testcase.rb +1 -1
  518. metadata +294 -280
  519. data/doc/changes.html +0 -433
  520. data/ext/fox14/include/FXRbFont.h +0 -70
  521. data/ext/fox14/include/FXRbIconSource.h +0 -127
  522. data/ext/fox14/include/FXRbIconSourceVirtuals.h +0 -37
  523. data/ext/fox14/include/FXRbRealSpinnerVirtuals.h +0 -3
  524. data/ext/fox14/include/FXRbText.h +0 -94
  525. data/ext/fox14/include/FXRbTextVirtuals.h +0 -9
  526. data/rdoc-sources/FXMat4.rb +0 -171
  527. data/rdoc-sources/FXVec4.rb +0 -91
@@ -1554,6 +1554,13 @@ static VALUE _wrap_FXFoldingList_moveItem(int argc, VALUE *argv, VALUE self) { F
1554
1554
  SWIG_ConvertPtr(argv[2], (void **) &arg4, SWIGTYPE_p_FXFoldingItem, 1);
1555
1555
  result = (FXFoldingItem *)(arg1)->moveItem(arg2,arg3,arg4); vresult = FXRbGetRubyObj(result, "FXFoldingItem *");
1556
1556
  return vresult; }
1557
+ static VALUE _wrap_FXFoldingList_extractItem(int argc, VALUE *argv, VALUE self) { FXFoldingList *arg1 = (FXFoldingList *) 0 ;
1558
+ FXFoldingItem *arg2 = (FXFoldingItem *) 0 ; FXbool arg3 = (FXbool) 0 ; FXFoldingItem *result; VALUE vresult = Qnil;
1559
+ if ((argc < 1) || (argc > 2)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1560
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXFoldingList, 1);
1561
+ SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXFoldingItem, 1); if (argc > 1) { arg3 = to_FXbool(argv[1]); }
1562
+ result = (FXFoldingItem *)(arg1)->extractItem(arg2,arg3); vresult = FXRbGetRubyObj(result, "FXFoldingItem *");
1563
+ return vresult; }
1557
1564
  static VALUE _wrap_FXFoldingList_removeItem(int argc, VALUE *argv, VALUE self) { FXFoldingList *arg1 = (FXFoldingList *) 0 ;
1558
1565
  FXFoldingItem *arg2 = (FXFoldingItem *) 0 ; FXbool arg3 = (FXbool) 0 ; if ((argc < 1) || (argc > 2))
1559
1566
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
@@ -1890,10 +1897,10 @@ static VALUE _wrap_FXFoldingList_getHeightForWidth(int argc, VALUE *argv, VALUE
1890
1897
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXFoldingList, 1); arg2 = NUM2INT(argv[0]);
1891
1898
  result = (FXint)FXFoldingList_getHeightForWidth(arg1,arg2); vresult = INT2NUM(result); return vresult; }
1892
1899
  static VALUE _wrap_FXFoldingList_canFocus(int argc, VALUE *argv, VALUE self) { FXFoldingList *arg1 = (FXFoldingList *) 0 ;
1893
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
1900
+ bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
1894
1901
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1895
1902
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXFoldingList, 1);
1896
- result = (FXbool)FXFoldingList_canFocus((FXFoldingList const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
1903
+ result = (bool)FXFoldingList_canFocus((FXFoldingList const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
1897
1904
  static VALUE _wrap_FXFoldingList_setFocus(int argc, VALUE *argv, VALUE self) { FXFoldingList *arg1 = (FXFoldingList *) 0 ;
1898
1905
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1899
1906
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXFoldingList, 1); FXFoldingList_setFocus(arg1); return Qnil; }
@@ -1949,26 +1956,38 @@ static VALUE _wrap_FXFoldingList_hide(int argc, VALUE *argv, VALUE self) { FXFol
1949
1956
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1950
1957
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXFoldingList, 1); FXFoldingList_hide(arg1); return Qnil; }
1951
1958
  static VALUE _wrap_FXFoldingList_isComposite(int argc, VALUE *argv, VALUE self) { FXFoldingList *arg1 = (FXFoldingList *) 0 ;
1952
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
1959
+ bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
1953
1960
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1954
1961
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXFoldingList, 1);
1955
- result = (FXbool)FXFoldingList_isComposite((FXFoldingList const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
1962
+ result = (bool)FXFoldingList_isComposite((FXFoldingList const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
1956
1963
  static VALUE _wrap_FXFoldingList_contains(int argc, VALUE *argv, VALUE self) { FXFoldingList *arg1 = (FXFoldingList *) 0 ;
1957
- FXint arg2 ; FXint arg3 ; FXbool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
1964
+ FXint arg2 ; FXint arg3 ; bool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
1958
1965
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
1959
1966
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXFoldingList, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]);
1960
- result = (FXbool)FXFoldingList_contains((FXFoldingList const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse;
1967
+ result = (bool)FXFoldingList_contains((FXFoldingList const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse;
1961
1968
  return vresult; }
1962
1969
  static VALUE _wrap_FXFoldingList_doesSaveUnder(int argc, VALUE *argv, VALUE self) { FXFoldingList *arg1 = (FXFoldingList *) 0 ;
1963
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
1970
+ bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
1964
1971
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1965
1972
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXFoldingList, 1);
1966
- result = (FXbool)FXFoldingList_doesSaveUnder((FXFoldingList const *)arg1); vresult = result ? Qtrue : Qfalse;
1967
- return vresult; }
1973
+ result = (bool)FXFoldingList_doesSaveUnder((FXFoldingList const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
1968
1974
  static VALUE _wrap_FXFoldingList_setBackColor(int argc, VALUE *argv, VALUE self) { FXFoldingList *arg1 = (FXFoldingList *) 0 ;
1969
1975
  FXColor arg2 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1970
1976
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXFoldingList, 1); arg2 = to_FXColor(argv[0]);
1971
1977
  FXFoldingList_setBackColor(arg1,arg2); return Qnil; }
1978
+ static VALUE _wrap_FXFoldingList_tr(int argc, VALUE *argv, VALUE self) { FXFoldingList *arg1 = (FXFoldingList *) 0 ;
1979
+ FXchar *arg2 ; FXchar *arg3 = (FXchar *) 0 ; FXchar *result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 2))
1980
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1981
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXFoldingList, 1); arg2 = StringValuePtr(argv[0]); if (argc > 1) {
1982
+ arg3 = StringValuePtr(argv[1]); }
1983
+ result = (FXchar *)FXFoldingList_tr((FXFoldingList const *)arg1,(FXchar const *)arg2,(FXchar const *)arg3);
1984
+ vresult = rb_str_new2(result); return vresult; }
1985
+ static VALUE _wrap_FXFoldingList_dropEnable(int argc, VALUE *argv, VALUE self) { FXFoldingList *arg1 = (FXFoldingList *) 0 ;
1986
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1987
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXFoldingList, 1); FXFoldingList_dropEnable(arg1); return Qnil; }
1988
+ static VALUE _wrap_FXFoldingList_dropDisable(int argc, VALUE *argv, VALUE self) { FXFoldingList *arg1 = (FXFoldingList *) 0 ;
1989
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1990
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXFoldingList, 1); FXFoldingList_dropDisable(arg1); return Qnil; }
1972
1991
  static VALUE _wrap_FXFoldingList_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
1973
1992
  FXFoldingList *arg1 = (FXFoldingList *) 0 ; FXRegion *arg2 = 0 ; if ((argc < 1) || (argc > 1))
1974
1993
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
@@ -2741,6 +2760,14 @@ static VALUE _wrap_FXTreeList_moveItem(int argc, VALUE *argv, VALUE self) { FXTr
2741
2760
  result = (FXTreeItem *)(arg1)->moveItem(arg2,arg3,arg4); {
2742
2761
  swig_type_info *ty = SWIG_TypeDynamicCast(SWIGTYPE_p_FXTreeItem, (void **) &result);
2743
2762
  vresult = FXRbGetRubyObj(result, ty); } return vresult; }
2763
+ static VALUE _wrap_FXTreeList_extractItem(int argc, VALUE *argv, VALUE self) { FXTreeList *arg1 = (FXTreeList *) 0 ;
2764
+ FXTreeItem *arg2 = (FXTreeItem *) 0 ; FXbool arg3 = (FXbool) 0 ; FXTreeItem *result; VALUE vresult = Qnil;
2765
+ if ((argc < 1) || (argc > 2)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
2766
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTreeList, 1);
2767
+ SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXTreeItem, 1); if (argc > 1) { arg3 = to_FXbool(argv[1]); }
2768
+ result = (FXTreeItem *)(arg1)->extractItem(arg2,arg3); {
2769
+ swig_type_info *ty = SWIG_TypeDynamicCast(SWIGTYPE_p_FXTreeItem, (void **) &result);
2770
+ vresult = FXRbGetRubyObj(result, ty); } return vresult; }
2744
2771
  static VALUE _wrap_FXTreeList_removeItem(int argc, VALUE *argv, VALUE self) { FXTreeList *arg1 = (FXTreeList *) 0 ;
2745
2772
  FXTreeItem *arg2 = (FXTreeItem *) 0 ; FXbool arg3 = (FXbool) 0 ; if ((argc < 1) || (argc > 2))
2746
2773
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
@@ -3066,10 +3093,10 @@ static VALUE _wrap_FXTreeList_getHeightForWidth(int argc, VALUE *argv, VALUE sel
3066
3093
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
3067
3094
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTreeList, 1); arg2 = NUM2INT(argv[0]);
3068
3095
  result = (FXint)FXTreeList_getHeightForWidth(arg1,arg2); vresult = INT2NUM(result); return vresult; }
3069
- static VALUE _wrap_FXTreeList_canFocus(int argc, VALUE *argv, VALUE self) { FXTreeList *arg1 = (FXTreeList *) 0 ; FXbool result;
3096
+ static VALUE _wrap_FXTreeList_canFocus(int argc, VALUE *argv, VALUE self) { FXTreeList *arg1 = (FXTreeList *) 0 ; bool result;
3070
3097
  VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3071
3098
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTreeList, 1);
3072
- result = (FXbool)FXTreeList_canFocus((FXTreeList const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
3099
+ result = (bool)FXTreeList_canFocus((FXTreeList const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
3073
3100
  static VALUE _wrap_FXTreeList_setFocus(int argc, VALUE *argv, VALUE self) { FXTreeList *arg1 = (FXTreeList *) 0 ;
3074
3101
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3075
3102
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTreeList, 1); FXTreeList_setFocus(arg1); return Qnil; }
@@ -3125,25 +3152,37 @@ static VALUE _wrap_FXTreeList_hide(int argc, VALUE *argv, VALUE self) { FXTreeLi
3125
3152
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3126
3153
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTreeList, 1); FXTreeList_hide(arg1); return Qnil; }
3127
3154
  static VALUE _wrap_FXTreeList_isComposite(int argc, VALUE *argv, VALUE self) { FXTreeList *arg1 = (FXTreeList *) 0 ;
3128
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
3155
+ bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
3129
3156
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3130
3157
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTreeList, 1);
3131
- result = (FXbool)FXTreeList_isComposite((FXTreeList const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
3158
+ result = (bool)FXTreeList_isComposite((FXTreeList const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
3132
3159
  static VALUE _wrap_FXTreeList_contains(int argc, VALUE *argv, VALUE self) { FXTreeList *arg1 = (FXTreeList *) 0 ; FXint arg2 ;
3133
- FXint arg3 ; FXbool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
3160
+ FXint arg3 ; bool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
3134
3161
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
3135
3162
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTreeList, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]);
3136
- result = (FXbool)FXTreeList_contains((FXTreeList const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse;
3137
- return vresult; }
3163
+ result = (bool)FXTreeList_contains((FXTreeList const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse; return vresult; }
3138
3164
  static VALUE _wrap_FXTreeList_doesSaveUnder(int argc, VALUE *argv, VALUE self) { FXTreeList *arg1 = (FXTreeList *) 0 ;
3139
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
3165
+ bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
3140
3166
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3141
3167
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTreeList, 1);
3142
- result = (FXbool)FXTreeList_doesSaveUnder((FXTreeList const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
3168
+ result = (bool)FXTreeList_doesSaveUnder((FXTreeList const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
3143
3169
  static VALUE _wrap_FXTreeList_setBackColor(int argc, VALUE *argv, VALUE self) { FXTreeList *arg1 = (FXTreeList *) 0 ;
3144
3170
  FXColor arg2 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
3145
3171
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTreeList, 1); arg2 = to_FXColor(argv[0]);
3146
3172
  FXTreeList_setBackColor(arg1,arg2); return Qnil; }
3173
+ static VALUE _wrap_FXTreeList_tr(int argc, VALUE *argv, VALUE self) { FXTreeList *arg1 = (FXTreeList *) 0 ; FXchar *arg2 ;
3174
+ FXchar *arg3 = (FXchar *) 0 ; FXchar *result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 2))
3175
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
3176
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTreeList, 1); arg2 = StringValuePtr(argv[0]); if (argc > 1) {
3177
+ arg3 = StringValuePtr(argv[1]); }
3178
+ result = (FXchar *)FXTreeList_tr((FXTreeList const *)arg1,(FXchar const *)arg2,(FXchar const *)arg3);
3179
+ vresult = rb_str_new2(result); return vresult; }
3180
+ static VALUE _wrap_FXTreeList_dropEnable(int argc, VALUE *argv, VALUE self) { FXTreeList *arg1 = (FXTreeList *) 0 ;
3181
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3182
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTreeList, 1); FXTreeList_dropEnable(arg1); return Qnil; }
3183
+ static VALUE _wrap_FXTreeList_dropDisable(int argc, VALUE *argv, VALUE self) { FXTreeList *arg1 = (FXTreeList *) 0 ;
3184
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3185
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTreeList, 1); FXTreeList_dropDisable(arg1); return Qnil; }
3147
3186
  static VALUE _wrap_FXTreeList_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) { FXTreeList *arg1 = (FXTreeList *) 0 ;
3148
3187
  FXRegion *arg2 = 0 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
3149
3188
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTreeList, 1);
@@ -3834,10 +3873,10 @@ static VALUE _wrap_FXDirList_getHeightForWidth(int argc, VALUE *argv, VALUE self
3834
3873
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
3835
3874
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDirList, 1); arg2 = NUM2INT(argv[0]);
3836
3875
  result = (FXint)FXDirList_getHeightForWidth(arg1,arg2); vresult = INT2NUM(result); return vresult; }
3837
- static VALUE _wrap_FXDirList_canFocus(int argc, VALUE *argv, VALUE self) { FXDirList *arg1 = (FXDirList *) 0 ; FXbool result;
3876
+ static VALUE _wrap_FXDirList_canFocus(int argc, VALUE *argv, VALUE self) { FXDirList *arg1 = (FXDirList *) 0 ; bool result;
3838
3877
  VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3839
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDirList, 1);
3840
- result = (FXbool)FXDirList_canFocus((FXDirList const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
3878
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDirList, 1); result = (bool)FXDirList_canFocus((FXDirList const *)arg1);
3879
+ vresult = result ? Qtrue : Qfalse; return vresult; }
3841
3880
  static VALUE _wrap_FXDirList_setFocus(int argc, VALUE *argv, VALUE self) { FXDirList *arg1 = (FXDirList *) 0 ;
3842
3881
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3843
3882
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDirList, 1); FXDirList_setFocus(arg1); return Qnil; }
@@ -3892,24 +3931,36 @@ static VALUE _wrap_FXDirList_show(int argc, VALUE *argv, VALUE self) { FXDirList
3892
3931
  static VALUE _wrap_FXDirList_hide(int argc, VALUE *argv, VALUE self) { FXDirList *arg1 = (FXDirList *) 0 ;
3893
3932
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3894
3933
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDirList, 1); FXDirList_hide(arg1); return Qnil; }
3895
- static VALUE _wrap_FXDirList_isComposite(int argc, VALUE *argv, VALUE self) { FXDirList *arg1 = (FXDirList *) 0 ; FXbool result;
3934
+ static VALUE _wrap_FXDirList_isComposite(int argc, VALUE *argv, VALUE self) { FXDirList *arg1 = (FXDirList *) 0 ; bool result;
3896
3935
  VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3897
3936
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDirList, 1);
3898
- result = (FXbool)FXDirList_isComposite((FXDirList const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
3937
+ result = (bool)FXDirList_isComposite((FXDirList const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
3899
3938
  static VALUE _wrap_FXDirList_contains(int argc, VALUE *argv, VALUE self) { FXDirList *arg1 = (FXDirList *) 0 ; FXint arg2 ;
3900
- FXint arg3 ; FXbool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
3939
+ FXint arg3 ; bool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
3901
3940
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
3902
3941
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDirList, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]);
3903
- result = (FXbool)FXDirList_contains((FXDirList const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse; return vresult; }
3904
- static VALUE _wrap_FXDirList_doesSaveUnder(int argc, VALUE *argv, VALUE self) { FXDirList *arg1 = (FXDirList *) 0 ;
3905
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
3906
- rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3942
+ result = (bool)FXDirList_contains((FXDirList const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse; return vresult; }
3943
+ static VALUE _wrap_FXDirList_doesSaveUnder(int argc, VALUE *argv, VALUE self) { FXDirList *arg1 = (FXDirList *) 0 ; bool result;
3944
+ VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3907
3945
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDirList, 1);
3908
- result = (FXbool)FXDirList_doesSaveUnder((FXDirList const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
3946
+ result = (bool)FXDirList_doesSaveUnder((FXDirList const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
3909
3947
  static VALUE _wrap_FXDirList_setBackColor(int argc, VALUE *argv, VALUE self) { FXDirList *arg1 = (FXDirList *) 0 ;
3910
3948
  FXColor arg2 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
3911
3949
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDirList, 1); arg2 = to_FXColor(argv[0]);
3912
3950
  FXDirList_setBackColor(arg1,arg2); return Qnil; }
3951
+ static VALUE _wrap_FXDirList_tr(int argc, VALUE *argv, VALUE self) { FXDirList *arg1 = (FXDirList *) 0 ; FXchar *arg2 ;
3952
+ FXchar *arg3 = (FXchar *) 0 ; FXchar *result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 2))
3953
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
3954
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDirList, 1); arg2 = StringValuePtr(argv[0]); if (argc > 1) {
3955
+ arg3 = StringValuePtr(argv[1]); }
3956
+ result = (FXchar *)FXDirList_tr((FXDirList const *)arg1,(FXchar const *)arg2,(FXchar const *)arg3);
3957
+ vresult = rb_str_new2(result); return vresult; }
3958
+ static VALUE _wrap_FXDirList_dropEnable(int argc, VALUE *argv, VALUE self) { FXDirList *arg1 = (FXDirList *) 0 ;
3959
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3960
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDirList, 1); FXDirList_dropEnable(arg1); return Qnil; }
3961
+ static VALUE _wrap_FXDirList_dropDisable(int argc, VALUE *argv, VALUE self) { FXDirList *arg1 = (FXDirList *) 0 ;
3962
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3963
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDirList, 1); FXDirList_dropDisable(arg1); return Qnil; }
3913
3964
  static VALUE _wrap_FXDirList_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) { FXDirList *arg1 = (FXDirList *) 0 ;
3914
3965
  FXRegion *arg2 = 0 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
3915
3966
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDirList, 1);
@@ -4066,9 +4117,6 @@ static VALUE _wrap_FXDirList_disableItem(int argc, VALUE *argv, VALUE self) { FX
4066
4117
 
4067
4118
  /* -------- TYPE CONVERSION AND EQUIVALENCE RULES (BEGIN) -------- */
4068
4119
 
4069
- static void *_p_FXGradientBarTo_p_FXId(void *x) {
4070
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXGradientBar *) x));
4071
- }
4072
4120
  static void *_p_FXShutterItemTo_p_FXId(void *x) {
4073
4121
  return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXVerticalFrame *) ((FXShutterItem *) x));
4074
4122
  }
@@ -4171,6 +4219,9 @@ static void *_p_FXDockSiteTo_p_FXId(void *x) {
4171
4219
  static void *_p_FXGroupBoxTo_p_FXId(void *x) {
4172
4220
  return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXGroupBox *) x));
4173
4221
  }
4222
+ static void *_p_FXColorRingTo_p_FXId(void *x) {
4223
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXColorRing *) x));
4224
+ }
4174
4225
  static void *_p_FXDockHandlerTo_p_FXId(void *x) {
4175
4226
  return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXDockHandler *) x));
4176
4227
  }
@@ -4207,9 +4258,6 @@ static void *_p_FXFrameTo_p_FXId(void *x) {
4207
4258
  static void *_p_FX7SegmentTo_p_FXId(void *x) {
4208
4259
  return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FX7Segment *) x));
4209
4260
  }
4210
- static void *_p_FXDockTitleTo_p_FXId(void *x) {
4211
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *)(FXDockHandler *) ((FXDockTitle *) x));
4212
- }
4213
4261
  static void *_p_FXStatusBarTo_p_FXId(void *x) {
4214
4262
  return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXHorizontalFrame *) ((FXStatusBar *) x));
4215
4263
  }
@@ -4222,6 +4270,9 @@ static void *_p_FXCURCursorTo_p_FXId(void *x) {
4222
4270
  static void *_p_FXCursorTo_p_FXId(void *x) {
4223
4271
  return (void *)((FXId *) ((FXCursor *) x));
4224
4272
  }
4273
+ static void *_p_FXKnobTo_p_FXId(void *x) {
4274
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXKnob *) x));
4275
+ }
4225
4276
  static void *_p_FXRealSpinnerTo_p_FXId(void *x) {
4226
4277
  return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXRealSpinner *) x));
4227
4278
  }
@@ -4303,9 +4354,6 @@ static void *_p_FXDirBoxTo_p_FXId(void *x) {
4303
4354
  static void *_p_FXDocumentTo_p_FXObject(void *x) {
4304
4355
  return (void *)((FXObject *) ((FXDocument *) x));
4305
4356
  }
4306
- static void *_p_FXGradientBarTo_p_FXObject(void *x) {
4307
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXGradientBar *) x));
4308
- }
4309
4357
  static void *_p_FXRegistryTo_p_FXObject(void *x) {
4310
4358
  return (void *)((FXObject *) (FXDict *)(FXSettings *) ((FXRegistry *) x));
4311
4359
  }
@@ -4369,6 +4417,9 @@ static void *_p_FXAppTo_p_FXObject(void *x) {
4369
4417
  static void *_p_FXHeaderTo_p_FXObject(void *x) {
4370
4418
  return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXHeader *) x));
4371
4419
  }
4420
+ static void *_p_FXTranslatorTo_p_FXObject(void *x) {
4421
+ return (void *)((FXObject *) ((FXTranslator *) x));
4422
+ }
4372
4423
  static void *_p_FX4SplitterTo_p_FXObject(void *x) {
4373
4424
  return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *) ((FX4Splitter *) x));
4374
4425
  }
@@ -4432,6 +4483,9 @@ static void *_p_FXDockSiteTo_p_FXObject(void *x) {
4432
4483
  static void *_p_FXGroupBoxTo_p_FXObject(void *x) {
4433
4484
  return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXGroupBox *) x));
4434
4485
  }
4486
+ static void *_p_FXColorRingTo_p_FXObject(void *x) {
4487
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXColorRing *) x));
4488
+ }
4435
4489
  static void *_p_FXDebugTargetTo_p_FXObject(void *x) {
4436
4490
  return (void *)((FXObject *) ((FXDebugTarget *) x));
4437
4491
  }
@@ -4480,9 +4534,6 @@ static void *_p_FXFrameTo_p_FXObject(void *x) {
4480
4534
  static void *_p_FX7SegmentTo_p_FXObject(void *x) {
4481
4535
  return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FX7Segment *) x));
4482
4536
  }
4483
- static void *_p_FXDockTitleTo_p_FXObject(void *x) {
4484
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *)(FXDockHandler *) ((FXDockTitle *) x));
4485
- }
4486
4537
  static void *_p_FXStringDictTo_p_FXObject(void *x) {
4487
4538
  return (void *)((FXObject *) (FXDict *) ((FXStringDict *) x));
4488
4539
  }
@@ -4504,6 +4555,9 @@ static void *_p_FXCURCursorTo_p_FXObject(void *x) {
4504
4555
  static void *_p_FXGIFCursorTo_p_FXObject(void *x) {
4505
4556
  return (void *)((FXObject *) (FXId *)(FXCursor *) ((FXGIFCursor *) x));
4506
4557
  }
4558
+ static void *_p_FXKnobTo_p_FXObject(void *x) {
4559
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXKnob *) x));
4560
+ }
4507
4561
  static void *_p_FXRealSpinnerTo_p_FXObject(void *x) {
4508
4562
  return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXRealSpinner *) x));
4509
4563
  }
@@ -4555,12 +4609,12 @@ static void *_p_FXRulerTo_p_FXObject(void *x) {
4555
4609
  static void *_p_FXDialTo_p_FXObject(void *x) {
4556
4610
  return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXDial *) x));
4557
4611
  }
4558
- static void *_p_FXHorizontalFrameTo_p_FXObject(void *x) {
4559
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXHorizontalFrame *) x));
4560
- }
4561
4612
  static void *_p_FXVerticalFrameTo_p_FXObject(void *x) {
4562
4613
  return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXVerticalFrame *) x));
4563
4614
  }
4615
+ static void *_p_FXHorizontalFrameTo_p_FXObject(void *x) {
4616
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXHorizontalFrame *) x));
4617
+ }
4564
4618
  static void *_p_FXImageViewTo_p_FXObject(void *x) {
4565
4619
  return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXScrollArea *) ((FXImageView *) x));
4566
4620
  }
@@ -4681,6 +4735,9 @@ static void *_p_FXStatusLineTo_p_FXWindow(void *x) {
4681
4735
  static void *_p_FXComboBoxTo_p_FXWindow(void *x) {
4682
4736
  return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXComboBox *) x));
4683
4737
  }
4738
+ static void *_p_FXKnobTo_p_FXWindow(void *x) {
4739
+ return (void *)((FXWindow *) (FXFrame *) ((FXKnob *) x));
4740
+ }
4684
4741
  static void *_p_FXHorizontalFrameTo_p_FXWindow(void *x) {
4685
4742
  return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXHorizontalFrame *) x));
4686
4743
  }
@@ -4711,9 +4768,6 @@ static void *_p_FXColorWheelTo_p_FXWindow(void *x) {
4711
4768
  static void *_p_FXBitmapFrameTo_p_FXWindow(void *x) {
4712
4769
  return (void *)((FXWindow *) (FXFrame *) ((FXBitmapFrame *) x));
4713
4770
  }
4714
- static void *_p_FXGradientBarTo_p_FXWindow(void *x) {
4715
- return (void *)((FXWindow *) (FXFrame *) ((FXGradientBar *) x));
4716
- }
4717
4771
  static void *_p_FXDirBoxTo_p_FXWindow(void *x) {
4718
4772
  return (void *)((FXWindow *) (FXComposite *)(FXPacker *)(FXTreeListBox *) ((FXDirBox *) x));
4719
4773
  }
@@ -4756,9 +4810,6 @@ static void *_p_FXDirListTo_p_FXWindow(void *x) {
4756
4810
  static void *_p_FXDockSiteTo_p_FXWindow(void *x) {
4757
4811
  return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXDockSite *) x));
4758
4812
  }
4759
- static void *_p_FXDockTitleTo_p_FXWindow(void *x) {
4760
- return (void *)((FXWindow *) (FXFrame *)(FXDockHandler *) ((FXDockTitle *) x));
4761
- }
4762
4813
  static void *_p_FXListBoxTo_p_FXWindow(void *x) {
4763
4814
  return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXListBox *) x));
4764
4815
  }
@@ -4810,6 +4861,9 @@ static void *_p_FXTreeListTo_p_FXWindow(void *x) {
4810
4861
  static void *_p_FXSpringTo_p_FXWindow(void *x) {
4811
4862
  return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXSpring *) x));
4812
4863
  }
4864
+ static void *_p_FXColorRingTo_p_FXWindow(void *x) {
4865
+ return (void *)((FXWindow *) (FXFrame *) ((FXColorRing *) x));
4866
+ }
4813
4867
  static void *_p_FXColorBarTo_p_FXWindow(void *x) {
4814
4868
  return (void *)((FXWindow *) (FXFrame *) ((FXColorBar *) x));
4815
4869
  }
@@ -5029,6 +5083,9 @@ static void *_p_FXStatusLineTo_p_FXDrawable(void *x) {
5029
5083
  static void *_p_FXComboBoxTo_p_FXDrawable(void *x) {
5030
5084
  return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXComboBox *) x));
5031
5085
  }
5086
+ static void *_p_FXKnobTo_p_FXDrawable(void *x) {
5087
+ return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXKnob *) x));
5088
+ }
5032
5089
  static void *_p_FXHorizontalFrameTo_p_FXDrawable(void *x) {
5033
5090
  return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXHorizontalFrame *) x));
5034
5091
  }
@@ -5059,9 +5116,6 @@ static void *_p_FXColorWheelTo_p_FXDrawable(void *x) {
5059
5116
  static void *_p_FXBitmapFrameTo_p_FXDrawable(void *x) {
5060
5117
  return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXBitmapFrame *) x));
5061
5118
  }
5062
- static void *_p_FXGradientBarTo_p_FXDrawable(void *x) {
5063
- return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXGradientBar *) x));
5064
- }
5065
5119
  static void *_p_FXDirBoxTo_p_FXDrawable(void *x) {
5066
5120
  return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *)(FXTreeListBox *) ((FXDirBox *) x));
5067
5121
  }
@@ -5104,9 +5158,6 @@ static void *_p_FXDirListTo_p_FXDrawable(void *x) {
5104
5158
  static void *_p_FXDockSiteTo_p_FXDrawable(void *x) {
5105
5159
  return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXDockSite *) x));
5106
5160
  }
5107
- static void *_p_FXDockTitleTo_p_FXDrawable(void *x) {
5108
- return (void *)((FXDrawable *) (FXWindow *)(FXFrame *)(FXDockHandler *) ((FXDockTitle *) x));
5109
- }
5110
5161
  static void *_p_FXListBoxTo_p_FXDrawable(void *x) {
5111
5162
  return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXListBox *) x));
5112
5163
  }
@@ -5158,6 +5209,9 @@ static void *_p_FXTreeListTo_p_FXDrawable(void *x) {
5158
5209
  static void *_p_FXSpringTo_p_FXDrawable(void *x) {
5159
5210
  return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXSpring *) x));
5160
5211
  }
5212
+ static void *_p_FXColorRingTo_p_FXDrawable(void *x) {
5213
+ return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXColorRing *) x));
5214
+ }
5161
5215
  static void *_p_FXColorBarTo_p_FXDrawable(void *x) {
5162
5216
  return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXColorBar *) x));
5163
5217
  }
@@ -5171,17 +5225,17 @@ static void *_p_FXDirItemTo_p_FXTreeItem(void *x) {
5171
5225
  return (void *)((FXTreeItem *) ((FXDirItem *) x));
5172
5226
  }
5173
5227
  static swig_type_info _swigt__p_FXFoldingItem[] = {{"_p_FXFoldingItem", 0, "FXFoldingItem *", 0, 0, 0, 0},{"_p_FXFoldingItem", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
5174
- 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_FXGradientBar", _p_FXGradientBarTo_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_FXTreeList", _p_FXTreeListTo_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_FXDirList", _p_FXDirListTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXIconDict", _p_FXIconDictTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXMatrix", _p_FXMatrixTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXFileDict", _p_FXFileDictTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXRecentFiles", _p_FXRecentFilesTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXScrollCorner", _p_FXScrollCornerTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXArrowButton", _p_FXArrowButtonTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXPopup", _p_FXPopupTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXDrawable", _p_FXDrawableTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXFont", _p_FXFontTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FX4Splitter", _p_FX4SplitterTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXSplitter", _p_FXSplitterTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXHeader", _p_FXHeaderTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXSpring", _p_FXSpringTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXPacker", _p_FXPackerTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXTabBook", _p_FXTabBookTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXApp", _p_FXAppTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXImageFrame", _p_FXImageFrameTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXSeparator", _p_FXSeparatorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXHorizontalSeparator", _p_FXHorizontalSeparatorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXVerticalSeparator", _p_FXVerticalSeparatorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXProgressBar", _p_FXProgressBarTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXShutter", _p_FXShutterTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXFoldingList", _p_FXFoldingListTo_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_FXTreeItem", _p_FXTreeItemTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXListBox", _p_FXListBoxTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXTreeListBox", _p_FXTreeListBoxTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXCanvas", _p_FXCanvasTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXId", _p_FXIdTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXColorWheel", _p_FXColorWheelTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXDial", _p_FXDialTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXToolBarGrip", _p_FXToolBarGripTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXScrollBar", _p_FXScrollBarTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXDirItem", _p_FXDirItemTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXVisual", _p_FXVisualTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXComboBox", _p_FXComboBoxTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXFrame", _p_FXFrameTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXDockTitle", _p_FXDockTitleTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FX7Segment", _p_FX7SegmentTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXStatusBar", _p_FXStatusBarTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXStringDict", _p_FXStringDictTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXDelegator", _p_FXDelegatorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXAccelTable", _p_FXAccelTableTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXObject", 0, 0, 0, 0, 0, 0},{"_p_FXCursor", _p_FXCursorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXCURCursor", _p_FXCURCursorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXGIFCursor", _p_FXGIFCursorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXRealSpinner", _p_FXRealSpinnerTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXSpinner", _p_FXSpinnerTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXStatusLine", _p_FXStatusLineTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXWindow", _p_FXWindowTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXTopWindow", _p_FXTopWindowTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXRootWindow", _p_FXRootWindowTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXMainWindow", _p_FXMainWindowTo_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_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_FXDragCorner", _p_FXDragCornerTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXColorWell", _p_FXColorWellTo_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_FXFoldingItem", _p_FXFoldingItemTo_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}};
5228
+ 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_FXTreeList", _p_FXTreeListTo_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_FXDirList", _p_FXDirListTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXIconDict", _p_FXIconDictTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXMatrix", _p_FXMatrixTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXFileDict", _p_FXFileDictTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXRecentFiles", _p_FXRecentFilesTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXScrollCorner", _p_FXScrollCornerTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXArrowButton", _p_FXArrowButtonTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXPopup", _p_FXPopupTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXDrawable", _p_FXDrawableTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXFont", _p_FXFontTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXHeader", _p_FXHeaderTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FX4Splitter", _p_FX4SplitterTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXSplitter", _p_FXSplitterTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXTranslator", _p_FXTranslatorTo_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_FXKnob", _p_FXKnobTo_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_FXFoldingList", _p_FXFoldingListTo_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_FXColorRing", _p_FXColorRingTo_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_FXTreeItem", _p_FXTreeItemTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXListBox", _p_FXListBoxTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXTreeListBox", _p_FXTreeListBoxTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXCanvas", _p_FXCanvasTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXId", _p_FXIdTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXColorWheel", _p_FXColorWheelTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXDial", _p_FXDialTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXToolBarGrip", _p_FXToolBarGripTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXScrollBar", _p_FXScrollBarTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXDirItem", _p_FXDirItemTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXVisual", _p_FXVisualTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXComboBox", _p_FXComboBoxTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXFrame", _p_FXFrameTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FX7Segment", _p_FX7SegmentTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXStatusBar", _p_FXStatusBarTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXStringDict", _p_FXStringDictTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXDelegator", _p_FXDelegatorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXAccelTable", _p_FXAccelTableTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXObject", 0, 0, 0, 0, 0, 0},{"_p_FXCursor", _p_FXCursorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXCURCursor", _p_FXCURCursorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXGIFCursor", _p_FXGIFCursorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXRealSpinner", _p_FXRealSpinnerTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXSpinner", _p_FXSpinnerTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXStatusLine", _p_FXStatusLineTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXWindow", _p_FXWindowTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXTopWindow", _p_FXTopWindowTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXRootWindow", _p_FXRootWindowTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXMainWindow", _p_FXMainWindowTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXScrollWindow", _p_FXScrollWindowTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXSplashWindow", _p_FXSplashWindowTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_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_FXDragCorner", _p_FXDragCornerTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXColorWell", _p_FXColorWellTo_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_FXFoldingItem", _p_FXFoldingItemTo_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}};
5175
5229
  static swig_type_info _swigt__p_FXScrollArea[] = {{"_p_FXScrollArea", 0, "FXScrollArea *", 0, 0, 0, 0},{"_p_FXFoldingList", _p_FXFoldingListTo_p_FXScrollArea, 0, 0, 0, 0, 0},{"_p_FXDirList", _p_FXDirListTo_p_FXScrollArea, 0, 0, 0, 0, 0},{"_p_FXScrollWindow", _p_FXScrollWindowTo_p_FXScrollArea, 0, 0, 0, 0, 0},{"_p_FXTreeList", _p_FXTreeListTo_p_FXScrollArea, 0, 0, 0, 0, 0},{"_p_FXScrollArea", 0, 0, 0, 0, 0, 0},{"_p_FXImageView", _p_FXImageViewTo_p_FXScrollArea, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
5176
- static swig_type_info _swigt__p_FXWindow[] = {{"_p_FXWindow", 0, "FXWindow *", 0, 0, 0, 0},{"_p_FXDriveBox", _p_FXDriveBoxTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXDial", _p_FXDialTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXToolBar", _p_FXToolBarTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXComposite", _p_FXCompositeTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXToolTip", _p_FXToolTipTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXTabBook", _p_FXTabBookTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXTextField", _p_FXTextFieldTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXArrowButton", _p_FXArrowButtonTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXFoldingList", _p_FXFoldingListTo_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_FXTopWindow", _p_FXTopWindowTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXRootWindow", _p_FXRootWindowTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXMainWindow", _p_FXMainWindowTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXSplashWindow", _p_FXSplashWindowTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXWindow", 0, 0, 0, 0, 0, 0},{"_p_FXScrollWindow", _p_FXScrollWindowTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXScrollCorner", _p_FXScrollCornerTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXRuler", _p_FXRulerTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXCanvas", _p_FXCanvasTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXComboBox", _p_FXComboBoxTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXVerticalSeparator", _p_FXVerticalSeparatorTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXHorizontalSeparator", _p_FXHorizontalSeparatorTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXSeparator", _p_FXSeparatorTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXStatusLine", _p_FXStatusLineTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXHorizontalFrame", _p_FXHorizontalFrameTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXVerticalFrame", _p_FXVerticalFrameTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FX4Splitter", _p_FX4SplitterTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXSplitter", _p_FXSplitterTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXRealSpinner", _p_FXRealSpinnerTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXSpinner", _p_FXSpinnerTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXPacker", _p_FXPackerTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXScrollBar", _p_FXScrollBarTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXColorWheel", _p_FXColorWheelTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXBitmapFrame", _p_FXBitmapFrameTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXGradientBar", _p_FXGradientBarTo_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_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_FXDirSelector", _p_FXDirSelectorTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXShutter", _p_FXShutterTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXDirList", _p_FXDirListTo_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_FXDockTitle", _p_FXDockTitleTo_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_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_FXTreeList", _p_FXTreeListTo_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}};
5230
+ static swig_type_info _swigt__p_FXWindow[] = {{"_p_FXWindow", 0, "FXWindow *", 0, 0, 0, 0},{"_p_FXDriveBox", _p_FXDriveBoxTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXDial", _p_FXDialTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXToolBar", _p_FXToolBarTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXComposite", _p_FXCompositeTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXToolTip", _p_FXToolTipTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXTabBook", _p_FXTabBookTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXTextField", _p_FXTextFieldTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXArrowButton", _p_FXArrowButtonTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXFoldingList", _p_FXFoldingListTo_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_FXTopWindow", _p_FXTopWindowTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXRootWindow", _p_FXRootWindowTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXMainWindow", _p_FXMainWindowTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXSplashWindow", _p_FXSplashWindowTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXWindow", 0, 0, 0, 0, 0, 0},{"_p_FXScrollWindow", _p_FXScrollWindowTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXScrollCorner", _p_FXScrollCornerTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXRuler", _p_FXRulerTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXCanvas", _p_FXCanvasTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXComboBox", _p_FXComboBoxTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXVerticalSeparator", _p_FXVerticalSeparatorTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXHorizontalSeparator", _p_FXHorizontalSeparatorTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXSeparator", _p_FXSeparatorTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXStatusLine", _p_FXStatusLineTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXHorizontalFrame", _p_FXHorizontalFrameTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXVerticalFrame", _p_FXVerticalFrameTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FX4Splitter", _p_FX4SplitterTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXSplitter", _p_FXSplitterTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXRealSpinner", _p_FXRealSpinnerTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXSpinner", _p_FXSpinnerTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXPacker", _p_FXPackerTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXScrollBar", _p_FXScrollBarTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXColorWheel", _p_FXColorWheelTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXBitmapFrame", _p_FXBitmapFrameTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXDirBox", _p_FXDirBoxTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXDockHandler", _p_FXDockHandlerTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXToolBarGrip", _p_FXToolBarGripTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_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_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_FXDirSelector", _p_FXDirSelectorTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXShutter", _p_FXShutterTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXDirList", _p_FXDirListTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXKnob", _p_FXKnobTo_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_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_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_FXTreeList", _p_FXTreeListTo_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_FXColorRing", _p_FXColorRingTo_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}};
5177
5231
  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_FXFoldingList", _p_FXFoldingListTo_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_FXTopWindow", _p_FXTopWindowTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXRootWindow", _p_FXRootWindowTo_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_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_FXDirList", _p_FXDirListTo_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_FXTreeList", _p_FXTreeListTo_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}};
5178
5232
  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}};
5179
- static swig_type_info _swigt__p_FXId[] = {{"_p_FXId", 0, "FXId *", 0, 0, 0, 0},{"_p_FXGradientBar", _p_FXGradientBarTo_p_FXId, 0, 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_FXTreeList", _p_FXTreeListTo_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_FXDirList", _p_FXDirListTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXMatrix", _p_FXMatrixTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXScrollCorner", _p_FXScrollCornerTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXArrowButton", _p_FXArrowButtonTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXPopup", _p_FXPopupTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXDrawable", _p_FXDrawableTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXFont", _p_FXFontTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXHeader", _p_FXHeaderTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FX4Splitter", _p_FX4SplitterTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXSplitter", _p_FXSplitterTo_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_FXFoldingList", _p_FXFoldingListTo_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_FXListBox", _p_FXListBoxTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXTreeListBox", _p_FXTreeListBoxTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXCanvas", _p_FXCanvasTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXId", 0, 0, 0, 0, 0, 0},{"_p_FXColorWheel", _p_FXColorWheelTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXDial", _p_FXDialTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXToolBarGrip", _p_FXToolBarGripTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXScrollBar", _p_FXScrollBarTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXVisual", _p_FXVisualTo_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_FXDockTitle", _p_FXDockTitleTo_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_FXScrollWindow", _p_FXScrollWindowTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXSplashWindow", _p_FXSplashWindowTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXMainWindow", _p_FXMainWindowTo_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_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_FXHorizontalFrame", _p_FXHorizontalFrameTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXVerticalFrame", _p_FXVerticalFrameTo_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}};
5233
+ 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_FXTreeList", _p_FXTreeListTo_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_FXDirList", _p_FXDirListTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXMatrix", _p_FXMatrixTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXScrollCorner", _p_FXScrollCornerTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXArrowButton", _p_FXArrowButtonTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXPopup", _p_FXPopupTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXDrawable", _p_FXDrawableTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXFont", _p_FXFontTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXHeader", _p_FXHeaderTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FX4Splitter", _p_FX4SplitterTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXSplitter", _p_FXSplitterTo_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_FXKnob", _p_FXKnobTo_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_FXFoldingList", _p_FXFoldingListTo_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_FXColorRing", _p_FXColorRingTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXDockHandler", _p_FXDockHandlerTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXListBox", _p_FXListBoxTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXTreeListBox", _p_FXTreeListBoxTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXCanvas", _p_FXCanvasTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXId", 0, 0, 0, 0, 0, 0},{"_p_FXColorWheel", _p_FXColorWheelTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXDial", _p_FXDialTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXToolBarGrip", _p_FXToolBarGripTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXScrollBar", _p_FXScrollBarTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXVisual", _p_FXVisualTo_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_FXScrollWindow", _p_FXScrollWindowTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXSplashWindow", _p_FXSplashWindowTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXMainWindow", _p_FXMainWindowTo_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_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}};
5180
5234
  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}};
5181
5235
  static swig_type_info _swigt__p_FXDirList[] = {{"_p_FXDirList", 0, "FXDirList *", 0, 0, 0, 0},{"_p_FXDirList", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
5182
5236
  static swig_type_info _swigt__p_FXFileDict[] = {{"_p_FXFileDict", 0, "FXFileDict *", 0, 0, 0, 0},{"_p_FXFileDict", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
5183
5237
  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}};
5184
- static swig_type_info _swigt__p_FXDrawable[] = {{"_p_FXDrawable", 0, "FXDrawable *", 0, 0, 0, 0},{"_p_FXDriveBox", _p_FXDriveBoxTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXDial", _p_FXDialTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXToolBar", _p_FXToolBarTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXComposite", _p_FXCompositeTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXToolTip", _p_FXToolTipTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXTabBook", _p_FXTabBookTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXTextField", _p_FXTextFieldTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXArrowButton", _p_FXArrowButtonTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXFoldingList", _p_FXFoldingListTo_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_FXTopWindow", _p_FXTopWindowTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXRootWindow", _p_FXRootWindowTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXMainWindow", _p_FXMainWindowTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXSplashWindow", _p_FXSplashWindowTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXScrollWindow", _p_FXScrollWindowTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXScrollCorner", _p_FXScrollCornerTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXWindow", _p_FXWindowTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXRuler", _p_FXRulerTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXCanvas", _p_FXCanvasTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXComboBox", _p_FXComboBoxTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXVerticalSeparator", _p_FXVerticalSeparatorTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXHorizontalSeparator", _p_FXHorizontalSeparatorTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXSeparator", _p_FXSeparatorTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXStatusLine", _p_FXStatusLineTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXHorizontalFrame", _p_FXHorizontalFrameTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXVerticalFrame", _p_FXVerticalFrameTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FX4Splitter", _p_FX4SplitterTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXSplitter", _p_FXSplitterTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXRealSpinner", _p_FXRealSpinnerTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXSpinner", _p_FXSpinnerTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXPacker", _p_FXPackerTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXScrollBar", _p_FXScrollBarTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXColorWheel", _p_FXColorWheelTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXBitmapFrame", _p_FXBitmapFrameTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXGradientBar", _p_FXGradientBarTo_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_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_FXDirSelector", _p_FXDirSelectorTo_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_FXDirList", _p_FXDirListTo_p_FXDrawable, 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_FXDockTitle", _p_FXDockTitleTo_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_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_FXTreeList", _p_FXTreeListTo_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}};
5238
+ static swig_type_info _swigt__p_FXDrawable[] = {{"_p_FXDrawable", 0, "FXDrawable *", 0, 0, 0, 0},{"_p_FXDriveBox", _p_FXDriveBoxTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXDial", _p_FXDialTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXToolBar", _p_FXToolBarTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXComposite", _p_FXCompositeTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXToolTip", _p_FXToolTipTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXTabBook", _p_FXTabBookTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXTextField", _p_FXTextFieldTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXArrowButton", _p_FXArrowButtonTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXFoldingList", _p_FXFoldingListTo_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_FXTopWindow", _p_FXTopWindowTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXRootWindow", _p_FXRootWindowTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXMainWindow", _p_FXMainWindowTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXSplashWindow", _p_FXSplashWindowTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXScrollWindow", _p_FXScrollWindowTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXScrollCorner", _p_FXScrollCornerTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXWindow", _p_FXWindowTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXRuler", _p_FXRulerTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXCanvas", _p_FXCanvasTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXComboBox", _p_FXComboBoxTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXVerticalSeparator", _p_FXVerticalSeparatorTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXHorizontalSeparator", _p_FXHorizontalSeparatorTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXSeparator", _p_FXSeparatorTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXStatusLine", _p_FXStatusLineTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXHorizontalFrame", _p_FXHorizontalFrameTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXVerticalFrame", _p_FXVerticalFrameTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FX4Splitter", _p_FX4SplitterTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXSplitter", _p_FXSplitterTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXRealSpinner", _p_FXRealSpinnerTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXSpinner", _p_FXSpinnerTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXPacker", _p_FXPackerTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXScrollBar", _p_FXScrollBarTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXColorWheel", _p_FXColorWheelTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXBitmapFrame", _p_FXBitmapFrameTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXDirBox", _p_FXDirBoxTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXDockHandler", _p_FXDockHandlerTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXToolBarGrip", _p_FXToolBarGripTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_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_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_FXDirSelector", _p_FXDirSelectorTo_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_FXDirList", _p_FXDirListTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXKnob", _p_FXKnobTo_p_FXDrawable, 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_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_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_FXTreeList", _p_FXTreeListTo_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_FXColorRing", _p_FXColorRingTo_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}};
5185
5239
  static swig_type_info _swigt__p_FXDirItem[] = {{"_p_FXDirItem", 0, "FXDirItem *", 0, 0, 0, 0},{"_p_FXDirItem", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
5186
5240
  static swig_type_info _swigt__p_FXTreeList[] = {{"_p_FXTreeList", 0, "FXTreeList *", 0, 0, 0, 0},{"_p_FXDirList", _p_FXDirListTo_p_FXTreeList, 0, 0, 0, 0, 0},{"_p_FXTreeList", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
5187
5241
  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}};
@@ -5352,6 +5406,7 @@ SWIGEXPORT(void) Init_treelist(void) {
5352
5406
  rb_define_method(cFXFoldingList.klass, "appendItem", VALUEFUNC(_wrap_FXFoldingList_appendItem), -1);
5353
5407
  rb_define_method(cFXFoldingList.klass, "prependItem", VALUEFUNC(_wrap_FXFoldingList_prependItem), -1);
5354
5408
  rb_define_method(cFXFoldingList.klass, "moveItem", VALUEFUNC(_wrap_FXFoldingList_moveItem), -1);
5409
+ rb_define_method(cFXFoldingList.klass, "extractItem", VALUEFUNC(_wrap_FXFoldingList_extractItem), -1);
5355
5410
  rb_define_method(cFXFoldingList.klass, "removeItem", VALUEFUNC(_wrap_FXFoldingList_removeItem), -1);
5356
5411
  rb_define_method(cFXFoldingList.klass, "removeItems", VALUEFUNC(_wrap_FXFoldingList_removeItems), -1);
5357
5412
  rb_define_method(cFXFoldingList.klass, "clearItems", VALUEFUNC(_wrap_FXFoldingList_clearItems), -1);
@@ -5430,6 +5485,9 @@ SWIGEXPORT(void) Init_treelist(void) {
5430
5485
  rb_define_method(cFXFoldingList.klass, "contains", VALUEFUNC(_wrap_FXFoldingList_contains), -1);
5431
5486
  rb_define_method(cFXFoldingList.klass, "doesSaveUnder", VALUEFUNC(_wrap_FXFoldingList_doesSaveUnder), -1);
5432
5487
  rb_define_method(cFXFoldingList.klass, "setBackColor", VALUEFUNC(_wrap_FXFoldingList_setBackColor), -1);
5488
+ rb_define_method(cFXFoldingList.klass, "tr", VALUEFUNC(_wrap_FXFoldingList_tr), -1);
5489
+ rb_define_method(cFXFoldingList.klass, "dropEnable", VALUEFUNC(_wrap_FXFoldingList_dropEnable), -1);
5490
+ rb_define_method(cFXFoldingList.klass, "dropDisable", VALUEFUNC(_wrap_FXFoldingList_dropDisable), -1);
5433
5491
  rb_define_method(cFXFoldingList.klass, "setShape", VALUEFUNC(_wrap_FXFoldingList_setShape), -1);
5434
5492
  rb_define_method(cFXFoldingList.klass, "clearShape", VALUEFUNC(_wrap_FXFoldingList_clearShape), -1);
5435
5493
  rb_define_method(cFXFoldingList.klass, "getViewportHeight", VALUEFUNC(_wrap_FXFoldingList_getViewportHeight), -1);
@@ -5563,6 +5621,7 @@ SWIGEXPORT(void) Init_treelist(void) {
5563
5621
  rb_define_method(cFXTreeList.klass, "appendItem", VALUEFUNC(_wrap_FXTreeList_appendItem), -1);
5564
5622
  rb_define_method(cFXTreeList.klass, "prependItem", VALUEFUNC(_wrap_FXTreeList_prependItem), -1);
5565
5623
  rb_define_method(cFXTreeList.klass, "moveItem", VALUEFUNC(_wrap_FXTreeList_moveItem), -1);
5624
+ rb_define_method(cFXTreeList.klass, "extractItem", VALUEFUNC(_wrap_FXTreeList_extractItem), -1);
5566
5625
  rb_define_method(cFXTreeList.klass, "removeItem", VALUEFUNC(_wrap_FXTreeList_removeItem), -1);
5567
5626
  rb_define_method(cFXTreeList.klass, "removeItems", VALUEFUNC(_wrap_FXTreeList_removeItems), -1);
5568
5627
  rb_define_method(cFXTreeList.klass, "clearItems", VALUEFUNC(_wrap_FXTreeList_clearItems), -1);
@@ -5639,6 +5698,9 @@ SWIGEXPORT(void) Init_treelist(void) {
5639
5698
  rb_define_method(cFXTreeList.klass, "contains", VALUEFUNC(_wrap_FXTreeList_contains), -1);
5640
5699
  rb_define_method(cFXTreeList.klass, "doesSaveUnder", VALUEFUNC(_wrap_FXTreeList_doesSaveUnder), -1);
5641
5700
  rb_define_method(cFXTreeList.klass, "setBackColor", VALUEFUNC(_wrap_FXTreeList_setBackColor), -1);
5701
+ rb_define_method(cFXTreeList.klass, "tr", VALUEFUNC(_wrap_FXTreeList_tr), -1);
5702
+ rb_define_method(cFXTreeList.klass, "dropEnable", VALUEFUNC(_wrap_FXTreeList_dropEnable), -1);
5703
+ rb_define_method(cFXTreeList.klass, "dropDisable", VALUEFUNC(_wrap_FXTreeList_dropDisable), -1);
5642
5704
  rb_define_method(cFXTreeList.klass, "setShape", VALUEFUNC(_wrap_FXTreeList_setShape), -1);
5643
5705
  rb_define_method(cFXTreeList.klass, "clearShape", VALUEFUNC(_wrap_FXTreeList_clearShape), -1);
5644
5706
  rb_define_method(cFXTreeList.klass, "getViewportHeight", VALUEFUNC(_wrap_FXTreeList_getViewportHeight), -1);
@@ -5810,6 +5872,9 @@ SWIGEXPORT(void) Init_treelist(void) {
5810
5872
  rb_define_method(cFXDirList.klass, "contains", VALUEFUNC(_wrap_FXDirList_contains), -1);
5811
5873
  rb_define_method(cFXDirList.klass, "doesSaveUnder", VALUEFUNC(_wrap_FXDirList_doesSaveUnder), -1);
5812
5874
  rb_define_method(cFXDirList.klass, "setBackColor", VALUEFUNC(_wrap_FXDirList_setBackColor), -1);
5875
+ rb_define_method(cFXDirList.klass, "tr", VALUEFUNC(_wrap_FXDirList_tr), -1);
5876
+ rb_define_method(cFXDirList.klass, "dropEnable", VALUEFUNC(_wrap_FXDirList_dropEnable), -1);
5877
+ rb_define_method(cFXDirList.klass, "dropDisable", VALUEFUNC(_wrap_FXDirList_dropDisable), -1);
5813
5878
  rb_define_method(cFXDirList.klass, "setShape", VALUEFUNC(_wrap_FXDirList_setShape), -1);
5814
5879
  rb_define_method(cFXDirList.klass, "clearShape", VALUEFUNC(_wrap_FXDirList_clearShape), -1);
5815
5880
  rb_define_method(cFXDirList.klass, "getViewportHeight", VALUEFUNC(_wrap_FXDirList_getViewportHeight), -1);
@@ -549,13 +549,13 @@ SWIGIMPORT(void) SWIG_Ruby_ConvertPacked(VALUE obj, void *ptr, int sz, swig_ty
549
549
  #define SWIGTYPE_p_FXFontSelector swig_types[30]
550
550
  #define SWIGTYPE_p_FXDrawable swig_types[31]
551
551
  #define SWIGTYPE_p_FXDockSite swig_types[32]
552
- #define SWIGTYPE_p_FXDockTitle swig_types[33]
553
- #define SWIGTYPE_p_FXStream swig_types[34]
554
- #define SWIGTYPE_p_FXTreeListBox swig_types[35]
555
- #define SWIGTYPE_p_FXListBox swig_types[36]
556
- #define SWIGTYPE_p_FXFontDesc swig_types[37]
557
- #define SWIGTYPE_p_FXApp swig_types[38]
558
- #define SWIGTYPE_p_FXRegion swig_types[39]
552
+ #define SWIGTYPE_p_FXStream swig_types[33]
553
+ #define SWIGTYPE_p_FXTreeListBox swig_types[34]
554
+ #define SWIGTYPE_p_FXListBox swig_types[35]
555
+ #define SWIGTYPE_p_FXFontDesc swig_types[36]
556
+ #define SWIGTYPE_p_FXApp swig_types[37]
557
+ #define SWIGTYPE_p_FXRegion swig_types[38]
558
+ #define SWIGTYPE_p_FXListItem swig_types[39]
559
559
  #define SWIGTYPE_p_FXDockBar swig_types[40]
560
560
  #define SWIGTYPE_p_FXFont swig_types[41]
561
561
  #define SWIGTYPE_p_FXTabBar swig_types[42]
@@ -636,7 +636,7 @@ static void free_FX7Segment(FX7Segment *);
636
636
  FXSpinner *new_FXSpinner(FXComposite *p,FXint cols,FXObject *tgt,FXSelector sel,FXuint opts,FXint x,FXint y,FXint w,FXint h,FXint pl,FXint pr,FXint pt,FXint pb){
637
637
  return new FXRbSpinner(p,cols,tgt,sel,opts,x,y,w,h,pl,pr,pt,pb);
638
638
  }
639
- void FXSpinner_setRange(FXSpinner *self,VALUE range){
639
+ void FXSpinner_setRange(FXSpinner *self,VALUE range,FXbool notify){
640
640
  FXint lo,hi;
641
641
  FXRbRange2LoHi(range,lo,hi);
642
642
  self->setRange(lo,hi);
@@ -652,7 +652,7 @@ static void free_FXSpinner(FXSpinner *);
652
652
  FXRealSpinner *new_FXRealSpinner(FXComposite *p,FXint cols,FXObject *tgt,FXSelector sel,FXuint opts,FXint x,FXint y,FXint w,FXint h,FXint pl,FXint pr,FXint pt,FXint pb){
653
653
  return new FXRbRealSpinner(p,cols,tgt,sel,opts,x,y,w,h,pl,pr,pt,pb);
654
654
  }
655
- void FXRealSpinner_setRange(FXRealSpinner *self,VALUE range){
655
+ void FXRealSpinner_setRange(FXRealSpinner *self,VALUE range,FXbool notify){
656
656
  FXdouble lo,hi;
657
657
  FXRbRange2LoHi(range,lo,hi);
658
658
  self->setRange(lo,hi);
@@ -1011,12 +1011,6 @@ static swig_type_info *FXDockHandler_dynamic_cast(void **ptr) {
1011
1011
  return 0;
1012
1012
  }
1013
1013
 
1014
- FXDockTitle *new_FXDockTitle(FXComposite *p,FXString const &text,FXObject *tgt,FXSelector sel,FXuint opts,FXint x,FXint y,FXint w,FXint h,FXint pl,FXint pr,FXint pt,FXint pb){
1015
- return new FXRbDockTitle(p,text,tgt,sel,opts,x,y,w,h,pl,pr,pt,pb);
1016
- }
1017
-
1018
- swig_class cFXDockTitle;
1019
- static void free_FXDockTitle(FXDockTitle *);
1020
1014
  FXToolBarGrip *new_FXToolBarGrip(FXToolBar *p,FXObject *tgt,FXSelector sel,FXuint opts,FXint x,FXint y,FXint w,FXint h){
1021
1015
  return new FXRbToolBarGrip(p,tgt,sel,opts,x,y,w,h);
1022
1016
  }
@@ -1033,9 +1027,8 @@ static VALUE _wrap_FX7Segment_onPaint(int argc, VALUE *argv, VALUE self) { FX7Se
1033
1027
  FXObject *arg2 = (FXObject *) 0 ; FXSelector arg3 ; void *arg4 = (void *) 0 ; long result; VALUE vresult = Qnil;
1034
1028
  if ((argc < 3) || (argc > 3)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 3)",argc);
1035
1029
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FX7Segment, 1);
1036
- SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXObject, 1); arg3 = NUM2UINT(argv[1]);
1037
- SWIG_ConvertPtr(argv[2], (void **) &arg4, 0, 1); result = (long)(arg1)->onPaint(arg2,arg3,arg4); vresult = INT2NUM(result);
1038
- return vresult; }
1030
+ SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXObject, 1); arg3 = NUM2UINT(argv[1]); arg4 = to_FXEvent(argv[2]);
1031
+ result = (long)(arg1)->onPaint(arg2,arg3,arg4); vresult = INT2NUM(result); return vresult; }
1039
1032
  static VALUE _wrap_FX7Segment_onCmdSetValue(int argc, VALUE *argv, VALUE self) { FX7Segment *arg1 = (FX7Segment *) 0 ;
1040
1033
  FXObject *arg2 = (FXObject *) 0 ; FXSelector arg3 ; void *arg4 = (void *) 0 ; long result; VALUE vresult = Qnil;
1041
1034
  if ((argc < 3) || (argc > 3)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 3)",argc);
@@ -1085,6 +1078,48 @@ static VALUE _wrap_FX7Segment_onCmdGetStringValue(int argc, VALUE *argv, VALUE s
1085
1078
  SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXObject, 1); arg3 = NUM2UINT(argv[1]);
1086
1079
  SWIG_ConvertPtr(argv[2], (void **) &arg4, 0, 1); result = (long)(arg1)->onCmdGetStringValue(arg2,arg3,arg4);
1087
1080
  vresult = INT2NUM(result); return vresult; }
1081
+ static VALUE _wrap_FX7Segment_onCmdSetHelp(int argc, VALUE *argv, VALUE self) { FX7Segment *arg1 = (FX7Segment *) 0 ;
1082
+ FXObject *arg2 = (FXObject *) 0 ; FXSelector arg3 ; void *arg4 = (void *) 0 ; long result; VALUE vresult = Qnil;
1083
+ if ((argc < 3) || (argc > 3)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 3)",argc);
1084
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FX7Segment, 1);
1085
+ SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXObject, 1); arg3 = NUM2UINT(argv[1]);
1086
+ SWIG_ConvertPtr(argv[2], (void **) &arg4, 0, 1); result = (long)(arg1)->onCmdSetHelp(arg2,arg3,arg4);
1087
+ vresult = INT2NUM(result); return vresult; }
1088
+ static VALUE _wrap_FX7Segment_onCmdGetHelp(int argc, VALUE *argv, VALUE self) { FX7Segment *arg1 = (FX7Segment *) 0 ;
1089
+ FXObject *arg2 = (FXObject *) 0 ; FXSelector arg3 ; void *arg4 = (void *) 0 ; long result; VALUE vresult = Qnil;
1090
+ if ((argc < 3) || (argc > 3)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 3)",argc);
1091
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FX7Segment, 1);
1092
+ SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXObject, 1); arg3 = NUM2UINT(argv[1]);
1093
+ SWIG_ConvertPtr(argv[2], (void **) &arg4, 0, 1); result = (long)(arg1)->onCmdGetHelp(arg2,arg3,arg4);
1094
+ vresult = INT2NUM(result); return vresult; }
1095
+ static VALUE _wrap_FX7Segment_onCmdSetTip(int argc, VALUE *argv, VALUE self) { FX7Segment *arg1 = (FX7Segment *) 0 ;
1096
+ FXObject *arg2 = (FXObject *) 0 ; FXSelector arg3 ; void *arg4 = (void *) 0 ; long result; VALUE vresult = Qnil;
1097
+ if ((argc < 3) || (argc > 3)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 3)",argc);
1098
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FX7Segment, 1);
1099
+ SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXObject, 1); arg3 = NUM2UINT(argv[1]);
1100
+ SWIG_ConvertPtr(argv[2], (void **) &arg4, 0, 1); result = (long)(arg1)->onCmdSetTip(arg2,arg3,arg4);
1101
+ vresult = INT2NUM(result); return vresult; }
1102
+ static VALUE _wrap_FX7Segment_onCmdGetTip(int argc, VALUE *argv, VALUE self) { FX7Segment *arg1 = (FX7Segment *) 0 ;
1103
+ FXObject *arg2 = (FXObject *) 0 ; FXSelector arg3 ; void *arg4 = (void *) 0 ; long result; VALUE vresult = Qnil;
1104
+ if ((argc < 3) || (argc > 3)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 3)",argc);
1105
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FX7Segment, 1);
1106
+ SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXObject, 1); arg3 = NUM2UINT(argv[1]);
1107
+ SWIG_ConvertPtr(argv[2], (void **) &arg4, 0, 1); result = (long)(arg1)->onCmdGetTip(arg2,arg3,arg4);
1108
+ vresult = INT2NUM(result); return vresult; }
1109
+ static VALUE _wrap_FX7Segment_onQueryHelp(int argc, VALUE *argv, VALUE self) { FX7Segment *arg1 = (FX7Segment *) 0 ;
1110
+ FXObject *arg2 = (FXObject *) 0 ; FXSelector arg3 ; void *arg4 = (void *) 0 ; long result; VALUE vresult = Qnil;
1111
+ if ((argc < 3) || (argc > 3)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 3)",argc);
1112
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FX7Segment, 1);
1113
+ SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXObject, 1); arg3 = NUM2UINT(argv[1]);
1114
+ SWIG_ConvertPtr(argv[2], (void **) &arg4, 0, 1); result = (long)(arg1)->onQueryHelp(arg2,arg3,arg4);
1115
+ vresult = INT2NUM(result); return vresult; }
1116
+ static VALUE _wrap_FX7Segment_onQueryTip(int argc, VALUE *argv, VALUE self) { FX7Segment *arg1 = (FX7Segment *) 0 ;
1117
+ FXObject *arg2 = (FXObject *) 0 ; FXSelector arg3 ; void *arg4 = (void *) 0 ; long result; VALUE vresult = Qnil;
1118
+ if ((argc < 3) || (argc > 3)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 3)",argc);
1119
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FX7Segment, 1);
1120
+ SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXObject, 1); arg3 = NUM2UINT(argv[1]);
1121
+ SWIG_ConvertPtr(argv[2], (void **) &arg4, 0, 1); result = (long)(arg1)->onQueryTip(arg2,arg3,arg4);
1122
+ vresult = INT2NUM(result); return vresult; }
1088
1123
  #ifdef HAVE_RB_DEFINE_ALLOC_FUNC
1089
1124
  static VALUE _wrap_FX7Segment_allocate(VALUE self) {
1090
1125
  #else
@@ -1107,50 +1142,47 @@ static VALUE _wrap_new_FX7Segment(int argc, VALUE *argv, VALUE self) { FXComposi
1107
1142
  if (argc > 10) { arg11 = NUM2INT(argv[10]); } {
1108
1143
  result = (FX7Segment *)new_FX7Segment(arg1,(FXString const &)*arg2,arg3,arg4,arg5,arg6,arg7,arg8,arg9,arg10,arg11);
1109
1144
  DATA_PTR(self) = result; FXRbRegisterRubyObj(self, result); if(rb_block_given_p()){ rb_yield(self); } } return self; }
1110
- static VALUE _wrap_FX7Segment_setText(int argc, VALUE *argv, VALUE self) { FX7Segment *arg1 = (FX7Segment *) 0 ;
1145
+ static VALUE _wrap_FX7Segment_texte___(int argc, VALUE *argv, VALUE self) { FX7Segment *arg1 = (FX7Segment *) 0 ;
1111
1146
  FXString *arg2 = 0 ; SwigValueWrapper<FXString > p2 ; if ((argc < 1) || (argc > 1))
1112
1147
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1113
1148
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FX7Segment, 1); p2 = to_FXString(argv[0]); arg2 = &p2;
1114
1149
  (arg1)->setText((FXString const &)*arg2); return Qnil; }
1115
- static VALUE _wrap_FX7Segment_getText(int argc, VALUE *argv, VALUE self) { FX7Segment *arg1 = (FX7Segment *) 0 ;
1116
- FXString result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
1117
- rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1150
+ static VALUE _wrap_FX7Segment_text(int argc, VALUE *argv, VALUE self) { FX7Segment *arg1 = (FX7Segment *) 0 ; FXString result;
1151
+ VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1118
1152
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FX7Segment, 1); result = ((FX7Segment const *)arg1)->getText();
1119
1153
  vresult = rb_str_new2((&result)->text()); return vresult; }
1120
- static VALUE _wrap_FX7Segment_setTextColor(int argc, VALUE *argv, VALUE self) { FX7Segment *arg1 = (FX7Segment *) 0 ;
1154
+ static VALUE _wrap_FX7Segment_textColore___(int argc, VALUE *argv, VALUE self) { FX7Segment *arg1 = (FX7Segment *) 0 ;
1121
1155
  FXColor arg2 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1122
1156
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FX7Segment, 1); arg2 = to_FXColor(argv[0]); (arg1)->setTextColor(arg2);
1123
1157
  return Qnil; }
1124
- static VALUE _wrap_FX7Segment_getTextColor(int argc, VALUE *argv, VALUE self) { FX7Segment *arg1 = (FX7Segment *) 0 ;
1158
+ static VALUE _wrap_FX7Segment_textColor(int argc, VALUE *argv, VALUE self) { FX7Segment *arg1 = (FX7Segment *) 0 ;
1125
1159
  FXColor result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
1126
1160
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1127
1161
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FX7Segment, 1);
1128
1162
  result = (FXColor)((FX7Segment const *)arg1)->getTextColor(); vresult = UINT2NUM(result); return vresult; }
1129
- static VALUE _wrap_FX7Segment_setCellWidth(int argc, VALUE *argv, VALUE self) { FX7Segment *arg1 = (FX7Segment *) 0 ;
1163
+ static VALUE _wrap_FX7Segment_cellWidthe___(int argc, VALUE *argv, VALUE self) { FX7Segment *arg1 = (FX7Segment *) 0 ;
1130
1164
  FXint arg2 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1131
1165
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FX7Segment, 1); arg2 = NUM2INT(argv[0]); (arg1)->setCellWidth(arg2);
1132
1166
  return Qnil; }
1133
- static VALUE _wrap_FX7Segment_getCellWidth(int argc, VALUE *argv, VALUE self) { FX7Segment *arg1 = (FX7Segment *) 0 ;
1134
- FXint result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
1135
- rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1167
+ static VALUE _wrap_FX7Segment_cellWidth(int argc, VALUE *argv, VALUE self) { FX7Segment *arg1 = (FX7Segment *) 0 ; FXint result;
1168
+ VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1136
1169
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FX7Segment, 1);
1137
1170
  result = (FXint)((FX7Segment const *)arg1)->getCellWidth(); vresult = INT2NUM(result); return vresult; }
1138
- static VALUE _wrap_FX7Segment_setCellHeight(int argc, VALUE *argv, VALUE self) { FX7Segment *arg1 = (FX7Segment *) 0 ;
1171
+ static VALUE _wrap_FX7Segment_cellHeighte___(int argc, VALUE *argv, VALUE self) { FX7Segment *arg1 = (FX7Segment *) 0 ;
1139
1172
  FXint arg2 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1140
1173
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FX7Segment, 1); arg2 = NUM2INT(argv[0]); (arg1)->setCellHeight(arg2);
1141
1174
  return Qnil; }
1142
- static VALUE _wrap_FX7Segment_getCellHeight(int argc, VALUE *argv, VALUE self) { FX7Segment *arg1 = (FX7Segment *) 0 ;
1175
+ static VALUE _wrap_FX7Segment_cellHeight(int argc, VALUE *argv, VALUE self) { FX7Segment *arg1 = (FX7Segment *) 0 ;
1143
1176
  FXint result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
1144
1177
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1145
1178
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FX7Segment, 1);
1146
1179
  result = (FXint)((FX7Segment const *)arg1)->getCellHeight(); vresult = INT2NUM(result); return vresult; }
1147
- static VALUE _wrap_FX7Segment_setThickness(int argc, VALUE *argv, VALUE self) { FX7Segment *arg1 = (FX7Segment *) 0 ;
1180
+ static VALUE _wrap_FX7Segment_thicknesse___(int argc, VALUE *argv, VALUE self) { FX7Segment *arg1 = (FX7Segment *) 0 ;
1148
1181
  FXint arg2 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1149
1182
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FX7Segment, 1); arg2 = NUM2INT(argv[0]); (arg1)->setThickness(arg2);
1150
1183
  return Qnil; }
1151
- static VALUE _wrap_FX7Segment_getThickness(int argc, VALUE *argv, VALUE self) { FX7Segment *arg1 = (FX7Segment *) 0 ;
1152
- FXint result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
1153
- rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1184
+ static VALUE _wrap_FX7Segment_thickness(int argc, VALUE *argv, VALUE self) { FX7Segment *arg1 = (FX7Segment *) 0 ; FXint result;
1185
+ VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1154
1186
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FX7Segment, 1);
1155
1187
  result = (FXint)((FX7Segment const *)arg1)->getThickness(); vresult = INT2NUM(result); return vresult; }
1156
1188
  static VALUE _wrap_FX7Segment_set7SegmentStyle(int argc, VALUE *argv, VALUE self) { FX7Segment *arg1 = (FX7Segment *) 0 ;
@@ -1162,15 +1194,36 @@ static VALUE _wrap_FX7Segment_get7SegmentStyle(int argc, VALUE *argv, VALUE self
1162
1194
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1163
1195
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FX7Segment, 1);
1164
1196
  result = (FXuint)((FX7Segment const *)arg1)->get7SegmentStyle(); vresult = UINT2NUM(result); return vresult; }
1165
- static VALUE _wrap_FX7Segment_setJustify(int argc, VALUE *argv, VALUE self) { FX7Segment *arg1 = (FX7Segment *) 0 ;
1197
+ static VALUE _wrap_FX7Segment_justifye___(int argc, VALUE *argv, VALUE self) { FX7Segment *arg1 = (FX7Segment *) 0 ;
1166
1198
  FXuint arg2 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1167
1199
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FX7Segment, 1); arg2 = NUM2UINT(argv[0]); (arg1)->setJustify(arg2);
1168
1200
  return Qnil; }
1169
- static VALUE _wrap_FX7Segment_getJustify(int argc, VALUE *argv, VALUE self) { FX7Segment *arg1 = (FX7Segment *) 0 ;
1170
- FXuint result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
1171
- rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1201
+ static VALUE _wrap_FX7Segment_justify(int argc, VALUE *argv, VALUE self) { FX7Segment *arg1 = (FX7Segment *) 0 ; FXuint result;
1202
+ VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1172
1203
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FX7Segment, 1); result = (FXuint)((FX7Segment const *)arg1)->getJustify();
1173
1204
  vresult = UINT2NUM(result); return vresult; }
1205
+ static VALUE _wrap_FX7Segment_helpTexte___(int argc, VALUE *argv, VALUE self) { FX7Segment *arg1 = (FX7Segment *) 0 ;
1206
+ FXString *arg2 = 0 ; SwigValueWrapper<FXString > p2 ; if ((argc < 1) || (argc > 1))
1207
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1208
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FX7Segment, 1); p2 = to_FXString(argv[0]); arg2 = &p2;
1209
+ (arg1)->setHelpText((FXString const &)*arg2); return Qnil; }
1210
+ static VALUE _wrap_FX7Segment_helpText(int argc, VALUE *argv, VALUE self) { FX7Segment *arg1 = (FX7Segment *) 0 ;
1211
+ FXString *result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
1212
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1213
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FX7Segment, 1); {
1214
+ FXString const &_result_ref = ((FX7Segment const *)arg1)->getHelpText(); result = (FXString *) &_result_ref; }
1215
+ vresult = rb_str_new2(result->text()); return vresult; }
1216
+ static VALUE _wrap_FX7Segment_tipTexte___(int argc, VALUE *argv, VALUE self) { FX7Segment *arg1 = (FX7Segment *) 0 ;
1217
+ FXString *arg2 = 0 ; SwigValueWrapper<FXString > p2 ; if ((argc < 1) || (argc > 1))
1218
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1219
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FX7Segment, 1); p2 = to_FXString(argv[0]); arg2 = &p2;
1220
+ (arg1)->setTipText((FXString const &)*arg2); return Qnil; }
1221
+ static VALUE _wrap_FX7Segment_tipText(int argc, VALUE *argv, VALUE self) { FX7Segment *arg1 = (FX7Segment *) 0 ;
1222
+ FXString *result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
1223
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1224
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FX7Segment, 1); {
1225
+ FXString const &_result_ref = ((FX7Segment const *)arg1)->getTipText(); result = (FXString *) &_result_ref; }
1226
+ vresult = rb_str_new2(result->text()); return vresult; }
1174
1227
  static void
1175
1228
  free_FX7Segment(FX7Segment *arg1) {
1176
1229
  delete arg1;
@@ -1218,10 +1271,10 @@ static VALUE _wrap_FX7Segment_getHeightForWidth(int argc, VALUE *argv, VALUE sel
1218
1271
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1219
1272
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FX7Segment, 1); arg2 = NUM2INT(argv[0]);
1220
1273
  result = (FXint)FX7Segment_getHeightForWidth(arg1,arg2); vresult = INT2NUM(result); return vresult; }
1221
- static VALUE _wrap_FX7Segment_canFocus(int argc, VALUE *argv, VALUE self) { FX7Segment *arg1 = (FX7Segment *) 0 ; FXbool result;
1274
+ static VALUE _wrap_FX7Segment_canFocus(int argc, VALUE *argv, VALUE self) { FX7Segment *arg1 = (FX7Segment *) 0 ; bool result;
1222
1275
  VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1223
1276
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FX7Segment, 1);
1224
- result = (FXbool)FX7Segment_canFocus((FX7Segment const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
1277
+ result = (bool)FX7Segment_canFocus((FX7Segment const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
1225
1278
  static VALUE _wrap_FX7Segment_setFocus(int argc, VALUE *argv, VALUE self) { FX7Segment *arg1 = (FX7Segment *) 0 ;
1226
1279
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1227
1280
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FX7Segment, 1); FX7Segment_setFocus(arg1); return Qnil; }
@@ -1277,25 +1330,37 @@ static VALUE _wrap_FX7Segment_hide(int argc, VALUE *argv, VALUE self) { FX7Segme
1277
1330
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1278
1331
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FX7Segment, 1); FX7Segment_hide(arg1); return Qnil; }
1279
1332
  static VALUE _wrap_FX7Segment_isComposite(int argc, VALUE *argv, VALUE self) { FX7Segment *arg1 = (FX7Segment *) 0 ;
1280
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
1333
+ bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
1281
1334
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1282
1335
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FX7Segment, 1);
1283
- result = (FXbool)FX7Segment_isComposite((FX7Segment const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
1336
+ result = (bool)FX7Segment_isComposite((FX7Segment const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
1284
1337
  static VALUE _wrap_FX7Segment_contains(int argc, VALUE *argv, VALUE self) { FX7Segment *arg1 = (FX7Segment *) 0 ; FXint arg2 ;
1285
- FXint arg3 ; FXbool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
1338
+ FXint arg3 ; bool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
1286
1339
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
1287
1340
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FX7Segment, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]);
1288
- result = (FXbool)FX7Segment_contains((FX7Segment const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse;
1289
- return vresult; }
1341
+ result = (bool)FX7Segment_contains((FX7Segment const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse; return vresult; }
1290
1342
  static VALUE _wrap_FX7Segment_doesSaveUnder(int argc, VALUE *argv, VALUE self) { FX7Segment *arg1 = (FX7Segment *) 0 ;
1291
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
1343
+ bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
1292
1344
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1293
1345
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FX7Segment, 1);
1294
- result = (FXbool)FX7Segment_doesSaveUnder((FX7Segment const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
1346
+ result = (bool)FX7Segment_doesSaveUnder((FX7Segment const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
1295
1347
  static VALUE _wrap_FX7Segment_setBackColor(int argc, VALUE *argv, VALUE self) { FX7Segment *arg1 = (FX7Segment *) 0 ;
1296
1348
  FXColor arg2 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1297
1349
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FX7Segment, 1); arg2 = to_FXColor(argv[0]);
1298
1350
  FX7Segment_setBackColor(arg1,arg2); return Qnil; }
1351
+ static VALUE _wrap_FX7Segment_tr(int argc, VALUE *argv, VALUE self) { FX7Segment *arg1 = (FX7Segment *) 0 ; FXchar *arg2 ;
1352
+ FXchar *arg3 = (FXchar *) 0 ; FXchar *result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 2))
1353
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1354
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FX7Segment, 1); arg2 = StringValuePtr(argv[0]); if (argc > 1) {
1355
+ arg3 = StringValuePtr(argv[1]); }
1356
+ result = (FXchar *)FX7Segment_tr((FX7Segment const *)arg1,(FXchar const *)arg2,(FXchar const *)arg3);
1357
+ vresult = rb_str_new2(result); return vresult; }
1358
+ static VALUE _wrap_FX7Segment_dropEnable(int argc, VALUE *argv, VALUE self) { FX7Segment *arg1 = (FX7Segment *) 0 ;
1359
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1360
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FX7Segment, 1); FX7Segment_dropEnable(arg1); return Qnil; }
1361
+ static VALUE _wrap_FX7Segment_dropDisable(int argc, VALUE *argv, VALUE self) { FX7Segment *arg1 = (FX7Segment *) 0 ;
1362
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1363
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FX7Segment, 1); FX7Segment_dropDisable(arg1); return Qnil; }
1299
1364
  static VALUE _wrap_FX7Segment_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) { FX7Segment *arg1 = (FX7Segment *) 0 ;
1300
1365
  FXRegion *arg2 = 0 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1301
1366
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FX7Segment, 1);
@@ -1451,11 +1516,23 @@ static VALUE _wrap_new_FXSpinner(int argc, VALUE *argv, VALUE self) { FXComposit
1451
1516
  result = (FXSpinner *)new_FXSpinner(arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8,arg9,arg10,arg11,arg12,arg13);
1452
1517
  DATA_PTR(self) = result; FXRbRegisterRubyObj(self, result); if(rb_block_given_p()){ rb_yield(self); } } return self; }
1453
1518
  static VALUE _wrap_FXSpinner_increment(int argc, VALUE *argv, VALUE self) { FXSpinner *arg1 = (FXSpinner *) 0 ;
1454
- if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1455
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXSpinner, 1); (arg1)->increment(); return Qnil; }
1519
+ FXbool arg2 = (FXbool) 0 ; if ((argc < 0) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1520
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXSpinner, 1); if (argc > 0) { arg2 = to_FXbool(argv[0]); }
1521
+ (arg1)->increment(arg2); return Qnil; }
1522
+ static VALUE _wrap_FXSpinner_incrementByAmount(int argc, VALUE *argv, VALUE self) { FXSpinner *arg1 = (FXSpinner *) 0 ;
1523
+ FXint arg2 ; FXbool arg3 = (FXbool) 0 ; if ((argc < 1) || (argc > 2))
1524
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1525
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXSpinner, 1); arg2 = NUM2INT(argv[0]); if (argc > 1) {
1526
+ arg3 = to_FXbool(argv[1]); } (arg1)->incrementByAmount(arg2,arg3); return Qnil; }
1456
1527
  static VALUE _wrap_FXSpinner_decrement(int argc, VALUE *argv, VALUE self) { FXSpinner *arg1 = (FXSpinner *) 0 ;
1457
- if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1458
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXSpinner, 1); (arg1)->decrement(); return Qnil; }
1528
+ FXbool arg2 = (FXbool) 0 ; if ((argc < 0) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1529
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXSpinner, 1); if (argc > 0) { arg2 = to_FXbool(argv[0]); }
1530
+ (arg1)->decrement(arg2); return Qnil; }
1531
+ static VALUE _wrap_FXSpinner_decrementByAmount(int argc, VALUE *argv, VALUE self) { FXSpinner *arg1 = (FXSpinner *) 0 ;
1532
+ FXint arg2 ; FXbool arg3 = (FXbool) 0 ; if ((argc < 1) || (argc > 2))
1533
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1534
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXSpinner, 1); arg2 = NUM2INT(argv[0]); if (argc > 1) {
1535
+ arg3 = to_FXbool(argv[1]); } (arg1)->decrementByAmount(arg2,arg3); return Qnil; }
1459
1536
  static VALUE _wrap_FXSpinner_isCyclic(int argc, VALUE *argv, VALUE self) { FXSpinner *arg1 = (FXSpinner *) 0 ; FXbool result;
1460
1537
  VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1461
1538
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXSpinner, 1); result = (FXbool)((FXSpinner const *)arg1)->isCyclic();
@@ -1478,9 +1555,9 @@ static VALUE _wrap_FXSpinner_getValue(int argc, VALUE *argv, VALUE self) { FXSpi
1478
1555
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXSpinner, 1); result = (FXint)((FXSpinner const *)arg1)->getValue();
1479
1556
  vresult = INT2NUM(result); return vresult; }
1480
1557
  static VALUE _wrap_FXSpinner_setRange(int argc, VALUE *argv, VALUE self) { FXSpinner *arg1 = (FXSpinner *) 0 ; VALUE arg2 ;
1481
- if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1482
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXSpinner, 1); arg2 = argv[0]; FXSpinner_setRange(arg1,arg2);
1483
- return Qnil; }
1558
+ FXbool arg3 = (FXbool) 0 ; if ((argc < 1) || (argc > 2)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1559
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXSpinner, 1); arg2 = argv[0]; if (argc > 1) { arg3 = to_FXbool(argv[1]); }
1560
+ FXSpinner_setRange(arg1,arg2,arg3); return Qnil; }
1484
1561
  static VALUE _wrap_FXSpinner_getRange(int argc, VALUE *argv, VALUE self) { FXSpinner *arg1 = (FXSpinner *) 0 ; VALUE result;
1485
1562
  VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1486
1563
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXSpinner, 1);
@@ -1651,10 +1728,10 @@ static VALUE _wrap_FXSpinner_getHeightForWidth(int argc, VALUE *argv, VALUE self
1651
1728
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1652
1729
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXSpinner, 1); arg2 = NUM2INT(argv[0]);
1653
1730
  result = (FXint)FXSpinner_getHeightForWidth(arg1,arg2); vresult = INT2NUM(result); return vresult; }
1654
- static VALUE _wrap_FXSpinner_canFocus(int argc, VALUE *argv, VALUE self) { FXSpinner *arg1 = (FXSpinner *) 0 ; FXbool result;
1731
+ static VALUE _wrap_FXSpinner_canFocus(int argc, VALUE *argv, VALUE self) { FXSpinner *arg1 = (FXSpinner *) 0 ; bool result;
1655
1732
  VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1656
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXSpinner, 1);
1657
- result = (FXbool)FXSpinner_canFocus((FXSpinner const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
1733
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXSpinner, 1); result = (bool)FXSpinner_canFocus((FXSpinner const *)arg1);
1734
+ vresult = result ? Qtrue : Qfalse; return vresult; }
1658
1735
  static VALUE _wrap_FXSpinner_setFocus(int argc, VALUE *argv, VALUE self) { FXSpinner *arg1 = (FXSpinner *) 0 ;
1659
1736
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1660
1737
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXSpinner, 1); FXSpinner_setFocus(arg1); return Qnil; }
@@ -1709,24 +1786,36 @@ static VALUE _wrap_FXSpinner_show(int argc, VALUE *argv, VALUE self) { FXSpinner
1709
1786
  static VALUE _wrap_FXSpinner_hide(int argc, VALUE *argv, VALUE self) { FXSpinner *arg1 = (FXSpinner *) 0 ;
1710
1787
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1711
1788
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXSpinner, 1); FXSpinner_hide(arg1); return Qnil; }
1712
- static VALUE _wrap_FXSpinner_isComposite(int argc, VALUE *argv, VALUE self) { FXSpinner *arg1 = (FXSpinner *) 0 ; FXbool result;
1789
+ static VALUE _wrap_FXSpinner_isComposite(int argc, VALUE *argv, VALUE self) { FXSpinner *arg1 = (FXSpinner *) 0 ; bool result;
1713
1790
  VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1714
1791
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXSpinner, 1);
1715
- result = (FXbool)FXSpinner_isComposite((FXSpinner const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
1792
+ result = (bool)FXSpinner_isComposite((FXSpinner const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
1716
1793
  static VALUE _wrap_FXSpinner_contains(int argc, VALUE *argv, VALUE self) { FXSpinner *arg1 = (FXSpinner *) 0 ; FXint arg2 ;
1717
- FXint arg3 ; FXbool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
1794
+ FXint arg3 ; bool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
1718
1795
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
1719
1796
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXSpinner, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]);
1720
- result = (FXbool)FXSpinner_contains((FXSpinner const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse; return vresult; }
1721
- static VALUE _wrap_FXSpinner_doesSaveUnder(int argc, VALUE *argv, VALUE self) { FXSpinner *arg1 = (FXSpinner *) 0 ;
1722
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
1723
- rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1797
+ result = (bool)FXSpinner_contains((FXSpinner const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse; return vresult; }
1798
+ static VALUE _wrap_FXSpinner_doesSaveUnder(int argc, VALUE *argv, VALUE self) { FXSpinner *arg1 = (FXSpinner *) 0 ; bool result;
1799
+ VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1724
1800
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXSpinner, 1);
1725
- result = (FXbool)FXSpinner_doesSaveUnder((FXSpinner const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
1801
+ result = (bool)FXSpinner_doesSaveUnder((FXSpinner const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
1726
1802
  static VALUE _wrap_FXSpinner_setBackColor(int argc, VALUE *argv, VALUE self) { FXSpinner *arg1 = (FXSpinner *) 0 ;
1727
1803
  FXColor arg2 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1728
1804
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXSpinner, 1); arg2 = to_FXColor(argv[0]);
1729
1805
  FXSpinner_setBackColor(arg1,arg2); return Qnil; }
1806
+ static VALUE _wrap_FXSpinner_tr(int argc, VALUE *argv, VALUE self) { FXSpinner *arg1 = (FXSpinner *) 0 ; FXchar *arg2 ;
1807
+ FXchar *arg3 = (FXchar *) 0 ; FXchar *result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 2))
1808
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1809
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXSpinner, 1); arg2 = StringValuePtr(argv[0]); if (argc > 1) {
1810
+ arg3 = StringValuePtr(argv[1]); }
1811
+ result = (FXchar *)FXSpinner_tr((FXSpinner const *)arg1,(FXchar const *)arg2,(FXchar const *)arg3);
1812
+ vresult = rb_str_new2(result); return vresult; }
1813
+ static VALUE _wrap_FXSpinner_dropEnable(int argc, VALUE *argv, VALUE self) { FXSpinner *arg1 = (FXSpinner *) 0 ;
1814
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1815
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXSpinner, 1); FXSpinner_dropEnable(arg1); return Qnil; }
1816
+ static VALUE _wrap_FXSpinner_dropDisable(int argc, VALUE *argv, VALUE self) { FXSpinner *arg1 = (FXSpinner *) 0 ;
1817
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1818
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXSpinner, 1); FXSpinner_dropDisable(arg1); return Qnil; }
1730
1819
  static VALUE _wrap_FXSpinner_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) { FXSpinner *arg1 = (FXSpinner *) 0 ;
1731
1820
  FXRegion *arg2 = 0 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1732
1821
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXSpinner, 1);
@@ -1761,9 +1850,9 @@ static VALUE _wrap_FXSpinner_clearShape(int argc, VALUE *argv, VALUE self) { FXS
1761
1850
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1762
1851
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXSpinner, 1); FXSpinner_clearShape(arg1); return Qnil; }
1763
1852
  static VALUE _wrap_FXSpinner_setValue(int argc, VALUE *argv, VALUE self) { FXSpinner *arg1 = (FXSpinner *) 0 ; FXint arg2 ;
1764
- if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1765
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXSpinner, 1); arg2 = NUM2INT(argv[0]); FXSpinner_setValue(arg1,arg2);
1766
- return Qnil; }
1853
+ FXbool arg3 = (FXbool) 0 ; if ((argc < 1) || (argc > 2)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1854
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXSpinner, 1); arg2 = NUM2INT(argv[0]); if (argc > 1) {
1855
+ arg3 = to_FXbool(argv[1]); } FXSpinner_setValue(arg1,arg2,arg3); return Qnil; }
1767
1856
  static VALUE _wrap_FXRealSpinner_onUpdIncrement(int argc, VALUE *argv, VALUE self) { FXRealSpinner *arg1 = (FXRealSpinner *) 0 ;
1768
1857
  FXObject *arg2 = (FXObject *) 0 ; FXSelector arg3 ; void *arg4 = (void *) 0 ; long result; VALUE vresult = Qnil;
1769
1858
  if ((argc < 3) || (argc > 3)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 3)",argc);
@@ -1920,11 +2009,23 @@ static VALUE _wrap_new_FXRealSpinner(int argc, VALUE *argv, VALUE self) { FXComp
1920
2009
  result = (FXRealSpinner *)new_FXRealSpinner(arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8,arg9,arg10,arg11,arg12,arg13);
1921
2010
  DATA_PTR(self) = result; FXRbRegisterRubyObj(self, result); if(rb_block_given_p()){ rb_yield(self); } } return self; }
1922
2011
  static VALUE _wrap_FXRealSpinner_increment(int argc, VALUE *argv, VALUE self) { FXRealSpinner *arg1 = (FXRealSpinner *) 0 ;
1923
- if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1924
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXRealSpinner, 1); (arg1)->increment(); return Qnil; }
2012
+ FXbool arg2 = (FXbool) 0 ; if ((argc < 0) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2013
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXRealSpinner, 1); if (argc > 0) { arg2 = to_FXbool(argv[0]); }
2014
+ (arg1)->increment(arg2); return Qnil; }
2015
+ static VALUE _wrap_FXRealSpinner_incrementByAmount(int argc, VALUE *argv, VALUE self) {
2016
+ FXRealSpinner *arg1 = (FXRealSpinner *) 0 ; FXdouble arg2 ; FXbool arg3 = (FXbool) 0 ; if ((argc < 1) || (argc > 2))
2017
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
2018
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXRealSpinner, 1); arg2 = (FXdouble) NUM2DBL(argv[0]); if (argc > 1) {
2019
+ arg3 = to_FXbool(argv[1]); } (arg1)->incrementByAmount(arg2,arg3); return Qnil; }
1925
2020
  static VALUE _wrap_FXRealSpinner_decrement(int argc, VALUE *argv, VALUE self) { FXRealSpinner *arg1 = (FXRealSpinner *) 0 ;
1926
- if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1927
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXRealSpinner, 1); (arg1)->decrement(); return Qnil; }
2021
+ FXbool arg2 = (FXbool) 0 ; if ((argc < 0) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2022
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXRealSpinner, 1); if (argc > 0) { arg2 = to_FXbool(argv[0]); }
2023
+ (arg1)->decrement(arg2); return Qnil; }
2024
+ static VALUE _wrap_FXRealSpinner_decrementByAmount(int argc, VALUE *argv, VALUE self) {
2025
+ FXRealSpinner *arg1 = (FXRealSpinner *) 0 ; FXdouble arg2 ; FXbool arg3 = (FXbool) 0 ; if ((argc < 1) || (argc > 2))
2026
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
2027
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXRealSpinner, 1); arg2 = (FXdouble) NUM2DBL(argv[0]); if (argc > 1) {
2028
+ arg3 = to_FXbool(argv[1]); } (arg1)->decrementByAmount(arg2,arg3); return Qnil; }
1928
2029
  static VALUE _wrap_FXRealSpinner_isCyclic(int argc, VALUE *argv, VALUE self) { FXRealSpinner *arg1 = (FXRealSpinner *) 0 ;
1929
2030
  FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
1930
2031
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
@@ -1949,9 +2050,10 @@ static VALUE _wrap_FXRealSpinner_getValue(int argc, VALUE *argv, VALUE self) { F
1949
2050
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXRealSpinner, 1);
1950
2051
  result = (FXdouble)((FXRealSpinner const *)arg1)->getValue(); vresult = rb_float_new(result); return vresult; }
1951
2052
  static VALUE _wrap_FXRealSpinner_setRange(int argc, VALUE *argv, VALUE self) { FXRealSpinner *arg1 = (FXRealSpinner *) 0 ;
1952
- VALUE arg2 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1953
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXRealSpinner, 1); arg2 = argv[0]; FXRealSpinner_setRange(arg1,arg2);
1954
- return Qnil; }
2053
+ VALUE arg2 ; FXbool arg3 = (FXbool) 0 ; if ((argc < 1) || (argc > 2))
2054
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
2055
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXRealSpinner, 1); arg2 = argv[0]; if (argc > 1) {
2056
+ arg3 = to_FXbool(argv[1]); } FXRealSpinner_setRange(arg1,arg2,arg3); return Qnil; }
1955
2057
  static VALUE _wrap_FXRealSpinner_getRange(int argc, VALUE *argv, VALUE self) { FXRealSpinner *arg1 = (FXRealSpinner *) 0 ;
1956
2058
  VALUE result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
1957
2059
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
@@ -1966,6 +2068,16 @@ static VALUE _wrap_FXRealSpinner_getIncrement(int argc, VALUE *argv, VALUE self)
1966
2068
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1967
2069
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXRealSpinner, 1);
1968
2070
  result = (FXdouble)((FXRealSpinner const *)arg1)->getIncrement(); vresult = rb_float_new(result); return vresult; }
2071
+ static VALUE _wrap_FXRealSpinner_granularitye___(int argc, VALUE *argv, VALUE self) {
2072
+ FXRealSpinner *arg1 = (FXRealSpinner *) 0 ; FXdouble arg2 ; if ((argc < 1) || (argc > 1))
2073
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
2074
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXRealSpinner, 1); arg2 = (FXdouble) NUM2DBL(argv[0]);
2075
+ (arg1)->setGranularity(arg2); return Qnil; }
2076
+ static VALUE _wrap_FXRealSpinner_granularity(int argc, VALUE *argv, VALUE self) { FXRealSpinner *arg1 = (FXRealSpinner *) 0 ;
2077
+ FXdouble result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
2078
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2079
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXRealSpinner, 1);
2080
+ result = (FXdouble)((FXRealSpinner const *)arg1)->getGranularity(); vresult = rb_float_new(result); return vresult; }
1969
2081
  static VALUE _wrap_FXRealSpinner_setFont(int argc, VALUE *argv, VALUE self) { FXRealSpinner *arg1 = (FXRealSpinner *) 0 ;
1970
2082
  FXFont *arg2 = (FXFont *) 0 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1971
2083
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXRealSpinner, 1);
@@ -2133,10 +2245,10 @@ static VALUE _wrap_FXRealSpinner_getHeightForWidth(int argc, VALUE *argv, VALUE
2133
2245
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXRealSpinner, 1); arg2 = NUM2INT(argv[0]);
2134
2246
  result = (FXint)FXRealSpinner_getHeightForWidth(arg1,arg2); vresult = INT2NUM(result); return vresult; }
2135
2247
  static VALUE _wrap_FXRealSpinner_canFocus(int argc, VALUE *argv, VALUE self) { FXRealSpinner *arg1 = (FXRealSpinner *) 0 ;
2136
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
2248
+ bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
2137
2249
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2138
2250
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXRealSpinner, 1);
2139
- result = (FXbool)FXRealSpinner_canFocus((FXRealSpinner const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
2251
+ result = (bool)FXRealSpinner_canFocus((FXRealSpinner const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
2140
2252
  static VALUE _wrap_FXRealSpinner_setFocus(int argc, VALUE *argv, VALUE self) { FXRealSpinner *arg1 = (FXRealSpinner *) 0 ;
2141
2253
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2142
2254
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXRealSpinner, 1); FXRealSpinner_setFocus(arg1); return Qnil; }
@@ -2192,26 +2304,38 @@ static VALUE _wrap_FXRealSpinner_hide(int argc, VALUE *argv, VALUE self) { FXRea
2192
2304
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2193
2305
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXRealSpinner, 1); FXRealSpinner_hide(arg1); return Qnil; }
2194
2306
  static VALUE _wrap_FXRealSpinner_isComposite(int argc, VALUE *argv, VALUE self) { FXRealSpinner *arg1 = (FXRealSpinner *) 0 ;
2195
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
2307
+ bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
2196
2308
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2197
2309
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXRealSpinner, 1);
2198
- result = (FXbool)FXRealSpinner_isComposite((FXRealSpinner const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
2310
+ result = (bool)FXRealSpinner_isComposite((FXRealSpinner const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
2199
2311
  static VALUE _wrap_FXRealSpinner_contains(int argc, VALUE *argv, VALUE self) { FXRealSpinner *arg1 = (FXRealSpinner *) 0 ;
2200
- FXint arg2 ; FXint arg3 ; FXbool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
2312
+ FXint arg2 ; FXint arg3 ; bool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
2201
2313
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
2202
2314
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXRealSpinner, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]);
2203
- result = (FXbool)FXRealSpinner_contains((FXRealSpinner const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse;
2315
+ result = (bool)FXRealSpinner_contains((FXRealSpinner const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse;
2204
2316
  return vresult; }
2205
2317
  static VALUE _wrap_FXRealSpinner_doesSaveUnder(int argc, VALUE *argv, VALUE self) { FXRealSpinner *arg1 = (FXRealSpinner *) 0 ;
2206
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
2318
+ bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
2207
2319
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2208
2320
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXRealSpinner, 1);
2209
- result = (FXbool)FXRealSpinner_doesSaveUnder((FXRealSpinner const *)arg1); vresult = result ? Qtrue : Qfalse;
2210
- return vresult; }
2321
+ result = (bool)FXRealSpinner_doesSaveUnder((FXRealSpinner const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
2211
2322
  static VALUE _wrap_FXRealSpinner_setBackColor(int argc, VALUE *argv, VALUE self) { FXRealSpinner *arg1 = (FXRealSpinner *) 0 ;
2212
2323
  FXColor arg2 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
2213
2324
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXRealSpinner, 1); arg2 = to_FXColor(argv[0]);
2214
2325
  FXRealSpinner_setBackColor(arg1,arg2); return Qnil; }
2326
+ static VALUE _wrap_FXRealSpinner_tr(int argc, VALUE *argv, VALUE self) { FXRealSpinner *arg1 = (FXRealSpinner *) 0 ;
2327
+ FXchar *arg2 ; FXchar *arg3 = (FXchar *) 0 ; FXchar *result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 2))
2328
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
2329
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXRealSpinner, 1); arg2 = StringValuePtr(argv[0]); if (argc > 1) {
2330
+ arg3 = StringValuePtr(argv[1]); }
2331
+ result = (FXchar *)FXRealSpinner_tr((FXRealSpinner const *)arg1,(FXchar const *)arg2,(FXchar const *)arg3);
2332
+ vresult = rb_str_new2(result); return vresult; }
2333
+ static VALUE _wrap_FXRealSpinner_dropEnable(int argc, VALUE *argv, VALUE self) { FXRealSpinner *arg1 = (FXRealSpinner *) 0 ;
2334
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2335
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXRealSpinner, 1); FXRealSpinner_dropEnable(arg1); return Qnil; }
2336
+ static VALUE _wrap_FXRealSpinner_dropDisable(int argc, VALUE *argv, VALUE self) { FXRealSpinner *arg1 = (FXRealSpinner *) 0 ;
2337
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2338
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXRealSpinner, 1); FXRealSpinner_dropDisable(arg1); return Qnil; }
2215
2339
  static VALUE _wrap_FXRealSpinner_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
2216
2340
  FXRealSpinner *arg1 = (FXRealSpinner *) 0 ; FXRegion *arg2 = 0 ; if ((argc < 1) || (argc > 1))
2217
2341
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
@@ -2250,9 +2374,10 @@ static VALUE _wrap_FXRealSpinner_clearShape(int argc, VALUE *argv, VALUE self) {
2250
2374
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2251
2375
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXRealSpinner, 1); FXRealSpinner_clearShape(arg1); return Qnil; }
2252
2376
  static VALUE _wrap_FXRealSpinner_setValue(int argc, VALUE *argv, VALUE self) { FXRealSpinner *arg1 = (FXRealSpinner *) 0 ;
2253
- FXdouble arg2 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
2254
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXRealSpinner, 1); arg2 = (FXdouble) NUM2DBL(argv[0]);
2255
- FXRealSpinner_setValue(arg1,arg2); return Qnil; }
2377
+ FXdouble arg2 ; FXbool arg3 = (FXbool) 0 ; if ((argc < 1) || (argc > 2))
2378
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
2379
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXRealSpinner, 1); arg2 = (FXdouble) NUM2DBL(argv[0]); if (argc > 1) {
2380
+ arg3 = to_FXbool(argv[1]); } FXRealSpinner_setValue(arg1,arg2,arg3); return Qnil; }
2256
2381
  static VALUE _wrap_FXCanvas_onPaint(int argc, VALUE *argv, VALUE self) { FXCanvas *arg1 = (FXCanvas *) 0 ;
2257
2382
  FXObject *arg2 = (FXObject *) 0 ; FXSelector arg3 ; void *arg4 = (void *) 0 ; long result; VALUE vresult = Qnil;
2258
2383
  if ((argc < 3) || (argc > 3)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 3)",argc);
@@ -2325,9 +2450,9 @@ static VALUE _wrap_FXCanvas_getHeightForWidth(int argc, VALUE *argv, VALUE self)
2325
2450
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
2326
2451
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXCanvas, 1); arg2 = NUM2INT(argv[0]);
2327
2452
  result = (FXint)FXCanvas_getHeightForWidth(arg1,arg2); vresult = INT2NUM(result); return vresult; }
2328
- static VALUE _wrap_FXCanvas_canFocus(int argc, VALUE *argv, VALUE self) { FXCanvas *arg1 = (FXCanvas *) 0 ; FXbool result;
2453
+ static VALUE _wrap_FXCanvas_canFocus(int argc, VALUE *argv, VALUE self) { FXCanvas *arg1 = (FXCanvas *) 0 ; bool result;
2329
2454
  VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2330
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXCanvas, 1); result = (FXbool)FXCanvas_canFocus((FXCanvas const *)arg1);
2455
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXCanvas, 1); result = (bool)FXCanvas_canFocus((FXCanvas const *)arg1);
2331
2456
  vresult = result ? Qtrue : Qfalse; return vresult; }
2332
2457
  static VALUE _wrap_FXCanvas_setFocus(int argc, VALUE *argv, VALUE self) { FXCanvas *arg1 = (FXCanvas *) 0 ;
2333
2458
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
@@ -2383,23 +2508,36 @@ static VALUE _wrap_FXCanvas_show(int argc, VALUE *argv, VALUE self) { FXCanvas *
2383
2508
  static VALUE _wrap_FXCanvas_hide(int argc, VALUE *argv, VALUE self) { FXCanvas *arg1 = (FXCanvas *) 0 ;
2384
2509
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2385
2510
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXCanvas, 1); FXCanvas_hide(arg1); return Qnil; }
2386
- static VALUE _wrap_FXCanvas_isComposite(int argc, VALUE *argv, VALUE self) { FXCanvas *arg1 = (FXCanvas *) 0 ; FXbool result;
2511
+ static VALUE _wrap_FXCanvas_isComposite(int argc, VALUE *argv, VALUE self) { FXCanvas *arg1 = (FXCanvas *) 0 ; bool result;
2387
2512
  VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2388
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXCanvas, 1);
2389
- result = (FXbool)FXCanvas_isComposite((FXCanvas const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
2513
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXCanvas, 1); result = (bool)FXCanvas_isComposite((FXCanvas const *)arg1);
2514
+ vresult = result ? Qtrue : Qfalse; return vresult; }
2390
2515
  static VALUE _wrap_FXCanvas_contains(int argc, VALUE *argv, VALUE self) { FXCanvas *arg1 = (FXCanvas *) 0 ; FXint arg2 ;
2391
- FXint arg3 ; FXbool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
2516
+ FXint arg3 ; bool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
2392
2517
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
2393
2518
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXCanvas, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]);
2394
- result = (FXbool)FXCanvas_contains((FXCanvas const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse; return vresult; }
2395
- static VALUE _wrap_FXCanvas_doesSaveUnder(int argc, VALUE *argv, VALUE self) { FXCanvas *arg1 = (FXCanvas *) 0 ; FXbool result;
2519
+ result = (bool)FXCanvas_contains((FXCanvas const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse; return vresult; }
2520
+ static VALUE _wrap_FXCanvas_doesSaveUnder(int argc, VALUE *argv, VALUE self) { FXCanvas *arg1 = (FXCanvas *) 0 ; bool result;
2396
2521
  VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2397
2522
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXCanvas, 1);
2398
- result = (FXbool)FXCanvas_doesSaveUnder((FXCanvas const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
2523
+ result = (bool)FXCanvas_doesSaveUnder((FXCanvas const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
2399
2524
  static VALUE _wrap_FXCanvas_setBackColor(int argc, VALUE *argv, VALUE self) { FXCanvas *arg1 = (FXCanvas *) 0 ; FXColor arg2 ;
2400
2525
  if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
2401
2526
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXCanvas, 1); arg2 = to_FXColor(argv[0]);
2402
2527
  FXCanvas_setBackColor(arg1,arg2); return Qnil; }
2528
+ static VALUE _wrap_FXCanvas_tr(int argc, VALUE *argv, VALUE self) { FXCanvas *arg1 = (FXCanvas *) 0 ; FXchar *arg2 ;
2529
+ FXchar *arg3 = (FXchar *) 0 ; FXchar *result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 2))
2530
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
2531
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXCanvas, 1); arg2 = StringValuePtr(argv[0]); if (argc > 1) {
2532
+ arg3 = StringValuePtr(argv[1]); }
2533
+ result = (FXchar *)FXCanvas_tr((FXCanvas const *)arg1,(FXchar const *)arg2,(FXchar const *)arg3);
2534
+ vresult = rb_str_new2(result); return vresult; }
2535
+ static VALUE _wrap_FXCanvas_dropEnable(int argc, VALUE *argv, VALUE self) { FXCanvas *arg1 = (FXCanvas *) 0 ;
2536
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2537
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXCanvas, 1); FXCanvas_dropEnable(arg1); return Qnil; }
2538
+ static VALUE _wrap_FXCanvas_dropDisable(int argc, VALUE *argv, VALUE self) { FXCanvas *arg1 = (FXCanvas *) 0 ;
2539
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2540
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXCanvas, 1); FXCanvas_dropDisable(arg1); return Qnil; }
2403
2541
  static VALUE _wrap_FXCanvas_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) { FXCanvas *arg1 = (FXCanvas *) 0 ;
2404
2542
  FXRegion *arg2 = 0 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
2405
2543
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXCanvas, 1);
@@ -2562,10 +2700,10 @@ static VALUE _wrap_FXToolTip_getHeightForWidth(int argc, VALUE *argv, VALUE self
2562
2700
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
2563
2701
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXToolTip, 1); arg2 = NUM2INT(argv[0]);
2564
2702
  result = (FXint)FXToolTip_getHeightForWidth(arg1,arg2); vresult = INT2NUM(result); return vresult; }
2565
- static VALUE _wrap_FXToolTip_canFocus(int argc, VALUE *argv, VALUE self) { FXToolTip *arg1 = (FXToolTip *) 0 ; FXbool result;
2703
+ static VALUE _wrap_FXToolTip_canFocus(int argc, VALUE *argv, VALUE self) { FXToolTip *arg1 = (FXToolTip *) 0 ; bool result;
2566
2704
  VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2567
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXToolTip, 1);
2568
- result = (FXbool)FXToolTip_canFocus((FXToolTip const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
2705
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXToolTip, 1); result = (bool)FXToolTip_canFocus((FXToolTip const *)arg1);
2706
+ vresult = result ? Qtrue : Qfalse; return vresult; }
2569
2707
  static VALUE _wrap_FXToolTip_setFocus(int argc, VALUE *argv, VALUE self) { FXToolTip *arg1 = (FXToolTip *) 0 ;
2570
2708
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2571
2709
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXToolTip, 1); FXToolTip_setFocus(arg1); return Qnil; }
@@ -2620,24 +2758,36 @@ static VALUE _wrap_FXToolTip_show(int argc, VALUE *argv, VALUE self) { FXToolTip
2620
2758
  static VALUE _wrap_FXToolTip_hide(int argc, VALUE *argv, VALUE self) { FXToolTip *arg1 = (FXToolTip *) 0 ;
2621
2759
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2622
2760
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXToolTip, 1); FXToolTip_hide(arg1); return Qnil; }
2623
- static VALUE _wrap_FXToolTip_isComposite(int argc, VALUE *argv, VALUE self) { FXToolTip *arg1 = (FXToolTip *) 0 ; FXbool result;
2761
+ static VALUE _wrap_FXToolTip_isComposite(int argc, VALUE *argv, VALUE self) { FXToolTip *arg1 = (FXToolTip *) 0 ; bool result;
2624
2762
  VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2625
2763
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXToolTip, 1);
2626
- result = (FXbool)FXToolTip_isComposite((FXToolTip const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
2764
+ result = (bool)FXToolTip_isComposite((FXToolTip const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
2627
2765
  static VALUE _wrap_FXToolTip_contains(int argc, VALUE *argv, VALUE self) { FXToolTip *arg1 = (FXToolTip *) 0 ; FXint arg2 ;
2628
- FXint arg3 ; FXbool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
2766
+ FXint arg3 ; bool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
2629
2767
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
2630
2768
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXToolTip, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]);
2631
- result = (FXbool)FXToolTip_contains((FXToolTip const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse; return vresult; }
2632
- static VALUE _wrap_FXToolTip_doesSaveUnder(int argc, VALUE *argv, VALUE self) { FXToolTip *arg1 = (FXToolTip *) 0 ;
2633
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
2634
- rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2769
+ result = (bool)FXToolTip_contains((FXToolTip const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse; return vresult; }
2770
+ static VALUE _wrap_FXToolTip_doesSaveUnder(int argc, VALUE *argv, VALUE self) { FXToolTip *arg1 = (FXToolTip *) 0 ; bool result;
2771
+ VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2635
2772
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXToolTip, 1);
2636
- result = (FXbool)FXToolTip_doesSaveUnder((FXToolTip const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
2773
+ result = (bool)FXToolTip_doesSaveUnder((FXToolTip const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
2637
2774
  static VALUE _wrap_FXToolTip_setBackColor(int argc, VALUE *argv, VALUE self) { FXToolTip *arg1 = (FXToolTip *) 0 ;
2638
2775
  FXColor arg2 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
2639
2776
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXToolTip, 1); arg2 = to_FXColor(argv[0]);
2640
2777
  FXToolTip_setBackColor(arg1,arg2); return Qnil; }
2778
+ static VALUE _wrap_FXToolTip_tr(int argc, VALUE *argv, VALUE self) { FXToolTip *arg1 = (FXToolTip *) 0 ; FXchar *arg2 ;
2779
+ FXchar *arg3 = (FXchar *) 0 ; FXchar *result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 2))
2780
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
2781
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXToolTip, 1); arg2 = StringValuePtr(argv[0]); if (argc > 1) {
2782
+ arg3 = StringValuePtr(argv[1]); }
2783
+ result = (FXchar *)FXToolTip_tr((FXToolTip const *)arg1,(FXchar const *)arg2,(FXchar const *)arg3);
2784
+ vresult = rb_str_new2(result); return vresult; }
2785
+ static VALUE _wrap_FXToolTip_dropEnable(int argc, VALUE *argv, VALUE self) { FXToolTip *arg1 = (FXToolTip *) 0 ;
2786
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2787
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXToolTip, 1); FXToolTip_dropEnable(arg1); return Qnil; }
2788
+ static VALUE _wrap_FXToolTip_dropDisable(int argc, VALUE *argv, VALUE self) { FXToolTip *arg1 = (FXToolTip *) 0 ;
2789
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2790
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXToolTip, 1); FXToolTip_dropDisable(arg1); return Qnil; }
2641
2791
  static VALUE _wrap_FXToolTip_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) { FXToolTip *arg1 = (FXToolTip *) 0 ;
2642
2792
  FXRegion *arg2 = 0 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
2643
2793
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXToolTip, 1);
@@ -2868,6 +3018,12 @@ static VALUE _wrap_FXDockBar_dockedq___(int argc, VALUE *argv, VALUE self) { FXD
2868
3018
  VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2869
3019
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDockBar, 1); result = (FXbool)((FXDockBar const *)arg1)->isDocked();
2870
3020
  vresult = result ? Qtrue : Qfalse; return vresult; }
3021
+ static VALUE _wrap_FXDockBar_insideDockq___(int argc, VALUE *argv, VALUE self) { FXDockBar *arg1 = (FXDockBar *) 0 ;
3022
+ FXDockSite *arg2 = (FXDockSite *) 0 ; FXint arg3 ; FXint arg4 ; FXbool result; VALUE vresult = Qnil;
3023
+ if ((argc < 3) || (argc > 3)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 3)",argc);
3024
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDockBar, 1);
3025
+ SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXDockSite, 1); arg3 = NUM2INT(argv[1]); arg4 = NUM2INT(argv[2]);
3026
+ result = (FXbool)(arg1)->insideDock(arg2,arg3,arg4); vresult = result ? Qtrue : Qfalse; return vresult; }
2871
3027
  static VALUE _wrap_FXDockBar_dryDocke___(int argc, VALUE *argv, VALUE self) { FXDockBar *arg1 = (FXDockBar *) 0 ;
2872
3028
  FXComposite *arg2 = (FXComposite *) 0 ; if ((argc < 1) || (argc > 1))
2873
3029
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
@@ -2960,10 +3116,10 @@ static VALUE _wrap_FXDockBar_getHeightForWidth(int argc, VALUE *argv, VALUE self
2960
3116
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
2961
3117
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDockBar, 1); arg2 = NUM2INT(argv[0]);
2962
3118
  result = (FXint)FXDockBar_getHeightForWidth(arg1,arg2); vresult = INT2NUM(result); return vresult; }
2963
- static VALUE _wrap_FXDockBar_canFocus(int argc, VALUE *argv, VALUE self) { FXDockBar *arg1 = (FXDockBar *) 0 ; FXbool result;
3119
+ static VALUE _wrap_FXDockBar_canFocus(int argc, VALUE *argv, VALUE self) { FXDockBar *arg1 = (FXDockBar *) 0 ; bool result;
2964
3120
  VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2965
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDockBar, 1);
2966
- result = (FXbool)FXDockBar_canFocus((FXDockBar const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
3121
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDockBar, 1); result = (bool)FXDockBar_canFocus((FXDockBar const *)arg1);
3122
+ vresult = result ? Qtrue : Qfalse; return vresult; }
2967
3123
  static VALUE _wrap_FXDockBar_setFocus(int argc, VALUE *argv, VALUE self) { FXDockBar *arg1 = (FXDockBar *) 0 ;
2968
3124
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2969
3125
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDockBar, 1); FXDockBar_setFocus(arg1); return Qnil; }
@@ -3018,24 +3174,36 @@ static VALUE _wrap_FXDockBar_show(int argc, VALUE *argv, VALUE self) { FXDockBar
3018
3174
  static VALUE _wrap_FXDockBar_hide(int argc, VALUE *argv, VALUE self) { FXDockBar *arg1 = (FXDockBar *) 0 ;
3019
3175
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3020
3176
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDockBar, 1); FXDockBar_hide(arg1); return Qnil; }
3021
- static VALUE _wrap_FXDockBar_isComposite(int argc, VALUE *argv, VALUE self) { FXDockBar *arg1 = (FXDockBar *) 0 ; FXbool result;
3177
+ static VALUE _wrap_FXDockBar_isComposite(int argc, VALUE *argv, VALUE self) { FXDockBar *arg1 = (FXDockBar *) 0 ; bool result;
3022
3178
  VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3023
3179
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDockBar, 1);
3024
- result = (FXbool)FXDockBar_isComposite((FXDockBar const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
3180
+ result = (bool)FXDockBar_isComposite((FXDockBar const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
3025
3181
  static VALUE _wrap_FXDockBar_contains(int argc, VALUE *argv, VALUE self) { FXDockBar *arg1 = (FXDockBar *) 0 ; FXint arg2 ;
3026
- FXint arg3 ; FXbool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
3182
+ FXint arg3 ; bool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
3027
3183
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
3028
3184
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDockBar, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]);
3029
- result = (FXbool)FXDockBar_contains((FXDockBar const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse; return vresult; }
3030
- static VALUE _wrap_FXDockBar_doesSaveUnder(int argc, VALUE *argv, VALUE self) { FXDockBar *arg1 = (FXDockBar *) 0 ;
3031
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
3032
- rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3185
+ result = (bool)FXDockBar_contains((FXDockBar const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse; return vresult; }
3186
+ static VALUE _wrap_FXDockBar_doesSaveUnder(int argc, VALUE *argv, VALUE self) { FXDockBar *arg1 = (FXDockBar *) 0 ; bool result;
3187
+ VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3033
3188
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDockBar, 1);
3034
- result = (FXbool)FXDockBar_doesSaveUnder((FXDockBar const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
3189
+ result = (bool)FXDockBar_doesSaveUnder((FXDockBar const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
3035
3190
  static VALUE _wrap_FXDockBar_setBackColor(int argc, VALUE *argv, VALUE self) { FXDockBar *arg1 = (FXDockBar *) 0 ;
3036
3191
  FXColor arg2 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
3037
3192
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDockBar, 1); arg2 = to_FXColor(argv[0]);
3038
3193
  FXDockBar_setBackColor(arg1,arg2); return Qnil; }
3194
+ static VALUE _wrap_FXDockBar_tr(int argc, VALUE *argv, VALUE self) { FXDockBar *arg1 = (FXDockBar *) 0 ; FXchar *arg2 ;
3195
+ FXchar *arg3 = (FXchar *) 0 ; FXchar *result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 2))
3196
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
3197
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDockBar, 1); arg2 = StringValuePtr(argv[0]); if (argc > 1) {
3198
+ arg3 = StringValuePtr(argv[1]); }
3199
+ result = (FXchar *)FXDockBar_tr((FXDockBar const *)arg1,(FXchar const *)arg2,(FXchar const *)arg3);
3200
+ vresult = rb_str_new2(result); return vresult; }
3201
+ static VALUE _wrap_FXDockBar_dropEnable(int argc, VALUE *argv, VALUE self) { FXDockBar *arg1 = (FXDockBar *) 0 ;
3202
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3203
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDockBar, 1); FXDockBar_dropEnable(arg1); return Qnil; }
3204
+ static VALUE _wrap_FXDockBar_dropDisable(int argc, VALUE *argv, VALUE self) { FXDockBar *arg1 = (FXDockBar *) 0 ;
3205
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3206
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDockBar, 1); FXDockBar_dropDisable(arg1); return Qnil; }
3039
3207
  static VALUE _wrap_FXDockBar_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) { FXDockBar *arg1 = (FXDockBar *) 0 ;
3040
3208
  FXRegion *arg2 = 0 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
3041
3209
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDockBar, 1);
@@ -3070,38 +3238,43 @@ static VALUE _wrap_FXDockBar_clearShape(int argc, VALUE *argv, VALUE self) { FXD
3070
3238
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3071
3239
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDockBar, 1); FXDockBar_clearShape(arg1); return Qnil; }
3072
3240
  static VALUE _wrap_FXDockBar_dock__SWIG_0(int argc, VALUE *argv, VALUE self) { FXDockBar *arg1 = (FXDockBar *) 0 ;
3073
- FXDockSite *arg2 = (FXDockSite *) 0 ; FXWindow *arg3 = (FXWindow *) 0 ; if ((argc < 1) || (argc > 2))
3074
- rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
3241
+ FXDockSite *arg2 = (FXDockSite *) 0 ; FXWindow *arg3 = (FXWindow *) 0 ; FXbool arg4 = (FXbool) 0 ;
3242
+ if ((argc < 1) || (argc > 3)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
3075
3243
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDockBar, 1);
3076
3244
  SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXDockSite, 1); if (argc > 1) {
3077
- SWIG_ConvertPtr(argv[1], (void **) &arg3, SWIGTYPE_p_FXWindow, 1); } FXDockBar_dock(arg1,arg2,arg3); return Qnil; }
3245
+ SWIG_ConvertPtr(argv[1], (void **) &arg3, SWIGTYPE_p_FXWindow, 1); } if (argc > 2) { arg4 = to_FXbool(argv[2]); }
3246
+ FXDockBar_dock(arg1,arg2,arg3,arg4); return Qnil; }
3078
3247
  static VALUE _wrap_FXDockBar_dock__SWIG_1(int argc, VALUE *argv, VALUE self) { FXDockBar *arg1 = (FXDockBar *) 0 ;
3079
- FXDockSite *arg2 = (FXDockSite *) 0 ; FXint arg3 ; FXint arg4 ; if ((argc < 3) || (argc > 3))
3080
- rb_raise(rb_eArgError, "wrong # of arguments(%d for 3)",argc);
3248
+ FXDockSite *arg2 = (FXDockSite *) 0 ; FXint arg3 ; FXint arg4 ; FXbool arg5 ; if ((argc < 4) || (argc > 4))
3249
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 4)",argc);
3081
3250
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDockBar, 1);
3082
3251
  SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXDockSite, 1); arg3 = NUM2INT(argv[1]); arg4 = NUM2INT(argv[2]);
3083
- FXDockBar_dock(arg1,arg2,arg3,arg4); return Qnil; }
3084
- static VALUE _wrap_FXDockBar_dock(int nargs, VALUE *args, VALUE self) { int argc; VALUE argv[5]; int ii; argc = nargs + 1;
3085
- argv[0] = self; for (ii = 1; (ii < argc) && (ii < 4); ii++) { argv[ii] = args[ii-1]; } if ((argc >= 2) && (argc <= 3)) {
3252
+ arg5 = to_FXbool(argv[3]); FXDockBar_dock(arg1,arg2,arg3,arg4,arg5); return Qnil; }
3253
+ static VALUE _wrap_FXDockBar_dock(int nargs, VALUE *args, VALUE self) { int argc; VALUE argv[6]; int ii; argc = nargs + 1;
3254
+ argv[0] = self; for (ii = 1; (ii < argc) && (ii < 5); ii++) { argv[ii] = args[ii-1]; } if ((argc >= 2) && (argc <= 4)) {
3086
3255
  int _v; { void *ptr;
3087
3256
  _v = (NIL_P(argv[0]) || (TYPE(argv[0]) == T_DATA && SWIG_ConvertPtr(argv[0], &ptr, SWIGTYPE_p_FXDockBar, 0) != -1)) ? 1 : 0; }
3088
3257
  if (_v) { { void *ptr;
3089
3258
  _v = (NIL_P(argv[1]) || (TYPE(argv[1]) == T_DATA && SWIG_ConvertPtr(argv[1], &ptr, SWIGTYPE_p_FXDockSite, 0) != -1)) ? 1 : 0; }
3090
3259
  if (_v) { if (argc <= 2) { return _wrap_FXDockBar_dock__SWIG_0(nargs, args, self);} { void *ptr;
3091
3260
  _v = (NIL_P(argv[2]) || (TYPE(argv[2]) == T_DATA && SWIG_ConvertPtr(argv[2], &ptr, SWIGTYPE_p_FXWindow, 0) != -1)) ? 1 : 0; }
3092
- if (_v) { return _wrap_FXDockBar_dock__SWIG_0(nargs, args, self);} } } } if (argc == 4) { int _v; {
3261
+ if (_v) { if (argc <= 3) { return _wrap_FXDockBar_dock__SWIG_0(nargs, args, self);} {
3262
+ _v = (argv[3] == Qtrue || argv[3] == Qfalse) ? 1 : 0; } if (_v) {
3263
+ return _wrap_FXDockBar_dock__SWIG_0(nargs, args, self);} } } } } if (argc == 5) { int _v; {
3093
3264
  void *ptr;
3094
3265
  _v = (NIL_P(argv[0]) || (TYPE(argv[0]) == T_DATA && SWIG_ConvertPtr(argv[0], &ptr, SWIGTYPE_p_FXDockBar, 0) != -1)) ? 1 : 0; }
3095
3266
  if (_v) { { void *ptr;
3096
3267
  _v = (NIL_P(argv[1]) || (TYPE(argv[1]) == T_DATA && SWIG_ConvertPtr(argv[1], &ptr, SWIGTYPE_p_FXDockSite, 0) != -1)) ? 1 : 0; }
3097
3268
  if (_v) { { _v = ((TYPE(argv[2]) == T_FIXNUM) || (TYPE(argv[2]) == T_BIGNUM)) ? 1 : 0; } if (_v) { {
3098
- _v = ((TYPE(argv[3]) == T_FIXNUM) || (TYPE(argv[3]) == T_BIGNUM)) ? 1 : 0; } if (_v) {
3099
- return _wrap_FXDockBar_dock__SWIG_1(nargs, args, self);} } } } }
3269
+ _v = ((TYPE(argv[3]) == T_FIXNUM) || (TYPE(argv[3]) == T_BIGNUM)) ? 1 : 0; } if (_v) { {
3270
+ _v = (argv[4] == Qtrue || argv[4] == Qfalse) ? 1 : 0; } if (_v) {
3271
+ return _wrap_FXDockBar_dock__SWIG_1(nargs, args, self);} } } } } }
3100
3272
  rb_raise(rb_eArgError, "No matching function for overloaded 'FXDockBar_dock'"); return Qnil; }
3101
3273
  static VALUE _wrap_FXDockBar_undock(int argc, VALUE *argv, VALUE self) { FXDockBar *arg1 = (FXDockBar *) 0 ; FXint arg2 ;
3102
- FXint arg3 ; if ((argc < 2) || (argc > 2)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
3274
+ FXint arg3 ; FXbool arg4 = (FXbool) 0 ; if ((argc < 2) || (argc > 3))
3275
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
3103
3276
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDockBar, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]);
3104
- FXDockBar_undock(arg1,arg2,arg3); return Qnil; }
3277
+ if (argc > 2) { arg4 = to_FXbool(argv[2]); } FXDockBar_undock(arg1,arg2,arg3,arg4); return Qnil; }
3105
3278
  static VALUE _wrap_FXToolBar_onCmdDockFlip(int argc, VALUE *argv, VALUE self) { FXToolBar *arg1 = (FXToolBar *) 0 ;
3106
3279
  FXObject *arg2 = (FXObject *) 0 ; FXSelector arg3 ; void *arg4 = (void *) 0 ; long result; VALUE vresult = Qnil;
3107
3280
  if ((argc < 3) || (argc > 3)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 3)",argc);
@@ -3266,10 +3439,10 @@ static VALUE _wrap_FXToolBar_getHeightForWidth(int argc, VALUE *argv, VALUE self
3266
3439
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
3267
3440
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXToolBar, 1); arg2 = NUM2INT(argv[0]);
3268
3441
  result = (FXint)FXToolBar_getHeightForWidth(arg1,arg2); vresult = INT2NUM(result); return vresult; }
3269
- static VALUE _wrap_FXToolBar_canFocus(int argc, VALUE *argv, VALUE self) { FXToolBar *arg1 = (FXToolBar *) 0 ; FXbool result;
3442
+ static VALUE _wrap_FXToolBar_canFocus(int argc, VALUE *argv, VALUE self) { FXToolBar *arg1 = (FXToolBar *) 0 ; bool result;
3270
3443
  VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3271
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXToolBar, 1);
3272
- result = (FXbool)FXToolBar_canFocus((FXToolBar const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
3444
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXToolBar, 1); result = (bool)FXToolBar_canFocus((FXToolBar const *)arg1);
3445
+ vresult = result ? Qtrue : Qfalse; return vresult; }
3273
3446
  static VALUE _wrap_FXToolBar_setFocus(int argc, VALUE *argv, VALUE self) { FXToolBar *arg1 = (FXToolBar *) 0 ;
3274
3447
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3275
3448
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXToolBar, 1); FXToolBar_setFocus(arg1); return Qnil; }
@@ -3324,24 +3497,36 @@ static VALUE _wrap_FXToolBar_show(int argc, VALUE *argv, VALUE self) { FXToolBar
3324
3497
  static VALUE _wrap_FXToolBar_hide(int argc, VALUE *argv, VALUE self) { FXToolBar *arg1 = (FXToolBar *) 0 ;
3325
3498
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3326
3499
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXToolBar, 1); FXToolBar_hide(arg1); return Qnil; }
3327
- static VALUE _wrap_FXToolBar_isComposite(int argc, VALUE *argv, VALUE self) { FXToolBar *arg1 = (FXToolBar *) 0 ; FXbool result;
3500
+ static VALUE _wrap_FXToolBar_isComposite(int argc, VALUE *argv, VALUE self) { FXToolBar *arg1 = (FXToolBar *) 0 ; bool result;
3328
3501
  VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3329
3502
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXToolBar, 1);
3330
- result = (FXbool)FXToolBar_isComposite((FXToolBar const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
3503
+ result = (bool)FXToolBar_isComposite((FXToolBar const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
3331
3504
  static VALUE _wrap_FXToolBar_contains(int argc, VALUE *argv, VALUE self) { FXToolBar *arg1 = (FXToolBar *) 0 ; FXint arg2 ;
3332
- FXint arg3 ; FXbool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
3505
+ FXint arg3 ; bool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
3333
3506
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
3334
3507
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXToolBar, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]);
3335
- result = (FXbool)FXToolBar_contains((FXToolBar const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse; return vresult; }
3336
- static VALUE _wrap_FXToolBar_doesSaveUnder(int argc, VALUE *argv, VALUE self) { FXToolBar *arg1 = (FXToolBar *) 0 ;
3337
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
3338
- rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3508
+ result = (bool)FXToolBar_contains((FXToolBar const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse; return vresult; }
3509
+ static VALUE _wrap_FXToolBar_doesSaveUnder(int argc, VALUE *argv, VALUE self) { FXToolBar *arg1 = (FXToolBar *) 0 ; bool result;
3510
+ VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3339
3511
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXToolBar, 1);
3340
- result = (FXbool)FXToolBar_doesSaveUnder((FXToolBar const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
3512
+ result = (bool)FXToolBar_doesSaveUnder((FXToolBar const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
3341
3513
  static VALUE _wrap_FXToolBar_setBackColor(int argc, VALUE *argv, VALUE self) { FXToolBar *arg1 = (FXToolBar *) 0 ;
3342
3514
  FXColor arg2 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
3343
3515
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXToolBar, 1); arg2 = to_FXColor(argv[0]);
3344
3516
  FXToolBar_setBackColor(arg1,arg2); return Qnil; }
3517
+ static VALUE _wrap_FXToolBar_tr(int argc, VALUE *argv, VALUE self) { FXToolBar *arg1 = (FXToolBar *) 0 ; FXchar *arg2 ;
3518
+ FXchar *arg3 = (FXchar *) 0 ; FXchar *result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 2))
3519
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
3520
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXToolBar, 1); arg2 = StringValuePtr(argv[0]); if (argc > 1) {
3521
+ arg3 = StringValuePtr(argv[1]); }
3522
+ result = (FXchar *)FXToolBar_tr((FXToolBar const *)arg1,(FXchar const *)arg2,(FXchar const *)arg3);
3523
+ vresult = rb_str_new2(result); return vresult; }
3524
+ static VALUE _wrap_FXToolBar_dropEnable(int argc, VALUE *argv, VALUE self) { FXToolBar *arg1 = (FXToolBar *) 0 ;
3525
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3526
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXToolBar, 1); FXToolBar_dropEnable(arg1); return Qnil; }
3527
+ static VALUE _wrap_FXToolBar_dropDisable(int argc, VALUE *argv, VALUE self) { FXToolBar *arg1 = (FXToolBar *) 0 ;
3528
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3529
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXToolBar, 1); FXToolBar_dropDisable(arg1); return Qnil; }
3345
3530
  static VALUE _wrap_FXToolBar_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) { FXToolBar *arg1 = (FXToolBar *) 0 ;
3346
3531
  FXRegion *arg2 = 0 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
3347
3532
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXToolBar, 1);
@@ -3376,38 +3561,43 @@ static VALUE _wrap_FXToolBar_clearShape(int argc, VALUE *argv, VALUE self) { FXT
3376
3561
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3377
3562
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXToolBar, 1); FXToolBar_clearShape(arg1); return Qnil; }
3378
3563
  static VALUE _wrap_FXToolBar_dock__SWIG_0(int argc, VALUE *argv, VALUE self) { FXToolBar *arg1 = (FXToolBar *) 0 ;
3379
- FXDockSite *arg2 = (FXDockSite *) 0 ; FXWindow *arg3 = (FXWindow *) 0 ; if ((argc < 1) || (argc > 2))
3380
- rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
3564
+ FXDockSite *arg2 = (FXDockSite *) 0 ; FXWindow *arg3 = (FXWindow *) 0 ; FXbool arg4 = (FXbool) 0 ;
3565
+ if ((argc < 1) || (argc > 3)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
3381
3566
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXToolBar, 1);
3382
3567
  SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXDockSite, 1); if (argc > 1) {
3383
- SWIG_ConvertPtr(argv[1], (void **) &arg3, SWIGTYPE_p_FXWindow, 1); } FXToolBar_dock(arg1,arg2,arg3); return Qnil; }
3568
+ SWIG_ConvertPtr(argv[1], (void **) &arg3, SWIGTYPE_p_FXWindow, 1); } if (argc > 2) { arg4 = to_FXbool(argv[2]); }
3569
+ FXToolBar_dock(arg1,arg2,arg3,arg4); return Qnil; }
3384
3570
  static VALUE _wrap_FXToolBar_dock__SWIG_1(int argc, VALUE *argv, VALUE self) { FXToolBar *arg1 = (FXToolBar *) 0 ;
3385
- FXDockSite *arg2 = (FXDockSite *) 0 ; FXint arg3 ; FXint arg4 ; if ((argc < 3) || (argc > 3))
3386
- rb_raise(rb_eArgError, "wrong # of arguments(%d for 3)",argc);
3571
+ FXDockSite *arg2 = (FXDockSite *) 0 ; FXint arg3 ; FXint arg4 ; FXbool arg5 ; if ((argc < 4) || (argc > 4))
3572
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 4)",argc);
3387
3573
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXToolBar, 1);
3388
3574
  SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXDockSite, 1); arg3 = NUM2INT(argv[1]); arg4 = NUM2INT(argv[2]);
3389
- FXToolBar_dock(arg1,arg2,arg3,arg4); return Qnil; }
3390
- static VALUE _wrap_FXToolBar_dock(int nargs, VALUE *args, VALUE self) { int argc; VALUE argv[5]; int ii; argc = nargs + 1;
3391
- argv[0] = self; for (ii = 1; (ii < argc) && (ii < 4); ii++) { argv[ii] = args[ii-1]; } if ((argc >= 2) && (argc <= 3)) {
3575
+ arg5 = to_FXbool(argv[3]); FXToolBar_dock(arg1,arg2,arg3,arg4,arg5); return Qnil; }
3576
+ static VALUE _wrap_FXToolBar_dock(int nargs, VALUE *args, VALUE self) { int argc; VALUE argv[6]; int ii; argc = nargs + 1;
3577
+ argv[0] = self; for (ii = 1; (ii < argc) && (ii < 5); ii++) { argv[ii] = args[ii-1]; } if ((argc >= 2) && (argc <= 4)) {
3392
3578
  int _v; { void *ptr;
3393
3579
  _v = (NIL_P(argv[0]) || (TYPE(argv[0]) == T_DATA && SWIG_ConvertPtr(argv[0], &ptr, SWIGTYPE_p_FXToolBar, 0) != -1)) ? 1 : 0; }
3394
3580
  if (_v) { { void *ptr;
3395
3581
  _v = (NIL_P(argv[1]) || (TYPE(argv[1]) == T_DATA && SWIG_ConvertPtr(argv[1], &ptr, SWIGTYPE_p_FXDockSite, 0) != -1)) ? 1 : 0; }
3396
3582
  if (_v) { if (argc <= 2) { return _wrap_FXToolBar_dock__SWIG_0(nargs, args, self);} { void *ptr;
3397
3583
  _v = (NIL_P(argv[2]) || (TYPE(argv[2]) == T_DATA && SWIG_ConvertPtr(argv[2], &ptr, SWIGTYPE_p_FXWindow, 0) != -1)) ? 1 : 0; }
3398
- if (_v) { return _wrap_FXToolBar_dock__SWIG_0(nargs, args, self);} } } } if (argc == 4) { int _v; {
3584
+ if (_v) { if (argc <= 3) { return _wrap_FXToolBar_dock__SWIG_0(nargs, args, self);} {
3585
+ _v = (argv[3] == Qtrue || argv[3] == Qfalse) ? 1 : 0; } if (_v) {
3586
+ return _wrap_FXToolBar_dock__SWIG_0(nargs, args, self);} } } } } if (argc == 5) { int _v; {
3399
3587
  void *ptr;
3400
3588
  _v = (NIL_P(argv[0]) || (TYPE(argv[0]) == T_DATA && SWIG_ConvertPtr(argv[0], &ptr, SWIGTYPE_p_FXToolBar, 0) != -1)) ? 1 : 0; }
3401
3589
  if (_v) { { void *ptr;
3402
3590
  _v = (NIL_P(argv[1]) || (TYPE(argv[1]) == T_DATA && SWIG_ConvertPtr(argv[1], &ptr, SWIGTYPE_p_FXDockSite, 0) != -1)) ? 1 : 0; }
3403
3591
  if (_v) { { _v = ((TYPE(argv[2]) == T_FIXNUM) || (TYPE(argv[2]) == T_BIGNUM)) ? 1 : 0; } if (_v) { {
3404
- _v = ((TYPE(argv[3]) == T_FIXNUM) || (TYPE(argv[3]) == T_BIGNUM)) ? 1 : 0; } if (_v) {
3405
- return _wrap_FXToolBar_dock__SWIG_1(nargs, args, self);} } } } }
3592
+ _v = ((TYPE(argv[3]) == T_FIXNUM) || (TYPE(argv[3]) == T_BIGNUM)) ? 1 : 0; } if (_v) { {
3593
+ _v = (argv[4] == Qtrue || argv[4] == Qfalse) ? 1 : 0; } if (_v) {
3594
+ return _wrap_FXToolBar_dock__SWIG_1(nargs, args, self);} } } } } }
3406
3595
  rb_raise(rb_eArgError, "No matching function for overloaded 'FXToolBar_dock'"); return Qnil; }
3407
3596
  static VALUE _wrap_FXToolBar_undock(int argc, VALUE *argv, VALUE self) { FXToolBar *arg1 = (FXToolBar *) 0 ; FXint arg2 ;
3408
- FXint arg3 ; if ((argc < 2) || (argc > 2)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
3597
+ FXint arg3 ; FXbool arg4 = (FXbool) 0 ; if ((argc < 2) || (argc > 3))
3598
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
3409
3599
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXToolBar, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]);
3410
- FXToolBar_undock(arg1,arg2,arg3); return Qnil; }
3600
+ if (argc > 2) { arg4 = to_FXbool(argv[2]); } FXToolBar_undock(arg1,arg2,arg3,arg4); return Qnil; }
3411
3601
  static VALUE _wrap_FXTabBar_onPaint(int argc, VALUE *argv, VALUE self) { FXTabBar *arg1 = (FXTabBar *) 0 ;
3412
3602
  FXObject *arg2 = (FXObject *) 0 ; FXSelector arg3 ; void *arg4 = (void *) 0 ; long result; VALUE vresult = Qnil;
3413
3603
  if ((argc < 3) || (argc > 3)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 3)",argc);
@@ -3570,9 +3760,9 @@ static VALUE _wrap_FXTabBar_getHeightForWidth(int argc, VALUE *argv, VALUE self)
3570
3760
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
3571
3761
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTabBar, 1); arg2 = NUM2INT(argv[0]);
3572
3762
  result = (FXint)FXTabBar_getHeightForWidth(arg1,arg2); vresult = INT2NUM(result); return vresult; }
3573
- static VALUE _wrap_FXTabBar_canFocus(int argc, VALUE *argv, VALUE self) { FXTabBar *arg1 = (FXTabBar *) 0 ; FXbool result;
3763
+ static VALUE _wrap_FXTabBar_canFocus(int argc, VALUE *argv, VALUE self) { FXTabBar *arg1 = (FXTabBar *) 0 ; bool result;
3574
3764
  VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3575
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTabBar, 1); result = (FXbool)FXTabBar_canFocus((FXTabBar const *)arg1);
3765
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTabBar, 1); result = (bool)FXTabBar_canFocus((FXTabBar const *)arg1);
3576
3766
  vresult = result ? Qtrue : Qfalse; return vresult; }
3577
3767
  static VALUE _wrap_FXTabBar_setFocus(int argc, VALUE *argv, VALUE self) { FXTabBar *arg1 = (FXTabBar *) 0 ;
3578
3768
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
@@ -3628,23 +3818,36 @@ static VALUE _wrap_FXTabBar_show(int argc, VALUE *argv, VALUE self) { FXTabBar *
3628
3818
  static VALUE _wrap_FXTabBar_hide(int argc, VALUE *argv, VALUE self) { FXTabBar *arg1 = (FXTabBar *) 0 ;
3629
3819
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3630
3820
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTabBar, 1); FXTabBar_hide(arg1); return Qnil; }
3631
- static VALUE _wrap_FXTabBar_isComposite(int argc, VALUE *argv, VALUE self) { FXTabBar *arg1 = (FXTabBar *) 0 ; FXbool result;
3821
+ static VALUE _wrap_FXTabBar_isComposite(int argc, VALUE *argv, VALUE self) { FXTabBar *arg1 = (FXTabBar *) 0 ; bool result;
3632
3822
  VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3633
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTabBar, 1);
3634
- result = (FXbool)FXTabBar_isComposite((FXTabBar const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
3823
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTabBar, 1); result = (bool)FXTabBar_isComposite((FXTabBar const *)arg1);
3824
+ vresult = result ? Qtrue : Qfalse; return vresult; }
3635
3825
  static VALUE _wrap_FXTabBar_contains(int argc, VALUE *argv, VALUE self) { FXTabBar *arg1 = (FXTabBar *) 0 ; FXint arg2 ;
3636
- FXint arg3 ; FXbool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
3826
+ FXint arg3 ; bool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
3637
3827
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
3638
3828
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTabBar, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]);
3639
- result = (FXbool)FXTabBar_contains((FXTabBar const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse; return vresult; }
3640
- static VALUE _wrap_FXTabBar_doesSaveUnder(int argc, VALUE *argv, VALUE self) { FXTabBar *arg1 = (FXTabBar *) 0 ; FXbool result;
3829
+ result = (bool)FXTabBar_contains((FXTabBar const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse; return vresult; }
3830
+ static VALUE _wrap_FXTabBar_doesSaveUnder(int argc, VALUE *argv, VALUE self) { FXTabBar *arg1 = (FXTabBar *) 0 ; bool result;
3641
3831
  VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3642
3832
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTabBar, 1);
3643
- result = (FXbool)FXTabBar_doesSaveUnder((FXTabBar const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
3833
+ result = (bool)FXTabBar_doesSaveUnder((FXTabBar const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
3644
3834
  static VALUE _wrap_FXTabBar_setBackColor(int argc, VALUE *argv, VALUE self) { FXTabBar *arg1 = (FXTabBar *) 0 ; FXColor arg2 ;
3645
3835
  if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
3646
3836
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTabBar, 1); arg2 = to_FXColor(argv[0]);
3647
3837
  FXTabBar_setBackColor(arg1,arg2); return Qnil; }
3838
+ static VALUE _wrap_FXTabBar_tr(int argc, VALUE *argv, VALUE self) { FXTabBar *arg1 = (FXTabBar *) 0 ; FXchar *arg2 ;
3839
+ FXchar *arg3 = (FXchar *) 0 ; FXchar *result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 2))
3840
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
3841
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTabBar, 1); arg2 = StringValuePtr(argv[0]); if (argc > 1) {
3842
+ arg3 = StringValuePtr(argv[1]); }
3843
+ result = (FXchar *)FXTabBar_tr((FXTabBar const *)arg1,(FXchar const *)arg2,(FXchar const *)arg3);
3844
+ vresult = rb_str_new2(result); return vresult; }
3845
+ static VALUE _wrap_FXTabBar_dropEnable(int argc, VALUE *argv, VALUE self) { FXTabBar *arg1 = (FXTabBar *) 0 ;
3846
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3847
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTabBar, 1); FXTabBar_dropEnable(arg1); return Qnil; }
3848
+ static VALUE _wrap_FXTabBar_dropDisable(int argc, VALUE *argv, VALUE self) { FXTabBar *arg1 = (FXTabBar *) 0 ;
3849
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3850
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTabBar, 1); FXTabBar_dropDisable(arg1); return Qnil; }
3648
3851
  static VALUE _wrap_FXTabBar_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) { FXTabBar *arg1 = (FXTabBar *) 0 ;
3649
3852
  FXRegion *arg2 = 0 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
3650
3853
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTabBar, 1);
@@ -3801,10 +4004,10 @@ static VALUE _wrap_FXTabBook_getHeightForWidth(int argc, VALUE *argv, VALUE self
3801
4004
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
3802
4005
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTabBook, 1); arg2 = NUM2INT(argv[0]);
3803
4006
  result = (FXint)FXTabBook_getHeightForWidth(arg1,arg2); vresult = INT2NUM(result); return vresult; }
3804
- static VALUE _wrap_FXTabBook_canFocus(int argc, VALUE *argv, VALUE self) { FXTabBook *arg1 = (FXTabBook *) 0 ; FXbool result;
4007
+ static VALUE _wrap_FXTabBook_canFocus(int argc, VALUE *argv, VALUE self) { FXTabBook *arg1 = (FXTabBook *) 0 ; bool result;
3805
4008
  VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3806
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTabBook, 1);
3807
- result = (FXbool)FXTabBook_canFocus((FXTabBook const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
4009
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTabBook, 1); result = (bool)FXTabBook_canFocus((FXTabBook const *)arg1);
4010
+ vresult = result ? Qtrue : Qfalse; return vresult; }
3808
4011
  static VALUE _wrap_FXTabBook_setFocus(int argc, VALUE *argv, VALUE self) { FXTabBook *arg1 = (FXTabBook *) 0 ;
3809
4012
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3810
4013
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTabBook, 1); FXTabBook_setFocus(arg1); return Qnil; }
@@ -3859,24 +4062,36 @@ static VALUE _wrap_FXTabBook_show(int argc, VALUE *argv, VALUE self) { FXTabBook
3859
4062
  static VALUE _wrap_FXTabBook_hide(int argc, VALUE *argv, VALUE self) { FXTabBook *arg1 = (FXTabBook *) 0 ;
3860
4063
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3861
4064
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTabBook, 1); FXTabBook_hide(arg1); return Qnil; }
3862
- static VALUE _wrap_FXTabBook_isComposite(int argc, VALUE *argv, VALUE self) { FXTabBook *arg1 = (FXTabBook *) 0 ; FXbool result;
4065
+ static VALUE _wrap_FXTabBook_isComposite(int argc, VALUE *argv, VALUE self) { FXTabBook *arg1 = (FXTabBook *) 0 ; bool result;
3863
4066
  VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3864
4067
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTabBook, 1);
3865
- result = (FXbool)FXTabBook_isComposite((FXTabBook const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
4068
+ result = (bool)FXTabBook_isComposite((FXTabBook const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
3866
4069
  static VALUE _wrap_FXTabBook_contains(int argc, VALUE *argv, VALUE self) { FXTabBook *arg1 = (FXTabBook *) 0 ; FXint arg2 ;
3867
- FXint arg3 ; FXbool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
4070
+ FXint arg3 ; bool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
3868
4071
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
3869
4072
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTabBook, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]);
3870
- result = (FXbool)FXTabBook_contains((FXTabBook const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse; return vresult; }
3871
- static VALUE _wrap_FXTabBook_doesSaveUnder(int argc, VALUE *argv, VALUE self) { FXTabBook *arg1 = (FXTabBook *) 0 ;
3872
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
3873
- rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
4073
+ result = (bool)FXTabBook_contains((FXTabBook const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse; return vresult; }
4074
+ static VALUE _wrap_FXTabBook_doesSaveUnder(int argc, VALUE *argv, VALUE self) { FXTabBook *arg1 = (FXTabBook *) 0 ; bool result;
4075
+ VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3874
4076
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTabBook, 1);
3875
- result = (FXbool)FXTabBook_doesSaveUnder((FXTabBook const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
4077
+ result = (bool)FXTabBook_doesSaveUnder((FXTabBook const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
3876
4078
  static VALUE _wrap_FXTabBook_setBackColor(int argc, VALUE *argv, VALUE self) { FXTabBook *arg1 = (FXTabBook *) 0 ;
3877
4079
  FXColor arg2 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
3878
4080
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTabBook, 1); arg2 = to_FXColor(argv[0]);
3879
4081
  FXTabBook_setBackColor(arg1,arg2); return Qnil; }
4082
+ static VALUE _wrap_FXTabBook_tr(int argc, VALUE *argv, VALUE self) { FXTabBook *arg1 = (FXTabBook *) 0 ; FXchar *arg2 ;
4083
+ FXchar *arg3 = (FXchar *) 0 ; FXchar *result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 2))
4084
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
4085
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTabBook, 1); arg2 = StringValuePtr(argv[0]); if (argc > 1) {
4086
+ arg3 = StringValuePtr(argv[1]); }
4087
+ result = (FXchar *)FXTabBook_tr((FXTabBook const *)arg1,(FXchar const *)arg2,(FXchar const *)arg3);
4088
+ vresult = rb_str_new2(result); return vresult; }
4089
+ static VALUE _wrap_FXTabBook_dropEnable(int argc, VALUE *argv, VALUE self) { FXTabBook *arg1 = (FXTabBook *) 0 ;
4090
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
4091
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTabBook, 1); FXTabBook_dropEnable(arg1); return Qnil; }
4092
+ static VALUE _wrap_FXTabBook_dropDisable(int argc, VALUE *argv, VALUE self) { FXTabBook *arg1 = (FXTabBook *) 0 ;
4093
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
4094
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTabBook, 1); FXTabBook_dropDisable(arg1); return Qnil; }
3880
4095
  static VALUE _wrap_FXTabBook_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) { FXTabBook *arg1 = (FXTabBook *) 0 ;
3881
4096
  FXRegion *arg2 = 0 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
3882
4097
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTabBook, 1);
@@ -4105,15 +4320,24 @@ static VALUE _wrap_FXScrollBar_setBorderColor(int argc, VALUE *argv, VALUE self)
4105
4320
  FXColor arg2 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
4106
4321
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXScrollBar, 1); arg2 = to_FXColor(argv[0]); (arg1)->setBorderColor(arg2);
4107
4322
  return Qnil; }
4108
- static VALUE _wrap_FXScrollBar_getScrollbarStyle(int argc, VALUE *argv, VALUE self) { FXScrollBar *arg1 = (FXScrollBar *) 0 ;
4323
+ static VALUE _wrap_FXScrollBar_getScrollBarStyle(int argc, VALUE *argv, VALUE self) { FXScrollBar *arg1 = (FXScrollBar *) 0 ;
4109
4324
  FXuint result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
4110
4325
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
4111
4326
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXScrollBar, 1);
4112
- result = (FXuint)((FXScrollBar const *)arg1)->getScrollbarStyle(); vresult = UINT2NUM(result); return vresult; }
4113
- static VALUE _wrap_FXScrollBar_setScrollbarStyle(int argc, VALUE *argv, VALUE self) { FXScrollBar *arg1 = (FXScrollBar *) 0 ;
4327
+ result = (FXuint)((FXScrollBar const *)arg1)->getScrollBarStyle(); vresult = UINT2NUM(result); return vresult; }
4328
+ static VALUE _wrap_FXScrollBar_setScrollBarStyle(int argc, VALUE *argv, VALUE self) { FXScrollBar *arg1 = (FXScrollBar *) 0 ;
4114
4329
  FXuint arg2 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
4115
4330
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXScrollBar, 1); arg2 = NUM2UINT(argv[0]);
4116
- (arg1)->setScrollbarStyle(arg2); return Qnil; }
4331
+ (arg1)->setScrollBarStyle(arg2); return Qnil; }
4332
+ static VALUE _wrap_FXScrollBar_barSizee___(int argc, VALUE *argv, VALUE self) { FXScrollBar *arg1 = (FXScrollBar *) 0 ;
4333
+ FXint arg2 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
4334
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXScrollBar, 1); arg2 = NUM2INT(argv[0]); (arg1)->setBarSize(arg2);
4335
+ return Qnil; }
4336
+ static VALUE _wrap_FXScrollBar_barSize(int argc, VALUE *argv, VALUE self) { FXScrollBar *arg1 = (FXScrollBar *) 0 ;
4337
+ FXint result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
4338
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
4339
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXScrollBar, 1);
4340
+ result = (FXint)((FXScrollBar const *)arg1)->getBarSize(); vresult = INT2NUM(result); return vresult; }
4117
4341
  static void
4118
4342
  free_FXScrollBar(FXScrollBar *arg1) {
4119
4343
  delete arg1;
@@ -4162,10 +4386,10 @@ static VALUE _wrap_FXScrollBar_getHeightForWidth(int argc, VALUE *argv, VALUE se
4162
4386
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXScrollBar, 1); arg2 = NUM2INT(argv[0]);
4163
4387
  result = (FXint)FXScrollBar_getHeightForWidth(arg1,arg2); vresult = INT2NUM(result); return vresult; }
4164
4388
  static VALUE _wrap_FXScrollBar_canFocus(int argc, VALUE *argv, VALUE self) { FXScrollBar *arg1 = (FXScrollBar *) 0 ;
4165
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
4389
+ bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
4166
4390
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
4167
4391
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXScrollBar, 1);
4168
- result = (FXbool)FXScrollBar_canFocus((FXScrollBar const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
4392
+ result = (bool)FXScrollBar_canFocus((FXScrollBar const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
4169
4393
  static VALUE _wrap_FXScrollBar_setFocus(int argc, VALUE *argv, VALUE self) { FXScrollBar *arg1 = (FXScrollBar *) 0 ;
4170
4394
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
4171
4395
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXScrollBar, 1); FXScrollBar_setFocus(arg1); return Qnil; }
@@ -4233,25 +4457,38 @@ static VALUE _wrap_FXScrollBar_hide(int argc, VALUE *argv, VALUE self) { FXScrol
4233
4457
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
4234
4458
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXScrollBar, 1); FXScrollBar_hide(arg1); return Qnil; }
4235
4459
  static VALUE _wrap_FXScrollBar_isComposite(int argc, VALUE *argv, VALUE self) { FXScrollBar *arg1 = (FXScrollBar *) 0 ;
4236
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
4460
+ bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
4237
4461
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
4238
4462
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXScrollBar, 1);
4239
- result = (FXbool)FXScrollBar_isComposite((FXScrollBar const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
4463
+ result = (bool)FXScrollBar_isComposite((FXScrollBar const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
4240
4464
  static VALUE _wrap_FXScrollBar_contains(int argc, VALUE *argv, VALUE self) { FXScrollBar *arg1 = (FXScrollBar *) 0 ;
4241
- FXint arg2 ; FXint arg3 ; FXbool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
4465
+ FXint arg2 ; FXint arg3 ; bool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
4242
4466
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
4243
4467
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXScrollBar, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]);
4244
- result = (FXbool)FXScrollBar_contains((FXScrollBar const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse;
4468
+ result = (bool)FXScrollBar_contains((FXScrollBar const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse;
4245
4469
  return vresult; }
4246
4470
  static VALUE _wrap_FXScrollBar_doesSaveUnder(int argc, VALUE *argv, VALUE self) { FXScrollBar *arg1 = (FXScrollBar *) 0 ;
4247
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
4471
+ bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
4248
4472
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
4249
4473
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXScrollBar, 1);
4250
- result = (FXbool)FXScrollBar_doesSaveUnder((FXScrollBar const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
4474
+ result = (bool)FXScrollBar_doesSaveUnder((FXScrollBar const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
4251
4475
  static VALUE _wrap_FXScrollBar_setBackColor(int argc, VALUE *argv, VALUE self) { FXScrollBar *arg1 = (FXScrollBar *) 0 ;
4252
4476
  FXColor arg2 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
4253
4477
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXScrollBar, 1); arg2 = to_FXColor(argv[0]);
4254
4478
  FXScrollBar_setBackColor(arg1,arg2); return Qnil; }
4479
+ static VALUE _wrap_FXScrollBar_tr(int argc, VALUE *argv, VALUE self) { FXScrollBar *arg1 = (FXScrollBar *) 0 ; FXchar *arg2 ;
4480
+ FXchar *arg3 = (FXchar *) 0 ; FXchar *result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 2))
4481
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
4482
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXScrollBar, 1); arg2 = StringValuePtr(argv[0]); if (argc > 1) {
4483
+ arg3 = StringValuePtr(argv[1]); }
4484
+ result = (FXchar *)FXScrollBar_tr((FXScrollBar const *)arg1,(FXchar const *)arg2,(FXchar const *)arg3);
4485
+ vresult = rb_str_new2(result); return vresult; }
4486
+ static VALUE _wrap_FXScrollBar_dropEnable(int argc, VALUE *argv, VALUE self) { FXScrollBar *arg1 = (FXScrollBar *) 0 ;
4487
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
4488
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXScrollBar, 1); FXScrollBar_dropEnable(arg1); return Qnil; }
4489
+ static VALUE _wrap_FXScrollBar_dropDisable(int argc, VALUE *argv, VALUE self) { FXScrollBar *arg1 = (FXScrollBar *) 0 ;
4490
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
4491
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXScrollBar, 1); FXScrollBar_dropDisable(arg1); return Qnil; }
4255
4492
  static VALUE _wrap_FXScrollBar_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) { FXScrollBar *arg1 = (FXScrollBar *) 0 ;
4256
4493
  FXRegion *arg2 = 0 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
4257
4494
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXScrollBar, 1);
@@ -4355,10 +4592,10 @@ static VALUE _wrap_FXScrollCorner_getHeightForWidth(int argc, VALUE *argv, VALUE
4355
4592
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXScrollCorner, 1); arg2 = NUM2INT(argv[0]);
4356
4593
  result = (FXint)FXScrollCorner_getHeightForWidth(arg1,arg2); vresult = INT2NUM(result); return vresult; }
4357
4594
  static VALUE _wrap_FXScrollCorner_canFocus(int argc, VALUE *argv, VALUE self) { FXScrollCorner *arg1 = (FXScrollCorner *) 0 ;
4358
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
4595
+ bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
4359
4596
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
4360
4597
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXScrollCorner, 1);
4361
- result = (FXbool)FXScrollCorner_canFocus((FXScrollCorner const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
4598
+ result = (bool)FXScrollCorner_canFocus((FXScrollCorner const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
4362
4599
  static VALUE _wrap_FXScrollCorner_setFocus(int argc, VALUE *argv, VALUE self) { FXScrollCorner *arg1 = (FXScrollCorner *) 0 ;
4363
4600
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
4364
4601
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXScrollCorner, 1); FXScrollCorner_setFocus(arg1); return Qnil; }
@@ -4414,28 +4651,40 @@ static VALUE _wrap_FXScrollCorner_hide(int argc, VALUE *argv, VALUE self) { FXSc
4414
4651
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
4415
4652
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXScrollCorner, 1); FXScrollCorner_hide(arg1); return Qnil; }
4416
4653
  static VALUE _wrap_FXScrollCorner_isComposite(int argc, VALUE *argv, VALUE self) { FXScrollCorner *arg1 = (FXScrollCorner *) 0 ;
4417
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
4654
+ bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
4418
4655
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
4419
4656
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXScrollCorner, 1);
4420
- result = (FXbool)FXScrollCorner_isComposite((FXScrollCorner const *)arg1); vresult = result ? Qtrue : Qfalse;
4421
- return vresult; }
4657
+ result = (bool)FXScrollCorner_isComposite((FXScrollCorner const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
4422
4658
  static VALUE _wrap_FXScrollCorner_contains(int argc, VALUE *argv, VALUE self) { FXScrollCorner *arg1 = (FXScrollCorner *) 0 ;
4423
- FXint arg2 ; FXint arg3 ; FXbool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
4659
+ FXint arg2 ; FXint arg3 ; bool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
4424
4660
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
4425
4661
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXScrollCorner, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]);
4426
- result = (FXbool)FXScrollCorner_contains((FXScrollCorner const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse;
4662
+ result = (bool)FXScrollCorner_contains((FXScrollCorner const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse;
4427
4663
  return vresult; }
4428
4664
  static VALUE _wrap_FXScrollCorner_doesSaveUnder(int argc, VALUE *argv, VALUE self) {
4429
- FXScrollCorner *arg1 = (FXScrollCorner *) 0 ; FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
4665
+ FXScrollCorner *arg1 = (FXScrollCorner *) 0 ; bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
4430
4666
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
4431
4667
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXScrollCorner, 1);
4432
- result = (FXbool)FXScrollCorner_doesSaveUnder((FXScrollCorner const *)arg1); vresult = result ? Qtrue : Qfalse;
4668
+ result = (bool)FXScrollCorner_doesSaveUnder((FXScrollCorner const *)arg1); vresult = result ? Qtrue : Qfalse;
4433
4669
  return vresult; }
4434
4670
  static VALUE _wrap_FXScrollCorner_setBackColor(int argc, VALUE *argv, VALUE self) {
4435
4671
  FXScrollCorner *arg1 = (FXScrollCorner *) 0 ; FXColor arg2 ; if ((argc < 1) || (argc > 1))
4436
4672
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
4437
4673
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXScrollCorner, 1); arg2 = to_FXColor(argv[0]);
4438
4674
  FXScrollCorner_setBackColor(arg1,arg2); return Qnil; }
4675
+ static VALUE _wrap_FXScrollCorner_tr(int argc, VALUE *argv, VALUE self) { FXScrollCorner *arg1 = (FXScrollCorner *) 0 ;
4676
+ FXchar *arg2 ; FXchar *arg3 = (FXchar *) 0 ; FXchar *result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 2))
4677
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
4678
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXScrollCorner, 1); arg2 = StringValuePtr(argv[0]); if (argc > 1) {
4679
+ arg3 = StringValuePtr(argv[1]); }
4680
+ result = (FXchar *)FXScrollCorner_tr((FXScrollCorner const *)arg1,(FXchar const *)arg2,(FXchar const *)arg3);
4681
+ vresult = rb_str_new2(result); return vresult; }
4682
+ static VALUE _wrap_FXScrollCorner_dropEnable(int argc, VALUE *argv, VALUE self) { FXScrollCorner *arg1 = (FXScrollCorner *) 0 ;
4683
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
4684
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXScrollCorner, 1); FXScrollCorner_dropEnable(arg1); return Qnil; }
4685
+ static VALUE _wrap_FXScrollCorner_dropDisable(int argc, VALUE *argv, VALUE self) { FXScrollCorner *arg1 = (FXScrollCorner *) 0 ;
4686
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
4687
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXScrollCorner, 1); FXScrollCorner_dropDisable(arg1); return Qnil; }
4439
4688
  static VALUE _wrap_FXScrollCorner_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
4440
4689
  FXScrollCorner *arg1 = (FXScrollCorner *) 0 ; FXRegion *arg2 = 0 ; if ((argc < 1) || (argc > 1))
4441
4690
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
@@ -4491,6 +4740,12 @@ static VALUE _wrap_FXComboBox_onFocusSelf(int argc, VALUE *argv, VALUE self) { F
4491
4740
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXComboBox, 1);
4492
4741
  SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXObject, 1); arg3 = NUM2UINT(argv[1]); arg4 = to_FXEvent(argv[2]);
4493
4742
  result = (long)(arg1)->onFocusSelf(arg2,arg3,arg4); vresult = INT2NUM(result); return vresult; }
4743
+ static VALUE _wrap_FXComboBox_onMouseWheel(int argc, VALUE *argv, VALUE self) { FXComboBox *arg1 = (FXComboBox *) 0 ;
4744
+ FXObject *arg2 = (FXObject *) 0 ; FXSelector arg3 ; void *arg4 = (void *) 0 ; long result; VALUE vresult = Qnil;
4745
+ if ((argc < 3) || (argc > 3)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 3)",argc);
4746
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXComboBox, 1);
4747
+ SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXObject, 1); arg3 = NUM2UINT(argv[1]); arg4 = to_FXEvent(argv[2]);
4748
+ result = (long)(arg1)->onMouseWheel(arg2,arg3,arg4); vresult = INT2NUM(result); return vresult; }
4494
4749
  static VALUE _wrap_FXComboBox_onTextButton(int argc, VALUE *argv, VALUE self) { FXComboBox *arg1 = (FXComboBox *) 0 ;
4495
4750
  FXObject *arg2 = (FXObject *) 0 ; FXSelector arg3 ; void *arg4 = (void *) 0 ; long result; VALUE vresult = Qnil;
4496
4751
  if ((argc < 3) || (argc > 3)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 3)",argc);
@@ -4582,6 +4837,14 @@ static VALUE _wrap_FXComboBox_getNumColumns(int argc, VALUE *argv, VALUE self) {
4582
4837
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
4583
4838
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXComboBox, 1);
4584
4839
  result = (FXint)((FXComboBox const *)arg1)->getNumColumns(); vresult = INT2NUM(result); return vresult; }
4840
+ static VALUE _wrap_FXComboBox_justifye___(int argc, VALUE *argv, VALUE self) { FXComboBox *arg1 = (FXComboBox *) 0 ;
4841
+ FXuint arg2 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
4842
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXComboBox, 1); arg2 = NUM2UINT(argv[0]); (arg1)->setJustify(arg2);
4843
+ return Qnil; }
4844
+ static VALUE _wrap_FXComboBox_justify(int argc, VALUE *argv, VALUE self) { FXComboBox *arg1 = (FXComboBox *) 0 ; FXuint result;
4845
+ VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
4846
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXComboBox, 1); result = (FXuint)((FXComboBox const *)arg1)->getJustify();
4847
+ vresult = UINT2NUM(result); return vresult; }
4585
4848
  static VALUE _wrap_FXComboBox_getNumItems(int argc, VALUE *argv, VALUE self) { FXComboBox *arg1 = (FXComboBox *) 0 ;
4586
4849
  FXint result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
4587
4850
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
@@ -4603,8 +4866,11 @@ static VALUE _wrap_FXComboBox_isItemCurrent(int argc, VALUE *argv, VALUE self) {
4603
4866
  if (arg2 < 0 || arg2 >= arg1->getNumItems()) { rb_raise(rb_eIndexError, "combobox item index out of bounds"); } }
4604
4867
  result = (FXbool)((FXComboBox const *)arg1)->isItemCurrent(arg2); vresult = result ? Qtrue : Qfalse; return vresult; }
4605
4868
  static VALUE _wrap_FXComboBox_setCurrentItem(int argc, VALUE *argv, VALUE self) { FXComboBox *arg1 = (FXComboBox *) 0 ;
4606
- FXint arg2 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
4607
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXComboBox, 1); arg2 = NUM2INT(argv[0]); (arg1)->setCurrentItem(arg2);
4869
+ FXint arg2 ; FXbool arg3 = (FXbool) 0 ; if ((argc < 1) || (argc > 2))
4870
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
4871
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXComboBox, 1); arg2 = NUM2INT(argv[0]); if (argc > 1) {
4872
+ arg3 = to_FXbool(argv[1]); } { if (arg2 < 0 || arg2 >= arg1->getNumItems()) {
4873
+ rb_raise(rb_eIndexError, "combobox item index out of bounds"); } } (arg1)->setCurrentItem(arg2,arg3);
4608
4874
  return Qnil; }
4609
4875
  static VALUE _wrap_FXComboBox_getCurrentItem(int argc, VALUE *argv, VALUE self) { FXComboBox *arg1 = (FXComboBox *) 0 ;
4610
4876
  FXint result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
@@ -4832,10 +5098,10 @@ static VALUE _wrap_FXComboBox_getHeightForWidth(int argc, VALUE *argv, VALUE sel
4832
5098
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
4833
5099
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXComboBox, 1); arg2 = NUM2INT(argv[0]);
4834
5100
  result = (FXint)FXComboBox_getHeightForWidth(arg1,arg2); vresult = INT2NUM(result); return vresult; }
4835
- static VALUE _wrap_FXComboBox_canFocus(int argc, VALUE *argv, VALUE self) { FXComboBox *arg1 = (FXComboBox *) 0 ; FXbool result;
5101
+ static VALUE _wrap_FXComboBox_canFocus(int argc, VALUE *argv, VALUE self) { FXComboBox *arg1 = (FXComboBox *) 0 ; bool result;
4836
5102
  VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
4837
5103
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXComboBox, 1);
4838
- result = (FXbool)FXComboBox_canFocus((FXComboBox const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
5104
+ result = (bool)FXComboBox_canFocus((FXComboBox const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
4839
5105
  static VALUE _wrap_FXComboBox_setFocus(int argc, VALUE *argv, VALUE self) { FXComboBox *arg1 = (FXComboBox *) 0 ;
4840
5106
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
4841
5107
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXComboBox, 1); FXComboBox_setFocus(arg1); return Qnil; }
@@ -4891,25 +5157,37 @@ static VALUE _wrap_FXComboBox_hide(int argc, VALUE *argv, VALUE self) { FXComboB
4891
5157
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
4892
5158
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXComboBox, 1); FXComboBox_hide(arg1); return Qnil; }
4893
5159
  static VALUE _wrap_FXComboBox_isComposite(int argc, VALUE *argv, VALUE self) { FXComboBox *arg1 = (FXComboBox *) 0 ;
4894
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
5160
+ bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
4895
5161
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
4896
5162
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXComboBox, 1);
4897
- result = (FXbool)FXComboBox_isComposite((FXComboBox const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
5163
+ result = (bool)FXComboBox_isComposite((FXComboBox const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
4898
5164
  static VALUE _wrap_FXComboBox_contains(int argc, VALUE *argv, VALUE self) { FXComboBox *arg1 = (FXComboBox *) 0 ; FXint arg2 ;
4899
- FXint arg3 ; FXbool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
5165
+ FXint arg3 ; bool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
4900
5166
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
4901
5167
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXComboBox, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]);
4902
- result = (FXbool)FXComboBox_contains((FXComboBox const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse;
4903
- return vresult; }
5168
+ result = (bool)FXComboBox_contains((FXComboBox const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse; return vresult; }
4904
5169
  static VALUE _wrap_FXComboBox_doesSaveUnder(int argc, VALUE *argv, VALUE self) { FXComboBox *arg1 = (FXComboBox *) 0 ;
4905
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
5170
+ bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
4906
5171
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
4907
5172
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXComboBox, 1);
4908
- result = (FXbool)FXComboBox_doesSaveUnder((FXComboBox const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
5173
+ result = (bool)FXComboBox_doesSaveUnder((FXComboBox const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
4909
5174
  static VALUE _wrap_FXComboBox_setBackColor(int argc, VALUE *argv, VALUE self) { FXComboBox *arg1 = (FXComboBox *) 0 ;
4910
5175
  FXColor arg2 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
4911
5176
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXComboBox, 1); arg2 = to_FXColor(argv[0]);
4912
5177
  FXComboBox_setBackColor(arg1,arg2); return Qnil; }
5178
+ static VALUE _wrap_FXComboBox_tr(int argc, VALUE *argv, VALUE self) { FXComboBox *arg1 = (FXComboBox *) 0 ; FXchar *arg2 ;
5179
+ FXchar *arg3 = (FXchar *) 0 ; FXchar *result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 2))
5180
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
5181
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXComboBox, 1); arg2 = StringValuePtr(argv[0]); if (argc > 1) {
5182
+ arg3 = StringValuePtr(argv[1]); }
5183
+ result = (FXchar *)FXComboBox_tr((FXComboBox const *)arg1,(FXchar const *)arg2,(FXchar const *)arg3);
5184
+ vresult = rb_str_new2(result); return vresult; }
5185
+ static VALUE _wrap_FXComboBox_dropEnable(int argc, VALUE *argv, VALUE self) { FXComboBox *arg1 = (FXComboBox *) 0 ;
5186
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
5187
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXComboBox, 1); FXComboBox_dropEnable(arg1); return Qnil; }
5188
+ static VALUE _wrap_FXComboBox_dropDisable(int argc, VALUE *argv, VALUE self) { FXComboBox *arg1 = (FXComboBox *) 0 ;
5189
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
5190
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXComboBox, 1); FXComboBox_dropDisable(arg1); return Qnil; }
4913
5191
  static VALUE _wrap_FXComboBox_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) { FXComboBox *arg1 = (FXComboBox *) 0 ;
4914
5192
  FXRegion *arg2 = 0 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
4915
5193
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXComboBox, 1);
@@ -4963,6 +5241,12 @@ static VALUE _wrap_FXListBox_onFocusSelf(int argc, VALUE *argv, VALUE self) { FX
4963
5241
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXListBox, 1);
4964
5242
  SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXObject, 1); arg3 = NUM2UINT(argv[1]); arg4 = to_FXEvent(argv[2]);
4965
5243
  result = (long)(arg1)->onFocusSelf(arg2,arg3,arg4); vresult = INT2NUM(result); return vresult; }
5244
+ static VALUE _wrap_FXListBox_onMouseWheel(int argc, VALUE *argv, VALUE self) { FXListBox *arg1 = (FXListBox *) 0 ;
5245
+ FXObject *arg2 = (FXObject *) 0 ; FXSelector arg3 ; void *arg4 = (void *) 0 ; long result; VALUE vresult = Qnil;
5246
+ if ((argc < 3) || (argc > 3)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 3)",argc);
5247
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXListBox, 1);
5248
+ SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXObject, 1); arg3 = NUM2UINT(argv[1]); arg4 = to_FXEvent(argv[2]);
5249
+ result = (long)(arg1)->onMouseWheel(arg2,arg3,arg4); vresult = INT2NUM(result); return vresult; }
4966
5250
  static VALUE _wrap_FXListBox_onFieldButton(int argc, VALUE *argv, VALUE self) { FXListBox *arg1 = (FXListBox *) 0 ;
4967
5251
  FXObject *arg2 = (FXObject *) 0 ; FXSelector arg3 ; void *arg4 = (void *) 0 ; long result; VALUE vresult = Qnil;
4968
5252
  if ((argc < 3) || (argc > 3)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 3)",argc);
@@ -4975,19 +5259,19 @@ static VALUE _wrap_FXListBox_onListUpdate(int argc, VALUE *argv, VALUE self) { F
4975
5259
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXListBox, 1);
4976
5260
  SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXObject, 1); arg3 = NUM2UINT(argv[1]); arg4 = 0;
4977
5261
  result = (long)(arg1)->onListUpdate(arg2,arg3,arg4); vresult = INT2NUM(result); return vresult; }
4978
- static VALUE _wrap_FXListBox_onListChanged(int argc, VALUE *argv, VALUE self) { FXListBox *arg1 = (FXListBox *) 0 ;
5262
+ static VALUE _wrap_FXListBox_onListClicked(int argc, VALUE *argv, VALUE self) { FXListBox *arg1 = (FXListBox *) 0 ;
4979
5263
  FXObject *arg2 = (FXObject *) 0 ; FXSelector arg3 ; void *arg4 = (void *) 0 ; long result; VALUE vresult = Qnil;
4980
5264
  if ((argc < 3) || (argc > 3)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 3)",argc);
4981
5265
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXListBox, 1);
4982
5266
  SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXObject, 1); arg3 = NUM2UINT(argv[1]);
4983
- arg4 = reinterpret_cast<void*>(NUM2INT(argv[2])); result = (long)(arg1)->onListChanged(arg2,arg3,arg4);
5267
+ arg4 = reinterpret_cast<void*>(NUM2INT(argv[2])); result = (long)(arg1)->onListClicked(arg2,arg3,arg4);
4984
5268
  vresult = INT2NUM(result); return vresult; }
4985
- static VALUE _wrap_FXListBox_onListClicked(int argc, VALUE *argv, VALUE self) { FXListBox *arg1 = (FXListBox *) 0 ;
5269
+ static VALUE _wrap_FXListBox_onListChanged(int argc, VALUE *argv, VALUE self) { FXListBox *arg1 = (FXListBox *) 0 ;
4986
5270
  FXObject *arg2 = (FXObject *) 0 ; FXSelector arg3 ; void *arg4 = (void *) 0 ; long result; VALUE vresult = Qnil;
4987
5271
  if ((argc < 3) || (argc > 3)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 3)",argc);
4988
5272
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXListBox, 1);
4989
5273
  SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXObject, 1); arg3 = NUM2UINT(argv[1]);
4990
- arg4 = reinterpret_cast<void*>(NUM2INT(argv[2])); result = (long)(arg1)->onListClicked(arg2,arg3,arg4);
5274
+ arg4 = reinterpret_cast<void*>(NUM2INT(argv[2])); result = (long)(arg1)->onListChanged(arg2,arg3,arg4);
4991
5275
  vresult = INT2NUM(result); return vresult; }
4992
5276
  static VALUE _wrap_FXListBox_onCmdSetValue(int argc, VALUE *argv, VALUE self) { FXListBox *arg1 = (FXListBox *) 0 ;
4993
5277
  FXObject *arg2 = (FXObject *) 0 ; FXSelector arg3 ; void *arg4 = (void *) 0 ; long result; VALUE vresult = Qnil;
@@ -5110,6 +5394,14 @@ static VALUE _wrap_FXListBox_moveItem(int argc, VALUE *argv, VALUE self) { FXLis
5110
5394
  if (arg2 < 0 || arg2 >= arg1->getNumItems()) { rb_raise(rb_eIndexError, "list box item index out of bounds"); } } {
5111
5395
  if (arg3 < 0 || arg3 >= arg1->getNumItems()) { rb_raise(rb_eIndexError, "list box item index out of bounds"); } }
5112
5396
  result = (FXint)(arg1)->moveItem(arg2,arg3); vresult = INT2NUM(result); return vresult; }
5397
+ static VALUE _wrap_FXListBox_extractItem(int argc, VALUE *argv, VALUE self) { FXListBox *arg1 = (FXListBox *) 0 ; FXint arg2 ;
5398
+ FXListItem *result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 1))
5399
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
5400
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXListBox, 1); arg2 = NUM2INT(argv[0]); {
5401
+ if (arg2 < 0 || arg2 >= arg1->getNumItems()) { rb_raise(rb_eIndexError, "list box item index out of bounds"); } }
5402
+ result = (FXListItem *)(arg1)->extractItem(arg2); {
5403
+ swig_type_info *ty = SWIG_TypeDynamicCast(SWIGTYPE_p_FXListItem, (void **) &result);
5404
+ vresult = FXRbGetRubyObj(result, ty); } return vresult; }
5113
5405
  static VALUE _wrap_FXListBox_removeItem(int argc, VALUE *argv, VALUE self) { FXListBox *arg1 = (FXListBox *) 0 ; FXint arg2 ;
5114
5406
  if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
5115
5407
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXListBox, 1); arg2 = NUM2INT(argv[0]); {
@@ -5289,10 +5581,10 @@ static VALUE _wrap_FXListBox_getHeightForWidth(int argc, VALUE *argv, VALUE self
5289
5581
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
5290
5582
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXListBox, 1); arg2 = NUM2INT(argv[0]);
5291
5583
  result = (FXint)FXListBox_getHeightForWidth(arg1,arg2); vresult = INT2NUM(result); return vresult; }
5292
- static VALUE _wrap_FXListBox_canFocus(int argc, VALUE *argv, VALUE self) { FXListBox *arg1 = (FXListBox *) 0 ; FXbool result;
5584
+ static VALUE _wrap_FXListBox_canFocus(int argc, VALUE *argv, VALUE self) { FXListBox *arg1 = (FXListBox *) 0 ; bool result;
5293
5585
  VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
5294
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXListBox, 1);
5295
- result = (FXbool)FXListBox_canFocus((FXListBox const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
5586
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXListBox, 1); result = (bool)FXListBox_canFocus((FXListBox const *)arg1);
5587
+ vresult = result ? Qtrue : Qfalse; return vresult; }
5296
5588
  static VALUE _wrap_FXListBox_setFocus(int argc, VALUE *argv, VALUE self) { FXListBox *arg1 = (FXListBox *) 0 ;
5297
5589
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
5298
5590
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXListBox, 1); FXListBox_setFocus(arg1); return Qnil; }
@@ -5347,24 +5639,36 @@ static VALUE _wrap_FXListBox_show(int argc, VALUE *argv, VALUE self) { FXListBox
5347
5639
  static VALUE _wrap_FXListBox_hide(int argc, VALUE *argv, VALUE self) { FXListBox *arg1 = (FXListBox *) 0 ;
5348
5640
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
5349
5641
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXListBox, 1); FXListBox_hide(arg1); return Qnil; }
5350
- static VALUE _wrap_FXListBox_isComposite(int argc, VALUE *argv, VALUE self) { FXListBox *arg1 = (FXListBox *) 0 ; FXbool result;
5642
+ static VALUE _wrap_FXListBox_isComposite(int argc, VALUE *argv, VALUE self) { FXListBox *arg1 = (FXListBox *) 0 ; bool result;
5351
5643
  VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
5352
5644
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXListBox, 1);
5353
- result = (FXbool)FXListBox_isComposite((FXListBox const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
5645
+ result = (bool)FXListBox_isComposite((FXListBox const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
5354
5646
  static VALUE _wrap_FXListBox_contains(int argc, VALUE *argv, VALUE self) { FXListBox *arg1 = (FXListBox *) 0 ; FXint arg2 ;
5355
- FXint arg3 ; FXbool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
5647
+ FXint arg3 ; bool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
5356
5648
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
5357
5649
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXListBox, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]);
5358
- result = (FXbool)FXListBox_contains((FXListBox const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse; return vresult; }
5359
- static VALUE _wrap_FXListBox_doesSaveUnder(int argc, VALUE *argv, VALUE self) { FXListBox *arg1 = (FXListBox *) 0 ;
5360
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
5361
- rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
5650
+ result = (bool)FXListBox_contains((FXListBox const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse; return vresult; }
5651
+ static VALUE _wrap_FXListBox_doesSaveUnder(int argc, VALUE *argv, VALUE self) { FXListBox *arg1 = (FXListBox *) 0 ; bool result;
5652
+ VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
5362
5653
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXListBox, 1);
5363
- result = (FXbool)FXListBox_doesSaveUnder((FXListBox const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
5654
+ result = (bool)FXListBox_doesSaveUnder((FXListBox const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
5364
5655
  static VALUE _wrap_FXListBox_setBackColor(int argc, VALUE *argv, VALUE self) { FXListBox *arg1 = (FXListBox *) 0 ;
5365
5656
  FXColor arg2 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
5366
5657
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXListBox, 1); arg2 = to_FXColor(argv[0]);
5367
5658
  FXListBox_setBackColor(arg1,arg2); return Qnil; }
5659
+ static VALUE _wrap_FXListBox_tr(int argc, VALUE *argv, VALUE self) { FXListBox *arg1 = (FXListBox *) 0 ; FXchar *arg2 ;
5660
+ FXchar *arg3 = (FXchar *) 0 ; FXchar *result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 2))
5661
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
5662
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXListBox, 1); arg2 = StringValuePtr(argv[0]); if (argc > 1) {
5663
+ arg3 = StringValuePtr(argv[1]); }
5664
+ result = (FXchar *)FXListBox_tr((FXListBox const *)arg1,(FXchar const *)arg2,(FXchar const *)arg3);
5665
+ vresult = rb_str_new2(result); return vresult; }
5666
+ static VALUE _wrap_FXListBox_dropEnable(int argc, VALUE *argv, VALUE self) { FXListBox *arg1 = (FXListBox *) 0 ;
5667
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
5668
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXListBox, 1); FXListBox_dropEnable(arg1); return Qnil; }
5669
+ static VALUE _wrap_FXListBox_dropDisable(int argc, VALUE *argv, VALUE self) { FXListBox *arg1 = (FXListBox *) 0 ;
5670
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
5671
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXListBox, 1); FXListBox_dropDisable(arg1); return Qnil; }
5368
5672
  static VALUE _wrap_FXListBox_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) { FXListBox *arg1 = (FXListBox *) 0 ;
5369
5673
  FXRegion *arg2 = 0 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
5370
5674
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXListBox, 1);
@@ -5399,10 +5703,12 @@ static VALUE _wrap_FXListBox_clearShape(int argc, VALUE *argv, VALUE self) { FXL
5399
5703
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
5400
5704
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXListBox, 1); FXListBox_clearShape(arg1); return Qnil; }
5401
5705
  static VALUE _wrap_FXListBox_setCurrentItem(int argc, VALUE *argv, VALUE self) { FXListBox *arg1 = (FXListBox *) 0 ;
5402
- FXint arg2 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
5403
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXListBox, 1); arg2 = NUM2INT(argv[0]); {
5404
- if (arg2 < 0 || arg2 >= arg1->getNumItems()) { rb_raise(rb_eIndexError, "list box item index out of bounds"); } }
5405
- FXListBox_setCurrentItem(arg1,arg2); return Qnil; }
5706
+ FXint arg2 ; FXbool arg3 = (FXbool) 0 ; if ((argc < 1) || (argc > 2))
5707
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
5708
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXListBox, 1); arg2 = NUM2INT(argv[0]); if (argc > 1) {
5709
+ arg3 = to_FXbool(argv[1]); } { if (arg2 < 0 || arg2 >= arg1->getNumItems()) {
5710
+ rb_raise(rb_eIndexError, "list box item index out of bounds"); } } FXListBox_setCurrentItem(arg1,arg2,arg3);
5711
+ return Qnil; }
5406
5712
  static VALUE _wrap_FXTreeListBox_onFocusUp(int argc, VALUE *argv, VALUE self) { FXTreeListBox *arg1 = (FXTreeListBox *) 0 ;
5407
5713
  FXObject *arg2 = (FXObject *) 0 ; FXSelector arg3 ; void *arg4 = (void *) 0 ; long result; VALUE vresult = Qnil;
5408
5714
  if ((argc < 3) || (argc > 3)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 3)",argc);
@@ -5421,6 +5727,12 @@ static VALUE _wrap_FXTreeListBox_onFocusSelf(int argc, VALUE *argv, VALUE self)
5421
5727
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTreeListBox, 1);
5422
5728
  SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXObject, 1); arg3 = NUM2UINT(argv[1]); arg4 = to_FXEvent(argv[2]);
5423
5729
  result = (long)(arg1)->onFocusSelf(arg2,arg3,arg4); vresult = INT2NUM(result); return vresult; }
5730
+ static VALUE _wrap_FXTreeListBox_onMouseWheel(int argc, VALUE *argv, VALUE self) { FXTreeListBox *arg1 = (FXTreeListBox *) 0 ;
5731
+ FXObject *arg2 = (FXObject *) 0 ; FXSelector arg3 ; void *arg4 = (void *) 0 ; long result; VALUE vresult = Qnil;
5732
+ if ((argc < 3) || (argc > 3)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 3)",argc);
5733
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTreeListBox, 1);
5734
+ SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXObject, 1); arg3 = NUM2UINT(argv[1]); arg4 = to_FXEvent(argv[2]);
5735
+ result = (long)(arg1)->onMouseWheel(arg2,arg3,arg4); vresult = INT2NUM(result); return vresult; }
5424
5736
  static VALUE _wrap_FXTreeListBox_onFieldButton(int argc, VALUE *argv, VALUE self) { FXTreeListBox *arg1 = (FXTreeListBox *) 0 ;
5425
5737
  FXObject *arg2 = (FXObject *) 0 ; FXSelector arg3 ; void *arg4 = (void *) 0 ; long result; VALUE vresult = Qnil;
5426
5738
  if ((argc < 3) || (argc > 3)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 3)",argc);
@@ -5682,6 +5994,13 @@ static VALUE _wrap_FXTreeListBox_moveItem(int argc, VALUE *argv, VALUE self) { F
5682
5994
  result = (FXTreeItem *)(arg1)->moveItem(arg2,arg3,arg4); {
5683
5995
  swig_type_info *ty = SWIG_TypeDynamicCast(SWIGTYPE_p_FXTreeItem, (void **) &result);
5684
5996
  vresult = FXRbGetRubyObj(result, ty); } return vresult; }
5997
+ static VALUE _wrap_FXTreeListBox_extractItem(int argc, VALUE *argv, VALUE self) { FXTreeListBox *arg1 = (FXTreeListBox *) 0 ;
5998
+ FXTreeItem *arg2 = (FXTreeItem *) 0 ; FXTreeItem *result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 1))
5999
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
6000
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTreeListBox, 1);
6001
+ SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXTreeItem, 1); result = (FXTreeItem *)(arg1)->extractItem(arg2); {
6002
+ swig_type_info *ty = SWIG_TypeDynamicCast(SWIGTYPE_p_FXTreeItem, (void **) &result);
6003
+ vresult = FXRbGetRubyObj(result, ty); } return vresult; }
5685
6004
  static VALUE _wrap_FXTreeListBox_findItem(int argc, VALUE *argv, VALUE self) { FXTreeListBox *arg1 = (FXTreeListBox *) 0 ;
5686
6005
  FXString *arg2 = 0 ; FXTreeItem *arg3 = (FXTreeItem *) 0 ; FXuint arg4 = (FXuint) SEARCH_FORWARD|SEARCH_WRAP ;
5687
6006
  FXTreeItem *result; SwigValueWrapper<FXString > p2 ; VALUE vresult = Qnil; if ((argc < 1) || (argc > 3))
@@ -5884,10 +6203,10 @@ static VALUE _wrap_FXTreeListBox_getHeightForWidth(int argc, VALUE *argv, VALUE
5884
6203
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTreeListBox, 1); arg2 = NUM2INT(argv[0]);
5885
6204
  result = (FXint)FXTreeListBox_getHeightForWidth(arg1,arg2); vresult = INT2NUM(result); return vresult; }
5886
6205
  static VALUE _wrap_FXTreeListBox_canFocus(int argc, VALUE *argv, VALUE self) { FXTreeListBox *arg1 = (FXTreeListBox *) 0 ;
5887
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
6206
+ bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
5888
6207
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
5889
6208
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTreeListBox, 1);
5890
- result = (FXbool)FXTreeListBox_canFocus((FXTreeListBox const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
6209
+ result = (bool)FXTreeListBox_canFocus((FXTreeListBox const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
5891
6210
  static VALUE _wrap_FXTreeListBox_setFocus(int argc, VALUE *argv, VALUE self) { FXTreeListBox *arg1 = (FXTreeListBox *) 0 ;
5892
6211
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
5893
6212
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTreeListBox, 1); FXTreeListBox_setFocus(arg1); return Qnil; }
@@ -5943,26 +6262,38 @@ static VALUE _wrap_FXTreeListBox_hide(int argc, VALUE *argv, VALUE self) { FXTre
5943
6262
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
5944
6263
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTreeListBox, 1); FXTreeListBox_hide(arg1); return Qnil; }
5945
6264
  static VALUE _wrap_FXTreeListBox_isComposite(int argc, VALUE *argv, VALUE self) { FXTreeListBox *arg1 = (FXTreeListBox *) 0 ;
5946
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
6265
+ bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
5947
6266
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
5948
6267
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTreeListBox, 1);
5949
- result = (FXbool)FXTreeListBox_isComposite((FXTreeListBox const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
6268
+ result = (bool)FXTreeListBox_isComposite((FXTreeListBox const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
5950
6269
  static VALUE _wrap_FXTreeListBox_contains(int argc, VALUE *argv, VALUE self) { FXTreeListBox *arg1 = (FXTreeListBox *) 0 ;
5951
- FXint arg2 ; FXint arg3 ; FXbool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
6270
+ FXint arg2 ; FXint arg3 ; bool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
5952
6271
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
5953
6272
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTreeListBox, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]);
5954
- result = (FXbool)FXTreeListBox_contains((FXTreeListBox const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse;
6273
+ result = (bool)FXTreeListBox_contains((FXTreeListBox const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse;
5955
6274
  return vresult; }
5956
6275
  static VALUE _wrap_FXTreeListBox_doesSaveUnder(int argc, VALUE *argv, VALUE self) { FXTreeListBox *arg1 = (FXTreeListBox *) 0 ;
5957
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
6276
+ bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
5958
6277
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
5959
6278
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTreeListBox, 1);
5960
- result = (FXbool)FXTreeListBox_doesSaveUnder((FXTreeListBox const *)arg1); vresult = result ? Qtrue : Qfalse;
5961
- return vresult; }
6279
+ result = (bool)FXTreeListBox_doesSaveUnder((FXTreeListBox const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
5962
6280
  static VALUE _wrap_FXTreeListBox_setBackColor(int argc, VALUE *argv, VALUE self) { FXTreeListBox *arg1 = (FXTreeListBox *) 0 ;
5963
6281
  FXColor arg2 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
5964
6282
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTreeListBox, 1); arg2 = to_FXColor(argv[0]);
5965
6283
  FXTreeListBox_setBackColor(arg1,arg2); return Qnil; }
6284
+ static VALUE _wrap_FXTreeListBox_tr(int argc, VALUE *argv, VALUE self) { FXTreeListBox *arg1 = (FXTreeListBox *) 0 ;
6285
+ FXchar *arg2 ; FXchar *arg3 = (FXchar *) 0 ; FXchar *result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 2))
6286
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
6287
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTreeListBox, 1); arg2 = StringValuePtr(argv[0]); if (argc > 1) {
6288
+ arg3 = StringValuePtr(argv[1]); }
6289
+ result = (FXchar *)FXTreeListBox_tr((FXTreeListBox const *)arg1,(FXchar const *)arg2,(FXchar const *)arg3);
6290
+ vresult = rb_str_new2(result); return vresult; }
6291
+ static VALUE _wrap_FXTreeListBox_dropEnable(int argc, VALUE *argv, VALUE self) { FXTreeListBox *arg1 = (FXTreeListBox *) 0 ;
6292
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
6293
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTreeListBox, 1); FXTreeListBox_dropEnable(arg1); return Qnil; }
6294
+ static VALUE _wrap_FXTreeListBox_dropDisable(int argc, VALUE *argv, VALUE self) { FXTreeListBox *arg1 = (FXTreeListBox *) 0 ;
6295
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
6296
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTreeListBox, 1); FXTreeListBox_dropDisable(arg1); return Qnil; }
5966
6297
  static VALUE _wrap_FXTreeListBox_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
5967
6298
  FXTreeListBox *arg1 = (FXTreeListBox *) 0 ; FXRegion *arg2 = 0 ; if ((argc < 1) || (argc > 1))
5968
6299
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
@@ -6120,10 +6451,10 @@ static VALUE _wrap_FXImageView_getHeightForWidth(int argc, VALUE *argv, VALUE se
6120
6451
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXImageView, 1); arg2 = NUM2INT(argv[0]);
6121
6452
  result = (FXint)FXImageView_getHeightForWidth(arg1,arg2); vresult = INT2NUM(result); return vresult; }
6122
6453
  static VALUE _wrap_FXImageView_canFocus(int argc, VALUE *argv, VALUE self) { FXImageView *arg1 = (FXImageView *) 0 ;
6123
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
6454
+ bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
6124
6455
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
6125
6456
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXImageView, 1);
6126
- result = (FXbool)FXImageView_canFocus((FXImageView const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
6457
+ result = (bool)FXImageView_canFocus((FXImageView const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
6127
6458
  static VALUE _wrap_FXImageView_setFocus(int argc, VALUE *argv, VALUE self) { FXImageView *arg1 = (FXImageView *) 0 ;
6128
6459
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
6129
6460
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXImageView, 1); FXImageView_setFocus(arg1); return Qnil; }
@@ -6179,25 +6510,38 @@ static VALUE _wrap_FXImageView_hide(int argc, VALUE *argv, VALUE self) { FXImage
6179
6510
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
6180
6511
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXImageView, 1); FXImageView_hide(arg1); return Qnil; }
6181
6512
  static VALUE _wrap_FXImageView_isComposite(int argc, VALUE *argv, VALUE self) { FXImageView *arg1 = (FXImageView *) 0 ;
6182
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
6513
+ bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
6183
6514
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
6184
6515
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXImageView, 1);
6185
- result = (FXbool)FXImageView_isComposite((FXImageView const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
6516
+ result = (bool)FXImageView_isComposite((FXImageView const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
6186
6517
  static VALUE _wrap_FXImageView_contains(int argc, VALUE *argv, VALUE self) { FXImageView *arg1 = (FXImageView *) 0 ;
6187
- FXint arg2 ; FXint arg3 ; FXbool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
6518
+ FXint arg2 ; FXint arg3 ; bool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
6188
6519
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
6189
6520
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXImageView, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]);
6190
- result = (FXbool)FXImageView_contains((FXImageView const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse;
6521
+ result = (bool)FXImageView_contains((FXImageView const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse;
6191
6522
  return vresult; }
6192
6523
  static VALUE _wrap_FXImageView_doesSaveUnder(int argc, VALUE *argv, VALUE self) { FXImageView *arg1 = (FXImageView *) 0 ;
6193
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
6524
+ bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
6194
6525
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
6195
6526
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXImageView, 1);
6196
- result = (FXbool)FXImageView_doesSaveUnder((FXImageView const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
6527
+ result = (bool)FXImageView_doesSaveUnder((FXImageView const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
6197
6528
  static VALUE _wrap_FXImageView_setBackColor(int argc, VALUE *argv, VALUE self) { FXImageView *arg1 = (FXImageView *) 0 ;
6198
6529
  FXColor arg2 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
6199
6530
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXImageView, 1); arg2 = to_FXColor(argv[0]);
6200
6531
  FXImageView_setBackColor(arg1,arg2); return Qnil; }
6532
+ static VALUE _wrap_FXImageView_tr(int argc, VALUE *argv, VALUE self) { FXImageView *arg1 = (FXImageView *) 0 ; FXchar *arg2 ;
6533
+ FXchar *arg3 = (FXchar *) 0 ; FXchar *result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 2))
6534
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
6535
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXImageView, 1); arg2 = StringValuePtr(argv[0]); if (argc > 1) {
6536
+ arg3 = StringValuePtr(argv[1]); }
6537
+ result = (FXchar *)FXImageView_tr((FXImageView const *)arg1,(FXchar const *)arg2,(FXchar const *)arg3);
6538
+ vresult = rb_str_new2(result); return vresult; }
6539
+ static VALUE _wrap_FXImageView_dropEnable(int argc, VALUE *argv, VALUE self) { FXImageView *arg1 = (FXImageView *) 0 ;
6540
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
6541
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXImageView, 1); FXImageView_dropEnable(arg1); return Qnil; }
6542
+ static VALUE _wrap_FXImageView_dropDisable(int argc, VALUE *argv, VALUE self) { FXImageView *arg1 = (FXImageView *) 0 ;
6543
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
6544
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXImageView, 1); FXImageView_dropDisable(arg1); return Qnil; }
6201
6545
  static VALUE _wrap_FXImageView_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) { FXImageView *arg1 = (FXImageView *) 0 ;
6202
6546
  FXRegion *arg2 = 0 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
6203
6547
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXImageView, 1);
@@ -6374,10 +6718,10 @@ static VALUE _wrap_FXDragCorner_getHeightForWidth(int argc, VALUE *argv, VALUE s
6374
6718
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDragCorner, 1); arg2 = NUM2INT(argv[0]);
6375
6719
  result = (FXint)FXDragCorner_getHeightForWidth(arg1,arg2); vresult = INT2NUM(result); return vresult; }
6376
6720
  static VALUE _wrap_FXDragCorner_canFocus(int argc, VALUE *argv, VALUE self) { FXDragCorner *arg1 = (FXDragCorner *) 0 ;
6377
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
6721
+ bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
6378
6722
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
6379
6723
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDragCorner, 1);
6380
- result = (FXbool)FXDragCorner_canFocus((FXDragCorner const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
6724
+ result = (bool)FXDragCorner_canFocus((FXDragCorner const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
6381
6725
  static VALUE _wrap_FXDragCorner_setFocus(int argc, VALUE *argv, VALUE self) { FXDragCorner *arg1 = (FXDragCorner *) 0 ;
6382
6726
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
6383
6727
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDragCorner, 1); FXDragCorner_setFocus(arg1); return Qnil; }
@@ -6433,25 +6777,38 @@ static VALUE _wrap_FXDragCorner_hide(int argc, VALUE *argv, VALUE self) { FXDrag
6433
6777
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
6434
6778
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDragCorner, 1); FXDragCorner_hide(arg1); return Qnil; }
6435
6779
  static VALUE _wrap_FXDragCorner_isComposite(int argc, VALUE *argv, VALUE self) { FXDragCorner *arg1 = (FXDragCorner *) 0 ;
6436
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
6780
+ bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
6437
6781
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
6438
6782
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDragCorner, 1);
6439
- result = (FXbool)FXDragCorner_isComposite((FXDragCorner const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
6783
+ result = (bool)FXDragCorner_isComposite((FXDragCorner const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
6440
6784
  static VALUE _wrap_FXDragCorner_contains(int argc, VALUE *argv, VALUE self) { FXDragCorner *arg1 = (FXDragCorner *) 0 ;
6441
- FXint arg2 ; FXint arg3 ; FXbool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
6785
+ FXint arg2 ; FXint arg3 ; bool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
6442
6786
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
6443
6787
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDragCorner, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]);
6444
- result = (FXbool)FXDragCorner_contains((FXDragCorner const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse;
6788
+ result = (bool)FXDragCorner_contains((FXDragCorner const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse;
6445
6789
  return vresult; }
6446
6790
  static VALUE _wrap_FXDragCorner_doesSaveUnder(int argc, VALUE *argv, VALUE self) { FXDragCorner *arg1 = (FXDragCorner *) 0 ;
6447
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
6791
+ bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
6448
6792
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
6449
6793
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDragCorner, 1);
6450
- result = (FXbool)FXDragCorner_doesSaveUnder((FXDragCorner const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
6794
+ result = (bool)FXDragCorner_doesSaveUnder((FXDragCorner const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
6451
6795
  static VALUE _wrap_FXDragCorner_setBackColor(int argc, VALUE *argv, VALUE self) { FXDragCorner *arg1 = (FXDragCorner *) 0 ;
6452
6796
  FXColor arg2 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
6453
6797
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDragCorner, 1); arg2 = to_FXColor(argv[0]);
6454
6798
  FXDragCorner_setBackColor(arg1,arg2); return Qnil; }
6799
+ static VALUE _wrap_FXDragCorner_tr(int argc, VALUE *argv, VALUE self) { FXDragCorner *arg1 = (FXDragCorner *) 0 ; FXchar *arg2 ;
6800
+ FXchar *arg3 = (FXchar *) 0 ; FXchar *result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 2))
6801
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
6802
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDragCorner, 1); arg2 = StringValuePtr(argv[0]); if (argc > 1) {
6803
+ arg3 = StringValuePtr(argv[1]); }
6804
+ result = (FXchar *)FXDragCorner_tr((FXDragCorner const *)arg1,(FXchar const *)arg2,(FXchar const *)arg3);
6805
+ vresult = rb_str_new2(result); return vresult; }
6806
+ static VALUE _wrap_FXDragCorner_dropEnable(int argc, VALUE *argv, VALUE self) { FXDragCorner *arg1 = (FXDragCorner *) 0 ;
6807
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
6808
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDragCorner, 1); FXDragCorner_dropEnable(arg1); return Qnil; }
6809
+ static VALUE _wrap_FXDragCorner_dropDisable(int argc, VALUE *argv, VALUE self) { FXDragCorner *arg1 = (FXDragCorner *) 0 ;
6810
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
6811
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDragCorner, 1); FXDragCorner_dropDisable(arg1); return Qnil; }
6455
6812
  static VALUE _wrap_FXDragCorner_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) { FXDragCorner *arg1 = (FXDragCorner *) 0 ;
6456
6813
  FXRegion *arg2 = 0 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
6457
6814
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDragCorner, 1);
@@ -6610,9 +6967,9 @@ static VALUE _wrap_FXDirBox_getHeightForWidth(int argc, VALUE *argv, VALUE self)
6610
6967
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
6611
6968
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDirBox, 1); arg2 = NUM2INT(argv[0]);
6612
6969
  result = (FXint)FXDirBox_getHeightForWidth(arg1,arg2); vresult = INT2NUM(result); return vresult; }
6613
- static VALUE _wrap_FXDirBox_canFocus(int argc, VALUE *argv, VALUE self) { FXDirBox *arg1 = (FXDirBox *) 0 ; FXbool result;
6970
+ static VALUE _wrap_FXDirBox_canFocus(int argc, VALUE *argv, VALUE self) { FXDirBox *arg1 = (FXDirBox *) 0 ; bool result;
6614
6971
  VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
6615
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDirBox, 1); result = (FXbool)FXDirBox_canFocus((FXDirBox const *)arg1);
6972
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDirBox, 1); result = (bool)FXDirBox_canFocus((FXDirBox const *)arg1);
6616
6973
  vresult = result ? Qtrue : Qfalse; return vresult; }
6617
6974
  static VALUE _wrap_FXDirBox_setFocus(int argc, VALUE *argv, VALUE self) { FXDirBox *arg1 = (FXDirBox *) 0 ;
6618
6975
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
@@ -6668,23 +7025,36 @@ static VALUE _wrap_FXDirBox_show(int argc, VALUE *argv, VALUE self) { FXDirBox *
6668
7025
  static VALUE _wrap_FXDirBox_hide(int argc, VALUE *argv, VALUE self) { FXDirBox *arg1 = (FXDirBox *) 0 ;
6669
7026
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
6670
7027
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDirBox, 1); FXDirBox_hide(arg1); return Qnil; }
6671
- static VALUE _wrap_FXDirBox_isComposite(int argc, VALUE *argv, VALUE self) { FXDirBox *arg1 = (FXDirBox *) 0 ; FXbool result;
7028
+ static VALUE _wrap_FXDirBox_isComposite(int argc, VALUE *argv, VALUE self) { FXDirBox *arg1 = (FXDirBox *) 0 ; bool result;
6672
7029
  VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
6673
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDirBox, 1);
6674
- result = (FXbool)FXDirBox_isComposite((FXDirBox const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
7030
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDirBox, 1); result = (bool)FXDirBox_isComposite((FXDirBox const *)arg1);
7031
+ vresult = result ? Qtrue : Qfalse; return vresult; }
6675
7032
  static VALUE _wrap_FXDirBox_contains(int argc, VALUE *argv, VALUE self) { FXDirBox *arg1 = (FXDirBox *) 0 ; FXint arg2 ;
6676
- FXint arg3 ; FXbool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
7033
+ FXint arg3 ; bool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
6677
7034
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
6678
7035
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDirBox, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]);
6679
- result = (FXbool)FXDirBox_contains((FXDirBox const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse; return vresult; }
6680
- static VALUE _wrap_FXDirBox_doesSaveUnder(int argc, VALUE *argv, VALUE self) { FXDirBox *arg1 = (FXDirBox *) 0 ; FXbool result;
7036
+ result = (bool)FXDirBox_contains((FXDirBox const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse; return vresult; }
7037
+ static VALUE _wrap_FXDirBox_doesSaveUnder(int argc, VALUE *argv, VALUE self) { FXDirBox *arg1 = (FXDirBox *) 0 ; bool result;
6681
7038
  VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
6682
7039
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDirBox, 1);
6683
- result = (FXbool)FXDirBox_doesSaveUnder((FXDirBox const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
7040
+ result = (bool)FXDirBox_doesSaveUnder((FXDirBox const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
6684
7041
  static VALUE _wrap_FXDirBox_setBackColor(int argc, VALUE *argv, VALUE self) { FXDirBox *arg1 = (FXDirBox *) 0 ; FXColor arg2 ;
6685
7042
  if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
6686
7043
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDirBox, 1); arg2 = to_FXColor(argv[0]);
6687
7044
  FXDirBox_setBackColor(arg1,arg2); return Qnil; }
7045
+ static VALUE _wrap_FXDirBox_tr(int argc, VALUE *argv, VALUE self) { FXDirBox *arg1 = (FXDirBox *) 0 ; FXchar *arg2 ;
7046
+ FXchar *arg3 = (FXchar *) 0 ; FXchar *result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 2))
7047
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
7048
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDirBox, 1); arg2 = StringValuePtr(argv[0]); if (argc > 1) {
7049
+ arg3 = StringValuePtr(argv[1]); }
7050
+ result = (FXchar *)FXDirBox_tr((FXDirBox const *)arg1,(FXchar const *)arg2,(FXchar const *)arg3);
7051
+ vresult = rb_str_new2(result); return vresult; }
7052
+ static VALUE _wrap_FXDirBox_dropEnable(int argc, VALUE *argv, VALUE self) { FXDirBox *arg1 = (FXDirBox *) 0 ;
7053
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
7054
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDirBox, 1); FXDirBox_dropEnable(arg1); return Qnil; }
7055
+ static VALUE _wrap_FXDirBox_dropDisable(int argc, VALUE *argv, VALUE self) { FXDirBox *arg1 = (FXDirBox *) 0 ;
7056
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
7057
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDirBox, 1); FXDirBox_dropDisable(arg1); return Qnil; }
6688
7058
  static VALUE _wrap_FXDirBox_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) { FXDirBox *arg1 = (FXDirBox *) 0 ;
6689
7059
  FXRegion *arg2 = 0 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
6690
7060
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDirBox, 1);
@@ -6851,10 +7221,10 @@ static VALUE _wrap_FXDriveBox_getHeightForWidth(int argc, VALUE *argv, VALUE sel
6851
7221
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
6852
7222
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDriveBox, 1); arg2 = NUM2INT(argv[0]);
6853
7223
  result = (FXint)FXDriveBox_getHeightForWidth(arg1,arg2); vresult = INT2NUM(result); return vresult; }
6854
- static VALUE _wrap_FXDriveBox_canFocus(int argc, VALUE *argv, VALUE self) { FXDriveBox *arg1 = (FXDriveBox *) 0 ; FXbool result;
7224
+ static VALUE _wrap_FXDriveBox_canFocus(int argc, VALUE *argv, VALUE self) { FXDriveBox *arg1 = (FXDriveBox *) 0 ; bool result;
6855
7225
  VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
6856
7226
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDriveBox, 1);
6857
- result = (FXbool)FXDriveBox_canFocus((FXDriveBox const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
7227
+ result = (bool)FXDriveBox_canFocus((FXDriveBox const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
6858
7228
  static VALUE _wrap_FXDriveBox_setFocus(int argc, VALUE *argv, VALUE self) { FXDriveBox *arg1 = (FXDriveBox *) 0 ;
6859
7229
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
6860
7230
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDriveBox, 1); FXDriveBox_setFocus(arg1); return Qnil; }
@@ -6910,25 +7280,37 @@ static VALUE _wrap_FXDriveBox_hide(int argc, VALUE *argv, VALUE self) { FXDriveB
6910
7280
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
6911
7281
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDriveBox, 1); FXDriveBox_hide(arg1); return Qnil; }
6912
7282
  static VALUE _wrap_FXDriveBox_isComposite(int argc, VALUE *argv, VALUE self) { FXDriveBox *arg1 = (FXDriveBox *) 0 ;
6913
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
7283
+ bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
6914
7284
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
6915
7285
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDriveBox, 1);
6916
- result = (FXbool)FXDriveBox_isComposite((FXDriveBox const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
7286
+ result = (bool)FXDriveBox_isComposite((FXDriveBox const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
6917
7287
  static VALUE _wrap_FXDriveBox_contains(int argc, VALUE *argv, VALUE self) { FXDriveBox *arg1 = (FXDriveBox *) 0 ; FXint arg2 ;
6918
- FXint arg3 ; FXbool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
7288
+ FXint arg3 ; bool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
6919
7289
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
6920
7290
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDriveBox, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]);
6921
- result = (FXbool)FXDriveBox_contains((FXDriveBox const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse;
6922
- return vresult; }
7291
+ result = (bool)FXDriveBox_contains((FXDriveBox const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse; return vresult; }
6923
7292
  static VALUE _wrap_FXDriveBox_doesSaveUnder(int argc, VALUE *argv, VALUE self) { FXDriveBox *arg1 = (FXDriveBox *) 0 ;
6924
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
7293
+ bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
6925
7294
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
6926
7295
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDriveBox, 1);
6927
- result = (FXbool)FXDriveBox_doesSaveUnder((FXDriveBox const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
7296
+ result = (bool)FXDriveBox_doesSaveUnder((FXDriveBox const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
6928
7297
  static VALUE _wrap_FXDriveBox_setBackColor(int argc, VALUE *argv, VALUE self) { FXDriveBox *arg1 = (FXDriveBox *) 0 ;
6929
7298
  FXColor arg2 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
6930
7299
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDriveBox, 1); arg2 = to_FXColor(argv[0]);
6931
7300
  FXDriveBox_setBackColor(arg1,arg2); return Qnil; }
7301
+ static VALUE _wrap_FXDriveBox_tr(int argc, VALUE *argv, VALUE self) { FXDriveBox *arg1 = (FXDriveBox *) 0 ; FXchar *arg2 ;
7302
+ FXchar *arg3 = (FXchar *) 0 ; FXchar *result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 2))
7303
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
7304
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDriveBox, 1); arg2 = StringValuePtr(argv[0]); if (argc > 1) {
7305
+ arg3 = StringValuePtr(argv[1]); }
7306
+ result = (FXchar *)FXDriveBox_tr((FXDriveBox const *)arg1,(FXchar const *)arg2,(FXchar const *)arg3);
7307
+ vresult = rb_str_new2(result); return vresult; }
7308
+ static VALUE _wrap_FXDriveBox_dropEnable(int argc, VALUE *argv, VALUE self) { FXDriveBox *arg1 = (FXDriveBox *) 0 ;
7309
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
7310
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDriveBox, 1); FXDriveBox_dropEnable(arg1); return Qnil; }
7311
+ static VALUE _wrap_FXDriveBox_dropDisable(int argc, VALUE *argv, VALUE self) { FXDriveBox *arg1 = (FXDriveBox *) 0 ;
7312
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
7313
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDriveBox, 1); FXDriveBox_dropDisable(arg1); return Qnil; }
6932
7314
  static VALUE _wrap_FXDriveBox_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) { FXDriveBox *arg1 = (FXDriveBox *) 0 ;
6933
7315
  FXRegion *arg2 = 0 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
6934
7316
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDriveBox, 1);
@@ -6965,9 +7347,10 @@ static VALUE _wrap_FXDriveBox_clearShape(int argc, VALUE *argv, VALUE self) { FX
6965
7347
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
6966
7348
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDriveBox, 1); FXDriveBox_clearShape(arg1); return Qnil; }
6967
7349
  static VALUE _wrap_FXDriveBox_setCurrentItem(int argc, VALUE *argv, VALUE self) { FXDriveBox *arg1 = (FXDriveBox *) 0 ;
6968
- FXint arg2 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
6969
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDriveBox, 1); arg2 = NUM2INT(argv[0]);
6970
- FXDriveBox_setCurrentItem(arg1,arg2); return Qnil; }
7350
+ FXint arg2 ; FXbool arg3 = (FXbool) 0 ; if ((argc < 1) || (argc > 2))
7351
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
7352
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDriveBox, 1); arg2 = NUM2INT(argv[0]); if (argc > 1) {
7353
+ arg3 = to_FXbool(argv[1]); } FXDriveBox_setCurrentItem(arg1,arg2,arg3); return Qnil; }
6971
7354
  static VALUE _wrap_FXDirSelector_onCmdName(int argc, VALUE *argv, VALUE self) { FXDirSelector *arg1 = (FXDirSelector *) 0 ;
6972
7355
  FXObject *arg2 = (FXObject *) 0 ; FXSelector arg3 ; void *arg4 = (void *) 0 ; long result; VALUE vresult = Qnil;
6973
7356
  if ((argc < 3) || (argc > 3)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 3)",argc);
@@ -7190,10 +7573,10 @@ static VALUE _wrap_FXDirSelector_getHeightForWidth(int argc, VALUE *argv, VALUE
7190
7573
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDirSelector, 1); arg2 = NUM2INT(argv[0]);
7191
7574
  result = (FXint)FXDirSelector_getHeightForWidth(arg1,arg2); vresult = INT2NUM(result); return vresult; }
7192
7575
  static VALUE _wrap_FXDirSelector_canFocus(int argc, VALUE *argv, VALUE self) { FXDirSelector *arg1 = (FXDirSelector *) 0 ;
7193
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
7576
+ bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
7194
7577
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
7195
7578
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDirSelector, 1);
7196
- result = (FXbool)FXDirSelector_canFocus((FXDirSelector const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
7579
+ result = (bool)FXDirSelector_canFocus((FXDirSelector const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
7197
7580
  static VALUE _wrap_FXDirSelector_setFocus(int argc, VALUE *argv, VALUE self) { FXDirSelector *arg1 = (FXDirSelector *) 0 ;
7198
7581
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
7199
7582
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDirSelector, 1); FXDirSelector_setFocus(arg1); return Qnil; }
@@ -7249,26 +7632,38 @@ static VALUE _wrap_FXDirSelector_hide(int argc, VALUE *argv, VALUE self) { FXDir
7249
7632
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
7250
7633
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDirSelector, 1); FXDirSelector_hide(arg1); return Qnil; }
7251
7634
  static VALUE _wrap_FXDirSelector_isComposite(int argc, VALUE *argv, VALUE self) { FXDirSelector *arg1 = (FXDirSelector *) 0 ;
7252
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
7635
+ bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
7253
7636
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
7254
7637
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDirSelector, 1);
7255
- result = (FXbool)FXDirSelector_isComposite((FXDirSelector const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
7638
+ result = (bool)FXDirSelector_isComposite((FXDirSelector const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
7256
7639
  static VALUE _wrap_FXDirSelector_contains(int argc, VALUE *argv, VALUE self) { FXDirSelector *arg1 = (FXDirSelector *) 0 ;
7257
- FXint arg2 ; FXint arg3 ; FXbool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
7640
+ FXint arg2 ; FXint arg3 ; bool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
7258
7641
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
7259
7642
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDirSelector, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]);
7260
- result = (FXbool)FXDirSelector_contains((FXDirSelector const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse;
7643
+ result = (bool)FXDirSelector_contains((FXDirSelector const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse;
7261
7644
  return vresult; }
7262
7645
  static VALUE _wrap_FXDirSelector_doesSaveUnder(int argc, VALUE *argv, VALUE self) { FXDirSelector *arg1 = (FXDirSelector *) 0 ;
7263
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
7646
+ bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
7264
7647
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
7265
7648
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDirSelector, 1);
7266
- result = (FXbool)FXDirSelector_doesSaveUnder((FXDirSelector const *)arg1); vresult = result ? Qtrue : Qfalse;
7267
- return vresult; }
7649
+ result = (bool)FXDirSelector_doesSaveUnder((FXDirSelector const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
7268
7650
  static VALUE _wrap_FXDirSelector_setBackColor(int argc, VALUE *argv, VALUE self) { FXDirSelector *arg1 = (FXDirSelector *) 0 ;
7269
7651
  FXColor arg2 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
7270
7652
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDirSelector, 1); arg2 = to_FXColor(argv[0]);
7271
7653
  FXDirSelector_setBackColor(arg1,arg2); return Qnil; }
7654
+ static VALUE _wrap_FXDirSelector_tr(int argc, VALUE *argv, VALUE self) { FXDirSelector *arg1 = (FXDirSelector *) 0 ;
7655
+ FXchar *arg2 ; FXchar *arg3 = (FXchar *) 0 ; FXchar *result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 2))
7656
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
7657
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDirSelector, 1); arg2 = StringValuePtr(argv[0]); if (argc > 1) {
7658
+ arg3 = StringValuePtr(argv[1]); }
7659
+ result = (FXchar *)FXDirSelector_tr((FXDirSelector const *)arg1,(FXchar const *)arg2,(FXchar const *)arg3);
7660
+ vresult = rb_str_new2(result); return vresult; }
7661
+ static VALUE _wrap_FXDirSelector_dropEnable(int argc, VALUE *argv, VALUE self) { FXDirSelector *arg1 = (FXDirSelector *) 0 ;
7662
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
7663
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDirSelector, 1); FXDirSelector_dropEnable(arg1); return Qnil; }
7664
+ static VALUE _wrap_FXDirSelector_dropDisable(int argc, VALUE *argv, VALUE self) { FXDirSelector *arg1 = (FXDirSelector *) 0 ;
7665
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
7666
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDirSelector, 1); FXDirSelector_dropDisable(arg1); return Qnil; }
7272
7667
  static VALUE _wrap_FXDirSelector_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
7273
7668
  FXDirSelector *arg1 = (FXDirSelector *) 0 ; FXRegion *arg2 = 0 ; if ((argc < 1) || (argc > 1))
7274
7669
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
@@ -7453,6 +7848,13 @@ static VALUE _wrap_FXFileSelector_onUpdImageSize(int argc, VALUE *argv, VALUE se
7453
7848
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXFileSelector, 1);
7454
7849
  SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXObject, 1); arg3 = NUM2UINT(argv[1]); arg4 = 0;
7455
7850
  result = (long)(arg1)->onUpdImageSize(arg2,arg3,arg4); vresult = INT2NUM(result); return vresult; }
7851
+ static VALUE _wrap_FXFileSelector_onUpdNavigable(int argc, VALUE *argv, VALUE self) {
7852
+ FXFileSelector *arg1 = (FXFileSelector *) 0 ; FXObject *arg2 = (FXObject *) 0 ; FXSelector arg3 ; void *arg4 = (void *) 0 ;
7853
+ long result; VALUE vresult = Qnil; if ((argc < 3) || (argc > 3))
7854
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 3)",argc);
7855
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXFileSelector, 1);
7856
+ SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXObject, 1); arg3 = NUM2UINT(argv[1]); arg4 = 0;
7857
+ result = (long)(arg1)->onUpdNavigable(arg2,arg3,arg4); vresult = INT2NUM(result); return vresult; }
7456
7858
  #ifdef HAVE_RB_DEFINE_ALLOC_FUNC
7457
7859
  static VALUE _wrap_FXFileSelector_allocate(VALUE self) {
7458
7860
  #else
@@ -7542,6 +7944,11 @@ static VALUE _wrap_FXFileSelector_setPatternText(int argc, VALUE *argv, VALUE se
7542
7944
  if ((argc < 2) || (argc > 2)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
7543
7945
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXFileSelector, 1); arg2 = NUM2INT(argv[0]);
7544
7946
  p3 = to_FXString(argv[1]); arg3 = &p3; (arg1)->setPatternText(arg2,(FXString const &)*arg3); return Qnil; }
7947
+ static VALUE _wrap_FXFileSelector_numPatterns(int argc, VALUE *argv, VALUE self) { FXFileSelector *arg1 = (FXFileSelector *) 0 ;
7948
+ FXint result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
7949
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
7950
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXFileSelector, 1);
7951
+ result = (FXint)((FXFileSelector const *)arg1)->getNumPatterns(); vresult = INT2NUM(result); return vresult; }
7545
7952
  static VALUE _wrap_FXFileSelector_setAllowPatternEntry(int argc, VALUE *argv, VALUE self) {
7546
7953
  FXFileSelector *arg1 = (FXFileSelector *) 0 ; FXbool arg2 ; if ((argc < 1) || (argc > 1))
7547
7954
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
@@ -7661,6 +8068,16 @@ static VALUE _wrap_FXFileSelector_getReadOnly(int argc, VALUE *argv, VALUE self)
7661
8068
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
7662
8069
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXFileSelector, 1);
7663
8070
  result = (FXbool)((FXFileSelector const *)arg1)->getReadOnly(); vresult = result ? Qtrue : Qfalse; return vresult; }
8071
+ static VALUE _wrap_FXFileSelector_navigationAllowede___(int argc, VALUE *argv, VALUE self) {
8072
+ FXFileSelector *arg1 = (FXFileSelector *) 0 ; FXbool arg2 ; if ((argc < 1) || (argc > 1))
8073
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
8074
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXFileSelector, 1); arg2 = to_FXbool(argv[0]);
8075
+ (arg1)->allowNavigation(arg2); return Qnil; }
8076
+ static VALUE _wrap_FXFileSelector_navigationAllowedq___(int argc, VALUE *argv, VALUE self) {
8077
+ FXFileSelector *arg1 = (FXFileSelector *) 0 ; FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
8078
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
8079
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXFileSelector, 1);
8080
+ result = (FXbool)((FXFileSelector const *)arg1)->allowNavigation(); vresult = result ? Qtrue : Qfalse; return vresult; }
7664
8081
  static void
7665
8082
  free_FXFileSelector(FXFileSelector *arg1) {
7666
8083
  delete arg1;
@@ -7709,10 +8126,10 @@ static VALUE _wrap_FXFileSelector_getHeightForWidth(int argc, VALUE *argv, VALUE
7709
8126
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXFileSelector, 1); arg2 = NUM2INT(argv[0]);
7710
8127
  result = (FXint)FXFileSelector_getHeightForWidth(arg1,arg2); vresult = INT2NUM(result); return vresult; }
7711
8128
  static VALUE _wrap_FXFileSelector_canFocus(int argc, VALUE *argv, VALUE self) { FXFileSelector *arg1 = (FXFileSelector *) 0 ;
7712
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
8129
+ bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
7713
8130
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
7714
8131
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXFileSelector, 1);
7715
- result = (FXbool)FXFileSelector_canFocus((FXFileSelector const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
8132
+ result = (bool)FXFileSelector_canFocus((FXFileSelector const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
7716
8133
  static VALUE _wrap_FXFileSelector_setFocus(int argc, VALUE *argv, VALUE self) { FXFileSelector *arg1 = (FXFileSelector *) 0 ;
7717
8134
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
7718
8135
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXFileSelector, 1); FXFileSelector_setFocus(arg1); return Qnil; }
@@ -7768,28 +8185,40 @@ static VALUE _wrap_FXFileSelector_hide(int argc, VALUE *argv, VALUE self) { FXFi
7768
8185
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
7769
8186
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXFileSelector, 1); FXFileSelector_hide(arg1); return Qnil; }
7770
8187
  static VALUE _wrap_FXFileSelector_isComposite(int argc, VALUE *argv, VALUE self) { FXFileSelector *arg1 = (FXFileSelector *) 0 ;
7771
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
8188
+ bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
7772
8189
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
7773
8190
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXFileSelector, 1);
7774
- result = (FXbool)FXFileSelector_isComposite((FXFileSelector const *)arg1); vresult = result ? Qtrue : Qfalse;
7775
- return vresult; }
8191
+ result = (bool)FXFileSelector_isComposite((FXFileSelector const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
7776
8192
  static VALUE _wrap_FXFileSelector_contains(int argc, VALUE *argv, VALUE self) { FXFileSelector *arg1 = (FXFileSelector *) 0 ;
7777
- FXint arg2 ; FXint arg3 ; FXbool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
8193
+ FXint arg2 ; FXint arg3 ; bool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
7778
8194
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
7779
8195
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXFileSelector, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]);
7780
- result = (FXbool)FXFileSelector_contains((FXFileSelector const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse;
8196
+ result = (bool)FXFileSelector_contains((FXFileSelector const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse;
7781
8197
  return vresult; }
7782
8198
  static VALUE _wrap_FXFileSelector_doesSaveUnder(int argc, VALUE *argv, VALUE self) {
7783
- FXFileSelector *arg1 = (FXFileSelector *) 0 ; FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
8199
+ FXFileSelector *arg1 = (FXFileSelector *) 0 ; bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
7784
8200
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
7785
8201
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXFileSelector, 1);
7786
- result = (FXbool)FXFileSelector_doesSaveUnder((FXFileSelector const *)arg1); vresult = result ? Qtrue : Qfalse;
8202
+ result = (bool)FXFileSelector_doesSaveUnder((FXFileSelector const *)arg1); vresult = result ? Qtrue : Qfalse;
7787
8203
  return vresult; }
7788
8204
  static VALUE _wrap_FXFileSelector_setBackColor(int argc, VALUE *argv, VALUE self) {
7789
8205
  FXFileSelector *arg1 = (FXFileSelector *) 0 ; FXColor arg2 ; if ((argc < 1) || (argc > 1))
7790
8206
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
7791
8207
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXFileSelector, 1); arg2 = to_FXColor(argv[0]);
7792
8208
  FXFileSelector_setBackColor(arg1,arg2); return Qnil; }
8209
+ static VALUE _wrap_FXFileSelector_tr(int argc, VALUE *argv, VALUE self) { FXFileSelector *arg1 = (FXFileSelector *) 0 ;
8210
+ FXchar *arg2 ; FXchar *arg3 = (FXchar *) 0 ; FXchar *result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 2))
8211
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
8212
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXFileSelector, 1); arg2 = StringValuePtr(argv[0]); if (argc > 1) {
8213
+ arg3 = StringValuePtr(argv[1]); }
8214
+ result = (FXchar *)FXFileSelector_tr((FXFileSelector const *)arg1,(FXchar const *)arg2,(FXchar const *)arg3);
8215
+ vresult = rb_str_new2(result); return vresult; }
8216
+ static VALUE _wrap_FXFileSelector_dropEnable(int argc, VALUE *argv, VALUE self) { FXFileSelector *arg1 = (FXFileSelector *) 0 ;
8217
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
8218
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXFileSelector, 1); FXFileSelector_dropEnable(arg1); return Qnil; }
8219
+ static VALUE _wrap_FXFileSelector_dropDisable(int argc, VALUE *argv, VALUE self) { FXFileSelector *arg1 = (FXFileSelector *) 0 ;
8220
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
8221
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXFileSelector, 1); FXFileSelector_dropDisable(arg1); return Qnil; }
7793
8222
  static VALUE _wrap_FXFileSelector_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
7794
8223
  FXFileSelector *arg1 = (FXFileSelector *) 0 ; FXRegion *arg2 = 0 ; if ((argc < 1) || (argc > 1))
7795
8224
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
@@ -8017,20 +8446,6 @@ static VALUE _wrap_FXColorSelector_onUpdWheel(int argc, VALUE *argv, VALUE self)
8017
8446
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXColorSelector, 1);
8018
8447
  SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXObject, 1); arg3 = NUM2UINT(argv[1]); arg4 = 0;
8019
8448
  result = (long)(arg1)->onUpdWheel(arg2,arg3,arg4); vresult = INT2NUM(result); return vresult; }
8020
- static VALUE _wrap_FXColorSelector_onCmdBar(int argc, VALUE *argv, VALUE self) { FXColorSelector *arg1 = (FXColorSelector *) 0 ;
8021
- FXObject *arg2 = (FXObject *) 0 ; FXSelector arg3 ; void *arg4 = (void *) 0 ; long result; FXfloat values4[3] ;
8022
- VALUE vresult = Qnil; if ((argc < 3) || (argc > 3)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 3)",argc);
8023
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXColorSelector, 1);
8024
- SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXObject, 1); arg3 = NUM2UINT(argv[1]); { Check_Type(argv[2], T_ARRAY);
8025
- values4[0] = (FXfloat) NUM2DBL(rb_ary_entry(argv[2], 0)); values4[1] = (FXfloat) NUM2DBL(rb_ary_entry(argv[2], 1));
8026
- values4[2] = (FXfloat) NUM2DBL(rb_ary_entry(argv[2], 2)); arg4 = (void *) values4; }
8027
- result = (long)(arg1)->onCmdBar(arg2,arg3,arg4); vresult = INT2NUM(result); return vresult; }
8028
- static VALUE _wrap_FXColorSelector_onUpdBar(int argc, VALUE *argv, VALUE self) { FXColorSelector *arg1 = (FXColorSelector *) 0 ;
8029
- FXObject *arg2 = (FXObject *) 0 ; FXSelector arg3 ; void *arg4 = (void *) 0 ; long result; VALUE vresult = Qnil;
8030
- if ((argc < 3) || (argc > 3)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 3)",argc);
8031
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXColorSelector, 1);
8032
- SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXObject, 1); arg3 = NUM2UINT(argv[1]); arg4 = 0;
8033
- result = (long)(arg1)->onUpdBar(arg2,arg3,arg4); vresult = INT2NUM(result); return vresult; }
8034
8449
  static VALUE _wrap_FXColorSelector_onCmdColorPick(int argc, VALUE *argv, VALUE self) {
8035
8450
  FXColorSelector *arg1 = (FXColorSelector *) 0 ; FXObject *arg2 = (FXObject *) 0 ; FXSelector arg3 ;
8036
8451
  void *arg4 = (void *) 0 ; long result; VALUE vresult = Qnil; if ((argc < 3) || (argc > 3))
@@ -8140,11 +8555,10 @@ static VALUE _wrap_FXColorSelector_getHeightForWidth(int argc, VALUE *argv, VALU
8140
8555
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXColorSelector, 1); arg2 = NUM2INT(argv[0]);
8141
8556
  result = (FXint)FXColorSelector_getHeightForWidth(arg1,arg2); vresult = INT2NUM(result); return vresult; }
8142
8557
  static VALUE _wrap_FXColorSelector_canFocus(int argc, VALUE *argv, VALUE self) { FXColorSelector *arg1 = (FXColorSelector *) 0 ;
8143
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
8558
+ bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
8144
8559
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
8145
8560
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXColorSelector, 1);
8146
- result = (FXbool)FXColorSelector_canFocus((FXColorSelector const *)arg1); vresult = result ? Qtrue : Qfalse;
8147
- return vresult; }
8561
+ result = (bool)FXColorSelector_canFocus((FXColorSelector const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
8148
8562
  static VALUE _wrap_FXColorSelector_setFocus(int argc, VALUE *argv, VALUE self) { FXColorSelector *arg1 = (FXColorSelector *) 0 ;
8149
8563
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
8150
8564
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXColorSelector, 1); FXColorSelector_setFocus(arg1); return Qnil; }
@@ -8203,28 +8617,43 @@ static VALUE _wrap_FXColorSelector_hide(int argc, VALUE *argv, VALUE self) { FXC
8203
8617
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
8204
8618
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXColorSelector, 1); FXColorSelector_hide(arg1); return Qnil; }
8205
8619
  static VALUE _wrap_FXColorSelector_isComposite(int argc, VALUE *argv, VALUE self) {
8206
- FXColorSelector *arg1 = (FXColorSelector *) 0 ; FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
8620
+ FXColorSelector *arg1 = (FXColorSelector *) 0 ; bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
8207
8621
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
8208
8622
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXColorSelector, 1);
8209
- result = (FXbool)FXColorSelector_isComposite((FXColorSelector const *)arg1); vresult = result ? Qtrue : Qfalse;
8623
+ result = (bool)FXColorSelector_isComposite((FXColorSelector const *)arg1); vresult = result ? Qtrue : Qfalse;
8210
8624
  return vresult; }
8211
8625
  static VALUE _wrap_FXColorSelector_contains(int argc, VALUE *argv, VALUE self) { FXColorSelector *arg1 = (FXColorSelector *) 0 ;
8212
- FXint arg2 ; FXint arg3 ; FXbool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
8626
+ FXint arg2 ; FXint arg3 ; bool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
8213
8627
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
8214
8628
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXColorSelector, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]);
8215
- result = (FXbool)FXColorSelector_contains((FXColorSelector const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse;
8629
+ result = (bool)FXColorSelector_contains((FXColorSelector const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse;
8216
8630
  return vresult; }
8217
8631
  static VALUE _wrap_FXColorSelector_doesSaveUnder(int argc, VALUE *argv, VALUE self) {
8218
- FXColorSelector *arg1 = (FXColorSelector *) 0 ; FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
8632
+ FXColorSelector *arg1 = (FXColorSelector *) 0 ; bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
8219
8633
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
8220
8634
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXColorSelector, 1);
8221
- result = (FXbool)FXColorSelector_doesSaveUnder((FXColorSelector const *)arg1); vresult = result ? Qtrue : Qfalse;
8635
+ result = (bool)FXColorSelector_doesSaveUnder((FXColorSelector const *)arg1); vresult = result ? Qtrue : Qfalse;
8222
8636
  return vresult; }
8223
8637
  static VALUE _wrap_FXColorSelector_setBackColor(int argc, VALUE *argv, VALUE self) {
8224
8638
  FXColorSelector *arg1 = (FXColorSelector *) 0 ; FXColor arg2 ; if ((argc < 1) || (argc > 1))
8225
8639
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
8226
8640
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXColorSelector, 1); arg2 = to_FXColor(argv[0]);
8227
8641
  FXColorSelector_setBackColor(arg1,arg2); return Qnil; }
8642
+ static VALUE _wrap_FXColorSelector_tr(int argc, VALUE *argv, VALUE self) { FXColorSelector *arg1 = (FXColorSelector *) 0 ;
8643
+ FXchar *arg2 ; FXchar *arg3 = (FXchar *) 0 ; FXchar *result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 2))
8644
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
8645
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXColorSelector, 1); arg2 = StringValuePtr(argv[0]); if (argc > 1) {
8646
+ arg3 = StringValuePtr(argv[1]); }
8647
+ result = (FXchar *)FXColorSelector_tr((FXColorSelector const *)arg1,(FXchar const *)arg2,(FXchar const *)arg3);
8648
+ vresult = rb_str_new2(result); return vresult; }
8649
+ static VALUE _wrap_FXColorSelector_dropEnable(int argc, VALUE *argv, VALUE self) {
8650
+ FXColorSelector *arg1 = (FXColorSelector *) 0 ; if ((argc < 0) || (argc > 0))
8651
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
8652
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXColorSelector, 1); FXColorSelector_dropEnable(arg1); return Qnil; }
8653
+ static VALUE _wrap_FXColorSelector_dropDisable(int argc, VALUE *argv, VALUE self) {
8654
+ FXColorSelector *arg1 = (FXColorSelector *) 0 ; if ((argc < 0) || (argc > 0))
8655
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
8656
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXColorSelector, 1); FXColorSelector_dropDisable(arg1); return Qnil; }
8228
8657
  static VALUE _wrap_FXColorSelector_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
8229
8658
  FXColorSelector *arg1 = (FXColorSelector *) 0 ; FXRegion *arg2 = 0 ; if ((argc < 1) || (argc > 1))
8230
8659
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
@@ -8467,10 +8896,10 @@ static VALUE _wrap_FXFontSelector_getHeightForWidth(int argc, VALUE *argv, VALUE
8467
8896
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXFontSelector, 1); arg2 = NUM2INT(argv[0]);
8468
8897
  result = (FXint)FXFontSelector_getHeightForWidth(arg1,arg2); vresult = INT2NUM(result); return vresult; }
8469
8898
  static VALUE _wrap_FXFontSelector_canFocus(int argc, VALUE *argv, VALUE self) { FXFontSelector *arg1 = (FXFontSelector *) 0 ;
8470
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
8899
+ bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
8471
8900
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
8472
8901
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXFontSelector, 1);
8473
- result = (FXbool)FXFontSelector_canFocus((FXFontSelector const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
8902
+ result = (bool)FXFontSelector_canFocus((FXFontSelector const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
8474
8903
  static VALUE _wrap_FXFontSelector_setFocus(int argc, VALUE *argv, VALUE self) { FXFontSelector *arg1 = (FXFontSelector *) 0 ;
8475
8904
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
8476
8905
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXFontSelector, 1); FXFontSelector_setFocus(arg1); return Qnil; }
@@ -8526,28 +8955,40 @@ static VALUE _wrap_FXFontSelector_hide(int argc, VALUE *argv, VALUE self) { FXFo
8526
8955
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
8527
8956
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXFontSelector, 1); FXFontSelector_hide(arg1); return Qnil; }
8528
8957
  static VALUE _wrap_FXFontSelector_isComposite(int argc, VALUE *argv, VALUE self) { FXFontSelector *arg1 = (FXFontSelector *) 0 ;
8529
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
8958
+ bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
8530
8959
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
8531
8960
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXFontSelector, 1);
8532
- result = (FXbool)FXFontSelector_isComposite((FXFontSelector const *)arg1); vresult = result ? Qtrue : Qfalse;
8533
- return vresult; }
8961
+ result = (bool)FXFontSelector_isComposite((FXFontSelector const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
8534
8962
  static VALUE _wrap_FXFontSelector_contains(int argc, VALUE *argv, VALUE self) { FXFontSelector *arg1 = (FXFontSelector *) 0 ;
8535
- FXint arg2 ; FXint arg3 ; FXbool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
8963
+ FXint arg2 ; FXint arg3 ; bool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
8536
8964
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
8537
8965
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXFontSelector, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]);
8538
- result = (FXbool)FXFontSelector_contains((FXFontSelector const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse;
8966
+ result = (bool)FXFontSelector_contains((FXFontSelector const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse;
8539
8967
  return vresult; }
8540
8968
  static VALUE _wrap_FXFontSelector_doesSaveUnder(int argc, VALUE *argv, VALUE self) {
8541
- FXFontSelector *arg1 = (FXFontSelector *) 0 ; FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
8969
+ FXFontSelector *arg1 = (FXFontSelector *) 0 ; bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
8542
8970
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
8543
8971
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXFontSelector, 1);
8544
- result = (FXbool)FXFontSelector_doesSaveUnder((FXFontSelector const *)arg1); vresult = result ? Qtrue : Qfalse;
8972
+ result = (bool)FXFontSelector_doesSaveUnder((FXFontSelector const *)arg1); vresult = result ? Qtrue : Qfalse;
8545
8973
  return vresult; }
8546
8974
  static VALUE _wrap_FXFontSelector_setBackColor(int argc, VALUE *argv, VALUE self) {
8547
8975
  FXFontSelector *arg1 = (FXFontSelector *) 0 ; FXColor arg2 ; if ((argc < 1) || (argc > 1))
8548
8976
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
8549
8977
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXFontSelector, 1); arg2 = to_FXColor(argv[0]);
8550
8978
  FXFontSelector_setBackColor(arg1,arg2); return Qnil; }
8979
+ static VALUE _wrap_FXFontSelector_tr(int argc, VALUE *argv, VALUE self) { FXFontSelector *arg1 = (FXFontSelector *) 0 ;
8980
+ FXchar *arg2 ; FXchar *arg3 = (FXchar *) 0 ; FXchar *result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 2))
8981
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
8982
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXFontSelector, 1); arg2 = StringValuePtr(argv[0]); if (argc > 1) {
8983
+ arg3 = StringValuePtr(argv[1]); }
8984
+ result = (FXchar *)FXFontSelector_tr((FXFontSelector const *)arg1,(FXchar const *)arg2,(FXchar const *)arg3);
8985
+ vresult = rb_str_new2(result); return vresult; }
8986
+ static VALUE _wrap_FXFontSelector_dropEnable(int argc, VALUE *argv, VALUE self) { FXFontSelector *arg1 = (FXFontSelector *) 0 ;
8987
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
8988
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXFontSelector, 1); FXFontSelector_dropEnable(arg1); return Qnil; }
8989
+ static VALUE _wrap_FXFontSelector_dropDisable(int argc, VALUE *argv, VALUE self) { FXFontSelector *arg1 = (FXFontSelector *) 0 ;
8990
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
8991
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXFontSelector, 1); FXFontSelector_dropDisable(arg1); return Qnil; }
8551
8992
  static VALUE _wrap_FXFontSelector_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
8552
8993
  FXFontSelector *arg1 = (FXFontSelector *) 0 ; FXRegion *arg2 = 0 ; if ((argc < 1) || (argc > 1))
8553
8994
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
@@ -8729,10 +9170,10 @@ static VALUE _wrap_FXDockHandler_getHeightForWidth(int argc, VALUE *argv, VALUE
8729
9170
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDockHandler, 1); arg2 = NUM2INT(argv[0]);
8730
9171
  result = (FXint)FXDockHandler_getHeightForWidth(arg1,arg2); vresult = INT2NUM(result); return vresult; }
8731
9172
  static VALUE _wrap_FXDockHandler_canFocus(int argc, VALUE *argv, VALUE self) { FXDockHandler *arg1 = (FXDockHandler *) 0 ;
8732
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
9173
+ bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
8733
9174
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
8734
9175
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDockHandler, 1);
8735
- result = (FXbool)FXDockHandler_canFocus((FXDockHandler const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
9176
+ result = (bool)FXDockHandler_canFocus((FXDockHandler const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
8736
9177
  static VALUE _wrap_FXDockHandler_setFocus(int argc, VALUE *argv, VALUE self) { FXDockHandler *arg1 = (FXDockHandler *) 0 ;
8737
9178
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
8738
9179
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDockHandler, 1); FXDockHandler_setFocus(arg1); return Qnil; }
@@ -8788,26 +9229,38 @@ static VALUE _wrap_FXDockHandler_hide(int argc, VALUE *argv, VALUE self) { FXDoc
8788
9229
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
8789
9230
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDockHandler, 1); FXDockHandler_hide(arg1); return Qnil; }
8790
9231
  static VALUE _wrap_FXDockHandler_isComposite(int argc, VALUE *argv, VALUE self) { FXDockHandler *arg1 = (FXDockHandler *) 0 ;
8791
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
9232
+ bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
8792
9233
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
8793
9234
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDockHandler, 1);
8794
- result = (FXbool)FXDockHandler_isComposite((FXDockHandler const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
9235
+ result = (bool)FXDockHandler_isComposite((FXDockHandler const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
8795
9236
  static VALUE _wrap_FXDockHandler_contains(int argc, VALUE *argv, VALUE self) { FXDockHandler *arg1 = (FXDockHandler *) 0 ;
8796
- FXint arg2 ; FXint arg3 ; FXbool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
9237
+ FXint arg2 ; FXint arg3 ; bool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
8797
9238
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
8798
9239
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDockHandler, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]);
8799
- result = (FXbool)FXDockHandler_contains((FXDockHandler const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse;
9240
+ result = (bool)FXDockHandler_contains((FXDockHandler const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse;
8800
9241
  return vresult; }
8801
9242
  static VALUE _wrap_FXDockHandler_doesSaveUnder(int argc, VALUE *argv, VALUE self) { FXDockHandler *arg1 = (FXDockHandler *) 0 ;
8802
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
9243
+ bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
8803
9244
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
8804
9245
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDockHandler, 1);
8805
- result = (FXbool)FXDockHandler_doesSaveUnder((FXDockHandler const *)arg1); vresult = result ? Qtrue : Qfalse;
8806
- return vresult; }
9246
+ result = (bool)FXDockHandler_doesSaveUnder((FXDockHandler const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
8807
9247
  static VALUE _wrap_FXDockHandler_setBackColor(int argc, VALUE *argv, VALUE self) { FXDockHandler *arg1 = (FXDockHandler *) 0 ;
8808
9248
  FXColor arg2 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
8809
9249
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDockHandler, 1); arg2 = to_FXColor(argv[0]);
8810
9250
  FXDockHandler_setBackColor(arg1,arg2); return Qnil; }
9251
+ static VALUE _wrap_FXDockHandler_tr(int argc, VALUE *argv, VALUE self) { FXDockHandler *arg1 = (FXDockHandler *) 0 ;
9252
+ FXchar *arg2 ; FXchar *arg3 = (FXchar *) 0 ; FXchar *result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 2))
9253
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
9254
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDockHandler, 1); arg2 = StringValuePtr(argv[0]); if (argc > 1) {
9255
+ arg3 = StringValuePtr(argv[1]); }
9256
+ result = (FXchar *)FXDockHandler_tr((FXDockHandler const *)arg1,(FXchar const *)arg2,(FXchar const *)arg3);
9257
+ vresult = rb_str_new2(result); return vresult; }
9258
+ static VALUE _wrap_FXDockHandler_dropEnable(int argc, VALUE *argv, VALUE self) { FXDockHandler *arg1 = (FXDockHandler *) 0 ;
9259
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
9260
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDockHandler, 1); FXDockHandler_dropEnable(arg1); return Qnil; }
9261
+ static VALUE _wrap_FXDockHandler_dropDisable(int argc, VALUE *argv, VALUE self) { FXDockHandler *arg1 = (FXDockHandler *) 0 ;
9262
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
9263
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDockHandler, 1); FXDockHandler_dropDisable(arg1); return Qnil; }
8811
9264
  static VALUE _wrap_FXDockHandler_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
8812
9265
  FXDockHandler *arg1 = (FXDockHandler *) 0 ; FXRegion *arg2 = 0 ; if ((argc < 1) || (argc > 1))
8813
9266
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
@@ -8845,256 +9298,6 @@ static VALUE _wrap_FXDockHandler_setShape(int nargs, VALUE *args, VALUE self) {
8845
9298
  static VALUE _wrap_FXDockHandler_clearShape(int argc, VALUE *argv, VALUE self) { FXDockHandler *arg1 = (FXDockHandler *) 0 ;
8846
9299
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
8847
9300
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDockHandler, 1); FXDockHandler_clearShape(arg1); return Qnil; }
8848
- static VALUE _wrap_FXDockTitle_onPaint(int argc, VALUE *argv, VALUE self) { FXDockTitle *arg1 = (FXDockTitle *) 0 ;
8849
- FXObject *arg2 = (FXObject *) 0 ; FXSelector arg3 ; void *arg4 = (void *) 0 ; long result; VALUE vresult = Qnil;
8850
- if ((argc < 3) || (argc > 3)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 3)",argc);
8851
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDockTitle, 1);
8852
- SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXObject, 1); arg3 = NUM2UINT(argv[1]); arg4 = to_FXEvent(argv[2]);
8853
- result = (long)(arg1)->onPaint(arg2,arg3,arg4); vresult = INT2NUM(result); return vresult; }
8854
- static VALUE _wrap_FXDockTitle_onCmdSetValue(int argc, VALUE *argv, VALUE self) { FXDockTitle *arg1 = (FXDockTitle *) 0 ;
8855
- FXObject *arg2 = (FXObject *) 0 ; FXSelector arg3 ; void *arg4 = (void *) 0 ; long result; VALUE vresult = Qnil;
8856
- if ((argc < 3) || (argc > 3)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 3)",argc);
8857
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDockTitle, 1);
8858
- SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXObject, 1); arg3 = NUM2UINT(argv[1]);
8859
- SWIG_ConvertPtr(argv[2], (void **) &arg4, 0, 1); result = (long)(arg1)->onCmdSetValue(arg2,arg3,arg4);
8860
- vresult = INT2NUM(result); return vresult; }
8861
- static VALUE _wrap_FXDockTitle_onCmdSetStringValue(int argc, VALUE *argv, VALUE self) { FXDockTitle *arg1 = (FXDockTitle *) 0 ;
8862
- FXObject *arg2 = (FXObject *) 0 ; FXSelector arg3 ; void *arg4 = (void *) 0 ; long result; VALUE vresult = Qnil;
8863
- if ((argc < 3) || (argc > 3)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 3)",argc);
8864
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDockTitle, 1);
8865
- SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXObject, 1); arg3 = NUM2UINT(argv[1]);
8866
- SWIG_ConvertPtr(argv[2], (void **) &arg4, 0, 1); result = (long)(arg1)->onCmdSetStringValue(arg2,arg3,arg4);
8867
- vresult = INT2NUM(result); return vresult; }
8868
- static VALUE _wrap_FXDockTitle_onCmdGetStringValue(int argc, VALUE *argv, VALUE self) { FXDockTitle *arg1 = (FXDockTitle *) 0 ;
8869
- FXObject *arg2 = (FXObject *) 0 ; FXSelector arg3 ; void *arg4 = (void *) 0 ; long result; VALUE vresult = Qnil;
8870
- if ((argc < 3) || (argc > 3)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 3)",argc);
8871
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDockTitle, 1);
8872
- SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXObject, 1); arg3 = NUM2UINT(argv[1]);
8873
- SWIG_ConvertPtr(argv[2], (void **) &arg4, 0, 1); result = (long)(arg1)->onCmdGetStringValue(arg2,arg3,arg4);
8874
- vresult = INT2NUM(result); return vresult; }
8875
- #ifdef HAVE_RB_DEFINE_ALLOC_FUNC
8876
- static VALUE _wrap_FXDockTitle_allocate(VALUE self) {
8877
- #else
8878
- static VALUE _wrap_FXDockTitle_allocate(int argc, VALUE *argv, VALUE self) {
8879
- #endif
8880
- VALUE vresult = SWIG_NewClassInstance(self, SWIGTYPE_p_FXDockTitle);
8881
- #ifndef HAVE_RB_DEFINE_ALLOC_FUNC
8882
- rb_obj_call_init(vresult, argc, argv);
8883
- #endif
8884
- return vresult; }
8885
- static VALUE _wrap_new_FXDockTitle(int argc, VALUE *argv, VALUE self) { FXComposite *arg1 = (FXComposite *) 0 ;
8886
- FXString *arg2 = 0 ; FXObject *arg3 = (FXObject *) 0 ; FXSelector arg4 = (FXSelector) 0 ;
8887
- FXuint arg5 = (FXuint) FRAME_NORMAL|JUSTIFY_CENTER_X|JUSTIFY_CENTER_Y ; FXint arg6 = (FXint) 0 ; FXint arg7 = (FXint) 0 ;
8888
- FXint arg8 = (FXint) 0 ; FXint arg9 = (FXint) 0 ; FXint arg10 = (FXint) 0 ; FXint arg11 = (FXint) 0 ;
8889
- FXint arg12 = (FXint) 0 ; FXint arg13 = (FXint) 0 ; FXDockTitle *result; SwigValueWrapper<FXString > p2 ;
8890
- if ((argc < 2) || (argc > 13)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
8891
- SWIG_ConvertPtr(argv[0], (void **) &arg1, SWIGTYPE_p_FXComposite, 1); p2 = to_FXString(argv[1]); arg2 = &p2; if (argc > 2) {
8892
- SWIG_ConvertPtr(argv[2], (void **) &arg3, SWIGTYPE_p_FXObject, 1); } if (argc > 3) { arg4 = NUM2UINT(argv[3]); }
8893
- if (argc > 4) { arg5 = NUM2UINT(argv[4]); } if (argc > 5) { arg6 = NUM2INT(argv[5]); } if (argc > 6) {
8894
- arg7 = NUM2INT(argv[6]); } if (argc > 7) { arg8 = NUM2INT(argv[7]); } if (argc > 8) { arg9 = NUM2INT(argv[8]); }
8895
- if (argc > 9) { arg10 = NUM2INT(argv[9]); } if (argc > 10) { arg11 = NUM2INT(argv[10]); } if (argc > 11) {
8896
- arg12 = NUM2INT(argv[11]); } if (argc > 12) { arg13 = NUM2INT(argv[12]); } {
8897
- result = (FXDockTitle *)new_FXDockTitle(arg1,(FXString const &)*arg2,arg3,arg4,arg5,arg6,arg7,arg8,arg9,arg10,arg11,arg12,arg13);
8898
- DATA_PTR(self) = result; FXRbRegisterRubyObj(self, result); if(rb_block_given_p()){ rb_yield(self); } } return self; }
8899
- static VALUE _wrap_FXDockTitle_captione___(int argc, VALUE *argv, VALUE self) { FXDockTitle *arg1 = (FXDockTitle *) 0 ;
8900
- FXString *arg2 = 0 ; SwigValueWrapper<FXString > p2 ; if ((argc < 1) || (argc > 1))
8901
- rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
8902
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDockTitle, 1); p2 = to_FXString(argv[0]); arg2 = &p2;
8903
- (arg1)->setCaption((FXString const &)*arg2); return Qnil; }
8904
- static VALUE _wrap_FXDockTitle_caption(int argc, VALUE *argv, VALUE self) { FXDockTitle *arg1 = (FXDockTitle *) 0 ;
8905
- FXString result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
8906
- rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
8907
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDockTitle, 1); result = ((FXDockTitle const *)arg1)->getCaption();
8908
- vresult = rb_str_new2((&result)->text()); return vresult; }
8909
- static VALUE _wrap_FXDockTitle_fonte___(int argc, VALUE *argv, VALUE self) { FXDockTitle *arg1 = (FXDockTitle *) 0 ;
8910
- FXFont *arg2 = (FXFont *) 0 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
8911
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDockTitle, 1);
8912
- SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXFont, 1); (arg1)->setFont(arg2); return Qnil; }
8913
- static VALUE _wrap_FXDockTitle_font(int argc, VALUE *argv, VALUE self) { FXDockTitle *arg1 = (FXDockTitle *) 0 ; FXFont *result;
8914
- VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
8915
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDockTitle, 1);
8916
- result = (FXFont *)((FXDockTitle const *)arg1)->getFont(); {
8917
- swig_type_info *ty = SWIG_TypeDynamicCast(SWIGTYPE_p_FXFont, (void **) &result); vresult = FXRbGetRubyObj(result, ty); }
8918
- return vresult; }
8919
- static VALUE _wrap_FXDockTitle_captionColor(int argc, VALUE *argv, VALUE self) { FXDockTitle *arg1 = (FXDockTitle *) 0 ;
8920
- FXColor result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
8921
- rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
8922
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDockTitle, 1);
8923
- result = (FXColor)((FXDockTitle const *)arg1)->getCaptionColor(); vresult = UINT2NUM(result); return vresult; }
8924
- static VALUE _wrap_FXDockTitle_captionColore___(int argc, VALUE *argv, VALUE self) { FXDockTitle *arg1 = (FXDockTitle *) 0 ;
8925
- FXColor arg2 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
8926
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDockTitle, 1); arg2 = to_FXColor(argv[0]);
8927
- (arg1)->setCaptionColor(arg2); return Qnil; }
8928
- static VALUE _wrap_FXDockTitle_justifye___(int argc, VALUE *argv, VALUE self) { FXDockTitle *arg1 = (FXDockTitle *) 0 ;
8929
- FXuint arg2 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
8930
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDockTitle, 1); arg2 = NUM2UINT(argv[0]); (arg1)->setJustify(arg2);
8931
- return Qnil; }
8932
- static VALUE _wrap_FXDockTitle_justify(int argc, VALUE *argv, VALUE self) { FXDockTitle *arg1 = (FXDockTitle *) 0 ;
8933
- FXuint result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
8934
- rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
8935
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDockTitle, 1);
8936
- result = (FXuint)((FXDockTitle const *)arg1)->getJustify(); vresult = UINT2NUM(result); return vresult; }
8937
- static void
8938
- free_FXDockTitle(FXDockTitle *arg1) {
8939
- delete arg1;
8940
- }
8941
- static VALUE _wrap_FXDockTitle_save(int argc, VALUE *argv, VALUE self) { FXDockTitle *arg1 = (FXDockTitle *) 0 ;
8942
- FXStream *arg2 = 0 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
8943
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDockTitle, 1);
8944
- SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXStream, 1); if (arg2 == NULL) rb_raise(rb_eTypeError, "null reference");
8945
- FXDockTitle_save((FXDockTitle const *)arg1,*arg2); return Qnil; }
8946
- static VALUE _wrap_FXDockTitle_load(int argc, VALUE *argv, VALUE self) { FXDockTitle *arg1 = (FXDockTitle *) 0 ;
8947
- FXStream *arg2 = 0 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
8948
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDockTitle, 1);
8949
- SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXStream, 1); if (arg2 == NULL) rb_raise(rb_eTypeError, "null reference");
8950
- FXDockTitle_load(arg1,*arg2); return Qnil; }
8951
- static VALUE _wrap_FXDockTitle_create(int argc, VALUE *argv, VALUE self) { FXDockTitle *arg1 = (FXDockTitle *) 0 ;
8952
- if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
8953
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDockTitle, 1); FXDockTitle_create(arg1); return Qnil; }
8954
- static VALUE _wrap_FXDockTitle_detach(int argc, VALUE *argv, VALUE self) { FXDockTitle *arg1 = (FXDockTitle *) 0 ;
8955
- if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
8956
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDockTitle, 1); FXDockTitle_detach(arg1); return Qnil; }
8957
- static VALUE _wrap_FXDockTitle_destroy(int argc, VALUE *argv, VALUE self) { FXDockTitle *arg1 = (FXDockTitle *) 0 ;
8958
- if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
8959
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDockTitle, 1); FXDockTitle_destroy(arg1); return Qnil; }
8960
- static VALUE _wrap_FXDockTitle_resize(int argc, VALUE *argv, VALUE self) { FXDockTitle *arg1 = (FXDockTitle *) 0 ; FXint arg2 ;
8961
- FXint arg3 ; if ((argc < 2) || (argc > 2)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
8962
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDockTitle, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]);
8963
- FXDockTitle_resize(arg1,arg2,arg3); return Qnil; }
8964
- static VALUE _wrap_FXDockTitle_getDefaultWidth(int argc, VALUE *argv, VALUE self) { FXDockTitle *arg1 = (FXDockTitle *) 0 ;
8965
- FXint result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
8966
- rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
8967
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDockTitle, 1); result = (FXint)FXDockTitle_getDefaultWidth(arg1);
8968
- vresult = INT2NUM(result); return vresult; }
8969
- static VALUE _wrap_FXDockTitle_getDefaultHeight(int argc, VALUE *argv, VALUE self) { FXDockTitle *arg1 = (FXDockTitle *) 0 ;
8970
- FXint result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
8971
- rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
8972
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDockTitle, 1); result = (FXint)FXDockTitle_getDefaultHeight(arg1);
8973
- vresult = INT2NUM(result); return vresult; }
8974
- static VALUE _wrap_FXDockTitle_getWidthForHeight(int argc, VALUE *argv, VALUE self) { FXDockTitle *arg1 = (FXDockTitle *) 0 ;
8975
- FXint arg2 ; FXint result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 1))
8976
- rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
8977
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDockTitle, 1); arg2 = NUM2INT(argv[0]);
8978
- result = (FXint)FXDockTitle_getWidthForHeight(arg1,arg2); vresult = INT2NUM(result); return vresult; }
8979
- static VALUE _wrap_FXDockTitle_getHeightForWidth(int argc, VALUE *argv, VALUE self) { FXDockTitle *arg1 = (FXDockTitle *) 0 ;
8980
- FXint arg2 ; FXint result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 1))
8981
- rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
8982
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDockTitle, 1); arg2 = NUM2INT(argv[0]);
8983
- result = (FXint)FXDockTitle_getHeightForWidth(arg1,arg2); vresult = INT2NUM(result); return vresult; }
8984
- static VALUE _wrap_FXDockTitle_canFocus(int argc, VALUE *argv, VALUE self) { FXDockTitle *arg1 = (FXDockTitle *) 0 ;
8985
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
8986
- rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
8987
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDockTitle, 1);
8988
- result = (FXbool)FXDockTitle_canFocus((FXDockTitle const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
8989
- static VALUE _wrap_FXDockTitle_setFocus(int argc, VALUE *argv, VALUE self) { FXDockTitle *arg1 = (FXDockTitle *) 0 ;
8990
- if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
8991
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDockTitle, 1); FXDockTitle_setFocus(arg1); return Qnil; }
8992
- static VALUE _wrap_FXDockTitle_killFocus(int argc, VALUE *argv, VALUE self) { FXDockTitle *arg1 = (FXDockTitle *) 0 ;
8993
- if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
8994
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDockTitle, 1); FXDockTitle_killFocus(arg1); return Qnil; }
8995
- static VALUE _wrap_FXDockTitle_changeFocus(int argc, VALUE *argv, VALUE self) { FXDockTitle *arg1 = (FXDockTitle *) 0 ;
8996
- FXWindow *arg2 = (FXWindow *) 0 ; if ((argc < 1) || (argc > 1))
8997
- rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
8998
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDockTitle, 1);
8999
- SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXWindow, 1); FXDockTitle_changeFocus(arg1,arg2); return Qnil; }
9000
- static VALUE _wrap_FXDockTitle_setDefault(int argc, VALUE *argv, VALUE self) { FXDockTitle *arg1 = (FXDockTitle *) 0 ;
9001
- FXbool arg2 = (FXbool) 1 ; if ((argc < 0) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
9002
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDockTitle, 1); if (argc > 0) { arg2 = to_FXbool(argv[0]); }
9003
- FXDockTitle_setDefault(arg1,arg2); return Qnil; }
9004
- static VALUE _wrap_FXDockTitle_enable(int argc, VALUE *argv, VALUE self) { FXDockTitle *arg1 = (FXDockTitle *) 0 ;
9005
- if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
9006
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDockTitle, 1); FXDockTitle_enable(arg1); return Qnil; }
9007
- static VALUE _wrap_FXDockTitle_disable(int argc, VALUE *argv, VALUE self) { FXDockTitle *arg1 = (FXDockTitle *) 0 ;
9008
- if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
9009
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDockTitle, 1); FXDockTitle_disable(arg1); return Qnil; }
9010
- static VALUE _wrap_FXDockTitle_raiseWindow(int argc, VALUE *argv, VALUE self) { FXDockTitle *arg1 = (FXDockTitle *) 0 ;
9011
- if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
9012
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDockTitle, 1); FXDockTitle_raise(arg1); return Qnil; }
9013
- static VALUE _wrap_FXDockTitle_lower(int argc, VALUE *argv, VALUE self) { FXDockTitle *arg1 = (FXDockTitle *) 0 ;
9014
- if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
9015
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDockTitle, 1); FXDockTitle_lower(arg1); return Qnil; }
9016
- static VALUE _wrap_FXDockTitle_move(int argc, VALUE *argv, VALUE self) { FXDockTitle *arg1 = (FXDockTitle *) 0 ; FXint arg2 ;
9017
- FXint arg3 ; if ((argc < 2) || (argc > 2)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
9018
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDockTitle, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]);
9019
- FXDockTitle_move(arg1,arg2,arg3); return Qnil; }
9020
- static VALUE _wrap_FXDockTitle_position(int argc, VALUE *argv, VALUE self) { FXDockTitle *arg1 = (FXDockTitle *) 0 ;
9021
- FXint arg2 ; FXint arg3 ; FXint arg4 ; FXint arg5 ; if ((argc < 4) || (argc > 4))
9022
- rb_raise(rb_eArgError, "wrong # of arguments(%d for 4)",argc);
9023
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDockTitle, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]);
9024
- arg4 = NUM2INT(argv[2]); arg5 = NUM2INT(argv[3]); FXDockTitle_position(arg1,arg2,arg3,arg4,arg5); return Qnil; }
9025
- static VALUE _wrap_FXDockTitle_layout(int argc, VALUE *argv, VALUE self) { FXDockTitle *arg1 = (FXDockTitle *) 0 ;
9026
- if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
9027
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDockTitle, 1); FXDockTitle_layout(arg1); return Qnil; }
9028
- static VALUE _wrap_FXDockTitle_recalc(int argc, VALUE *argv, VALUE self) { FXDockTitle *arg1 = (FXDockTitle *) 0 ;
9029
- if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
9030
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDockTitle, 1); FXDockTitle_recalc(arg1); return Qnil; }
9031
- static VALUE _wrap_FXDockTitle_reparent(int argc, VALUE *argv, VALUE self) { FXDockTitle *arg1 = (FXDockTitle *) 0 ;
9032
- FXWindow *arg2 = (FXWindow *) 0 ; FXWindow *arg3 = (FXWindow *) 0 ; if ((argc < 2) || (argc > 2))
9033
- rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
9034
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDockTitle, 1);
9035
- SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXWindow, 1);
9036
- SWIG_ConvertPtr(argv[1], (void **) &arg3, SWIGTYPE_p_FXWindow, 1); FXDockTitle_reparent(arg1,arg2,arg3); return Qnil; }
9037
- static VALUE _wrap_FXDockTitle_show(int argc, VALUE *argv, VALUE self) { FXDockTitle *arg1 = (FXDockTitle *) 0 ;
9038
- if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
9039
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDockTitle, 1); FXDockTitle_show(arg1); return Qnil; }
9040
- static VALUE _wrap_FXDockTitle_hide(int argc, VALUE *argv, VALUE self) { FXDockTitle *arg1 = (FXDockTitle *) 0 ;
9041
- if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
9042
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDockTitle, 1); FXDockTitle_hide(arg1); return Qnil; }
9043
- static VALUE _wrap_FXDockTitle_isComposite(int argc, VALUE *argv, VALUE self) { FXDockTitle *arg1 = (FXDockTitle *) 0 ;
9044
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
9045
- rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
9046
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDockTitle, 1);
9047
- result = (FXbool)FXDockTitle_isComposite((FXDockTitle const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
9048
- static VALUE _wrap_FXDockTitle_contains(int argc, VALUE *argv, VALUE self) { FXDockTitle *arg1 = (FXDockTitle *) 0 ;
9049
- FXint arg2 ; FXint arg3 ; FXbool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
9050
- rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
9051
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDockTitle, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]);
9052
- result = (FXbool)FXDockTitle_contains((FXDockTitle const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse;
9053
- return vresult; }
9054
- static VALUE _wrap_FXDockTitle_doesSaveUnder(int argc, VALUE *argv, VALUE self) { FXDockTitle *arg1 = (FXDockTitle *) 0 ;
9055
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
9056
- rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
9057
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDockTitle, 1);
9058
- result = (FXbool)FXDockTitle_doesSaveUnder((FXDockTitle const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
9059
- static VALUE _wrap_FXDockTitle_setBackColor(int argc, VALUE *argv, VALUE self) { FXDockTitle *arg1 = (FXDockTitle *) 0 ;
9060
- FXColor arg2 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
9061
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDockTitle, 1); arg2 = to_FXColor(argv[0]);
9062
- FXDockTitle_setBackColor(arg1,arg2); return Qnil; }
9063
- static VALUE _wrap_FXDockTitle_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) { FXDockTitle *arg1 = (FXDockTitle *) 0 ;
9064
- FXRegion *arg2 = 0 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
9065
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDockTitle, 1);
9066
- SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXRegion, 1); if (arg2 == NULL) rb_raise(rb_eTypeError, "null reference");
9067
- FXDockTitle_setShape(arg1,(FXRegion const &)*arg2); return Qnil; }
9068
- static VALUE _wrap_FXDockTitle_setShape__SWIG_1(int argc, VALUE *argv, VALUE self) { FXDockTitle *arg1 = (FXDockTitle *) 0 ;
9069
- FXBitmap *arg2 = (FXBitmap *) 0 ; if ((argc < 1) || (argc > 1))
9070
- rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
9071
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDockTitle, 1);
9072
- SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXBitmap, 1); FXDockTitle_setShape(arg1,arg2); return Qnil; }
9073
- static VALUE _wrap_FXDockTitle_setShape__SWIG_2(int argc, VALUE *argv, VALUE self) { FXDockTitle *arg1 = (FXDockTitle *) 0 ;
9074
- FXIcon *arg2 = (FXIcon *) 0 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
9075
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDockTitle, 1);
9076
- SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXIcon, 1); FXDockTitle_setShape(arg1,arg2); return Qnil; }
9077
- static VALUE _wrap_FXDockTitle_setShape(int nargs, VALUE *args, VALUE self) { int argc; VALUE argv[3]; int ii; argc = nargs + 1;
9078
- argv[0] = self; for (ii = 1; (ii < argc) && (ii < 2); ii++) { argv[ii] = args[ii-1]; } if (argc == 2) { int _v; {
9079
- void *ptr;
9080
- _v = (NIL_P(argv[0]) || (TYPE(argv[0]) == T_DATA && SWIG_ConvertPtr(argv[0], &ptr, SWIGTYPE_p_FXDockTitle, 0) != -1)) ? 1 : 0; }
9081
- if (_v) { { void *ptr;
9082
- _v = (NIL_P(argv[1]) || (TYPE(argv[1]) == T_DATA && SWIG_ConvertPtr(argv[1], &ptr, SWIGTYPE_p_FXRegion, 0) != -1)) ? 1 : 0; }
9083
- if (_v) { return _wrap_FXDockTitle_setShape__SWIG_0(nargs, args, self);} } } if (argc == 2) { int _v; {
9084
- void *ptr;
9085
- _v = (NIL_P(argv[0]) || (TYPE(argv[0]) == T_DATA && SWIG_ConvertPtr(argv[0], &ptr, SWIGTYPE_p_FXDockTitle, 0) != -1)) ? 1 : 0; }
9086
- if (_v) { { void *ptr;
9087
- _v = (NIL_P(argv[1]) || (TYPE(argv[1]) == T_DATA && SWIG_ConvertPtr(argv[1], &ptr, SWIGTYPE_p_FXBitmap, 0) != -1)) ? 1 : 0; }
9088
- if (_v) { return _wrap_FXDockTitle_setShape__SWIG_1(nargs, args, self);} } } if (argc == 2) { int _v; {
9089
- void *ptr;
9090
- _v = (NIL_P(argv[0]) || (TYPE(argv[0]) == T_DATA && SWIG_ConvertPtr(argv[0], &ptr, SWIGTYPE_p_FXDockTitle, 0) != -1)) ? 1 : 0; }
9091
- if (_v) { { void *ptr;
9092
- _v = (NIL_P(argv[1]) || (TYPE(argv[1]) == T_DATA && SWIG_ConvertPtr(argv[1], &ptr, SWIGTYPE_p_FXIcon, 0) != -1)) ? 1 : 0; }
9093
- if (_v) { return _wrap_FXDockTitle_setShape__SWIG_2(nargs, args, self);} } }
9094
- rb_raise(rb_eArgError, "No matching function for overloaded 'FXDockTitle_setShape'"); return Qnil; }
9095
- static VALUE _wrap_FXDockTitle_clearShape(int argc, VALUE *argv, VALUE self) { FXDockTitle *arg1 = (FXDockTitle *) 0 ;
9096
- if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
9097
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDockTitle, 1); FXDockTitle_clearShape(arg1); return Qnil; }
9098
9301
  static VALUE _wrap_FXToolBarGrip_onPaint(int argc, VALUE *argv, VALUE self) { FXToolBarGrip *arg1 = (FXToolBarGrip *) 0 ;
9099
9302
  FXObject *arg2 = (FXObject *) 0 ; FXSelector arg3 ; void *arg4 = (void *) 0 ; long result; VALUE vresult = Qnil;
9100
9303
  if ((argc < 3) || (argc > 3)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 3)",argc);
@@ -9199,10 +9402,10 @@ static VALUE _wrap_FXToolBarGrip_getHeightForWidth(int argc, VALUE *argv, VALUE
9199
9402
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXToolBarGrip, 1); arg2 = NUM2INT(argv[0]);
9200
9403
  result = (FXint)FXToolBarGrip_getHeightForWidth(arg1,arg2); vresult = INT2NUM(result); return vresult; }
9201
9404
  static VALUE _wrap_FXToolBarGrip_canFocus(int argc, VALUE *argv, VALUE self) { FXToolBarGrip *arg1 = (FXToolBarGrip *) 0 ;
9202
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
9405
+ bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
9203
9406
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
9204
9407
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXToolBarGrip, 1);
9205
- result = (FXbool)FXToolBarGrip_canFocus((FXToolBarGrip const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
9408
+ result = (bool)FXToolBarGrip_canFocus((FXToolBarGrip const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
9206
9409
  static VALUE _wrap_FXToolBarGrip_setFocus(int argc, VALUE *argv, VALUE self) { FXToolBarGrip *arg1 = (FXToolBarGrip *) 0 ;
9207
9410
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
9208
9411
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXToolBarGrip, 1); FXToolBarGrip_setFocus(arg1); return Qnil; }
@@ -9258,26 +9461,38 @@ static VALUE _wrap_FXToolBarGrip_hide(int argc, VALUE *argv, VALUE self) { FXToo
9258
9461
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
9259
9462
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXToolBarGrip, 1); FXToolBarGrip_hide(arg1); return Qnil; }
9260
9463
  static VALUE _wrap_FXToolBarGrip_isComposite(int argc, VALUE *argv, VALUE self) { FXToolBarGrip *arg1 = (FXToolBarGrip *) 0 ;
9261
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
9464
+ bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
9262
9465
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
9263
9466
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXToolBarGrip, 1);
9264
- result = (FXbool)FXToolBarGrip_isComposite((FXToolBarGrip const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
9467
+ result = (bool)FXToolBarGrip_isComposite((FXToolBarGrip const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
9265
9468
  static VALUE _wrap_FXToolBarGrip_contains(int argc, VALUE *argv, VALUE self) { FXToolBarGrip *arg1 = (FXToolBarGrip *) 0 ;
9266
- FXint arg2 ; FXint arg3 ; FXbool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
9469
+ FXint arg2 ; FXint arg3 ; bool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
9267
9470
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
9268
9471
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXToolBarGrip, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]);
9269
- result = (FXbool)FXToolBarGrip_contains((FXToolBarGrip const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse;
9472
+ result = (bool)FXToolBarGrip_contains((FXToolBarGrip const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse;
9270
9473
  return vresult; }
9271
9474
  static VALUE _wrap_FXToolBarGrip_doesSaveUnder(int argc, VALUE *argv, VALUE self) { FXToolBarGrip *arg1 = (FXToolBarGrip *) 0 ;
9272
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
9475
+ bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
9273
9476
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
9274
9477
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXToolBarGrip, 1);
9275
- result = (FXbool)FXToolBarGrip_doesSaveUnder((FXToolBarGrip const *)arg1); vresult = result ? Qtrue : Qfalse;
9276
- return vresult; }
9478
+ result = (bool)FXToolBarGrip_doesSaveUnder((FXToolBarGrip const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
9277
9479
  static VALUE _wrap_FXToolBarGrip_setBackColor(int argc, VALUE *argv, VALUE self) { FXToolBarGrip *arg1 = (FXToolBarGrip *) 0 ;
9278
9480
  FXColor arg2 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
9279
9481
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXToolBarGrip, 1); arg2 = to_FXColor(argv[0]);
9280
9482
  FXToolBarGrip_setBackColor(arg1,arg2); return Qnil; }
9483
+ static VALUE _wrap_FXToolBarGrip_tr(int argc, VALUE *argv, VALUE self) { FXToolBarGrip *arg1 = (FXToolBarGrip *) 0 ;
9484
+ FXchar *arg2 ; FXchar *arg3 = (FXchar *) 0 ; FXchar *result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 2))
9485
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
9486
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXToolBarGrip, 1); arg2 = StringValuePtr(argv[0]); if (argc > 1) {
9487
+ arg3 = StringValuePtr(argv[1]); }
9488
+ result = (FXchar *)FXToolBarGrip_tr((FXToolBarGrip const *)arg1,(FXchar const *)arg2,(FXchar const *)arg3);
9489
+ vresult = rb_str_new2(result); return vresult; }
9490
+ static VALUE _wrap_FXToolBarGrip_dropEnable(int argc, VALUE *argv, VALUE self) { FXToolBarGrip *arg1 = (FXToolBarGrip *) 0 ;
9491
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
9492
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXToolBarGrip, 1); FXToolBarGrip_dropEnable(arg1); return Qnil; }
9493
+ static VALUE _wrap_FXToolBarGrip_dropDisable(int argc, VALUE *argv, VALUE self) { FXToolBarGrip *arg1 = (FXToolBarGrip *) 0 ;
9494
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
9495
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXToolBarGrip, 1); FXToolBarGrip_dropDisable(arg1); return Qnil; }
9281
9496
  static VALUE _wrap_FXToolBarGrip_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
9282
9497
  FXToolBarGrip *arg1 = (FXToolBarGrip *) 0 ; FXRegion *arg2 = 0 ; if ((argc < 1) || (argc > 1))
9283
9498
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
@@ -9444,10 +9659,10 @@ static VALUE _wrap_FXToolBarShell_getHeightForWidth(int argc, VALUE *argv, VALUE
9444
9659
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXToolBarShell, 1); arg2 = NUM2INT(argv[0]);
9445
9660
  result = (FXint)FXToolBarShell_getHeightForWidth(arg1,arg2); vresult = INT2NUM(result); return vresult; }
9446
9661
  static VALUE _wrap_FXToolBarShell_canFocus(int argc, VALUE *argv, VALUE self) { FXToolBarShell *arg1 = (FXToolBarShell *) 0 ;
9447
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
9662
+ bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
9448
9663
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
9449
9664
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXToolBarShell, 1);
9450
- result = (FXbool)FXToolBarShell_canFocus((FXToolBarShell const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
9665
+ result = (bool)FXToolBarShell_canFocus((FXToolBarShell const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
9451
9666
  static VALUE _wrap_FXToolBarShell_setFocus(int argc, VALUE *argv, VALUE self) { FXToolBarShell *arg1 = (FXToolBarShell *) 0 ;
9452
9667
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
9453
9668
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXToolBarShell, 1); FXToolBarShell_setFocus(arg1); return Qnil; }
@@ -9504,28 +9719,40 @@ static VALUE _wrap_FXToolBarShell_hide(int argc, VALUE *argv, VALUE self) { FXTo
9504
9719
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
9505
9720
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXToolBarShell, 1); FXToolBarShell_hide(arg1); return Qnil; }
9506
9721
  static VALUE _wrap_FXToolBarShell_isComposite(int argc, VALUE *argv, VALUE self) { FXToolBarShell *arg1 = (FXToolBarShell *) 0 ;
9507
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
9722
+ bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
9508
9723
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
9509
9724
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXToolBarShell, 1);
9510
- result = (FXbool)FXToolBarShell_isComposite((FXToolBarShell const *)arg1); vresult = result ? Qtrue : Qfalse;
9511
- return vresult; }
9725
+ result = (bool)FXToolBarShell_isComposite((FXToolBarShell const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
9512
9726
  static VALUE _wrap_FXToolBarShell_contains(int argc, VALUE *argv, VALUE self) { FXToolBarShell *arg1 = (FXToolBarShell *) 0 ;
9513
- FXint arg2 ; FXint arg3 ; FXbool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
9727
+ FXint arg2 ; FXint arg3 ; bool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
9514
9728
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
9515
9729
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXToolBarShell, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]);
9516
- result = (FXbool)FXToolBarShell_contains((FXToolBarShell const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse;
9730
+ result = (bool)FXToolBarShell_contains((FXToolBarShell const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse;
9517
9731
  return vresult; }
9518
9732
  static VALUE _wrap_FXToolBarShell_doesSaveUnder(int argc, VALUE *argv, VALUE self) {
9519
- FXToolBarShell *arg1 = (FXToolBarShell *) 0 ; FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
9733
+ FXToolBarShell *arg1 = (FXToolBarShell *) 0 ; bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
9520
9734
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
9521
9735
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXToolBarShell, 1);
9522
- result = (FXbool)FXToolBarShell_doesSaveUnder((FXToolBarShell const *)arg1); vresult = result ? Qtrue : Qfalse;
9736
+ result = (bool)FXToolBarShell_doesSaveUnder((FXToolBarShell const *)arg1); vresult = result ? Qtrue : Qfalse;
9523
9737
  return vresult; }
9524
9738
  static VALUE _wrap_FXToolBarShell_setBackColor(int argc, VALUE *argv, VALUE self) {
9525
9739
  FXToolBarShell *arg1 = (FXToolBarShell *) 0 ; FXColor arg2 ; if ((argc < 1) || (argc > 1))
9526
9740
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
9527
9741
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXToolBarShell, 1); arg2 = to_FXColor(argv[0]);
9528
9742
  FXToolBarShell_setBackColor(arg1,arg2); return Qnil; }
9743
+ static VALUE _wrap_FXToolBarShell_tr(int argc, VALUE *argv, VALUE self) { FXToolBarShell *arg1 = (FXToolBarShell *) 0 ;
9744
+ FXchar *arg2 ; FXchar *arg3 = (FXchar *) 0 ; FXchar *result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 2))
9745
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
9746
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXToolBarShell, 1); arg2 = StringValuePtr(argv[0]); if (argc > 1) {
9747
+ arg3 = StringValuePtr(argv[1]); }
9748
+ result = (FXchar *)FXToolBarShell_tr((FXToolBarShell const *)arg1,(FXchar const *)arg2,(FXchar const *)arg3);
9749
+ vresult = rb_str_new2(result); return vresult; }
9750
+ static VALUE _wrap_FXToolBarShell_dropEnable(int argc, VALUE *argv, VALUE self) { FXToolBarShell *arg1 = (FXToolBarShell *) 0 ;
9751
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
9752
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXToolBarShell, 1); FXToolBarShell_dropEnable(arg1); return Qnil; }
9753
+ static VALUE _wrap_FXToolBarShell_dropDisable(int argc, VALUE *argv, VALUE self) { FXToolBarShell *arg1 = (FXToolBarShell *) 0 ;
9754
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
9755
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXToolBarShell, 1); FXToolBarShell_dropDisable(arg1); return Qnil; }
9529
9756
  static VALUE _wrap_FXToolBarShell_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
9530
9757
  FXToolBarShell *arg1 = (FXToolBarShell *) 0 ; FXRegion *arg2 = 0 ; if ((argc < 1) || (argc > 1))
9531
9758
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
@@ -9825,6 +10052,9 @@ static void *_p_FXStatusLineTo_p_FXWindow(void *x) {
9825
10052
  static void *_p_FXComboBoxTo_p_FXWindow(void *x) {
9826
10053
  return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXComboBox *) x));
9827
10054
  }
10055
+ static void *_p_FXKnobTo_p_FXWindow(void *x) {
10056
+ return (void *)((FXWindow *) (FXFrame *) ((FXKnob *) x));
10057
+ }
9828
10058
  static void *_p_FXHorizontalFrameTo_p_FXWindow(void *x) {
9829
10059
  return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXHorizontalFrame *) x));
9830
10060
  }
@@ -9855,9 +10085,6 @@ static void *_p_FXColorWheelTo_p_FXWindow(void *x) {
9855
10085
  static void *_p_FXBitmapFrameTo_p_FXWindow(void *x) {
9856
10086
  return (void *)((FXWindow *) (FXFrame *) ((FXBitmapFrame *) x));
9857
10087
  }
9858
- static void *_p_FXGradientBarTo_p_FXWindow(void *x) {
9859
- return (void *)((FXWindow *) (FXFrame *) ((FXGradientBar *) x));
9860
- }
9861
10088
  static void *_p_FXDirBoxTo_p_FXWindow(void *x) {
9862
10089
  return (void *)((FXWindow *) (FXComposite *)(FXPacker *)(FXTreeListBox *) ((FXDirBox *) x));
9863
10090
  }
@@ -9897,9 +10124,6 @@ static void *_p_FXProgressBarTo_p_FXWindow(void *x) {
9897
10124
  static void *_p_FXDockSiteTo_p_FXWindow(void *x) {
9898
10125
  return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXDockSite *) x));
9899
10126
  }
9900
- static void *_p_FXDockTitleTo_p_FXWindow(void *x) {
9901
- return (void *)((FXWindow *) (FXFrame *)(FXDockHandler *) ((FXDockTitle *) x));
9902
- }
9903
10127
  static void *_p_FXListBoxTo_p_FXWindow(void *x) {
9904
10128
  return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXListBox *) x));
9905
10129
  }
@@ -9948,6 +10172,9 @@ static void *_p_FXRealSliderTo_p_FXWindow(void *x) {
9948
10172
  static void *_p_FXSpringTo_p_FXWindow(void *x) {
9949
10173
  return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXSpring *) x));
9950
10174
  }
10175
+ static void *_p_FXColorRingTo_p_FXWindow(void *x) {
10176
+ return (void *)((FXWindow *) (FXFrame *) ((FXColorRing *) x));
10177
+ }
9951
10178
  static void *_p_FXColorBarTo_p_FXWindow(void *x) {
9952
10179
  return (void *)((FXWindow *) (FXFrame *) ((FXColorBar *) x));
9953
10180
  }
@@ -9957,9 +10184,6 @@ static void *_p_FXToolBarShellTo_p_FXWindow(void *x) {
9957
10184
  static void *_p_FXDocumentTo_p_FXObject(void *x) {
9958
10185
  return (void *)((FXObject *) ((FXDocument *) x));
9959
10186
  }
9960
- static void *_p_FXGradientBarTo_p_FXObject(void *x) {
9961
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXGradientBar *) x));
9962
- }
9963
10187
  static void *_p_FXRegistryTo_p_FXObject(void *x) {
9964
10188
  return (void *)((FXObject *) (FXDict *)(FXSettings *) ((FXRegistry *) x));
9965
10189
  }
@@ -10017,6 +10241,9 @@ static void *_p_FXAppTo_p_FXObject(void *x) {
10017
10241
  static void *_p_FXHeaderTo_p_FXObject(void *x) {
10018
10242
  return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXHeader *) x));
10019
10243
  }
10244
+ static void *_p_FXTranslatorTo_p_FXObject(void *x) {
10245
+ return (void *)((FXObject *) ((FXTranslator *) x));
10246
+ }
10020
10247
  static void *_p_FX4SplitterTo_p_FXObject(void *x) {
10021
10248
  return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *) ((FX4Splitter *) x));
10022
10249
  }
@@ -10077,6 +10304,9 @@ static void *_p_FXDockSiteTo_p_FXObject(void *x) {
10077
10304
  static void *_p_FXGroupBoxTo_p_FXObject(void *x) {
10078
10305
  return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXGroupBox *) x));
10079
10306
  }
10307
+ static void *_p_FXColorRingTo_p_FXObject(void *x) {
10308
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXColorRing *) x));
10309
+ }
10080
10310
  static void *_p_FXDebugTargetTo_p_FXObject(void *x) {
10081
10311
  return (void *)((FXObject *) ((FXDebugTarget *) x));
10082
10312
  }
@@ -10119,9 +10349,6 @@ static void *_p_FXFrameTo_p_FXObject(void *x) {
10119
10349
  static void *_p_FX7SegmentTo_p_FXObject(void *x) {
10120
10350
  return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FX7Segment *) x));
10121
10351
  }
10122
- static void *_p_FXDockTitleTo_p_FXObject(void *x) {
10123
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *)(FXDockHandler *) ((FXDockTitle *) x));
10124
- }
10125
10352
  static void *_p_FXStringDictTo_p_FXObject(void *x) {
10126
10353
  return (void *)((FXObject *) (FXDict *) ((FXStringDict *) x));
10127
10354
  }
@@ -10143,6 +10370,9 @@ static void *_p_FXCURCursorTo_p_FXObject(void *x) {
10143
10370
  static void *_p_FXGIFCursorTo_p_FXObject(void *x) {
10144
10371
  return (void *)((FXObject *) (FXId *)(FXCursor *) ((FXGIFCursor *) x));
10145
10372
  }
10373
+ static void *_p_FXKnobTo_p_FXObject(void *x) {
10374
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXKnob *) x));
10375
+ }
10146
10376
  static void *_p_FXRealSpinnerTo_p_FXObject(void *x) {
10147
10377
  return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXRealSpinner *) x));
10148
10378
  }
@@ -10194,12 +10424,12 @@ static void *_p_FXRulerTo_p_FXObject(void *x) {
10194
10424
  static void *_p_FXDialTo_p_FXObject(void *x) {
10195
10425
  return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXDial *) x));
10196
10426
  }
10197
- static void *_p_FXHorizontalFrameTo_p_FXObject(void *x) {
10198
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXHorizontalFrame *) x));
10199
- }
10200
10427
  static void *_p_FXVerticalFrameTo_p_FXObject(void *x) {
10201
10428
  return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXVerticalFrame *) x));
10202
10429
  }
10430
+ static void *_p_FXHorizontalFrameTo_p_FXObject(void *x) {
10431
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXHorizontalFrame *) x));
10432
+ }
10203
10433
  static void *_p_FXImageViewTo_p_FXObject(void *x) {
10204
10434
  return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXScrollArea *) ((FXImageView *) x));
10205
10435
  }
@@ -10302,9 +10532,6 @@ static void *_p_FXSwitcherTo_p_FXPacker(void *x) {
10302
10532
  static void *_p_FXToolBarGripTo_p_FXDockHandler(void *x) {
10303
10533
  return (void *)((FXDockHandler *) ((FXToolBarGrip *) x));
10304
10534
  }
10305
- static void *_p_FXDockTitleTo_p_FXDockHandler(void *x) {
10306
- return (void *)((FXDockHandler *) ((FXDockTitle *) x));
10307
- }
10308
10535
  static void *_p_FXDriveBoxTo_p_FXDrawable(void *x) {
10309
10536
  return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *)(FXListBox *) ((FXDriveBox *) x));
10310
10537
  }
@@ -10383,6 +10610,9 @@ static void *_p_FXStatusLineTo_p_FXDrawable(void *x) {
10383
10610
  static void *_p_FXComboBoxTo_p_FXDrawable(void *x) {
10384
10611
  return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXComboBox *) x));
10385
10612
  }
10613
+ static void *_p_FXKnobTo_p_FXDrawable(void *x) {
10614
+ return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXKnob *) x));
10615
+ }
10386
10616
  static void *_p_FXHorizontalFrameTo_p_FXDrawable(void *x) {
10387
10617
  return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXHorizontalFrame *) x));
10388
10618
  }
@@ -10413,9 +10643,6 @@ static void *_p_FXColorWheelTo_p_FXDrawable(void *x) {
10413
10643
  static void *_p_FXBitmapFrameTo_p_FXDrawable(void *x) {
10414
10644
  return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXBitmapFrame *) x));
10415
10645
  }
10416
- static void *_p_FXGradientBarTo_p_FXDrawable(void *x) {
10417
- return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXGradientBar *) x));
10418
- }
10419
10646
  static void *_p_FXDirBoxTo_p_FXDrawable(void *x) {
10420
10647
  return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *)(FXTreeListBox *) ((FXDirBox *) x));
10421
10648
  }
@@ -10455,9 +10682,6 @@ static void *_p_FXProgressBarTo_p_FXDrawable(void *x) {
10455
10682
  static void *_p_FXDockSiteTo_p_FXDrawable(void *x) {
10456
10683
  return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXDockSite *) x));
10457
10684
  }
10458
- static void *_p_FXDockTitleTo_p_FXDrawable(void *x) {
10459
- return (void *)((FXDrawable *) (FXWindow *)(FXFrame *)(FXDockHandler *) ((FXDockTitle *) x));
10460
- }
10461
10685
  static void *_p_FXListBoxTo_p_FXDrawable(void *x) {
10462
10686
  return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXListBox *) x));
10463
10687
  }
@@ -10506,6 +10730,9 @@ static void *_p_FXRealSliderTo_p_FXDrawable(void *x) {
10506
10730
  static void *_p_FXSpringTo_p_FXDrawable(void *x) {
10507
10731
  return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXSpring *) x));
10508
10732
  }
10733
+ static void *_p_FXColorRingTo_p_FXDrawable(void *x) {
10734
+ return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXColorRing *) x));
10735
+ }
10509
10736
  static void *_p_FXColorBarTo_p_FXDrawable(void *x) {
10510
10737
  return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXColorBar *) x));
10511
10738
  }
@@ -10527,9 +10754,6 @@ static void *_p_FXDriveBoxTo_p_FXListBox(void *x) {
10527
10754
  static void *_p_FXToolBarTo_p_FXDockBar(void *x) {
10528
10755
  return (void *)((FXDockBar *) ((FXToolBar *) x));
10529
10756
  }
10530
- static void *_p_FXGradientBarTo_p_FXId(void *x) {
10531
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXGradientBar *) x));
10532
- }
10533
10757
  static void *_p_FXShutterItemTo_p_FXId(void *x) {
10534
10758
  return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXVerticalFrame *) ((FXShutterItem *) x));
10535
10759
  }
@@ -10623,6 +10847,9 @@ static void *_p_FXDockSiteTo_p_FXId(void *x) {
10623
10847
  static void *_p_FXGroupBoxTo_p_FXId(void *x) {
10624
10848
  return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXGroupBox *) x));
10625
10849
  }
10850
+ static void *_p_FXColorRingTo_p_FXId(void *x) {
10851
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXColorRing *) x));
10852
+ }
10626
10853
  static void *_p_FXDockHandlerTo_p_FXId(void *x) {
10627
10854
  return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXDockHandler *) x));
10628
10855
  }
@@ -10659,9 +10886,6 @@ static void *_p_FXFrameTo_p_FXId(void *x) {
10659
10886
  static void *_p_FX7SegmentTo_p_FXId(void *x) {
10660
10887
  return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FX7Segment *) x));
10661
10888
  }
10662
- static void *_p_FXDockTitleTo_p_FXId(void *x) {
10663
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *)(FXDockHandler *) ((FXDockTitle *) x));
10664
- }
10665
10889
  static void *_p_FXStatusBarTo_p_FXId(void *x) {
10666
10890
  return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXHorizontalFrame *) ((FXStatusBar *) x));
10667
10891
  }
@@ -10674,6 +10898,9 @@ static void *_p_FXCURCursorTo_p_FXId(void *x) {
10674
10898
  static void *_p_FXCursorTo_p_FXId(void *x) {
10675
10899
  return (void *)((FXId *) ((FXCursor *) x));
10676
10900
  }
10901
+ static void *_p_FXKnobTo_p_FXId(void *x) {
10902
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXKnob *) x));
10903
+ }
10677
10904
  static void *_p_FXRealSpinnerTo_p_FXId(void *x) {
10678
10905
  return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXRealSpinner *) x));
10679
10906
  }
@@ -10758,6 +10985,9 @@ static void *_p_FXTabBookTo_p_FXTabBar(void *x) {
10758
10985
  static void *_p_FXToolBarTabTo_p_FXFrame(void *x) {
10759
10986
  return (void *)((FXFrame *) ((FXToolBarTab *) x));
10760
10987
  }
10988
+ static void *_p_FXColorRingTo_p_FXFrame(void *x) {
10989
+ return (void *)((FXFrame *) ((FXColorRing *) x));
10990
+ }
10761
10991
  static void *_p_FXColorBarTo_p_FXFrame(void *x) {
10762
10992
  return (void *)((FXFrame *) ((FXColorBar *) x));
10763
10993
  }
@@ -10782,23 +11012,17 @@ static void *_p_FXProgressBarTo_p_FXFrame(void *x) {
10782
11012
  static void *_p_FXColorWellTo_p_FXFrame(void *x) {
10783
11013
  return (void *)((FXFrame *) ((FXColorWell *) x));
10784
11014
  }
10785
- static void *_p_FXGradientBarTo_p_FXFrame(void *x) {
10786
- return (void *)((FXFrame *) ((FXGradientBar *) x));
10787
- }
10788
11015
  static void *_p_FXStatusLineTo_p_FXFrame(void *x) {
10789
11016
  return (void *)((FXFrame *) ((FXStatusLine *) x));
10790
11017
  }
10791
- static void *_p_FXVerticalSeparatorTo_p_FXFrame(void *x) {
10792
- return (void *)((FXFrame *) (FXSeparator *) ((FXVerticalSeparator *) x));
10793
- }
10794
11018
  static void *_p_FXHorizontalSeparatorTo_p_FXFrame(void *x) {
10795
11019
  return (void *)((FXFrame *) (FXSeparator *) ((FXHorizontalSeparator *) x));
10796
11020
  }
10797
11021
  static void *_p_FXSeparatorTo_p_FXFrame(void *x) {
10798
11022
  return (void *)((FXFrame *) ((FXSeparator *) x));
10799
11023
  }
10800
- static void *_p_FXDockTitleTo_p_FXFrame(void *x) {
10801
- return (void *)((FXFrame *) (FXDockHandler *) ((FXDockTitle *) x));
11024
+ static void *_p_FXVerticalSeparatorTo_p_FXFrame(void *x) {
11025
+ return (void *)((FXFrame *) (FXSeparator *) ((FXVerticalSeparator *) x));
10802
11026
  }
10803
11027
  static void *_p_FXTextFieldTo_p_FXFrame(void *x) {
10804
11028
  return (void *)((FXFrame *) ((FXTextField *) x));
@@ -10812,6 +11036,9 @@ static void *_p_FXHeaderTo_p_FXFrame(void *x) {
10812
11036
  static void *_p_FXImageFrameTo_p_FXFrame(void *x) {
10813
11037
  return (void *)((FXFrame *) ((FXImageFrame *) x));
10814
11038
  }
11039
+ static void *_p_FXKnobTo_p_FXFrame(void *x) {
11040
+ return (void *)((FXFrame *) ((FXKnob *) x));
11041
+ }
10815
11042
  static void *_p_FXSliderTo_p_FXFrame(void *x) {
10816
11043
  return (void *)((FXFrame *) ((FXSlider *) x));
10817
11044
  }
@@ -10830,23 +11057,23 @@ static swig_type_info _swigt__p_FXTreeItem[] = {{"_p_FXTreeItem", 0, "FXTreeItem
10830
11057
  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_FXRootWindow", _p_FXRootWindowTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXScrollWindow", _p_FXScrollWindowTo_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_FXSplashWindow", _p_FXSplashWindowTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXComboBox", _p_FXComboBoxTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXHorizontalFrame", _p_FXHorizontalFrameTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXVerticalFrame", _p_FXVerticalFrameTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FX4Splitter", _p_FX4SplitterTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXSplitter", _p_FXSplitterTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXRealSpinner", _p_FXRealSpinnerTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXSpinner", _p_FXSpinnerTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXPacker", _p_FXPackerTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXDirBox", _p_FXDirBoxTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_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_FXSwitcher", _p_FXSwitcherTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXShutter", _p_FXShutterTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXDockSite", _p_FXDockSiteTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXListBox", _p_FXListBoxTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXTreeListBox", _p_FXTreeListBoxTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXMatrix", _p_FXMatrixTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXShutterItem", _p_FXShutterItemTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXDockBar", _p_FXDockBarTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXTabBar", _p_FXTabBarTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXImageView", _p_FXImageViewTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXSpring", _p_FXSpringTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXToolBarShell", _p_FXToolBarShellTo_p_FXComposite, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
10831
11058
  static swig_type_info _swigt__p_FXToolTip[] = {{"_p_FXToolTip", 0, "FXToolTip *", 0, 0, 0, 0},{"_p_FXToolTip", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
10832
11059
  static swig_type_info _swigt__p_FXTabBook[] = {{"_p_FXTabBook", 0, "FXTabBook *", 0, 0, 0, 0},{"_p_FXTabBook", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
10833
- static swig_type_info _swigt__p_FXId[] = {{"_p_FXId", 0, "FXId *", 0, 0, 0, 0},{"_p_FXGradientBar", _p_FXGradientBarTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXShutterItem", _p_FXShutterItemTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXColorBar", _p_FXColorBarTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXTabBar", _p_FXTabBarTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXSwitcher", _p_FXSwitcherTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXTextField", _p_FXTextFieldTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXToolBarTab", _p_FXToolBarTabTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXDriveBox", _p_FXDriveBoxTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXMatrix", _p_FXMatrixTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXScrollCorner", _p_FXScrollCornerTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXArrowButton", _p_FXArrowButtonTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXPopup", _p_FXPopupTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXDrawable", _p_FXDrawableTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXFont", _p_FXFontTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXHeader", _p_FXHeaderTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FX4Splitter", _p_FX4SplitterTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXSplitter", _p_FXSplitterTo_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_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_FXListBox", _p_FXListBoxTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXTreeListBox", _p_FXTreeListBoxTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXCanvas", _p_FXCanvasTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXId", 0, 0, 0, 0, 0, 0},{"_p_FXColorWheel", _p_FXColorWheelTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXDial", _p_FXDialTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXVisual", _p_FXVisualTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXToolBarGrip", _p_FXToolBarGripTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXScrollBar", _p_FXScrollBarTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXComboBox", _p_FXComboBoxTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXFrame", _p_FXFrameTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FX7Segment", _p_FX7SegmentTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXDockTitle", _p_FXDockTitleTo_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_FXTopWindow", _p_FXTopWindowTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXMainWindow", _p_FXMainWindowTo_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_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_FXFontSelector", _p_FXFontSelectorTo_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_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}};
11060
+ static swig_type_info _swigt__p_FXId[] = {{"_p_FXId", 0, "FXId *", 0, 0, 0, 0},{"_p_FXShutterItem", _p_FXShutterItemTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXColorBar", _p_FXColorBarTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXTabBar", _p_FXTabBarTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXSwitcher", _p_FXSwitcherTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXTextField", _p_FXTextFieldTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXToolBarTab", _p_FXToolBarTabTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXDriveBox", _p_FXDriveBoxTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXMatrix", _p_FXMatrixTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXScrollCorner", _p_FXScrollCornerTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXArrowButton", _p_FXArrowButtonTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXPopup", _p_FXPopupTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXDrawable", _p_FXDrawableTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXFont", _p_FXFontTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXHeader", _p_FXHeaderTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXSplitter", _p_FXSplitterTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FX4Splitter", _p_FX4SplitterTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXSpring", _p_FXSpringTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXPacker", _p_FXPackerTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXTabBook", _p_FXTabBookTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXImageFrame", _p_FXImageFrameTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXSeparator", _p_FXSeparatorTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXHorizontalSeparator", _p_FXHorizontalSeparatorTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXVerticalSeparator", _p_FXVerticalSeparatorTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXKnob", _p_FXKnobTo_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_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_FXColorRing", _p_FXColorRingTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXDockHandler", _p_FXDockHandlerTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXListBox", _p_FXListBoxTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXTreeListBox", _p_FXTreeListBoxTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXCanvas", _p_FXCanvasTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXId", 0, 0, 0, 0, 0, 0},{"_p_FXColorWheel", _p_FXColorWheelTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXDial", _p_FXDialTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXVisual", _p_FXVisualTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXToolBarGrip", _p_FXToolBarGripTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXScrollBar", _p_FXScrollBarTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXComboBox", _p_FXComboBoxTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXFrame", _p_FXFrameTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FX7Segment", _p_FX7SegmentTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXStatusBar", _p_FXStatusBarTo_p_FXId, 0, 0, 0, 0, 0},{"_p_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_FXTopWindow", _p_FXTopWindowTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXMainWindow", _p_FXMainWindowTo_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_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_FXFontSelector", _p_FXFontSelectorTo_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_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}};
10834
11061
  static swig_type_info _swigt__p_FXImage[] = {{"_p_FXImage", 0, "FXImage *", 0, 0, 0, 0},{"_p_FXImage", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
10835
11062
  static swig_type_info _swigt__p_FXShell[] = {{"_p_FXShell", 0, "FXShell *", 0, 0, 0, 0},{"_p_FXShell", 0, 0, 0, 0, 0, 0},{"_p_FXPopup", _p_FXPopupTo_p_FXShell, 0, 0, 0, 0, 0},{"_p_FXTopWindow", _p_FXTopWindowTo_p_FXShell, 0, 0, 0, 0, 0},{"_p_FXMainWindow", _p_FXMainWindowTo_p_FXShell, 0, 0, 0, 0, 0},{"_p_FXSplashWindow", _p_FXSplashWindowTo_p_FXShell, 0, 0, 0, 0, 0},{"_p_FXToolTip", _p_FXToolTipTo_p_FXShell, 0, 0, 0, 0, 0},{"_p_FXToolBarShell", _p_FXToolBarShellTo_p_FXShell, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
10836
11063
  static swig_type_info _swigt__p_FXScrollArea[] = {{"_p_FXScrollArea", 0, "FXScrollArea *", 0, 0, 0, 0},{"_p_FXScrollWindow", _p_FXScrollWindowTo_p_FXScrollArea, 0, 0, 0, 0, 0},{"_p_FXScrollArea", 0, 0, 0, 0, 0, 0},{"_p_FXImageView", _p_FXImageViewTo_p_FXScrollArea, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
10837
11064
  static swig_type_info _swigt__p_FXScrollCorner[] = {{"_p_FXScrollCorner", 0, "FXScrollCorner *", 0, 0, 0, 0},{"_p_FXScrollCorner", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
10838
11065
  static swig_type_info _swigt__p_FXTopWindow[] = {{"_p_FXTopWindow", 0, "FXTopWindow *", 0, 0, 0, 0},{"_p_FXTopWindow", 0, 0, 0, 0, 0, 0},{"_p_FXMainWindow", _p_FXMainWindowTo_p_FXTopWindow, 0, 0, 0, 0, 0},{"_p_FXSplashWindow", _p_FXSplashWindowTo_p_FXTopWindow, 0, 0, 0, 0, 0},{"_p_FXToolBarShell", _p_FXToolBarShellTo_p_FXTopWindow, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
10839
- static swig_type_info _swigt__p_FXWindow[] = {{"_p_FXWindow", 0, "FXWindow *", 0, 0, 0, 0},{"_p_FXDriveBox", _p_FXDriveBoxTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXDial", _p_FXDialTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXToolBar", _p_FXToolBarTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXComposite", _p_FXCompositeTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXToolTip", _p_FXToolTipTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXTabBook", _p_FXTabBookTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXTextField", _p_FXTextFieldTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXArrowButton", _p_FXArrowButtonTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXGroupBox", _p_FXGroupBoxTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXShell", _p_FXShellTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXStatusBar", _p_FXStatusBarTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXScrollArea", _p_FXScrollAreaTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXPopup", _p_FXPopupTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXRootWindow", _p_FXRootWindowTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXScrollWindow", _p_FXScrollWindowTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXWindow", 0, 0, 0, 0, 0, 0},{"_p_FXTopWindow", _p_FXTopWindowTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXMainWindow", _p_FXMainWindowTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXSplashWindow", _p_FXSplashWindowTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXScrollCorner", _p_FXScrollCornerTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXRuler", _p_FXRulerTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXCanvas", _p_FXCanvasTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXComboBox", _p_FXComboBoxTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXVerticalSeparator", _p_FXVerticalSeparatorTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXHorizontalSeparator", _p_FXHorizontalSeparatorTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXSeparator", _p_FXSeparatorTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXStatusLine", _p_FXStatusLineTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXHorizontalFrame", _p_FXHorizontalFrameTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXVerticalFrame", _p_FXVerticalFrameTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FX4Splitter", _p_FX4SplitterTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXSplitter", _p_FXSplitterTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXRealSpinner", _p_FXRealSpinnerTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXSpinner", _p_FXSpinnerTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXPacker", _p_FXPackerTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXScrollBar", _p_FXScrollBarTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXColorWheel", _p_FXColorWheelTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXBitmapFrame", _p_FXBitmapFrameTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXGradientBar", _p_FXGradientBarTo_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_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_FXSwitcher", _p_FXSwitcherTo_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_FXDockTitle", _p_FXDockTitleTo_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_FXShutterItem", _p_FXShutterItemTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXMatrix", _p_FXMatrixTo_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}};
11066
+ static swig_type_info _swigt__p_FXWindow[] = {{"_p_FXWindow", 0, "FXWindow *", 0, 0, 0, 0},{"_p_FXDriveBox", _p_FXDriveBoxTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXDial", _p_FXDialTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXToolBar", _p_FXToolBarTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXComposite", _p_FXCompositeTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXToolTip", _p_FXToolTipTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXTabBook", _p_FXTabBookTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXTextField", _p_FXTextFieldTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXArrowButton", _p_FXArrowButtonTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXGroupBox", _p_FXGroupBoxTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXShell", _p_FXShellTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXStatusBar", _p_FXStatusBarTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXScrollArea", _p_FXScrollAreaTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXPopup", _p_FXPopupTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXRootWindow", _p_FXRootWindowTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXScrollWindow", _p_FXScrollWindowTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXWindow", 0, 0, 0, 0, 0, 0},{"_p_FXTopWindow", _p_FXTopWindowTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXMainWindow", _p_FXMainWindowTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXSplashWindow", _p_FXSplashWindowTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXScrollCorner", _p_FXScrollCornerTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXRuler", _p_FXRulerTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXCanvas", _p_FXCanvasTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXComboBox", _p_FXComboBoxTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXVerticalSeparator", _p_FXVerticalSeparatorTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXHorizontalSeparator", _p_FXHorizontalSeparatorTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXSeparator", _p_FXSeparatorTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXStatusLine", _p_FXStatusLineTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXHorizontalFrame", _p_FXHorizontalFrameTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXVerticalFrame", _p_FXVerticalFrameTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FX4Splitter", _p_FX4SplitterTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXSplitter", _p_FXSplitterTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXRealSpinner", _p_FXRealSpinnerTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXSpinner", _p_FXSpinnerTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXPacker", _p_FXPackerTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXScrollBar", _p_FXScrollBarTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXColorWheel", _p_FXColorWheelTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXBitmapFrame", _p_FXBitmapFrameTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXDirBox", _p_FXDirBoxTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXDockHandler", _p_FXDockHandlerTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXToolBarGrip", _p_FXToolBarGripTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXImageFrame", _p_FXImageFrameTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXDragCorner", _p_FXDragCornerTo_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_FXSwitcher", _p_FXSwitcherTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXShutter", _p_FXShutterTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXKnob", _p_FXKnobTo_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_FXShutterItem", _p_FXShutterItemTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXMatrix", _p_FXMatrixTo_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_FXColorRing", _p_FXColorRingTo_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}};
10840
11067
  static swig_type_info _swigt__p_FXCanvas[] = {{"_p_FXCanvas", 0, "FXCanvas *", 0, 0, 0, 0},{"_p_FXCanvas", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
10841
11068
  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}};
10842
11069
  static swig_type_info _swigt__p_FXComboBox[] = {{"_p_FXComboBox", 0, "FXComboBox *", 0, 0, 0, 0},{"_p_FXComboBox", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
10843
11070
  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}};
10844
- 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_FXGradientBar", _p_FXGradientBarTo_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_FXPopup", _p_FXPopupTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXDrawable", _p_FXDrawableTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXFont", _p_FXFontTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXHeader", _p_FXHeaderTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FX4Splitter", _p_FX4SplitterTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXSplitter", _p_FXSplitterTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXSpring", _p_FXSpringTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXPacker", _p_FXPackerTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXTabBook", _p_FXTabBookTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXApp", _p_FXAppTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXImageFrame", _p_FXImageFrameTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXSeparator", _p_FXSeparatorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXHorizontalSeparator", _p_FXHorizontalSeparatorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXVerticalSeparator", _p_FXVerticalSeparatorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXProgressBar", _p_FXProgressBarTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXShutter", _p_FXShutterTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_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_FXListBox", _p_FXListBoxTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXTreeListBox", _p_FXTreeListBoxTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXCanvas", _p_FXCanvasTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXId", _p_FXIdTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXColorWheel", _p_FXColorWheelTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXDial", _p_FXDialTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXToolBarGrip", _p_FXToolBarGripTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXScrollBar", _p_FXScrollBarTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXVisual", _p_FXVisualTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXComboBox", _p_FXComboBoxTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXFrame", _p_FXFrameTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXDockTitle", _p_FXDockTitleTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FX7Segment", _p_FX7SegmentTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXStatusBar", _p_FXStatusBarTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXStringDict", _p_FXStringDictTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXDelegator", _p_FXDelegatorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXAccelTable", _p_FXAccelTableTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXObject", 0, 0, 0, 0, 0, 0},{"_p_FXCursor", _p_FXCursorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXCURCursor", _p_FXCURCursorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXGIFCursor", _p_FXGIFCursorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXRealSpinner", _p_FXRealSpinnerTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXSpinner", _p_FXSpinnerTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXStatusLine", _p_FXStatusLineTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXWindow", _p_FXWindowTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_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_FXSplashWindow", _p_FXSplashWindowTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXScrollWindow", _p_FXScrollWindowTo_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_FXFontSelector", _p_FXFontSelectorTo_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_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}};
11071
+ 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_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_FXTranslator", _p_FXTranslatorTo_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_FXKnob", _p_FXKnobTo_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_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_FXColorRing", _p_FXColorRingTo_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_FXListBox", _p_FXListBoxTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXTreeListBox", _p_FXTreeListBoxTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXCanvas", _p_FXCanvasTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXId", _p_FXIdTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXColorWheel", _p_FXColorWheelTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXDial", _p_FXDialTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXToolBarGrip", _p_FXToolBarGripTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXScrollBar", _p_FXScrollBarTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXVisual", _p_FXVisualTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXComboBox", _p_FXComboBoxTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXFrame", _p_FXFrameTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FX7Segment", _p_FX7SegmentTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXStatusBar", _p_FXStatusBarTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXStringDict", _p_FXStringDictTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXDelegator", _p_FXDelegatorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXAccelTable", _p_FXAccelTableTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXObject", 0, 0, 0, 0, 0, 0},{"_p_FXCursor", _p_FXCursorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXCURCursor", _p_FXCURCursorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXGIFCursor", _p_FXGIFCursorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXRealSpinner", _p_FXRealSpinnerTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXSpinner", _p_FXSpinnerTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXStatusLine", _p_FXStatusLineTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXWindow", _p_FXWindowTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_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_FXSplashWindow", _p_FXSplashWindowTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXScrollWindow", _p_FXScrollWindowTo_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_FXFontSelector", _p_FXFontSelectorTo_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_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}};
10845
11072
  static swig_type_info _swigt__p_FXRealSpinner[] = {{"_p_FXRealSpinner", 0, "FXRealSpinner *", 0, 0, 0, 0},{"_p_FXRealSpinner", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
10846
11073
  static swig_type_info _swigt__p_FXSpinner[] = {{"_p_FXSpinner", 0, "FXSpinner *", 0, 0, 0, 0},{"_p_FXSpinner", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
10847
11074
  static swig_type_info _swigt__p_FXPacker[] = {{"_p_FXPacker", 0, "FXPacker *", 0, 0, 0, 0},{"_p_FXToolBar", _p_FXToolBarTo_p_FXPacker, 0, 0, 0, 0, 0},{"_p_FXDockSite", _p_FXDockSiteTo_p_FXPacker, 0, 0, 0, 0, 0},{"_p_FXListBox", _p_FXListBoxTo_p_FXPacker, 0, 0, 0, 0, 0},{"_p_FXTreeListBox", _p_FXTreeListBoxTo_p_FXPacker, 0, 0, 0, 0, 0},{"_p_FXComboBox", _p_FXComboBoxTo_p_FXPacker, 0, 0, 0, 0, 0},{"_p_FXShutterItem", _p_FXShutterItemTo_p_FXPacker, 0, 0, 0, 0, 0},{"_p_FXDockBar", _p_FXDockBarTo_p_FXPacker, 0, 0, 0, 0, 0},{"_p_FXDirBox", _p_FXDirBoxTo_p_FXPacker, 0, 0, 0, 0, 0},{"_p_FXStatusBar", _p_FXStatusBarTo_p_FXPacker, 0, 0, 0, 0, 0},{"_p_FXTabBar", _p_FXTabBarTo_p_FXPacker, 0, 0, 0, 0, 0},{"_p_FXTabBook", _p_FXTabBookTo_p_FXPacker, 0, 0, 0, 0, 0},{"_p_FXGroupBox", _p_FXGroupBoxTo_p_FXPacker, 0, 0, 0, 0, 0},{"_p_FXPacker", 0, 0, 0, 0, 0, 0},{"_p_FXShutter", _p_FXShutterTo_p_FXPacker, 0, 0, 0, 0, 0},{"_p_FXVerticalFrame", _p_FXVerticalFrameTo_p_FXPacker, 0, 0, 0, 0, 0},{"_p_FXHorizontalFrame", _p_FXHorizontalFrameTo_p_FXPacker, 0, 0, 0, 0, 0},{"_p_FXRealSpinner", _p_FXRealSpinnerTo_p_FXPacker, 0, 0, 0, 0, 0},{"_p_FXSpinner", _p_FXSpinnerTo_p_FXPacker, 0, 0, 0, 0, 0},{"_p_FXMatrix", _p_FXMatrixTo_p_FXPacker, 0, 0, 0, 0, 0},{"_p_FXSpring", _p_FXSpringTo_p_FXPacker, 0, 0, 0, 0, 0},{"_p_FXDirSelector", _p_FXDirSelectorTo_p_FXPacker, 0, 0, 0, 0, 0},{"_p_FXFileSelector", _p_FXFileSelectorTo_p_FXPacker, 0, 0, 0, 0, 0},{"_p_FXColorSelector", _p_FXColorSelectorTo_p_FXPacker, 0, 0, 0, 0, 0},{"_p_FXFontSelector", _p_FXFontSelectorTo_p_FXPacker, 0, 0, 0, 0, 0},{"_p_FXDriveBox", _p_FXDriveBoxTo_p_FXPacker, 0, 0, 0, 0, 0},{"_p_FXSwitcher", _p_FXSwitcherTo_p_FXPacker, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
10848
11075
  static swig_type_info _swigt__p_FXScrollBar[] = {{"_p_FXScrollBar", 0, "FXScrollBar *", 0, 0, 0, 0},{"_p_FXScrollBar", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
10849
- static swig_type_info _swigt__p_FXDockHandler[] = {{"_p_FXDockHandler", 0, "FXDockHandler *", 0, 0, 0, 0},{"_p_FXToolBarGrip", _p_FXToolBarGripTo_p_FXDockHandler, 0, 0, 0, 0, 0},{"_p_FXDockHandler", 0, 0, 0, 0, 0, 0},{"_p_FXDockTitle", _p_FXDockTitleTo_p_FXDockHandler, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
11076
+ static swig_type_info _swigt__p_FXDockHandler[] = {{"_p_FXDockHandler", 0, "FXDockHandler *", 0, 0, 0, 0},{"_p_FXToolBarGrip", _p_FXToolBarGripTo_p_FXDockHandler, 0, 0, 0, 0, 0},{"_p_FXDockHandler", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
10850
11077
  static swig_type_info _swigt__p_FXDirBox[] = {{"_p_FXDirBox", 0, "FXDirBox *", 0, 0, 0, 0},{"_p_FXDirBox", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
10851
11078
  static swig_type_info _swigt__p_FXToolBarGrip[] = {{"_p_FXToolBarGrip", 0, "FXToolBarGrip *", 0, 0, 0, 0},{"_p_FXToolBarGrip", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
10852
11079
  static swig_type_info _swigt__p_FXDragCorner[] = {{"_p_FXDragCorner", 0, "FXDragCorner *", 0, 0, 0, 0},{"_p_FXDragCorner", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
@@ -10855,19 +11082,19 @@ static swig_type_info _swigt__p_FXDirSelector[] = {{"_p_FXDirSelector", 0, "FXDi
10855
11082
  static swig_type_info _swigt__p_FXFileSelector[] = {{"_p_FXFileSelector", 0, "FXFileSelector *", 0, 0, 0, 0},{"_p_FXFileSelector", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
10856
11083
  static swig_type_info _swigt__p_FXColorSelector[] = {{"_p_FXColorSelector", 0, "FXColorSelector *", 0, 0, 0, 0},{"_p_FXColorSelector", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
10857
11084
  static swig_type_info _swigt__p_FXFontSelector[] = {{"_p_FXFontSelector", 0, "FXFontSelector *", 0, 0, 0, 0},{"_p_FXFontSelector", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
10858
- static swig_type_info _swigt__p_FXDrawable[] = {{"_p_FXDrawable", 0, "FXDrawable *", 0, 0, 0, 0},{"_p_FXDriveBox", _p_FXDriveBoxTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXDial", _p_FXDialTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXToolBar", _p_FXToolBarTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXComposite", _p_FXCompositeTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXToolTip", _p_FXToolTipTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXTabBook", _p_FXTabBookTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXTextField", _p_FXTextFieldTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXArrowButton", _p_FXArrowButtonTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXGroupBox", _p_FXGroupBoxTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXShell", _p_FXShellTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXStatusBar", _p_FXStatusBarTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXScrollArea", _p_FXScrollAreaTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXPopup", _p_FXPopupTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXRootWindow", _p_FXRootWindowTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXScrollWindow", _p_FXScrollWindowTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXTopWindow", _p_FXTopWindowTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXMainWindow", _p_FXMainWindowTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXSplashWindow", _p_FXSplashWindowTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXScrollCorner", _p_FXScrollCornerTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXWindow", _p_FXWindowTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXRuler", _p_FXRulerTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXCanvas", _p_FXCanvasTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXComboBox", _p_FXComboBoxTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXVerticalSeparator", _p_FXVerticalSeparatorTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXHorizontalSeparator", _p_FXHorizontalSeparatorTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXSeparator", _p_FXSeparatorTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXStatusLine", _p_FXStatusLineTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXHorizontalFrame", _p_FXHorizontalFrameTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXVerticalFrame", _p_FXVerticalFrameTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FX4Splitter", _p_FX4SplitterTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXSplitter", _p_FXSplitterTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXRealSpinner", _p_FXRealSpinnerTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXSpinner", _p_FXSpinnerTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXPacker", _p_FXPackerTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXScrollBar", _p_FXScrollBarTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXColorWheel", _p_FXColorWheelTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXBitmapFrame", _p_FXBitmapFrameTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXGradientBar", _p_FXGradientBarTo_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_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_FXSwitcher", _p_FXSwitcherTo_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_FXDockTitle", _p_FXDockTitleTo_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_FXShutterItem", _p_FXShutterItemTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXMatrix", _p_FXMatrixTo_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}};
11085
+ static swig_type_info _swigt__p_FXDrawable[] = {{"_p_FXDrawable", 0, "FXDrawable *", 0, 0, 0, 0},{"_p_FXDriveBox", _p_FXDriveBoxTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXDial", _p_FXDialTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXToolBar", _p_FXToolBarTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXComposite", _p_FXCompositeTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXToolTip", _p_FXToolTipTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXTabBook", _p_FXTabBookTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXTextField", _p_FXTextFieldTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXArrowButton", _p_FXArrowButtonTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXGroupBox", _p_FXGroupBoxTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXShell", _p_FXShellTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXStatusBar", _p_FXStatusBarTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXScrollArea", _p_FXScrollAreaTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXPopup", _p_FXPopupTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXRootWindow", _p_FXRootWindowTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXScrollWindow", _p_FXScrollWindowTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXTopWindow", _p_FXTopWindowTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXMainWindow", _p_FXMainWindowTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXSplashWindow", _p_FXSplashWindowTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXScrollCorner", _p_FXScrollCornerTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXWindow", _p_FXWindowTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXRuler", _p_FXRulerTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXCanvas", _p_FXCanvasTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXComboBox", _p_FXComboBoxTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXVerticalSeparator", _p_FXVerticalSeparatorTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXHorizontalSeparator", _p_FXHorizontalSeparatorTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXSeparator", _p_FXSeparatorTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXStatusLine", _p_FXStatusLineTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXHorizontalFrame", _p_FXHorizontalFrameTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXVerticalFrame", _p_FXVerticalFrameTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FX4Splitter", _p_FX4SplitterTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXSplitter", _p_FXSplitterTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXRealSpinner", _p_FXRealSpinnerTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXSpinner", _p_FXSpinnerTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXPacker", _p_FXPackerTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXScrollBar", _p_FXScrollBarTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXColorWheel", _p_FXColorWheelTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXBitmapFrame", _p_FXBitmapFrameTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXDirBox", _p_FXDirBoxTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXDockHandler", _p_FXDockHandlerTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXToolBarGrip", _p_FXToolBarGripTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXImageFrame", _p_FXImageFrameTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXDragCorner", _p_FXDragCornerTo_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_FXSwitcher", _p_FXSwitcherTo_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_FXKnob", _p_FXKnobTo_p_FXDrawable, 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_FXShutterItem", _p_FXShutterItemTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXMatrix", _p_FXMatrixTo_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_FXColorRing", _p_FXColorRingTo_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}};
10859
11086
  static swig_type_info _swigt__p_FXDockSite[] = {{"_p_FXDockSite", 0, "FXDockSite *", 0, 0, 0, 0},{"_p_FXDockSite", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
10860
- static swig_type_info _swigt__p_FXDockTitle[] = {{"_p_FXDockTitle", 0, "FXDockTitle *", 0, 0, 0, 0},{"_p_FXDockTitle", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
10861
11087
  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}};
10862
11088
  static swig_type_info _swigt__p_FXTreeListBox[] = {{"_p_FXTreeListBox", 0, "FXTreeListBox *", 0, 0, 0, 0},{"_p_FXTreeListBox", 0, 0, 0, 0, 0, 0},{"_p_FXDirBox", _p_FXDirBoxTo_p_FXTreeListBox, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
10863
11089
  static swig_type_info _swigt__p_FXListBox[] = {{"_p_FXListBox", 0, "FXListBox *", 0, 0, 0, 0},{"_p_FXDriveBox", _p_FXDriveBoxTo_p_FXListBox, 0, 0, 0, 0, 0},{"_p_FXListBox", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
10864
11090
  static swig_type_info _swigt__p_FXFontDesc[] = {{"_p_FXFontDesc", 0, "FXFontDesc *", 0, 0, 0, 0},{"_p_FXFontDesc", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
10865
11091
  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}};
10866
11092
  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}};
11093
+ static swig_type_info _swigt__p_FXListItem[] = {{"_p_FXListItem", 0, "FXListItem *", 0, 0, 0, 0},{"_p_FXListItem", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
10867
11094
  static swig_type_info _swigt__p_FXDockBar[] = {{"_p_FXDockBar", 0, "FXDockBar *", 0, 0, 0, 0},{"_p_FXDockBar", 0, 0, 0, 0, 0, 0},{"_p_FXToolBar", _p_FXToolBarTo_p_FXDockBar, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
10868
11095
  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}};
10869
11096
  static swig_type_info _swigt__p_FXTabBar[] = {{"_p_FXTabBar", 0, "FXTabBar *", 0, 0, 0, 0},{"_p_FXTabBook", _p_FXTabBookTo_p_FXTabBar, 0, 0, 0, 0, 0},{"_p_FXTabBar", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
10870
- static swig_type_info _swigt__p_FXFrame[] = {{"_p_FXFrame", 0, "FXFrame *", 0, 0, 0, 0},{"_p_FXToolBarTab", _p_FXToolBarTabTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXFrame", 0, 0, 0, 0, 0, 0},{"_p_FXColorBar", _p_FXColorBarTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXBitmapFrame", _p_FXBitmapFrameTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXRuler", _p_FXRulerTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXArrowButton", _p_FXArrowButtonTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXColorWheel", _p_FXColorWheelTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXProgressBar", _p_FXProgressBarTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXColorWell", _p_FXColorWellTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXGradientBar", _p_FXGradientBarTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXStatusLine", _p_FXStatusLineTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXSeparator", _p_FXSeparatorTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXVerticalSeparator", _p_FXVerticalSeparatorTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXHorizontalSeparator", _p_FXHorizontalSeparatorTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXDockTitle", _p_FXDockTitleTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXTextField", _p_FXTextFieldTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXDockHandler", _p_FXDockHandlerTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXHeader", _p_FXHeaderTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXImageFrame", _p_FXImageFrameTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXToolBarGrip", _p_FXToolBarGripTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXSlider", _p_FXSliderTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXRealSlider", _p_FXRealSliderTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FX7Segment", _p_FX7SegmentTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXDial", _p_FXDialTo_p_FXFrame, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
11097
+ static swig_type_info _swigt__p_FXFrame[] = {{"_p_FXFrame", 0, "FXFrame *", 0, 0, 0, 0},{"_p_FXToolBarTab", _p_FXToolBarTabTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXFrame", 0, 0, 0, 0, 0, 0},{"_p_FXColorRing", _p_FXColorRingTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXColorBar", _p_FXColorBarTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXBitmapFrame", _p_FXBitmapFrameTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXRuler", _p_FXRulerTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXArrowButton", _p_FXArrowButtonTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXColorWheel", _p_FXColorWheelTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXProgressBar", _p_FXProgressBarTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXColorWell", _p_FXColorWellTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXStatusLine", _p_FXStatusLineTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXVerticalSeparator", _p_FXVerticalSeparatorTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXHorizontalSeparator", _p_FXHorizontalSeparatorTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXSeparator", _p_FXSeparatorTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXTextField", _p_FXTextFieldTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXDockHandler", _p_FXDockHandlerTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXKnob", _p_FXKnobTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXHeader", _p_FXHeaderTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXImageFrame", _p_FXImageFrameTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXToolBarGrip", _p_FXToolBarGripTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXSlider", _p_FXSliderTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXRealSlider", _p_FXRealSliderTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FX7Segment", _p_FX7SegmentTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXDial", _p_FXDialTo_p_FXFrame, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
10871
11098
  static swig_type_info _swigt__p_FX7Segment[] = {{"_p_FX7Segment", 0, "FX7Segment *", 0, 0, 0, 0},{"_p_FX7Segment", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
10872
11099
  static swig_type_info _swigt__p_FXImageView[] = {{"_p_FXImageView", 0, "FXImageView *", 0, 0, 0, 0},{"_p_FXImageView", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
10873
11100
  static swig_type_info _swigt__p_FXButton[] = {{"_p_FXButton", 0, "FXButton *", 0, 0, 0, 0},{"_p_FXButton", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
@@ -10907,13 +11134,13 @@ _swigt__p_FXColorSelector,
10907
11134
  _swigt__p_FXFontSelector,
10908
11135
  _swigt__p_FXDrawable,
10909
11136
  _swigt__p_FXDockSite,
10910
- _swigt__p_FXDockTitle,
10911
11137
  _swigt__p_FXStream,
10912
11138
  _swigt__p_FXTreeListBox,
10913
11139
  _swigt__p_FXListBox,
10914
11140
  _swigt__p_FXFontDesc,
10915
11141
  _swigt__p_FXApp,
10916
11142
  _swigt__p_FXRegion,
11143
+ _swigt__p_FXListItem,
10917
11144
  _swigt__p_FXDockBar,
10918
11145
  _swigt__p_FXFont,
10919
11146
  _swigt__p_FXTabBar,
@@ -10957,20 +11184,30 @@ SWIGEXPORT(void) Init_ui(void) {
10957
11184
  rb_define_method(cFX7Segment.klass, "onCmdGetIntValue", VALUEFUNC(_wrap_FX7Segment_onCmdGetIntValue), -1);
10958
11185
  rb_define_method(cFX7Segment.klass, "onCmdGetRealValue", VALUEFUNC(_wrap_FX7Segment_onCmdGetRealValue), -1);
10959
11186
  rb_define_method(cFX7Segment.klass, "onCmdGetStringValue", VALUEFUNC(_wrap_FX7Segment_onCmdGetStringValue), -1);
10960
- rb_define_method(cFX7Segment.klass, "setText", VALUEFUNC(_wrap_FX7Segment_setText), -1);
10961
- rb_define_method(cFX7Segment.klass, "getText", VALUEFUNC(_wrap_FX7Segment_getText), -1);
10962
- rb_define_method(cFX7Segment.klass, "setTextColor", VALUEFUNC(_wrap_FX7Segment_setTextColor), -1);
10963
- rb_define_method(cFX7Segment.klass, "getTextColor", VALUEFUNC(_wrap_FX7Segment_getTextColor), -1);
10964
- rb_define_method(cFX7Segment.klass, "setCellWidth", VALUEFUNC(_wrap_FX7Segment_setCellWidth), -1);
10965
- rb_define_method(cFX7Segment.klass, "getCellWidth", VALUEFUNC(_wrap_FX7Segment_getCellWidth), -1);
10966
- rb_define_method(cFX7Segment.klass, "setCellHeight", VALUEFUNC(_wrap_FX7Segment_setCellHeight), -1);
10967
- rb_define_method(cFX7Segment.klass, "getCellHeight", VALUEFUNC(_wrap_FX7Segment_getCellHeight), -1);
10968
- rb_define_method(cFX7Segment.klass, "setThickness", VALUEFUNC(_wrap_FX7Segment_setThickness), -1);
10969
- rb_define_method(cFX7Segment.klass, "getThickness", VALUEFUNC(_wrap_FX7Segment_getThickness), -1);
11187
+ rb_define_method(cFX7Segment.klass, "onCmdSetHelp", VALUEFUNC(_wrap_FX7Segment_onCmdSetHelp), -1);
11188
+ rb_define_method(cFX7Segment.klass, "onCmdGetHelp", VALUEFUNC(_wrap_FX7Segment_onCmdGetHelp), -1);
11189
+ rb_define_method(cFX7Segment.klass, "onCmdSetTip", VALUEFUNC(_wrap_FX7Segment_onCmdSetTip), -1);
11190
+ rb_define_method(cFX7Segment.klass, "onCmdGetTip", VALUEFUNC(_wrap_FX7Segment_onCmdGetTip), -1);
11191
+ rb_define_method(cFX7Segment.klass, "onQueryHelp", VALUEFUNC(_wrap_FX7Segment_onQueryHelp), -1);
11192
+ rb_define_method(cFX7Segment.klass, "onQueryTip", VALUEFUNC(_wrap_FX7Segment_onQueryTip), -1);
11193
+ rb_define_method(cFX7Segment.klass, "text=", VALUEFUNC(_wrap_FX7Segment_texte___), -1);
11194
+ rb_define_method(cFX7Segment.klass, "text", VALUEFUNC(_wrap_FX7Segment_text), -1);
11195
+ rb_define_method(cFX7Segment.klass, "textColor=", VALUEFUNC(_wrap_FX7Segment_textColore___), -1);
11196
+ rb_define_method(cFX7Segment.klass, "textColor", VALUEFUNC(_wrap_FX7Segment_textColor), -1);
11197
+ rb_define_method(cFX7Segment.klass, "cellWidth=", VALUEFUNC(_wrap_FX7Segment_cellWidthe___), -1);
11198
+ rb_define_method(cFX7Segment.klass, "cellWidth", VALUEFUNC(_wrap_FX7Segment_cellWidth), -1);
11199
+ rb_define_method(cFX7Segment.klass, "cellHeight=", VALUEFUNC(_wrap_FX7Segment_cellHeighte___), -1);
11200
+ rb_define_method(cFX7Segment.klass, "cellHeight", VALUEFUNC(_wrap_FX7Segment_cellHeight), -1);
11201
+ rb_define_method(cFX7Segment.klass, "thickness=", VALUEFUNC(_wrap_FX7Segment_thicknesse___), -1);
11202
+ rb_define_method(cFX7Segment.klass, "thickness", VALUEFUNC(_wrap_FX7Segment_thickness), -1);
10970
11203
  rb_define_method(cFX7Segment.klass, "set7SegmentStyle", VALUEFUNC(_wrap_FX7Segment_set7SegmentStyle), -1);
10971
11204
  rb_define_method(cFX7Segment.klass, "get7SegmentStyle", VALUEFUNC(_wrap_FX7Segment_get7SegmentStyle), -1);
10972
- rb_define_method(cFX7Segment.klass, "setJustify", VALUEFUNC(_wrap_FX7Segment_setJustify), -1);
10973
- rb_define_method(cFX7Segment.klass, "getJustify", VALUEFUNC(_wrap_FX7Segment_getJustify), -1);
11205
+ rb_define_method(cFX7Segment.klass, "justify=", VALUEFUNC(_wrap_FX7Segment_justifye___), -1);
11206
+ rb_define_method(cFX7Segment.klass, "justify", VALUEFUNC(_wrap_FX7Segment_justify), -1);
11207
+ rb_define_method(cFX7Segment.klass, "helpText=", VALUEFUNC(_wrap_FX7Segment_helpTexte___), -1);
11208
+ rb_define_method(cFX7Segment.klass, "helpText", VALUEFUNC(_wrap_FX7Segment_helpText), -1);
11209
+ rb_define_method(cFX7Segment.klass, "tipText=", VALUEFUNC(_wrap_FX7Segment_tipTexte___), -1);
11210
+ rb_define_method(cFX7Segment.klass, "tipText", VALUEFUNC(_wrap_FX7Segment_tipText), -1);
10974
11211
  rb_define_method(cFX7Segment.klass, "save", VALUEFUNC(_wrap_FX7Segment_save), -1);
10975
11212
  rb_define_method(cFX7Segment.klass, "load", VALUEFUNC(_wrap_FX7Segment_load), -1);
10976
11213
  rb_define_method(cFX7Segment.klass, "create", VALUEFUNC(_wrap_FX7Segment_create), -1);
@@ -11001,6 +11238,9 @@ SWIGEXPORT(void) Init_ui(void) {
11001
11238
  rb_define_method(cFX7Segment.klass, "contains", VALUEFUNC(_wrap_FX7Segment_contains), -1);
11002
11239
  rb_define_method(cFX7Segment.klass, "doesSaveUnder", VALUEFUNC(_wrap_FX7Segment_doesSaveUnder), -1);
11003
11240
  rb_define_method(cFX7Segment.klass, "setBackColor", VALUEFUNC(_wrap_FX7Segment_setBackColor), -1);
11241
+ rb_define_method(cFX7Segment.klass, "tr", VALUEFUNC(_wrap_FX7Segment_tr), -1);
11242
+ rb_define_method(cFX7Segment.klass, "dropEnable", VALUEFUNC(_wrap_FX7Segment_dropEnable), -1);
11243
+ rb_define_method(cFX7Segment.klass, "dropDisable", VALUEFUNC(_wrap_FX7Segment_dropDisable), -1);
11004
11244
  rb_define_method(cFX7Segment.klass, "setShape", VALUEFUNC(_wrap_FX7Segment_setShape), -1);
11005
11245
  rb_define_method(cFX7Segment.klass, "clearShape", VALUEFUNC(_wrap_FX7Segment_clearShape), -1);
11006
11246
  cFX7Segment.mark = (void (*)(void *)) FXRb7Segment::markfunc;
@@ -11035,7 +11275,9 @@ SWIGEXPORT(void) Init_ui(void) {
11035
11275
  rb_define_const(cFXSpinner.klass,"ID_ENTRY", INT2NUM(FXSpinner::ID_ENTRY));
11036
11276
  rb_define_const(cFXSpinner.klass,"ID_LAST", INT2NUM(FXSpinner::ID_LAST));
11037
11277
  rb_define_method(cFXSpinner.klass, "increment", VALUEFUNC(_wrap_FXSpinner_increment), -1);
11278
+ rb_define_method(cFXSpinner.klass, "incrementByAmount", VALUEFUNC(_wrap_FXSpinner_incrementByAmount), -1);
11038
11279
  rb_define_method(cFXSpinner.klass, "decrement", VALUEFUNC(_wrap_FXSpinner_decrement), -1);
11280
+ rb_define_method(cFXSpinner.klass, "decrementByAmount", VALUEFUNC(_wrap_FXSpinner_decrementByAmount), -1);
11039
11281
  rb_define_method(cFXSpinner.klass, "isCyclic", VALUEFUNC(_wrap_FXSpinner_isCyclic), -1);
11040
11282
  rb_define_method(cFXSpinner.klass, "setCyclic", VALUEFUNC(_wrap_FXSpinner_setCyclic), -1);
11041
11283
  rb_define_method(cFXSpinner.klass, "isTextVisible", VALUEFUNC(_wrap_FXSpinner_isTextVisible), -1);
@@ -11099,6 +11341,9 @@ SWIGEXPORT(void) Init_ui(void) {
11099
11341
  rb_define_method(cFXSpinner.klass, "contains", VALUEFUNC(_wrap_FXSpinner_contains), -1);
11100
11342
  rb_define_method(cFXSpinner.klass, "doesSaveUnder", VALUEFUNC(_wrap_FXSpinner_doesSaveUnder), -1);
11101
11343
  rb_define_method(cFXSpinner.klass, "setBackColor", VALUEFUNC(_wrap_FXSpinner_setBackColor), -1);
11344
+ rb_define_method(cFXSpinner.klass, "tr", VALUEFUNC(_wrap_FXSpinner_tr), -1);
11345
+ rb_define_method(cFXSpinner.klass, "dropEnable", VALUEFUNC(_wrap_FXSpinner_dropEnable), -1);
11346
+ rb_define_method(cFXSpinner.klass, "dropDisable", VALUEFUNC(_wrap_FXSpinner_dropDisable), -1);
11102
11347
  rb_define_method(cFXSpinner.klass, "setShape", VALUEFUNC(_wrap_FXSpinner_setShape), -1);
11103
11348
  rb_define_method(cFXSpinner.klass, "clearShape", VALUEFUNC(_wrap_FXSpinner_clearShape), -1);
11104
11349
  rb_define_method(cFXSpinner.klass, "setValue", VALUEFUNC(_wrap_FXSpinner_setValue), -1);
@@ -11139,7 +11384,9 @@ SWIGEXPORT(void) Init_ui(void) {
11139
11384
  rb_define_const(cFXRealSpinner.klass,"ID_ENTRY", INT2NUM(FXRealSpinner::ID_ENTRY));
11140
11385
  rb_define_const(cFXRealSpinner.klass,"ID_LAST", INT2NUM(FXRealSpinner::ID_LAST));
11141
11386
  rb_define_method(cFXRealSpinner.klass, "increment", VALUEFUNC(_wrap_FXRealSpinner_increment), -1);
11387
+ rb_define_method(cFXRealSpinner.klass, "incrementByAmount", VALUEFUNC(_wrap_FXRealSpinner_incrementByAmount), -1);
11142
11388
  rb_define_method(cFXRealSpinner.klass, "decrement", VALUEFUNC(_wrap_FXRealSpinner_decrement), -1);
11389
+ rb_define_method(cFXRealSpinner.klass, "decrementByAmount", VALUEFUNC(_wrap_FXRealSpinner_decrementByAmount), -1);
11143
11390
  rb_define_method(cFXRealSpinner.klass, "isCyclic", VALUEFUNC(_wrap_FXRealSpinner_isCyclic), -1);
11144
11391
  rb_define_method(cFXRealSpinner.klass, "setCyclic", VALUEFUNC(_wrap_FXRealSpinner_setCyclic), -1);
11145
11392
  rb_define_method(cFXRealSpinner.klass, "isTextVisible", VALUEFUNC(_wrap_FXRealSpinner_isTextVisible), -1);
@@ -11149,6 +11396,8 @@ SWIGEXPORT(void) Init_ui(void) {
11149
11396
  rb_define_method(cFXRealSpinner.klass, "getRange", VALUEFUNC(_wrap_FXRealSpinner_getRange), -1);
11150
11397
  rb_define_method(cFXRealSpinner.klass, "setIncrement", VALUEFUNC(_wrap_FXRealSpinner_setIncrement), -1);
11151
11398
  rb_define_method(cFXRealSpinner.klass, "getIncrement", VALUEFUNC(_wrap_FXRealSpinner_getIncrement), -1);
11399
+ rb_define_method(cFXRealSpinner.klass, "granularity=", VALUEFUNC(_wrap_FXRealSpinner_granularitye___), -1);
11400
+ rb_define_method(cFXRealSpinner.klass, "granularity", VALUEFUNC(_wrap_FXRealSpinner_granularity), -1);
11152
11401
  rb_define_method(cFXRealSpinner.klass, "setFont", VALUEFUNC(_wrap_FXRealSpinner_setFont), -1);
11153
11402
  rb_define_method(cFXRealSpinner.klass, "getFont", VALUEFUNC(_wrap_FXRealSpinner_getFont), -1);
11154
11403
  rb_define_method(cFXRealSpinner.klass, "setHelpText", VALUEFUNC(_wrap_FXRealSpinner_setHelpText), -1);
@@ -11203,6 +11452,9 @@ SWIGEXPORT(void) Init_ui(void) {
11203
11452
  rb_define_method(cFXRealSpinner.klass, "contains", VALUEFUNC(_wrap_FXRealSpinner_contains), -1);
11204
11453
  rb_define_method(cFXRealSpinner.klass, "doesSaveUnder", VALUEFUNC(_wrap_FXRealSpinner_doesSaveUnder), -1);
11205
11454
  rb_define_method(cFXRealSpinner.klass, "setBackColor", VALUEFUNC(_wrap_FXRealSpinner_setBackColor), -1);
11455
+ rb_define_method(cFXRealSpinner.klass, "tr", VALUEFUNC(_wrap_FXRealSpinner_tr), -1);
11456
+ rb_define_method(cFXRealSpinner.klass, "dropEnable", VALUEFUNC(_wrap_FXRealSpinner_dropEnable), -1);
11457
+ rb_define_method(cFXRealSpinner.klass, "dropDisable", VALUEFUNC(_wrap_FXRealSpinner_dropDisable), -1);
11206
11458
  rb_define_method(cFXRealSpinner.klass, "setShape", VALUEFUNC(_wrap_FXRealSpinner_setShape), -1);
11207
11459
  rb_define_method(cFXRealSpinner.klass, "clearShape", VALUEFUNC(_wrap_FXRealSpinner_clearShape), -1);
11208
11460
  rb_define_method(cFXRealSpinner.klass, "setValue", VALUEFUNC(_wrap_FXRealSpinner_setValue), -1);
@@ -11244,6 +11496,9 @@ SWIGEXPORT(void) Init_ui(void) {
11244
11496
  rb_define_method(cFXCanvas.klass, "contains", VALUEFUNC(_wrap_FXCanvas_contains), -1);
11245
11497
  rb_define_method(cFXCanvas.klass, "doesSaveUnder", VALUEFUNC(_wrap_FXCanvas_doesSaveUnder), -1);
11246
11498
  rb_define_method(cFXCanvas.klass, "setBackColor", VALUEFUNC(_wrap_FXCanvas_setBackColor), -1);
11499
+ rb_define_method(cFXCanvas.klass, "tr", VALUEFUNC(_wrap_FXCanvas_tr), -1);
11500
+ rb_define_method(cFXCanvas.klass, "dropEnable", VALUEFUNC(_wrap_FXCanvas_dropEnable), -1);
11501
+ rb_define_method(cFXCanvas.klass, "dropDisable", VALUEFUNC(_wrap_FXCanvas_dropDisable), -1);
11247
11502
  rb_define_method(cFXCanvas.klass, "setShape", VALUEFUNC(_wrap_FXCanvas_setShape), -1);
11248
11503
  rb_define_method(cFXCanvas.klass, "clearShape", VALUEFUNC(_wrap_FXCanvas_clearShape), -1);
11249
11504
  cFXCanvas.mark = (void (*)(void *)) FXRbCanvas::markfunc;
@@ -11304,6 +11559,9 @@ SWIGEXPORT(void) Init_ui(void) {
11304
11559
  rb_define_method(cFXToolTip.klass, "contains", VALUEFUNC(_wrap_FXToolTip_contains), -1);
11305
11560
  rb_define_method(cFXToolTip.klass, "doesSaveUnder", VALUEFUNC(_wrap_FXToolTip_doesSaveUnder), -1);
11306
11561
  rb_define_method(cFXToolTip.klass, "setBackColor", VALUEFUNC(_wrap_FXToolTip_setBackColor), -1);
11562
+ rb_define_method(cFXToolTip.klass, "tr", VALUEFUNC(_wrap_FXToolTip_tr), -1);
11563
+ rb_define_method(cFXToolTip.klass, "dropEnable", VALUEFUNC(_wrap_FXToolTip_dropEnable), -1);
11564
+ rb_define_method(cFXToolTip.klass, "dropDisable", VALUEFUNC(_wrap_FXToolTip_dropDisable), -1);
11307
11565
  rb_define_method(cFXToolTip.klass, "setShape", VALUEFUNC(_wrap_FXToolTip_setShape), -1);
11308
11566
  rb_define_method(cFXToolTip.klass, "clearShape", VALUEFUNC(_wrap_FXToolTip_clearShape), -1);
11309
11567
  cFXToolTip.mark = (void (*)(void *)) FXRbToolTip::markfunc;
@@ -11347,6 +11605,7 @@ SWIGEXPORT(void) Init_ui(void) {
11347
11605
  rb_define_const(cFXDockBar.klass,"ALLOW_VERTICAL", INT2NUM(FXDockBar::ALLOW_VERTICAL));
11348
11606
  rb_define_const(cFXDockBar.klass,"ALLOW_EVERYWHERE", INT2NUM(FXDockBar::ALLOW_EVERYWHERE));
11349
11607
  rb_define_method(cFXDockBar.klass, "docked?", VALUEFUNC(_wrap_FXDockBar_dockedq___), -1);
11608
+ rb_define_method(cFXDockBar.klass, "insideDock?", VALUEFUNC(_wrap_FXDockBar_insideDockq___), -1);
11350
11609
  rb_define_method(cFXDockBar.klass, "dryDock=", VALUEFUNC(_wrap_FXDockBar_dryDocke___), -1);
11351
11610
  rb_define_method(cFXDockBar.klass, "wetDock=", VALUEFUNC(_wrap_FXDockBar_wetDocke___), -1);
11352
11611
  rb_define_method(cFXDockBar.klass, "dryDock", VALUEFUNC(_wrap_FXDockBar_dryDock), -1);
@@ -11385,6 +11644,9 @@ SWIGEXPORT(void) Init_ui(void) {
11385
11644
  rb_define_method(cFXDockBar.klass, "contains", VALUEFUNC(_wrap_FXDockBar_contains), -1);
11386
11645
  rb_define_method(cFXDockBar.klass, "doesSaveUnder", VALUEFUNC(_wrap_FXDockBar_doesSaveUnder), -1);
11387
11646
  rb_define_method(cFXDockBar.klass, "setBackColor", VALUEFUNC(_wrap_FXDockBar_setBackColor), -1);
11647
+ rb_define_method(cFXDockBar.klass, "tr", VALUEFUNC(_wrap_FXDockBar_tr), -1);
11648
+ rb_define_method(cFXDockBar.klass, "dropEnable", VALUEFUNC(_wrap_FXDockBar_dropEnable), -1);
11649
+ rb_define_method(cFXDockBar.klass, "dropDisable", VALUEFUNC(_wrap_FXDockBar_dropDisable), -1);
11388
11650
  rb_define_method(cFXDockBar.klass, "setShape", VALUEFUNC(_wrap_FXDockBar_setShape), -1);
11389
11651
  rb_define_method(cFXDockBar.klass, "clearShape", VALUEFUNC(_wrap_FXDockBar_clearShape), -1);
11390
11652
  rb_define_method(cFXDockBar.klass, "dock", VALUEFUNC(_wrap_FXDockBar_dock), -1);
@@ -11433,6 +11695,9 @@ SWIGEXPORT(void) Init_ui(void) {
11433
11695
  rb_define_method(cFXToolBar.klass, "contains", VALUEFUNC(_wrap_FXToolBar_contains), -1);
11434
11696
  rb_define_method(cFXToolBar.klass, "doesSaveUnder", VALUEFUNC(_wrap_FXToolBar_doesSaveUnder), -1);
11435
11697
  rb_define_method(cFXToolBar.klass, "setBackColor", VALUEFUNC(_wrap_FXToolBar_setBackColor), -1);
11698
+ rb_define_method(cFXToolBar.klass, "tr", VALUEFUNC(_wrap_FXToolBar_tr), -1);
11699
+ rb_define_method(cFXToolBar.klass, "dropEnable", VALUEFUNC(_wrap_FXToolBar_dropEnable), -1);
11700
+ rb_define_method(cFXToolBar.klass, "dropDisable", VALUEFUNC(_wrap_FXToolBar_dropDisable), -1);
11436
11701
  rb_define_method(cFXToolBar.klass, "setShape", VALUEFUNC(_wrap_FXToolBar_setShape), -1);
11437
11702
  rb_define_method(cFXToolBar.klass, "clearShape", VALUEFUNC(_wrap_FXToolBar_clearShape), -1);
11438
11703
  rb_define_method(cFXToolBar.klass, "dock", VALUEFUNC(_wrap_FXToolBar_dock), -1);
@@ -11509,6 +11774,9 @@ SWIGEXPORT(void) Init_ui(void) {
11509
11774
  rb_define_method(cFXTabBar.klass, "contains", VALUEFUNC(_wrap_FXTabBar_contains), -1);
11510
11775
  rb_define_method(cFXTabBar.klass, "doesSaveUnder", VALUEFUNC(_wrap_FXTabBar_doesSaveUnder), -1);
11511
11776
  rb_define_method(cFXTabBar.klass, "setBackColor", VALUEFUNC(_wrap_FXTabBar_setBackColor), -1);
11777
+ rb_define_method(cFXTabBar.klass, "tr", VALUEFUNC(_wrap_FXTabBar_tr), -1);
11778
+ rb_define_method(cFXTabBar.klass, "dropEnable", VALUEFUNC(_wrap_FXTabBar_dropEnable), -1);
11779
+ rb_define_method(cFXTabBar.klass, "dropDisable", VALUEFUNC(_wrap_FXTabBar_dropDisable), -1);
11512
11780
  rb_define_method(cFXTabBar.klass, "setShape", VALUEFUNC(_wrap_FXTabBar_setShape), -1);
11513
11781
  rb_define_method(cFXTabBar.klass, "clearShape", VALUEFUNC(_wrap_FXTabBar_clearShape), -1);
11514
11782
  rb_define_method(cFXTabBar.klass, "setCurrent", VALUEFUNC(_wrap_FXTabBar_setCurrent), -1);
@@ -11560,6 +11828,9 @@ SWIGEXPORT(void) Init_ui(void) {
11560
11828
  rb_define_method(cFXTabBook.klass, "contains", VALUEFUNC(_wrap_FXTabBook_contains), -1);
11561
11829
  rb_define_method(cFXTabBook.klass, "doesSaveUnder", VALUEFUNC(_wrap_FXTabBook_doesSaveUnder), -1);
11562
11830
  rb_define_method(cFXTabBook.klass, "setBackColor", VALUEFUNC(_wrap_FXTabBook_setBackColor), -1);
11831
+ rb_define_method(cFXTabBook.klass, "tr", VALUEFUNC(_wrap_FXTabBook_tr), -1);
11832
+ rb_define_method(cFXTabBook.klass, "dropEnable", VALUEFUNC(_wrap_FXTabBook_dropEnable), -1);
11833
+ rb_define_method(cFXTabBook.klass, "dropDisable", VALUEFUNC(_wrap_FXTabBook_dropDisable), -1);
11563
11834
  rb_define_method(cFXTabBook.klass, "setShape", VALUEFUNC(_wrap_FXTabBook_setShape), -1);
11564
11835
  rb_define_method(cFXTabBook.klass, "clearShape", VALUEFUNC(_wrap_FXTabBook_clearShape), -1);
11565
11836
  rb_define_method(cFXTabBook.klass, "setCurrent", VALUEFUNC(_wrap_FXTabBook_setCurrent), -1);
@@ -11606,8 +11877,10 @@ SWIGEXPORT(void) Init_ui(void) {
11606
11877
  rb_define_method(cFXScrollBar.klass, "getShadowColor", VALUEFUNC(_wrap_FXScrollBar_getShadowColor), -1);
11607
11878
  rb_define_method(cFXScrollBar.klass, "getBorderColor", VALUEFUNC(_wrap_FXScrollBar_getBorderColor), -1);
11608
11879
  rb_define_method(cFXScrollBar.klass, "setBorderColor", VALUEFUNC(_wrap_FXScrollBar_setBorderColor), -1);
11609
- rb_define_method(cFXScrollBar.klass, "getScrollbarStyle", VALUEFUNC(_wrap_FXScrollBar_getScrollbarStyle), -1);
11610
- rb_define_method(cFXScrollBar.klass, "setScrollbarStyle", VALUEFUNC(_wrap_FXScrollBar_setScrollbarStyle), -1);
11880
+ rb_define_method(cFXScrollBar.klass, "getScrollBarStyle", VALUEFUNC(_wrap_FXScrollBar_getScrollBarStyle), -1);
11881
+ rb_define_method(cFXScrollBar.klass, "setScrollBarStyle", VALUEFUNC(_wrap_FXScrollBar_setScrollBarStyle), -1);
11882
+ rb_define_method(cFXScrollBar.klass, "barSize=", VALUEFUNC(_wrap_FXScrollBar_barSizee___), -1);
11883
+ rb_define_method(cFXScrollBar.klass, "barSize", VALUEFUNC(_wrap_FXScrollBar_barSize), -1);
11611
11884
  rb_define_method(cFXScrollBar.klass, "save", VALUEFUNC(_wrap_FXScrollBar_save), -1);
11612
11885
  rb_define_method(cFXScrollBar.klass, "load", VALUEFUNC(_wrap_FXScrollBar_load), -1);
11613
11886
  rb_define_method(cFXScrollBar.klass, "create", VALUEFUNC(_wrap_FXScrollBar_create), -1);
@@ -11638,6 +11911,9 @@ SWIGEXPORT(void) Init_ui(void) {
11638
11911
  rb_define_method(cFXScrollBar.klass, "contains", VALUEFUNC(_wrap_FXScrollBar_contains), -1);
11639
11912
  rb_define_method(cFXScrollBar.klass, "doesSaveUnder", VALUEFUNC(_wrap_FXScrollBar_doesSaveUnder), -1);
11640
11913
  rb_define_method(cFXScrollBar.klass, "setBackColor", VALUEFUNC(_wrap_FXScrollBar_setBackColor), -1);
11914
+ rb_define_method(cFXScrollBar.klass, "tr", VALUEFUNC(_wrap_FXScrollBar_tr), -1);
11915
+ rb_define_method(cFXScrollBar.klass, "dropEnable", VALUEFUNC(_wrap_FXScrollBar_dropEnable), -1);
11916
+ rb_define_method(cFXScrollBar.klass, "dropDisable", VALUEFUNC(_wrap_FXScrollBar_dropDisable), -1);
11641
11917
  rb_define_method(cFXScrollBar.klass, "setShape", VALUEFUNC(_wrap_FXScrollBar_setShape), -1);
11642
11918
  rb_define_method(cFXScrollBar.klass, "clearShape", VALUEFUNC(_wrap_FXScrollBar_clearShape), -1);
11643
11919
  cFXScrollBar.mark = (void (*)(void *)) FXRbScrollBar::markfunc;
@@ -11678,6 +11954,9 @@ SWIGEXPORT(void) Init_ui(void) {
11678
11954
  rb_define_method(cFXScrollCorner.klass, "contains", VALUEFUNC(_wrap_FXScrollCorner_contains), -1);
11679
11955
  rb_define_method(cFXScrollCorner.klass, "doesSaveUnder", VALUEFUNC(_wrap_FXScrollCorner_doesSaveUnder), -1);
11680
11956
  rb_define_method(cFXScrollCorner.klass, "setBackColor", VALUEFUNC(_wrap_FXScrollCorner_setBackColor), -1);
11957
+ rb_define_method(cFXScrollCorner.klass, "tr", VALUEFUNC(_wrap_FXScrollCorner_tr), -1);
11958
+ rb_define_method(cFXScrollCorner.klass, "dropEnable", VALUEFUNC(_wrap_FXScrollCorner_dropEnable), -1);
11959
+ rb_define_method(cFXScrollCorner.klass, "dropDisable", VALUEFUNC(_wrap_FXScrollCorner_dropDisable), -1);
11681
11960
  rb_define_method(cFXScrollCorner.klass, "setShape", VALUEFUNC(_wrap_FXScrollCorner_setShape), -1);
11682
11961
  rb_define_method(cFXScrollCorner.klass, "clearShape", VALUEFUNC(_wrap_FXScrollCorner_clearShape), -1);
11683
11962
  cFXScrollCorner.mark = (void (*)(void *)) FXRbScrollCorner::markfunc;
@@ -11698,6 +11977,7 @@ SWIGEXPORT(void) Init_ui(void) {
11698
11977
  rb_define_method(cFXComboBox.klass, "onFocusUp", VALUEFUNC(_wrap_FXComboBox_onFocusUp), -1);
11699
11978
  rb_define_method(cFXComboBox.klass, "onFocusDown", VALUEFUNC(_wrap_FXComboBox_onFocusDown), -1);
11700
11979
  rb_define_method(cFXComboBox.klass, "onFocusSelf", VALUEFUNC(_wrap_FXComboBox_onFocusSelf), -1);
11980
+ rb_define_method(cFXComboBox.klass, "onMouseWheel", VALUEFUNC(_wrap_FXComboBox_onMouseWheel), -1);
11701
11981
  rb_define_method(cFXComboBox.klass, "onTextButton", VALUEFUNC(_wrap_FXComboBox_onTextButton), -1);
11702
11982
  rb_define_method(cFXComboBox.klass, "onTextChanged", VALUEFUNC(_wrap_FXComboBox_onTextChanged), -1);
11703
11983
  rb_define_method(cFXComboBox.klass, "onTextCommand", VALUEFUNC(_wrap_FXComboBox_onTextCommand), -1);
@@ -11713,6 +11993,8 @@ SWIGEXPORT(void) Init_ui(void) {
11713
11993
  rb_define_method(cFXComboBox.klass, "getText", VALUEFUNC(_wrap_FXComboBox_getText), -1);
11714
11994
  rb_define_method(cFXComboBox.klass, "setNumColumns", VALUEFUNC(_wrap_FXComboBox_setNumColumns), -1);
11715
11995
  rb_define_method(cFXComboBox.klass, "getNumColumns", VALUEFUNC(_wrap_FXComboBox_getNumColumns), -1);
11996
+ rb_define_method(cFXComboBox.klass, "justify=", VALUEFUNC(_wrap_FXComboBox_justifye___), -1);
11997
+ rb_define_method(cFXComboBox.klass, "justify", VALUEFUNC(_wrap_FXComboBox_justify), -1);
11716
11998
  rb_define_method(cFXComboBox.klass, "getNumItems", VALUEFUNC(_wrap_FXComboBox_getNumItems), -1);
11717
11999
  rb_define_method(cFXComboBox.klass, "getNumVisible", VALUEFUNC(_wrap_FXComboBox_getNumVisible), -1);
11718
12000
  rb_define_method(cFXComboBox.klass, "setNumVisible", VALUEFUNC(_wrap_FXComboBox_setNumVisible), -1);
@@ -11781,6 +12063,9 @@ SWIGEXPORT(void) Init_ui(void) {
11781
12063
  rb_define_method(cFXComboBox.klass, "contains", VALUEFUNC(_wrap_FXComboBox_contains), -1);
11782
12064
  rb_define_method(cFXComboBox.klass, "doesSaveUnder", VALUEFUNC(_wrap_FXComboBox_doesSaveUnder), -1);
11783
12065
  rb_define_method(cFXComboBox.klass, "setBackColor", VALUEFUNC(_wrap_FXComboBox_setBackColor), -1);
12066
+ rb_define_method(cFXComboBox.klass, "tr", VALUEFUNC(_wrap_FXComboBox_tr), -1);
12067
+ rb_define_method(cFXComboBox.klass, "dropEnable", VALUEFUNC(_wrap_FXComboBox_dropEnable), -1);
12068
+ rb_define_method(cFXComboBox.klass, "dropDisable", VALUEFUNC(_wrap_FXComboBox_dropDisable), -1);
11784
12069
  rb_define_method(cFXComboBox.klass, "setShape", VALUEFUNC(_wrap_FXComboBox_setShape), -1);
11785
12070
  rb_define_method(cFXComboBox.klass, "clearShape", VALUEFUNC(_wrap_FXComboBox_clearShape), -1);
11786
12071
  cFXComboBox.mark = (void (*)(void *)) FXRbComboBox::markfunc;
@@ -11794,10 +12079,11 @@ SWIGEXPORT(void) Init_ui(void) {
11794
12079
  rb_define_method(cFXListBox.klass, "onFocusUp", VALUEFUNC(_wrap_FXListBox_onFocusUp), -1);
11795
12080
  rb_define_method(cFXListBox.klass, "onFocusDown", VALUEFUNC(_wrap_FXListBox_onFocusDown), -1);
11796
12081
  rb_define_method(cFXListBox.klass, "onFocusSelf", VALUEFUNC(_wrap_FXListBox_onFocusSelf), -1);
12082
+ rb_define_method(cFXListBox.klass, "onMouseWheel", VALUEFUNC(_wrap_FXListBox_onMouseWheel), -1);
11797
12083
  rb_define_method(cFXListBox.klass, "onFieldButton", VALUEFUNC(_wrap_FXListBox_onFieldButton), -1);
11798
12084
  rb_define_method(cFXListBox.klass, "onListUpdate", VALUEFUNC(_wrap_FXListBox_onListUpdate), -1);
11799
- rb_define_method(cFXListBox.klass, "onListChanged", VALUEFUNC(_wrap_FXListBox_onListChanged), -1);
11800
12085
  rb_define_method(cFXListBox.klass, "onListClicked", VALUEFUNC(_wrap_FXListBox_onListClicked), -1);
12086
+ rb_define_method(cFXListBox.klass, "onListChanged", VALUEFUNC(_wrap_FXListBox_onListChanged), -1);
11801
12087
  rb_define_method(cFXListBox.klass, "onCmdSetValue", VALUEFUNC(_wrap_FXListBox_onCmdSetValue), -1);
11802
12088
  rb_define_method(cFXListBox.klass, "onCmdGetIntValue", VALUEFUNC(_wrap_FXListBox_onCmdGetIntValue), -1);
11803
12089
  rb_define_method(cFXListBox.klass, "onCmdSetIntValue", VALUEFUNC(_wrap_FXListBox_onCmdSetIntValue), -1);
@@ -11817,6 +12103,7 @@ SWIGEXPORT(void) Init_ui(void) {
11817
12103
  rb_define_alias(cFXListBox.klass, "<<", "appendItem");
11818
12104
  rb_define_method(cFXListBox.klass, "prependItem", VALUEFUNC(_wrap_FXListBox_prependItem), -1);
11819
12105
  rb_define_method(cFXListBox.klass, "moveItem", VALUEFUNC(_wrap_FXListBox_moveItem), -1);
12106
+ rb_define_method(cFXListBox.klass, "extractItem", VALUEFUNC(_wrap_FXListBox_extractItem), -1);
11820
12107
  rb_define_method(cFXListBox.klass, "removeItem", VALUEFUNC(_wrap_FXListBox_removeItem), -1);
11821
12108
  rb_define_method(cFXListBox.klass, "clearItems", VALUEFUNC(_wrap_FXListBox_clearItems), -1);
11822
12109
  rb_define_method(cFXListBox.klass, "findItem", VALUEFUNC(_wrap_FXListBox_findItem), -1);
@@ -11872,6 +12159,9 @@ SWIGEXPORT(void) Init_ui(void) {
11872
12159
  rb_define_method(cFXListBox.klass, "contains", VALUEFUNC(_wrap_FXListBox_contains), -1);
11873
12160
  rb_define_method(cFXListBox.klass, "doesSaveUnder", VALUEFUNC(_wrap_FXListBox_doesSaveUnder), -1);
11874
12161
  rb_define_method(cFXListBox.klass, "setBackColor", VALUEFUNC(_wrap_FXListBox_setBackColor), -1);
12162
+ rb_define_method(cFXListBox.klass, "tr", VALUEFUNC(_wrap_FXListBox_tr), -1);
12163
+ rb_define_method(cFXListBox.klass, "dropEnable", VALUEFUNC(_wrap_FXListBox_dropEnable), -1);
12164
+ rb_define_method(cFXListBox.klass, "dropDisable", VALUEFUNC(_wrap_FXListBox_dropDisable), -1);
11875
12165
  rb_define_method(cFXListBox.klass, "setShape", VALUEFUNC(_wrap_FXListBox_setShape), -1);
11876
12166
  rb_define_method(cFXListBox.klass, "clearShape", VALUEFUNC(_wrap_FXListBox_clearShape), -1);
11877
12167
  rb_define_method(cFXListBox.klass, "setCurrentItem", VALUEFUNC(_wrap_FXListBox_setCurrentItem), -1);
@@ -11889,6 +12179,7 @@ SWIGEXPORT(void) Init_ui(void) {
11889
12179
  rb_define_method(cFXTreeListBox.klass, "onFocusUp", VALUEFUNC(_wrap_FXTreeListBox_onFocusUp), -1);
11890
12180
  rb_define_method(cFXTreeListBox.klass, "onFocusDown", VALUEFUNC(_wrap_FXTreeListBox_onFocusDown), -1);
11891
12181
  rb_define_method(cFXTreeListBox.klass, "onFocusSelf", VALUEFUNC(_wrap_FXTreeListBox_onFocusSelf), -1);
12182
+ rb_define_method(cFXTreeListBox.klass, "onMouseWheel", VALUEFUNC(_wrap_FXTreeListBox_onMouseWheel), -1);
11892
12183
  rb_define_method(cFXTreeListBox.klass, "onFieldButton", VALUEFUNC(_wrap_FXTreeListBox_onFieldButton), -1);
11893
12184
  rb_define_method(cFXTreeListBox.klass, "onTreeUpdate", VALUEFUNC(_wrap_FXTreeListBox_onTreeUpdate), -1);
11894
12185
  rb_define_method(cFXTreeListBox.klass, "onTreeChanged", VALUEFUNC(_wrap_FXTreeListBox_onTreeChanged), -1);
@@ -11909,6 +12200,7 @@ SWIGEXPORT(void) Init_ui(void) {
11909
12200
  rb_define_method(cFXTreeListBox.klass, "removeItems", VALUEFUNC(_wrap_FXTreeListBox_removeItems), -1);
11910
12201
  rb_define_method(cFXTreeListBox.klass, "clearItems", VALUEFUNC(_wrap_FXTreeListBox_clearItems), -1);
11911
12202
  rb_define_method(cFXTreeListBox.klass, "moveItem", VALUEFUNC(_wrap_FXTreeListBox_moveItem), -1);
12203
+ rb_define_method(cFXTreeListBox.klass, "extractItem", VALUEFUNC(_wrap_FXTreeListBox_extractItem), -1);
11912
12204
  rb_define_method(cFXTreeListBox.klass, "findItem", VALUEFUNC(_wrap_FXTreeListBox_findItem), -1);
11913
12205
  rb_define_method(cFXTreeListBox.klass, "findItemByData", VALUEFUNC(_wrap_FXTreeListBox_findItemByData), -1);
11914
12206
  rb_define_method(cFXTreeListBox.klass, "isItemCurrent", VALUEFUNC(_wrap_FXTreeListBox_isItemCurrent), -1);
@@ -11964,6 +12256,9 @@ SWIGEXPORT(void) Init_ui(void) {
11964
12256
  rb_define_method(cFXTreeListBox.klass, "contains", VALUEFUNC(_wrap_FXTreeListBox_contains), -1);
11965
12257
  rb_define_method(cFXTreeListBox.klass, "doesSaveUnder", VALUEFUNC(_wrap_FXTreeListBox_doesSaveUnder), -1);
11966
12258
  rb_define_method(cFXTreeListBox.klass, "setBackColor", VALUEFUNC(_wrap_FXTreeListBox_setBackColor), -1);
12259
+ rb_define_method(cFXTreeListBox.klass, "tr", VALUEFUNC(_wrap_FXTreeListBox_tr), -1);
12260
+ rb_define_method(cFXTreeListBox.klass, "dropEnable", VALUEFUNC(_wrap_FXTreeListBox_dropEnable), -1);
12261
+ rb_define_method(cFXTreeListBox.klass, "dropDisable", VALUEFUNC(_wrap_FXTreeListBox_dropDisable), -1);
11967
12262
  rb_define_method(cFXTreeListBox.klass, "setShape", VALUEFUNC(_wrap_FXTreeListBox_setShape), -1);
11968
12263
  rb_define_method(cFXTreeListBox.klass, "clearShape", VALUEFUNC(_wrap_FXTreeListBox_clearShape), -1);
11969
12264
  rb_define_method(cFXTreeListBox.klass, "setCurrentItem", VALUEFUNC(_wrap_FXTreeListBox_setCurrentItem), -1);
@@ -12023,6 +12318,9 @@ SWIGEXPORT(void) Init_ui(void) {
12023
12318
  rb_define_method(cFXImageView.klass, "contains", VALUEFUNC(_wrap_FXImageView_contains), -1);
12024
12319
  rb_define_method(cFXImageView.klass, "doesSaveUnder", VALUEFUNC(_wrap_FXImageView_doesSaveUnder), -1);
12025
12320
  rb_define_method(cFXImageView.klass, "setBackColor", VALUEFUNC(_wrap_FXImageView_setBackColor), -1);
12321
+ rb_define_method(cFXImageView.klass, "tr", VALUEFUNC(_wrap_FXImageView_tr), -1);
12322
+ rb_define_method(cFXImageView.klass, "dropEnable", VALUEFUNC(_wrap_FXImageView_dropEnable), -1);
12323
+ rb_define_method(cFXImageView.klass, "dropDisable", VALUEFUNC(_wrap_FXImageView_dropDisable), -1);
12026
12324
  rb_define_method(cFXImageView.klass, "setShape", VALUEFUNC(_wrap_FXImageView_setShape), -1);
12027
12325
  rb_define_method(cFXImageView.klass, "clearShape", VALUEFUNC(_wrap_FXImageView_clearShape), -1);
12028
12326
  rb_define_method(cFXImageView.klass, "getViewportHeight", VALUEFUNC(_wrap_FXImageView_getViewportHeight), -1);
@@ -12075,6 +12373,9 @@ SWIGEXPORT(void) Init_ui(void) {
12075
12373
  rb_define_method(cFXDragCorner.klass, "contains", VALUEFUNC(_wrap_FXDragCorner_contains), -1);
12076
12374
  rb_define_method(cFXDragCorner.klass, "doesSaveUnder", VALUEFUNC(_wrap_FXDragCorner_doesSaveUnder), -1);
12077
12375
  rb_define_method(cFXDragCorner.klass, "setBackColor", VALUEFUNC(_wrap_FXDragCorner_setBackColor), -1);
12376
+ rb_define_method(cFXDragCorner.klass, "tr", VALUEFUNC(_wrap_FXDragCorner_tr), -1);
12377
+ rb_define_method(cFXDragCorner.klass, "dropEnable", VALUEFUNC(_wrap_FXDragCorner_dropEnable), -1);
12378
+ rb_define_method(cFXDragCorner.klass, "dropDisable", VALUEFUNC(_wrap_FXDragCorner_dropDisable), -1);
12078
12379
  rb_define_method(cFXDragCorner.klass, "setShape", VALUEFUNC(_wrap_FXDragCorner_setShape), -1);
12079
12380
  rb_define_method(cFXDragCorner.klass, "clearShape", VALUEFUNC(_wrap_FXDragCorner_clearShape), -1);
12080
12381
  cFXDragCorner.mark = (void (*)(void *)) FXRbDragCorner::markfunc;
@@ -12124,6 +12425,9 @@ SWIGEXPORT(void) Init_ui(void) {
12124
12425
  rb_define_method(cFXDirBox.klass, "contains", VALUEFUNC(_wrap_FXDirBox_contains), -1);
12125
12426
  rb_define_method(cFXDirBox.klass, "doesSaveUnder", VALUEFUNC(_wrap_FXDirBox_doesSaveUnder), -1);
12126
12427
  rb_define_method(cFXDirBox.klass, "setBackColor", VALUEFUNC(_wrap_FXDirBox_setBackColor), -1);
12428
+ rb_define_method(cFXDirBox.klass, "tr", VALUEFUNC(_wrap_FXDirBox_tr), -1);
12429
+ rb_define_method(cFXDirBox.klass, "dropEnable", VALUEFUNC(_wrap_FXDirBox_dropEnable), -1);
12430
+ rb_define_method(cFXDirBox.klass, "dropDisable", VALUEFUNC(_wrap_FXDirBox_dropDisable), -1);
12127
12431
  rb_define_method(cFXDirBox.klass, "setShape", VALUEFUNC(_wrap_FXDirBox_setShape), -1);
12128
12432
  rb_define_method(cFXDirBox.klass, "clearShape", VALUEFUNC(_wrap_FXDirBox_clearShape), -1);
12129
12433
  rb_define_method(cFXDirBox.klass, "setCurrentItem", VALUEFUNC(_wrap_FXDirBox_setCurrentItem), -1);
@@ -12173,6 +12477,9 @@ SWIGEXPORT(void) Init_ui(void) {
12173
12477
  rb_define_method(cFXDriveBox.klass, "contains", VALUEFUNC(_wrap_FXDriveBox_contains), -1);
12174
12478
  rb_define_method(cFXDriveBox.klass, "doesSaveUnder", VALUEFUNC(_wrap_FXDriveBox_doesSaveUnder), -1);
12175
12479
  rb_define_method(cFXDriveBox.klass, "setBackColor", VALUEFUNC(_wrap_FXDriveBox_setBackColor), -1);
12480
+ rb_define_method(cFXDriveBox.klass, "tr", VALUEFUNC(_wrap_FXDriveBox_tr), -1);
12481
+ rb_define_method(cFXDriveBox.klass, "dropEnable", VALUEFUNC(_wrap_FXDriveBox_dropEnable), -1);
12482
+ rb_define_method(cFXDriveBox.klass, "dropDisable", VALUEFUNC(_wrap_FXDriveBox_dropDisable), -1);
12176
12483
  rb_define_method(cFXDriveBox.klass, "setShape", VALUEFUNC(_wrap_FXDriveBox_setShape), -1);
12177
12484
  rb_define_method(cFXDriveBox.klass, "clearShape", VALUEFUNC(_wrap_FXDriveBox_clearShape), -1);
12178
12485
  rb_define_method(cFXDriveBox.klass, "setCurrentItem", VALUEFUNC(_wrap_FXDriveBox_setCurrentItem), -1);
@@ -12253,6 +12560,9 @@ SWIGEXPORT(void) Init_ui(void) {
12253
12560
  rb_define_method(cFXDirSelector.klass, "contains", VALUEFUNC(_wrap_FXDirSelector_contains), -1);
12254
12561
  rb_define_method(cFXDirSelector.klass, "doesSaveUnder", VALUEFUNC(_wrap_FXDirSelector_doesSaveUnder), -1);
12255
12562
  rb_define_method(cFXDirSelector.klass, "setBackColor", VALUEFUNC(_wrap_FXDirSelector_setBackColor), -1);
12563
+ rb_define_method(cFXDirSelector.klass, "tr", VALUEFUNC(_wrap_FXDirSelector_tr), -1);
12564
+ rb_define_method(cFXDirSelector.klass, "dropEnable", VALUEFUNC(_wrap_FXDirSelector_dropEnable), -1);
12565
+ rb_define_method(cFXDirSelector.klass, "dropDisable", VALUEFUNC(_wrap_FXDirSelector_dropDisable), -1);
12256
12566
  rb_define_method(cFXDirSelector.klass, "setShape", VALUEFUNC(_wrap_FXDirSelector_setShape), -1);
12257
12567
  rb_define_method(cFXDirSelector.klass, "clearShape", VALUEFUNC(_wrap_FXDirSelector_clearShape), -1);
12258
12568
  cFXDirSelector.mark = (void (*)(void *)) FXRbDirSelector::markfunc;
@@ -12289,6 +12599,7 @@ SWIGEXPORT(void) Init_ui(void) {
12289
12599
  rb_define_method(cFXFileSelector.klass, "onPopupMenu", VALUEFUNC(_wrap_FXFileSelector_onPopupMenu), -1);
12290
12600
  rb_define_method(cFXFileSelector.klass, "onCmdImageSize", VALUEFUNC(_wrap_FXFileSelector_onCmdImageSize), -1);
12291
12601
  rb_define_method(cFXFileSelector.klass, "onUpdImageSize", VALUEFUNC(_wrap_FXFileSelector_onUpdImageSize), -1);
12602
+ rb_define_method(cFXFileSelector.klass, "onUpdNavigable", VALUEFUNC(_wrap_FXFileSelector_onUpdNavigable), -1);
12292
12603
  rb_define_const(cFXFileSelector.klass,"ID_FILEFILTER", INT2NUM(FXFileSelector::ID_FILEFILTER));
12293
12604
  rb_define_const(cFXFileSelector.klass,"ID_ACCEPT", INT2NUM(FXFileSelector::ID_ACCEPT));
12294
12605
  rb_define_const(cFXFileSelector.klass,"ID_FILELIST", INT2NUM(FXFileSelector::ID_FILELIST));
@@ -12300,6 +12611,7 @@ SWIGEXPORT(void) Init_ui(void) {
12300
12611
  rb_define_const(cFXFileSelector.klass,"ID_HOME", INT2NUM(FXFileSelector::ID_HOME));
12301
12612
  rb_define_const(cFXFileSelector.klass,"ID_WORK", INT2NUM(FXFileSelector::ID_WORK));
12302
12613
  rb_define_const(cFXFileSelector.klass,"ID_BOOKMARK", INT2NUM(FXFileSelector::ID_BOOKMARK));
12614
+ rb_define_const(cFXFileSelector.klass,"ID_BOOKMENU", INT2NUM(FXFileSelector::ID_BOOKMENU));
12303
12615
  rb_define_const(cFXFileSelector.klass,"ID_VISIT", INT2NUM(FXFileSelector::ID_VISIT));
12304
12616
  rb_define_const(cFXFileSelector.klass,"ID_NEW", INT2NUM(FXFileSelector::ID_NEW));
12305
12617
  rb_define_const(cFXFileSelector.klass,"ID_DELETE", INT2NUM(FXFileSelector::ID_DELETE));
@@ -12320,6 +12632,7 @@ SWIGEXPORT(void) Init_ui(void) {
12320
12632
  rb_define_method(cFXFileSelector.klass, "getCurrentPattern", VALUEFUNC(_wrap_FXFileSelector_getCurrentPattern), -1);
12321
12633
  rb_define_method(cFXFileSelector.klass, "getPatternText", VALUEFUNC(_wrap_FXFileSelector_getPatternText), -1);
12322
12634
  rb_define_method(cFXFileSelector.klass, "setPatternText", VALUEFUNC(_wrap_FXFileSelector_setPatternText), -1);
12635
+ rb_define_method(cFXFileSelector.klass, "numPatterns", VALUEFUNC(_wrap_FXFileSelector_numPatterns), -1);
12323
12636
  rb_define_method(cFXFileSelector.klass, "setAllowPatternEntry", VALUEFUNC(_wrap_FXFileSelector_setAllowPatternEntry), -1);
12324
12637
  rb_define_method(cFXFileSelector.klass, "getAllowPatternEntry", VALUEFUNC(_wrap_FXFileSelector_getAllowPatternEntry), -1);
12325
12638
  rb_define_method(cFXFileSelector.klass, "setDirectory", VALUEFUNC(_wrap_FXFileSelector_setDirectory), -1);
@@ -12344,6 +12657,8 @@ SWIGEXPORT(void) Init_ui(void) {
12344
12657
  rb_define_method(cFXFileSelector.klass, "getReadOnlyShown", VALUEFUNC(_wrap_FXFileSelector_getReadOnlyShown), -1);
12345
12658
  rb_define_method(cFXFileSelector.klass, "setReadOnly", VALUEFUNC(_wrap_FXFileSelector_setReadOnly), -1);
12346
12659
  rb_define_method(cFXFileSelector.klass, "getReadOnly", VALUEFUNC(_wrap_FXFileSelector_getReadOnly), -1);
12660
+ rb_define_method(cFXFileSelector.klass, "navigationAllowed=", VALUEFUNC(_wrap_FXFileSelector_navigationAllowede___), -1);
12661
+ rb_define_method(cFXFileSelector.klass, "navigationAllowed?", VALUEFUNC(_wrap_FXFileSelector_navigationAllowedq___), -1);
12347
12662
  rb_define_method(cFXFileSelector.klass, "save", VALUEFUNC(_wrap_FXFileSelector_save), -1);
12348
12663
  rb_define_method(cFXFileSelector.klass, "load", VALUEFUNC(_wrap_FXFileSelector_load), -1);
12349
12664
  rb_define_method(cFXFileSelector.klass, "create", VALUEFUNC(_wrap_FXFileSelector_create), -1);
@@ -12374,6 +12689,9 @@ SWIGEXPORT(void) Init_ui(void) {
12374
12689
  rb_define_method(cFXFileSelector.klass, "contains", VALUEFUNC(_wrap_FXFileSelector_contains), -1);
12375
12690
  rb_define_method(cFXFileSelector.klass, "doesSaveUnder", VALUEFUNC(_wrap_FXFileSelector_doesSaveUnder), -1);
12376
12691
  rb_define_method(cFXFileSelector.klass, "setBackColor", VALUEFUNC(_wrap_FXFileSelector_setBackColor), -1);
12692
+ rb_define_method(cFXFileSelector.klass, "tr", VALUEFUNC(_wrap_FXFileSelector_tr), -1);
12693
+ rb_define_method(cFXFileSelector.klass, "dropEnable", VALUEFUNC(_wrap_FXFileSelector_dropEnable), -1);
12694
+ rb_define_method(cFXFileSelector.klass, "dropDisable", VALUEFUNC(_wrap_FXFileSelector_dropDisable), -1);
12377
12695
  rb_define_method(cFXFileSelector.klass, "setShape", VALUEFUNC(_wrap_FXFileSelector_setShape), -1);
12378
12696
  rb_define_method(cFXFileSelector.klass, "clearShape", VALUEFUNC(_wrap_FXFileSelector_clearShape), -1);
12379
12697
  cFXFileSelector.mark = (void (*)(void *)) FXRbFileSelector::markfunc;
@@ -12409,8 +12727,6 @@ SWIGEXPORT(void) Init_ui(void) {
12409
12727
  rb_define_method(cFXColorSelector.klass, "onUpdAlphaLabel", VALUEFUNC(_wrap_FXColorSelector_onUpdAlphaLabel), -1);
12410
12728
  rb_define_method(cFXColorSelector.klass, "onCmdWheel", VALUEFUNC(_wrap_FXColorSelector_onCmdWheel), -1);
12411
12729
  rb_define_method(cFXColorSelector.klass, "onUpdWheel", VALUEFUNC(_wrap_FXColorSelector_onUpdWheel), -1);
12412
- rb_define_method(cFXColorSelector.klass, "onCmdBar", VALUEFUNC(_wrap_FXColorSelector_onCmdBar), -1);
12413
- rb_define_method(cFXColorSelector.klass, "onUpdBar", VALUEFUNC(_wrap_FXColorSelector_onUpdBar), -1);
12414
12730
  rb_define_method(cFXColorSelector.klass, "onCmdColorPick", VALUEFUNC(_wrap_FXColorSelector_onCmdColorPick), -1);
12415
12731
  rb_define_const(cFXColorSelector.klass,"ID_CUSTOM_FIRST", INT2NUM(FXColorSelector::ID_CUSTOM_FIRST));
12416
12732
  rb_define_const(cFXColorSelector.klass,"ID_CUSTOM_LAST", INT2NUM(FXColorSelector::ID_CUSTOM_LAST));
@@ -12433,7 +12749,6 @@ SWIGEXPORT(void) Init_ui(void) {
12433
12749
  rb_define_const(cFXColorSelector.klass,"ID_CMY_MAGENTA_TEXT", INT2NUM(FXColorSelector::ID_CMY_MAGENTA_TEXT));
12434
12750
  rb_define_const(cFXColorSelector.klass,"ID_CMY_YELLOW_TEXT", INT2NUM(FXColorSelector::ID_CMY_YELLOW_TEXT));
12435
12751
  rb_define_const(cFXColorSelector.klass,"ID_DIAL_WHEEL", INT2NUM(FXColorSelector::ID_DIAL_WHEEL));
12436
- rb_define_const(cFXColorSelector.klass,"ID_COLOR_BAR", INT2NUM(FXColorSelector::ID_COLOR_BAR));
12437
12752
  rb_define_const(cFXColorSelector.klass,"ID_COLOR_LIST", INT2NUM(FXColorSelector::ID_COLOR_LIST));
12438
12753
  rb_define_const(cFXColorSelector.klass,"ID_WELL_CHANGED", INT2NUM(FXColorSelector::ID_WELL_CHANGED));
12439
12754
  rb_define_const(cFXColorSelector.klass,"ID_ACTIVEPANE", INT2NUM(FXColorSelector::ID_ACTIVEPANE));
@@ -12478,6 +12793,9 @@ SWIGEXPORT(void) Init_ui(void) {
12478
12793
  rb_define_method(cFXColorSelector.klass, "contains", VALUEFUNC(_wrap_FXColorSelector_contains), -1);
12479
12794
  rb_define_method(cFXColorSelector.klass, "doesSaveUnder", VALUEFUNC(_wrap_FXColorSelector_doesSaveUnder), -1);
12480
12795
  rb_define_method(cFXColorSelector.klass, "setBackColor", VALUEFUNC(_wrap_FXColorSelector_setBackColor), -1);
12796
+ rb_define_method(cFXColorSelector.klass, "tr", VALUEFUNC(_wrap_FXColorSelector_tr), -1);
12797
+ rb_define_method(cFXColorSelector.klass, "dropEnable", VALUEFUNC(_wrap_FXColorSelector_dropEnable), -1);
12798
+ rb_define_method(cFXColorSelector.klass, "dropDisable", VALUEFUNC(_wrap_FXColorSelector_dropDisable), -1);
12481
12799
  rb_define_method(cFXColorSelector.klass, "setShape", VALUEFUNC(_wrap_FXColorSelector_setShape), -1);
12482
12800
  rb_define_method(cFXColorSelector.klass, "clearShape", VALUEFUNC(_wrap_FXColorSelector_clearShape), -1);
12483
12801
  cFXColorSelector.mark = (void (*)(void *)) FXRbColorSelector::markfunc;
@@ -12549,6 +12867,9 @@ SWIGEXPORT(void) Init_ui(void) {
12549
12867
  rb_define_method(cFXFontSelector.klass, "contains", VALUEFUNC(_wrap_FXFontSelector_contains), -1);
12550
12868
  rb_define_method(cFXFontSelector.klass, "doesSaveUnder", VALUEFUNC(_wrap_FXFontSelector_doesSaveUnder), -1);
12551
12869
  rb_define_method(cFXFontSelector.klass, "setBackColor", VALUEFUNC(_wrap_FXFontSelector_setBackColor), -1);
12870
+ rb_define_method(cFXFontSelector.klass, "tr", VALUEFUNC(_wrap_FXFontSelector_tr), -1);
12871
+ rb_define_method(cFXFontSelector.klass, "dropEnable", VALUEFUNC(_wrap_FXFontSelector_dropEnable), -1);
12872
+ rb_define_method(cFXFontSelector.klass, "dropDisable", VALUEFUNC(_wrap_FXFontSelector_dropDisable), -1);
12552
12873
  rb_define_method(cFXFontSelector.klass, "setShape", VALUEFUNC(_wrap_FXFontSelector_setShape), -1);
12553
12874
  rb_define_method(cFXFontSelector.klass, "clearShape", VALUEFUNC(_wrap_FXFontSelector_clearShape), -1);
12554
12875
  cFXFontSelector.mark = (void (*)(void *)) FXRbFontSelector::markfunc;
@@ -12602,6 +12923,9 @@ SWIGEXPORT(void) Init_ui(void) {
12602
12923
  rb_define_method(cFXDockHandler.klass, "contains", VALUEFUNC(_wrap_FXDockHandler_contains), -1);
12603
12924
  rb_define_method(cFXDockHandler.klass, "doesSaveUnder", VALUEFUNC(_wrap_FXDockHandler_doesSaveUnder), -1);
12604
12925
  rb_define_method(cFXDockHandler.klass, "setBackColor", VALUEFUNC(_wrap_FXDockHandler_setBackColor), -1);
12926
+ rb_define_method(cFXDockHandler.klass, "tr", VALUEFUNC(_wrap_FXDockHandler_tr), -1);
12927
+ rb_define_method(cFXDockHandler.klass, "dropEnable", VALUEFUNC(_wrap_FXDockHandler_dropEnable), -1);
12928
+ rb_define_method(cFXDockHandler.klass, "dropDisable", VALUEFUNC(_wrap_FXDockHandler_dropDisable), -1);
12605
12929
  rb_define_method(cFXDockHandler.klass, "setShape", VALUEFUNC(_wrap_FXDockHandler_setShape), -1);
12606
12930
  rb_define_method(cFXDockHandler.klass, "clearShape", VALUEFUNC(_wrap_FXDockHandler_clearShape), -1);
12607
12931
  cFXDockHandler.mark = (void (*)(void *)) FXRbDockHandler::markfunc;
@@ -12609,57 +12933,6 @@ SWIGEXPORT(void) Init_ui(void) {
12609
12933
 
12610
12934
  SWIGTYPE_p_FXDockHandler->dcast = (swig_dycast_func) FXDockHandler_dynamic_cast;
12611
12935
 
12612
-
12613
- cFXDockTitle.klass = rb_define_class_under(mFox, "FXDockTitle", ((swig_class *) SWIGTYPE_p_FXDockHandler->clientdata)->klass);
12614
- SWIG_TypeClientData(SWIGTYPE_p_FXDockTitle, (void *) &cFXDockTitle);
12615
- rb_define_alloc_func(cFXDockTitle.klass, _wrap_FXDockTitle_allocate);
12616
- rb_define_method(cFXDockTitle.klass, "initialize", VALUEFUNC(_wrap_new_FXDockTitle), -1);
12617
- rb_define_method(cFXDockTitle.klass, "onPaint", VALUEFUNC(_wrap_FXDockTitle_onPaint), -1);
12618
- rb_define_method(cFXDockTitle.klass, "onCmdSetValue", VALUEFUNC(_wrap_FXDockTitle_onCmdSetValue), -1);
12619
- rb_define_method(cFXDockTitle.klass, "onCmdSetStringValue", VALUEFUNC(_wrap_FXDockTitle_onCmdSetStringValue), -1);
12620
- rb_define_method(cFXDockTitle.klass, "onCmdGetStringValue", VALUEFUNC(_wrap_FXDockTitle_onCmdGetStringValue), -1);
12621
- rb_define_method(cFXDockTitle.klass, "caption=", VALUEFUNC(_wrap_FXDockTitle_captione___), -1);
12622
- rb_define_method(cFXDockTitle.klass, "caption", VALUEFUNC(_wrap_FXDockTitle_caption), -1);
12623
- rb_define_method(cFXDockTitle.klass, "font=", VALUEFUNC(_wrap_FXDockTitle_fonte___), -1);
12624
- rb_define_method(cFXDockTitle.klass, "font", VALUEFUNC(_wrap_FXDockTitle_font), -1);
12625
- rb_define_method(cFXDockTitle.klass, "captionColor", VALUEFUNC(_wrap_FXDockTitle_captionColor), -1);
12626
- rb_define_method(cFXDockTitle.klass, "captionColor=", VALUEFUNC(_wrap_FXDockTitle_captionColore___), -1);
12627
- rb_define_method(cFXDockTitle.klass, "justify=", VALUEFUNC(_wrap_FXDockTitle_justifye___), -1);
12628
- rb_define_method(cFXDockTitle.klass, "justify", VALUEFUNC(_wrap_FXDockTitle_justify), -1);
12629
- rb_define_method(cFXDockTitle.klass, "save", VALUEFUNC(_wrap_FXDockTitle_save), -1);
12630
- rb_define_method(cFXDockTitle.klass, "load", VALUEFUNC(_wrap_FXDockTitle_load), -1);
12631
- rb_define_method(cFXDockTitle.klass, "create", VALUEFUNC(_wrap_FXDockTitle_create), -1);
12632
- rb_define_method(cFXDockTitle.klass, "detach", VALUEFUNC(_wrap_FXDockTitle_detach), -1);
12633
- rb_define_method(cFXDockTitle.klass, "destroy", VALUEFUNC(_wrap_FXDockTitle_destroy), -1);
12634
- rb_define_method(cFXDockTitle.klass, "resize", VALUEFUNC(_wrap_FXDockTitle_resize), -1);
12635
- rb_define_method(cFXDockTitle.klass, "getDefaultWidth", VALUEFUNC(_wrap_FXDockTitle_getDefaultWidth), -1);
12636
- rb_define_method(cFXDockTitle.klass, "getDefaultHeight", VALUEFUNC(_wrap_FXDockTitle_getDefaultHeight), -1);
12637
- rb_define_method(cFXDockTitle.klass, "getWidthForHeight", VALUEFUNC(_wrap_FXDockTitle_getWidthForHeight), -1);
12638
- rb_define_method(cFXDockTitle.klass, "getHeightForWidth", VALUEFUNC(_wrap_FXDockTitle_getHeightForWidth), -1);
12639
- rb_define_method(cFXDockTitle.klass, "canFocus", VALUEFUNC(_wrap_FXDockTitle_canFocus), -1);
12640
- rb_define_method(cFXDockTitle.klass, "setFocus", VALUEFUNC(_wrap_FXDockTitle_setFocus), -1);
12641
- rb_define_method(cFXDockTitle.klass, "killFocus", VALUEFUNC(_wrap_FXDockTitle_killFocus), -1);
12642
- rb_define_method(cFXDockTitle.klass, "changeFocus", VALUEFUNC(_wrap_FXDockTitle_changeFocus), -1);
12643
- rb_define_method(cFXDockTitle.klass, "setDefault", VALUEFUNC(_wrap_FXDockTitle_setDefault), -1);
12644
- rb_define_method(cFXDockTitle.klass, "enable", VALUEFUNC(_wrap_FXDockTitle_enable), -1);
12645
- rb_define_method(cFXDockTitle.klass, "disable", VALUEFUNC(_wrap_FXDockTitle_disable), -1);
12646
- rb_define_method(cFXDockTitle.klass, "raiseWindow", VALUEFUNC(_wrap_FXDockTitle_raiseWindow), -1);
12647
- rb_define_method(cFXDockTitle.klass, "lower", VALUEFUNC(_wrap_FXDockTitle_lower), -1);
12648
- rb_define_method(cFXDockTitle.klass, "move", VALUEFUNC(_wrap_FXDockTitle_move), -1);
12649
- rb_define_method(cFXDockTitle.klass, "position", VALUEFUNC(_wrap_FXDockTitle_position), -1);
12650
- rb_define_method(cFXDockTitle.klass, "layout", VALUEFUNC(_wrap_FXDockTitle_layout), -1);
12651
- rb_define_method(cFXDockTitle.klass, "recalc", VALUEFUNC(_wrap_FXDockTitle_recalc), -1);
12652
- rb_define_method(cFXDockTitle.klass, "reparent", VALUEFUNC(_wrap_FXDockTitle_reparent), -1);
12653
- rb_define_method(cFXDockTitle.klass, "show", VALUEFUNC(_wrap_FXDockTitle_show), -1);
12654
- rb_define_method(cFXDockTitle.klass, "hide", VALUEFUNC(_wrap_FXDockTitle_hide), -1);
12655
- rb_define_method(cFXDockTitle.klass, "isComposite", VALUEFUNC(_wrap_FXDockTitle_isComposite), -1);
12656
- rb_define_method(cFXDockTitle.klass, "contains", VALUEFUNC(_wrap_FXDockTitle_contains), -1);
12657
- rb_define_method(cFXDockTitle.klass, "doesSaveUnder", VALUEFUNC(_wrap_FXDockTitle_doesSaveUnder), -1);
12658
- rb_define_method(cFXDockTitle.klass, "setBackColor", VALUEFUNC(_wrap_FXDockTitle_setBackColor), -1);
12659
- rb_define_method(cFXDockTitle.klass, "setShape", VALUEFUNC(_wrap_FXDockTitle_setShape), -1);
12660
- rb_define_method(cFXDockTitle.klass, "clearShape", VALUEFUNC(_wrap_FXDockTitle_clearShape), -1);
12661
- cFXDockTitle.mark = (void (*)(void *)) FXRbDockTitle::markfunc;
12662
- cFXDockTitle.destroy = (void (*)(void *)) FXRbObject::freefunc;
12663
12936
  rb_define_const(mFox,"TOOLBARGRIP_SINGLE", INT2NUM(TOOLBARGRIP_SINGLE));
12664
12937
  rb_define_const(mFox,"TOOLBARGRIP_DOUBLE", INT2NUM(TOOLBARGRIP_DOUBLE));
12665
12938
 
@@ -12704,6 +12977,9 @@ SWIGEXPORT(void) Init_ui(void) {
12704
12977
  rb_define_method(cFXToolBarGrip.klass, "contains", VALUEFUNC(_wrap_FXToolBarGrip_contains), -1);
12705
12978
  rb_define_method(cFXToolBarGrip.klass, "doesSaveUnder", VALUEFUNC(_wrap_FXToolBarGrip_doesSaveUnder), -1);
12706
12979
  rb_define_method(cFXToolBarGrip.klass, "setBackColor", VALUEFUNC(_wrap_FXToolBarGrip_setBackColor), -1);
12980
+ rb_define_method(cFXToolBarGrip.klass, "tr", VALUEFUNC(_wrap_FXToolBarGrip_tr), -1);
12981
+ rb_define_method(cFXToolBarGrip.klass, "dropEnable", VALUEFUNC(_wrap_FXToolBarGrip_dropEnable), -1);
12982
+ rb_define_method(cFXToolBarGrip.klass, "dropDisable", VALUEFUNC(_wrap_FXToolBarGrip_dropDisable), -1);
12707
12983
  rb_define_method(cFXToolBarGrip.klass, "setShape", VALUEFUNC(_wrap_FXToolBarGrip_setShape), -1);
12708
12984
  rb_define_method(cFXToolBarGrip.klass, "clearShape", VALUEFUNC(_wrap_FXToolBarGrip_clearShape), -1);
12709
12985
  cFXToolBarGrip.mark = (void (*)(void *)) FXRbToolBarGrip::markfunc;
@@ -12754,6 +13030,9 @@ SWIGEXPORT(void) Init_ui(void) {
12754
13030
  rb_define_method(cFXToolBarShell.klass, "contains", VALUEFUNC(_wrap_FXToolBarShell_contains), -1);
12755
13031
  rb_define_method(cFXToolBarShell.klass, "doesSaveUnder", VALUEFUNC(_wrap_FXToolBarShell_doesSaveUnder), -1);
12756
13032
  rb_define_method(cFXToolBarShell.klass, "setBackColor", VALUEFUNC(_wrap_FXToolBarShell_setBackColor), -1);
13033
+ rb_define_method(cFXToolBarShell.klass, "tr", VALUEFUNC(_wrap_FXToolBarShell_tr), -1);
13034
+ rb_define_method(cFXToolBarShell.klass, "dropEnable", VALUEFUNC(_wrap_FXToolBarShell_dropEnable), -1);
13035
+ rb_define_method(cFXToolBarShell.klass, "dropDisable", VALUEFUNC(_wrap_FXToolBarShell_dropDisable), -1);
12757
13036
  rb_define_method(cFXToolBarShell.klass, "setShape", VALUEFUNC(_wrap_FXToolBarShell_setShape), -1);
12758
13037
  rb_define_method(cFXToolBarShell.klass, "clearShape", VALUEFUNC(_wrap_FXToolBarShell_clearShape), -1);
12759
13038
  rb_define_method(cFXToolBarShell.klass, "show", VALUEFUNC(_wrap_FXToolBarShell_show), -1);