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
@@ -1005,9 +1005,9 @@ static VALUE _wrap_FXLabel_getHeightForWidth(int argc, VALUE *argv, VALUE self)
1005
1005
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1006
1006
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXLabel, 1); arg2 = NUM2INT(argv[0]);
1007
1007
  result = (FXint)FXLabel_getHeightForWidth(arg1,arg2); vresult = INT2NUM(result); return vresult; }
1008
- static VALUE _wrap_FXLabel_canFocus(int argc, VALUE *argv, VALUE self) { FXLabel *arg1 = (FXLabel *) 0 ; FXbool result;
1008
+ static VALUE _wrap_FXLabel_canFocus(int argc, VALUE *argv, VALUE self) { FXLabel *arg1 = (FXLabel *) 0 ; bool result;
1009
1009
  VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1010
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXLabel, 1); result = (FXbool)FXLabel_canFocus((FXLabel const *)arg1);
1010
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXLabel, 1); result = (bool)FXLabel_canFocus((FXLabel const *)arg1);
1011
1011
  vresult = result ? Qtrue : Qfalse; return vresult; }
1012
1012
  static VALUE _wrap_FXLabel_setFocus(int argc, VALUE *argv, VALUE self) { FXLabel *arg1 = (FXLabel *) 0 ;
1013
1013
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
@@ -1063,23 +1063,36 @@ static VALUE _wrap_FXLabel_show(int argc, VALUE *argv, VALUE self) { FXLabel *ar
1063
1063
  static VALUE _wrap_FXLabel_hide(int argc, VALUE *argv, VALUE self) { FXLabel *arg1 = (FXLabel *) 0 ;
1064
1064
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1065
1065
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXLabel, 1); FXLabel_hide(arg1); return Qnil; }
1066
- static VALUE _wrap_FXLabel_isComposite(int argc, VALUE *argv, VALUE self) { FXLabel *arg1 = (FXLabel *) 0 ; FXbool result;
1066
+ static VALUE _wrap_FXLabel_isComposite(int argc, VALUE *argv, VALUE self) { FXLabel *arg1 = (FXLabel *) 0 ; bool result;
1067
1067
  VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1068
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXLabel, 1); result = (FXbool)FXLabel_isComposite((FXLabel const *)arg1);
1068
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXLabel, 1); result = (bool)FXLabel_isComposite((FXLabel const *)arg1);
1069
1069
  vresult = result ? Qtrue : Qfalse; return vresult; }
1070
1070
  static VALUE _wrap_FXLabel_contains(int argc, VALUE *argv, VALUE self) { FXLabel *arg1 = (FXLabel *) 0 ; FXint arg2 ;
1071
- FXint arg3 ; FXbool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
1071
+ FXint arg3 ; bool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
1072
1072
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
1073
1073
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXLabel, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]);
1074
- result = (FXbool)FXLabel_contains((FXLabel const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse; return vresult; }
1075
- static VALUE _wrap_FXLabel_doesSaveUnder(int argc, VALUE *argv, VALUE self) { FXLabel *arg1 = (FXLabel *) 0 ; FXbool result;
1074
+ result = (bool)FXLabel_contains((FXLabel const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse; return vresult; }
1075
+ static VALUE _wrap_FXLabel_doesSaveUnder(int argc, VALUE *argv, VALUE self) { FXLabel *arg1 = (FXLabel *) 0 ; bool result;
1076
1076
  VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1077
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXLabel, 1);
1078
- result = (FXbool)FXLabel_doesSaveUnder((FXLabel const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
1077
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXLabel, 1); result = (bool)FXLabel_doesSaveUnder((FXLabel const *)arg1);
1078
+ vresult = result ? Qtrue : Qfalse; return vresult; }
1079
1079
  static VALUE _wrap_FXLabel_setBackColor(int argc, VALUE *argv, VALUE self) { FXLabel *arg1 = (FXLabel *) 0 ; FXColor arg2 ;
1080
1080
  if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1081
1081
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXLabel, 1); arg2 = to_FXColor(argv[0]); FXLabel_setBackColor(arg1,arg2);
1082
1082
  return Qnil; }
1083
+ static VALUE _wrap_FXLabel_tr(int argc, VALUE *argv, VALUE self) { FXLabel *arg1 = (FXLabel *) 0 ; FXchar *arg2 ;
1084
+ FXchar *arg3 = (FXchar *) 0 ; FXchar *result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 2))
1085
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1086
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXLabel, 1); arg2 = StringValuePtr(argv[0]); if (argc > 1) {
1087
+ arg3 = StringValuePtr(argv[1]); }
1088
+ result = (FXchar *)FXLabel_tr((FXLabel const *)arg1,(FXchar const *)arg2,(FXchar const *)arg3);
1089
+ vresult = rb_str_new2(result); return vresult; }
1090
+ static VALUE _wrap_FXLabel_dropEnable(int argc, VALUE *argv, VALUE self) { FXLabel *arg1 = (FXLabel *) 0 ;
1091
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1092
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXLabel, 1); FXLabel_dropEnable(arg1); return Qnil; }
1093
+ static VALUE _wrap_FXLabel_dropDisable(int argc, VALUE *argv, VALUE self) { FXLabel *arg1 = (FXLabel *) 0 ;
1094
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1095
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXLabel, 1); FXLabel_dropDisable(arg1); return Qnil; }
1083
1096
  static VALUE _wrap_FXLabel_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) { FXLabel *arg1 = (FXLabel *) 0 ;
1084
1097
  FXRegion *arg2 = 0 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1085
1098
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXLabel, 1);
@@ -1310,9 +1323,9 @@ static VALUE _wrap_FXButton_getHeightForWidth(int argc, VALUE *argv, VALUE self)
1310
1323
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1311
1324
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXButton, 1); arg2 = NUM2INT(argv[0]);
1312
1325
  result = (FXint)FXButton_getHeightForWidth(arg1,arg2); vresult = INT2NUM(result); return vresult; }
1313
- static VALUE _wrap_FXButton_canFocus(int argc, VALUE *argv, VALUE self) { FXButton *arg1 = (FXButton *) 0 ; FXbool result;
1326
+ static VALUE _wrap_FXButton_canFocus(int argc, VALUE *argv, VALUE self) { FXButton *arg1 = (FXButton *) 0 ; bool result;
1314
1327
  VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1315
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXButton, 1); result = (FXbool)FXButton_canFocus((FXButton const *)arg1);
1328
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXButton, 1); result = (bool)FXButton_canFocus((FXButton const *)arg1);
1316
1329
  vresult = result ? Qtrue : Qfalse; return vresult; }
1317
1330
  static VALUE _wrap_FXButton_setFocus(int argc, VALUE *argv, VALUE self) { FXButton *arg1 = (FXButton *) 0 ;
1318
1331
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
@@ -1368,23 +1381,36 @@ static VALUE _wrap_FXButton_show(int argc, VALUE *argv, VALUE self) { FXButton *
1368
1381
  static VALUE _wrap_FXButton_hide(int argc, VALUE *argv, VALUE self) { FXButton *arg1 = (FXButton *) 0 ;
1369
1382
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1370
1383
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXButton, 1); FXButton_hide(arg1); return Qnil; }
1371
- static VALUE _wrap_FXButton_isComposite(int argc, VALUE *argv, VALUE self) { FXButton *arg1 = (FXButton *) 0 ; FXbool result;
1384
+ static VALUE _wrap_FXButton_isComposite(int argc, VALUE *argv, VALUE self) { FXButton *arg1 = (FXButton *) 0 ; bool result;
1372
1385
  VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1373
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXButton, 1);
1374
- result = (FXbool)FXButton_isComposite((FXButton const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
1386
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXButton, 1); result = (bool)FXButton_isComposite((FXButton const *)arg1);
1387
+ vresult = result ? Qtrue : Qfalse; return vresult; }
1375
1388
  static VALUE _wrap_FXButton_contains(int argc, VALUE *argv, VALUE self) { FXButton *arg1 = (FXButton *) 0 ; FXint arg2 ;
1376
- FXint arg3 ; FXbool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
1389
+ FXint arg3 ; bool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
1377
1390
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
1378
1391
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXButton, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]);
1379
- result = (FXbool)FXButton_contains((FXButton const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse; return vresult; }
1380
- static VALUE _wrap_FXButton_doesSaveUnder(int argc, VALUE *argv, VALUE self) { FXButton *arg1 = (FXButton *) 0 ; FXbool result;
1392
+ result = (bool)FXButton_contains((FXButton const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse; return vresult; }
1393
+ static VALUE _wrap_FXButton_doesSaveUnder(int argc, VALUE *argv, VALUE self) { FXButton *arg1 = (FXButton *) 0 ; bool result;
1381
1394
  VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1382
1395
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXButton, 1);
1383
- result = (FXbool)FXButton_doesSaveUnder((FXButton const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
1396
+ result = (bool)FXButton_doesSaveUnder((FXButton const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
1384
1397
  static VALUE _wrap_FXButton_setBackColor(int argc, VALUE *argv, VALUE self) { FXButton *arg1 = (FXButton *) 0 ; FXColor arg2 ;
1385
1398
  if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1386
1399
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXButton, 1); arg2 = to_FXColor(argv[0]);
1387
1400
  FXButton_setBackColor(arg1,arg2); return Qnil; }
1401
+ static VALUE _wrap_FXButton_tr(int argc, VALUE *argv, VALUE self) { FXButton *arg1 = (FXButton *) 0 ; FXchar *arg2 ;
1402
+ FXchar *arg3 = (FXchar *) 0 ; FXchar *result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 2))
1403
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1404
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXButton, 1); arg2 = StringValuePtr(argv[0]); if (argc > 1) {
1405
+ arg3 = StringValuePtr(argv[1]); }
1406
+ result = (FXchar *)FXButton_tr((FXButton const *)arg1,(FXchar const *)arg2,(FXchar const *)arg3);
1407
+ vresult = rb_str_new2(result); return vresult; }
1408
+ static VALUE _wrap_FXButton_dropEnable(int argc, VALUE *argv, VALUE self) { FXButton *arg1 = (FXButton *) 0 ;
1409
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1410
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXButton, 1); FXButton_dropEnable(arg1); return Qnil; }
1411
+ static VALUE _wrap_FXButton_dropDisable(int argc, VALUE *argv, VALUE self) { FXButton *arg1 = (FXButton *) 0 ;
1412
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1413
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXButton, 1); FXButton_dropDisable(arg1); return Qnil; }
1388
1414
  static VALUE _wrap_FXButton_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) { FXButton *arg1 = (FXButton *) 0 ;
1389
1415
  FXRegion *arg2 = 0 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1390
1416
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXButton, 1);
@@ -1564,9 +1590,10 @@ static VALUE _wrap_new_FXCheckButton(int argc, VALUE *argv, VALUE self) { FXComp
1564
1590
  result = (FXCheckButton *)new_FXCheckButton(arg1,(FXString const &)*arg2,arg3,arg4,arg5,arg6,arg7,arg8,arg9,arg10,arg11,arg12,arg13);
1565
1591
  DATA_PTR(self) = result; FXRbRegisterRubyObj(self, result); if(rb_block_given_p()){ rb_yield(self); } } return self; }
1566
1592
  static VALUE _wrap_FXCheckButton_setCheck(int argc, VALUE *argv, VALUE self) { FXCheckButton *arg1 = (FXCheckButton *) 0 ;
1567
- FXbool arg2 = (FXbool) 1 ; if ((argc < 0) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1593
+ FXbool arg2 = (FXbool) 1 ; FXbool arg3 = (FXbool) 0 ; if ((argc < 0) || (argc > 2))
1594
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1568
1595
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXCheckButton, 1); if (argc > 0) { arg2 = to_FXbool(argv[0]); }
1569
- (arg1)->setCheck(arg2); return Qnil; }
1596
+ if (argc > 1) { arg3 = to_FXbool(argv[1]); } (arg1)->setCheck(arg2,arg3); return Qnil; }
1570
1597
  static VALUE _wrap_FXCheckButton_getCheck(int argc, VALUE *argv, VALUE self) { FXCheckButton *arg1 = (FXCheckButton *) 0 ;
1571
1598
  FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
1572
1599
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
@@ -1653,10 +1680,10 @@ static VALUE _wrap_FXCheckButton_getHeightForWidth(int argc, VALUE *argv, VALUE
1653
1680
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXCheckButton, 1); arg2 = NUM2INT(argv[0]);
1654
1681
  result = (FXint)FXCheckButton_getHeightForWidth(arg1,arg2); vresult = INT2NUM(result); return vresult; }
1655
1682
  static VALUE _wrap_FXCheckButton_canFocus(int argc, VALUE *argv, VALUE self) { FXCheckButton *arg1 = (FXCheckButton *) 0 ;
1656
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
1683
+ bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
1657
1684
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1658
1685
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXCheckButton, 1);
1659
- result = (FXbool)FXCheckButton_canFocus((FXCheckButton const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
1686
+ result = (bool)FXCheckButton_canFocus((FXCheckButton const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
1660
1687
  static VALUE _wrap_FXCheckButton_setFocus(int argc, VALUE *argv, VALUE self) { FXCheckButton *arg1 = (FXCheckButton *) 0 ;
1661
1688
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1662
1689
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXCheckButton, 1); FXCheckButton_setFocus(arg1); return Qnil; }
@@ -1712,26 +1739,38 @@ static VALUE _wrap_FXCheckButton_hide(int argc, VALUE *argv, VALUE self) { FXChe
1712
1739
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1713
1740
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXCheckButton, 1); FXCheckButton_hide(arg1); return Qnil; }
1714
1741
  static VALUE _wrap_FXCheckButton_isComposite(int argc, VALUE *argv, VALUE self) { FXCheckButton *arg1 = (FXCheckButton *) 0 ;
1715
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
1742
+ bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
1716
1743
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1717
1744
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXCheckButton, 1);
1718
- result = (FXbool)FXCheckButton_isComposite((FXCheckButton const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
1745
+ result = (bool)FXCheckButton_isComposite((FXCheckButton const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
1719
1746
  static VALUE _wrap_FXCheckButton_contains(int argc, VALUE *argv, VALUE self) { FXCheckButton *arg1 = (FXCheckButton *) 0 ;
1720
- FXint arg2 ; FXint arg3 ; FXbool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
1747
+ FXint arg2 ; FXint arg3 ; bool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
1721
1748
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
1722
1749
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXCheckButton, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]);
1723
- result = (FXbool)FXCheckButton_contains((FXCheckButton const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse;
1750
+ result = (bool)FXCheckButton_contains((FXCheckButton const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse;
1724
1751
  return vresult; }
1725
1752
  static VALUE _wrap_FXCheckButton_doesSaveUnder(int argc, VALUE *argv, VALUE self) { FXCheckButton *arg1 = (FXCheckButton *) 0 ;
1726
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
1753
+ bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
1727
1754
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1728
1755
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXCheckButton, 1);
1729
- result = (FXbool)FXCheckButton_doesSaveUnder((FXCheckButton const *)arg1); vresult = result ? Qtrue : Qfalse;
1730
- return vresult; }
1756
+ result = (bool)FXCheckButton_doesSaveUnder((FXCheckButton const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
1731
1757
  static VALUE _wrap_FXCheckButton_setBackColor(int argc, VALUE *argv, VALUE self) { FXCheckButton *arg1 = (FXCheckButton *) 0 ;
1732
1758
  FXColor arg2 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1733
1759
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXCheckButton, 1); arg2 = to_FXColor(argv[0]);
1734
1760
  FXCheckButton_setBackColor(arg1,arg2); return Qnil; }
1761
+ static VALUE _wrap_FXCheckButton_tr(int argc, VALUE *argv, VALUE self) { FXCheckButton *arg1 = (FXCheckButton *) 0 ;
1762
+ FXchar *arg2 ; FXchar *arg3 = (FXchar *) 0 ; FXchar *result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 2))
1763
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1764
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXCheckButton, 1); arg2 = StringValuePtr(argv[0]); if (argc > 1) {
1765
+ arg3 = StringValuePtr(argv[1]); }
1766
+ result = (FXchar *)FXCheckButton_tr((FXCheckButton const *)arg1,(FXchar const *)arg2,(FXchar const *)arg3);
1767
+ vresult = rb_str_new2(result); return vresult; }
1768
+ static VALUE _wrap_FXCheckButton_dropEnable(int argc, VALUE *argv, VALUE self) { FXCheckButton *arg1 = (FXCheckButton *) 0 ;
1769
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1770
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXCheckButton, 1); FXCheckButton_dropEnable(arg1); return Qnil; }
1771
+ static VALUE _wrap_FXCheckButton_dropDisable(int argc, VALUE *argv, VALUE self) { FXCheckButton *arg1 = (FXCheckButton *) 0 ;
1772
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1773
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXCheckButton, 1); FXCheckButton_dropDisable(arg1); return Qnil; }
1735
1774
  static VALUE _wrap_FXCheckButton_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
1736
1775
  FXCheckButton *arg1 = (FXCheckButton *) 0 ; FXRegion *arg2 = 0 ; if ((argc < 1) || (argc > 1))
1737
1776
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
@@ -1995,10 +2034,10 @@ static VALUE _wrap_FXMenuButton_getHeightForWidth(int argc, VALUE *argv, VALUE s
1995
2034
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuButton, 1); arg2 = NUM2INT(argv[0]);
1996
2035
  result = (FXint)FXMenuButton_getHeightForWidth(arg1,arg2); vresult = INT2NUM(result); return vresult; }
1997
2036
  static VALUE _wrap_FXMenuButton_canFocus(int argc, VALUE *argv, VALUE self) { FXMenuButton *arg1 = (FXMenuButton *) 0 ;
1998
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
2037
+ bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
1999
2038
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2000
2039
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuButton, 1);
2001
- result = (FXbool)FXMenuButton_canFocus((FXMenuButton const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
2040
+ result = (bool)FXMenuButton_canFocus((FXMenuButton const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
2002
2041
  static VALUE _wrap_FXMenuButton_setFocus(int argc, VALUE *argv, VALUE self) { FXMenuButton *arg1 = (FXMenuButton *) 0 ;
2003
2042
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2004
2043
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuButton, 1); FXMenuButton_setFocus(arg1); return Qnil; }
@@ -2054,25 +2093,38 @@ static VALUE _wrap_FXMenuButton_hide(int argc, VALUE *argv, VALUE self) { FXMenu
2054
2093
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2055
2094
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuButton, 1); FXMenuButton_hide(arg1); return Qnil; }
2056
2095
  static VALUE _wrap_FXMenuButton_isComposite(int argc, VALUE *argv, VALUE self) { FXMenuButton *arg1 = (FXMenuButton *) 0 ;
2057
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
2096
+ bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
2058
2097
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2059
2098
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuButton, 1);
2060
- result = (FXbool)FXMenuButton_isComposite((FXMenuButton const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
2099
+ result = (bool)FXMenuButton_isComposite((FXMenuButton const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
2061
2100
  static VALUE _wrap_FXMenuButton_contains(int argc, VALUE *argv, VALUE self) { FXMenuButton *arg1 = (FXMenuButton *) 0 ;
2062
- FXint arg2 ; FXint arg3 ; FXbool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
2101
+ FXint arg2 ; FXint arg3 ; bool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
2063
2102
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
2064
2103
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuButton, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]);
2065
- result = (FXbool)FXMenuButton_contains((FXMenuButton const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse;
2104
+ result = (bool)FXMenuButton_contains((FXMenuButton const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse;
2066
2105
  return vresult; }
2067
2106
  static VALUE _wrap_FXMenuButton_doesSaveUnder(int argc, VALUE *argv, VALUE self) { FXMenuButton *arg1 = (FXMenuButton *) 0 ;
2068
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
2107
+ bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
2069
2108
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2070
2109
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuButton, 1);
2071
- result = (FXbool)FXMenuButton_doesSaveUnder((FXMenuButton const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
2110
+ result = (bool)FXMenuButton_doesSaveUnder((FXMenuButton const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
2072
2111
  static VALUE _wrap_FXMenuButton_setBackColor(int argc, VALUE *argv, VALUE self) { FXMenuButton *arg1 = (FXMenuButton *) 0 ;
2073
2112
  FXColor arg2 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
2074
2113
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuButton, 1); arg2 = to_FXColor(argv[0]);
2075
2114
  FXMenuButton_setBackColor(arg1,arg2); return Qnil; }
2115
+ static VALUE _wrap_FXMenuButton_tr(int argc, VALUE *argv, VALUE self) { FXMenuButton *arg1 = (FXMenuButton *) 0 ; FXchar *arg2 ;
2116
+ FXchar *arg3 = (FXchar *) 0 ; FXchar *result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 2))
2117
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
2118
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuButton, 1); arg2 = StringValuePtr(argv[0]); if (argc > 1) {
2119
+ arg3 = StringValuePtr(argv[1]); }
2120
+ result = (FXchar *)FXMenuButton_tr((FXMenuButton const *)arg1,(FXchar const *)arg2,(FXchar const *)arg3);
2121
+ vresult = rb_str_new2(result); return vresult; }
2122
+ static VALUE _wrap_FXMenuButton_dropEnable(int argc, VALUE *argv, VALUE self) { FXMenuButton *arg1 = (FXMenuButton *) 0 ;
2123
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2124
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuButton, 1); FXMenuButton_dropEnable(arg1); return Qnil; }
2125
+ static VALUE _wrap_FXMenuButton_dropDisable(int argc, VALUE *argv, VALUE self) { FXMenuButton *arg1 = (FXMenuButton *) 0 ;
2126
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2127
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuButton, 1); FXMenuButton_dropDisable(arg1); return Qnil; }
2076
2128
  static VALUE _wrap_FXMenuButton_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) { FXMenuButton *arg1 = (FXMenuButton *) 0 ;
2077
2129
  FXRegion *arg2 = 0 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
2078
2130
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuButton, 1);
@@ -2187,6 +2239,22 @@ static VALUE _wrap_new_FXOption(int argc, VALUE *argv, VALUE self) { FXComposite
2187
2239
  arg13 = NUM2INT(argv[12]); } if (argc > 13) { arg14 = NUM2INT(argv[13]); } {
2188
2240
  result = (FXOption *)new_FXOption(arg1,(FXString const &)*arg2,arg3,arg4,arg5,arg6,arg7,arg8,arg9,arg10,arg11,arg12,arg13,arg14);
2189
2241
  DATA_PTR(self) = result; FXRbRegisterRubyObj(self, result); if(rb_block_given_p()){ rb_yield(self); } } return self; }
2242
+ static VALUE _wrap_FXOption_selBackColore___(int argc, VALUE *argv, VALUE self) { FXOption *arg1 = (FXOption *) 0 ;
2243
+ FXColor arg2 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
2244
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXOption, 1); arg2 = to_FXColor(argv[0]); (arg1)->setSelBackColor(arg2);
2245
+ return Qnil; }
2246
+ static VALUE _wrap_FXOption_selBackColor(int argc, VALUE *argv, VALUE self) { FXOption *arg1 = (FXOption *) 0 ; FXColor result;
2247
+ VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2248
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXOption, 1);
2249
+ result = (FXColor)((FXOption const *)arg1)->getSelBackColor(); vresult = UINT2NUM(result); return vresult; }
2250
+ static VALUE _wrap_FXOption_selTextColore___(int argc, VALUE *argv, VALUE self) { FXOption *arg1 = (FXOption *) 0 ;
2251
+ FXColor arg2 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
2252
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXOption, 1); arg2 = to_FXColor(argv[0]); (arg1)->setSelTextColor(arg2);
2253
+ return Qnil; }
2254
+ static VALUE _wrap_FXOption_selTextColor(int argc, VALUE *argv, VALUE self) { FXOption *arg1 = (FXOption *) 0 ; FXColor result;
2255
+ VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2256
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXOption, 1);
2257
+ result = (FXColor)((FXOption const *)arg1)->getSelTextColor(); vresult = UINT2NUM(result); return vresult; }
2190
2258
  static void
2191
2259
  free_FXOption(FXOption *arg1) {
2192
2260
  delete arg1;
@@ -2233,9 +2301,9 @@ static VALUE _wrap_FXOption_getHeightForWidth(int argc, VALUE *argv, VALUE self)
2233
2301
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
2234
2302
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXOption, 1); arg2 = NUM2INT(argv[0]);
2235
2303
  result = (FXint)FXOption_getHeightForWidth(arg1,arg2); vresult = INT2NUM(result); return vresult; }
2236
- static VALUE _wrap_FXOption_canFocus(int argc, VALUE *argv, VALUE self) { FXOption *arg1 = (FXOption *) 0 ; FXbool result;
2304
+ static VALUE _wrap_FXOption_canFocus(int argc, VALUE *argv, VALUE self) { FXOption *arg1 = (FXOption *) 0 ; bool result;
2237
2305
  VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2238
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXOption, 1); result = (FXbool)FXOption_canFocus((FXOption const *)arg1);
2306
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXOption, 1); result = (bool)FXOption_canFocus((FXOption const *)arg1);
2239
2307
  vresult = result ? Qtrue : Qfalse; return vresult; }
2240
2308
  static VALUE _wrap_FXOption_setFocus(int argc, VALUE *argv, VALUE self) { FXOption *arg1 = (FXOption *) 0 ;
2241
2309
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
@@ -2291,23 +2359,36 @@ static VALUE _wrap_FXOption_show(int argc, VALUE *argv, VALUE self) { FXOption *
2291
2359
  static VALUE _wrap_FXOption_hide(int argc, VALUE *argv, VALUE self) { FXOption *arg1 = (FXOption *) 0 ;
2292
2360
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2293
2361
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXOption, 1); FXOption_hide(arg1); return Qnil; }
2294
- static VALUE _wrap_FXOption_isComposite(int argc, VALUE *argv, VALUE self) { FXOption *arg1 = (FXOption *) 0 ; FXbool result;
2362
+ static VALUE _wrap_FXOption_isComposite(int argc, VALUE *argv, VALUE self) { FXOption *arg1 = (FXOption *) 0 ; bool result;
2295
2363
  VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2296
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXOption, 1);
2297
- result = (FXbool)FXOption_isComposite((FXOption const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
2364
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXOption, 1); result = (bool)FXOption_isComposite((FXOption const *)arg1);
2365
+ vresult = result ? Qtrue : Qfalse; return vresult; }
2298
2366
  static VALUE _wrap_FXOption_contains(int argc, VALUE *argv, VALUE self) { FXOption *arg1 = (FXOption *) 0 ; FXint arg2 ;
2299
- FXint arg3 ; FXbool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
2367
+ FXint arg3 ; bool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
2300
2368
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
2301
2369
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXOption, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]);
2302
- result = (FXbool)FXOption_contains((FXOption const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse; return vresult; }
2303
- static VALUE _wrap_FXOption_doesSaveUnder(int argc, VALUE *argv, VALUE self) { FXOption *arg1 = (FXOption *) 0 ; FXbool result;
2370
+ result = (bool)FXOption_contains((FXOption const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse; return vresult; }
2371
+ static VALUE _wrap_FXOption_doesSaveUnder(int argc, VALUE *argv, VALUE self) { FXOption *arg1 = (FXOption *) 0 ; bool result;
2304
2372
  VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2305
2373
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXOption, 1);
2306
- result = (FXbool)FXOption_doesSaveUnder((FXOption const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
2374
+ result = (bool)FXOption_doesSaveUnder((FXOption const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
2307
2375
  static VALUE _wrap_FXOption_setBackColor(int argc, VALUE *argv, VALUE self) { FXOption *arg1 = (FXOption *) 0 ; FXColor arg2 ;
2308
2376
  if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
2309
2377
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXOption, 1); arg2 = to_FXColor(argv[0]);
2310
2378
  FXOption_setBackColor(arg1,arg2); return Qnil; }
2379
+ static VALUE _wrap_FXOption_tr(int argc, VALUE *argv, VALUE self) { FXOption *arg1 = (FXOption *) 0 ; FXchar *arg2 ;
2380
+ FXchar *arg3 = (FXchar *) 0 ; FXchar *result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 2))
2381
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
2382
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXOption, 1); arg2 = StringValuePtr(argv[0]); if (argc > 1) {
2383
+ arg3 = StringValuePtr(argv[1]); }
2384
+ result = (FXchar *)FXOption_tr((FXOption const *)arg1,(FXchar const *)arg2,(FXchar const *)arg3);
2385
+ vresult = rb_str_new2(result); return vresult; }
2386
+ static VALUE _wrap_FXOption_dropEnable(int argc, VALUE *argv, VALUE self) { FXOption *arg1 = (FXOption *) 0 ;
2387
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2388
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXOption, 1); FXOption_dropEnable(arg1); return Qnil; }
2389
+ static VALUE _wrap_FXOption_dropDisable(int argc, VALUE *argv, VALUE self) { FXOption *arg1 = (FXOption *) 0 ;
2390
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2391
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXOption, 1); FXOption_dropDisable(arg1); return Qnil; }
2311
2392
  static VALUE _wrap_FXOption_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) { FXOption *arg1 = (FXOption *) 0 ;
2312
2393
  FXRegion *arg2 = 0 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
2313
2394
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXOption, 1);
@@ -2549,10 +2630,10 @@ static VALUE _wrap_FXOptionMenu_getHeightForWidth(int argc, VALUE *argv, VALUE s
2549
2630
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXOptionMenu, 1); arg2 = NUM2INT(argv[0]);
2550
2631
  result = (FXint)FXOptionMenu_getHeightForWidth(arg1,arg2); vresult = INT2NUM(result); return vresult; }
2551
2632
  static VALUE _wrap_FXOptionMenu_canFocus(int argc, VALUE *argv, VALUE self) { FXOptionMenu *arg1 = (FXOptionMenu *) 0 ;
2552
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
2633
+ bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
2553
2634
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2554
2635
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXOptionMenu, 1);
2555
- result = (FXbool)FXOptionMenu_canFocus((FXOptionMenu const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
2636
+ result = (bool)FXOptionMenu_canFocus((FXOptionMenu const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
2556
2637
  static VALUE _wrap_FXOptionMenu_setFocus(int argc, VALUE *argv, VALUE self) { FXOptionMenu *arg1 = (FXOptionMenu *) 0 ;
2557
2638
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2558
2639
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXOptionMenu, 1); FXOptionMenu_setFocus(arg1); return Qnil; }
@@ -2608,25 +2689,38 @@ static VALUE _wrap_FXOptionMenu_hide(int argc, VALUE *argv, VALUE self) { FXOpti
2608
2689
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2609
2690
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXOptionMenu, 1); FXOptionMenu_hide(arg1); return Qnil; }
2610
2691
  static VALUE _wrap_FXOptionMenu_isComposite(int argc, VALUE *argv, VALUE self) { FXOptionMenu *arg1 = (FXOptionMenu *) 0 ;
2611
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
2692
+ bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
2612
2693
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2613
2694
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXOptionMenu, 1);
2614
- result = (FXbool)FXOptionMenu_isComposite((FXOptionMenu const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
2695
+ result = (bool)FXOptionMenu_isComposite((FXOptionMenu const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
2615
2696
  static VALUE _wrap_FXOptionMenu_contains(int argc, VALUE *argv, VALUE self) { FXOptionMenu *arg1 = (FXOptionMenu *) 0 ;
2616
- FXint arg2 ; FXint arg3 ; FXbool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
2697
+ FXint arg2 ; FXint arg3 ; bool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
2617
2698
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
2618
2699
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXOptionMenu, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]);
2619
- result = (FXbool)FXOptionMenu_contains((FXOptionMenu const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse;
2700
+ result = (bool)FXOptionMenu_contains((FXOptionMenu const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse;
2620
2701
  return vresult; }
2621
2702
  static VALUE _wrap_FXOptionMenu_doesSaveUnder(int argc, VALUE *argv, VALUE self) { FXOptionMenu *arg1 = (FXOptionMenu *) 0 ;
2622
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
2703
+ bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
2623
2704
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2624
2705
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXOptionMenu, 1);
2625
- result = (FXbool)FXOptionMenu_doesSaveUnder((FXOptionMenu const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
2706
+ result = (bool)FXOptionMenu_doesSaveUnder((FXOptionMenu const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
2626
2707
  static VALUE _wrap_FXOptionMenu_setBackColor(int argc, VALUE *argv, VALUE self) { FXOptionMenu *arg1 = (FXOptionMenu *) 0 ;
2627
2708
  FXColor arg2 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
2628
2709
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXOptionMenu, 1); arg2 = to_FXColor(argv[0]);
2629
2710
  FXOptionMenu_setBackColor(arg1,arg2); return Qnil; }
2711
+ static VALUE _wrap_FXOptionMenu_tr(int argc, VALUE *argv, VALUE self) { FXOptionMenu *arg1 = (FXOptionMenu *) 0 ; FXchar *arg2 ;
2712
+ FXchar *arg3 = (FXchar *) 0 ; FXchar *result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 2))
2713
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
2714
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXOptionMenu, 1); arg2 = StringValuePtr(argv[0]); if (argc > 1) {
2715
+ arg3 = StringValuePtr(argv[1]); }
2716
+ result = (FXchar *)FXOptionMenu_tr((FXOptionMenu const *)arg1,(FXchar const *)arg2,(FXchar const *)arg3);
2717
+ vresult = rb_str_new2(result); return vresult; }
2718
+ static VALUE _wrap_FXOptionMenu_dropEnable(int argc, VALUE *argv, VALUE self) { FXOptionMenu *arg1 = (FXOptionMenu *) 0 ;
2719
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2720
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXOptionMenu, 1); FXOptionMenu_dropEnable(arg1); return Qnil; }
2721
+ static VALUE _wrap_FXOptionMenu_dropDisable(int argc, VALUE *argv, VALUE self) { FXOptionMenu *arg1 = (FXOptionMenu *) 0 ;
2722
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2723
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXOptionMenu, 1); FXOptionMenu_dropDisable(arg1); return Qnil; }
2630
2724
  static VALUE _wrap_FXOptionMenu_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) { FXOptionMenu *arg1 = (FXOptionMenu *) 0 ;
2631
2725
  FXRegion *arg2 = 0 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
2632
2726
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXOptionMenu, 1);
@@ -2808,9 +2902,10 @@ static VALUE _wrap_new_FXRadioButton(int argc, VALUE *argv, VALUE self) { FXComp
2808
2902
  result = (FXRadioButton *)new_FXRadioButton(arg1,(FXString const &)*arg2,arg3,arg4,arg5,arg6,arg7,arg8,arg9,arg10,arg11,arg12,arg13);
2809
2903
  DATA_PTR(self) = result; FXRbRegisterRubyObj(self, result); if(rb_block_given_p()){ rb_yield(self); } } return self; }
2810
2904
  static VALUE _wrap_FXRadioButton_setCheck(int argc, VALUE *argv, VALUE self) { FXRadioButton *arg1 = (FXRadioButton *) 0 ;
2811
- FXbool arg2 = (FXbool) 1 ; if ((argc < 0) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2905
+ FXbool arg2 = (FXbool) 1 ; FXbool arg3 = (FXbool) 0 ; if ((argc < 0) || (argc > 2))
2906
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2812
2907
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXRadioButton, 1); if (argc > 0) { arg2 = to_FXbool(argv[0]); }
2813
- (arg1)->setCheck(arg2); return Qnil; }
2908
+ if (argc > 1) { arg3 = to_FXbool(argv[1]); } (arg1)->setCheck(arg2,arg3); return Qnil; }
2814
2909
  static VALUE _wrap_FXRadioButton_getCheck(int argc, VALUE *argv, VALUE self) { FXRadioButton *arg1 = (FXRadioButton *) 0 ;
2815
2910
  FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
2816
2911
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
@@ -2897,10 +2992,10 @@ static VALUE _wrap_FXRadioButton_getHeightForWidth(int argc, VALUE *argv, VALUE
2897
2992
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXRadioButton, 1); arg2 = NUM2INT(argv[0]);
2898
2993
  result = (FXint)FXRadioButton_getHeightForWidth(arg1,arg2); vresult = INT2NUM(result); return vresult; }
2899
2994
  static VALUE _wrap_FXRadioButton_canFocus(int argc, VALUE *argv, VALUE self) { FXRadioButton *arg1 = (FXRadioButton *) 0 ;
2900
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
2995
+ bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
2901
2996
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2902
2997
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXRadioButton, 1);
2903
- result = (FXbool)FXRadioButton_canFocus((FXRadioButton const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
2998
+ result = (bool)FXRadioButton_canFocus((FXRadioButton const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
2904
2999
  static VALUE _wrap_FXRadioButton_setFocus(int argc, VALUE *argv, VALUE self) { FXRadioButton *arg1 = (FXRadioButton *) 0 ;
2905
3000
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2906
3001
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXRadioButton, 1); FXRadioButton_setFocus(arg1); return Qnil; }
@@ -2956,26 +3051,38 @@ static VALUE _wrap_FXRadioButton_hide(int argc, VALUE *argv, VALUE self) { FXRad
2956
3051
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2957
3052
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXRadioButton, 1); FXRadioButton_hide(arg1); return Qnil; }
2958
3053
  static VALUE _wrap_FXRadioButton_isComposite(int argc, VALUE *argv, VALUE self) { FXRadioButton *arg1 = (FXRadioButton *) 0 ;
2959
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
3054
+ bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
2960
3055
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2961
3056
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXRadioButton, 1);
2962
- result = (FXbool)FXRadioButton_isComposite((FXRadioButton const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
3057
+ result = (bool)FXRadioButton_isComposite((FXRadioButton const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
2963
3058
  static VALUE _wrap_FXRadioButton_contains(int argc, VALUE *argv, VALUE self) { FXRadioButton *arg1 = (FXRadioButton *) 0 ;
2964
- FXint arg2 ; FXint arg3 ; FXbool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
3059
+ FXint arg2 ; FXint arg3 ; bool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
2965
3060
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
2966
3061
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXRadioButton, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]);
2967
- result = (FXbool)FXRadioButton_contains((FXRadioButton const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse;
3062
+ result = (bool)FXRadioButton_contains((FXRadioButton const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse;
2968
3063
  return vresult; }
2969
3064
  static VALUE _wrap_FXRadioButton_doesSaveUnder(int argc, VALUE *argv, VALUE self) { FXRadioButton *arg1 = (FXRadioButton *) 0 ;
2970
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
3065
+ bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
2971
3066
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2972
3067
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXRadioButton, 1);
2973
- result = (FXbool)FXRadioButton_doesSaveUnder((FXRadioButton const *)arg1); vresult = result ? Qtrue : Qfalse;
2974
- return vresult; }
3068
+ result = (bool)FXRadioButton_doesSaveUnder((FXRadioButton const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
2975
3069
  static VALUE _wrap_FXRadioButton_setBackColor(int argc, VALUE *argv, VALUE self) { FXRadioButton *arg1 = (FXRadioButton *) 0 ;
2976
3070
  FXColor arg2 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
2977
3071
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXRadioButton, 1); arg2 = to_FXColor(argv[0]);
2978
3072
  FXRadioButton_setBackColor(arg1,arg2); return Qnil; }
3073
+ static VALUE _wrap_FXRadioButton_tr(int argc, VALUE *argv, VALUE self) { FXRadioButton *arg1 = (FXRadioButton *) 0 ;
3074
+ FXchar *arg2 ; FXchar *arg3 = (FXchar *) 0 ; FXchar *result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 2))
3075
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
3076
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXRadioButton, 1); arg2 = StringValuePtr(argv[0]); if (argc > 1) {
3077
+ arg3 = StringValuePtr(argv[1]); }
3078
+ result = (FXchar *)FXRadioButton_tr((FXRadioButton const *)arg1,(FXchar const *)arg2,(FXchar const *)arg3);
3079
+ vresult = rb_str_new2(result); return vresult; }
3080
+ static VALUE _wrap_FXRadioButton_dropEnable(int argc, VALUE *argv, VALUE self) { FXRadioButton *arg1 = (FXRadioButton *) 0 ;
3081
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3082
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXRadioButton, 1); FXRadioButton_dropEnable(arg1); return Qnil; }
3083
+ static VALUE _wrap_FXRadioButton_dropDisable(int argc, VALUE *argv, VALUE self) { FXRadioButton *arg1 = (FXRadioButton *) 0 ;
3084
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3085
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXRadioButton, 1); FXRadioButton_dropDisable(arg1); return Qnil; }
2979
3086
  static VALUE _wrap_FXRadioButton_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
2980
3087
  FXRadioButton *arg1 = (FXRadioButton *) 0 ; FXRegion *arg2 = 0 ; if ((argc < 1) || (argc > 1))
2981
3088
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
@@ -3152,10 +3259,10 @@ static VALUE _wrap_FXTabItem_getHeightForWidth(int argc, VALUE *argv, VALUE self
3152
3259
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
3153
3260
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTabItem, 1); arg2 = NUM2INT(argv[0]);
3154
3261
  result = (FXint)FXTabItem_getHeightForWidth(arg1,arg2); vresult = INT2NUM(result); return vresult; }
3155
- static VALUE _wrap_FXTabItem_canFocus(int argc, VALUE *argv, VALUE self) { FXTabItem *arg1 = (FXTabItem *) 0 ; FXbool result;
3262
+ static VALUE _wrap_FXTabItem_canFocus(int argc, VALUE *argv, VALUE self) { FXTabItem *arg1 = (FXTabItem *) 0 ; bool result;
3156
3263
  VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3157
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTabItem, 1);
3158
- result = (FXbool)FXTabItem_canFocus((FXTabItem const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
3264
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTabItem, 1); result = (bool)FXTabItem_canFocus((FXTabItem const *)arg1);
3265
+ vresult = result ? Qtrue : Qfalse; return vresult; }
3159
3266
  static VALUE _wrap_FXTabItem_setFocus(int argc, VALUE *argv, VALUE self) { FXTabItem *arg1 = (FXTabItem *) 0 ;
3160
3267
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3161
3268
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTabItem, 1); FXTabItem_setFocus(arg1); return Qnil; }
@@ -3210,24 +3317,36 @@ static VALUE _wrap_FXTabItem_show(int argc, VALUE *argv, VALUE self) { FXTabItem
3210
3317
  static VALUE _wrap_FXTabItem_hide(int argc, VALUE *argv, VALUE self) { FXTabItem *arg1 = (FXTabItem *) 0 ;
3211
3318
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3212
3319
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTabItem, 1); FXTabItem_hide(arg1); return Qnil; }
3213
- static VALUE _wrap_FXTabItem_isComposite(int argc, VALUE *argv, VALUE self) { FXTabItem *arg1 = (FXTabItem *) 0 ; FXbool result;
3320
+ static VALUE _wrap_FXTabItem_isComposite(int argc, VALUE *argv, VALUE self) { FXTabItem *arg1 = (FXTabItem *) 0 ; bool result;
3214
3321
  VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3215
3322
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTabItem, 1);
3216
- result = (FXbool)FXTabItem_isComposite((FXTabItem const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
3323
+ result = (bool)FXTabItem_isComposite((FXTabItem const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
3217
3324
  static VALUE _wrap_FXTabItem_contains(int argc, VALUE *argv, VALUE self) { FXTabItem *arg1 = (FXTabItem *) 0 ; FXint arg2 ;
3218
- FXint arg3 ; FXbool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
3325
+ FXint arg3 ; bool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
3219
3326
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
3220
3327
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTabItem, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]);
3221
- result = (FXbool)FXTabItem_contains((FXTabItem const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse; return vresult; }
3222
- static VALUE _wrap_FXTabItem_doesSaveUnder(int argc, VALUE *argv, VALUE self) { FXTabItem *arg1 = (FXTabItem *) 0 ;
3223
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
3224
- rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3328
+ result = (bool)FXTabItem_contains((FXTabItem const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse; return vresult; }
3329
+ static VALUE _wrap_FXTabItem_doesSaveUnder(int argc, VALUE *argv, VALUE self) { FXTabItem *arg1 = (FXTabItem *) 0 ; bool result;
3330
+ VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3225
3331
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTabItem, 1);
3226
- result = (FXbool)FXTabItem_doesSaveUnder((FXTabItem const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
3332
+ result = (bool)FXTabItem_doesSaveUnder((FXTabItem const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
3227
3333
  static VALUE _wrap_FXTabItem_setBackColor(int argc, VALUE *argv, VALUE self) { FXTabItem *arg1 = (FXTabItem *) 0 ;
3228
3334
  FXColor arg2 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
3229
3335
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTabItem, 1); arg2 = to_FXColor(argv[0]);
3230
3336
  FXTabItem_setBackColor(arg1,arg2); return Qnil; }
3337
+ static VALUE _wrap_FXTabItem_tr(int argc, VALUE *argv, VALUE self) { FXTabItem *arg1 = (FXTabItem *) 0 ; FXchar *arg2 ;
3338
+ FXchar *arg3 = (FXchar *) 0 ; FXchar *result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 2))
3339
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
3340
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTabItem, 1); arg2 = StringValuePtr(argv[0]); if (argc > 1) {
3341
+ arg3 = StringValuePtr(argv[1]); }
3342
+ result = (FXchar *)FXTabItem_tr((FXTabItem const *)arg1,(FXchar const *)arg2,(FXchar const *)arg3);
3343
+ vresult = rb_str_new2(result); return vresult; }
3344
+ static VALUE _wrap_FXTabItem_dropEnable(int argc, VALUE *argv, VALUE self) { FXTabItem *arg1 = (FXTabItem *) 0 ;
3345
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3346
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTabItem, 1); FXTabItem_dropEnable(arg1); return Qnil; }
3347
+ static VALUE _wrap_FXTabItem_dropDisable(int argc, VALUE *argv, VALUE self) { FXTabItem *arg1 = (FXTabItem *) 0 ;
3348
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3349
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTabItem, 1); FXTabItem_dropDisable(arg1); return Qnil; }
3231
3350
  static VALUE _wrap_FXTabItem_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) { FXTabItem *arg1 = (FXTabItem *) 0 ;
3232
3351
  FXRegion *arg2 = 0 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
3233
3352
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXTabItem, 1);
@@ -3441,9 +3560,10 @@ static VALUE _wrap_FXToggleButton_getAltIcon(int argc, VALUE *argv, VALUE self)
3441
3560
  swig_type_info *ty = SWIG_TypeDynamicCast(SWIGTYPE_p_FXIcon, (void **) &result); vresult = FXRbGetRubyObj(result, ty); }
3442
3561
  return vresult; }
3443
3562
  static VALUE _wrap_FXToggleButton_setState(int argc, VALUE *argv, VALUE self) { FXToggleButton *arg1 = (FXToggleButton *) 0 ;
3444
- FXbool arg2 = (FXbool) 1 ; if ((argc < 0) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3563
+ FXbool arg2 = (FXbool) 1 ; FXbool arg3 = (FXbool) 0 ; if ((argc < 0) || (argc > 2))
3564
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3445
3565
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXToggleButton, 1); if (argc > 0) { arg2 = to_FXbool(argv[0]); }
3446
- (arg1)->setState(arg2); return Qnil; }
3566
+ if (argc > 1) { arg3 = to_FXbool(argv[1]); } (arg1)->setState(arg2,arg3); return Qnil; }
3447
3567
  static VALUE _wrap_FXToggleButton_getState(int argc, VALUE *argv, VALUE self) { FXToggleButton *arg1 = (FXToggleButton *) 0 ;
3448
3568
  FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
3449
3569
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
@@ -3527,10 +3647,10 @@ static VALUE _wrap_FXToggleButton_getHeightForWidth(int argc, VALUE *argv, VALUE
3527
3647
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXToggleButton, 1); arg2 = NUM2INT(argv[0]);
3528
3648
  result = (FXint)FXToggleButton_getHeightForWidth(arg1,arg2); vresult = INT2NUM(result); return vresult; }
3529
3649
  static VALUE _wrap_FXToggleButton_canFocus(int argc, VALUE *argv, VALUE self) { FXToggleButton *arg1 = (FXToggleButton *) 0 ;
3530
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
3650
+ bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
3531
3651
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3532
3652
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXToggleButton, 1);
3533
- result = (FXbool)FXToggleButton_canFocus((FXToggleButton const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
3653
+ result = (bool)FXToggleButton_canFocus((FXToggleButton const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
3534
3654
  static VALUE _wrap_FXToggleButton_setFocus(int argc, VALUE *argv, VALUE self) { FXToggleButton *arg1 = (FXToggleButton *) 0 ;
3535
3655
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3536
3656
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXToggleButton, 1); FXToggleButton_setFocus(arg1); return Qnil; }
@@ -3586,28 +3706,40 @@ static VALUE _wrap_FXToggleButton_hide(int argc, VALUE *argv, VALUE self) { FXTo
3586
3706
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3587
3707
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXToggleButton, 1); FXToggleButton_hide(arg1); return Qnil; }
3588
3708
  static VALUE _wrap_FXToggleButton_isComposite(int argc, VALUE *argv, VALUE self) { FXToggleButton *arg1 = (FXToggleButton *) 0 ;
3589
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
3709
+ bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
3590
3710
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3591
3711
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXToggleButton, 1);
3592
- result = (FXbool)FXToggleButton_isComposite((FXToggleButton const *)arg1); vresult = result ? Qtrue : Qfalse;
3593
- return vresult; }
3712
+ result = (bool)FXToggleButton_isComposite((FXToggleButton const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
3594
3713
  static VALUE _wrap_FXToggleButton_contains(int argc, VALUE *argv, VALUE self) { FXToggleButton *arg1 = (FXToggleButton *) 0 ;
3595
- FXint arg2 ; FXint arg3 ; FXbool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
3714
+ FXint arg2 ; FXint arg3 ; bool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
3596
3715
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
3597
3716
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXToggleButton, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]);
3598
- result = (FXbool)FXToggleButton_contains((FXToggleButton const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse;
3717
+ result = (bool)FXToggleButton_contains((FXToggleButton const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse;
3599
3718
  return vresult; }
3600
3719
  static VALUE _wrap_FXToggleButton_doesSaveUnder(int argc, VALUE *argv, VALUE self) {
3601
- FXToggleButton *arg1 = (FXToggleButton *) 0 ; FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
3720
+ FXToggleButton *arg1 = (FXToggleButton *) 0 ; bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
3602
3721
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3603
3722
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXToggleButton, 1);
3604
- result = (FXbool)FXToggleButton_doesSaveUnder((FXToggleButton const *)arg1); vresult = result ? Qtrue : Qfalse;
3723
+ result = (bool)FXToggleButton_doesSaveUnder((FXToggleButton const *)arg1); vresult = result ? Qtrue : Qfalse;
3605
3724
  return vresult; }
3606
3725
  static VALUE _wrap_FXToggleButton_setBackColor(int argc, VALUE *argv, VALUE self) {
3607
3726
  FXToggleButton *arg1 = (FXToggleButton *) 0 ; FXColor arg2 ; if ((argc < 1) || (argc > 1))
3608
3727
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
3609
3728
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXToggleButton, 1); arg2 = to_FXColor(argv[0]);
3610
3729
  FXToggleButton_setBackColor(arg1,arg2); return Qnil; }
3730
+ static VALUE _wrap_FXToggleButton_tr(int argc, VALUE *argv, VALUE self) { FXToggleButton *arg1 = (FXToggleButton *) 0 ;
3731
+ FXchar *arg2 ; FXchar *arg3 = (FXchar *) 0 ; FXchar *result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 2))
3732
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
3733
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXToggleButton, 1); arg2 = StringValuePtr(argv[0]); if (argc > 1) {
3734
+ arg3 = StringValuePtr(argv[1]); }
3735
+ result = (FXchar *)FXToggleButton_tr((FXToggleButton const *)arg1,(FXchar const *)arg2,(FXchar const *)arg3);
3736
+ vresult = rb_str_new2(result); return vresult; }
3737
+ static VALUE _wrap_FXToggleButton_dropEnable(int argc, VALUE *argv, VALUE self) { FXToggleButton *arg1 = (FXToggleButton *) 0 ;
3738
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3739
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXToggleButton, 1); FXToggleButton_dropEnable(arg1); return Qnil; }
3740
+ static VALUE _wrap_FXToggleButton_dropDisable(int argc, VALUE *argv, VALUE self) { FXToggleButton *arg1 = (FXToggleButton *) 0 ;
3741
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3742
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXToggleButton, 1); FXToggleButton_dropDisable(arg1); return Qnil; }
3611
3743
  static VALUE _wrap_FXToggleButton_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
3612
3744
  FXToggleButton *arg1 = (FXToggleButton *) 0 ; FXRegion *arg2 = 0 ; if ((argc < 1) || (argc > 1))
3613
3745
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
@@ -3854,9 +3986,9 @@ static VALUE _wrap_FXPicker_getHeightForWidth(int argc, VALUE *argv, VALUE self)
3854
3986
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
3855
3987
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXPicker, 1); arg2 = NUM2INT(argv[0]);
3856
3988
  result = (FXint)FXPicker_getHeightForWidth(arg1,arg2); vresult = INT2NUM(result); return vresult; }
3857
- static VALUE _wrap_FXPicker_canFocus(int argc, VALUE *argv, VALUE self) { FXPicker *arg1 = (FXPicker *) 0 ; FXbool result;
3989
+ static VALUE _wrap_FXPicker_canFocus(int argc, VALUE *argv, VALUE self) { FXPicker *arg1 = (FXPicker *) 0 ; bool result;
3858
3990
  VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3859
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXPicker, 1); result = (FXbool)FXPicker_canFocus((FXPicker const *)arg1);
3991
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXPicker, 1); result = (bool)FXPicker_canFocus((FXPicker const *)arg1);
3860
3992
  vresult = result ? Qtrue : Qfalse; return vresult; }
3861
3993
  static VALUE _wrap_FXPicker_setFocus(int argc, VALUE *argv, VALUE self) { FXPicker *arg1 = (FXPicker *) 0 ;
3862
3994
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
@@ -3912,23 +4044,36 @@ static VALUE _wrap_FXPicker_show(int argc, VALUE *argv, VALUE self) { FXPicker *
3912
4044
  static VALUE _wrap_FXPicker_hide(int argc, VALUE *argv, VALUE self) { FXPicker *arg1 = (FXPicker *) 0 ;
3913
4045
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3914
4046
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXPicker, 1); FXPicker_hide(arg1); return Qnil; }
3915
- static VALUE _wrap_FXPicker_isComposite(int argc, VALUE *argv, VALUE self) { FXPicker *arg1 = (FXPicker *) 0 ; FXbool result;
4047
+ static VALUE _wrap_FXPicker_isComposite(int argc, VALUE *argv, VALUE self) { FXPicker *arg1 = (FXPicker *) 0 ; bool result;
3916
4048
  VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3917
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXPicker, 1);
3918
- result = (FXbool)FXPicker_isComposite((FXPicker const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
4049
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXPicker, 1); result = (bool)FXPicker_isComposite((FXPicker const *)arg1);
4050
+ vresult = result ? Qtrue : Qfalse; return vresult; }
3919
4051
  static VALUE _wrap_FXPicker_contains(int argc, VALUE *argv, VALUE self) { FXPicker *arg1 = (FXPicker *) 0 ; FXint arg2 ;
3920
- FXint arg3 ; FXbool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
4052
+ FXint arg3 ; bool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
3921
4053
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
3922
4054
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXPicker, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]);
3923
- result = (FXbool)FXPicker_contains((FXPicker const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse; return vresult; }
3924
- static VALUE _wrap_FXPicker_doesSaveUnder(int argc, VALUE *argv, VALUE self) { FXPicker *arg1 = (FXPicker *) 0 ; FXbool result;
4055
+ result = (bool)FXPicker_contains((FXPicker const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse; return vresult; }
4056
+ static VALUE _wrap_FXPicker_doesSaveUnder(int argc, VALUE *argv, VALUE self) { FXPicker *arg1 = (FXPicker *) 0 ; bool result;
3925
4057
  VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3926
4058
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXPicker, 1);
3927
- result = (FXbool)FXPicker_doesSaveUnder((FXPicker const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
4059
+ result = (bool)FXPicker_doesSaveUnder((FXPicker const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
3928
4060
  static VALUE _wrap_FXPicker_setBackColor(int argc, VALUE *argv, VALUE self) { FXPicker *arg1 = (FXPicker *) 0 ; FXColor arg2 ;
3929
4061
  if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
3930
4062
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXPicker, 1); arg2 = to_FXColor(argv[0]);
3931
4063
  FXPicker_setBackColor(arg1,arg2); return Qnil; }
4064
+ static VALUE _wrap_FXPicker_tr(int argc, VALUE *argv, VALUE self) { FXPicker *arg1 = (FXPicker *) 0 ; FXchar *arg2 ;
4065
+ FXchar *arg3 = (FXchar *) 0 ; FXchar *result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 2))
4066
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
4067
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXPicker, 1); arg2 = StringValuePtr(argv[0]); if (argc > 1) {
4068
+ arg3 = StringValuePtr(argv[1]); }
4069
+ result = (FXchar *)FXPicker_tr((FXPicker const *)arg1,(FXchar const *)arg2,(FXchar const *)arg3);
4070
+ vresult = rb_str_new2(result); return vresult; }
4071
+ static VALUE _wrap_FXPicker_dropEnable(int argc, VALUE *argv, VALUE self) { FXPicker *arg1 = (FXPicker *) 0 ;
4072
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
4073
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXPicker, 1); FXPicker_dropEnable(arg1); return Qnil; }
4074
+ static VALUE _wrap_FXPicker_dropDisable(int argc, VALUE *argv, VALUE self) { FXPicker *arg1 = (FXPicker *) 0 ;
4075
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
4076
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXPicker, 1); FXPicker_dropDisable(arg1); return Qnil; }
3932
4077
  static VALUE _wrap_FXPicker_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) { FXPicker *arg1 = (FXPicker *) 0 ;
3933
4078
  FXRegion *arg2 = 0 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
3934
4079
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXPicker, 1);
@@ -3968,6 +4113,9 @@ static VALUE _wrap_FXPicker_clearShape(int argc, VALUE *argv, VALUE self) { FXPi
3968
4113
  static void *_p_FXToolBarTabTo_p_FXFrame(void *x) {
3969
4114
  return (void *)((FXFrame *) ((FXToolBarTab *) x));
3970
4115
  }
4116
+ static void *_p_FXColorRingTo_p_FXFrame(void *x) {
4117
+ return (void *)((FXFrame *) ((FXColorRing *) x));
4118
+ }
3971
4119
  static void *_p_FXColorBarTo_p_FXFrame(void *x) {
3972
4120
  return (void *)((FXFrame *) ((FXColorBar *) x));
3973
4121
  }
@@ -4013,21 +4161,18 @@ static void *_p_FXProgressBarTo_p_FXFrame(void *x) {
4013
4161
  static void *_p_FXColorWellTo_p_FXFrame(void *x) {
4014
4162
  return (void *)((FXFrame *) ((FXColorWell *) x));
4015
4163
  }
4016
- static void *_p_FXGradientBarTo_p_FXFrame(void *x) {
4017
- return (void *)((FXFrame *) ((FXGradientBar *) x));
4018
- }
4019
4164
  static void *_p_FXStatusLineTo_p_FXFrame(void *x) {
4020
4165
  return (void *)((FXFrame *) ((FXStatusLine *) x));
4021
4166
  }
4022
- static void *_p_FXVerticalSeparatorTo_p_FXFrame(void *x) {
4023
- return (void *)((FXFrame *) (FXSeparator *) ((FXVerticalSeparator *) x));
4024
- }
4025
4167
  static void *_p_FXHorizontalSeparatorTo_p_FXFrame(void *x) {
4026
4168
  return (void *)((FXFrame *) (FXSeparator *) ((FXHorizontalSeparator *) x));
4027
4169
  }
4028
4170
  static void *_p_FXSeparatorTo_p_FXFrame(void *x) {
4029
4171
  return (void *)((FXFrame *) ((FXSeparator *) x));
4030
4172
  }
4173
+ static void *_p_FXVerticalSeparatorTo_p_FXFrame(void *x) {
4174
+ return (void *)((FXFrame *) (FXSeparator *) ((FXVerticalSeparator *) x));
4175
+ }
4031
4176
  static void *_p_FXButtonTo_p_FXFrame(void *x) {
4032
4177
  return (void *)((FXFrame *) (FXLabel *) ((FXButton *) x));
4033
4178
  }
@@ -4049,6 +4194,9 @@ static void *_p_FXImageFrameTo_p_FXFrame(void *x) {
4049
4194
  static void *_p_FXOptionMenuTo_p_FXFrame(void *x) {
4050
4195
  return (void *)((FXFrame *) (FXLabel *) ((FXOptionMenu *) x));
4051
4196
  }
4197
+ static void *_p_FXKnobTo_p_FXFrame(void *x) {
4198
+ return (void *)((FXFrame *) ((FXKnob *) x));
4199
+ }
4052
4200
  static void *_p_FXSliderTo_p_FXFrame(void *x) {
4053
4201
  return (void *)((FXFrame *) ((FXSlider *) x));
4054
4202
  }
@@ -4121,8 +4269,8 @@ static void *_p_FXStatusLineTo_p_FXId(void *x) {
4121
4269
  static void *_p_FXTabItemTo_p_FXId(void *x) {
4122
4270
  return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *)(FXLabel *) ((FXTabItem *) x));
4123
4271
  }
4124
- static void *_p_FXGradientBarTo_p_FXId(void *x) {
4125
- return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXGradientBar *) x));
4272
+ static void *_p_FXKnobTo_p_FXId(void *x) {
4273
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXKnob *) x));
4126
4274
  }
4127
4275
  static void *_p_FXColorWheelTo_p_FXId(void *x) {
4128
4276
  return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXColorWheel *) x));
@@ -4187,6 +4335,9 @@ static void *_p_FXVisualTo_p_FXId(void *x) {
4187
4335
  static void *_p_FXButtonTo_p_FXId(void *x) {
4188
4336
  return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *)(FXLabel *) ((FXButton *) x));
4189
4337
  }
4338
+ static void *_p_FXColorRingTo_p_FXId(void *x) {
4339
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXColorRing *) x));
4340
+ }
4190
4341
  static void *_p_FXColorBarTo_p_FXId(void *x) {
4191
4342
  return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXColorBar *) x));
4192
4343
  }
@@ -4274,6 +4425,9 @@ static void *_p_FXStatusLineTo_p_FXObject(void *x) {
4274
4425
  static void *_p_FXTabItemTo_p_FXObject(void *x) {
4275
4426
  return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *)(FXLabel *) ((FXTabItem *) x));
4276
4427
  }
4428
+ static void *_p_FXKnobTo_p_FXObject(void *x) {
4429
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXKnob *) x));
4430
+ }
4277
4431
  static void *_p_FXStringDictTo_p_FXObject(void *x) {
4278
4432
  return (void *)((FXObject *) (FXDict *) ((FXStringDict *) x));
4279
4433
  }
@@ -4283,9 +4437,6 @@ static void *_p_FXColorWheelTo_p_FXObject(void *x) {
4283
4437
  static void *_p_FXBitmapFrameTo_p_FXObject(void *x) {
4284
4438
  return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXBitmapFrame *) x));
4285
4439
  }
4286
- static void *_p_FXGradientBarTo_p_FXObject(void *x) {
4287
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXGradientBar *) x));
4288
- }
4289
4440
  static void *_p_FXFontTo_p_FXObject(void *x) {
4290
4441
  return (void *)((FXObject *) (FXId *) ((FXFont *) x));
4291
4442
  }
@@ -4328,6 +4479,9 @@ static void *_p_FXProgressBarTo_p_FXObject(void *x) {
4328
4479
  static void *_p_FXOptionMenuTo_p_FXObject(void *x) {
4329
4480
  return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *)(FXLabel *) ((FXOptionMenu *) x));
4330
4481
  }
4482
+ static void *_p_FXTranslatorTo_p_FXObject(void *x) {
4483
+ return (void *)((FXObject *) ((FXTranslator *) x));
4484
+ }
4331
4485
  static void *_p_FXDictTo_p_FXObject(void *x) {
4332
4486
  return (void *)((FXObject *) ((FXDict *) x));
4333
4487
  }
@@ -4364,6 +4518,9 @@ static void *_p_FXVisualTo_p_FXObject(void *x) {
4364
4518
  static void *_p_FXButtonTo_p_FXObject(void *x) {
4365
4519
  return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *)(FXLabel *) ((FXButton *) x));
4366
4520
  }
4521
+ static void *_p_FXColorRingTo_p_FXObject(void *x) {
4522
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXColorRing *) x));
4523
+ }
4367
4524
  static void *_p_FXColorBarTo_p_FXObject(void *x) {
4368
4525
  return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXColorBar *) x));
4369
4526
  }
@@ -4412,9 +4569,6 @@ static void *_p_FXCompositeTo_p_FXWindow(void *x) {
4412
4569
  static void *_p_FXTextFieldTo_p_FXWindow(void *x) {
4413
4570
  return (void *)((FXWindow *) (FXFrame *) ((FXTextField *) x));
4414
4571
  }
4415
- static void *_p_FXRadioButtonTo_p_FXWindow(void *x) {
4416
- return (void *)((FXWindow *) (FXFrame *)(FXLabel *) ((FXRadioButton *) x));
4417
- }
4418
4572
  static void *_p_FXMenuButtonTo_p_FXWindow(void *x) {
4419
4573
  return (void *)((FXWindow *) (FXFrame *)(FXLabel *) ((FXMenuButton *) x));
4420
4574
  }
@@ -4424,6 +4578,9 @@ static void *_p_FXCheckButtonTo_p_FXWindow(void *x) {
4424
4578
  static void *_p_FXArrowButtonTo_p_FXWindow(void *x) {
4425
4579
  return (void *)((FXWindow *) (FXFrame *) ((FXArrowButton *) x));
4426
4580
  }
4581
+ static void *_p_FXRadioButtonTo_p_FXWindow(void *x) {
4582
+ return (void *)((FXWindow *) (FXFrame *)(FXLabel *) ((FXRadioButton *) x));
4583
+ }
4427
4584
  static void *_p_FXToggleButtonTo_p_FXWindow(void *x) {
4428
4585
  return (void *)((FXWindow *) (FXFrame *)(FXLabel *) ((FXToggleButton *) x));
4429
4586
  }
@@ -4466,8 +4623,8 @@ static void *_p_FXStatusLineTo_p_FXWindow(void *x) {
4466
4623
  static void *_p_FXTabItemTo_p_FXWindow(void *x) {
4467
4624
  return (void *)((FXWindow *) (FXFrame *)(FXLabel *) ((FXTabItem *) x));
4468
4625
  }
4469
- static void *_p_FXGradientBarTo_p_FXWindow(void *x) {
4470
- return (void *)((FXWindow *) (FXFrame *) ((FXGradientBar *) x));
4626
+ static void *_p_FXKnobTo_p_FXWindow(void *x) {
4627
+ return (void *)((FXWindow *) (FXFrame *) ((FXKnob *) x));
4471
4628
  }
4472
4629
  static void *_p_FXColorWheelTo_p_FXWindow(void *x) {
4473
4630
  return (void *)((FXWindow *) (FXFrame *) ((FXColorWheel *) x));
@@ -4517,6 +4674,9 @@ static void *_p_FXButtonTo_p_FXWindow(void *x) {
4517
4674
  static void *_p_FXColorBarTo_p_FXWindow(void *x) {
4518
4675
  return (void *)((FXWindow *) (FXFrame *) ((FXColorBar *) x));
4519
4676
  }
4677
+ static void *_p_FXColorRingTo_p_FXWindow(void *x) {
4678
+ return (void *)((FXWindow *) (FXFrame *) ((FXColorRing *) x));
4679
+ }
4520
4680
  static void *_p_FXShellTo_p_FXComposite(void *x) {
4521
4681
  return (void *)((FXComposite *) ((FXShell *) x));
4522
4682
  }
@@ -4610,8 +4770,8 @@ static void *_p_FXStatusLineTo_p_FXDrawable(void *x) {
4610
4770
  static void *_p_FXTabItemTo_p_FXDrawable(void *x) {
4611
4771
  return (void *)((FXDrawable *) (FXWindow *)(FXFrame *)(FXLabel *) ((FXTabItem *) x));
4612
4772
  }
4613
- static void *_p_FXGradientBarTo_p_FXDrawable(void *x) {
4614
- return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXGradientBar *) x));
4773
+ static void *_p_FXKnobTo_p_FXDrawable(void *x) {
4774
+ return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXKnob *) x));
4615
4775
  }
4616
4776
  static void *_p_FXColorWheelTo_p_FXDrawable(void *x) {
4617
4777
  return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXColorWheel *) x));
@@ -4628,12 +4788,12 @@ static void *_p_FXLabelTo_p_FXDrawable(void *x) {
4628
4788
  static void *_p_FXPickerTo_p_FXDrawable(void *x) {
4629
4789
  return (void *)((FXDrawable *) (FXWindow *)(FXFrame *)(FXLabel *)(FXButton *) ((FXPicker *) x));
4630
4790
  }
4631
- static void *_p_FXOptionMenuTo_p_FXDrawable(void *x) {
4632
- return (void *)((FXDrawable *) (FXWindow *)(FXFrame *)(FXLabel *) ((FXOptionMenu *) x));
4633
- }
4634
4791
  static void *_p_FXProgressBarTo_p_FXDrawable(void *x) {
4635
4792
  return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXProgressBar *) x));
4636
4793
  }
4794
+ static void *_p_FXOptionMenuTo_p_FXDrawable(void *x) {
4795
+ return (void *)((FXDrawable *) (FXWindow *)(FXFrame *)(FXLabel *) ((FXOptionMenu *) x));
4796
+ }
4637
4797
  static void *_p_FXHeaderTo_p_FXDrawable(void *x) {
4638
4798
  return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXHeader *) x));
4639
4799
  }
@@ -4661,13 +4821,16 @@ static void *_p_FXButtonTo_p_FXDrawable(void *x) {
4661
4821
  static void *_p_FXColorBarTo_p_FXDrawable(void *x) {
4662
4822
  return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXColorBar *) x));
4663
4823
  }
4664
- 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_FXPicker", _p_FXPickerTo_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_FXCheckButton", _p_FXCheckButtonTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXMenuButton", _p_FXMenuButtonTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXRadioButton", _p_FXRadioButtonTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXToggleButton", _p_FXToggleButtonTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXTriStateButton", _p_FXTriStateButtonTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXLabel", _p_FXLabelTo_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_FXButton", _p_FXButtonTo_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_FXTabItem", _p_FXTabItemTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXOption", _p_FXOptionTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXHeader", _p_FXHeaderTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXOptionMenu", _p_FXOptionMenuTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXImageFrame", _p_FXImageFrameTo_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_FXDial", _p_FXDialTo_p_FXFrame, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
4665
- static swig_type_info _swigt__p_FXObject[] = {{"_p_FXObject", 0, "FXObject *", 0, 0, 0, 0},{"_p_FXDict", _p_FXDictTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXOption", _p_FXOptionTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXDial", _p_FXDialTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXSettings", _p_FXSettingsTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXAccelTable", _p_FXAccelTableTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXComposite", _p_FXCompositeTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXTextField", _p_FXTextFieldTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXRegistry", _p_FXRegistryTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXId", _p_FXIdTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXTriStateButton", _p_FXTriStateButtonTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXToggleButton", _p_FXToggleButtonTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXRadioButton", _p_FXRadioButtonTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXMenuButton", _p_FXMenuButtonTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXCheckButton", _p_FXCheckButtonTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXArrowButton", _p_FXArrowButtonTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXIconDict", _p_FXIconDictTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXShell", _p_FXShellTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXPopup", _p_FXPopupTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXWindow", _p_FXWindowTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_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_FXRuler", _p_FXRulerTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXRecentFiles", _p_FXRecentFilesTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXDocument", _p_FXDocumentTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXVerticalSeparator", _p_FXVerticalSeparatorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXHorizontalSeparator", _p_FXHorizontalSeparatorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXSeparator", _p_FXSeparatorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXStatusLine", _p_FXStatusLineTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXTabItem", _p_FXTabItemTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXObject", 0, 0, 0, 0, 0, 0},{"_p_FXStringDict", _p_FXStringDictTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXGradientBar", _p_FXGradientBarTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXColorWheel", _p_FXColorWheelTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXBitmapFrame", _p_FXBitmapFrameTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXImageFrame", _p_FXImageFrameTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXLabel", _p_FXLabelTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXFileDict", _p_FXFileDictTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXPicker", _p_FXPickerTo_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_FXOptionMenu", _p_FXOptionMenuTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXProgressBar", _p_FXProgressBarTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXGIFCursor", _p_FXGIFCursorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXCURCursor", _p_FXCURCursorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXCursor", _p_FXCursorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXDrawable", _p_FXDrawableTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXDelegator", _p_FXDelegatorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXHeader", _p_FXHeaderTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXApp", _p_FXAppTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXColorWell", _p_FXColorWellTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXHeaderItem", _p_FXHeaderItemTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXToolBarTab", _p_FXToolBarTabTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXFrame", _p_FXFrameTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXFont", _p_FXFontTo_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_FXButton", _p_FXButtonTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXVisual", _p_FXVisualTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXColorBar", _p_FXColorBarTo_p_FXObject, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
4824
+ static void *_p_FXColorRingTo_p_FXDrawable(void *x) {
4825
+ return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXColorRing *) x));
4826
+ }
4827
+ 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_FXPicker", _p_FXPickerTo_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_FXCheckButton", _p_FXCheckButtonTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXMenuButton", _p_FXMenuButtonTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXRadioButton", _p_FXRadioButtonTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXTriStateButton", _p_FXTriStateButtonTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXToggleButton", _p_FXToggleButtonTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXLabel", _p_FXLabelTo_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_FXButton", _p_FXButtonTo_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_FXVerticalSeparator", _p_FXVerticalSeparatorTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXTextField", _p_FXTextFieldTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXTabItem", _p_FXTabItemTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXKnob", _p_FXKnobTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXOption", _p_FXOptionTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXHeader", _p_FXHeaderTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXOptionMenu", _p_FXOptionMenuTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXImageFrame", _p_FXImageFrameTo_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_FXDial", _p_FXDialTo_p_FXFrame, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
4828
+ static swig_type_info _swigt__p_FXObject[] = {{"_p_FXObject", 0, "FXObject *", 0, 0, 0, 0},{"_p_FXDict", _p_FXDictTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXOption", _p_FXOptionTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXDial", _p_FXDialTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXSettings", _p_FXSettingsTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXAccelTable", _p_FXAccelTableTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXComposite", _p_FXCompositeTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXTextField", _p_FXTextFieldTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXRegistry", _p_FXRegistryTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXId", _p_FXIdTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXTriStateButton", _p_FXTriStateButtonTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXToggleButton", _p_FXToggleButtonTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXRadioButton", _p_FXRadioButtonTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXMenuButton", _p_FXMenuButtonTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXCheckButton", _p_FXCheckButtonTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXArrowButton", _p_FXArrowButtonTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXIconDict", _p_FXIconDictTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXShell", _p_FXShellTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXPopup", _p_FXPopupTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXWindow", _p_FXWindowTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_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_FXRuler", _p_FXRulerTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXRecentFiles", _p_FXRecentFilesTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXDocument", _p_FXDocumentTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXVerticalSeparator", _p_FXVerticalSeparatorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXHorizontalSeparator", _p_FXHorizontalSeparatorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXSeparator", _p_FXSeparatorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXStatusLine", _p_FXStatusLineTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXTabItem", _p_FXTabItemTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXObject", 0, 0, 0, 0, 0, 0},{"_p_FXStringDict", _p_FXStringDictTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXColorWheel", _p_FXColorWheelTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXBitmapFrame", _p_FXBitmapFrameTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXImageFrame", _p_FXImageFrameTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXLabel", _p_FXLabelTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXFileDict", _p_FXFileDictTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXPicker", _p_FXPickerTo_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_FXOptionMenu", _p_FXOptionMenuTo_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_FXGIFCursor", _p_FXGIFCursorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXCURCursor", _p_FXCURCursorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXCursor", _p_FXCursorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXDrawable", _p_FXDrawableTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXDelegator", _p_FXDelegatorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXTranslator", _p_FXTranslatorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXHeader", _p_FXHeaderTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXApp", _p_FXAppTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXColorWell", _p_FXColorWellTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXHeaderItem", _p_FXHeaderItemTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXToolBarTab", _p_FXToolBarTabTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXFrame", _p_FXFrameTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXFont", _p_FXFontTo_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_FXButton", _p_FXButtonTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXVisual", _p_FXVisualTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXColorRing", _p_FXColorRingTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXColorBar", _p_FXColorBarTo_p_FXObject, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
4666
4829
  static swig_type_info _swigt__p_FXPopup[] = {{"_p_FXPopup", 0, "FXPopup *", 0, 0, 0, 0},{"_p_FXPopup", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
4667
4830
  static swig_type_info _swigt__p_FXPicker[] = {{"_p_FXPicker", 0, "FXPicker *", 0, 0, 0, 0},{"_p_FXPicker", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
4668
4831
  static swig_type_info _swigt__p_FXToggleButton[] = {{"_p_FXToggleButton", 0, "FXToggleButton *", 0, 0, 0, 0},{"_p_FXToggleButton", 0, 0, 0, 0, 0, 0},{"_p_FXTriStateButton", _p_FXTriStateButtonTo_p_FXToggleButton, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
4669
4832
  static swig_type_info _swigt__p_FXLabel[] = {{"_p_FXLabel", 0, "FXLabel *", 0, 0, 0, 0},{"_p_FXOption", _p_FXOptionTo_p_FXLabel, 0, 0, 0, 0, 0},{"_p_FXLabel", 0, 0, 0, 0, 0, 0},{"_p_FXButton", _p_FXButtonTo_p_FXLabel, 0, 0, 0, 0, 0},{"_p_FXPicker", _p_FXPickerTo_p_FXLabel, 0, 0, 0, 0, 0},{"_p_FXTabItem", _p_FXTabItemTo_p_FXLabel, 0, 0, 0, 0, 0},{"_p_FXCheckButton", _p_FXCheckButtonTo_p_FXLabel, 0, 0, 0, 0, 0},{"_p_FXMenuButton", _p_FXMenuButtonTo_p_FXLabel, 0, 0, 0, 0, 0},{"_p_FXRadioButton", _p_FXRadioButtonTo_p_FXLabel, 0, 0, 0, 0, 0},{"_p_FXToggleButton", _p_FXToggleButtonTo_p_FXLabel, 0, 0, 0, 0, 0},{"_p_FXTriStateButton", _p_FXTriStateButtonTo_p_FXLabel, 0, 0, 0, 0, 0},{"_p_FXOptionMenu", _p_FXOptionMenuTo_p_FXLabel, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
4670
- static swig_type_info _swigt__p_FXWindow[] = {{"_p_FXWindow", 0, "FXWindow *", 0, 0, 0, 0},{"_p_FXOption", _p_FXOptionTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXDial", _p_FXDialTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXComposite", _p_FXCompositeTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXTextField", _p_FXTextFieldTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXTriStateButton", _p_FXTriStateButtonTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXToggleButton", _p_FXToggleButtonTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXArrowButton", _p_FXArrowButtonTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXRadioButton", _p_FXRadioButtonTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXMenuButton", _p_FXMenuButtonTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXCheckButton", _p_FXCheckButtonTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXShell", _p_FXShellTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXPopup", _p_FXPopupTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXWindow", 0, 0, 0, 0, 0, 0},{"_p_FXRootWindow", _p_FXRootWindowTo_p_FXWindow, 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_FXRuler", _p_FXRulerTo_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_FXTabItem", _p_FXTabItemTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXGradientBar", _p_FXGradientBarTo_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_FXImageFrame", _p_FXImageFrameTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXLabel", _p_FXLabelTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXPicker", _p_FXPickerTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXOptionMenu", _p_FXOptionMenuTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXProgressBar", _p_FXProgressBarTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXHeader", _p_FXHeaderTo_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_FXFrame", _p_FXFrameTo_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_FXButton", _p_FXButtonTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXColorBar", _p_FXColorBarTo_p_FXWindow, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
4833
+ static swig_type_info _swigt__p_FXWindow[] = {{"_p_FXWindow", 0, "FXWindow *", 0, 0, 0, 0},{"_p_FXOption", _p_FXOptionTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXDial", _p_FXDialTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXComposite", _p_FXCompositeTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXTextField", _p_FXTextFieldTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXTriStateButton", _p_FXTriStateButtonTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXToggleButton", _p_FXToggleButtonTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXRadioButton", _p_FXRadioButtonTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXMenuButton", _p_FXMenuButtonTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXCheckButton", _p_FXCheckButtonTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXArrowButton", _p_FXArrowButtonTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXShell", _p_FXShellTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXPopup", _p_FXPopupTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXWindow", 0, 0, 0, 0, 0, 0},{"_p_FXRootWindow", _p_FXRootWindowTo_p_FXWindow, 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_FXRuler", _p_FXRulerTo_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_FXTabItem", _p_FXTabItemTo_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_FXImageFrame", _p_FXImageFrameTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXLabel", _p_FXLabelTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXPicker", _p_FXPickerTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXOptionMenu", _p_FXOptionMenuTo_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_FXHeader", _p_FXHeaderTo_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_FXFrame", _p_FXFrameTo_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_FXButton", _p_FXButtonTo_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},{0, 0, 0, 0, 0, 0, 0}};
4671
4834
  static swig_type_info _swigt__p_FXComposite[] = {{"_p_FXComposite", 0, "FXComposite *", 0, 0, 0, 0},{"_p_FXComposite", 0, 0, 0, 0, 0, 0},{"_p_FXShell", _p_FXShellTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXRootWindow", _p_FXRootWindowTo_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_FXMainWindow", _p_FXMainWindowTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXSplashWindow", _p_FXSplashWindowTo_p_FXComposite, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
4672
4835
  static swig_type_info _swigt__p_FXCheckButton[] = {{"_p_FXCheckButton", 0, "FXCheckButton *", 0, 0, 0, 0},{"_p_FXCheckButton", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
4673
4836
  static swig_type_info _swigt__p_FXMenuButton[] = {{"_p_FXMenuButton", 0, "FXMenuButton *", 0, 0, 0, 0},{"_p_FXMenuButton", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
@@ -4675,11 +4838,11 @@ static swig_type_info _swigt__p_FXRadioButton[] = {{"_p_FXRadioButton", 0, "FXRa
4675
4838
  static swig_type_info _swigt__p_FXTriStateButton[] = {{"_p_FXTriStateButton", 0, "FXTriStateButton *", 0, 0, 0, 0},{"_p_FXTriStateButton", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
4676
4839
  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}};
4677
4840
  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}};
4678
- static swig_type_info _swigt__p_FXId[] = {{"_p_FXId", 0, "FXId *", 0, 0, 0, 0},{"_p_FXOption", _p_FXOptionTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXDial", _p_FXDialTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXComposite", _p_FXCompositeTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXTextField", _p_FXTextFieldTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXId", 0, 0, 0, 0, 0, 0},{"_p_FXTriStateButton", _p_FXTriStateButtonTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXToggleButton", _p_FXToggleButtonTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXRadioButton", _p_FXRadioButtonTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXArrowButton", _p_FXArrowButtonTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXCheckButton", _p_FXCheckButtonTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXMenuButton", _p_FXMenuButtonTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXShell", _p_FXShellTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXPopup", _p_FXPopupTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXWindow", _p_FXWindowTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXRootWindow", _p_FXRootWindowTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXTopWindow", _p_FXTopWindowTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXMainWindow", _p_FXMainWindowTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXSplashWindow", _p_FXSplashWindowTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXRuler", _p_FXRulerTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXVerticalSeparator", _p_FXVerticalSeparatorTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXHorizontalSeparator", _p_FXHorizontalSeparatorTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXSeparator", _p_FXSeparatorTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXStatusLine", _p_FXStatusLineTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXTabItem", _p_FXTabItemTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXGradientBar", _p_FXGradientBarTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXColorWheel", _p_FXColorWheelTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXBitmapFrame", _p_FXBitmapFrameTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXImageFrame", _p_FXImageFrameTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXLabel", _p_FXLabelTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXPicker", _p_FXPickerTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXOptionMenu", _p_FXOptionMenuTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXProgressBar", _p_FXProgressBarTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXGIFCursor", _p_FXGIFCursorTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXCURCursor", _p_FXCURCursorTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXCursor", _p_FXCursorTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXDrawable", _p_FXDrawableTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXHeader", _p_FXHeaderTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXColorWell", _p_FXColorWellTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXToolBarTab", _p_FXToolBarTabTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXFrame", _p_FXFrameTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXFont", _p_FXFontTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXSlider", _p_FXSliderTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXRealSlider", _p_FXRealSliderTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXButton", _p_FXButtonTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXVisual", _p_FXVisualTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXColorBar", _p_FXColorBarTo_p_FXId, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
4841
+ static swig_type_info _swigt__p_FXId[] = {{"_p_FXId", 0, "FXId *", 0, 0, 0, 0},{"_p_FXOption", _p_FXOptionTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXDial", _p_FXDialTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXComposite", _p_FXCompositeTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXTextField", _p_FXTextFieldTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXId", 0, 0, 0, 0, 0, 0},{"_p_FXTriStateButton", _p_FXTriStateButtonTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXToggleButton", _p_FXToggleButtonTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXRadioButton", _p_FXRadioButtonTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXArrowButton", _p_FXArrowButtonTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXCheckButton", _p_FXCheckButtonTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXMenuButton", _p_FXMenuButtonTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXShell", _p_FXShellTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXPopup", _p_FXPopupTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXWindow", _p_FXWindowTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXRootWindow", _p_FXRootWindowTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXTopWindow", _p_FXTopWindowTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXMainWindow", _p_FXMainWindowTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXSplashWindow", _p_FXSplashWindowTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXRuler", _p_FXRulerTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXVerticalSeparator", _p_FXVerticalSeparatorTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXHorizontalSeparator", _p_FXHorizontalSeparatorTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXSeparator", _p_FXSeparatorTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXStatusLine", _p_FXStatusLineTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXTabItem", _p_FXTabItemTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXColorWheel", _p_FXColorWheelTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXBitmapFrame", _p_FXBitmapFrameTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXImageFrame", _p_FXImageFrameTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXLabel", _p_FXLabelTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXPicker", _p_FXPickerTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXOptionMenu", _p_FXOptionMenuTo_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_FXGIFCursor", _p_FXGIFCursorTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXCURCursor", _p_FXCURCursorTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXCursor", _p_FXCursorTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXDrawable", _p_FXDrawableTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXHeader", _p_FXHeaderTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXColorWell", _p_FXColorWellTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXToolBarTab", _p_FXToolBarTabTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXFrame", _p_FXFrameTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXFont", _p_FXFontTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXSlider", _p_FXSliderTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXRealSlider", _p_FXRealSliderTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXButton", _p_FXButtonTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXVisual", _p_FXVisualTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXColorRing", _p_FXColorRingTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXColorBar", _p_FXColorBarTo_p_FXId, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
4679
4842
  static swig_type_info _swigt__p_FXTabBar[] = {{"_p_FXTabBar", 0, "FXTabBar *", 0, 0, 0, 0},{"_p_FXTabBar", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
4680
4843
  static swig_type_info _swigt__p_FXButton[] = {{"_p_FXButton", 0, "FXButton *", 0, 0, 0, 0},{"_p_FXButton", 0, 0, 0, 0, 0, 0},{"_p_FXPicker", _p_FXPickerTo_p_FXButton, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
4681
4844
  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}};
4682
- static swig_type_info _swigt__p_FXDrawable[] = {{"_p_FXDrawable", 0, "FXDrawable *", 0, 0, 0, 0},{"_p_FXOption", _p_FXOptionTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXDial", _p_FXDialTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXComposite", _p_FXCompositeTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXTextField", _p_FXTextFieldTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXTriStateButton", _p_FXTriStateButtonTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXToggleButton", _p_FXToggleButtonTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXRadioButton", _p_FXRadioButtonTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXMenuButton", _p_FXMenuButtonTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXCheckButton", _p_FXCheckButtonTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXArrowButton", _p_FXArrowButtonTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXShell", _p_FXShellTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXPopup", _p_FXPopupTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXWindow", _p_FXWindowTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXRootWindow", _p_FXRootWindowTo_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_FXRuler", _p_FXRulerTo_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_FXTabItem", _p_FXTabItemTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXGradientBar", _p_FXGradientBarTo_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_FXImageFrame", _p_FXImageFrameTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXLabel", _p_FXLabelTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXPicker", _p_FXPickerTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXOptionMenu", _p_FXOptionMenuTo_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_FXHeader", _p_FXHeaderTo_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_FXFrame", _p_FXFrameTo_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_FXButton", _p_FXButtonTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXColorBar", _p_FXColorBarTo_p_FXDrawable, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
4845
+ static swig_type_info _swigt__p_FXDrawable[] = {{"_p_FXDrawable", 0, "FXDrawable *", 0, 0, 0, 0},{"_p_FXOption", _p_FXOptionTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXDial", _p_FXDialTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXComposite", _p_FXCompositeTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXTextField", _p_FXTextFieldTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXTriStateButton", _p_FXTriStateButtonTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXToggleButton", _p_FXToggleButtonTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXRadioButton", _p_FXRadioButtonTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXMenuButton", _p_FXMenuButtonTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXCheckButton", _p_FXCheckButtonTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXArrowButton", _p_FXArrowButtonTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXShell", _p_FXShellTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXPopup", _p_FXPopupTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXWindow", _p_FXWindowTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXRootWindow", _p_FXRootWindowTo_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_FXRuler", _p_FXRulerTo_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_FXTabItem", _p_FXTabItemTo_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_FXImageFrame", _p_FXImageFrameTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXLabel", _p_FXLabelTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXPicker", _p_FXPickerTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXOptionMenu", _p_FXOptionMenuTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXKnob", _p_FXKnobTo_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_FXHeader", _p_FXHeaderTo_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_FXFrame", _p_FXFrameTo_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_FXButton", _p_FXButtonTo_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},{0, 0, 0, 0, 0, 0, 0}};
4683
4846
  static swig_type_info _swigt__p_FXTabItem[] = {{"_p_FXTabItem", 0, "FXTabItem *", 0, 0, 0, 0},{"_p_FXTabItem", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
4684
4847
  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}};
4685
4848
  static swig_type_info _swigt__p_FXOption[] = {{"_p_FXOption", 0, "FXOption *", 0, 0, 0, 0},{"_p_FXOption", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
@@ -4807,6 +4970,9 @@ SWIGEXPORT(void) Init_label(void) {
4807
4970
  rb_define_method(cFXLabel.klass, "contains", VALUEFUNC(_wrap_FXLabel_contains), -1);
4808
4971
  rb_define_method(cFXLabel.klass, "doesSaveUnder", VALUEFUNC(_wrap_FXLabel_doesSaveUnder), -1);
4809
4972
  rb_define_method(cFXLabel.klass, "setBackColor", VALUEFUNC(_wrap_FXLabel_setBackColor), -1);
4973
+ rb_define_method(cFXLabel.klass, "tr", VALUEFUNC(_wrap_FXLabel_tr), -1);
4974
+ rb_define_method(cFXLabel.klass, "dropEnable", VALUEFUNC(_wrap_FXLabel_dropEnable), -1);
4975
+ rb_define_method(cFXLabel.klass, "dropDisable", VALUEFUNC(_wrap_FXLabel_dropDisable), -1);
4810
4976
  rb_define_method(cFXLabel.klass, "setShape", VALUEFUNC(_wrap_FXLabel_setShape), -1);
4811
4977
  rb_define_method(cFXLabel.klass, "clearShape", VALUEFUNC(_wrap_FXLabel_clearShape), -1);
4812
4978
  cFXLabel.mark = (void (*)(void *)) FXRbLabel::markfunc;
@@ -4882,6 +5048,9 @@ SWIGEXPORT(void) Init_label(void) {
4882
5048
  rb_define_method(cFXButton.klass, "contains", VALUEFUNC(_wrap_FXButton_contains), -1);
4883
5049
  rb_define_method(cFXButton.klass, "doesSaveUnder", VALUEFUNC(_wrap_FXButton_doesSaveUnder), -1);
4884
5050
  rb_define_method(cFXButton.klass, "setBackColor", VALUEFUNC(_wrap_FXButton_setBackColor), -1);
5051
+ rb_define_method(cFXButton.klass, "tr", VALUEFUNC(_wrap_FXButton_tr), -1);
5052
+ rb_define_method(cFXButton.klass, "dropEnable", VALUEFUNC(_wrap_FXButton_dropEnable), -1);
5053
+ rb_define_method(cFXButton.klass, "dropDisable", VALUEFUNC(_wrap_FXButton_dropDisable), -1);
4885
5054
  rb_define_method(cFXButton.klass, "setShape", VALUEFUNC(_wrap_FXButton_setShape), -1);
4886
5055
  rb_define_method(cFXButton.klass, "clearShape", VALUEFUNC(_wrap_FXButton_clearShape), -1);
4887
5056
  cFXButton.mark = (void (*)(void *)) FXRbButton::markfunc;
@@ -4956,6 +5125,9 @@ SWIGEXPORT(void) Init_label(void) {
4956
5125
  rb_define_method(cFXCheckButton.klass, "contains", VALUEFUNC(_wrap_FXCheckButton_contains), -1);
4957
5126
  rb_define_method(cFXCheckButton.klass, "doesSaveUnder", VALUEFUNC(_wrap_FXCheckButton_doesSaveUnder), -1);
4958
5127
  rb_define_method(cFXCheckButton.klass, "setBackColor", VALUEFUNC(_wrap_FXCheckButton_setBackColor), -1);
5128
+ rb_define_method(cFXCheckButton.klass, "tr", VALUEFUNC(_wrap_FXCheckButton_tr), -1);
5129
+ rb_define_method(cFXCheckButton.klass, "dropEnable", VALUEFUNC(_wrap_FXCheckButton_dropEnable), -1);
5130
+ rb_define_method(cFXCheckButton.klass, "dropDisable", VALUEFUNC(_wrap_FXCheckButton_dropDisable), -1);
4959
5131
  rb_define_method(cFXCheckButton.klass, "setShape", VALUEFUNC(_wrap_FXCheckButton_setShape), -1);
4960
5132
  rb_define_method(cFXCheckButton.klass, "clearShape", VALUEFUNC(_wrap_FXCheckButton_clearShape), -1);
4961
5133
  cFXCheckButton.mark = (void (*)(void *)) FXRbCheckButton::markfunc;
@@ -5037,6 +5209,9 @@ SWIGEXPORT(void) Init_label(void) {
5037
5209
  rb_define_method(cFXMenuButton.klass, "contains", VALUEFUNC(_wrap_FXMenuButton_contains), -1);
5038
5210
  rb_define_method(cFXMenuButton.klass, "doesSaveUnder", VALUEFUNC(_wrap_FXMenuButton_doesSaveUnder), -1);
5039
5211
  rb_define_method(cFXMenuButton.klass, "setBackColor", VALUEFUNC(_wrap_FXMenuButton_setBackColor), -1);
5212
+ rb_define_method(cFXMenuButton.klass, "tr", VALUEFUNC(_wrap_FXMenuButton_tr), -1);
5213
+ rb_define_method(cFXMenuButton.klass, "dropEnable", VALUEFUNC(_wrap_FXMenuButton_dropEnable), -1);
5214
+ rb_define_method(cFXMenuButton.klass, "dropDisable", VALUEFUNC(_wrap_FXMenuButton_dropDisable), -1);
5040
5215
  rb_define_method(cFXMenuButton.klass, "setShape", VALUEFUNC(_wrap_FXMenuButton_setShape), -1);
5041
5216
  rb_define_method(cFXMenuButton.klass, "clearShape", VALUEFUNC(_wrap_FXMenuButton_clearShape), -1);
5042
5217
  cFXMenuButton.mark = (void (*)(void *)) FXRbMenuButton::markfunc;
@@ -5058,6 +5233,10 @@ SWIGEXPORT(void) Init_label(void) {
5058
5233
  rb_define_method(cFXOption.klass, "onKeyRelease", VALUEFUNC(_wrap_FXOption_onKeyRelease), -1);
5059
5234
  rb_define_method(cFXOption.klass, "onHotKeyPress", VALUEFUNC(_wrap_FXOption_onHotKeyPress), -1);
5060
5235
  rb_define_method(cFXOption.klass, "onHotKeyRelease", VALUEFUNC(_wrap_FXOption_onHotKeyRelease), -1);
5236
+ rb_define_method(cFXOption.klass, "selBackColor=", VALUEFUNC(_wrap_FXOption_selBackColore___), -1);
5237
+ rb_define_method(cFXOption.klass, "selBackColor", VALUEFUNC(_wrap_FXOption_selBackColor), -1);
5238
+ rb_define_method(cFXOption.klass, "selTextColor=", VALUEFUNC(_wrap_FXOption_selTextColore___), -1);
5239
+ rb_define_method(cFXOption.klass, "selTextColor", VALUEFUNC(_wrap_FXOption_selTextColor), -1);
5061
5240
  rb_define_method(cFXOption.klass, "save", VALUEFUNC(_wrap_FXOption_save), -1);
5062
5241
  rb_define_method(cFXOption.klass, "load", VALUEFUNC(_wrap_FXOption_load), -1);
5063
5242
  rb_define_method(cFXOption.klass, "create", VALUEFUNC(_wrap_FXOption_create), -1);
@@ -5088,6 +5267,9 @@ SWIGEXPORT(void) Init_label(void) {
5088
5267
  rb_define_method(cFXOption.klass, "contains", VALUEFUNC(_wrap_FXOption_contains), -1);
5089
5268
  rb_define_method(cFXOption.klass, "doesSaveUnder", VALUEFUNC(_wrap_FXOption_doesSaveUnder), -1);
5090
5269
  rb_define_method(cFXOption.klass, "setBackColor", VALUEFUNC(_wrap_FXOption_setBackColor), -1);
5270
+ rb_define_method(cFXOption.klass, "tr", VALUEFUNC(_wrap_FXOption_tr), -1);
5271
+ rb_define_method(cFXOption.klass, "dropEnable", VALUEFUNC(_wrap_FXOption_dropEnable), -1);
5272
+ rb_define_method(cFXOption.klass, "dropDisable", VALUEFUNC(_wrap_FXOption_dropDisable), -1);
5091
5273
  rb_define_method(cFXOption.klass, "setShape", VALUEFUNC(_wrap_FXOption_setShape), -1);
5092
5274
  rb_define_method(cFXOption.klass, "clearShape", VALUEFUNC(_wrap_FXOption_clearShape), -1);
5093
5275
  cFXOption.mark = (void (*)(void *)) FXRbOption::markfunc;
@@ -5150,6 +5332,9 @@ SWIGEXPORT(void) Init_label(void) {
5150
5332
  rb_define_method(cFXOptionMenu.klass, "contains", VALUEFUNC(_wrap_FXOptionMenu_contains), -1);
5151
5333
  rb_define_method(cFXOptionMenu.klass, "doesSaveUnder", VALUEFUNC(_wrap_FXOptionMenu_doesSaveUnder), -1);
5152
5334
  rb_define_method(cFXOptionMenu.klass, "setBackColor", VALUEFUNC(_wrap_FXOptionMenu_setBackColor), -1);
5335
+ rb_define_method(cFXOptionMenu.klass, "tr", VALUEFUNC(_wrap_FXOptionMenu_tr), -1);
5336
+ rb_define_method(cFXOptionMenu.klass, "dropEnable", VALUEFUNC(_wrap_FXOptionMenu_dropEnable), -1);
5337
+ rb_define_method(cFXOptionMenu.klass, "dropDisable", VALUEFUNC(_wrap_FXOptionMenu_dropDisable), -1);
5153
5338
  rb_define_method(cFXOptionMenu.klass, "setShape", VALUEFUNC(_wrap_FXOptionMenu_setShape), -1);
5154
5339
  rb_define_method(cFXOptionMenu.klass, "clearShape", VALUEFUNC(_wrap_FXOptionMenu_clearShape), -1);
5155
5340
  cFXOptionMenu.mark = (void (*)(void *)) FXRbOptionMenu::markfunc;
@@ -5220,6 +5405,9 @@ SWIGEXPORT(void) Init_label(void) {
5220
5405
  rb_define_method(cFXRadioButton.klass, "contains", VALUEFUNC(_wrap_FXRadioButton_contains), -1);
5221
5406
  rb_define_method(cFXRadioButton.klass, "doesSaveUnder", VALUEFUNC(_wrap_FXRadioButton_doesSaveUnder), -1);
5222
5407
  rb_define_method(cFXRadioButton.klass, "setBackColor", VALUEFUNC(_wrap_FXRadioButton_setBackColor), -1);
5408
+ rb_define_method(cFXRadioButton.klass, "tr", VALUEFUNC(_wrap_FXRadioButton_tr), -1);
5409
+ rb_define_method(cFXRadioButton.klass, "dropEnable", VALUEFUNC(_wrap_FXRadioButton_dropEnable), -1);
5410
+ rb_define_method(cFXRadioButton.klass, "dropDisable", VALUEFUNC(_wrap_FXRadioButton_dropDisable), -1);
5223
5411
  rb_define_method(cFXRadioButton.klass, "setShape", VALUEFUNC(_wrap_FXRadioButton_setShape), -1);
5224
5412
  rb_define_method(cFXRadioButton.klass, "clearShape", VALUEFUNC(_wrap_FXRadioButton_clearShape), -1);
5225
5413
  cFXRadioButton.mark = (void (*)(void *)) FXRbRadioButton::markfunc;
@@ -5279,6 +5467,9 @@ SWIGEXPORT(void) Init_label(void) {
5279
5467
  rb_define_method(cFXTabItem.klass, "contains", VALUEFUNC(_wrap_FXTabItem_contains), -1);
5280
5468
  rb_define_method(cFXTabItem.klass, "doesSaveUnder", VALUEFUNC(_wrap_FXTabItem_doesSaveUnder), -1);
5281
5469
  rb_define_method(cFXTabItem.klass, "setBackColor", VALUEFUNC(_wrap_FXTabItem_setBackColor), -1);
5470
+ rb_define_method(cFXTabItem.klass, "tr", VALUEFUNC(_wrap_FXTabItem_tr), -1);
5471
+ rb_define_method(cFXTabItem.klass, "dropEnable", VALUEFUNC(_wrap_FXTabItem_dropEnable), -1);
5472
+ rb_define_method(cFXTabItem.klass, "dropDisable", VALUEFUNC(_wrap_FXTabItem_dropDisable), -1);
5282
5473
  rb_define_method(cFXTabItem.klass, "setShape", VALUEFUNC(_wrap_FXTabItem_setShape), -1);
5283
5474
  rb_define_method(cFXTabItem.klass, "clearShape", VALUEFUNC(_wrap_FXTabItem_clearShape), -1);
5284
5475
  cFXTabItem.mark = (void (*)(void *)) FXRbTabItem::markfunc;
@@ -5355,6 +5546,9 @@ SWIGEXPORT(void) Init_label(void) {
5355
5546
  rb_define_method(cFXToggleButton.klass, "contains", VALUEFUNC(_wrap_FXToggleButton_contains), -1);
5356
5547
  rb_define_method(cFXToggleButton.klass, "doesSaveUnder", VALUEFUNC(_wrap_FXToggleButton_doesSaveUnder), -1);
5357
5548
  rb_define_method(cFXToggleButton.klass, "setBackColor", VALUEFUNC(_wrap_FXToggleButton_setBackColor), -1);
5549
+ rb_define_method(cFXToggleButton.klass, "tr", VALUEFUNC(_wrap_FXToggleButton_tr), -1);
5550
+ rb_define_method(cFXToggleButton.klass, "dropEnable", VALUEFUNC(_wrap_FXToggleButton_dropEnable), -1);
5551
+ rb_define_method(cFXToggleButton.klass, "dropDisable", VALUEFUNC(_wrap_FXToggleButton_dropDisable), -1);
5358
5552
  rb_define_method(cFXToggleButton.klass, "setShape", VALUEFUNC(_wrap_FXToggleButton_setShape), -1);
5359
5553
  rb_define_method(cFXToggleButton.klass, "clearShape", VALUEFUNC(_wrap_FXToggleButton_clearShape), -1);
5360
5554
  cFXToggleButton.mark = (void (*)(void *)) FXRbToggleButton::markfunc;
@@ -5421,6 +5615,9 @@ SWIGEXPORT(void) Init_label(void) {
5421
5615
  rb_define_method(cFXPicker.klass, "contains", VALUEFUNC(_wrap_FXPicker_contains), -1);
5422
5616
  rb_define_method(cFXPicker.klass, "doesSaveUnder", VALUEFUNC(_wrap_FXPicker_doesSaveUnder), -1);
5423
5617
  rb_define_method(cFXPicker.klass, "setBackColor", VALUEFUNC(_wrap_FXPicker_setBackColor), -1);
5618
+ rb_define_method(cFXPicker.klass, "tr", VALUEFUNC(_wrap_FXPicker_tr), -1);
5619
+ rb_define_method(cFXPicker.klass, "dropEnable", VALUEFUNC(_wrap_FXPicker_dropEnable), -1);
5620
+ rb_define_method(cFXPicker.klass, "dropDisable", VALUEFUNC(_wrap_FXPicker_dropDisable), -1);
5424
5621
  rb_define_method(cFXPicker.klass, "setShape", VALUEFUNC(_wrap_FXPicker_setShape), -1);
5425
5622
  rb_define_method(cFXPicker.klass, "clearShape", VALUEFUNC(_wrap_FXPicker_clearShape), -1);
5426
5623
  cFXPicker.mark = (void (*)(void *)) FXRbPicker::markfunc;